/* ============================================================
   PRIMEVAULT — style.css  (Final — Dark default / Light toggle)
   Logo colours: Forest #1B5E2A · Mid #2E8540 · Bright #4CAF50
                 Lime #8DC63F · Gold #C9A84C
   Fonts: Cormorant Garamond + DM Sans + DM Mono
   ============================================================ */

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

/* ── DARK MODE (default) ──────────────────────────────── */
:root {
  --bg:            #070e07;
  --surface-1:     #0c140c;
  --surface-2:     #111e11;
  --surface-3:     #172617;
  --border:        rgba(46,133,64,0.18);
  --border-light:  rgba(46,133,64,0.08);
  --nav-bg:        rgba(7,14,7,0.88);
  --nav-bg-solid:  rgba(7,14,7,0.98);
  --mobile-menu-bg:rgba(7,14,7,0.98);

  --forest:        #1B5E2A;
  --mid:           #2E8540;
  --bright:        #4CAF50;
  --lime:          #8DC63F;
  --lime-light:    #aad45a;
  --gold:          #C9A84C;
  --gold-light:    #dfc06a;

  --cream:         #e4f0e4;
  --cream-muted:   #93b893;
  --cream-dim:     #4e7a4e;
  --text-primary:  #e4f0e4;
  --text-secondary:#85a885;
  --text-muted:    #2e4e2e;

  --lime-pale:     rgba(141,198,63,0.10);
  --mid-pale:      rgba(46,133,64,0.10);
  --card-shadow:   0 12px 48px rgba(0,0,0,0.55);
  --hover-shadow:  0 20px 60px rgba(0,0,0,0.65), 0 0 0 1px rgba(76,175,80,0.12);

  --logo-blend:    lighten;
  --logo-filter:   brightness(1.05) contrast(1.05);
}

/* ── LIGHT MODE ───────────────────────────────────────── */
[data-theme="light"] {
  --bg:            #f0f6f0;
  --surface-1:     #ffffff;
  --surface-2:     #eaf3ea;
  --surface-3:     #d8ead8;
  --border:        rgba(46,133,64,0.18);
  --border-light:  rgba(46,133,64,0.10);
  --nav-bg:        rgba(240,246,240,0.90);
  --nav-bg-solid:  rgba(240,246,240,0.99);
  --mobile-menu-bg:rgba(240,246,240,0.99);

  --forest:        #1B5E2A;
  --mid:           #2E8540;
  --bright:        #388e3c;
  --lime:          #558b2f;
  --lime-light:    #6aaa37;
  --gold:          #b5852a;
  --gold-light:    #c9a040;

  --cream:         #0d1f0d;
  --cream-muted:   #2d5c2d;
  --cream-dim:     #5a8a5a;
  --text-primary:  #0d1f0d;
  --text-secondary:#2a5a2a;
  --text-muted:    #7aaa7a;

  --lime-pale:     rgba(85,139,47,0.10);
  --mid-pale:      rgba(46,133,64,0.08);
  --card-shadow:   0 4px 20px rgba(0,0,0,0.08);
  --hover-shadow:  0 12px 40px rgba(0,0,0,0.14), 0 0 0 1px rgba(46,133,64,0.15);

  --logo-blend:    normal;
  --logo-filter:   none;
}

/* ── BASE ─────────────────────────────────────────────── */
html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--bg);
  color: var(--text-primary);
  font-family: 'DM Sans', system-ui, sans-serif;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  transition: background 0.4s ease, color 0.4s ease;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2.5rem);
}

/* ── THEME TOGGLE ─────────────────────────────────────── */
.theme-toggle {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--surface-2);
  color: var(--text-secondary);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  transition: all 0.25s ease;
  flex-shrink: 0;
  line-height: 1;
}
.theme-toggle:hover { background: var(--mid); border-color: var(--mid); transform: scale(1.08); }
.theme-toggle .icon-sun  { display: none; }
.theme-toggle .icon-moon { display: block; }
[data-theme="light"] .theme-toggle .icon-sun  { display: block; }
[data-theme="light"] .theme-toggle .icon-moon { display: none; }

/* ── TYPOGRAPHY HELPERS ───────────────────────────────── */
.section-eyebrow {
  font-family: 'DM Mono', monospace;
  font-size: 0.72rem; letter-spacing: 0.26em;
  color: var(--lime); text-transform: uppercase; margin-bottom: 0.85rem;
}
.section-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.9rem, 3.5vw, 2.9rem);
  font-weight: 600; line-height: 1.18;
  color: var(--cream); margin-bottom: 0.85rem;
  transition: color 0.4s ease;
}
.section-title em { font-style: italic; color: var(--lime); }
.section-sub {
  font-size: 1.04rem; color: var(--text-secondary);
  max-width: 580px; line-height: 1.82;
}
.section-header { text-align: center; margin-bottom: 4rem; }
.section-header .section-sub { margin: 0 auto; }

/* ── BUTTONS ──────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: 'DM Sans', sans-serif; font-size: 0.875rem;
  font-weight: 500; letter-spacing: 0.04em;
  border-radius: 4px; cursor: pointer; border: none;
  transition: all 0.28s ease; white-space: nowrap; text-decoration: none;
}
.btn--primary {
  background: var(--mid); color: #fff;
  padding: 0.88rem 1.8rem; position: relative; overflow: hidden;
  box-shadow: 0 4px 22px rgba(46,133,64,0.30);
}
.btn--primary::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.14), transparent);
  transform: translateX(-100%); transition: transform 0.5s ease;
}
.btn--primary:hover { background: var(--bright); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(76,175,80,0.38); }
.btn--primary:hover::after { transform: translateX(100%); }

.btn--ghost {
  background: transparent; color: var(--cream-muted);
  padding: 0.88rem 1.8rem; border: 1px solid var(--border);
}
.btn--ghost:hover { border-color: var(--mid); color: var(--cream); }

.btn--outline {
  background: transparent; color: var(--lime);
  padding: 0.7rem 1.5rem; border: 1px solid rgba(141,198,63,0.3);
}
[data-theme="light"] .btn--outline { border-color: rgba(85,139,47,0.35); }
.btn--outline:hover { background: var(--lime-pale); border-color: var(--lime); }

.btn--nav {
  background: var(--mid-pale); color: var(--bright);
  border: 1px solid rgba(76,175,80,0.22);
  padding: 0.56rem 1.2rem; font-size: 0.875rem; border-radius: 4px;
}
.btn--nav:hover { background: var(--mid); color: #fff; border-color: var(--mid); }
.btn--full { width: 100%; justify-content: center; }

/* ── NAV ──────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: 72px;
  background: var(--nav-bg);
  border-bottom: 1px solid var(--border-light);
  backdrop-filter: blur(22px); -webkit-backdrop-filter: blur(22px);
  transition: background 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}
.nav--scrolled {
  background: var(--nav-bg-solid);
  border-bottom-color: var(--border);
}
[data-theme="light"] .nav--scrolled { box-shadow: 0 2px 24px rgba(0,0,0,0.08); }

.nav__inner { display: flex; align-items: center; gap: 1.5rem; height: 100%; }

.nav__logo { display: flex; align-items: center; gap: 0.7rem; flex-shrink: 0; }
.logo-img {
  height: 42px; width: auto; object-fit: contain; border-radius: 8px;
  mix-blend-mode: var(--logo-blend);
  filter: var(--logo-filter);
  transition: filter 0.4s ease, mix-blend-mode 0.4s ease;
}
.logo-img--footer { height: 36px; }
.logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.45rem; font-weight: 600;
  color: var(--cream); letter-spacing: 0.03em;
  transition: color 0.4s ease;
}

.nav__links { display: flex; align-items: center; gap: 2rem; margin-left: auto; }
.nav__links a {
  font-size: 0.875rem; color: var(--text-secondary);
  letter-spacing: 0.03em; transition: color 0.28s ease;
}
.nav__links a:hover { color: var(--cream); }

.nav__actions { display: flex; align-items: center; gap: 0.75rem; flex-shrink: 0; }

.nav__hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 0.5rem; margin-left: auto;
}
.nav__hamburger span {
  display: block; width: 24px; height: 1.5px;
  background: var(--cream-muted); transition: all 0.3s ease;
}

/* ── GLOWS ────────────────────────────────────────────── */
.glow-orb {
  position: absolute; border-radius: 50%;
  filter: blur(110px); pointer-events: none; z-index: 0;
  transition: opacity 0.5s ease;
}
.glow-orb--forest {
  width: 700px; height: 700px; top: -20%; left: -18%;
  background: radial-gradient(circle, rgba(27,94,42,0.25) 0%, transparent 70%);
}
.glow-orb--lime {
  width: 480px; height: 480px; top: 18%; right: -10%;
  background: radial-gradient(circle, rgba(141,198,63,0.10) 0%, transparent 70%);
}
[data-theme="light"] .glow-orb--forest { opacity: 0.35; }
[data-theme="light"] .glow-orb--lime   { opacity: 0.25; }

/* ── HERO ─────────────────────────────────────────────── */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  padding-top: 72px; overflow: hidden;
}
.hero__bg-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(46,133,64,0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(46,133,64,0.055) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 80% 55% at 50% 0%, black, transparent);
  z-index: 0; transition: opacity 0.4s ease;
}
[data-theme="light"] .hero__bg-grid {
  background-image:
    linear-gradient(rgba(46,133,64,0.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(46,133,64,0.09) 1px, transparent 1px);
}

.hero__inner { position: relative; z-index: 1; padding: 8rem 0; text-align: center; }

.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-family: 'DM Mono', monospace; font-size: 0.68rem; letter-spacing: 0.22em;
  color: var(--lime); text-transform: uppercase;
  border: 1px solid rgba(141,198,63,0.22); padding: 0.45rem 1.1rem;
  border-radius: 999px; background: rgba(141,198,63,0.06);
  margin-bottom: 2rem; animation: fadeUp 0.6s ease both 0.1s;
}
[data-theme="light"] .hero__eyebrow { background: rgba(85,139,47,0.08); border-color: rgba(85,139,47,0.25); }

.dot { width: 6px; height: 6px; background: var(--lime); border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.5;transform:scale(0.8)} }

.hero__headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 6.5vw, 5.8rem);
  font-weight: 600; line-height: 1.08;
  color: var(--cream); margin-bottom: 1.75rem;
  animation: fadeUp 0.7s ease both 0.2s;
}
.hero__headline em { font-style: italic; color: var(--lime); }

.hero__sub {
  font-size: clamp(1rem, 1.5vw, 1.18rem); color: var(--text-secondary);
  max-width: 620px; margin: 0 auto 2.5rem; line-height: 1.88;
  animation: fadeUp 0.7s ease both 0.35s;
}
.hero__cta-group {
  display: flex; align-items: center; justify-content: center;
  gap: 1rem; flex-wrap: wrap; margin-bottom: 4rem;
  animation: fadeUp 0.7s ease both 0.5s;
}
.hero__trust-strip {
  display: flex; align-items: center; justify-content: center; flex-wrap: wrap;
  background: rgba(27,94,42,0.08); border: 1px solid var(--border);
  border-radius: 16px; padding: 1.75rem 2.5rem; max-width: 800px; margin: 0 auto;
  animation: fadeUp 0.7s ease both 0.65s;
  transition: background 0.4s ease;
}
[data-theme="light"] .hero__trust-strip { background: rgba(255,255,255,0.75); box-shadow: 0 2px 20px rgba(0,0,0,0.06); }

.trust-item { display: flex; flex-direction: column; align-items: center; padding: 0 2.5rem; }
.trust-num { font-family: 'Cormorant Garamond', serif; font-size: 1.85rem; font-weight: 700; color: var(--lime); line-height: 1; }
.trust-label { font-family: 'DM Mono', monospace; font-size: 0.62rem; letter-spacing: 0.14em; color: var(--cream-dim); text-transform: uppercase; margin-top: 0.35rem; }
.trust-divider { width: 1px; height: 40px; background: var(--border); flex-shrink: 0; }

/* ── MARQUEE ──────────────────────────────────────────── */
.marquee-section {
  overflow: hidden;
  border-top: 1px solid var(--border-light); border-bottom: 1px solid var(--border-light);
  background: var(--surface-1); padding: 1rem 0;
  transition: background 0.4s ease;
}
.marquee-track { display: flex; align-items: center; gap: 1.5rem; animation: marquee 35s linear infinite; width: max-content; }
.marquee-track span { font-size: 0.875rem; color: var(--text-muted); letter-spacing: 0.06em; white-space: nowrap; }
.marquee-track .sep { color: var(--mid); opacity: 0.55; font-size: 0.48rem; }
@keyframes marquee { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ── INTELLIGENCE ─────────────────────────────────────── */
.intelligence { padding: 8rem 0; }
.intel-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1.5px; background: var(--border);
  border: 1px solid var(--border); border-radius: 16px; overflow: hidden;
}
.intel-card { background: var(--surface-1); padding: 2.5rem; transition: background 0.3s ease; }
.intel-card:hover { background: var(--surface-2); }
.intel-card--large { grid-column: 1/2; grid-row: 1/3; border-right: 1.5px solid var(--border); }
.intel-card__icon { font-size: 1.55rem; color: var(--mid); margin-bottom: 1.25rem; display: block; }
.intel-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.32rem; font-weight: 600; color: var(--cream); margin-bottom: 0.75rem; line-height: 1.3; }
.intel-card p { font-size: 0.95rem; color: var(--text-secondary); line-height: 1.75; }
.intel-card__tag {
  display: inline-block; margin-top: 1.25rem;
  font-family: 'DM Mono', monospace; font-size: 0.6rem; letter-spacing: 0.18em;
  color: var(--lime); border: 1px solid rgba(141,198,63,0.2);
  padding: 0.3rem 0.7rem; border-radius: 4px; background: rgba(141,198,63,0.05);
}
[data-theme="light"] .intel-card__tag { border-color: rgba(85,139,47,0.25); background: rgba(85,139,47,0.06); }

/* ── PRODUCTS ─────────────────────────────────────────── */
.products { padding: 8rem 0; background: var(--surface-1); transition: background 0.4s ease; }
.product-row {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center; padding: 5rem 0;
  border-bottom: 1px solid var(--border-light);
}
.product-row:last-child { border-bottom: none; }
.product-row--reverse .product-row__content { order: 2; }
.product-row--reverse .product-row__visual  { order: 1; }
.product-eyebrow { font-family: 'DM Mono', monospace; font-size: 0.66rem; letter-spacing: 0.24em; color: var(--lime); margin-bottom: 1rem; }
.product-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(1.55rem,2.5vw,2.15rem); font-weight: 600; line-height: 1.2; color: var(--cream); margin-bottom: 1.2rem; }
.product-desc { font-size: 0.96rem; color: var(--text-secondary); line-height: 1.88; margin-bottom: 1.5rem; }
.product-features { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 2rem; }
.product-features li { font-size: 0.875rem; color: var(--cream-muted); }

/* ── VISUAL CARDS ─────────────────────────────────────── */
.visual-card {
  background: var(--surface-2); border: 1px solid var(--border);
  border-radius: 16px; padding: 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.4s ease;
}
.visual-card:hover { transform: translateY(-5px); box-shadow: var(--hover-shadow); }
.visual-card__label { font-family: 'DM Mono', monospace; font-size: 0.6rem; letter-spacing: 0.18em; color: var(--lime); margin-bottom: 1.5rem; opacity: 0.85; }
.visual-card__footer { font-family: 'DM Mono', monospace; font-size: 0.6rem; color: var(--text-muted); margin-top: 1.25rem; padding-top: 1rem; border-top: 1px solid var(--border-light); letter-spacing: 0.08em; }

.bar-chart { display: flex; flex-direction: column; gap: 0.9rem; }
.bar-item { display: flex; align-items: center; gap: 1rem; }
.bar-name { font-size: 0.78rem; color: var(--text-secondary); width: 108px; flex-shrink: 0; }
.bar-track { flex: 1; background: rgba(127,127,127,0.08); border-radius: 2px; height: 28px; overflow: hidden; }
.bar-fill { height: 100%; display: flex; align-items: center; justify-content: flex-end; padding-right: 0.6rem; font-size: 0.7rem; font-family: 'DM Mono', monospace; border-radius: 2px; font-weight: 500; }
.bar-fill--1 { background: var(--forest); color: #c8e6c9; }
.bar-fill--2 { background: var(--mid); color: #fff; }
.bar-fill--3 { background: var(--bright); color: #fff; }
.bar-fill--4 { background: var(--lime); color: #0c1a0c; }
[data-theme="light"] .bar-fill--4 { color: #fff; }

.projection-stat { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 1.5rem 0; border-bottom: 1px solid var(--border-light); margin-bottom: 1.25rem; }
.proj-age { font-family: 'DM Mono', monospace; font-size: 0.68rem; color: var(--lime); letter-spacing: 0.1em; margin-bottom: 0.5rem; }
.proj-amount { font-family: 'Cormorant Garamond', serif; font-size: 2.75rem; font-weight: 700; color: var(--lime); line-height: 1; margin-bottom: 0.5rem; }
.proj-note { font-size: 0.7rem; color: var(--text-muted); }
.nps-breakdown { display: flex; flex-direction: column; gap: 0.6rem; }
.nps-item { display: flex; justify-content: space-between; font-size: 0.85rem; color: var(--text-secondary); }
.nps-pct { color: var(--lime); font-family: 'DM Mono', monospace; font-weight: 500; }

.protection-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
.protection-item { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 0.35rem; padding: 1rem 0.75rem; border-radius: 8px; font-size: 0.78rem; }
.protection-item--ok      { background: rgba(46,133,64,0.12); border: 1px solid rgba(46,133,64,0.28); }
.protection-item--warn    { background: rgba(201,168,76,0.10); border: 1px solid rgba(201,168,76,0.25); }
.protection-item--missing { background: rgba(180,50,50,0.10); border: 1px solid rgba(180,50,50,0.25); }
.p-icon { font-size: 1rem; }
.protection-item--ok .p-icon      { color: var(--bright); }
.protection-item--warn .p-icon    { color: var(--gold); }
.protection-item--missing .p-icon { color: #c62828; }
.p-status { font-family: 'DM Mono', monospace; font-size: 0.66rem; color: var(--text-muted); }

.ladder { display: flex; flex-direction: column; gap: 0.5rem; }
.ladder-rung {
  display: flex; justify-content: space-between; align-items: center;
  padding: 0.75rem 1rem; background: rgba(127,127,127,0.03);
  border: 1px solid var(--border-light); border-left: 3px solid var(--mid);
  border-radius: 0 4px 4px 0; transition: background 0.28s ease;
}
.ladder-rung--top { border-left-color: var(--lime); background: rgba(141,198,63,0.07); }
[data-theme="light"] .ladder-rung--top { background: rgba(85,139,47,0.08); }
.ladder-rung:hover { background: rgba(46,133,64,0.1); }
.l-term { font-size: 0.85rem; color: var(--text-secondary); }
.l-rate { font-family: 'DM Mono', monospace; font-size: 0.88rem; color: var(--lime); font-weight: 500; }

/* ── APPROACH ─────────────────────────────────────────── */
.approach { padding: 8rem 0; }
.approach-steps { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr; align-items: start; }
.step-card {
  background: var(--surface-1); border: 1px solid var(--border);
  border-radius: 16px; padding: 2rem 1.75rem;
  transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease, background 0.4s ease;
}
.step-card:hover { border-color: rgba(76,175,80,0.38); transform: translateY(-4px); box-shadow: var(--card-shadow); }
.step-num { font-family: 'DM Mono', monospace; font-size: 0.63rem; letter-spacing: 0.22em; color: var(--lime); margin-bottom: 1rem; }
.step-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.12rem; font-weight: 600; color: var(--cream); margin-bottom: 0.75rem; line-height: 1.3; }
.step-card p { font-size: 0.88rem; color: var(--text-secondary); line-height: 1.75; }
.step-connector { display: flex; align-items: flex-start; padding-top: 2.5rem; color: var(--mid); font-size: 1.2rem; opacity: 0.45; padding-left: 0.75rem; padding-right: 0.75rem; }

/* ── TESTIMONIALS ─────────────────────────────────────── */
.testimonials { padding: 8rem 0; background: var(--surface-1); transition: background 0.4s ease; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.testi-card {
  background: var(--surface-2); border: 1px solid var(--border);
  border-radius: 16px; padding: 2.5rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, background 0.4s ease;
}
.testi-card:hover { border-color: rgba(76,175,80,0.28); box-shadow: var(--card-shadow); }
.testi-card--featured { border-color: rgba(76,175,80,0.25); }
:root .testi-card--featured        { background: linear-gradient(135deg,var(--surface-2),rgba(27,94,42,0.10)); }
[data-theme="light"] .testi-card--featured { background: linear-gradient(135deg,#fff,rgba(27,94,42,0.04)); }

.testi-quote { font-family: 'Cormorant Garamond', serif; font-size: 4rem; line-height: 0.7; color: var(--mid); opacity: 0.35; margin-bottom: 1.25rem; }
.testi-text { font-size: 0.96rem; color: var(--text-secondary); line-height: 1.82; font-style: italic; margin-bottom: 1.75rem; }
.testi-author { display: flex; align-items: center; gap: 1rem; }
.testi-avatar { width: 42px; height: 42px; border-radius: 50%; background: rgba(46,133,64,0.15); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; font-family: 'DM Mono', monospace; font-size: 0.7rem; color: var(--lime); flex-shrink: 0; }
.testi-name { font-weight: 500; font-size: 0.9rem; color: var(--cream); }
.testi-role { font-size: 0.76rem; color: var(--cream-dim); font-family: 'DM Mono', monospace; }

/* ── ABOUT ────────────────────────────────────────────── */
.about { padding: 8rem 0; }
.about__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about__text { font-size: 0.96rem; color: var(--text-secondary); line-height: 1.88; margin-bottom: 1rem; }
.about__certifications { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 2rem; }
.cert-badge { font-family: 'DM Mono', monospace; font-size: 0.64rem; letter-spacing: 0.08em; color: var(--lime); border: 1px solid rgba(141,198,63,0.22); padding: 0.6rem 1rem; border-radius: 4px; background: rgba(141,198,63,0.05); line-height: 1.55; text-align: center; }
[data-theme="light"] .cert-badge { border-color: rgba(85,139,47,0.28); background: rgba(85,139,47,0.07); }
.manifesto-quote { font-family: 'Cormorant Garamond', serif; font-size: clamp(1.15rem,2vw,1.55rem); font-style: italic; font-weight: 500; color: var(--cream); line-height: 1.62; border-left: 2px solid var(--mid); padding-left: 2rem; margin-bottom: 1.25rem; }
cite { font-family: 'DM Mono', monospace; font-size: 0.7rem; color: var(--lime); letter-spacing: 0.1em; font-style: normal; }

/* ── CONTACT ──────────────────────────────────────────── */
.contact { padding: 8rem 0; background: var(--surface-1); border-top: 1px solid var(--border); transition: background 0.4s ease; }
.contact__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.contact__sub { font-size: 0.96rem; color: var(--text-secondary); line-height: 1.82; margin-bottom: 2rem; }
.contact__info { display: flex; flex-direction: column; gap: 0.75rem; }
.contact-link { font-size: 0.9rem; color: var(--cream-muted); transition: color 0.28s ease; }
.contact-link:hover { color: var(--lime); }

.contact-form { display: flex; flex-direction: column; gap: 1.2rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label { font-size: 0.76rem; font-family: 'DM Mono', monospace; letter-spacing: 0.08em; color: var(--cream-dim); text-transform: uppercase; }
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--surface-2); border: 1px solid var(--border);
  border-radius: 4px; padding: 0.85rem 1rem;
  font-family: 'DM Sans', sans-serif; font-size: 0.95rem;
  color: var(--cream); outline: none;
  transition: border-color 0.28s ease, box-shadow 0.28s ease, background 0.4s ease;
  width: 100%;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-muted); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: rgba(76,175,80,0.5); box-shadow: 0 0 0 3px rgba(76,175,80,0.08); }
.form-group select option { background: var(--surface-2); color: var(--cream); }
.form-note { font-size: 0.7rem; color: var(--text-muted); line-height: 1.6; text-align: center; }

/* ── FOOTER ───────────────────────────────────────────── */
.footer { background: var(--bg); border-top: 1px solid var(--border-light); transition: background 0.4s ease; }
.footer__inner { display: grid; grid-template-columns: 2fr 3fr; gap: 4rem; padding: 4rem 0 3rem; }
.footer__tagline { font-family: 'DM Mono', monospace; font-size: 0.7rem; color: var(--text-muted); letter-spacing: 0.1em; margin-top: 0.75rem; }
.footer__legal-short { font-size: 0.7rem; color: var(--text-muted); margin-top: 0.5rem; }
.footer__links { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; }
.footer__col h4 { font-family: 'DM Mono', monospace; font-size: 0.63rem; letter-spacing: 0.18em; color: var(--lime); text-transform: uppercase; margin-bottom: 1rem; }
.footer__col ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer__col a { font-size: 0.84rem; color: var(--text-secondary); transition: color 0.28s ease; }
.footer__col a:hover { color: var(--cream); }
.footer__disclaimer { border-top: 1px solid var(--border-light); padding: 1.75rem 0; }
.footer__disclaimer p { font-size: 0.7rem; color: var(--text-muted); line-height: 1.72; }
.footer__bottom { border-top: 1px solid var(--border-light); padding: 1.2rem 0; }
.footer__bottom p { font-size: 0.76rem; color: var(--text-muted); }
.footer__bottom a { color: var(--lime); }

/* ── ANIMATIONS ───────────────────────────────────────── */
@keyframes fadeUp { from{opacity:0;transform:translateY(20px)} to{opacity:1;transform:translateY(0)} }
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ───────────────────────────────────────── */
@media (max-width: 1024px) {
  .approach-steps { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .step-connector { display: none; }
  .about__inner { grid-template-columns: 1fr; gap: 3rem; }
  .contact__inner { grid-template-columns: 1fr; gap: 3rem; }
}
@media (max-width: 768px) {
  .nav__links {
    display: none; flex-direction: column;
    position: fixed; top: 72px; left: 0; right: 0;
    background: var(--mobile-menu-bg); backdrop-filter: blur(20px);
    padding: 2rem; gap: 1.5rem;
    border-bottom: 1px solid var(--border); z-index: 999;
  }
  .nav__links.open { display: flex; }
  .nav__links a { font-size: 1.1rem; }
  .nav .btn--nav { display: none; }
  .nav__hamburger { display: flex; }
  .intel-grid { grid-template-columns: 1fr; }
  .intel-card--large { grid-column: 1; grid-row: auto; border-right: none; border-bottom: 1.5px solid var(--border); }
  .product-row { grid-template-columns: 1fr; gap: 2.5rem; }
  .product-row--reverse .product-row__content { order: 1; }
  .product-row--reverse .product-row__visual  { order: 2; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .hero__trust-strip { flex-wrap: wrap; padding: 1.5rem; }
  .trust-item { padding: 0.75rem 1.25rem; }
  .trust-divider { display: none; }
  .approach-steps { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; gap: 3rem; }
  .footer__links { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 480px) {
  .hero__cta-group { flex-direction: column; align-items: stretch; }
  .protection-grid { grid-template-columns: 1fr; }
  .footer__links { grid-template-columns: 1fr; }
}

/* ── PRICING COMPARISON TABLE ─────────────────────────────── */
.pricing {
  padding: 8rem 0;
  background: var(--surface-1);
  transition: background 0.4s ease;
}

/* Outer wrapper — horizontal scroll on small screens */
.pc-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--bg);
  transition: background 0.4s ease;
}

/* Every row is a 4-column grid: label | explorer | prime | member */
.pc-header,
.pc-footer,
.pc-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  min-width: 680px;
}

/* Plan header area */
.pc-header {
  border-bottom: 2px solid var(--border);
}

.pc-label-col {
  padding: 2rem 1.5rem;
  display: flex;
  align-items: flex-end;
}

.pc-plan-col {
  padding: 2rem 1.25rem 1.5rem;
  text-align: center;
  border-left: 1px solid var(--border-light);
  position: relative;
}

.pc-plan-col--featured {
  background: linear-gradient(180deg, rgba(46,133,64,0.12), rgba(46,133,64,0.04));
  border-left: 1px solid rgba(76,175,80,0.25);
  border-right: 1px solid rgba(76,175,80,0.25);
}

.pc-badge {
  position: absolute;
  top: -1px; left: 50%;
  transform: translateX(-50%);
  background: var(--lime);
  color: #0c1a0c;
  font-family: 'DM Mono', monospace;
  font-size: 0.58rem; font-weight: 700;
  letter-spacing: 0.14em;
  padding: 0.22rem 0.9rem;
  border-radius: 0 0 8px 8px;
  white-space: nowrap;
}

.pc-eyebrow {
  font-family: 'DM Mono', monospace;
  font-size: 0.58rem; letter-spacing: 0.18em;
  color: var(--lime); text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.pc-plan-name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.6rem; font-weight: 600;
  color: var(--cream); margin-bottom: 0.6rem;
}

.pc-price {
  display: flex; align-items: baseline; justify-content: center;
  gap: 0.35rem; margin-bottom: 0.3rem;
}
.pc-amount {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2.2rem; font-weight: 700; color: var(--lime);
}
.pc-period {
  font-family: 'DM Mono', monospace;
  font-size: 0.68rem; color: var(--text-muted);
}

.pc-tagline {
  font-size: 0.78rem; color: var(--text-secondary);
  line-height: 1.5; margin-bottom: 1rem;
}

.pc-cta {
  display: flex; align-items: center; justify-content: center;
  width: 100%; padding: 0.7rem 0.5rem;
  border-radius: 7px; font-size: 0.82rem; font-weight: 500;
  text-decoration: none; text-align: center;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.pc-sub-note {
  font-size: 0.68rem; color: var(--text-muted);
  margin-top: 0.6rem; line-height: 1.5;
}
.pc-sub-note a { color: var(--lime); text-decoration: none; }

/* Category header rows */
.pc-category {
  grid-column: 1 / -1;
  padding: 0.6rem 1.5rem;
  background: var(--surface-2);
  font-family: 'DM Mono', monospace;
  font-size: 0.62rem; letter-spacing: 0.15em;
  color: var(--lime); text-transform: uppercase;
  border-top: 1px solid var(--border-light);
  min-width: 680px;
}

/* Feature rows */
.pc-row {
  border-top: 1px solid var(--border-light);
  transition: background 0.15s;
}
.pc-row:hover { background: rgba(46,133,64,0.04); }

.pc-label {
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem; color: var(--text-secondary);
  display: flex; align-items: center;
}

.pc-cell {
  padding: 0.75rem 1rem;
  text-align: center; font-size: 0.875rem;
  display: flex; align-items: center; justify-content: center;
  border-left: 1px solid var(--border-light);
}

.pc-cell--featured {
  background: rgba(46,133,64,0.06);
  border-left: 1px solid rgba(76,175,80,0.18);
  border-right: 1px solid rgba(76,175,80,0.18);
}

.pc-yes { color: var(--bright); font-weight: 500; }
.pc-no  { color: var(--text-muted); opacity: 0.4; }
.pc-limit {
  color: var(--gold);
  font-family: 'DM Mono', monospace;
  font-size: 0.72rem; font-weight: 500;
}

/* Footer CTAs row */
.pc-footer {
  border-top: 2px solid var(--border);
  background: var(--surface-2);
}
.pc-footer .pc-plan-col { padding: 1.25rem; }
.pc-footer .pc-plan-col--featured { background: rgba(46,133,64,0.08); }

/* Pricing note below table */
.pricing-note {
  background: rgba(141,198,63,0.06);
  border: 1px solid rgba(141,198,63,0.15);
  border-radius: 12px;
  padding: 1.1rem 1.5rem;
  margin-top: 1.5rem;
}
.pricing-note p { font-size: 0.85rem; color: var(--text-secondary); line-height: 1.7; }
.pricing-note a { color: var(--lime); }
.pricing-note strong { color: var(--cream); }

/* Light mode */
[data-theme="light"] .pc-wrap      { background: #ffffff; }
[data-theme="light"] .pc-category  { background: #eaf3ea; }
[data-theme="light"] .pricing-note { background: rgba(85,139,47,0.07); border-color: rgba(85,139,47,0.18); }

/* Responsive — below 680px, enable horizontal scroll (already on pc-wrap) */
@media (max-width: 680px) {
  .pricing { padding: 5rem 0; }
}

/* ── CONTACT CTA REDESIGN ─────────────────────────────── */
.contact-cta-primary {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--mid);
  color: #fff;
  border-radius: 12px;
  padding: 1rem 1.5rem;
  text-decoration: none;
  text-align: center;
  margin-bottom: 1rem;
  font-size: 1.05rem;
  font-weight: 600;
  font-family: 'DM Sans', sans-serif;
  transition: all 0.28s ease;
  position: relative;
  overflow: hidden;
}
.contact-cta-primary::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.12), transparent);
  transform: translateX(-100%);
  transition: transform 0.5s ease;
}
.contact-cta-primary:hover {
  background: var(--bright);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(76,175,80,0.38);
}
.contact-cta-primary:hover::after { transform: translateX(100%); }

.contact-cta-sub {
  font-family: 'DM Mono', monospace;
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.7);
  margin-top: 0.3rem;
  font-weight: 400;
}

.contact-cta-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.contact-cta-secondary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--cream-muted);
  text-decoration: none;
  text-align: center;
  background: transparent;
  transition: all 0.25s ease;
}
.contact-cta-secondary:hover {
  border-color: var(--mid);
  color: var(--cream);
  background: var(--mid-pale);
}
.contact-cta-secondary--whatsapp:hover {
  border-color: #25d366;
  color: #25d366;
  background: rgba(37,211,102,0.08);
}

.contact-divider {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0.85rem 0;
  color: var(--text-muted);
  font-family: 'DM Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
}
.contact-divider::before,
.contact-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border-light);
}

.contact-cta-tertiary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.6rem 0.75rem;
  border: 1px solid var(--border-light);
  border-radius: 8px;
  font-size: 0.82rem;
  color: var(--text-muted);
  text-decoration: none;
  text-align: center;
  transition: all 0.25s ease;
}
.contact-cta-tertiary:hover {
  border-color: var(--lime);
  color: var(--lime);
  background: var(--lime-pale);
}

.contact__info--subtle {
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-light);
  flex-direction: row;
  gap: 1.25rem;
  flex-wrap: wrap;
}
.contact__info--subtle .contact-link {
  font-size: 0.8rem;
  color: var(--text-muted);
}
.contact__info--subtle .contact-link:hover { color: var(--lime); }

[data-theme="light"] .contact-cta-secondary { color: var(--cream-muted); border-color: var(--border); }
[data-theme="light"] .contact-cta-tertiary  { color: var(--text-muted); }

@media (max-width: 480px) {
  .contact-cta-group { grid-template-columns: 1fr; }
}
