@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800&family=Inter:wght@300;400;500;600&family=DM+Mono:wght@400;500&display=swap');

:root {
  /* Dark zone — hero and accent sections */
  --dark:        #061A14;
  --dark-2:      #0A2218;
  --dark-3:      #0E2D20;
  --dark-panel:  #112A1E;

  /* Light zone — content sections */
  --light:       #F7FAF8;
  --light-2:     #EEF5F1;
  --light-3:     #E4EFE9;
  --white:       #FFFFFF;

  /* Brand colors */
  --teal:        #0A7055;
  --teal-bright: #0D8F6A;
  --teal-light:  #12A87D;
  --teal-glow:   rgba(10,112,85,.18);
  --green-soft:  #E8F5EE;
  --green-trust: #2EAD6E;

  /* Text on dark */
  --text-dark:   #EDF5F0;
  --text-dark-2: #B8D4C4;
  --muted-dark:  #7A9E8C;
  --faint-dark:  #4A6E5A;

  /* Text on light */
  --text-light:  #0A1F16;
  --text-light-2:#1A3828;
  --muted-light: #4A6E5A;
  --faint-light: #7A9E8C;

  /* Status */
  --success:     #2EAD6E;
  --warn:        #F0A500;
  --danger:      #E05050;

  /* Layout */
  --wrap:        1200px;
  --header-h:    72px;
  --radius:      16px;
  --radius-sm:   10px;
  --radius-lg:   24px;

  /* Shadows */
  --shadow:      0 4px 24px rgba(0,0,0,.1);
  --shadow-lg:   0 12px 48px rgba(0,0,0,.14);
  --shadow-teal: 0 8px 32px rgba(10,112,85,.2);

  /* Type */
  --font-display: 'Plus Jakarta Sans', sans-serif;
  --font-body:    'Inter', sans-serif;
  --font-mono:    'DM Mono', monospace;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--text-light);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button, input, textarea, select { font: inherit; }

/* ── Layout ── */
.wrap { width: min(var(--wrap), calc(100% - 40px)); margin: 0 auto; }
.section        { padding: 88px 0; }
.section-tight  { padding: 56px 0; }
.section-mini   { padding: 32px 0; }

/* Dark sections override */
.dark-section {
  background: var(--dark);
  color: var(--text-dark);
}
.dark-section-2 { background: var(--dark-2); color: var(--text-dark); }
.mid-section    { background: var(--light-2); }
.teal-section   { background: var(--teal); color: #fff; }

/* ── Grid ── */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }

/* ── Typography ── */
.display {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7.5vw, 7rem);
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: .88;
}
.h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4.8rem);
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: .92;
}
.h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 3.2rem);
  font-weight: 700;
  letter-spacing: -.025em;
  line-height: .96;
}
.h3 {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 1.6vw, 1.3rem);
  font-weight: 700;
  letter-spacing: -.015em;
  line-height: 1.2;
}
.lead {
  font-size: clamp(.95rem, 1.3vw, 1.1rem);
  font-weight: 400;
  line-height: 1.74;
}
.small { font-size: .875rem; line-height: 1.68; }

/* ── Labels ── */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: .7rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--teal-light);
}
.eyebrow::before {
  content: '';
  width: 22px; height: 1px;
  background: currentColor;
  flex-shrink: 0;
}
.eyebrow.dark { color: var(--teal-light); }
.eyebrow.light { color: var(--teal); }

.badge {
  display: inline-flex;
  align-items: center;
  padding: 5px 12px;
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: .68rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-weight: 500;
}
.badge-teal {
  background: rgba(10,112,85,.12);
  border: 1px solid rgba(10,112,85,.25);
  color: var(--teal-bright);
}
.badge-white {
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  color: rgba(255,255,255,.9);
}
.badge-green {
  background: var(--green-soft);
  border: 1px solid rgba(46,173,110,.2);
  color: var(--green-trust);
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  border-radius: 12px;
  border: 1px solid transparent;
  gap: 8px;
  font-family: var(--font-display);
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: -.01em;
  white-space: nowrap;
  transition: all .2s;
  cursor: pointer;
}
.btn:hover { transform: translateY(-2px); }
.btn-teal {
  background: var(--teal);
  color: #fff;
  box-shadow: var(--shadow-teal);
}
.btn-teal:hover {
  background: var(--teal-bright);
  box-shadow: 0 12px 40px rgba(10,112,85,.35);
}
.btn-white {
  background: #fff;
  color: var(--teal);
  box-shadow: var(--shadow);
}
.btn-white:hover { box-shadow: var(--shadow-lg); }
.btn-outline-white {
  background: transparent;
  border-color: rgba(255,255,255,.3);
  color: #fff;
}
.btn-outline-white:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.5); }
.btn-outline-teal {
  background: transparent;
  border-color: var(--teal);
  color: var(--teal);
}
.btn-outline-teal:hover { background: rgba(10,112,85,.06); }

/* ── Accessibility ── */
.skip {
  position: absolute; left: 14px; top: -90px; z-index: 999;
  background: var(--teal); color: #fff; padding: 10px 14px; border-radius: 10px;
}
.skip:focus { top: 14px; }

/* ── Header ── */
.site-header {
  position: sticky; top: 0; z-index: 999;
  height: var(--header-h);
  background: rgba(6,26,20,.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s;
}
.site-header.scrolled { border-bottom-color: rgba(255,255,255,.08); }
.header-inner {
  height: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.brand { display: flex; align-items: center; gap: 10px; }
.brand-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: -.03em;
  color: #fff;
}
.brand-name span { color: var(--teal-light); }
.brand-tag {
  font-family: var(--font-mono);
  font-size: .62rem;
  letter-spacing: .1em;
  color: var(--muted-dark);
  text-transform: uppercase;
  white-space: nowrap;
}
.nav { display: flex; align-items: center; gap: 2px; }
.nav a {
  padding: 8px 13px;
  border-radius: 9px;
  color: var(--text-dark-2);
  font-size: .85rem;
  font-weight: 500;
  transition: all .18s;
}
.nav a:hover, .nav a.active {
  background: rgba(255,255,255,.06);
  color: #fff;
}
.header-actions { display: flex; align-items: center; gap: 10px; }
.menu-btn { display: none; }
.mobile-nav {
  display: none;
  background: rgba(6,26,20,.98);
  border-bottom: 1px solid rgba(255,255,255,.08);
  padding: 0 20px 16px;
}
.mobile-nav.open { display: block; }
.mobile-nav a {
  display: block; padding: 13px 0;
  border-top: 1px solid rgba(255,255,255,.06);
  color: var(--text-dark-2); font-weight: 500;
}
.mobile-nav a:hover { color: #fff; }

/* ── Hero (dark) ── */
.hero {
  background: var(--dark);
  padding: 0;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 80% 20%, rgba(10,112,85,.15), transparent),
    radial-gradient(ellipse 50% 40% at 10% 80%, rgba(18,168,125,.08), transparent);
  pointer-events: none;
}
/* Subtle grid */
.hero::after {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.5), transparent 80%);
  pointer-events: none;
}
.hero-inner {
  position: relative; z-index: 1;
  padding: 64px 0 72px;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 48px;
  align-items: center;
}
.hero-left {}
.hero-right {}

/* Score card */
.score-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.score-num {
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 800;
  letter-spacing: -.05em;
  line-height: 1;
}
.score-num.good { color: var(--green-trust); }
.score-num.bad  { color: var(--danger); }

/* ── Stats strip ── */
.stats-strip {
  background: var(--teal);
  padding: 32px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  divide: solid;
}
.stat-item {
  text-align: center;
  padding: 0 24px;
  border-right: 1px solid rgba(255,255,255,.15);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -.04em;
  color: #fff;
  line-height: 1;
}
.stat-label {
  font-size: .82rem;
  color: rgba(255,255,255,.7);
  margin-top: 4px;
  line-height: 1.4;
}

/* ── Service cards (light) ── */
.service-card {
  background: var(--white);
  border: 1px solid var(--light-3);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow);
  transition: all .25s;
}
.service-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
  border-color: rgba(10,112,85,.2);
}
.service-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--green-soft);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 18px;
  flex-shrink: 0;
}
.service-card h3 { margin-bottom: 10px; color: var(--text-light); }
.service-card p  { color: var(--muted-light); font-size: .9rem; line-height: 1.68; }

/* ── Industry tags ── */
.industry-grid {
  display: flex; flex-wrap: wrap; gap: 10px;
}
.industry-tag {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid var(--light-3);
  font-size: .875rem;
  font-weight: 600;
  color: var(--text-light-2);
  box-shadow: var(--shadow);
  transition: all .2s;
}
.industry-tag:hover {
  border-color: rgba(10,112,85,.3);
  background: var(--green-soft);
  color: var(--teal);
}
.industry-tag-icon { font-size: 1rem; }

/* ── Trust / proof ── */
.proof-card {
  background: var(--white);
  border: 1px solid var(--light-3);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow);
}
.proof-card .stars {
  color: #F0A500;
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 12px;
}
.proof-card blockquote {
  color: var(--text-light-2);
  font-size: .9rem;
  line-height: 1.72;
  font-style: italic;
  margin-bottom: 16px;
}
.proof-card .reviewer {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .875rem;
  color: var(--text-light);
}
.proof-card .reviewer-role {
  font-size: .78rem;
  color: var(--muted-light);
  margin-top: 2px;
}

/* ── Trust bar ── */
.trust-bar {
  background: var(--green-soft);
  border-top: 1px solid rgba(10,112,85,.12);
  border-bottom: 1px solid rgba(10,112,85,.12);
  padding: 16px 0;
}
.trust-bar-inner {
  display: flex; align-items: center; gap: 32px;
  flex-wrap: wrap; justify-content: center;
}
.trust-item {
  display: flex; align-items: center; gap: 8px;
  font-size: .82rem; font-weight: 600;
  color: var(--teal);
  font-family: var(--font-display);
}
.trust-item::before {
  content: '✓';
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--teal);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: .7rem; font-weight: 800;
  flex-shrink: 0;
}

/* ── FAQ ── */
.faq-list { display: grid; gap: 10px; }
.faq-item {
  border: 1px solid var(--light-3);
  border-radius: var(--radius);
  background: var(--white);
  overflow: hidden;
  transition: border-color .2s;
  box-shadow: var(--shadow);
}
.faq-item:hover, .faq-item.open {
  border-color: rgba(10,112,85,.25);
}
.faq-q {
  width: 100%; padding: 20px 22px;
  background: transparent; border: 0;
  color: var(--text-light);
  text-align: left;
  font-family: var(--font-display);
  font-weight: 700; font-size: .97rem;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  cursor: pointer;
}
.faq-icon {
  width: 26px; height: 26px; border-radius: 50%;
  border: 1px solid var(--light-3);
  display: flex; align-items: center; justify-content: center;
  color: var(--teal); font-size: 1.1rem; flex-shrink: 0;
  transition: transform .2s, background .2s;
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--green-soft);
}
.faq-a {
  display: none;
  padding: 0 22px 20px;
  color: var(--muted-light);
  line-height: 1.76; font-size: .92rem;
}
.faq-item.open .faq-a { display: block; }

/* ── CTA section ── */
.cta-dark {
  background: var(--dark-2);
  position: relative; overflow: hidden;
}
.cta-dark::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 70% at 50% 50%, rgba(10,112,85,.12), transparent);
  pointer-events: none;
}

/* ── Form ── */
.form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-lg);
}
.field-group { display: grid; gap: 14px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
label {
  display: block;
  font-family: var(--font-display);
  font-size: .8rem; font-weight: 700;
  color: var(--text-light-2);
  margin-bottom: 6px;
}
input, textarea, select {
  width: 100%; padding: 13px 16px;
  border-radius: 10px;
  border: 1px solid var(--light-3);
  background: var(--light);
  color: var(--text-light);
  outline: none;
  transition: border-color .2s, box-shadow .2s;
  font-size: .9rem;
}
input:focus, textarea:focus, select:focus {
  border-color: rgba(10,112,85,.4);
  box-shadow: 0 0 0 4px rgba(10,112,85,.08);
  background: var(--white);
}
textarea { min-height: 120px; resize: vertical; }
.form-status { margin-top: 12px; font-size: .85rem; line-height: 1.6; }
.form-status.success { color: var(--green-trust); }
.form-status.error   { color: var(--danger); }
.hp-field { position: absolute; left: -9999px; opacity: 0; pointer-events: none; }
button[disabled] { opacity: .6; cursor: not-allowed; }

/* ── Footer ── */
.footer {
  background: var(--dark);
  color: var(--text-dark);
  padding: 52px 0 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 36px;
}
.footer h4 {
  font-family: var(--font-mono);
  font-size: .68rem; letter-spacing: .16em;
  text-transform: uppercase; color: var(--muted-dark);
  margin-bottom: 14px;
}
.footer a, .footer span {
  display: block;
  color: var(--text-dark-2);
  font-size: .875rem;
  line-height: 1.95;
  transition: color .18s;
}
.footer a:hover { color: var(--teal-light); }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.07);
  color: var(--muted-dark);
  font-size: .78rem;
  font-family: var(--font-mono); letter-spacing: .05em;
}

/* ── Before/After placeholder ── */
.before-after {
  display: grid; grid-template-columns: 1fr 1fr; gap: 3px;
  border-radius: var(--radius-lg); overflow: hidden;
}
.ba-panel {
  aspect-ratio: 4/3;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 8px;
  font-family: var(--font-display); font-weight: 700;
}
.ba-before {
  background: linear-gradient(135deg, #2A1A0A, #3A2010);
  color: rgba(255,255,255,.4);
}
.ba-after {
  background: linear-gradient(135deg, #0A2218, #0E3024);
  color: rgba(255,255,255,.6);
}
.ba-label {
  font-family: var(--font-mono); font-size: .68rem;
  letter-spacing: .16em; text-transform: uppercase;
}

/* ── Page path ── */
.path-strip {
  background: var(--light-2);
  border-top: 1px solid var(--light-3);
  padding: 32px 0;
}
.path-grid {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 12px;
}
.path-card {
  padding: 18px;
  border: 1px solid var(--light-3);
  border-radius: var(--radius);
  background: var(--white);
  display: block;
  transition: all .2s;
  box-shadow: var(--shadow);
}
.path-card:hover {
  border-color: rgba(10,112,85,.25);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}
.path-card strong { display: block; color: var(--text-light); margin-bottom: 4px; font-family: var(--font-display); }
.path-card p { color: var(--muted-light); font-size: .82rem; line-height: 1.55; margin: 0; }
.path-card .arrow { display: inline-flex; margin-top: 8px; color: var(--teal); font-size: .82rem; font-weight: 700; }

/* ── Ribbon ── */
.ribbon {
  background: var(--dark-3);
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
  overflow: hidden; white-space: nowrap;
}
.ribbon-inner {
  display: inline-flex; gap: 40px;
  padding: 13px 0;
  animation: marquee 28s linear infinite;
}
.ribbon-inner span {
  font-family: var(--font-mono);
  font-size: .68rem; letter-spacing: .16em;
  text-transform: uppercase; color: var(--muted-dark);
}
.ribbon-inner .dot { color: var(--teal-light); }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 36px; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.1); padding: 16px 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .path-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  .nav, .header-actions .btn:not(.menu-btn) { display: none; }
  .menu-btn { display: inline-flex; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .before-after { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .wrap { width: min(var(--wrap), calc(100% - 24px)); }
  .section { padding: 64px 0; }
  .section-tight { padding: 44px 0; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .path-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}
