/* ============================================================
   Lead Engine — Design System
   ============================================================ */

:root {
  /* Palette */
  --bg-primary: #F8FAFC;
  --bg-secondary: #FFFFFF;
  --bg-elevated: #FFFFFF;
  --bg-subtle: #F1F5F9;
  --bg-dark: #0F172A;

  --text-primary: #0F172A;
  --text-secondary: #475569;
  --text-tertiary: #94A3B8;
  --text-inverse: #F8FAFC;

  --border: #E2E8F0;
  --border-strong: #CBD5E1;

  --accent: #4338CA;
  --accent-hover: #3730A3;
  --accent-soft: #EEF2FF;
  --accent-violet: #7C3AED;
  --accent-gradient: linear-gradient(135deg, #4338CA 0%, #7C3AED 100%);
  --accent-gradient-soft: linear-gradient(135deg, #EEF2FF 0%, #F5F3FF 100%);

  --success: #059669;
  --success-soft: #D1FAE5;

  /* Spacing */
  --container: 1200px;
  --container-narrow: 880px;
  --space-section: 120px;
  --space-section-mobile: 72px;

  /* Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-pill: 999px;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.04);
  --shadow-md: 0 4px 16px rgba(15, 23, 42, 0.06);
  --shadow-lg: 0 12px 32px rgba(15, 23, 42, 0.08);
  --shadow-accent: 0 8px 24px rgba(67, 56, 202, 0.18);

  /* Transitions */
  --t: 220ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================================
   Reset & Base
   ============================================================ */

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

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--bg-primary);
  overflow-x: hidden;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color var(--t);
}

a:hover {
  color: var(--accent-hover);
}

img,
svg {
  max-width: 100%;
  display: block;
}

ul {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* ============================================================
   Typography
   ============================================================ */

h1, h2, h3, h4, h5 {
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--text-primary);
  line-height: 1.15;
}

h1 {
  font-size: clamp(2.25rem, 4.5vw, 3.75rem);
  letter-spacing: -0.035em;
}

h2 {
  font-size: clamp(1.875rem, 3.5vw, 2.75rem);
  letter-spacing: -0.03em;
}

h3 {
  font-size: clamp(1.25rem, 2vw, 1.75rem);
}

h4 {
  font-size: 1.125rem;
  font-weight: 600;
}

p {
  color: var(--text-secondary);
}

.lead {
  font-size: 1.25rem;
  line-height: 1.55;
  color: var(--text-secondary);
}

.eyebrow {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}

/* ============================================================
   Layout
   ============================================================ */

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.container-narrow {
  max-width: var(--container-narrow);
}

.section {
  padding: var(--space-section) 0;
}

.section-sm {
  padding: 72px 0;
}

.section-dark {
  background: var(--bg-dark);
  color: var(--text-inverse);
}

.section-dark h1,
.section-dark h2,
.section-dark h3,
.section-dark h4 {
  color: var(--text-inverse);
}

.section-dark p,
.section-dark .lead {
  color: rgba(248, 250, 252, 0.75);
}

.section-subtle {
  background: var(--bg-subtle);
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 64px;
}

.section-header .eyebrow {
  margin-bottom: 16px;
}

.section-header h2 {
  margin-bottom: 20px;
}

.section-header p {
  font-size: 1.125rem;
}

@media (max-width: 768px) {
  .section {
    padding: var(--space-section-mobile) 0;
  }
  .section-header {
    margin-bottom: 48px;
  }
}

/* ============================================================
   Header / Navigation
   ============================================================ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(248, 250, 252, 0.85);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid var(--border);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.brand {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  color: var(--text-primary);
}

.brand-name {
  font-size: 1.1875rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.brand-tag {
  font-size: 0.6875rem;
  font-weight: 500;
  color: var(--text-tertiary);
  letter-spacing: 0.05em;
  margin-top: 2px;
}

.nav-links {
  display: flex;
  gap: 36px;
  align-items: center;
}

.nav-link {
  color: var(--text-secondary);
  font-size: 0.9375rem;
  font-weight: 500;
  transition: color var(--t);
}

.nav-link:hover,
.nav-link.is-active {
  color: var(--text-primary);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
}

.nav-toggle svg {
  width: 22px;
  height: 22px;
}

@media (max-width: 960px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    padding: 16px 24px 24px;
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
    align-items: flex-start;
  }
  .nav-links.is-open {
    display: flex;
  }
  .nav-links .nav-link {
    width: 100%;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
  }
  .nav-toggle {
    display: inline-flex;
  }
  .nav-cta .btn {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
}

/* ============================================================
   Buttons
   ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  transition: all var(--t);
  white-space: nowrap;
  cursor: pointer;
  border: 1px solid transparent;
}

.btn-primary {
  background: var(--accent);
  color: white;
  box-shadow: var(--shadow-accent);
}

.btn-primary:hover {
  background: var(--accent-hover);
  color: white;
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(67, 56, 202, 0.25);
}

.btn-secondary {
  background: var(--bg-secondary);
  color: var(--text-primary);
  border-color: var(--border-strong);
}

.btn-secondary:hover {
  border-color: var(--text-primary);
  color: var(--text-primary);
}

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

.btn-ghost:hover {
  background: var(--bg-subtle);
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.875rem;
}

.btn-lg {
  padding: 18px 36px;
  font-size: 1rem;
}

.btn-block {
  width: 100%;
}

/* ============================================================
   Hero
   ============================================================ */

.hero {
  padding: 80px 0 100px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.06), transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -300px;
  left: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(67, 56, 202, 0.05), transparent 70%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 820px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--accent-soft);
  color: var(--accent);
  border-radius: var(--radius-pill);
  font-size: 0.8125rem;
  font-weight: 600;
  margin-bottom: 28px;
  border: 1px solid rgba(67, 56, 202, 0.12);
}

.hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

.hero h1 {
  margin-bottom: 24px;
}

.hero h1 .accent {
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin-bottom: 36px;
  max-width: 720px;
  line-height: 1.6;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.hero-microcopy {
  font-size: 0.875rem;
  color: var(--text-tertiary);
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.hero-microcopy .dot {
  color: var(--text-tertiary);
  opacity: 0.5;
}

/* Hero pipeline visual */
.hero-visual {
  margin-top: 72px;
  padding: 32px 24px;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 1;
}

.pipeline {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  align-items: center;
}

.pipeline-step {
  text-align: center;
  padding: 16px 8px;
}

.pipeline-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: var(--accent-soft);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
}

.pipeline-icon svg {
  width: 22px;
  height: 22px;
}

.pipeline-label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.3;
}

.pipeline-arrow {
  color: var(--text-tertiary);
  font-size: 1.25rem;
  text-align: center;
}

@media (max-width: 768px) {
  .hero {
    padding: 48px 0 64px;
  }
  .pipeline {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .pipeline-arrow {
    transform: rotate(90deg);
    padding: 4px 0;
  }
}

/* ============================================================
   Cards Grid
   ============================================================ */

.grid {
  display: grid;
  gap: 24px;
}

.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-6 { grid-template-columns: repeat(3, 1fr); }

@media (max-width: 960px) {
  .grid-3, .grid-4, .grid-6 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .grid-2, .grid-3, .grid-4, .grid-6 { grid-template-columns: 1fr; }
}

.card {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all var(--t);
}

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

.card-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: var(--accent-soft);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.card-icon svg {
  width: 22px;
  height: 22px;
}

.card-num {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: var(--bg-dark);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: 0;
}

.card h3 {
  margin-bottom: 12px;
  font-size: 1.25rem;
}

.card p {
  font-size: 0.9375rem;
  line-height: 1.6;
}

/* ============================================================
   Offers (Pricing-like)
   ============================================================ */

.offers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

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

@media (max-width: 640px) {
  .offers { grid-template-columns: 1fr; }
}

.offer {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all var(--t);
}

/* Force visual alignment across 4 offer cards — prices land on same horizontal line */
.offer h3 {
  min-height: 1.875rem; /* 1 line title */
}
.offer .offer-desc {
  min-height: 4.5rem; /* ~3 lines de description */
}
.offer .offer-visual {
  min-height: 96px; /* ~2 lignes max */
}
.offer .offer-features {
  flex-grow: 1; /* features absorbe le reste de la hauteur variable */
}
.offer > .btn,
.offer > a.btn {
  margin-top: auto; /* CTA toujours en bas, aligné sur les 4 cartes */
}

.offer:hover {
  border-color: var(--border-strong);
  box-shadow: var(--shadow-md);
}

.offer.is-popular {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent), var(--shadow-md);
}

.offer-badge {
  position: absolute;
  top: -12px;
  left: 28px;
  padding: 4px 12px;
  background: var(--bg-dark);
  color: white;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
}

.offer.is-popular .offer-badge {
  background: var(--accent);
}

.offer.is-premium .offer-badge {
  background: var(--accent-violet);
}

.offer h3 {
  font-size: 1.1875rem;
  margin: 12px 0 8px;
}

.offer-desc {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  margin-bottom: 20px;
  min-height: 60px;
}

.offer-price {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--accent);
  padding: 12px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: 20px;
}

.offer-features {
  flex: 1;
  margin-bottom: 24px;
}

.offer-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--text-secondary);
  padding: 6px 0;
  line-height: 1.5;
}

.offer-features li::before {
  content: '';
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  margin-top: 2px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M3 8.5L6.5 12L13 4.5' stroke='%234338CA' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: 16px;
  background-repeat: no-repeat;
}

/* ============================================================
   Process (steps)
   ============================================================ */

.process {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  position: relative;
}

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

@media (max-width: 540px) {
  .process { grid-template-columns: 1fr; }
}

.process-step {
  padding: 28px 24px;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  position: relative;
}

.process-step-num {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-bottom: 16px;
}

.process-step h4 {
  font-size: 1rem;
  margin-bottom: 8px;
  line-height: 1.35;
}

.process-step p {
  font-size: 0.875rem;
  line-height: 1.55;
}

/* ============================================================
   Quote block
   ============================================================ */

.quote-block {
  background: var(--accent-gradient);
  color: white;
  padding: 56px 40px;
  border-radius: var(--radius-xl);
  text-align: center;
  margin-top: 56px;
}

.quote-block blockquote {
  font-size: clamp(1.375rem, 2.5vw, 1.875rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.35;
  color: white;
}

/* ============================================================
   Method (7 steps)
   ============================================================ */

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

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

@media (max-width: 540px) {
  .method { grid-template-columns: 1fr; }
}

.method-card {
  padding: 28px;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all var(--t);
}

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

.method-num {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-bottom: 14px;
}

.method-card h4 {
  font-size: 1.0625rem;
  margin-bottom: 10px;
  line-height: 1.35;
}

.method-card p {
  font-size: 0.875rem;
  line-height: 1.55;
}

/* ============================================================
   Tabs (Examples)
   ============================================================ */

.tabs {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.tabs-nav {
  display: flex;
  gap: 0;
  border-bottom: 1px solid var(--border);
  background: var(--bg-subtle);
  overflow-x: auto;
}

.tab-btn {
  padding: 18px 28px;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-secondary);
  border-bottom: 2px solid transparent;
  transition: all var(--t);
  white-space: nowrap;
}

.tab-btn:hover {
  color: var(--text-primary);
}

.tab-btn.is-active {
  color: var(--accent);
  background: var(--bg-secondary);
  border-bottom-color: var(--accent);
}

.tabs-content {
  padding: 32px;
}

.tab-panel {
  display: none;
}

.tab-panel.is-active {
  display: block;
}

/* Mock data table */
.mock-table {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  overflow-x: auto;
}

.mock-table table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
  min-width: 720px;
}

.mock-table th,
.mock-table td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.mock-table th {
  background: var(--bg-subtle);
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-secondary);
}

.mock-table tr:last-child td {
  border-bottom: none;
}

.mock-table td {
  color: var(--text-primary);
}

.mock-table td.col-score {
  font-weight: 600;
  color: var(--accent);
}

.pill {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-weight: 600;
}

.pill-success { background: var(--success-soft); color: var(--success); }
.pill-accent { background: var(--accent-soft); color: var(--accent); }
.pill-neutral { background: var(--bg-subtle); color: var(--text-secondary); }
.pill-warn { background: #FEF3C7; color: #B45309; }
.pill-red { background: #FEE2E2; color: #B91C1C; }

/* Email mock */
.mock-email {
  background: var(--bg-subtle);
  border-radius: var(--radius-md);
  padding: 24px;
  margin-bottom: 16px;
  border-left: 3px solid var(--accent);
}

.mock-email-meta {
  font-size: 0.75rem;
  color: var(--text-tertiary);
  margin-bottom: 8px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.mock-email-subject {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.mock-email-body {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.6;
  white-space: pre-wrap;
}

/* CRM kanban mock */
.mock-kanban {
  display: grid;
  grid-template-columns: repeat(7, minmax(140px, 1fr));
  gap: 12px;
  overflow-x: auto;
}

.kanban-col {
  background: var(--bg-subtle);
  border-radius: var(--radius-md);
  padding: 12px;
  min-width: 140px;
}

.kanban-title {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-secondary);
  margin-bottom: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.kanban-count {
  background: var(--bg-secondary);
  color: var(--text-primary);
  padding: 2px 8px;
  border-radius: var(--radius-pill);
  font-size: 0.6875rem;
}

.kanban-card {
  background: var(--bg-secondary);
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  margin-bottom: 8px;
  border: 1px solid var(--border);
  font-size: 0.8125rem;
  color: var(--text-primary);
  line-height: 1.4;
}

.kanban-card strong {
  display: block;
  margin-bottom: 2px;
  font-weight: 600;
}

.kanban-card span {
  color: var(--text-tertiary);
  font-size: 0.75rem;
}

/* ============================================================
   Compare (vs ChatGPT)
   ============================================================ */

.compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

@media (max-width: 768px) {
  .compare { grid-template-columns: 1fr; }
}

.compare-col {
  padding: 32px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}

.compare-col.is-neutral {
  background: var(--bg-secondary);
}

.compare-col.is-accent {
  background: var(--bg-dark);
  color: white;
  border-color: var(--bg-dark);
}

.compare-col h3 {
  margin-bottom: 24px;
  font-size: 1.25rem;
}

.compare-col.is-accent h3 {
  color: white;
}

.compare-col ul li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  font-size: 0.9375rem;
  line-height: 1.5;
}

.compare-col.is-neutral ul li {
  color: var(--text-secondary);
}

.compare-col.is-accent ul li {
  color: rgba(248, 250, 252, 0.85);
}

.compare-col ul li::before {
  content: '';
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  background-size: 18px;
  background-repeat: no-repeat;
}

.compare-col.is-neutral ul li::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 18' fill='none'%3E%3Ccircle cx='9' cy='9' r='8' stroke='%23CBD5E1' stroke-width='1.5'/%3E%3Cpath d='M6 6l6 6M12 6l-6 6' stroke='%23475569' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
}

.compare-col.is-accent ul li::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 18' fill='none'%3E%3Ccircle cx='9' cy='9' r='8' fill='%237C3AED'/%3E%3Cpath d='M5 9.5L8 12.5L13 6.5' stroke='white' stroke-width='1.75' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

/* ============================================================
   White Label section
   ============================================================ */

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

@media (max-width: 960px) {
  .split { grid-template-columns: 1fr; gap: 40px; }
}

.split-content h2 {
  margin-bottom: 16px;
}

.split-content .lead {
  margin-bottom: 28px;
}

.feature-list {
  display: grid;
  gap: 12px;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.feature-list li::before {
  content: '';
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-top: 1px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none'%3E%3Ccircle cx='10' cy='10' r='9' fill='%23EEF2FF'/%3E%3Cpath d='M6 10.5L9 13.5L14 7.5' stroke='%234338CA' stroke-width='1.75' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: 20px;
  background-repeat: no-repeat;
}

.split-visual {
  background: var(--accent-gradient-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 40px;
  position: relative;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mock-doc {
  background: white;
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-lg);
  width: 100%;
  max-width: 360px;
}

.mock-doc-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 16px;
}

.mock-doc-logo-square {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: var(--accent-gradient);
}

.mock-doc-logo-name {
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--text-primary);
}

.mock-doc-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.mock-doc-lines {
  display: grid;
  gap: 8px;
}

.mock-doc-line {
  height: 8px;
  background: var(--bg-subtle);
  border-radius: 4px;
}

.mock-doc-line.short { width: 60%; }
.mock-doc-line.medium { width: 80%; }

/* ============================================================
   FAQ
   ============================================================ */

.faq {
  max-width: 760px;
  margin: 0 auto;
}

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

.faq-item:first-child {
  border-top: 1px solid var(--border);
}

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 0;
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--text-primary);
  text-align: left;
  transition: color var(--t);
}

.faq-q:hover {
  color: var(--accent);
}

.faq-q-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--bg-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--t);
}

.faq-q-icon::before {
  content: '+';
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--text-secondary);
  line-height: 1;
}

.faq-item.is-open .faq-q-icon {
  background: var(--accent);
  transform: rotate(45deg);
}

.faq-item.is-open .faq-q-icon::before {
  color: white;
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 300ms ease, padding 200ms ease;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.faq-item.is-open .faq-a {
  max-height: 600px;
  padding: 0 0 24px;
}

/* ============================================================
   CTA Final
   ============================================================ */

.cta-final {
  background: var(--bg-dark);
  color: white;
  padding: 96px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-final::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 800px;
  height: 800px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(124, 58, 237, 0.2), transparent 60%);
  pointer-events: none;
}

.cta-final > .container {
  position: relative;
  z-index: 1;
}

.cta-final h2 {
  color: white;
  margin-bottom: 20px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.cta-final p {
  color: rgba(248, 250, 252, 0.75);
  font-size: 1.125rem;
  max-width: 600px;
  margin: 0 auto 36px;
}

.cta-final .btn-secondary {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.25);
  color: white;
}

.cta-final .btn-secondary:hover {
  border-color: white;
}

.cta-final-microcopy {
  margin-top: 24px;
  font-size: 0.875rem;
  color: rgba(248, 250, 252, 0.5);
}

/* ============================================================
   Footer
   ============================================================ */

.site-footer {
  background: var(--bg-dark);
  color: rgba(248, 250, 252, 0.75);
  padding: 72px 0 32px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr repeat(4, 1fr);
  gap: 48px;
  margin-bottom: 56px;
}

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

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

.footer-brand .brand-name {
  color: white;
}

.footer-brand .brand-tag {
  color: rgba(248, 250, 252, 0.5);
}

.footer-tagline {
  margin-top: 16px;
  font-size: 0.875rem;
  color: rgba(248, 250, 252, 0.6);
  line-height: 1.55;
  max-width: 280px;
}

.footer-col h5 {
  color: white;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer-col ul li {
  padding: 6px 0;
}

.footer-col a {
  color: rgba(248, 250, 252, 0.7);
  font-size: 0.9375rem;
  transition: color var(--t);
}

.footer-col a:hover {
  color: white;
}

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(248, 250, 252, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.8125rem;
  color: rgba(248, 250, 252, 0.5);
}

/* ============================================================
   Form
   ============================================================ */

.form {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 48px;
  box-shadow: var(--shadow-md);
}

@media (max-width: 768px) {
  .form { padding: 28px; }
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

@media (max-width: 640px) {
  .form-grid { grid-template-columns: 1fr; }
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-field.is-full {
  grid-column: 1 / -1;
}

.form-field label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-primary);
}

.form-field label .req {
  color: #DC2626;
  margin-left: 2px;
}

.form-field input,
.form-field select,
.form-field textarea {
  font-family: inherit;
  font-size: 0.9375rem;
  padding: 12px 16px;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-md);
  background: var(--bg-secondary);
  color: var(--text-primary);
  transition: all var(--t);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-soft);
}

.form-field input[aria-invalid="true"],
.form-field select[aria-invalid="true"],
.form-field textarea[aria-invalid="true"] {
  border-color: #DC2626;
  box-shadow: 0 0 0 4px rgba(220, 38, 38, 0.12);
}

.form-field textarea {
  resize: vertical;
  min-height: 100px;
}

.form-field-hint {
  font-size: 0.8125rem;
  color: var(--text-tertiary);
}

.checkbox-group {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  padding-top: 8px;
}

@media (max-width: 640px) {
  .checkbox-group { grid-template-columns: 1fr; }
}

.checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: var(--bg-subtle);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  color: var(--text-primary);
  font-weight: 500;
  cursor: pointer;
  transition: all var(--t);
}

.checkbox:hover {
  border-color: var(--accent);
}

.checkbox input {
  width: 16px;
  height: 16px;
  accent-color: var(--accent);
}

.checkbox input:checked + span {
  color: var(--accent);
}

.form-actions {
  margin-top: 32px;
  text-align: center;
}

.form-success {
  text-align: center;
  padding: 48px 32px;
}

.form-success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--success-soft);
  color: var(--success);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.form-success-icon svg {
  width: 28px;
  height: 28px;
}

.form-success h3 {
  margin-bottom: 12px;
}

.is-hidden {
  display: none !important;
}

/* ============================================================
   Disclaimer & misc
   ============================================================ */

.disclaimer {
  background: var(--bg-subtle);
  border-left: 3px solid var(--text-tertiary);
  padding: 20px 24px;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.55;
  margin-top: 24px;
}

.page-hero {
  padding: 80px 0 56px;
  text-align: center;
}

.page-hero .eyebrow {
  margin-bottom: 16px;
}

.page-hero h1 {
  margin-bottom: 20px;
}

.page-hero p {
  font-size: 1.1875rem;
  max-width: 640px;
  margin: 0 auto;
}

/* Example deliverable mock report */
.mock-report {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
}

@media (max-width: 768px) {
  .mock-report { padding: 24px; }
}

.mock-report-header {
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.mock-report-title {
  font-size: 1.25rem;
  font-weight: 700;
}

.mock-report-section {
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
}

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

.mock-report-section h4 {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 12px;
}

.mock-report-section p {
  font-size: 0.9375rem;
  color: var(--text-primary);
}

/* Score visualization */
.score-bar {
  height: 8px;
  background: var(--bg-subtle);
  border-radius: 4px;
  overflow: hidden;
  margin-top: 4px;
}

.score-bar-fill {
  height: 100%;
  background: var(--accent-gradient);
  border-radius: 4px;
}
