/* ============================================================
   SEISMIC — Design System  (Emerald & Obsidian)
   ============================================================ */
:root {
  --green:        #00a36c;
  --green-dark:   #00875a;
  --green-light:  #d1fae5;
  --green-glow:   rgba(0,163,108,.18);
  --obsidian:     #0b0f19;
  --slate-950:    #0f172a;
  --slate-900:    #1e293b;
  --slate-800:    #334155;
  --slate-600:    #475569;
  --slate-500:    #64748b;
  --slate-400:    #94a3b8;
  --slate-200:    #e2e8f0;
  --slate-100:    #f1f5f9;
  --slate-50:     #f8fafc;
  --white:        #ffffff;
  --font:         'Inter', sans-serif;
  --mono:         'Inconsolata', monospace;
  --radius-sm:    4px;
  --radius-md:    8px;
  --radius-lg:    14px;
  --radius-xl:    20px;
  --shadow-card:  0 2px 12px rgba(0,0,0,.06), 0 1px 3px rgba(0,0,0,.04);
  --shadow-float: 0 16px 48px rgba(0,0,0,.12);
  --transition:   all .18s cubic-bezier(.4,0,.2,1);
}

*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body { font-family: var(--font); color: var(--slate-950); background: var(--white); -webkit-font-smoothing: antialiased; line-height: 1.6; overflow-x: hidden; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ── Typography ── */
.h-jumbo { font-size: clamp(2.75rem,5.5vw,4.25rem); font-weight: 800; line-height: 1.08; letter-spacing: -.04em; color: var(--slate-950); }
.h1      { font-size: clamp(2rem,4vw,3rem);   font-weight: 800; line-height: 1.1;  letter-spacing: -.035em; }
.h2      { font-size: clamp(1.6rem,3vw,2.25rem); font-weight: 800; line-height: 1.15; letter-spacing: -.03em; }
.h3      { font-size: 1.25rem; font-weight: 700; line-height: 1.25; }
.body-lg { font-size: 1.125rem; color: var(--slate-500); line-height: 1.7; }
.body-md { font-size: 1rem;     color: var(--slate-600); line-height: 1.7; }
.label   { font-size: .75rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--green); }

/* ── Layout Utilities ── */
.container { max-width: 1280px; margin: 0 auto; padding: 0 1.5rem; }
.container-sm { max-width: 900px; margin: 0 auto; padding: 0 1.5rem; }
.section  { padding: 6rem 0; }
.section-sm { padding: 4rem 0; }
.text-center { text-align: center; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; }
@media(max-width:1024px) { .grid-2 { grid-template-columns: 1fr; gap: 3rem; } .grid-3 { grid-template-columns: repeat(2,1fr); } .grid-4 { grid-template-columns: repeat(2,1fr); } }
@media(max-width:640px)  { .grid-3 { grid-template-columns: 1fr; } .grid-4 { grid-template-columns: 1fr; } }

/* ── Buttons ── */
.btn { display: inline-flex; align-items: center; gap: .5rem; font-weight: 600; font-size: .95rem; padding: .7rem 1.4rem; border-radius: var(--radius-sm); border: 1.5px solid transparent; cursor: pointer; transition: var(--transition); white-space: nowrap; text-decoration: none; }
.btn-primary   { background: var(--green); color: var(--white); border-color: var(--green); }
.btn-primary:hover { background: var(--green-dark); border-color: var(--green-dark); }
.btn-outline   { background: transparent; color: var(--slate-950); border-color: var(--slate-300,#cbd5e1); }
.btn-outline:hover { background: var(--slate-50); }
.btn-ghost     { background: transparent; color: var(--slate-950); border-color: transparent; }
.btn-ghost:hover { background: var(--slate-100); }
.btn-white     { background: var(--white); color: var(--slate-950); border-color: var(--white); }
.btn-white:hover { background: var(--slate-100); }
.btn-sm  { padding: .5rem 1rem; font-size: .875rem; }
.btn-lg  { padding: .9rem 1.75rem; font-size: 1.05rem; }

/* ── TOP BANNER ── */
.top-banner { background: var(--obsidian); color: var(--white); text-align: center; padding: .7rem 1rem; font-size: .85rem; font-weight: 500; }
.top-banner a { color: var(--green); font-weight: 600; margin-left: .4rem; text-decoration: underline; }

/* ── NAVBAR ── */
.navbar { position: sticky; top: 0; z-index: 999; background: rgba(255,255,255,.96); border-bottom: 1px solid var(--slate-200); backdrop-filter: blur(12px); }
.nav-inner { max-width: 1280px; margin: 0 auto; padding: 0 1.5rem; display: flex; align-items: center; height: 68px; gap: 1rem; position: relative; }
.nav-logo { display: flex; align-items: center; gap: .5rem; text-decoration: none; flex-shrink: 0; }
.nav-logo-icon { width: 28px; height: 28px; }
.nav-logo-text { font-size: 1.3rem; font-weight: 800; letter-spacing: -.04em; color: var(--slate-950); }
.nav-links { display: flex; align-items: center; gap: .25rem; margin-left: 1.5rem; flex: 1; }
.nav-link { font-size: .9rem; font-weight: 500; color: var(--slate-700,#334155); padding: .45rem .75rem; border-radius: var(--radius-sm); cursor: pointer; background: none; border: none; display: flex; align-items: center; gap: .25rem; transition: var(--transition); white-space: nowrap; }
.nav-link:hover, .nav-link.active { color: var(--slate-950); background: var(--slate-100); }
.nav-actions { display: flex; align-items: center; gap: .75rem; margin-left: auto; }
.nav-login { font-size: .9rem; font-weight: 500; color: var(--slate-700,#334155); }
.nav-login:hover { color: var(--slate-950); }
.chevron { width: 14px; height: 14px; flex-shrink: 0; }

/* dropdown */
.nav-dropdown { position: relative; }
.dropdown-panel { display: none; position: absolute; top: calc(100% + 8px); left: 50%; transform: translateX(-50%); background: var(--white); border: 1px solid var(--slate-200); border-radius: var(--radius-lg); box-shadow: var(--shadow-float); min-width: 300px; padding: .75rem; z-index: 1001; }
.nav-dropdown:hover .dropdown-panel { display: block; }
.dp-item { display: flex; align-items: flex-start; gap: .875rem; padding: .75rem 1rem; border-radius: var(--radius-md); transition: var(--transition); }
.dp-item:hover { background: var(--slate-50); }
.dp-icon { font-size: 1.1rem; line-height: 1; flex-shrink: 0; margin-top: .1rem; }
.dp-item strong { display: block; font-size: .9rem; font-weight: 600; color: var(--slate-950); }
.dp-item em { display: block; font-size: .8rem; color: var(--slate-500); font-style: normal; margin-top: .1rem; }

/* hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: .25rem; margin-left: auto; }
.hamburger span { width: 22px; height: 2px; background: var(--slate-950); border-radius: 2px; transition: var(--transition); display: block; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media(max-width:1023px) {
  .hamburger { display: flex; z-index: 1001; }
  .nav-links  { display: flex; position: fixed; top: 0; right: 0; height: 100vh; width: 300px; background: var(--white); flex-direction: column; align-items: flex-start; gap: 0; padding: 5rem 1.5rem 4rem; box-shadow: -4px 4px 24px rgba(0,0,0,.12); overflow-y: auto; z-index: 1000; transition: transform .25s ease, visibility 0s .25s; transform: translateX(100%); visibility: hidden; }
  .nav-links.open { transform: translateX(0); visibility: visible; transition: transform .25s ease, visibility 0s; }
  .nav-link { width: 100%; padding: 1rem; font-size: 1.05rem; }
  .nav-dropdown { width: 100%; }
  .dropdown-panel { display: block; position: static; transform: none; box-shadow: none; border: none; background: var(--slate-50); padding: 0; margin: .25rem 0 .25rem 1rem; border-radius: var(--radius-md); border-left: 2px solid var(--green-light); }
  .nav-actions { display: none; }
  .nav-inner { position: relative; }
}

/* ── HERO ── */
.hero { padding: 7rem 0 5rem; text-align: center; background: var(--white); border-bottom: 1px solid var(--slate-200); }
.hero .label { margin-bottom: 1.5rem; }
.hero .h-jumbo { margin-bottom: 1.5rem; }
.hero .body-lg { max-width: 540px; margin: 0 auto 2.5rem; }
.hero-actions { display: flex; align-items: center; justify-content: center; gap: 1rem; flex-wrap: wrap; margin-bottom: .75rem; }
.hero-email-form { display: flex; gap: .5rem; max-width: 440px; margin: 0 auto 2rem; }
.hero-email-form input { flex: 1; padding: .7rem 1rem; border: 1.5px solid var(--slate-200); border-radius: var(--radius-sm); font-size: .95rem; outline: none; font-family: var(--font); color: var(--slate-950); transition: var(--transition); }
.hero-email-form input:focus { border-color: var(--green); }
@media(max-width: 480px) { .hero-email-form { flex-direction: column; } }
.hero-sub { font-size: .8rem; color: var(--slate-400); margin-top: .5rem; }
.hero-dashboard { max-width: 1060px; margin: 4rem auto 0; border: 1px solid var(--slate-200); border-radius: var(--radius-xl); overflow: hidden; box-shadow: 0 24px 64px rgba(0,0,0,.07), 0 2px 8px rgba(0,0,0,.04); }
.dash-bar { background: var(--slate-50); border-bottom: 1px solid var(--slate-200); padding: .75rem 1.25rem; display: flex; align-items: center; gap: .75rem; }
.dash-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 3px var(--green-glow); animation: pulse 2s ease-in-out infinite; }
.dash-label { font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--green); }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.5} }
.dash-body { background: var(--white); padding: 2.5rem; }
.dash-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.25rem; margin-bottom: 2rem; }
.dash-stat { border: 1px solid var(--slate-200); border-radius: var(--radius-md); padding: 1.25rem 1rem; text-align: left; }
.dash-stat-val { font-size: 1.5rem; font-weight: 800; color: var(--green); font-variant-numeric: tabular-nums; }
.dash-stat-lbl { font-size: .72rem; font-weight: 600; color: var(--slate-500); text-transform: uppercase; letter-spacing: .06em; margin-top: .25rem; }
.dash-checks { display: flex; flex-direction: column; gap: .75rem; }
.dash-row { display: flex; align-items: center; justify-content: space-between; padding: .875rem 1rem; border: 1px solid var(--slate-100); border-radius: var(--radius-md); font-size: .875rem; }
.dash-row-left { display: flex; align-items: center; gap: .75rem; }
.dash-check-icon { font-size: 1rem; }
.dash-row-name { font-weight: 600; color: var(--slate-800); }
.badge { display: inline-block; padding: .2rem .6rem; border-radius: 4px; font-size: .72rem; font-weight: 700; letter-spacing: .04em; }
.badge-green { background: #d1fae5; color: #065f46; }
.badge-amber { background: #fef3c7; color: #92400e; }
.badge-red   { background: #fee2e2; color: #991b1b; }
.badge-blue  { background: #dbeafe; color: #1e40af; }
.badge-gray  { background: var(--slate-100); color: var(--slate-700); }
@media(max-width:768px) { .dash-grid { grid-template-columns: repeat(2,1fr); } }
@media(max-width:480px) { .dash-grid { grid-template-columns: 1fr 1fr; } .dash-body { padding: 1.25rem; } }

/* ── LOGO BAR ── */
.logo-bar { padding: 3rem 0; border-bottom: 1px solid var(--slate-200); }
.logo-bar-label { font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--slate-400); text-align: center; margin-bottom: 2rem; }
.logo-bar-logos { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 2.5rem 4rem; }
.logo-bar-logos span { font-size: .875rem; font-weight: 800; color: var(--slate-400); letter-spacing: .04em; text-transform: uppercase; }

/* ── PRODUCTS GRID  (It's all here) ── */
.products-section { background: var(--slate-50); padding: 6rem 0; border-bottom: 1px solid var(--slate-200); }
.products-section .label { margin-bottom: .75rem; }
.products-section .h2 { margin-bottom: .75rem; }
.products-section .body-md { margin-bottom: 3rem; }
.products-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; margin-top: 3rem; }
@media(max-width:1024px){ .products-grid { grid-template-columns: repeat(2,1fr); } }
@media(max-width:640px) { .products-grid { grid-template-columns: 1fr; } }
.product-card { background: var(--white); border: 1px solid var(--slate-200); border-radius: var(--radius-lg); padding: 2rem; display: flex; flex-direction: column; gap: 1.5rem; text-decoration: none; color: inherit; transition: var(--transition); }
.product-card:hover { border-color: var(--green); box-shadow: 0 0 0 3px var(--green-glow); transform: translateY(-2px); }
.product-card-icon { width: 40px; height: 40px; border-radius: var(--radius-md); background: var(--green-light); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; }
.product-card-body .h3 { margin-bottom: .5rem; }
.product-card-body .body-md { font-size: .9rem; }
.product-card-mock { background: var(--slate-50); border: 1px solid var(--slate-100); border-radius: var(--radius-md); padding: 1rem; font-family: var(--mono); font-size: .8rem; }
.product-card-cta { font-size: .875rem; font-weight: 600; color: var(--green); display: flex; align-items: center; gap: .35rem; margin-top: auto; }

/* ── BUILT-FOR-YOU SECTION ── */
.built-for { padding: 6rem 0; background: var(--white); border-bottom: 1px solid var(--slate-200); }
.built-for .h2 { margin-bottom: .75rem; }
.built-for .body-lg { max-width: 540px; margin: 0 auto 3rem; }
.built-tabs { display: flex; justify-content: center; gap: .5rem; margin-bottom: 2.5rem; flex-wrap: wrap; }
.built-tab { padding: .5rem 1.25rem; border-radius: 999px; border: 1.5px solid var(--slate-200); background: transparent; font-size: .9rem; font-weight: 600; cursor: pointer; color: var(--slate-600); transition: var(--transition); font-family: var(--font); }
.built-tab.active { background: var(--slate-950); color: var(--white); border-color: var(--slate-950); }
.built-panels .built-panel { display: none; }
.built-panels .built-panel.active { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
@media(max-width:768px) { .built-panels .built-panel.active { grid-template-columns: 1fr; } }
.built-panel-text .label { margin-bottom: 1rem; }
.built-panel-text .h2 { margin-bottom: 1rem; }
.built-panel-text ul { list-style: none; display: flex; flex-direction: column; gap: .75rem; margin-bottom: 2rem; }
.built-panel-text li { display: flex; align-items: flex-start; gap: .75rem; font-size: .95rem; color: var(--slate-600); }
.built-panel-text li::before { content: "✓"; color: var(--green); font-weight: 700; flex-shrink: 0; margin-top: .1rem; }
.built-panel-visual { border-radius: var(--radius-xl); overflow: hidden; border: 1px solid var(--slate-200); box-shadow: var(--shadow-float); }
.built-panel-img { width: 100%; aspect-ratio: 4/3; object-fit: cover; background: linear-gradient(135deg, #f0fdf4 0%, #d1fae5 50%, #a7f3d0 100%); display: flex; align-items: center; justify-content: center; color: var(--green); font-weight: 700; font-size: 1.25rem; min-height: 300px; }

/* ── AGENT SECTION ── */
.agent-section { background: var(--obsidian); color: var(--white); padding: 7rem 0; }
.agent-section .label { color: var(--green); margin-bottom: 1rem; }
.agent-section .h2 { color: var(--white); margin-bottom: 1.25rem; max-width: 480px; }
.agent-section .body-lg { color: var(--slate-400); margin-bottom: 2rem; max-width: 440px; }
.agent-terminal { background: #0d1117; border: 1px solid rgba(255,255,255,.08); border-radius: var(--radius-lg); overflow: hidden; font-family: var(--mono); }
.agent-term-bar { background: rgba(255,255,255,.05); padding: .75rem 1.25rem; display: flex; align-items: center; gap: .5rem; }
.term-dot { width: 10px; height: 10px; border-radius: 50%; }
.term-dot-r { background: #ff5f57; }
.term-dot-y { background: #febc2e; }
.term-dot-g { background: var(--green); }
.term-title { font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: rgba(255,255,255,.4); margin-left: auto; margin-right: auto; }
.agent-term-body { padding: 1.75rem; font-size: .85rem; line-height: 1.8; }
.term-line { display: flex; gap: .75rem; margin-bottom: .6rem; }
.term-prompt { color: var(--green); flex-shrink: 0; font-weight: 700; }
.term-text { color: #e2e8f0; }
.term-out { color: rgba(255,255,255,.45); padding-left: 1.2rem; font-size: .8rem; }
.term-out.success { color: #34d399; }
.term-out.warn { color: #fbbf24; }
.term-cursor { display: inline-block; width: 8px; height: 14px; background: var(--green); margin-left: .2rem; animation: blink 1.1s step-end infinite; vertical-align: middle; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0} }

/* ── PROOF / FORRESTER SECTION ── */
.proof-section { background: var(--slate-50); padding: 6rem 0; border-top: 1px solid var(--slate-200); border-bottom: 1px solid var(--slate-200); }
.proof-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: stretch; }
@media(max-width:768px) { .proof-inner { grid-template-columns: 1fr; } }
.proof-quote-box { background: var(--green); border-radius: var(--radius-xl); padding: 3rem; color: var(--white); display: flex; flex-direction: column; justify-content: space-between; }
.proof-quote { font-size: 1.3rem; font-weight: 500; line-height: 1.55; margin-bottom: 2rem; }
.proof-author { display: flex; align-items: center; gap: 1rem; }
.proof-avatar { width: 48px; height: 48px; border-radius: 50%; background: rgba(255,255,255,.25); display: flex; align-items: center; justify-content: center; font-size: 1.4rem; }
.proof-name { font-weight: 700; font-size: .95rem; }
.proof-role { font-size: .82rem; opacity: .8; }
.proof-stats { display: flex; flex-direction: column; justify-content: center; gap: 2rem; }
.proof-stat-item { }
.proof-stat-num { font-size: 3rem; font-weight: 900; color: var(--green); letter-spacing: -.04em; line-height: 1; }
.proof-stat-desc { font-size: .95rem; color: var(--slate-600); margin-top: .5rem; }

/* ── TESTIMONIALS ── */
.testimonials-section { background: var(--obsidian); color: var(--white); padding: 7rem 0; text-align: center; }
.testimonials-section .h2 { color: var(--white); margin-bottom: 3rem; }
.testi-slider { max-width: 840px; margin: 0 auto; }
.testi-quote { font-size: 1.5rem; font-weight: 500; line-height: 1.5; color: rgba(255,255,255,.9); margin-bottom: 2.5rem; min-height: 140px; transition: opacity .3s; }
.testi-author { display: flex; align-items: center; justify-content: center; gap: 1rem; }
.testi-avatar { width: 52px; height: 52px; border-radius: 50%; background: var(--green); display: flex; align-items: center; justify-content: center; font-size: 1.3rem; font-weight: 800; color: var(--white); overflow: hidden; }
.testi-avatar img { width: 100%; height: 100%; object-fit: cover; }
.testi-name { font-weight: 700; font-size: 1rem; color: var(--white); }
.testi-role { font-size: .85rem; color: var(--slate-400); margin-top: .2rem; }
.testi-dots { display: flex; justify-content: center; gap: .5rem; margin-top: 2.5rem; }
.testi-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,.2); border: none; cursor: pointer; transition: var(--transition); }
.testi-dot.active { background: var(--green); }

/* ── FRAMEWORKS ── */
.frameworks-section { padding: 6rem 0; background: var(--white); border-bottom: 1px solid var(--slate-200); }
.frameworks-section .h2 { margin-bottom: .75rem; }
.frameworks-section .body-lg { margin-bottom: 3rem; }
.fw-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.25rem; }
@media(max-width:1024px) { .fw-grid { grid-template-columns: repeat(3,1fr); } }
@media(max-width:640px)  { .fw-grid { grid-template-columns: repeat(2,1fr); } }
.fw-card { border: 1px solid var(--slate-200); border-radius: var(--radius-lg); padding: 1.75rem 1.25rem; text-align: center; transition: var(--transition); cursor: pointer; }
.fw-card:hover { border-color: var(--green); box-shadow: 0 0 0 3px var(--green-glow); }
.fw-card-name { font-weight: 800; font-size: 1rem; margin: .75rem 0 .35rem; }
.fw-card-sub  { font-size: .8rem; color: var(--slate-500); }
.fw-icon { font-size: 1.75rem; }

/* ── RESOURCES ── */
.resources-section { padding: 6rem 0; background: var(--slate-50); border-bottom: 1px solid var(--slate-200); }
.resources-section .h2 { margin-bottom: .75rem; }
.resources-section .body-md { margin-bottom: 3rem; }
.resources-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
@media(max-width:1024px) { .resources-grid { grid-template-columns: repeat(2,1fr); } }
@media(max-width:640px)  { .resources-grid { grid-template-columns: 1fr; } }
.resource-card { background: var(--white); border: 1px solid var(--slate-200); border-radius: var(--radius-lg); overflow: hidden; transition: var(--transition); text-decoration: none; color: inherit; display: flex; flex-direction: column; }
.resource-card:hover { box-shadow: var(--shadow-float); transform: translateY(-2px); }
.resource-card-img { height: 160px; background: linear-gradient(135deg, #0b0f19 0%, #00a36c 100%); display: flex; align-items: center; justify-content: center; font-size: 2.5rem; }
.resource-card-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; gap: .5rem; }
.resource-card-type { font-size: .72rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--green); }
.resource-card-title { font-size: 1rem; font-weight: 700; color: var(--slate-950); line-height: 1.35; }
.resource-card-desc  { font-size: .875rem; color: var(--slate-500); line-height: 1.6; flex: 1; }
.resource-card-link  { font-size: .875rem; font-weight: 600; color: var(--green); margin-top: .75rem; }

/* ── CTA BAND ── */
.cta-band { padding: 7rem 0; background: var(--white); border-top: 1px solid var(--slate-200); text-align: center; }
.cta-band .h2 { margin-bottom: 1rem; }
.cta-band .body-lg { max-width: 480px; margin: 0 auto 2.5rem; }
.cta-band-actions { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }

/* ── FOOTER ── */
.footer { background: var(--obsidian); color: var(--slate-400); border-top: 1px solid rgba(255,255,255,.06); }
.footer-inner { max-width: 1280px; margin: 0 auto; padding: 5rem 1.5rem 2.5rem; }
.footer-top { display: grid; grid-template-columns: 280px 1fr; gap: 4rem; margin-bottom: 4rem; }
@media(max-width:1024px) { .footer-top { grid-template-columns: 1fr; } }
.footer-logo-link { color: var(--white) !important; }
.footer-logo-text { color: var(--white) !important; }
.footer-tagline { font-size: .9rem; color: var(--slate-500); margin: 1rem 0; line-height: 1.6; }
.footer-social { display: flex; gap: .75rem; }
.social-link { width: 32px; height: 32px; border-radius: 6px; border: 1px solid rgba(255,255,255,.1); display: flex; align-items: center; justify-content: center; font-size: .8rem; font-weight: 700; color: var(--slate-400); transition: var(--transition); }
.social-link:hover { color: var(--white); border-color: rgba(255,255,255,.3); }
.footer-cols { display: grid; grid-template-columns: repeat(4,1fr); gap: 2rem; }
@media(max-width:768px) { .footer-cols { grid-template-columns: repeat(2,1fr); } }
@media(max-width:480px) { .footer-cols { grid-template-columns: 1fr 1fr; } }
.footer-col { display: flex; flex-direction: column; gap: .6rem; }
.footer-col-title { font-size: .75rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--white); margin-bottom: .5rem; }
.footer-link { font-size: .875rem; color: var(--slate-500); transition: var(--transition); }
.footer-link:hover { color: var(--white); }
.footer-bottom { display: flex; flex-direction: column; gap: 1rem; align-items: center; border-top: 1px solid rgba(255,255,255,.06); padding-top: 2rem; font-size: .82rem; }
@media(min-width:640px) { .footer-bottom { flex-direction: row; justify-content: space-between; } }
.footer-bottom-links { display: flex; gap: 1.5rem; flex-wrap: wrap; }

/* ── PAGE HERO (inner pages) ── */
.page-hero { padding: 6rem 0 5rem; background: var(--white); border-bottom: 1px solid var(--slate-200); text-align: center; }
.page-hero .label { margin-bottom: 1rem; }
.page-hero .h1 { margin-bottom: 1.25rem; }
.page-hero .body-lg { max-width: 520px; margin: 0 auto 2.5rem; }

/* ── INNER CONTENT LAYOUTS ── */
.split-section { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
@media(max-width:1024px) { .split-section { grid-template-columns: 1fr; gap: 3rem; } }
.split-section.reversed .split-text { order: 2; }
.split-section.reversed .split-visual { order: 1; }
@media(max-width:1024px) { .split-section.reversed .split-text { order: 1; } .split-section.reversed .split-visual { order: 2; } }
.split-text .label { margin-bottom: .75rem; }
.split-text .h2 { margin-bottom: 1rem; }
.split-text .body-md { margin-bottom: 1.5rem; }
.feature-list { list-style: none; display: flex; flex-direction: column; gap: .75rem; margin-bottom: 2rem; }
.feature-list li { display: flex; align-items: flex-start; gap: .75rem; font-size: .95rem; color: var(--slate-600); }
.feature-list li::before { content: "✓"; color: var(--green); font-weight: 700; margin-top: .1rem; flex-shrink: 0; }
.visual-card { background: var(--slate-50); border: 1px solid var(--slate-200); border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-float); }
.visual-card-header { background: var(--white); border-bottom: 1px solid var(--slate-100); padding: 1rem 1.25rem; display: flex; align-items: center; gap: .5rem; }
.visual-card-title { font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--green); }
.visual-card-body { padding: 1.75rem; }

/* ── PRICING CARDS ── */
.pricing-section { padding: 6rem 0; background: var(--slate-50); }
.pricing-toggle { display: flex; align-items: center; justify-content: center; gap: .75rem; margin-bottom: 3rem; font-size: .9rem; font-weight: 600; }
.toggle-switch { position: relative; width: 48px; height: 26px; }
.toggle-switch input { opacity: 0; width: 0; height: 0; }
.toggle-slider { position: absolute; inset: 0; background: var(--slate-200); border-radius: 999px; cursor: pointer; transition: var(--transition); }
.toggle-slider::before { content: ''; position: absolute; left: 3px; top: 3px; width: 20px; height: 20px; background: var(--white); border-radius: 50%; transition: var(--transition); }
.toggle-switch input:checked + .toggle-slider { background: var(--green); }
.toggle-switch input:checked + .toggle-slider::before { transform: translateX(22px); }
.save-badge { background: var(--green-light); color: #065f46; font-size: .72rem; font-weight: 700; padding: .2rem .5rem; border-radius: 4px; }
.pricing-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; max-width: 1100px; margin: 0 auto; }
@media(max-width:1024px) { .pricing-grid { grid-template-columns: 1fr; max-width: 480px; } }
.pricing-card { background: var(--white); border: 1px solid var(--slate-200); border-radius: var(--radius-xl); padding: 2.5rem; display: flex; flex-direction: column; gap: 1.5rem; position: relative; }
.pricing-card.featured { border-color: var(--green); box-shadow: 0 0 0 3px var(--green-glow); }
.featured-badge { position: absolute; top: -1px; right: 2rem; background: var(--green); color: var(--white); font-size: .72rem; font-weight: 700; padding: .3rem .75rem; border-radius: 0 0 6px 6px; }
.pricing-card-name { font-size: .875rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: var(--slate-600); }
.pricing-card-price { }
.price-val { font-size: 2.5rem; font-weight: 900; letter-spacing: -.04em; color: var(--slate-950); line-height: 1; }
.price-val sup { font-size: 1.2rem; vertical-align: super; }
.price-period { font-size: .85rem; color: var(--slate-500); margin-top: .25rem; }
.pricing-card-desc { font-size: .9rem; color: var(--slate-600); border-top: 1px solid var(--slate-100); padding-top: 1.5rem; }
.pricing-features { list-style: none; display: flex; flex-direction: column; gap: .6rem; flex: 1; }
.pricing-features li { display: flex; align-items: flex-start; gap: .625rem; font-size: .875rem; color: var(--slate-700); }
.pricing-features li::before { content: "✓"; color: var(--green); font-weight: 700; margin-top: .1rem; flex-shrink: 0; }
.pricing-card .btn { margin-top: auto; width: 100%; justify-content: center; }

/* ── CUSTOMERS ── */
.customers-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
@media(max-width:1024px) { .customers-grid { grid-template-columns: repeat(2,1fr); } }
@media(max-width:640px) { .customers-grid { grid-template-columns: 1fr; } }
.customer-card { border: 1px solid var(--slate-200); border-radius: var(--radius-lg); padding: 2rem; background: var(--white); transition: var(--transition); }
.customer-card:hover { box-shadow: var(--shadow-float); }
.customer-logo { font-size: 1.25rem; font-weight: 900; letter-spacing: -.02em; color: var(--slate-950); margin-bottom: 1rem; }
.customer-quote { font-size: .9rem; color: var(--slate-600); line-height: 1.65; margin-bottom: 1.5rem; font-style: italic; }
.customer-meta { font-size: .8rem; color: var(--slate-500); font-weight: 600; }
.customer-stat { font-size: 1.75rem; font-weight: 900; color: var(--green); }
.customer-stat-lbl { font-size: .8rem; color: var(--slate-500); }

/* ── INTEGRATIONS ── */
.integrations-filter { display: flex; flex-wrap: wrap; gap: .5rem; justify-content: center; margin-bottom: 2.5rem; }
.filter-btn { padding: .45rem 1rem; border-radius: 999px; border: 1.5px solid var(--slate-200); background: transparent; font-size: .85rem; font-weight: 500; cursor: pointer; color: var(--slate-600); transition: var(--transition); font-family: var(--font); }
.filter-btn.active { background: var(--slate-950); color: var(--white); border-color: var(--slate-950); }
.integrations-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 1rem; }
@media(max-width:1024px) { .integrations-grid { grid-template-columns: repeat(4,1fr); } }
@media(max-width:768px)  { .integrations-grid { grid-template-columns: repeat(3,1fr); } }
@media(max-width:480px)  { .integrations-grid { grid-template-columns: repeat(2,1fr); } }
.integration-card { border: 1px solid var(--slate-200); border-radius: var(--radius-md); padding: 1.25rem 1rem; text-align: center; transition: var(--transition); background: var(--white); }
.integration-card:hover { border-color: var(--green); box-shadow: 0 0 0 2px var(--green-glow); }
.integration-icon { font-size: 1.75rem; margin-bottom: .5rem; }
.integration-name { font-size: .8rem; font-weight: 600; color: var(--slate-700); }

/* ── ACCORDION / FAQ ── */
.faq-section { padding: 6rem 0; background: var(--white); }
.faq-list { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: 0; border-top: 1px solid var(--slate-200); }
.faq-item { border-bottom: 1px solid var(--slate-200); }
.faq-question { display: flex; align-items: center; justify-content: space-between; padding: 1.25rem 0; cursor: pointer; font-size: 1rem; font-weight: 600; color: var(--slate-950); background: none; border: none; width: 100%; text-align: left; font-family: var(--font); gap: 1rem; }
.faq-icon { flex-shrink: 0; transition: var(--transition); font-size: 1.1rem; color: var(--slate-500); }
.faq-answer { overflow: hidden; max-height: 0; transition: max-height .3s ease; }
.faq-answer-inner { padding: 0 0 1.25rem; font-size: .95rem; color: var(--slate-600); line-height: 1.7; }
.faq-item.open .faq-icon { transform: rotate(45deg); color: var(--green); }
.faq-item.open .faq-answer { max-height: 500px; }

/* ── STATS ROW ── */
.stats-row { display: grid; grid-template-columns: repeat(4,1fr); gap: 2rem; padding: 4rem 0; }
@media(max-width:768px) { .stats-row { grid-template-columns: repeat(2,1fr); } }
.stat-item { text-align: center; }
.stat-val { font-size: 2.5rem; font-weight: 900; color: var(--green); letter-spacing: -.04em; line-height: 1; }
.stat-lbl { font-size: .875rem; color: var(--slate-500); margin-top: .5rem; }

/* ── CONTACT / DEMO FORM ── */
.contact-section { padding: 6rem 0; background: var(--white); }
.contact-form-card { background: var(--white); border: 1px solid var(--slate-200); border-radius: var(--radius-xl); padding: 3rem; box-shadow: var(--shadow-card); }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-size: .875rem; font-weight: 600; color: var(--slate-700); margin-bottom: .4rem; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: .75rem 1rem; border: 1.5px solid var(--slate-200); border-radius: var(--radius-sm); font-size: .95rem; font-family: var(--font); color: var(--slate-950); outline: none; transition: var(--transition); background: var(--white); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--green); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media(max-width:640px) { .form-row { grid-template-columns: 1fr; } }

/* ── Misc ── */
.divider { border: none; border-top: 1px solid var(--slate-200); }
.mt-1  { margin-top: .5rem;  }
.mt-2  { margin-top: 1rem;  }
.mt-3  { margin-top: 1.5rem; }
.mt-4  { margin-top: 2rem;  }
.mb-1  { margin-bottom: .5rem; }
.mb-2  { margin-bottom: 1rem; }
.mb-3  { margin-bottom: 1.5rem; }
.mb-4  { margin-bottom: 2rem; }
.text-green { color: var(--green); }
.text-muted { color: var(--slate-500); }
.flex-center { display: flex; align-items: center; justify-content: center; }
.gap-1 { gap: .5rem; } .gap-2 { gap: 1rem; } .gap-3 { gap: 1.5rem; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }
