/* ============================================================
   Avora — Marketing Website  site.css
   Clean / minimal — Linear / Notion aesthetic
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=JetBrains+Mono:wght@400;500&display=swap');

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

:root {
  /* ── Core palette (mirrors app base.css) ── */
  --bg:         #fafafa;
  --surface:    #ffffff;
  --border:     rgba(0,0,0,0.08);
  --border-s:   rgba(0,0,0,0.14);
  --text:       #111118;
  --text-2:     #3a3a4a;
  --muted:      #6e6e7e;
  --accent:     #0066cc;
  --accent-l:   rgba(0,102,204,0.08);
  --accent-h:   rgba(0,102,204,0.16);
  --green:      #1a8a4a;
  --green-l:    rgba(26,138,74,0.09);
  --amber:      #b06000;
  --amber-l:    rgba(176,96,0,0.09);
  --purple:     #6c52ba;
  --purple-l:   rgba(108,82,186,0.09);
  --teal:       #008f73;
  --teal-l:     rgba(0,143,115,0.09);
  --indigo:     #4f46e5;
  --indigo-l:   rgba(79,70,229,0.09);
  --red:        #cc2200;
  --red-l:      rgba(204,34,0,0.09);

  /* ── Spacing & shape ── */
  --radius:     14px;
  --radius-sm:  9px;
  --radius-xs:  6px;
  --shadow:     0 1px 3px rgba(0,0,0,0.06), 0 0 0 1px rgba(0,0,0,0.05);
  --shadow-md:  0 4px 16px rgba(0,0,0,0.09), 0 0 0 1px rgba(0,0,0,0.05);
  --shadow-lg:  0 12px 40px rgba(0,0,0,0.12), 0 0 0 1px rgba(0,0,0,0.06);

  /* ── Typography ── */
  --font:       'Outfit', sans-serif;
  --mono:       'JetBrains Mono', monospace;

  /* ── Transitions ── */
  --ease:       200ms cubic-bezier(0.25,0.1,0.25,1);
  --ease-out:   260ms cubic-bezier(0,0,0.2,1);

  /* ── Layout ── */
  --nav-h:      64px;
  --max-w:      1120px;
  --max-w-text: 680px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: var(--font); cursor: pointer; border: none; background: none; }

/* ── Container ── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
}

/* ============================================================
   NAV
   ============================================================ */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--nav-h);
  background: rgba(250,250,250,0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 32px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 0;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.3px;
  flex-shrink: 0;
}

.nav-logo .logo-mark {
  width: 30px;
  height: 30px;
  background: var(--accent);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-logo .logo-mark svg { color: #fff; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-left: 28px;
  list-style: none;
  flex-shrink: 0;
}

.nav-links a {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--muted);
  padding: 6px 10px;
  border-radius: var(--radius-xs);
  transition: color var(--ease), background var(--ease);
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text);
  background: var(--border);
}

.nav-actions {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 600;
  padding: 9px 18px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: all var(--ease);
  white-space: nowrap;
  text-decoration: none;
}

.btn-ghost {
  color: var(--text-2);
  background: transparent;
}
.btn-ghost:hover { background: var(--border); color: var(--text); }

.btn-outline {
  color: var(--text);
  background: transparent;
  border: 1px solid var(--border-s);
}
.btn-outline:hover { background: var(--surface); border-color: var(--accent); color: var(--accent); }

.btn-primary {
  color: #fff;
  background: var(--accent);
  box-shadow: 0 1px 3px rgba(0,102,204,0.30);
}
.btn-primary:hover { background: #005bb5; box-shadow: 0 3px 10px rgba(0,102,204,0.35); transform: translateY(-1px); }

.btn-lg {
  font-size: 15px;
  padding: 13px 26px;
  border-radius: var(--radius);
}

.btn-xl {
  font-size: 16px;
  padding: 15px 32px;
  border-radius: var(--radius);
  gap: 10px;
}

.btn svg { flex-shrink: 0; }

/* ============================================================
   SECTIONS
   ============================================================ */
section { padding: 96px 0; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.section-label .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

h1, h2, h3, h4 { font-family: var(--font); line-height: 1.15; letter-spacing: -0.4px; }

.section-heading {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.6px;
  line-height: 1.1;
  max-width: var(--max-w-text);
}

.section-sub {
  margin-top: 16px;
  font-size: 17px;
  color: var(--muted);
  max-width: 560px;
  line-height: 1.65;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  padding: 112px 0 96px;
  position: relative;
  overflow: hidden;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  background: var(--accent-l);
  border: 1px solid var(--accent-h);
  padding: 5px 12px;
  border-radius: 99px;
  margin-bottom: 28px;
}

.hero-eyebrow .pulse {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}

.hero h1 {
  font-size: clamp(38px, 6vw, 68px);
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.05;
  color: var(--text);
  max-width: 760px;
}

.hero h1 .accent-text {
  color: var(--accent);
}

.hero-sub {
  margin-top: 22px;
  font-size: 19px;
  color: var(--muted);
  max-width: 560px;
  line-height: 1.65;
}

.hero-actions {
  margin-top: 36px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-trust {
  margin-top: 48px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  color: var(--muted);
  font-weight: 500;
}

.trust-item svg { color: var(--green); }

/* ── Hero screenshot mock ── */
.hero-visual {
  margin-top: 72px;
  position: relative;
}

.browser-frame {
  background: var(--surface);
  border-radius: 16px;
  border: 1px solid var(--border-s);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.browser-bar {
  height: 40px;
  background: #f4f4f6;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  padding: 0 16px;
  gap: 8px;
}

.browser-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
}
.browser-dot.red  { background: #ff5f57; }
.browser-dot.amber { background: #febc2e; }
.browser-dot.green { background: #28c840; }

.browser-url {
  flex: 1;
  margin-left: 12px;
  height: 24px;
  background: rgba(0,0,0,0.05);
  border-radius: 6px;
  display: flex;
  align-items: center;
  padding: 0 10px;
  font-size: 11px;
  font-family: var(--mono);
  color: var(--muted);
}

.browser-content {
  height: 420px;
  background: #f0eff4;
  display: flex;
  overflow: hidden;
}

/* ── mini sidebar ── */
.mock-sidebar {
  width: 200px;
  flex-shrink: 0;
  background: rgba(255,255,255,0.70);
  border-right: 1px solid var(--border);
  padding: 16px 12px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.mock-logo-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 8px;
  margin-bottom: 12px;
}

.mock-logo-box {
  width: 26px; height: 26px;
  background: var(--accent);
  border-radius: 7px;
}

.mock-logo-text {
  width: 70px; height: 10px;
  background: var(--border-s);
  border-radius: 4px;
}

.mock-nav-item {
  height: 30px;
  border-radius: 7px;
  display: flex;
  align-items: center;
  padding: 0 10px;
  gap: 8px;
}

.mock-nav-item.active { background: var(--accent-l); }

.mock-nav-icon {
  width: 14px; height: 14px;
  border-radius: 3px;
  background: var(--border-s);
  flex-shrink: 0;
}

.mock-nav-item.active .mock-nav-icon { background: var(--accent-h); }

.mock-nav-label {
  height: 8px;
  border-radius: 3px;
  background: var(--border-s);
}

.mock-nav-item.active .mock-nav-label { background: var(--accent-h); }

/* ── main content area ── */
.mock-main {
  flex: 1;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.mock-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mock-page-title {
  width: 140px; height: 14px;
  background: rgba(0,0,0,0.10);
  border-radius: 5px;
}

.mock-btn-row {
  display: flex;
  gap: 8px;
}

.mock-btn {
  height: 28px;
  border-radius: 6px;
  background: var(--accent);
  opacity: 0.85;
}

.mock-btn.ghost {
  background: var(--border-s);
}

.mock-stats {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 10px;
}

.mock-stat {
  background: var(--surface);
  border-radius: 10px;
  border: 1px solid var(--border);
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.mock-stat-label {
  width: 60%; height: 7px;
  background: var(--border-s);
  border-radius: 3px;
}

.mock-stat-value {
  width: 40%; height: 16px;
  background: rgba(0,0,0,0.10);
  border-radius: 4px;
}

.mock-table {
  background: var(--surface);
  border-radius: 10px;
  border: 1px solid var(--border);
  overflow: hidden;
  flex: 1;
}

.mock-table-head {
  height: 34px;
  background: #f6f6f8;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  padding: 0 14px;
  gap: 24px;
}

.mock-th {
  height: 7px;
  border-radius: 3px;
  background: var(--border-s);
}

.mock-row {
  height: 38px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  padding: 0 14px;
  gap: 24px;
}

.mock-row:last-child { border-bottom: none; }

.mock-td {
  height: 8px;
  border-radius: 3px;
  background: var(--border);
}

.mock-badge {
  height: 20px;
  border-radius: 99px;
  background: var(--green-l);
  border: 1px solid rgba(26,138,74,0.18);
  flex-shrink: 0;
}

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar {
  padding: 56px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}

.stat-item {}

.stat-num {
  font-size: 42px;
  font-weight: 800;
  letter-spacing: -1.5px;
  color: var(--text);
  line-height: 1;
}

.stat-num sup {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0;
}

.stat-label {
  margin-top: 8px;
  font-size: 14px;
  color: var(--muted);
  font-weight: 500;
}

/* ============================================================
   FEATURE CARDS
   ============================================================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: box-shadow var(--ease), border-color var(--ease), transform var(--ease);
}

.feature-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--border-s);
  transform: translateY(-2px);
}

.feature-icon {
  width: 44px; height: 44px;
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.feature-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
  letter-spacing: -0.2px;
}

.feature-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
}

/* ============================================================
   BENTO FEATURES
   ============================================================ */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto;
  gap: 16px;
}

.bento-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  overflow: hidden;
  position: relative;
  transition: box-shadow var(--ease), border-color var(--ease);
}

.bento-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--border-s);
}

.bento-card.span-8  { grid-column: span 8; }
.bento-card.span-4  { grid-column: span 4; }
.bento-card.span-6  { grid-column: span 6; }
.bento-card.span-5  { grid-column: span 5; }
.bento-card.span-7  { grid-column: span 7; }
.bento-card.span-12 { grid-column: span 12; }

.bento-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}

.bento-card h3 {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.3px;
  margin-bottom: 10px;
}

.bento-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
  max-width: 380px;
}

/* ============================================================
   PIPELINE VISUAL
   ============================================================ */
.pipeline-stages {
  display: flex;
  gap: 0;
  margin-top: 24px;
  overflow: hidden;
  border-radius: 10px;
  border: 1px solid var(--border);
}

.pipeline-stage {
  flex: 1;
  padding: 12px 14px;
  text-align: center;
  border-right: 1px solid var(--border);
  position: relative;
}

.pipeline-stage:last-child { border-right: none; }

.ps-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}

.ps-count {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--text);
}

.ps-bar {
  height: 4px;
  border-radius: 2px;
  margin-top: 8px;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.testimonial-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
}

.testimonial-card blockquote {
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.7;
  margin-bottom: 22px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
}

.author-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
}

.author-role {
  font-size: 12px;
  color: var(--muted);
}

.stars {
  display: flex;
  gap: 2px;
  margin-bottom: 14px;
}

.stars svg { color: #f59e0b; }

/* ============================================================
   CTA STRIP
   ============================================================ */
.cta-strip {
  background: var(--text);
  padding: 88px 0;
}

.cta-strip h2 {
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -1px;
  max-width: 600px;
  line-height: 1.1;
}

.cta-strip p {
  margin-top: 14px;
  font-size: 17px;
  color: rgba(255,255,255,0.55);
  max-width: 480px;
}

.cta-strip .btn-primary {
  background: #fff;
  color: var(--text);
  box-shadow: none;
}

.cta-strip .btn-primary:hover {
  background: rgba(255,255,255,0.88);
  transform: translateY(-1px);
}

.cta-strip .btn-ghost {
  color: rgba(255,255,255,0.65);
}

.cta-strip .btn-ghost:hover {
  color: #fff;
  background: rgba(255,255,255,0.10);
}

.cta-actions {
  margin-top: 36px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* ============================================================
   PRICING
   ============================================================ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  align-items: start;
}

.pricing-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  position: relative;
}

.pricing-card.featured {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-l), var(--shadow-md);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 99px;
  white-space: nowrap;
}

.plan-name {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--muted);
  margin-bottom: 12px;
}

.plan-price {
  font-size: 46px;
  font-weight: 800;
  letter-spacing: -2px;
  color: var(--text);
  line-height: 1;
}

.plan-price sup {
  font-size: 22px;
  letter-spacing: 0;
  font-weight: 700;
  vertical-align: top;
  margin-top: 10px;
  display: inline-block;
}

.plan-period {
  font-size: 14px;
  color: var(--muted);
  margin-top: 6px;
}

.plan-desc {
  font-size: 14px;
  color: var(--muted);
  margin-top: 14px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
  line-height: 1.6;
  min-height: 60px;
}

.plan-features {
  list-style: none;
  margin-top: 22px;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text-2);
}

.plan-features li svg {
  color: var(--green);
  flex-shrink: 0;
  margin-top: 1px;
}

.plan-features li.dim {
  color: var(--muted);
}

.plan-features li.dim svg {
  color: var(--border-s);
}

.plan-cta {
  margin-top: 28px;
  width: 100%;
  justify-content: center;
  border-radius: var(--radius-sm);
}

/* ============================================================
   FEATURE PAGE — module showcase
   ============================================================ */
.module-section {
  padding: 80px 0;
  border-bottom: 1px solid var(--border);
}

.module-section:last-child { border-bottom: none; }

.module-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.module-layout.reverse { direction: rtl; }
.module-layout.reverse > * { direction: ltr; }

.module-icon-wrap {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.module-content h2 {
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 14px;
}

.module-content p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text-2);
}

.feature-list li svg { color: var(--accent); flex-shrink: 0; margin-top: 1px; }

.module-visual {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.value-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
}

.value-card h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
}

.value-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.team-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
}

.team-avatar {
  width: 64px; height: 64px;
  border-radius: 50%;
  margin: 0 auto 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 800;
  color: #fff;
}

.team-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
}

.team-role {
  font-size: 13px;
  color: var(--muted);
  margin-top: 4px;
}

/* ── Contact form ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}

.contact-form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-2);
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font);
  font-size: 14px;
  color: var(--text);
  background: var(--bg);
  border: 1px solid var(--border-s);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  outline: none;
  transition: border-color var(--ease), box-shadow var(--ease);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-l);
}

.form-group textarea { resize: vertical; min-height: 110px; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.faq-item {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}

.faq-item:last-child { border-bottom: none; }

.faq-q {
  width: 100%;
  text-align: left;
  padding: 20px 24px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  gap: 16px;
  background: none;
  border: none;
  font-family: var(--font);
  transition: background var(--ease);
}

.faq-q:hover { background: #f7f7f9; }

.faq-q svg {
  flex-shrink: 0;
  color: var(--muted);
  transition: transform 260ms ease;
}

.faq-item.open .faq-q svg { transform: rotate(45deg); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 340ms ease;
}

.faq-item.open .faq-a { max-height: 300px; }

.faq-a-inner {
  padding: 0 24px 20px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  padding: 64px 0 40px;
  border-top: 1px solid var(--border);
  background: var(--surface);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.3fr repeat(4, 1fr);
  gap: 32px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
}

@media (max-width: 900px) {
  .footer-top { grid-template-columns: repeat(2, 1fr); }
}

/* Simple hover dropdown for nav */
.nav-drop { position: relative; }
.nav-drop > a::after { content: " ▾"; font-size: 10px; }
.nav-drop-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--surface, #fff);
  border: 1px solid var(--border);
  border-radius: var(--radius-xs);
  box-shadow: 0 12px 32px rgba(0,0,0,0.12);
  min-width: 220px;
  padding: 8px;
  z-index: 50;
}
.nav-drop:hover .nav-drop-menu { display: block; }
.nav-drop-menu a {
  display: block;
  padding: 8px 10px;
  font-size: 13px;
  border-radius: 6px;
  color: var(--muted);
  white-space: nowrap;
}
.nav-drop-menu a:hover { background: var(--border); color: var(--text); }

/* Comparison table */
.compare-table-wrap { overflow-x: auto; border: 1px solid var(--border); border-radius: var(--radius-md, 12px); }
.compare-table { border-collapse: collapse; width: 100%; min-width: 900px; font-size: 13px; }
.compare-table th, .compare-table td { padding: 12px 14px; border-bottom: 1px solid var(--border); text-align: center; white-space: nowrap; }
.compare-table th:first-child, .compare-table td:first-child { text-align: left; position: sticky; left: 0; background: var(--bg, #fff); }
.compare-table thead th { background: var(--surface); font-weight: 700; color: var(--text); }
.compare-table .compare-you { background: rgba(99,102,241,0.06); font-weight: 700; }
.compare-table .yes { color: #16a34a; font-weight: 700; }
.compare-table .partial { color: #d97706; font-weight: 700; }
.compare-table .no { color: #dc2626; font-weight: 700; }
.compare-section-row td { text-align: left; font-weight: 700; background: var(--surface); color: var(--accent); }

.footer-brand .nav-logo { margin-bottom: 14px; font-size: 16px; }

.footer-tagline {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
  max-width: 260px;
  margin-bottom: 20px;
}

.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 14px;
  letter-spacing: 0.02em;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.footer-col ul li a {
  font-size: 14px;
  color: var(--muted);
  transition: color var(--ease);
}

.footer-col ul li a:hover { color: var(--text); }

.footer-bottom {
  margin-top: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-copy {
  font-size: 13px;
  color: var(--muted);
}

.footer-legal {
  display: flex;
  gap: 20px;
}

.footer-legal a {
  font-size: 13px;
  color: var(--muted);
  transition: color var(--ease);
}

.footer-legal a:hover { color: var(--text); }

/* ============================================================
   UTILITY
   ============================================================ */
.text-center { text-align: center; }
.text-center .section-sub,
.text-center .section-heading { margin-left: auto; margin-right: auto; }

.tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 99px;
}

.tag-green  { background: var(--green-l);  color: var(--green);  border: 1px solid rgba(26,138,74,0.18);  }
.tag-amber  { background: var(--amber-l);  color: var(--amber);  border: 1px solid rgba(176,96,0,0.18);   }
.tag-red    { background: var(--red-l);    color: var(--red);    border: 1px solid rgba(204,34,0,0.18);   }
.tag-accent { background: var(--accent-l); color: var(--accent); border: 1px solid var(--accent-h); }
.tag-purple { background: var(--purple-l); color: var(--purple); border: 1px solid rgba(108,82,186,0.18); }
.tag-teal   { background: var(--teal-l);   color: var(--teal);   border: 1px solid rgba(0,143,115,0.18);  }
.tag-indigo { background: var(--indigo-l); color: var(--indigo); border: 1px solid var(--indigo-h); }

.divider {
  height: 1px;
  background: var(--border);
}

/* ============================================================
   LIVE DEMO WIDGETS
   ============================================================ */

/* ── Pipeline stage-switcher pills (features.html) ── */
.stage-pill {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  padding: 8px 4px; border-radius: 10px;
  border: 1px solid transparent;
  transition: background var(--ease), border-color var(--ease), transform var(--ease);
}
.stage-pill:hover { background: var(--bg); }
.stage-pill.stage-active {
  background: var(--accent-l);
  border-color: var(--accent-h);
}
.stage-pill.stage-active .ps-label { color: var(--accent); }
.stage-pill .ps-hint {
  font-size: 9px; color: var(--muted); opacity: 0;
  transition: opacity var(--ease);
}
.stage-pill:hover .ps-hint { opacity: 1; }

/* ── AI Match demo cards ── */
.match-demo-card {
  transition: box-shadow var(--ease), border-color var(--ease);
}
.match-demo-card:hover { box-shadow: var(--shadow-md); }
.match-demo-card.match-open { border-color: var(--accent-h); box-shadow: var(--shadow-md); }
.match-demo-detail {
  max-height: 0; overflow: hidden; opacity: 0;
  transition: max-height 320ms ease, opacity 260ms ease;
}
.match-demo-card.match-open .match-demo-detail {
  max-height: 240px; opacity: 1;
}
.match-ring-fill { stroke-linecap: round; }

/* ── AI credit calculator slider (pricing.html) ── */
.credit-calc-slider {
  -webkit-appearance: none; appearance: none;
  width: 100%; height: 6px; border-radius: 99px;
  background: var(--border-s);
  outline: none; cursor: pointer;
}
.credit-calc-slider::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none;
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 1px 4px rgba(0,0,0,0.25);
  cursor: pointer; border: 2px solid #fff;
}
.credit-calc-slider::-moz-range-thumb {
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--accent); border: 2px solid #fff;
  box-shadow: 0 1px 4px rgba(0,0,0,0.25); cursor: pointer;
}
.credit-calc-box {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px;
}
.credit-calc-readout {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
  margin-top: 22px;
}
.credit-calc-readout .cc-val {
  font-family: var(--mono); font-size: 26px; font-weight: 700;
  color: var(--text); letter-spacing: -0.5px;
}
.credit-calc-readout .cc-label {
  font-size: 11.5px; color: var(--muted); margin-top: 4px;
}

/* ── Fade-up animation for sections ── */
.fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 500ms ease, transform 500ms ease;
}
.fade-up.visible {
  opacity: 1;
  transform: none;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
  .bento-card.span-8, .bento-card.span-4,
  .bento-card.span-6, .bento-card.span-5,
  .bento-card.span-7, .bento-card.span-12 { grid-column: span 12; }
  .module-layout { grid-template-columns: 1fr; gap: 36px; }
  .module-layout.reverse { direction: ltr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .container { padding: 0 20px; }
  .features-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr; }
  section { padding: 64px 0; }
  .hero { padding: 80px 0 64px; }
  .mock-sidebar { display: none; }
  .mock-stats { grid-template-columns: repeat(2,1fr); }
  .form-row { grid-template-columns: 1fr; }
}

/* ============================================================
   REDESIGN ADDITIONS — 2026
   ============================================================ */

/* ── Dark Hero ── */
.hero-dark {
  background: linear-gradient(160deg, #080c1c 0%, #0d1630 55%, #0a1220 100%);
  padding: 120px 0 108px;
  position: relative;
  overflow: hidden;
}

.hero-grid-bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.022) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  top: -180px; left: 42%;
  transform: translateX(-50%);
  width: 720px; height: 520px;
  background: radial-gradient(ellipse, rgba(0,102,204,0.16) 0%, transparent 65%);
  pointer-events: none;
}

.gradient-text {
  background: linear-gradient(130deg, #60a5fa 0%, #a78bfa 52%, #34d399 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1.08fr;
  gap: 60px;
  align-items: center;
}

h1.hero-h1-dark {
  font-size: clamp(38px, 5vw, 62px);
  font-weight: 800;
  letter-spacing: -1.8px;
  line-height: 1.05;
  color: #ffffff;
  max-width: 520px;
}

.hero-eyebrow-dark {
  color: #93c5fd;
  background: rgba(147,197,253,0.10);
  border: 1px solid rgba(147,197,253,0.18);
}

.hero-sub-dark {
  margin-top: 22px;
  font-size: 17px;
  color: rgba(255,255,255,0.56);
  max-width: 460px;
  line-height: 1.72;
}

.hero-trust-dark {
  margin-top: 24px;
  display: flex; gap: 22px; flex-wrap: wrap;
}

.trust-item-dark {
  display: flex; align-items: center; gap: 7px;
  font-size: 13px;
  color: rgba(255,255,255,0.44);
  font-weight: 500;
}

.trust-item-dark svg { color: #34d399; flex-shrink: 0; }

.btn-white {
  background: #fff; color: #0a0c18;
  box-shadow: 0 2px 14px rgba(0,0,0,0.28);
  font-weight: 700;
}
.btn-white:hover {
  background: #eef4ff;
  transform: translateY(-1px);
  box-shadow: 0 4px 22px rgba(0,0,0,0.22);
  color: #0a0c18;
}

.btn-ghost-dark {
  color: rgba(255,255,255,0.62);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
}
.btn-ghost-dark:hover {
  color: #fff;
  background: rgba(255,255,255,0.11);
  border-color: rgba(255,255,255,0.22);
}

.hero-social-proof {
  margin-top: 36px;
  padding-top: 26px;
  border-top: 1px solid rgba(255,255,255,0.07);
}

.sp-label {
  font-size: 11px;
  color: rgba(255,255,255,0.28);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 10px;
}

.sp-badges { display: flex; flex-wrap: wrap; gap: 8px; }

.sp-badge {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.44);
  background: rgba(255,255,255,0.055);
  border: 1px solid rgba(255,255,255,0.09);
  padding: 4px 13px;
  border-radius: 99px;
}

/* ── Hero right-panel browser mock ── */
.hero-visual-dark { position: relative; }

.hero-browser {
  background: rgba(12,16,36,0.85);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 28px 64px rgba(0,0,0,0.55), 0 0 0 1px rgba(255,255,255,0.06);
}

.hero-browser .browser-bar {
  background: rgba(255,255,255,0.045);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.hero-browser .browser-url {
  background: rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.36);
}

.hero-browser-content {
  padding: 16px;
  background: rgba(8,12,28,0.70);
}

.hb-pipeline-strip {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 10px 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 10px;
  margin-bottom: 12px;
}

.hb-ps {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 0 4px;
}

.hb-ps-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,0.20);
}

.hb-ps-label {
  font-size: 9px;
  font-weight: 600;
  color: rgba(255,255,255,0.32);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.hb-ps-count {
  font-size: 17px;
  font-weight: 800;
  color: rgba(255,255,255,0.72);
  letter-spacing: -0.4px;
}
.hb-ps-count.placed { color: #34d399; }

.hb-ps-arrow {
  font-size: 11px;
  color: rgba(255,255,255,0.18);
  flex-shrink: 0;
  padding: 0 2px;
}

.hb-table {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 10px;
  overflow: hidden;
}

.hb-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 12px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.hb-row:last-child { border-bottom: none; }
.hb-row.hb-header { background: rgba(255,255,255,0.03); }

.hb-cell { display: flex; align-items: center; }
.hb-w-avatar { width: 28px; flex-shrink: 0; }
.hb-w-name { flex: 2; }
.hb-w-role { flex: 1.4; }
.hb-w-stage { flex: 1.2; }
.hb-w-sla { flex: 0.9; justify-content: flex-end; }

.hb-th {
  height: 7px; border-radius: 3px;
  background: rgba(255,255,255,0.10);
}

.hb-avatar {
  width: 24px; height: 24px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 8px; font-weight: 800; color: #fff;
  flex-shrink: 0;
}

.hb-text {
  height: 7px; border-radius: 3px;
  background: rgba(255,255,255,0.14);
}

.hb-badge {
  height: 18px; width: 58px;
  border-radius: 99px;
  border: 1px solid transparent;
}
.hb-badge.green  { background: rgba(52,211,153,0.14); border-color: rgba(52,211,153,0.22); }
.hb-badge.amber  { background: rgba(251,191,36,0.14); border-color: rgba(251,191,36,0.22); }
.hb-badge.red    { background: rgba(248,113,113,0.14); border-color: rgba(248,113,113,0.22); }
.hb-badge.purple { background: rgba(167,139,250,0.14); border-color: rgba(167,139,250,0.22); }
.hb-badge.blue   { background: rgba(96,165,250,0.14); border-color: rgba(96,165,250,0.22); }
.hb-badge.teal   { background: rgba(45,212,191,0.14); border-color: rgba(45,212,191,0.22); }

/* ── Hero floating widgets ── */
.hero-toast {
  position: absolute;
  bottom: -18px; left: -22px;
  background: var(--surface);
  border: 1px solid var(--border-s);
  border-radius: 13px;
  padding: 11px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
  white-space: nowrap;
  animation: hero-bob-a 3.5s ease-in-out infinite;
}

.hero-metric {
  position: absolute;
  top: 18px; right: -24px;
  background: var(--surface);
  border: 1px solid var(--border-s);
  border-radius: 13px;
  padding: 13px 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
  animation: hero-bob-b 4s ease-in-out infinite;
  animation-delay: -2s;
}

@keyframes hero-bob-a {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-5px); }
}
@keyframes hero-bob-b {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}

.toast-icon {
  width: 28px; height: 28px;
  border-radius: 8px;
  background: var(--teal-l);
  border: 1px solid rgba(0,143,115,0.18);
  display: flex; align-items: center; justify-content: center;
  color: var(--teal);
  flex-shrink: 0;
}

.toast-title {
  font-size: 10px; font-weight: 700;
  color: var(--muted);
  text-transform: uppercase; letter-spacing: 0.06em;
}

.toast-body {
  font-size: 13px; font-weight: 600; color: var(--text);
}

.toast-time {
  font-size: 11px; color: var(--muted); margin-left: 6px;
}

.metric-label {
  font-size: 10px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.07em;
  color: var(--muted); margin-bottom: 4px;
}

.metric-value {
  font-size: 26px; font-weight: 800;
  letter-spacing: -0.8px; color: var(--text); line-height: 1;
}

.metric-value span {
  font-size: 13px; font-weight: 600;
  letter-spacing: 0; color: var(--text-2); margin-left: 4px;
}

.metric-delta {
  font-size: 12px; font-weight: 700; color: var(--green); margin-top: 4px;
}

/* ── Pain Points Section ── */
.pain-section {
  padding: 80px 0;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--border);
  border: 1px solid var(--border);
  margin-top: 48px;
  gap: 1px;
}

.pain-card { background: var(--surface); padding: 32px; }

.pain-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}

.pain-quote {
  font-size: 15px;
  font-style: italic;
  color: var(--text-2);
  line-height: 1.72;
  margin-bottom: 20px;
}

.pain-solve {
  display: flex; align-items: flex-start; gap: 9px;
  padding: 11px 14px;
  background: var(--green-l);
  border: 1px solid rgba(26,138,74,0.14);
  border-radius: var(--radius-sm);
  font-size: 13px; color: var(--green);
  font-weight: 600; line-height: 1.5;
}
.pain-solve svg { flex-shrink: 0; margin-top: 1px; }

/* ── Add-ons Hub ── */
.addons-hub {
  padding: 96px 0;
  background: linear-gradient(180deg, #f5f6ff 0%, var(--bg) 100%);
}

.addons-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 24px;
}

.addon-count-badge {
  background: var(--accent-l);
  border: 1px solid var(--accent-h);
  color: var(--accent);
  font-size: 13px; font-weight: 600;
  padding: 9px 18px;
  border-radius: var(--radius-sm);
  white-space: nowrap;
}

/* ── 3-step how-it-works ── */
.addon-how {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  overflow: hidden;
  margin-bottom: 28px;
}

.addon-how-step {
  padding: 20px 26px;
  border-right: 1px solid var(--border);
  display: flex; align-items: center; gap: 14px;
}
.addon-how-step:last-child { border-right: none; }

.addon-how-num {
  width: 30px; height: 30px;
  border-radius: 8px; background: var(--accent);
  color: #fff; font-weight: 800; font-size: 14px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.addon-how-text strong {
  display: block; font-size: 14px; font-weight: 700;
  color: var(--text); margin-bottom: 2px;
}
.addon-how-text span { font-size: 13px; color: var(--muted); }

/* ── Category tabs ── */
.addon-tabs {
  display: flex; gap: 8px; margin-bottom: 20px; flex-wrap: wrap;
}

.addon-tab {
  font-size: 13px; font-weight: 600;
  padding: 7px 16px;
  border-radius: var(--radius-xs);
  border: 1px solid var(--border-s);
  color: var(--muted); background: var(--surface);
  cursor: pointer; transition: all var(--ease);
  font-family: var(--font);
}
.addon-tab.active, .addon-tab:hover {
  color: var(--accent); border-color: var(--accent-h); background: var(--accent-l);
}

/* ── Automation cards ── */
.addons-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 12px; margin-bottom: 20px;
}

.addon-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  transition: box-shadow var(--ease), border-color var(--ease), transform var(--ease);
  position: relative;
}

.addon-card:hover {
  box-shadow: var(--shadow-md); transform: translateY(-2px);
}

.addon-card.enabled {
  border-color: rgba(0,143,115,0.22);
  background: linear-gradient(135deg, #f0faf8 0%, #fafffd 100%);
}

.addon-card.enabled::before {
  content: '';
  position: absolute;
  top: -1px; left: 20px; right: 20px;
  height: 2px; background: var(--teal);
  border-radius: 0 0 2px 2px;
}

.addon-card-top {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 12px;
}

.addon-icon {
  width: 36px; height: 36px; border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
}

/* ── Toggle switch ── */
.toggle-wrap { display: flex; align-items: center; gap: 5px; }

.toggle-label {
  font-size: 10px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.06em;
}
.toggle-label.on  { color: var(--teal); }
.toggle-label.off { color: var(--muted); }

.toggle {
  position: relative; width: 36px; height: 20px;
  cursor: pointer; flex-shrink: 0; display: inline-block;
}
.toggle input { opacity: 0; width: 0; height: 0; position: absolute; }

.toggle-track {
  position: absolute; inset: 0;
  border-radius: 10px; background: var(--border-s);
  transition: background var(--ease);
}
.toggle input:checked + .toggle-track  { background: var(--teal); }
.toggle-track::after {
  content: ''; position: absolute;
  top: 2px; left: 2px; width: 16px; height: 16px;
  border-radius: 50%; background: #fff;
  box-shadow: 0 1px 3px rgba(0,0,0,0.18);
  transition: transform var(--ease);
}
.toggle input:checked + .toggle-track::after { transform: translateX(16px); }

.addon-cat {
  font-size: 10px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.07em;
  color: var(--muted); margin-bottom: 6px;
}

.addon-card h4 {
  font-size: 14px; font-weight: 700;
  color: var(--text); margin-bottom: 7px;
  letter-spacing: -0.15px; line-height: 1.3;
}

.addon-card p {
  font-size: 13px; color: var(--muted);
  line-height: 1.6; margin-bottom: 14px;
}

.addon-impact {
  display: flex; gap: 16px;
  padding-top: 12px; border-top: 1px solid var(--border);
}

.impact-num {
  font-size: 15px; font-weight: 800;
  letter-spacing: -0.2px; color: var(--teal);
  display: block; line-height: 1; margin-bottom: 2px;
}
.addon-card:not(.enabled) .impact-num { color: var(--muted); }

.impact-label {
  font-size: 11px; color: var(--muted); font-weight: 500;
}

/* ── Live impact strip ── */
.addon-impact-strip {
  background: var(--text);
  border-radius: var(--radius);
  padding: 26px 32px;
  display: flex; align-items: center; gap: 32px;
  margin-bottom: 0;
}

.impact-strip-header { flex-shrink: 0; }

.impact-strip-label {
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: rgba(255,255,255,0.38);
}

.impact-strip-sub {
  font-size: 11px; color: rgba(255,255,255,0.22); margin-top: 3px;
}

.impact-strip-divider {
  width: 1px; height: 40px;
  background: rgba(255,255,255,0.09); flex-shrink: 0;
}

.impact-strip-stats {
  display: flex; flex: 1;
}

.impact-strip-stat {
  flex: 1; padding: 0 24px;
  border-right: 1px solid rgba(255,255,255,0.09);
  text-align: center;
}
.impact-strip-stat:last-child { border-right: none; }

.impact-strip-num {
  font-size: 26px; font-weight: 800;
  letter-spacing: -0.8px; color: #fff; line-height: 1;
}

.impact-strip-stat-label {
  font-size: 11px; color: rgba(255,255,255,0.38); margin-top: 5px;
}

/* ── AI add-ons sub-section ── */
.ai-addons-wrap {
  margin-top: 56px; padding-top: 48px;
  border-top: 1px solid var(--border);
}

.ai-addon-header-row {
  display: flex; align-items: center; gap: 10px; margin-bottom: 10px;
}

.ai-addons-grid {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 12px;
  background: linear-gradient(135deg,#f3f0ff 0%,#eef2ff 50%,#f8f9ff 100%);
  border: 1px solid rgba(108,82,186,0.14);
  border-radius: var(--radius);
  padding: 24px;
}

.ai-addon-card {
  background: rgba(255,255,255,0.88);
  border: 1px solid rgba(108,82,186,0.13);
  border-radius: 11px; padding: 18px;
}

.ai-addon-icon {
  width: 32px; height: 32px; border-radius: 8px;
  background: var(--purple-l);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 10px;
}

.ai-addon-card h5 {
  font-size: 13px; font-weight: 700; color: var(--text); margin-bottom: 6px;
}

.ai-addon-card p {
  font-size: 12px; color: var(--muted); line-height: 1.55; margin-bottom: 10px;
}

.ai-credit {
  font-size: 11px; font-weight: 700; color: var(--purple);
}

/* ── Responsive: new sections ── */
@media (max-width: 1060px) {
  .hero-inner { grid-template-columns: 1fr; gap: 44px; }
  h1.hero-h1-dark { font-size: clamp(36px, 7vw, 50px); }
  .hero-visual-dark { max-width: 620px; margin: 0 auto; }
  .hero-toast, .hero-metric { display: none; }
  .addons-grid { grid-template-columns: repeat(2,1fr); }
  .ai-addons-grid { grid-template-columns: repeat(2,1fr); }
  .pain-grid { grid-template-columns: 1fr; }
  .addon-impact-strip { flex-wrap: wrap; gap: 20px; }
  .impact-strip-stats { flex-wrap: wrap; gap: 16px; }
  .impact-strip-stat { border-right: none; flex: 0 0 calc(50% - 8px); }
}

@media (max-width: 700px) {
  .addons-grid { grid-template-columns: 1fr; }
  .addon-how { grid-template-columns: 1fr; }
  .addon-how-step { border-right: none; border-bottom: 1px solid var(--border); }
  .addon-how-step:last-child { border-bottom: none; }
  .ai-addons-grid { grid-template-columns: 1fr; }
  .addons-header { flex-direction: column; align-items: flex-start; }
}
