/* ==========================================================================
   MayTrac Trading — Design System
   ========================================================================== */

:root {
  --navy: #0D1B2A;
  --blue: #153A6B;
  --green: #1D8A70;
  --green-light: #5DBEAA;
  --gray: #6B7280;
  --bg-light: #E6E8EB;
  --white: #FFFFFF;

  --navy-70: rgba(13, 27, 42, 0.7);
  --navy-40: rgba(13, 27, 42, 0.4);
  --navy-20: rgba(13, 27, 42, 0.2);
  --green-10: rgba(29, 138, 112, 0.08);
  --border-hairline: rgba(13, 27, 42, 0.1);

  --font-display: 'Manrope', 'Inter', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-label: 'Poppins', sans-serif;

  --radius-card: 16px;
  --radius-btn: 999px;
  --radius-sm: 10px;

  --shadow-soft: 0 4px 24px rgba(13, 27, 42, 0.06);
  --shadow-hover: 0 16px 40px rgba(13, 27, 42, 0.12);
  --shadow-deep: 0 24px 64px rgba(13, 27, 42, 0.18);

  --container: 1240px;
  --nav-height: 84px;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}
body {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.7;
  color: var(--navy);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: inherit; font-size: 16px; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 800; line-height: 1.15; letter-spacing: -0.01em; color: var(--navy); }
h1 { font-size: clamp(36px, 5.6vw, 60px); }
h2 { font-size: clamp(30px, 4vw, 44px); }
h3 { font-size: clamp(21px, 2.4vw, 26px); }
p { color: var(--gray); }
:focus-visible { outline: 2px solid var(--green); outline-offset: 3px; border-radius: 4px; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 32px; }
@media (max-width: 640px) { .container { padding: 0 20px; } }

section { position: relative; }
.section-pad { padding: 120px 0; }
@media (max-width: 900px) { .section-pad { padding: 80px 0; } }

.eyebrow {
  font-family: var(--font-label);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}
.eyebrow::before {
  content: '';
  width: 28px;
  height: 1.5px;
  background: var(--green);
}

.section-head { max-width: 640px; margin-bottom: 64px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head p { margin-top: 18px; font-size: 18px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 17px 36px;
  border-radius: var(--radius-btn);
  font-family: var(--font-label);
  font-weight: 600;
  font-size: 15.5px;
  letter-spacing: 0.01em;
  position: relative;
  overflow: hidden;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.35s var(--ease), color 0.35s var(--ease);
  white-space: nowrap;
}
.btn-primary { background: var(--green); color: var(--white); box-shadow: 0 10px 30px rgba(29,138,112,0.28); }
.btn-primary:hover { background: #176e59; transform: translateY(-2px); box-shadow: 0 14px 34px rgba(29,138,112,0.36); }
.btn-secondary { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,0.5); }
.btn-secondary:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.9); transform: translateY(-2px); }
.btn-outline-navy { background: transparent; color: var(--navy); border: 1.5px solid rgba(13,27,42,0.2); }
.btn-outline-navy:hover { background: var(--navy); color: var(--white); border-color: var(--navy); transform: translateY(-2px); }
.btn-white { background: var(--white); color: var(--navy); }
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 14px 34px rgba(0,0,0,0.2); }

.ripple { position: absolute; border-radius: 50%; background: rgba(255,255,255,0.5); transform: scale(0); animation: ripple 0.7s ease-out; pointer-events: none; }
.btn-primary .ripple, .btn-outline-navy .ripple { background: rgba(255,255,255,0.35); }
@keyframes ripple { to { transform: scale(3.2); opacity: 0; } }

/* ---------- Nav ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-height);
  display: flex; align-items: center;
  background: transparent;
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease), height 0.4s var(--ease), border-color 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}

/* By default (top of page) */
.nav .logo-color {
  display: none;
}
.nav .logo-white {
  display: inline-block;
}

/* When scrolled */
.nav.scrolled .logo-white {
  display: none;
}
.nav.scrolled .logo-color {
  display: inline-block;
}

.nav.scrolled { background: rgba(255,255,255,0.92); backdrop-filter: blur(14px); box-shadow: 0 1px 0 rgba(13,27,42,0.06); height: 72px; border-bottom-color: var(--border-hairline); }
.nav-inner { width: 100%; display: flex; align-items: center; justify-content: space-between; }
.nav-logo { display: flex; align-items: center; gap: 12px; }
.nav-logo img { height: 40px; width: auto; transition: height 0.4s var(--ease); }
.nav.scrolled .nav-logo img { height: 34px; }
.nav-logo-text { font-family: var(--font-display); font-weight: 800; font-size: 19px; letter-spacing: -0.01em; color: var(--white); transition: color 0.4s var(--ease); }
.nav.scrolled .nav-logo-text { color: var(--navy); }

.nav-links { display: flex; align-items: center; gap: 44px; }
.nav-links a:not(.btn) {
  font-family: var(--font-label);
  font-size: 15px; font-weight: 500;
  color: rgba(255,255,255,0.92);
  position: relative;
  padding: 6px 0;
  transition: color 0.4s var(--ease);
}
.nav.scrolled .nav-links a:not(.btn) { color: var(--navy); }
.nav-links a:not(.btn)::after {
  content: ''; position: absolute; left: 0; bottom: 0; height: 1.5px; width: 0;
  background: var(--green); transition: width 0.35s var(--ease);
}
.nav-links a:not(.btn):hover::after, .nav-links a.active::after { width: 100%; }
.nav-links .btn-primary { padding: 13px 28px; font-size: 14.5px; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; width: 28px; z-index: 1100; }
.nav-toggle span { height: 2px; background: var(--white); transition: all 0.35s var(--ease); }
.nav.scrolled .nav-toggle span { background: var(--navy); }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed; top: 0; right: 0; height: 100vh; width: min(320px, 82vw);
    background: var(--navy); flex-direction: column; justify-content: center; align-items: flex-start;
    padding: 40px; gap: 30px; transform: translateX(100%); transition: transform 0.45s var(--ease);
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a:not(.btn) { color: var(--white) !important; font-size: 20px; }
  .nav-links .btn-primary { margin-top: 10px; }
}

/* ---------- Hero ---------- */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  position: relative;
  background: linear-gradient(160deg, #0D1B2A 0%, #122a42 46%, #153A6B 100%);
  overflow: hidden;
  padding: calc(var(--nav-height) + 40px) 0 80px;
}
.hero-grid {
  display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 60px; align-items: center;
  position: relative; z-index: 2; width: 100%;
}
.hero-tag { color: var(--green-light); font-family: var(--font-label); font-size: 13px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; margin-bottom: 26px; display: flex; align-items: center; gap: 12px; }
.hero-tag span.dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green-light); box-shadow: 0 0 0 4px rgba(93,190,170,0.2); }
.hero h1 { color: var(--white); max-width: 640px; }
.hero p.lead { color: rgba(255,255,255,0.72); font-size: 19px; max-width: 540px; margin: 26px 0 40px; }
.hero-actions { display: flex; gap: 18px; flex-wrap: wrap; }

.hero-stats { display: flex; flex-direction: column; gap: 18px; }
.stat-card {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(6px);
  border-radius: var(--radius-card); padding: 26px 28px;
  display: flex; align-items: center; gap: 20px;
  opacity: 0; transform: translateX(24px);
  animation: floatIn 0.8s var(--ease) forwards;
  transition: transform 0.4s var(--ease), background 0.4s var(--ease);
}
.stat-card:hover { transform: translateY(-4px); background: rgba(255,255,255,0.1); }
.stat-card:nth-child(1) { animation-delay: 0.5s; }
.stat-card:nth-child(2) { animation-delay: 0.68s; }
.stat-card:nth-child(3) { animation-delay: 0.86s; }
@keyframes floatIn { to { opacity: 1; transform: translateX(0); } }
.stat-icon {
  width: 52px; height: 52px; border-radius: 14px; background: rgba(93,190,170,0.14);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.stat-icon svg { width: 24px; height: 24px; stroke: var(--green-light); }
.stat-num { font-family: var(--font-display); font-size: 28px; font-weight: 800; color: var(--white); line-height: 1.1; }
.stat-label { font-size: 13.5px; color: rgba(255,255,255,0.6); margin-top: 2px; }

.hero-routes { position: absolute; inset: 0; z-index: 1; opacity: 0.5; }
.hero-routes path.route { fill: none; stroke: rgba(93,190,170,0.55); stroke-width: 1; stroke-dasharray: 6 8; animation: dash 40s linear infinite; }
.hero-routes circle.node { fill: var(--green-light); opacity: 0.7; }
@keyframes dash { to { stroke-dashoffset: -1000; } }

.scroll-cue { position: absolute; bottom: 34px; left: 32px; z-index: 2; display: flex; align-items: center; gap: 12px; color: rgba(255,255,255,0.55); font-family: var(--font-label); font-size: 12.5px; letter-spacing: 0.08em; text-transform: uppercase; }
.scroll-cue .line { width: 1px; height: 34px; background: linear-gradient(rgba(255,255,255,0.7), transparent); animation: scrollLine 2s ease-in-out infinite; }
@keyframes scrollLine { 0%,100% { transform: scaleY(1); opacity: 0.7; } 50% { transform: scaleY(0.4); opacity: 0.3; } }

@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: row; overflow-x: auto; padding-bottom: 6px; }
  .stat-card { min-width: 220px; }
  .scroll-cue { display: none; }
}

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.left { transform: translateX(-32px); }
.reveal.right { transform: translateX(32px); }
.reveal.in { opacity: 1; transform: none; }
.reveal-stagger > * { transition-delay: calc(var(--i, 0) * 0.09s); }

/* ---------- About ---------- */
.about { background: var(--white); }
.about-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 80px; align-items: center; }
.about-visual { position: relative; aspect-ratio: 4/5; border-radius: 20px; overflow: hidden; background: linear-gradient(150deg, var(--navy), var(--blue)); }
.about-visual svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.about-copy p { font-size: 18px; margin-bottom: 30px; }
.highlight-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.highlight-item { display: flex; align-items: center; gap: 12px; padding: 16px 18px; border-radius: var(--radius-sm); background: var(--bg-light); }
.highlight-item .check { width: 22px; height: 22px; border-radius: 50%; background: var(--green); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.highlight-item .check svg { width: 12px; height: 12px; stroke: var(--white); }
.highlight-item span.label { font-family: var(--font-label); font-weight: 600; font-size: 14.5px; color: var(--navy); }
@media (max-width: 900px) { .about-grid { grid-template-columns: 1fr; gap: 48px; } .about-visual { aspect-ratio: 16/10; } }
@media (max-width: 560px) { .highlight-grid { grid-template-columns: 1fr; } }

/* ---------- Services ---------- */
.services { background: var(--bg-light); }
.card-grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.service-card {
  background: var(--white); border-radius: var(--radius-card); padding: 40px 30px;
  box-shadow: var(--shadow-soft); transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
  border: 1px solid transparent;
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-hover); border-color: rgba(29,138,112,0.15); }
.service-icon { width: 58px; height: 58px; border-radius: 14px; background: var(--green-10); display: flex; align-items: center; justify-content: center; margin-bottom: 26px; transition: transform 0.4s var(--ease), background 0.4s var(--ease); }
.service-card:hover .service-icon { transform: rotate(-6deg) scale(1.06); background: var(--green); }
.service-icon svg { width: 27px; height: 27px; stroke: var(--green); transition: stroke 0.4s var(--ease); }
.service-card:hover .service-icon svg { stroke: var(--white); }
.service-card h3 { margin-bottom: 12px; }
.service-card p { font-size: 15.5px; }
@media (max-width: 980px) { .card-grid-4 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .card-grid-4 { grid-template-columns: 1fr; } }

/* ---------- Why choose ---------- */
.why { background: var(--white); }
.card-grid-6 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; background: var(--border-hairline); border: 1px solid var(--border-hairline); border-radius: var(--radius-card); overflow: hidden; }
.why-card { background: var(--white); padding: 44px 34px; display: flex; flex-direction: column; gap: 18px; transition: background 0.4s var(--ease); }
.why-card:hover { background: var(--bg-light); }
.why-icon { width: 46px; height: 46px; display: flex; align-items: center; justify-content: center; }
.why-icon svg { width: 30px; height: 30px; stroke: var(--blue); }
.why-card h3 { font-size: 19px; }
.why-card p { font-size: 15px; }
@media (max-width: 900px) { .card-grid-6 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .card-grid-6 { grid-template-columns: 1fr; } }

/* ---------- Industries ---------- */
.industries { background: var(--navy); color: var(--white); }
.industries .section-head h2, .industries .eyebrow { color: var(--white); }
.industries .section-head p { color: rgba(255,255,255,0.62); }
.industry-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 1px; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius-card); overflow: hidden; }
.industry-item { background: var(--navy); padding: 36px 18px; display: flex; flex-direction: column; align-items: center; gap: 16px; text-align: center; transition: background 0.4s var(--ease); }
.industry-item:hover { background: #14293e; }
.industry-item svg { width: 30px; height: 30px; stroke: var(--green-light); }
.industry-item span { font-family: var(--font-label); font-size: 13.5px; font-weight: 500; color: rgba(255,255,255,0.85); }
@media (max-width: 900px) { .industry-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 480px) { .industry-grid { grid-template-columns: repeat(2, 1fr); } }

/* ---------- Global presence ---------- */
.presence { background: var(--bg-light); overflow: hidden; }
.presence-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 60px; align-items: center; }
.presence-map { position: relative; }
.presence-map svg { width: 100%; height: auto; }
.map-node { fill: var(--gray); opacity: 0.55; }
.map-node.origin { fill: var(--green); opacity: 1; }
.pulse { fill: none; stroke: var(--green); stroke-width: 2; transform-origin: center; animation: pulse 2.4s var(--ease) infinite; }
@keyframes pulse { 0% { r: 6; opacity: 0.9; } 100% { r: 34; opacity: 0; } }
.route-line { fill: none; stroke: var(--blue); stroke-width: 1.4; stroke-dasharray: 5 6; opacity: 0.55; animation: dash 30s linear infinite; }
@media (max-width: 900px) { .presence-grid { grid-template-columns: 1fr; } }

/* ---------- CTA ---------- */
.cta-band { background: linear-gradient(120deg, var(--blue), var(--navy)); padding: 100px 0; text-align: center; position: relative; overflow: hidden; }
.cta-band::before { content: ''; position: absolute; width: 600px; height: 600px; border-radius: 50%; background: radial-gradient(circle, rgba(93,190,170,0.16), transparent 70%); top: -300px; right: -150px; }
.cta-band h2 { color: var(--white); max-width: 720px; margin: 0 auto 20px; }
.cta-band p { color: rgba(255,255,255,0.72); max-width: 560px; margin: 0 auto 40px; font-size: 18px; }

/* ---------- Footer ---------- */
.footer { background: var(--white); padding: 90px 0 30px; border-top: 1px solid var(--border-hairline); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 0.8fr 1fr; gap: 60px; margin-bottom: 70px; }
.footer-brand img { height: 42px; margin-bottom: 22px; }
.footer-brand p { font-size: 15.5px; max-width: 320px; }
.footer h4 { font-family: var(--font-label); font-size: 14.5px; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; color: var(--navy); margin-bottom: 22px; }
.footer-links li { margin-bottom: 14px; }
.footer-links a { color: var(--gray); font-size: 15.5px; transition: color 0.3s; }
.footer-links a:hover { color: var(--green); }
.footer-contact li { margin-bottom: 16px; display: flex; gap: 12px; font-size: 15px; color: var(--gray); }
.footer-contact svg { width: 19px; height: 19px; stroke: var(--green); flex-shrink: 0; margin-top: 2px; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 30px; border-top: 1px solid var(--border-hairline); flex-wrap: wrap; gap: 18px; }
.footer-bottom p { font-size: 14px; }
.social-icons { display: flex; gap: 12px; }
.social-icons a { width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--border-hairline); display: flex; align-items: center; justify-content: center; transition: all 0.3s var(--ease); }
.social-icons a:hover { background: var(--green); border-color: var(--green); transform: translateY(-3px); }
.social-icons svg { width: 17px; height: 17px; stroke: var(--navy); transition: stroke 0.3s; }
.social-icons a:hover svg { stroke: var(--white); }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr; gap: 44px; } }

/* ---------- Contact page hero ---------- */
.page-hero { background: linear-gradient(160deg, #0D1B2A, #153A6B); padding: calc(var(--nav-height) + 100px) 0 100px; text-align: center; position: relative; overflow: hidden; }
.page-hero h1 { color: var(--white); }
.page-hero p { color: rgba(255,255,255,0.7); max-width: 560px; margin: 20px auto 0; font-size: 18px; }
.page-hero .hero-routes { opacity: 0.35; }

/* ---------- Contact cards ---------- */
.contact-cards { margin-top: -70px; position: relative; z-index: 3; }
.card-grid-4-contact { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.contact-card { background: var(--white); border-radius: var(--radius-card); padding: 34px 28px; box-shadow: var(--shadow-deep); transition: transform 0.4s var(--ease); }
.contact-card:hover { transform: translateY(-6px); }
.contact-card .service-icon { margin-bottom: 22px; }
.contact-card h3 { font-size: 18px; margin-bottom: 8px; }
.contact-card p { font-size: 15px; }
@media (max-width: 980px) { .card-grid-4-contact { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .card-grid-4-contact { grid-template-columns: 1fr; } .contact-cards { margin-top: -40px; } }

/* ---------- Contact form ---------- */
.contact-main { background: var(--white); }
.contact-layout { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 70px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.form-field { display: flex; flex-direction: column; gap: 8px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { font-family: var(--font-label); font-size: 13.5px; font-weight: 600; color: var(--navy); }
.form-field input, .form-field select, .form-field textarea {
  padding: 15px 18px; border-radius: var(--radius-sm); border: 1.5px solid var(--border-hairline);
  background: var(--bg-light); color: var(--navy); transition: border-color 0.3s, background 0.3s;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { border-color: var(--green); background: var(--white); outline: none; }
.form-field textarea { resize: vertical; min-height: 130px; }
.form-field .error-msg { font-size: 13px; color: #C0392B; min-height: 16px; }
.form-field.invalid input, .form-field.invalid select, .form-field.invalid textarea { border-color: #C0392B; }
.form-submit { margin-top: 8px; width: 100%; padding: 18px; font-size: 16px; }

.form-success { display: none; align-items: center; gap: 16px; padding: 22px 26px; border-radius: var(--radius-card); background: var(--green-10); border: 1px solid rgba(29,138,112,0.25); margin-top: 20px; opacity: 0; transform: translateY(-10px); transition: opacity 0.5s var(--ease), transform 0.5s var(--ease); }
.form-success.show { display: flex; opacity: 1; transform: translateY(0); }
.form-success .check-circle { width: 40px; height: 40px; border-radius: 50%; background: var(--green); display: flex; align-items: center; justify-content: center; flex-shrink: 0; animation: popIn 0.5s var(--ease); }
.form-success .check-circle svg { width: 20px; height: 20px; stroke: var(--white); }
@keyframes popIn { 0% { transform: scale(0); } 70% { transform: scale(1.15); } 100% { transform: scale(1); } }
.form-success strong { display: block; font-family: var(--font-display); color: var(--navy); margin-bottom: 3px; }
.form-success p { font-size: 14.5px; margin: 0; }

.info-panel { background: var(--navy); border-radius: 20px; padding: 46px 40px; color: var(--white); height: fit-content; position: sticky; top: 120px; }
.info-panel h3 { color: var(--white); margin-bottom: 20px; }
.info-panel p { color: rgba(255,255,255,0.65); font-size: 15.5px; margin-bottom: 30px; }
.info-list li { display: flex; gap: 16px; margin-bottom: 26px; align-items: flex-start; }
.info-list .ic { width: 42px; height: 42px; border-radius: 12px; background: rgba(93,190,170,0.14); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.info-list .ic svg { width: 20px; height: 20px; stroke: var(--green-light); }
.info-list .txt-label { font-family: var(--font-label); font-size: 13px; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 3px; }
.info-list .txt-val { font-size: 16px; color: var(--white); }
@media (max-width: 980px) { .contact-layout { grid-template-columns: 1fr; } .info-panel { position: static; } .form-grid { grid-template-columns: 1fr; } }

/* ---------- Map ---------- */
.map-section { background: var(--bg-light); }
.map-frame { border-radius: var(--radius-card); overflow: hidden; box-shadow: var(--shadow-soft); position: relative; aspect-ratio: 21/8; background: var(--navy); }
.map-frame iframe { width: 100%; height: 100%; border: 0; filter: grayscale(0.15) contrast(1.05); }
@media (max-width: 700px) { .map-frame { aspect-ratio: 4/5; } }

/* ---------- FAQ ---------- */
.faq { background: var(--white); }
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border-hairline); }
.faq-q { width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 20px; padding: 28px 4px; text-align: left; font-family: var(--font-display); font-weight: 700; font-size: 18px; color: var(--navy); }
.faq-q .plus { width: 28px; height: 28px; border-radius: 50%; border: 1.5px solid var(--border-hairline); flex-shrink: 0; position: relative; transition: transform 0.4s var(--ease), background 0.4s var(--ease), border-color 0.4s var(--ease); }
.faq-q .plus::before, .faq-q .plus::after { content: ''; position: absolute; background: var(--navy); top: 50%; left: 50%; transition: background 0.4s var(--ease); }
.faq-q .plus::before { width: 10px; height: 1.5px; transform: translate(-50%, -50%); }
.faq-q .plus::after { width: 1.5px; height: 10px; transform: translate(-50%, -50%); }
.faq-item.open .faq-q .plus { transform: rotate(135deg); background: var(--green); border-color: var(--green); }
.faq-item.open .faq-q .plus::before, .faq-item.open .faq-q .plus::after { background: var(--white); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.45s var(--ease); }
.faq-a-inner { padding: 0 4px 28px; font-size: 16px; color: var(--gray); max-width: 700px; }

/* ---------- Final CTA (contact page) ---------- */
.final-cta { text-align: center; padding: 110px 0; background: var(--bg-light); }
.final-cta h2 { max-width: 700px; margin: 0 auto 36px; }

/* ---------- Utility ---------- */
.mt-0 { margin-top: 0; }
.text-center { text-align: center; }
