/* ============================================================
   STORENTIC — REFINED DESIGN SYSTEM v2.0
   Premium PropTech Corporate Website
   ============================================================ */

/* ——————————————————————————————————————
   1. TOKENS
—————————————————————————————————————— */
:root {
  /* Brand */
  --navy:          #08111F;
  --navy-mid:      #0D1E35;
  --navy-light:    #13284A;
  --brand:         #0B6B50;
  --brand-mid:     #0D7D5E;
  --brand-light:   #0F8F6C;
  --brand-glow:    rgba(11, 107, 80, 0.12);
  --brand-border:  rgba(11, 107, 80, 0.22);
  --gold:          #C49A2A;
  --gold-light:    #D9AB35;
  --gold-pale:     rgba(196, 154, 42, 0.10);
  --gold-border:   rgba(196, 154, 42, 0.25);

  /* Neutrals */
  --white:         #FFFFFF;
  --surface:       #F8FAFC;
  --surface-mid:   #F1F5F9;
  --border:        #E2E8F0;
  --border-light:  #EEF2F7;
  --muted:         #94A3B8;
  --text-2:        #64748B;
  --text:          #0F172A;

  /* Semantic */
  --success:       #059669;
  --danger:        #DC2626;

  /* Typography */
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Scale (fluid) */
  --t-xs:   0.6875rem;
  --t-sm:   0.8125rem;
  --t-base: 1rem;
  --t-lg:   1.125rem;
  --t-xl:   1.25rem;
  --t-2xl:  1.5rem;
  --t-3xl:  1.875rem;
  --t-4xl:  2.25rem;
  --t-5xl:  3rem;
  --t-6xl:  3.75rem;
  --t-7xl:  4.5rem;
  --t-8xl:  5.625rem;

  /* Spacing */
  --sp-1:  0.25rem;
  --sp-2:  0.5rem;
  --sp-3:  0.75rem;
  --sp-4:  1rem;
  --sp-5:  1.25rem;
  --sp-6:  1.5rem;
  --sp-8:  2rem;
  --sp-10: 2.5rem;
  --sp-12: 3rem;
  --sp-16: 4rem;
  --sp-20: 5rem;
  --sp-24: 6rem;
  --sp-32: 8rem;

  /* Radii */
  --r-sm:   4px;
  --r-md:   8px;
  --r-lg:   12px;
  --r-xl:   16px;
  --r-2xl:  20px;
  --r-3xl:  28px;
  --r-full: 9999px;

  /* Shadows — refined */
  --sh-xs:  0 1px 2px rgba(15,23,42,0.04);
  --sh-sm:  0 2px 6px rgba(15,23,42,0.06), 0 1px 2px rgba(15,23,42,0.04);
  --sh-md:  0 4px 16px rgba(15,23,42,0.08), 0 2px 4px rgba(15,23,42,0.04);
  --sh-lg:  0 12px 32px rgba(15,23,42,0.10), 0 4px 8px rgba(15,23,42,0.06);
  --sh-xl:  0 20px 48px rgba(15,23,42,0.12), 0 8px 16px rgba(15,23,42,0.06);
  --sh-2xl: 0 32px 72px rgba(15,23,42,0.16), 0 12px 24px rgba(15,23,42,0.08);
  --sh-brand: 0 8px 24px rgba(11,107,80,0.28);
  --sh-gold:  0 6px 20px rgba(196,154,42,0.28);

  /* Transitions */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0, 0, 0.2, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --t-fast:  150ms;
  --t-base:  240ms;
  --t-slow:  380ms;

  /* Layout */
  --max-w:     1260px;
  --max-w-sm:  940px;
  --hdr-h:     76px;
  --sec-py:    clamp(72px, 9vw, 132px);
  --sec-py-sm: clamp(52px, 6vw, 88px);
  --col-gap:   clamp(1.5rem, 4vw, 4rem);
}

/* ——————————————————————————————————————
   2. RESET
—————————————————————————————————————— */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  font-size: var(--t-base);
  line-height: 1.6;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, video, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
ul, ol { list-style: none; }
input, textarea, select { font-family: inherit; }
h1,h2,h3,h4,h5,h6 { line-height: 1.12; font-weight: 700; color: var(--text); }

/* ——————————————————————————————————————
   3. TYPOGRAPHY SCALE
—————————————————————————————————————— */
.t-display {
  font-size: clamp(3rem, 6.5vw, var(--t-8xl));
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.0;
}
.t-h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 1.04;
}
.t-h2 {
  font-size: clamp(2rem, 3.5vw, var(--t-5xl));
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
}
.t-h3 {
  font-size: clamp(1.5rem, 2.5vw, var(--t-3xl));
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.18;
}
.t-h4 {
  font-size: clamp(1.125rem, 1.5vw, var(--t-2xl));
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.25;
}
.t-h5 {
  font-size: var(--t-xl);
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.3;
}
.t-lg  { font-size: clamp(var(--t-base), 1.4vw, var(--t-xl)); line-height: 1.65; }
.t-md  { font-size: var(--t-base); line-height: 1.65; }
.t-sm  { font-size: var(--t-sm); line-height: 1.6; }
.t-xs  { font-size: var(--t-xs); line-height: 1.5; }
.t-overline {
  font-size: var(--t-xs);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* Color utilities */
.c-white    { color: var(--white); }
.c-brand    { color: var(--brand-light); }
.c-gold     { color: var(--gold); }
.c-muted    { color: var(--muted); }
.c-2        { color: var(--text-2); }
.c-navy     { color: var(--navy); }

/* Gradient headline */
.t-gradient {
  background: linear-gradient(135deg, #0F8F6C 0%, #1DB088 50%, #0B7A5D 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ——————————————————————————————————————
   4. LAYOUT
—————————————————————————————————————— */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, var(--sp-16));
}
.container--sm { max-width: var(--max-w-sm); }

.section { padding: var(--sec-py) 0; }
.section--sm { padding: var(--sec-py-sm) 0; }

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--col-gap); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-6); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--sp-6); }

.align-center { align-items: center; }
.align-start  { align-items: flex-start; }

/* ——————————————————————————————————————
   5. SECTION LABELS
—————————————————————————————————————— */
.label {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: 5px 12px;
  border-radius: var(--r-sm);
  font-size: var(--t-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: var(--sp-5);
}
.label--brand {
  color: var(--brand-light);
  background: var(--brand-glow);
  border: 1px solid var(--brand-border);
}
.label--gold {
  color: var(--gold);
  background: var(--gold-pale);
  border: 1px solid var(--gold-border);
}
.label--white {
  color: rgba(255,255,255,0.75);
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
}
.label--subtle {
  color: var(--text-2);
  background: var(--surface-mid);
  border: 1px solid var(--border);
}

.sec-hdr {
  max-width: 680px;
  margin: 0 auto var(--sp-16);
  text-align: center;
}
.sec-hdr--left { margin-left: 0; text-align: left; }

/* ——————————————————————————————————————
   6. ICON SYSTEM
—————————————————————————————————————— */
.icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.icon svg { width: 100%; height: 100%; }

/* Feature icon containers */
.feat-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--r-lg);
  background: var(--surface);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand);
  transition: background var(--t-base) var(--ease), border-color var(--t-base) var(--ease), color var(--t-base) var(--ease);
}
.feat-icon svg { width: 22px; height: 22px; }

.feat-icon--sm {
  width: 40px;
  height: 40px;
  border-radius: var(--r-md);
}
.feat-icon--sm svg { width: 18px; height: 18px; }

.feat-icon--lg {
  width: 64px;
  height: 64px;
  border-radius: var(--r-xl);
}
.feat-icon--lg svg { width: 28px; height: 28px; }

/* Icon inside dark container */
.feat-icon--dark {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.10);
  color: rgba(255,255,255,0.7);
}

/* Inline icon-text */
.icon-text {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
}
.icon-text svg { width: 16px; height: 16px; flex-shrink: 0; }

/* Check bullet */
.check-item {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  font-size: var(--t-sm);
  color: var(--text-2);
  line-height: 1.6;
}
.check-icon {
  width: 20px;
  height: 20px;
  border-radius: var(--r-full);
  background: var(--brand-glow);
  border: 1px solid var(--brand-border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--brand-light);
}
.check-icon svg { width: 11px; height: 11px; }
.check-icon--dark {
  background: rgba(11,107,80,0.2);
  border-color: rgba(11,107,80,0.35);
  color: #1DB088;
}

/* ——————————————————————————————————————
   7. NAVIGATION
—————————————————————————————————————— */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--hdr-h);
  display: flex;
  align-items: center;
  transition:
    background var(--t-base) var(--ease),
    border-color var(--t-base) var(--ease),
    box-shadow var(--t-base) var(--ease);
}
.site-header.transparent { background: transparent; }
.site-header.scrolled {
  background: rgba(8, 17, 31, 0.96);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}
.site-header.light-header {
  background: rgba(255,255,255,0.97);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, var(--sp-16));
  gap: var(--sp-8);
}
.nav-logo img { height: 36px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav-item { position: relative; }
.nav-link {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 7px 14px;
  border-radius: var(--r-md);
  font-size: var(--t-sm);
  font-weight: 500;
  color: rgba(255,255,255,0.72);
  transition: color var(--t-fast) var(--ease), background var(--t-fast) var(--ease);
  white-space: nowrap;
}
.nav-link svg { width: 13px; height: 13px; transition: transform var(--t-fast) var(--ease); }
.nav-link:hover { color: var(--white); background: rgba(255,255,255,0.07); }
.nav-item:hover > .nav-link svg { transform: rotate(180deg); }

/* Light header nav */
.light-header .nav-link { color: var(--text-2); }
.light-header .nav-link:hover { color: var(--text); background: var(--surface); }

/* Dropdown */
.nav-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  min-width: 230px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  box-shadow: var(--sh-xl);
  padding: var(--sp-2);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(-50%) translateY(-6px);
  transition:
    opacity var(--t-base) var(--ease),
    visibility var(--t-base) var(--ease),
    transform var(--t-base) var(--ease);
}
.nav-item:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav-dd-item {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  padding: 10px 14px;
  border-radius: var(--r-lg);
  font-size: var(--t-sm);
  font-weight: 500;
  color: var(--text);
  transition: background var(--t-fast) var(--ease), color var(--t-fast) var(--ease);
}
.nav-dd-item:hover { background: var(--surface); color: var(--brand); }
.nav-dd-icon {
  width: 34px; height: 34px;
  border-radius: var(--r-md);
  background: var(--surface);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--brand);
}
.nav-dd-icon svg { width: 16px; height: 16px; }
.nav-dd-text-title { font-size: var(--t-sm); font-weight: 600; color: var(--text); line-height: 1.3; }
.nav-dd-text-sub { font-size: var(--t-xs); color: var(--muted); margin-top: 1px; }

.nav-ctas { display: flex; align-items: center; gap: var(--sp-3); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: var(--r-md);
}
.nav-toggle span {
  display: block;
  width: 20px; height: 1.5px;
  background: var(--white);
  border-radius: 1px;
  transition: transform var(--t-base) var(--ease), opacity var(--t-fast) var(--ease);
}
.light-header .nav-toggle span { background: var(--text); }

.mobile-nav {
  display: none;
  position: fixed;
  top: var(--hdr-h); left: 0; right: 0; bottom: 0;
  background: var(--navy);
  z-index: 999;
  padding: var(--sp-8) clamp(1.25rem, 5vw, var(--sp-12));
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform var(--t-slow) var(--ease-out);
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav-link {
  display: block;
  padding: var(--sp-4) 0;
  font-size: var(--t-xl);
  font-weight: 600;
  color: rgba(255,255,255,0.78);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: color var(--t-fast) var(--ease);
}
.mobile-nav-link:hover { color: var(--white); }
.mobile-nav-actions {
  padding: 2rem 0 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.mobile-nav-cta { justify-content: center; }

/* ——————————————————————————————————————
   8. BUTTONS
—————————————————————————————————————— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: var(--r-md);
  font-size: var(--t-sm);
  font-weight: 600;
  letter-spacing: 0.005em;
  line-height: 1;
  white-space: nowrap;
  border: 1.5px solid transparent;
  transition:
    background var(--t-base) var(--ease),
    color var(--t-base) var(--ease),
    border-color var(--t-base) var(--ease),
    box-shadow var(--t-base) var(--ease),
    transform var(--t-base) var(--ease);
  cursor: pointer;
  text-decoration: none;
}
.btn svg { width: 15px; height: 15px; flex-shrink: 0; }
.btn .btn-arrow { transition: transform var(--t-base) var(--ease); }
.btn:hover .btn-arrow { transform: translateX(3px); }

.btn--primary {
  background: var(--brand);
  color: var(--white);
  border-color: var(--brand);
}
.btn--primary:hover {
  background: var(--brand-mid);
  border-color: var(--brand-mid);
  box-shadow: var(--sh-brand);
  transform: translateY(-1px);
}

.btn--gold {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
  font-weight: 700;
}
.btn--gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  box-shadow: var(--sh-gold);
  transform: translateY(-1px);
}

.btn--white {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}
.btn--white:hover {
  background: var(--surface);
  box-shadow: var(--sh-md);
  transform: translateY(-1px);
}

.btn--outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.28);
}
.btn--outline-white:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.5);
}

.btn--outline-brand {
  background: transparent;
  color: var(--brand-light);
  border-color: var(--brand-light);
}
.btn--outline-brand:hover {
  background: var(--brand-glow);
  box-shadow: 0 0 0 3px rgba(11,107,80,0.08);
}

.btn--ghost {
  background: rgba(255,255,255,0.07);
  color: var(--white);
  border-color: rgba(255,255,255,0.10);
}
.btn--ghost:hover {
  background: rgba(255,255,255,0.11);
  border-color: rgba(255,255,255,0.18);
}

.btn--nav  { padding: 9px 18px; font-size: var(--t-xs); letter-spacing: 0.01em; }
.btn--sm   { padding: 10px 20px; font-size: var(--t-sm); }
.btn--lg   { padding: 16px 32px; font-size: var(--t-base); }
.btn--xl   { padding: 18px 40px; font-size: var(--t-lg); }

/* ——————————————————————————————————————
   9. HERO
—————————————————————————————————————— */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--navy);
  overflow: hidden;
  padding-top: var(--hdr-h);
}

/* Subtle ambient glow — no grid pattern */
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 70% at 70% 50%, rgba(11,107,80,0.14) 0%, transparent 65%),
    radial-gradient(ellipse 50% 60% at 0% 100%, rgba(11,107,80,0.07) 0%, transparent 55%),
    radial-gradient(ellipse 35% 35% at 95% 5%, rgba(196,154,42,0.06) 0%, transparent 50%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: var(--sp-24) 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}

/* Hero text */
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  margin-bottom: var(--sp-7);
  padding: 6px 14px 6px 8px;
  background: rgba(196,154,42,0.10);
  border: 1px solid rgba(196,154,42,0.22);
  border-radius: var(--r-full);
  font-size: var(--t-xs);
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.hero-eyebrow-dot {
  width: 6px; height: 6px;
  border-radius: var(--r-full);
  background: var(--gold);
  animation: pulse-dot 2.4s ease-in-out infinite;
}

.hero-title {
  font-size: clamp(2.75rem, 5.5vw, 5rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.0;
  color: var(--white);
  margin-bottom: var(--sp-6);
}
.hero-title .accent {
  color: #1DB088;
  display: block;
}

.hero-sub {
  font-size: clamp(var(--t-base), 1.6vw, var(--t-xl));
  line-height: 1.65;
  color: rgba(255,255,255,0.55);
  max-width: 520px;
  margin-bottom: var(--sp-10);
}

.hero-ctas {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--sp-4);
  margin-bottom: var(--sp-10);
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: var(--sp-6);
  flex-wrap: wrap;
  padding-top: var(--sp-8);
  border-top: 1px solid rgba(255,255,255,0.07);
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--t-xs);
  font-weight: 500;
  color: rgba(255,255,255,0.42);
  letter-spacing: 0.02em;
}
.hero-trust-item svg { width: 14px; height: 14px; color: var(--brand-light); opacity: 0.8; }

/* Hero visual */
.hero-visual {
  position: relative;
}
.hero-glow {
  position: absolute;
  inset: -60px;
  background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(11,107,80,0.18) 0%, transparent 65%);
  filter: blur(24px);
  pointer-events: none;
}

/* Browser mockup — premium */
.browser {
  border-radius: var(--r-2xl);
  overflow: hidden;
  position: relative;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.07),
    0 24px 64px rgba(0,0,0,0.55),
    0 8px 24px rgba(0,0,0,0.35),
    inset 0 1px 0 rgba(255,255,255,0.06);
}
.browser-bar {
  background: #131F2E;
  padding: 12px 16px 0;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.browser-dots { display: flex; gap: 6px; }
.browser-dot {
  width: 9px; height: 9px; border-radius: var(--r-full);
}
.bd-r { background: #FF5F57; }
.bd-y { background: #FEBC2E; }
.bd-g { background: #28C840; }
.browser-url {
  flex: 1;
  background: rgba(255,255,255,0.06);
  border-radius: var(--r-md);
  padding: 6px 12px;
  font-size: 11px;
  color: rgba(255,255,255,0.35);
  font-family: 'SF Mono', 'Fira Code', 'Fira Mono', monospace;
  letter-spacing: 0.01em;
}
.browser-body { background: #0C1927; line-height: 0; }
.browser-body img { width: 100%; height: auto; }

/* ——————————————————————————————————————
   10. METRICS BAR
—————————————————————————————————————— */
.metrics-bar {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: var(--sp-8) 0;
}
.metrics-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.metric {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  padding: var(--sp-2) clamp(var(--sp-8), 5vw, var(--sp-16));
  position: relative;
}
.metric + .metric::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10%;
  height: 80%;
  width: 1px;
  background: var(--border);
}
.metric-icon {
  width: 44px; height: 44px;
  border-radius: var(--r-lg);
  background: var(--brand-glow);
  border: 1px solid var(--brand-border);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--brand);
}
.metric-icon svg { width: 20px; height: 20px; }
.metric-num {
  font-size: clamp(var(--t-2xl), 3vw, var(--t-4xl));
  font-weight: 900;
  color: var(--navy);
  letter-spacing: -0.03em;
  line-height: 1;
}
.metric-lbl {
  font-size: var(--t-xs);
  color: var(--text-2);
  font-weight: 500;
  max-width: 100px;
  line-height: 1.4;
  margin-top: 2px;
}

.home-billing-head {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: var(--col-gap);
  align-items: center;
  margin-bottom: var(--sp-16);
}
.home-billing-modules {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-3);
}
.home-billing-module {
  padding: var(--sp-4);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  text-align: center;
  box-shadow: var(--sh-xs);
}
.home-billing-module-icon { margin: 0 auto var(--sp-2); }
.home-billing-module-label {
  font-size: var(--t-xs);
  font-weight: 600;
  color: var(--navy);
}
.home-billing-shots {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-5);
}
.home-billing-cta {
  text-align: center;
  margin-top: 2.5rem;
}

/* ——————————————————————————————————————
   11. PILLAR CARDS
—————————————————————————————————————— */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-5);
}
.pillar {
  padding: var(--sp-8) var(--sp-7);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-2xl);
  transition: transform var(--t-base) var(--ease), box-shadow var(--t-base) var(--ease), border-color var(--t-base) var(--ease);
  position: relative;
  overflow: hidden;
}
.pillar::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--brand), var(--brand-light));
  opacity: 0;
  transition: opacity var(--t-base) var(--ease);
}
.pillar:hover {
  transform: translateY(-3px);
  box-shadow: var(--sh-lg);
  border-color: rgba(11,107,80,0.18);
}
.pillar:hover::after { opacity: 1; }
.pillar:hover .feat-icon {
  background: var(--brand-glow);
  border-color: var(--brand-border);
}

.pillar .feat-icon { margin-bottom: var(--sp-5); }
.pillar-title {
  font-size: var(--t-lg);
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.015em;
  margin-bottom: var(--sp-3);
  line-height: 1.3;
}
.pillar-desc {
  font-size: var(--t-sm);
  color: var(--text-2);
  line-height: 1.65;
}

/* ——————————————————————————————————————
   12. FEATURE ROWS (Split Sections)
—————————————————————————————————————— */
.feat-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
  padding: var(--sp-20) 0;
  border-bottom: 1px solid var(--border-light);
}
.feat-row:last-child { border-bottom: none; }
.feat-row--rev .feat-text  { order: 2; }
.feat-row--rev .feat-visual { order: 1; }

.feat-lbl {
  font-size: var(--t-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand-light);
  margin-bottom: var(--sp-4);
}
.feat-title {
  font-size: clamp(var(--t-2xl), 2.8vw, var(--t-4xl));
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin-bottom: var(--sp-4);
}
.feat-desc {
  font-size: var(--t-base);
  color: var(--text-2);
  line-height: 1.7;
  margin-bottom: var(--sp-7);
}
.feat-checks {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  margin-bottom: var(--sp-8);
}

/* Screenshot framing */
.feat-visual { position: relative; }
.shot-wrap {
  border-radius: var(--r-2xl);
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(15,23,42,0.06),
    var(--sh-2xl);
  position: relative;
}
.shot-wrap img { width: 100%; display: block; }

/* Floating annotation tag */
.shot-tag {
  position: absolute;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--sp-3) var(--sp-4);
  box-shadow: var(--sh-lg);
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--t-xs);
  font-weight: 600;
  color: var(--navy);
  white-space: nowrap;
  z-index: 2;
  letter-spacing: 0.01em;
}
.shot-tag-dot {
  width: 7px; height: 7px;
  border-radius: var(--r-full);
  background: var(--success);
}
.shot-tag svg { width: 13px; height: 13px; color: var(--brand); }

/* Ambient color glow behind screenshots */
.shot-glow {
  position: absolute;
  width: 220px; height: 220px;
  border-radius: var(--r-full);
  filter: blur(70px);
  opacity: 0.35;
  pointer-events: none;
}
.shot-glow--brand { background: var(--brand); }
.shot-glow--gold  { background: var(--gold); }

/* ——————————————————————————————————————
   13. WORKFLOW STEPS
—————————————————————————————————————— */
.workflow-section {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.workflow-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 45% 70% at 100% 50%, rgba(11,107,80,0.13) 0%, transparent 60%),
    radial-gradient(ellipse 30% 50% at 0% 100%, rgba(11,107,80,0.07) 0%, transparent 55%);
  pointer-events: none;
}

.workflow-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-8);
  position: relative;
}
/* Connector line */
.workflow-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(12.5% + 20px);
  right: calc(12.5% + 20px);
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(11,107,80,0.4) 15%,
    rgba(11,107,80,0.4) 85%,
    transparent 100%
  );
  pointer-events: none;
}

.wf-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.wf-num {
  width: 56px; height: 56px;
  border-radius: var(--r-full);
  border: 1.5px solid rgba(11,107,80,0.45);
  background: rgba(11,107,80,0.10);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: var(--sp-6);
  position: relative;
  z-index: 1;
  transition: background var(--t-base) var(--ease), border-color var(--t-base) var(--ease), transform var(--t-base) var(--ease);
  color: var(--brand-light);
}
.wf-num svg { width: 22px; height: 22px; }
.wf-step:hover .wf-num {
  background: var(--brand);
  border-color: var(--brand);
  color: var(--white);
  transform: scale(1.08);
}
.wf-title {
  font-size: var(--t-base);
  font-weight: 600;
  color: var(--white);
  margin-bottom: var(--sp-3);
  line-height: 1.3;
}
.wf-desc {
  font-size: var(--t-sm);
  color: rgba(255,255,255,0.45);
  line-height: 1.65;
}

/* ——————————————————————————————————————
   14. SOLUTION CARDS
—————————————————————————————————————— */
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-5);
}
.sol-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-3xl);
  padding: var(--sp-10);
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  transition: transform var(--t-base) var(--ease), box-shadow var(--t-base) var(--ease), border-color var(--t-base) var(--ease);
  position: relative;
  overflow: hidden;
}
.sol-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: radial-gradient(ellipse 80% 60% at 90% 10%, rgba(11,107,80,0.04) 0%, transparent 60%);
  pointer-events: none;
}
.sol-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--sh-xl);
  border-color: rgba(11,107,80,0.16);
}
.sol-card:hover .feat-icon {
  background: var(--brand-glow);
  border-color: var(--brand-border);
}

.sol-tag {
  display: inline-block;
  padding: 3px 10px;
  background: var(--surface-mid);
  border-radius: var(--r-full);
  font-size: var(--t-xs);
  font-weight: 600;
  color: var(--text-2);
  letter-spacing: 0.04em;
  align-self: flex-start;
}
.sol-title {
  font-size: var(--t-2xl);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.025em;
  line-height: 1.2;
}
.sol-desc {
  font-size: var(--t-sm);
  color: var(--text-2);
  line-height: 1.7;
}
.sol-benefits {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  margin-top: auto;
  padding-top: var(--sp-4);
  border-top: 1px solid var(--border-light);
}
.sol-benefit {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--t-sm);
  color: var(--text-2);
}
.sol-benefit svg { width: 13px; height: 13px; color: var(--brand-light); flex-shrink: 0; }

/* ——————————————————————————————————————
   15. SEO PREVIEW
—————————————————————————————————————— */
.seo-strip {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.seo-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: var(--col-gap);
  align-items: center;
}
.seo-pills {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
  margin-top: var(--sp-6);
}
.seo-pill {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: 8px 16px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-full);
  font-size: var(--t-sm);
  font-weight: 500;
  color: var(--text-2);
  transition: all var(--t-fast) var(--ease);
}
.seo-pill svg { width: 14px; height: 14px; color: var(--muted); transition: color var(--t-fast) var(--ease); }
.seo-pill:hover {
  border-color: var(--brand);
  color: var(--brand);
  background: var(--brand-glow);
}
.seo-pill:hover svg { color: var(--brand); }

/* ——————————————————————————————————————
   16. PROOF SECTION
—————————————————————————————————————— */
.proof-section {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.proof-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 60% at 50% 50%, rgba(11,107,80,0.07) 0%, transparent 65%);
  pointer-events: none;
}
.proof-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-5); }
.proof-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--r-2xl);
  padding: var(--sp-8);
  transition: background var(--t-base) var(--ease), border-color var(--t-base) var(--ease);
}
.proof-card:hover {
  background: rgba(255,255,255,0.05);
  border-color: rgba(11,107,80,0.22);
}
.proof-mark {
  font-size: 3rem;
  line-height: 0.6;
  color: var(--brand-light);
  opacity: 0.25;
  font-family: Georgia, 'Times New Roman', serif;
  margin-bottom: var(--sp-5);
}
.proof-placeholder {
  font-size: var(--t-sm);
  color: rgba(255,255,255,0.25);
  line-height: 1.65;
  border: 1px dashed rgba(255,255,255,0.08);
  padding: var(--sp-4);
  border-radius: var(--r-lg);
  text-align: center;
  margin-bottom: var(--sp-6);
}
.proof-author { display: flex; align-items: center; gap: var(--sp-3); }
.proof-avatar {
  width: 38px; height: 38px;
  border-radius: var(--r-full);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.2);
}
.proof-avatar svg { width: 18px; height: 18px; }
.proof-name { font-size: var(--t-sm); font-weight: 600; color: rgba(255,255,255,0.45); }
.proof-role { font-size: var(--t-xs); color: rgba(255,255,255,0.25); margin-top: 2px; }

/* Platform stats row */
.proof-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-4);
  padding-top: var(--sp-14);
  margin-top: var(--sp-14);
  border-top: 1px solid rgba(255,255,255,0.06);
}
.pstat-num {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: var(--sp-2);
}
.pstat-num .accent { color: var(--brand-light); }
.pstat-lbl { font-size: var(--t-sm); color: rgba(255,255,255,0.35); }

/* ——————————————————————————————————————
   17. CTA SECTION
—————————————————————————————————————— */
.cta-band {
  background: var(--brand);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-band-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 80% at 15% 50%, rgba(255,255,255,0.07) 0%, transparent 55%),
    radial-gradient(ellipse 45% 60% at 85% 50%, rgba(0,0,0,0.12) 0%, transparent 55%);
  pointer-events: none;
}
.cta-inner { position: relative; z-index: 1; }
.cta-title {
  font-size: clamp(var(--t-3xl), 5vw, var(--t-6xl));
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.035em;
  line-height: 1.05;
  margin-bottom: var(--sp-5);
}
.cta-sub {
  font-size: clamp(var(--t-base), 1.5vw, var(--t-xl));
  color: rgba(255,255,255,0.7);
  max-width: 520px;
  margin: 0 auto var(--sp-10);
  line-height: 1.65;
}
.cta-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--sp-4);
  flex-wrap: wrap;
}
.cta-contacts {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--sp-8);
  flex-wrap: wrap;
  margin-top: var(--sp-8);
  padding-top: var(--sp-8);
  border-top: 1px solid rgba(255,255,255,0.15);
}
.cta-contact-item {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--t-sm);
  color: rgba(255,255,255,0.6);
}
.cta-contact-item svg { width: 14px; height: 14px; }
.cta-contact-item a { color: rgba(255,255,255,0.88); transition: color var(--t-fast) var(--ease); }
.cta-contact-item a:hover { color: var(--white); }

/* ——————————————————————————————————————
   18. FOOTER
—————————————————————————————————————— */
.site-footer {
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-main {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1.3fr;
  gap: clamp(2rem, 5vw, 5rem);
  padding: var(--sp-20) 0 var(--sp-16);
}
.footer-logo { height: 34px; width: auto; margin-bottom: var(--sp-5); }
.footer-tagline {
  font-size: var(--t-sm);
  color: rgba(255,255,255,0.38);
  line-height: 1.7;
  max-width: 260px;
  margin-bottom: var(--sp-6);
}
.footer-contacts { display: flex; flex-direction: column; gap: var(--sp-3); }
.footer-contact {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  font-size: var(--t-sm);
  color: rgba(255,255,255,0.42);
  transition: color var(--t-fast) var(--ease);
  line-height: 1.5;
}
.footer-contact:hover { color: rgba(255,255,255,0.75); }
.footer-contact svg { width: 14px; height: 14px; flex-shrink: 0; margin-top: 2px; opacity: 0.5; }
.footer-contact-list { display: flex; flex-direction: column; gap: var(--sp-3); }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  font-size: var(--t-sm);
  color: rgba(255,255,255,0.42);
  transition: color var(--t-fast) var(--ease);
  line-height: 1.5;
}
.footer-contact-item:hover { color: rgba(255,255,255,0.75); }
.footer-contact-icon { width: 14px; height: 14px; flex-shrink: 0; margin-top: 2px; opacity: 0.5; }

.footer-col-title {
  font-size: var(--t-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.28);
  margin-bottom: var(--sp-5);
}
.footer-links { display: flex; flex-direction: column; gap: var(--sp-3); }
.footer-link {
  font-size: var(--t-sm);
  color: rgba(255,255,255,0.44);
  transition: color var(--t-fast) var(--ease);
  line-height: 1.4;
}
.footer-link:hover { color: rgba(255,255,255,0.85); }

.footer-cta {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--r-xl);
  padding: var(--sp-6);
}
.footer-cta-box {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--r-xl);
  padding: var(--sp-6);
}
.footer-cta-title {
  font-size: var(--t-base);
  font-weight: 700;
  color: var(--white);
  margin-bottom: var(--sp-2);
}
.footer-cta-desc {
  font-size: var(--t-sm);
  color: rgba(255,255,255,0.38);
  line-height: 1.6;
  margin-bottom: var(--sp-5);
}
.footer-phone {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--t-xl);
  font-weight: 700;
  color: var(--white);
  margin-bottom: var(--sp-4);
  transition: color var(--t-fast) var(--ease);
}
.footer-phone:hover { color: var(--brand-light); }
.footer-phone svg { width: 18px; height: 18px; }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--sp-4);
  padding: var(--sp-6) 0;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-copy { font-size: var(--t-sm); color: rgba(255,255,255,0.25); }
.footer-legal { display: flex; gap: var(--sp-6); }
.footer-legal-link {
  font-size: var(--t-sm);
  color: rgba(255,255,255,0.28);
  transition: color var(--t-fast) var(--ease);
}
.footer-legal-link:hover { color: rgba(255,255,255,0.6); }
.footer-bottom-links { display: flex; gap: var(--sp-6); }
.footer-bottom-link {
  font-size: var(--t-sm);
  color: rgba(255,255,255,0.28);
  transition: color var(--t-fast) var(--ease);
}
.footer-bottom-link:hover { color: rgba(255,255,255,0.6); }

.cta-section {
  background:
    radial-gradient(circle at top right, rgba(11,107,80,0.15), transparent 30%),
    linear-gradient(180deg, rgba(8,17,31,1) 0%, rgba(13,30,53,1) 100%);
  position: relative;
  overflow: hidden;
}

/* ——————————————————————————————————————
   19. INNER PAGE HERO
—————————————————————————————————————— */
.page-hero {
  background: var(--navy);
  position: relative;
  overflow: hidden;
  padding-top: calc(var(--hdr-h) + var(--sp-20));
  padding-bottom: var(--sp-20);
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 80% at 72% 50%, rgba(11,107,80,0.13) 0%, transparent 60%),
    radial-gradient(ellipse 35% 50% at 8% 85%, rgba(11,107,80,0.07) 0%, transparent 55%);
  pointer-events: none;
}
.page-hero-inner { position: relative; z-index: 1; max-width: 780px; }
.page-hero-title {
  font-size: clamp(2.5rem, 5vw, 4.25rem);
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.038em;
  line-height: 1.06;
  margin-bottom: var(--sp-5);
}
.page-hero-desc {
  font-size: clamp(var(--t-base), 1.5vw, var(--t-xl));
  color: rgba(255,255,255,0.55);
  line-height: 1.65;
  max-width: 600px;
}

/* ——————————————————————————————————————
   20. FEATURE CATEGORY (Features page)
—————————————————————————————————————— */
.feat-cat {
  padding: var(--sp-20) 0;
  border-bottom: 1px solid var(--border-light);
  scroll-margin-top: calc(var(--hdr-h) + var(--sp-8));
}
.feat-cat:last-child { border-bottom: none; }

.feat-cat-hdr {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-5);
  margin-bottom: var(--sp-10);
}
.feat-cat-title {
  font-size: var(--t-3xl);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
  margin-bottom: var(--sp-2);
}
.feat-cat-desc {
  font-size: var(--t-base);
  color: var(--text-2);
  line-height: 1.65;
}

.feat-items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-4);
}
.feat-item {
  padding: var(--sp-5) var(--sp-6);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  transition: all var(--t-base) var(--ease);
}
.feat-item:hover {
  background: var(--white);
  border-color: rgba(11,107,80,0.18);
  box-shadow: var(--sh-md);
  transform: translateY(-2px);
}
.feat-item .feat-icon--sm { margin-bottom: var(--sp-3); }
.feat-item-title {
  font-size: var(--t-sm);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: var(--sp-2);
  letter-spacing: -0.01em;
}
.feat-item-desc { font-size: var(--t-xs); color: var(--muted); line-height: 1.55; }

/* ——————————————————————————————————————
   21. CONTACT FORM
—————————————————————————————————————— */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.45fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}
.contact-sidebar {
  background: var(--navy);
  border-radius: var(--r-2xl);
  padding: var(--sp-10);
  position: sticky;
  top: calc(var(--hdr-h) + var(--sp-6));
}
.contact-panel {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-2xl);
  padding: var(--sp-10);
  box-shadow: var(--sh-sm);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-5); }
.form-group { display: flex; flex-direction: column; gap: var(--sp-2); }
.form-group.full { grid-column: 1 / -1; }
.form-label {
  font-size: var(--t-sm);
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.005em;
}
.form-req { color: var(--danger); }
.form-input, .form-select, .form-textarea {
  padding: 12px 15px;
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  font-size: var(--t-sm);
  color: var(--text);
  background: var(--white);
  transition: border-color var(--t-fast) var(--ease), box-shadow var(--t-fast) var(--ease);
  outline: none;
  width: 100%;
  font-family: var(--sans);
  line-height: 1.5;
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--muted); }
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(11,107,80,0.10);
}
.form-select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2394A3B8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 38px;
  cursor: pointer;
}
.form-textarea { resize: vertical; min-height: 120px; }

/* ——————————————————————————————————————
   22. ABOUT / VALUES
—————————————————————————————————————— */
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-5);
}
.value-card {
  text-align: center;
  padding: var(--sp-8) var(--sp-6);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-2xl);
  transition: all var(--t-base) var(--ease);
}
.value-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--sh-lg);
  background: var(--white);
}
.value-card .feat-icon { margin: 0 auto var(--sp-5); }
.value-title {
  font-size: var(--t-lg);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: var(--sp-3);
  letter-spacing: -0.01em;
}
.value-desc { font-size: var(--t-sm); color: var(--text-2); line-height: 1.65; }

.page-hero--split .page-hero-inner { max-width: none; }
.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}
.hero-copy { max-width: 720px; }
.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: 7px 12px;
  margin-bottom: var(--sp-6);
  border-radius: var(--r-full);
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.75);
  font-size: var(--t-xs);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.hero-kicker-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 6px rgba(196,154,42,0.12);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-4);
  margin-top: var(--sp-8);
}
.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--sp-4);
  margin-top: var(--sp-8);
}
.hero-fact {
  padding: var(--sp-5);
  border-radius: var(--r-xl);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.09);
  backdrop-filter: blur(16px);
}
.hero-fact strong {
  display: block;
  margin-bottom: 6px;
  color: var(--white);
  font-size: var(--t-lg);
  letter-spacing: -0.02em;
}
.hero-fact span {
  color: rgba(255,255,255,0.62);
  font-size: var(--t-xs);
  line-height: 1.6;
}
.hero-frame { position: relative; isolation: isolate; min-height: 440px; }
.hero-glass-card {
  position: absolute;
  inset: 8% 4% auto auto;
  width: 46%;
  padding: var(--sp-5);
  border-radius: var(--r-2xl);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: var(--sh-xl);
  backdrop-filter: blur(22px);
  z-index: 3;
}
.hero-glass-card h3 {
  color: var(--white);
  font-size: var(--t-base);
  letter-spacing: -0.02em;
  margin-bottom: var(--sp-2);
}
.hero-glass-card p {
  color: rgba(255,255,255,0.62);
  font-size: var(--t-xs);
  line-height: 1.6;
}
.shot-card {
  position: absolute;
  overflow: hidden;
  border-radius: var(--r-2xl);
  border: 1px solid rgba(255,255,255,0.11);
  background: rgba(7,16,29,0.72);
  box-shadow: var(--sh-2xl);
}
.shot-card img { width: 100%; display: block; }
.shot-card--main { inset: auto 0 0 auto; width: 88%; z-index: 2; }
.shot-card--offset {
  left: 0;
  top: 18%;
  width: 52%;
  z-index: 1;
  transform: translateY(-10%);
}
.shot-card--offset .shot-caption,
.shot-card--main .shot-caption {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  padding: 10px 14px;
  background: rgba(7,16,29,0.92);
  color: rgba(255,255,255,0.7);
  font-size: var(--t-xs);
  letter-spacing: 0.02em;
}
.shot-caption svg { width: 14px; height: 14px; color: var(--brand-light); }
.stat-strip { margin-top: calc(-1 * var(--sp-12)); position: relative; z-index: 5; }
.stat-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--sp-4);
}
.stat-chip {
  padding: var(--sp-6);
  background: rgba(255,255,255,0.94);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  box-shadow: var(--sh-lg);
}
.stat-chip .k {
  display: block;
  margin-bottom: 6px;
  color: var(--navy);
  font-size: clamp(1.45rem, 2vw, 1.9rem);
  font-weight: 800;
  letter-spacing: -0.03em;
}
.stat-chip .l { color: var(--text-2); font-size: var(--t-xs); line-height: 1.6; }
.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.split-section--reverse > :first-child { order: 2; }
.split-section--reverse > :last-child { order: 1; }
.section-copy { max-width: 620px; }
.section-copy .label { margin-bottom: var(--sp-4); }
.section-copy h2 { margin-bottom: var(--sp-5); }
.section-copy p + p { margin-top: var(--sp-4); }
.icon-list {
  display: grid;
  gap: var(--sp-4);
  margin-top: var(--sp-8);
}
.icon-list-item {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-4);
  padding: var(--sp-4) 0;
  border-top: 1px solid var(--border-light);
}
.icon-list-item:first-child { border-top: 0; padding-top: 0; }
.icon-list-item .feat-icon { margin-top: 2px; }
.icon-list-item h3 {
  font-size: var(--t-base);
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}
.icon-list-item p {
  color: var(--text-2);
  font-size: var(--t-sm);
  line-height: 1.65;
}
.panel-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--sp-5);
}
.premium-panel {
  padding: var(--sp-7);
  border-radius: var(--r-2xl);
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(255,255,255,1) 0%, rgba(248,250,252,1) 100%);
  box-shadow: var(--sh-sm);
}
.premium-panel h3 {
  margin: var(--sp-5) 0 var(--sp-3);
  font-size: var(--t-lg);
  letter-spacing: -0.02em;
}
.premium-panel p { color: var(--text-2); font-size: var(--t-sm); line-height: 1.7; }
.dark-panel {
  padding: var(--sp-7);
  border-radius: var(--r-2xl);
  border: 1px solid rgba(255,255,255,0.09);
  background: rgba(255,255,255,0.04);
}
.dark-panel h3 {
  margin: var(--sp-5) 0 var(--sp-3);
  color: var(--white);
  font-size: var(--t-lg);
  letter-spacing: -0.02em;
}
.dark-panel p { color: rgba(255,255,255,0.58); font-size: var(--t-sm); line-height: 1.7; }
.media-stack { position: relative; min-height: 420px; }
.media-stack .browser,
.media-stack .shot-wrap { position: absolute; }
.media-stack .browser:first-child,
.media-stack .shot-wrap:first-child { inset: 0 14% 0 0; z-index: 2; }
.media-stack .browser:last-child,
.media-stack .shot-wrap:last-child { width: 46%; right: 0; bottom: -8%; z-index: 3; }
.surface-band {
  padding: var(--sp-10);
  border-radius: var(--r-3xl);
  border: 1px solid var(--border);
  background: radial-gradient(circle at top right, rgba(11,107,80,0.08), transparent 30%), linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 100%);
  box-shadow: var(--sh-sm);
}
.comparison-band {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--sp-5);
}
.comparison-card {
  padding: var(--sp-7);
  border-radius: var(--r-2xl);
  border: 1px solid var(--border);
  background: var(--white);
}
.comparison-card--dark {
  background: var(--navy);
  border-color: rgba(255,255,255,0.08);
}
.comparison-card--dark h3,
.comparison-card--dark p,
.comparison-card--dark li { color: var(--white); }
.comparison-card h3 {
  margin-bottom: var(--sp-3);
  font-size: var(--t-lg);
  letter-spacing: -0.02em;
}
.comparison-card p { color: var(--text-2); font-size: var(--t-sm); line-height: 1.7; }
.contact-pills {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--sp-4);
}
.contact-pill {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  padding: var(--sp-5);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  box-shadow: var(--sh-sm);
}
.contact-pill strong {
  display: block;
  margin-bottom: 4px;
  color: var(--navy);
  font-size: var(--t-sm);
}
.contact-pill span,
.contact-pill a { color: var(--text-2); font-size: var(--t-sm); }
.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--sp-5);
}
.faq-card {
  padding: var(--sp-7);
  border-radius: var(--r-2xl);
  border: 1px solid var(--border);
  background: var(--white);
  box-shadow: var(--sh-sm);
}
.faq-card h3 {
  margin: var(--sp-5) 0 var(--sp-3);
  font-size: var(--t-lg);
  letter-spacing: -0.02em;
}
.faq-card p { color: var(--text-2); font-size: var(--t-sm); line-height: 1.7; }

/* ——————————————————————————————————————
   23. ANIMATIONS
—————————————————————————————————————— */
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.75); }
}
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-10px); }
}

.animate-up {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}
.animate-up.in { opacity: 1; transform: translateY(0); }

.animate-in {
  opacity: 0;
  transition: opacity 0.65s ease;
}
.animate-in.in { opacity: 1; }

.animate-scale {
  opacity: 0;
  transform: scale(0.96);
  transition:
    opacity 0.6s ease,
    transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.animate-scale.in { opacity: 1; transform: scale(1); }

.d1 { transition-delay: 0.08s; }
.d2 { transition-delay: 0.16s; }
.d3 { transition-delay: 0.24s; }
.d4 { transition-delay: 0.32s; }
.d5 { transition-delay: 0.40s; }
.d6 { transition-delay: 0.48s; }

/* ——————————————————————————————————————
   24. UTILITIES
—————————————————————————————————————— */
.bg-navy    { background: var(--navy); }
.bg-surface { background: var(--surface); }
.bg-white   { background: var(--white); }
.divider { height: 1px; background: var(--border); }
.divider--dark { background: rgba(255,255,255,0.06); }
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border-width: 0;
}

/* ——————————————————————————————————————
   25. RESPONSIVE
—————————————————————————————————————— */
@media (max-width: 1024px) {
  :root { --sec-py: clamp(56px, 7vw, 96px); }

  .nav-links { display: none; }
  .nav-ctas { display: none; }
  .nav-toggle { display: flex; }
  .mobile-nav { display: block; }

  .hero-grid { grid-template-columns: 1fr; }
  .hero {
    min-height: auto;
    padding-top: var(--hdr-h);
  }
  .hero-content {
    padding: var(--sp-20) 0 var(--sp-16);
  }
  .hero-visual {
    display: block;
    max-width: 760px;
    width: 100%;
    margin: 0 auto;
  }
  .hero-sub { max-width: none; }
  .hero-trust { gap: var(--sp-4); }
  .metrics-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--sp-4);
    align-items: stretch;
  }
  .metric {
    padding: var(--sp-5);
    border: 1px solid var(--border);
    border-radius: var(--r-xl);
    background: var(--white);
  }
  .metric + .metric::before { display: none; }
  .metric-lbl { max-width: none; }

  .pillars { grid-template-columns: repeat(2, 1fr); }
  .workflow-steps { grid-template-columns: repeat(2, 1fr); }
  .workflow-steps::before { display: none; }
  .solutions-grid { grid-template-columns: 1fr; }
  .proof-grid { grid-template-columns: repeat(2, 1fr); }
  .proof-stats { grid-template-columns: repeat(2, 1fr); gap: var(--sp-6); }

  .footer-main { grid-template-columns: 1fr 1fr 1fr; gap: var(--sp-10); }
  .footer-brand { grid-column: 1 / -1; }
  .footer-cta { grid-column: 1 / -1; }
  .footer-cta-box { grid-column: 1 / -1; }

  .feat-row { grid-template-columns: 1fr; gap: var(--sp-10); }
  .feat-row--rev .feat-text  { order: 0; }
  .feat-row--rev .feat-visual { order: 1; }

  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-sidebar { position: static; }
  .page-hero-grid,
  .split-section,
  .comparison-band { grid-template-columns: 1fr; }
  .panel-grid,
  .faq-grid,
  .stat-strip-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-facts,
  .contact-pills { grid-template-columns: 1fr; }
  .hero-frame,
  .media-stack { min-height: auto; }
  .hero-glass-card,
  .shot-card,
  .media-stack .browser,
  .media-stack .shot-wrap { position: relative; inset: auto; width: 100%; }
  .shot-card--offset { transform: none; margin-bottom: var(--sp-5); }
  .shot-card--main { margin-top: var(--sp-5); }
  .media-stack .browser:first-child,
  .media-stack .shot-wrap:first-child,
  .media-stack .browser:last-child,
  .media-stack .shot-wrap:last-child { width: 100%; }

  .seo-inner { grid-template-columns: 1fr; }
  .home-billing-head { grid-template-columns: 1fr; }
  .home-billing-modules { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .feat-items { grid-template-columns: repeat(2, 1fr); }
  .grid-2 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  :root { --sec-py: clamp(44px, 8vw, 68px); }

  .pillars { grid-template-columns: 1fr; }
  .workflow-steps { grid-template-columns: 1fr; }
  .solutions-grid { grid-template-columns: 1fr; }
  .proof-grid { grid-template-columns: 1fr; }
  .proof-stats { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .panel-grid,
  .faq-grid,
  .stat-strip-grid,
  .comparison-band,
  .contact-pills { grid-template-columns: 1fr; }
  .feat-items { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .hero {
    min-height: auto;
  }
  .hero-content {
    padding: var(--sp-16) 0 var(--sp-12);
  }
  .hero-title {
    font-size: clamp(2.3rem, 10vw, 3.4rem);
  }
  .hero-sub {
    font-size: var(--t-base);
    margin-bottom: var(--sp-8);
  }
  .hero-trust {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--sp-3);
    align-items: flex-start;
  }
  .hero-visual {
    margin-top: var(--sp-4);
  }
  .hero-ctas { flex-direction: column; align-items: flex-start; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-facts { grid-template-columns: 1fr; }
  .hero-ctas .btn,
  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }
  .metrics-row {
    grid-template-columns: 1fr;
  }
  .metric {
    width: 100%;
  }
  .pillars { gap: var(--sp-4); }
  .pillar { padding: var(--sp-6); }
  .feat-row {
    padding: var(--sp-12) 0;
    gap: var(--sp-8);
  }
  .home-billing-modules {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .home-billing-shots {
    grid-template-columns: 1fr;
  }
  .cta-actions { flex-direction: column; }
  .footer-main { grid-template-columns: 1fr; gap: var(--sp-8); }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .footer-bottom-links { flex-direction: column; gap: var(--sp-3); }
  .cta-contacts { flex-direction: column; gap: var(--sp-4); }
  .btn--xl { padding: 15px 28px; font-size: var(--t-base); }
}

/* ——————————————————————————————————————
   26. LEGACY CLASS ALIASES (v1 → v2)
   Maps old footer class names to v2 styles
   so existing pages render correctly.
—————————————————————————————————————— */
.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  font-size: var(--t-sm);
  color: rgba(255,255,255,0.42);
  transition: color var(--t-fast) var(--ease);
  line-height: 1.5;
}
.footer-contact-item:hover { color: rgba(255,255,255,0.75); }
.footer-contact-icon,
.footer-contact-item svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  margin-top: 2px;
  opacity: 0.5;
}
.footer-cta-box {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--r-xl);
  padding: var(--sp-6);
}
.footer-cta-phone {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--t-xl);
  font-weight: 700;
  color: var(--white);
  margin-bottom: var(--sp-4);
  transition: color var(--t-fast) var(--ease);
}
.footer-cta-phone:hover { color: var(--brand-light); }
.footer-cta-phone svg { width: 18px; height: 18px; }
.footer-bottom-links {
  display: flex;
  gap: var(--sp-6);
}
.footer-bottom-link {
  font-size: var(--t-sm);
  color: rgba(255,255,255,0.28);
  transition: color var(--t-fast) var(--ease);
}
.footer-bottom-link:hover { color: rgba(255,255,255,0.6); }
