/* ==========================================================================
   2DO Global Inc. — Corporate Website
   Design system: professional healthcare corporate (blue).
   Typography : Newsreader (display) · Public Sans (body)
   Palette    : Primary #0E1A2B · Secondary #4A78B8 · Accent #7FA9D9
                Background #FFFFFF · Section #F5F7FA · Borders #E5E7EB
   ========================================================================== */

/* ---------- Tokens ---------- */
:root {
  /* Color */
  --pine: #0E1A2B;          /* primary navy — dark surfaces, buttons, footer */
  --moss: #152841;          /* secondary dark surface */
  --moss-2: #1C3557;        /* raised dark card */
  --cream: #FFFFFF;         /* background / light text on navy */
  --section-alt: #F5F7FA;   /* alternating section background */
  --ink: #1C2430;           /* primary text */
  --body: #374151;          /* body text on light */
  --body-soft: #6B7280;     /* secondary text */
  --slate: #1C2430;         /* strong secondary on light */
  --sage: #7FA9D9;          /* accent — on dark surfaces */
  --teal: #4A78B8;          /* secondary blue — accents, icons, links on light */
  --teal-deep: #0A1320;     /* button hover — slightly darker than primary */
  --mist: #C7D5E8;          /* body text on navy */
  --mist-soft: #9DB2CE;     /* secondary text on navy */
  --mist-nav: #CBD9EB;      /* soft links on navy (footer) */
  --hairline: #E5E7EB;      /* borders on light */
  --hairline-dark: rgba(255, 255, 255, 0.10);
  --line-dark: rgba(255, 255, 255, 0.16);
  --line-dark-strong: rgba(255, 255, 255, 0.34);
  --sage-line: rgba(127, 169, 217, 0.45);

  /* Signature brand texture */
  --stripe: repeating-linear-gradient(-45deg, rgba(74, 120, 184, 0.10) 0,
            rgba(74, 120, 184, 0.10) 1px, transparent 1px, transparent 11px);

  /* Type */
  --font-display: 'Newsreader', Georgia, 'Times New Roman', serif;
  --font-body: 'Public Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono: ui-monospace, 'SF Mono', 'Cascadia Mono', Menlo, monospace;

  /* Rhythm */
  --pad-x: 56px;
  --section-y: 96px;
  --radius-card: 10px;
  --radius-pill: 999px;
  --shadow-soft: 0 1px 2px rgba(16, 24, 40, 0.05), 0 4px 14px -4px rgba(14, 26, 43, 0.08);
  --shadow-lift: 0 16px 32px -12px rgba(14, 26, 43, 0.22);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset / base ---------- */
*,
*::before,
*::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 96px; }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg { display: block; max-width: 100%; }

a { color: inherit; text-decoration: none; }

ul[role="list"], ol[role="list"] { list-style: none; }

::selection { background: rgba(127, 169, 217, 0.35); color: var(--ink); }

:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: absolute;
  top: -48px;
  left: 16px;
  z-index: 200;
  background: var(--teal);
  color: var(--cream);
  padding: 10px 18px;
  border-radius: 0 0 10px 10px;
  font-weight: 600;
  font-size: 14px;
  transition: top 0.2s var(--ease-out);
}
.skip-link:focus { top: 0; }

/* ---------- Type helpers ---------- */
.display {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

.eyebrow {
  display: block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 22px;
}
.eyebrow--sage { color: var(--sage); }

.lede {
  font-size: 19px;
  line-height: 1.7;
  color: var(--body);
  text-wrap: pretty;
}
.lede--dark { color: var(--mist); }

/* ---------- Layout ---------- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 var(--pad-x); }
.container--narrow { max-width: 900px; }
.container--wide { max-width: 1320px; }

.section { padding: var(--section-y) 0; }
#pipeline.section,
#process.section { background: var(--section-alt); }
.section:has(> .container > .contact-grid) { background: var(--section-alt); }
.section--dark { background: var(--pine); color: var(--cream); }
.section--moss { background: var(--moss); color: var(--cream); padding: 88px 0; }
.section--moss .eyebrow { margin-bottom: 18px; }

.section-head { max-width: 720px; margin-bottom: 56px; }
.section-head--center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 {
  font-size: clamp(32px, 4vw, 44px);
  line-height: 1.12;
  letter-spacing: -0.01em;
  margin-bottom: 20px;
}
.section-head p { margin-top: 4px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 34px;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background-color 0.25s var(--ease-out), border-color 0.25s var(--ease-out),
              color 0.25s var(--ease-out), transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out);
}

.btn--sage { background: var(--sage); color: var(--pine); font-weight: 700; }
.btn--sage:hover { background: #6E9BD0; color: var(--teal-deep); transform: translateY(-1px); box-shadow: 0 10px 22px -10px rgba(127, 169, 217, 0.6); }

.btn--teal { background: var(--pine); color: #FFFFFF; padding: 16px 36px; font-size: 17px; }
.btn--teal:hover { background: var(--teal-deep); color: #FFFFFF; transform: translateY(-1px); box-shadow: 0 12px 24px -12px rgba(14, 26, 43, 0.5); }

.btn--ghost-dark { border-color: var(--line-dark-strong); color: var(--cream); background: transparent; }
.btn--ghost-dark:hover { border-color: var(--sage); color: var(--sage); }

.btn--ghost-light { border-color: rgba(14, 26, 43, 0.35); color: var(--pine); background: transparent; }
.btn--ghost-light:hover { background: var(--pine); border-color: var(--pine); color: #FFFFFF; }

.btn i { font-size: 0.95em; }

/* ==========================================================================
   Header / navigation
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--hairline);
  transition: background-color 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}
.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 8px 24px -16px rgba(14, 26, 43, 0.18);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 26px var(--pad-x);
  max-width: 1320px;
  margin: 0 auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  color: var(--pine);
  letter-spacing: -0.01em;
  white-space: nowrap;
}
.brand .brand-mark { flex: none; }
.brand .accent { color: var(--teal); }
.site-footer .brand,
.site-footer .brand .accent { color: #FFFFFF; }
.site-footer .brand .accent { color: var(--sage); }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 40px;
  font-size: 15px;
  font-weight: 500;
}
.nav-menu a:not(.btn) {
  color: var(--body);
  position: relative;
  padding: 6px 0;
  transition: color 0.25s var(--ease-out);
}
.nav-menu a:not(.btn).is-active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background: var(--teal);
}
.nav-menu a:not(.btn):hover,
.nav-menu a:not(.btn).is-active { color: var(--pine); }

.nav-cta { padding: 10px 22px; font-size: 15px; }
.site-header .nav-cta { border-color: var(--pine); color: var(--pine); }
.site-header .nav-cta:hover,
.site-header .nav-cta.is-active { background: var(--pine); border-color: var(--pine); color: #FFFFFF; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: transparent;
  border: 1px solid var(--hairline);
  border-radius: 10px;
  cursor: pointer;
}
.nav-toggle .bar {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--pine);
  border-radius: 2px;
  transition: transform 0.3s var(--ease-out), opacity 0.2s var(--ease-out);
}
.nav-toggle[aria-expanded="true"] .bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ==========================================================================
   Hero (home)
   ========================================================================== */
.hero { background: var(--pine); color: var(--cream); position: relative; overflow: hidden; }

.hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 110px var(--pad-x) 100px;
  max-width: 1100px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage);
  border: 1px solid var(--sage-line);
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: 34px;
}
.hero-badge .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--sage);
  animation: pulse-dot 2.4s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(127, 187, 174, 0.45); }
  50% { box-shadow: 0 0 0 6px rgba(127, 187, 174, 0); }
}

.hero h1 {
  font-size: clamp(42px, 6.4vw, 76px);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.025em;
  max-width: 960px;
  margin: 0 auto 30px;
}

.hero-sub {
  font-size: 20px;
  line-height: 1.6;
  color: var(--mist);
  max-width: 640px;
  margin: 0 auto 44px;
  text-wrap: pretty;
}

.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* Soft blue ambient glow on navy surfaces */
.hero-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(58% 46% at 50% -8%, rgba(74, 120, 184, 0.35) 0%, transparent 70%);
}

/* Full-bleed banner artwork band (stripe texture per reference) */
.hero-band {
  position: relative;
  border-top: 1px solid var(--hairline-dark);
  background: var(--moss);
  background-image: var(--stripe);
  line-height: 0;
}
.hero-band svg { width: 100%; height: auto; }

.pulse-line {
  stroke-dasharray: 1800;
  stroke-dashoffset: 1800;
  animation: draw-line 3s var(--ease-out) 0.5s forwards;
}
@keyframes draw-line { to { stroke-dashoffset: 0; } }

/* ==========================================================================
   Reveal-on-scroll animation
   ========================================================================== */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: 0.1s; }
.reveal[data-delay="2"] { transition-delay: 0.2s; }
.reveal[data-delay="3"] { transition-delay: 0.3s; }
.reveal[data-delay="4"] { transition-delay: 0.4s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* ==========================================================================
   Pillars — stacked hairline rows (brand signature)
   ========================================================================== */
.pillars { border-top: 1px solid var(--hairline); max-width: 1100px; margin: 0 auto; }

.pillar-row {
  display: grid;
  grid-template-columns: 80px 1fr 2fr;
  gap: 32px;
  align-items: baseline;
  padding: 32px 8px;
  border-bottom: 1px solid var(--hairline);
  transition: background-color 0.3s var(--ease-out);
}
.pillar-row:hover { background: rgba(74, 120, 184, 0.05); }

.pillar-num {
  font-family: var(--font-display);
  color: var(--teal);
  font-size: 26px;
  font-weight: 500;
}

.pillar-title {
  font-size: 22px;
  font-weight: 600;
  line-height: 1.3;
  display: flex;
  align-items: center;
  gap: 12px;
}
.pillar-title i { color: var(--teal); font-size: 20px; }

.pillar-copy { font-size: 16px; line-height: 1.6; color: var(--body-soft); }

/* Dark variant (about page) */
.pillars--dark { border-top-color: var(--hairline-dark); }
.pillars--dark .pillar-row { border-bottom-color: var(--hairline-dark); }
.pillars--dark .pillar-row:hover { background: rgba(127, 169, 217, 0.06); }
.pillars--dark .pillar-num,
.pillars--dark .pillar-title i { color: var(--sage); }
.pillars--dark .pillar-copy { color: var(--mist-soft); }

/* ==========================================================================
   Flagship venture (BiQure)
   ========================================================================== */
.flagship-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.flagship-grid h2 {
  font-size: clamp(36px, 4.4vw, 48px);
  line-height: 1.06;
  margin-bottom: 22px;
}
.flagship-copy { font-size: 19px; line-height: 1.7; color: var(--mist); margin-bottom: 22px; text-wrap: pretty; }
.flagship-note { font-size: 16px; line-height: 1.6; color: var(--mist-soft); margin-bottom: 30px; text-wrap: pretty; }

.flagship-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 32px; }
.tag {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--sage);
  border: 1px solid var(--sage-line);
  padding: 7px 14px;
  border-radius: var(--radius-pill);
}

.flagship-visual {
  border-radius: var(--radius-card);
  border: 1px solid var(--line-dark);
  overflow: hidden;
  background: var(--pine);
  background-image: var(--stripe);
  line-height: 0;
}
.flagship-visual svg { width: 100%; height: auto; }

/* ==========================================================================
   Pipeline
   ========================================================================== */
.pipeline-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.pipeline-card {
  background: #FFFFFF;
  border: 1px solid var(--hairline);
  border-radius: var(--radius-card);
  padding: 30px 26px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out), border-color 0.3s var(--ease-out);
}
.pipeline-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); border-color: var(--sage); }

.pipeline-card i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  font-size: 20px;
  color: var(--teal);
  background: rgba(74, 120, 184, 0.10);
  border-radius: 10px;
  margin-bottom: 18px;
}
.pipeline-card h3 { font-size: 18px; font-weight: 600; margin-bottom: 8px; }
.pipeline-card p { font-size: 15px; line-height: 1.6; color: var(--body-soft); }

.pipeline-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 40px;
  font-size: 14px;
  font-weight: 600;
  color: var(--teal);
}
.pipeline-status .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
  animation: pulse-dot 2.4s ease-in-out infinite;
}

/* ==========================================================================
   Why choose us
   ========================================================================== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.why-card {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 20px;
  background: #FFFFFF;
  border: 1px solid var(--hairline);
  border-radius: var(--radius-card);
  padding: 30px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out), border-color 0.3s var(--ease-out);
}
.why-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); border-color: var(--sage); }

.why-card i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  font-size: 22px;
  color: #FFFFFF;
  background: var(--pine);
  border-radius: 10px;
}
.why-card h3 { font-size: 19px; font-weight: 600; margin-bottom: 8px; }
.why-card p { font-size: 15.5px; line-height: 1.65; color: var(--body-soft); }

/* ==========================================================================
   Statistics band
   ========================================================================== */
.stats-band { background: var(--pine); color: var(--cream); position: relative; overflow: hidden; }

.stats-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
}
.stat + .stat { border-left: 1px solid var(--hairline-dark); }
.stat { padding: 10px 20px; }

.stat-value {
  font-family: var(--font-display);
  font-size: clamp(44px, 5vw, 64px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--sage);
  display: inline-flex;
  align-items: baseline;
}
.stat-value .suffix { font-size: 0.55em; margin-left: 2px; }
.stat-label { margin-top: 12px; font-size: 15px; font-weight: 500; color: var(--mist); }

/* ==========================================================================
   CTA band
   ========================================================================== */
.cta-band { text-align: center; }
.cta-band h2 {
  font-size: clamp(36px, 4.6vw, 52px);
  line-height: 1.06;
  margin-bottom: 24px;
}
.cta-band .lede { max-width: 560px; margin: 0 auto 40px; }
.cta-actions { display: flex; gap: 20px; justify-content: center; align-items: center; flex-wrap: wrap; }
.cta-email { font-weight: 600; font-size: 16px; color: var(--slate); transition: color 0.25s var(--ease-out); }
.cta-email:hover { color: var(--teal); }
.cta-email i { margin-right: 8px; color: var(--teal); }

/* ==========================================================================
   Page hero (inner pages)
   ========================================================================== */
.page-hero {
  background: var(--pine);
  color: var(--cream);
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 92px 0 84px;
}
.page-hero h1 {
  font-size: clamp(38px, 5.4vw, 62px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.02em;
  max-width: 860px;
  margin: 0 auto 26px;
}
.page-hero .lede--dark { max-width: 640px; margin: 0 auto; }

/* ==========================================================================
   About page
   ========================================================================== */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.split h2 {
  font-size: clamp(30px, 3.6vw, 40px);
  line-height: 1.14;
  margin-bottom: 20px;
}
.split .lede { margin-bottom: 18px; }
.split p + p { margin-top: 16px; }
.split-body p { font-size: 16.5px; line-height: 1.75; color: var(--body); text-wrap: pretty; }

.mv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.mv-card {
  background: var(--moss);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-card);
  padding: 40px 36px;
  transition: transform 0.3s var(--ease-out), border-color 0.3s var(--ease-out);
}
.mv-card:hover { transform: translateY(-4px); border-color: var(--sage-line); }
.mv-card i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  font-size: 22px;
  color: var(--sage);
  border: 1px solid var(--sage-line);
  border-radius: 10px;
  margin-bottom: 22px;
}
.mv-card h3 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin-bottom: 14px;
}
.mv-card p { font-size: 16.5px; line-height: 1.7; color: var(--mist); text-wrap: pretty; }

.enable-list { display: grid; gap: 0; border-top: 1px solid var(--hairline); }
.enable-item {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 18px;
  padding: 22px 4px;
  border-bottom: 1px solid var(--hairline);
  align-items: start;
}
.enable-item i { color: var(--teal); font-size: 20px; margin-top: 2px; }
.enable-item h3 { font-size: 17px; font-weight: 600; margin-bottom: 4px; }
.enable-item p { font-size: 15px; line-height: 1.6; color: var(--body-soft); }

/* Philosophy statement */
.philosophy { text-align: center; }
.philosophy blockquote {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.4vw, 38px);
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--cream);
  max-width: 880px;
  margin: 0 auto 26px;
  text-wrap: balance;
}
.philosophy blockquote .accent { color: var(--sage); }
.philosophy figcaption { font-size: 15px; font-weight: 600; color: var(--mist-soft); }

/* Timeline / process */
.timeline { position: relative; max-width: 820px; margin: 0 auto; }
.timeline::before {
  content: "";
  position: absolute;
  left: 27px;
  top: 8px;
  bottom: 8px;
  width: 1px;
  background: var(--hairline);
}
.timeline-step {
  position: relative;
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 28px;
  padding-bottom: 44px;
}
.timeline-step:last-child { padding-bottom: 0; }
.timeline-marker {
  position: relative;
  z-index: 1;
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #FFFFFF;
  border: 1px solid var(--hairline);
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  color: var(--teal);
  box-shadow: var(--shadow-soft);
}
.timeline-body { padding-top: 6px; }
.timeline-body h3 { font-size: 20px; font-weight: 600; margin-bottom: 6px; }
.timeline-body p { font-size: 16px; line-height: 1.65; color: var(--body-soft); max-width: 560px; }

/* ==========================================================================
   Contact page
   ========================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: 24px;
  align-items: start;
}

.contact-card {
  background: #FFFFFF;
  border: 1px solid var(--hairline);
  border-radius: var(--radius-card);
  padding: 44px;
  box-shadow: var(--shadow-soft);
}
.contact-card > h2 { font-size: 28px; line-height: 1.2; margin-bottom: 8px; }
.contact-card > .form-intro { font-size: 15.5px; color: var(--body-soft); margin-bottom: 30px; }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-field { display: flex; flex-direction: column; gap: 8px; }
.form-field--full { grid-column: 1 / -1; }
.form-field label { font-size: 14px; font-weight: 600; color: var(--slate); }
.form-field label .req { color: var(--teal); }

.form-field input,
.form-field textarea {
  font-family: var(--font-body);
  font-size: 15.5px;
  color: var(--ink);
  background: #FFFFFF;
  border: 1px solid var(--hairline);
  border-radius: 10px;
  padding: 13px 16px;
  transition: border-color 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out), background-color 0.25s var(--ease-out);
}
.form-field textarea { resize: vertical; min-height: 140px; }
.form-field input::placeholder,
.form-field textarea::placeholder { color: #9CA3AF; }
.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--teal);
  background: #FFFFFF;
  box-shadow: 0 0 0 3px rgba(74, 120, 184, 0.15);
}
.form-field input.has-error,
.form-field textarea.has-error { border-color: #DC2626; box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.10); }

.field-error { font-size: 13px; font-weight: 500; color: #DC2626; min-height: 0; display: none; }
.field-error.is-visible { display: block; }

.form-actions { grid-column: 1 / -1; display: flex; align-items: center; gap: 18px; margin-top: 6px; flex-wrap: wrap; }
.form-note { font-size: 13.5px; color: var(--mist-soft); }

.form-success {
  display: none;
  grid-column: 1 / -1;
  align-items: flex-start;
  gap: 14px;
  background: rgba(74, 120, 184, 0.08);
  border: 1px solid rgba(74, 120, 184, 0.30);
  border-radius: 10px;
  padding: 18px 20px;
  font-size: 15px;
  color: var(--pine);
}
.form-success.is-visible { display: flex; }
.form-success i { font-size: 20px; color: var(--teal); }
.form-success strong { display: block; margin-bottom: 2px; }

/* Info panel */
.info-stack { display: grid; gap: 24px; }
.info-card {
  background: var(--pine);
  color: var(--cream);
  border-radius: var(--radius-card);
  padding: 40px 36px;
}
.info-card h2 { font-size: 26px; line-height: 1.2; margin-bottom: 24px; }

.info-list { display: grid; gap: 22px; }
.info-item { display: grid; grid-template-columns: 44px 1fr; gap: 16px; align-items: start; }
.info-item i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  font-size: 18px;
  color: var(--sage);
  border: 1px solid var(--sage-line);
  border-radius: 12px;
}
.info-item h3 { font-size: 13px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--mist-soft); margin-bottom: 4px; }
.info-item p, .info-item a { font-size: 15.5px; line-height: 1.55; color: var(--cream); font-weight: 500; }
.info-item a:hover { color: var(--sage); }

.social-row { display: flex; gap: 12px; margin-top: 30px; padding-top: 28px; border-top: 1px solid var(--hairline-dark); }
.social-row a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  font-size: 17px;
  color: var(--mist-nav);
  border: 1px solid var(--line-dark);
  border-radius: 50%;
  transition: color 0.25s var(--ease-out), border-color 0.25s var(--ease-out), background-color 0.25s var(--ease-out);
}
.social-row a:hover { color: var(--pine); background: var(--sage); border-color: var(--sage); }

/* Map placeholder — reference placeholder-band treatment */
.map-panel {
  position: relative;
  border-radius: var(--radius-card);
  border: 1px solid var(--line-dark);
  overflow: hidden;
  background-color: var(--moss);
  background-image: var(--stripe);
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 48px 24px;
}
.map-pin { max-width: 380px; }
.map-pin i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  font-size: 26px;
  color: var(--pine);
  background: var(--sage);
  border-radius: 50%;
  margin-bottom: 18px;
  animation: float-pin 3.4s ease-in-out infinite;
}
@keyframes float-pin {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.map-pin h3 { font-size: 19px; font-weight: 600; margin-bottom: 6px; color: var(--cream); }
.map-pin p { font-size: 15px; color: var(--mist-soft); }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer { background: var(--pine); color: var(--mist); }

.footer-main {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding: 56px 0 44px;
}

.footer-brand .brand { font-size: 22px; margin-bottom: 18px; }
.footer-brand p { font-size: 15px; line-height: 1.7; color: var(--mist-soft); max-width: 300px; margin-bottom: 24px; }
.footer-brand .social-row { margin-top: 0; padding-top: 0; border-top: 0; }

.footer-col h3 {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mist-soft);
  margin-bottom: 20px;
}
.footer-col ul { display: grid; gap: 12px; }
.footer-col a { font-size: 15px; color: var(--mist-nav); transition: color 0.25s var(--ease-out); }
.footer-col a:hover { color: var(--sage); }
.footer-col address { font-style: normal; font-size: 15px; line-height: 1.8; color: var(--mist-nav); }
.footer-col address a { display: inline-flex; align-items: center; gap: 10px; }
.footer-col address i { color: var(--sage); font-size: 15px; }
.footer-col address span { display: block; margin-top: 10px; color: var(--mist-soft); }

.footer-bottom {
  border-top: 1px solid var(--hairline-dark);
  padding: 26px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 14px;
  color: var(--mist-soft);
}
.footer-bottom .tagline { color: var(--mist-soft); }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1100px) {
  :root { --pad-x: 40px; --section-y: 84px; }
  .footer-main { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer-col--contact { grid-column: 1 / -1; }
  .pipeline-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .nav-menu {
    position: fixed;
    top: 0;
    right: 0;
    height: 100dvh;
    width: min(320px, 84vw);
    background: #FFFFFF;
    border-left: 1px solid var(--hairline);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 8px;
    padding: 104px 32px 40px;
    font-size: 18px;
    transform: translateX(100%);
    transition: transform 0.4s var(--ease-out);
    box-shadow: -30px 0 60px rgba(14, 26, 43, 0.18);
    z-index: 90;
  }
  .nav-menu.is-open { transform: translateX(0); }
  .nav-menu a:not(.btn) { padding: 12px 0; width: 100%; }
  .nav-menu .nav-cta { margin-top: 18px; }
  .nav-toggle { display: flex; position: relative; z-index: 95; }

  .flagship-grid { grid-template-columns: 1fr; gap: 44px; }
  .split { grid-template-columns: 1fr; gap: 36px; }
  .mv-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); row-gap: 44px; }
  .stat:nth-child(3) { border-left: 0; }
  .why-grid { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  :root { --pad-x: 24px; --section-y: 72px; }

  .hero-inner { padding-top: 80px; padding-bottom: 72px; }
  .hero-sub { font-size: 18px; }
  .hero-actions .btn { width: 100%; max-width: 340px; }

  .pillar-row { grid-template-columns: 1fr; gap: 10px; padding: 28px 4px; }
  .pillar-num { font-size: 22px; }
  .pillar-title { font-size: 20px; }

  .pipeline-grid { grid-template-columns: 1fr; }
  .why-card { grid-template-columns: 1fr; gap: 16px; }
  .contact-card { padding: 32px 24px; }
  .form-grid { grid-template-columns: 1fr; }
  .info-card { padding: 32px 26px; }

  .timeline::before { left: 23px; }
  .timeline-marker { width: 48px; height: 48px; font-size: 18px; }
  .timeline-step { grid-template-columns: 48px 1fr; gap: 20px; padding-bottom: 36px; }

  .footer-main { grid-template-columns: 1fr; gap: 40px; padding: 48px 0 40px; }
  .footer-bottom { justify-content: center; text-align: center; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr; }
  .stat + .stat { border-left: 0; border-top: 1px solid var(--hairline-dark); padding-top: 34px; }
  .stat { padding-bottom: 24px; }
  .cta-actions { flex-direction: column; }
  .brand { font-size: 21px; }
}
