/* Volt — Light theme marketing site */

:root {
  --bg: #FAFBFC;
  --bg-alt: #F5F3FF;
  --bg-muted: #F8F9FC;
  --surface: #FFFFFF;
  --surface-2: #F4F4F8;
  --border: #E2E8F0;
  --border-subtle: #EEF0F4;
  --primary: #6C5CE7;
  --primary-hover: #5A4BD1;
  --primary-light: rgba(108, 92, 231, 0.07);
  --primary-muted: rgba(108, 92, 231, 0.12);
  --accent: #FF6B6B;
  --text: #1E1E2E;
  --text-secondary: #64748B;
  --text-muted: #94A3B8;
  --success: #10B981;
  --warning: #F59E0B;
  --danger: #EF4444;
  --radius: 16px;
  --radius-sm: 12px;
  --radius-lg: 24px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.04), 0 1px 2px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.06), 0 1px 3px rgba(0,0,0,0.04);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.1), 0 4px 12px rgba(0,0,0,0.04);
  --shadow-xl: 0 24px 64px rgba(0,0,0,0.12), 0 8px 24px rgba(0,0,0,0.06);
  --font-display: "Space Grotesk", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; font-family: var(--font-body); background: none; }

/* ─── SCROLL PROGRESS ─── */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; z-index: 200;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  width: 0%; transition: width 0.1s linear;
  border-radius: 0 2px 2px 0;
}

/* ─── NAV ─── */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5vw; height: 64px;
  background: rgba(250, 251, 252, 0.85);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, background 0.3s, box-shadow 0.3s;
}
.site-nav.scrolled {
  border-color: var(--border);
  box-shadow: 0 1px 8px rgba(0,0,0,0.04);
}

.nav-logo {
  font-family: var(--font-display); font-weight: 700; font-size: 1.25rem;
  letter-spacing: -0.03em; display: flex; align-items: center; gap: 8px;
  color: var(--text);
}
.nav-logo-icon { color: var(--primary); }

.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-links a {
  color: var(--text-secondary); font-size: 0.875rem; font-weight: 500;
  transition: color 0.2s; position: relative;
}
.nav-links a:hover { color: var(--text); }
.nav-links a::after {
  content: ""; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 2px; background: var(--primary); border-radius: 2px;
  transform: scaleX(0); transition: transform 0.25s cubic-bezier(0.16,1,0.3,1);
}
.nav-links a:hover::after { transform: scaleX(1); }

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

.nav-cta {
  background: var(--text); color: #fff;
  padding: 9px 20px; border-radius: 100px;
  font-size: 0.8125rem; font-weight: 600;
  transition: background 0.2s, transform 0.15s;
  display: inline-block;
}
.nav-cta:hover { background: #333; transform: translateY(-1px); }

.nav-burger {
  display: none; width: 36px; height: 36px;
  flex-direction: column; align-items: center; justify-content: center; gap: 6px;
  padding: 0; background: none; cursor: pointer;
}
.nav-burger span {
  display: block; width: 20px; height: 2px;
  background: var(--text); border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.nav-burger.active span:first-child { transform: translateY(4px) rotate(45deg); }
.nav-burger.active span:last-child { transform: translateY(-4px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  position: fixed; top: 64px; left: 0; right: 0; z-index: 99;
  background: rgba(250, 251, 252, 0.98);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 16px 5vw 24px;
  display: flex; flex-direction: column; gap: 8px;
  transform: translateY(-100%); opacity: 0;
  transition: transform 0.35s cubic-bezier(0.16,1,0.3,1), opacity 0.25s;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateY(0); opacity: 1; pointer-events: auto;
}
.mobile-menu a {
  padding: 12px 0; font-size: 1rem; font-weight: 500;
  color: var(--text-secondary); border-bottom: 1px solid var(--border-subtle);
  transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--text); }
.mobile-menu-cta {
  margin-top: 8px; background: var(--primary); color: #fff !important;
  padding: 14px !important; border-radius: var(--radius-sm);
  text-align: center; font-weight: 600; border: none !important;
}

/* ─── HERO ─── */
#hero {
  min-height: 100vh; display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 100px 5vw 40px; position: relative;
}

.hero-glow {
  position: absolute; inset: 0; pointer-events: none; overflow: hidden;
}
.hero-glow::before {
  content: ""; position: absolute;
  width: 600px; height: 600px;
  top: -100px; left: -100px;
  background: radial-gradient(circle, rgba(108,92,231,0.08) 0%, transparent 70%);
  border-radius: 50%;
  animation: glowFloat 8s ease-in-out infinite alternate;
}
.hero-glow::after {
  content: ""; position: absolute;
  width: 500px; height: 500px;
  bottom: -50px; right: -50px;
  background: radial-gradient(circle, rgba(255,107,107,0.05) 0%, transparent 70%);
  border-radius: 50%;
  animation: glowFloat 10s ease-in-out infinite alternate-reverse;
}
@keyframes glowFloat {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(30px, -20px) scale(1.1); }
}

.hero-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px;
  align-items: center; max-width: 1200px; margin: 0 auto;
  width: 100%; position: relative; z-index: 1;
}

.hero-content { max-width: 540px; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--primary-light);
  border: 1px solid rgba(108,92,231,0.15);
  color: var(--primary); padding: 6px 16px 6px 12px;
  border-radius: 100px; font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.02em; margin-bottom: 24px;
}
.badge-pulse {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--primary); flex-shrink: 0;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

h1 {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  line-height: 1.08; letter-spacing: -0.04em;
  color: var(--text); margin-bottom: 20px;
}
h1 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  color: var(--text-secondary); font-size: 1.0625rem;
  line-height: 1.7; max-width: 440px; margin-bottom: 32px;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 40px; }

.btn-primary {
  background: var(--primary); color: #fff;
  padding: 14px 28px; border-radius: 100px;
  font-size: 0.9375rem; font-weight: 600;
  transition: all 0.25s cubic-bezier(0.16,1,0.3,1);
  display: inline-flex; align-items: center; gap: 8px;
  box-shadow: 0 4px 16px rgba(108,92,231,0.3);
}
.btn-primary:hover {
  background: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(108,92,231,0.35);
}
.btn-arrow {
  transition: transform 0.25s;
  display: inline-block;
}
.btn-primary:hover .btn-arrow { transform: translateX(4px); }

.btn-ghost {
  color: var(--text); padding: 14px 28px;
  border-radius: 100px; font-size: 0.9375rem; font-weight: 600;
  border: 1px solid var(--border);
  transition: all 0.2s; display: inline-block;
  background: var(--surface);
}
.btn-ghost:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--primary-light);
}

.hero-metrics {
  display: flex; align-items: stretch; gap: 0;
  padding-top: 28px; border-top: 1px solid var(--border);
}
.metric { flex: 1; }
.metric-value {
  font-family: var(--font-display); font-weight: 700;
  font-size: 0.9375rem; color: var(--text);
  display: block; margin-bottom: 2px;
}
.metric-label {
  font-size: 0.75rem; color: var(--text-muted);
}
.metric-sep {
  width: 1px; background: var(--border);
  margin: 0 20px; flex-shrink: 0;
}

/* Scroll hint */
.scroll-hint {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: var(--text-muted); font-size: 0.6875rem; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase;
  margin-top: auto; padding-top: 32px;
  animation: bobDown 2s ease-in-out infinite;
}
@keyframes bobDown {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

/* ─── TRUST BAR ─── */
.trust-bar {
  background: var(--bg-alt);
  border-bottom: 1px solid rgba(108,92,231,0.08);
  padding: 14px 5vw;
}
.trust-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  color: var(--primary); font-size: 0.8125rem; font-weight: 600;
}
.trust-inner svg { flex-shrink: 0; stroke: var(--primary); }

/* ─── SECTIONS COMMON ─── */
section {
  padding: 100px 5vw;
}
.section-inner { max-width: 1200px; margin: 0 auto; }

.section-header { margin-bottom: 48px; }

.section-tag {
  font-size: 0.75rem; font-weight: 700; color: var(--primary);
  text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 12px;
  display: inline-block;
}

h2 {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(1.75rem, 3vw, 2.5rem); line-height: 1.15;
  letter-spacing: -0.03em; margin-bottom: 16px;
  color: var(--text);
}
h2 em { font-style: normal; color: var(--primary); }

.section-lead {
  color: var(--text-secondary); font-size: 1.0625rem;
  max-width: 520px; line-height: 1.7;
}

/* ─── PROBLEM ─── */
#problem { background: var(--bg); }

.problem-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.problem-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px 24px;
  transition: all 0.35s cubic-bezier(0.16,1,0.3,1);
  position: relative; overflow: hidden;
}
.problem-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.problem-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--primary-light);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px; color: var(--primary);
}
.problem-num {
  font-family: var(--font-display); font-size: 0.6875rem;
  font-weight: 700; color: var(--text-muted);
  margin-bottom: 10px; letter-spacing: 0.06em;
}
.problem-title {
  font-family: var(--font-display); font-weight: 600;
  font-size: 1rem; margin-bottom: 8px; color: var(--text);
}
.problem-desc {
  color: var(--text-secondary); font-size: 0.875rem; line-height: 1.6;
}

/* ─── SOLUTION ─── */
#solution { background: var(--bg-muted); }

.solution-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 16px; margin-top: 48px;
}
.sol-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px 24px;
  transition: all 0.35s cubic-bezier(0.16,1,0.3,1);
}
.sol-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.sol-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--primary-light);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px; color: var(--primary);
}
.sol-icon svg { width: 22px; height: 22px; }
.sol-card h3 {
  font-family: var(--font-display); font-weight: 600;
  font-size: 0.9375rem; margin-bottom: 6px;
}
.sol-card p {
  color: var(--text-secondary); font-size: 0.8125rem; line-height: 1.55;
}

.stores-block {
  text-align: center; display: flex; justify-content: center;
  margin-top: 40px;
}
.stores-row { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.store-badge {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 12px 20px;
  display: flex; align-items: center; gap: 10px; font-size: 0.8125rem;
  box-shadow: var(--shadow-sm);
  transition: all 0.2s;
}
.store-badge:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.store-badge small { display: block; color: var(--text-muted); font-size: 0.65rem; font-weight: 500; }
.store-badge strong { font-weight: 600; }
.store-badge svg { color: var(--text-secondary); }

/* ─── FEATURES ─── */
#features { background: var(--bg); }

.feat-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 14px;
}
.feat-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 20px 18px;
  transition: all 0.3s cubic-bezier(0.16,1,0.3,1); position: relative;
}
.feat-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-sm);
  transform: translateY(-3px);
}
.feat-card.included { border-color: rgba(108,92,231,0.2); }
.feat-card.included::after {
  content: "Inclus"; position: absolute; top: 12px; right: 12px;
  font-size: 0.625rem; font-weight: 700; color: var(--success);
  background: rgba(16, 185, 129, 0.1); padding: 2px 8px; border-radius: 100px;
}
.feat-title {
  font-family: var(--font-display); font-weight: 600;
  font-size: 0.875rem; margin-bottom: 6px;
}
.feat-desc { color: var(--text-secondary); font-size: 0.8125rem; line-height: 1.5; }
.feat-note {
  text-align: center; margin-top: 28px;
  color: var(--text-muted); font-size: 0.875rem;
}

/* ─── CUSTOM (DA) ─── */
#custom { background: var(--bg-alt); }

.custom-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 56px; align-items: center;
}
.color-swatches { display: flex; gap: 8px; flex-wrap: wrap; margin: 16px 0 24px; }

.swatch {
  width: 40px; height: 40px; border-radius: 12px; cursor: pointer;
  border: 3px solid transparent;
  transition: all 0.2s cubic-bezier(0.16,1,0.3,1);
  box-shadow: var(--shadow-sm);
}
.swatch:hover { transform: scale(1.12); }
.swatch.active { border-color: var(--text); transform: scale(1.05); }

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

.custom-check-title {
  font-family: var(--font-display); font-weight: 600; font-size: 0.875rem;
  margin-bottom: 12px; color: var(--text);
}
.custom-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.custom-list li {
  display: flex; gap: 10px; align-items: flex-start;
  color: var(--text-secondary); font-size: 0.8125rem; line-height: 1.5;
}
.custom-list li::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: var(--success); margin-top: 7px; flex-shrink: 0;
}

.phone-preview-wrap { display: flex; justify-content: center; }
.phone-small {
  width: 200px; height: 380px; background: #09090b;
  border-radius: 28px; border: 1px solid #27272a;
  overflow: hidden; position: relative;
  box-shadow: var(--shadow-xl);
  transition: border-color 0.4s;
}
.phone-small-header {
  padding: 28px 14px 12px; transition: background 0.4s;
  background: linear-gradient(135deg, rgba(108,92,231,0.18), transparent);
}
.ps-title {
  font-family: var(--font-display); font-weight: 700;
  font-size: 0.9rem; color: #fafafa;
}
.ps-sub { font-size: 0.6rem; color: #a1a1aa; margin-top: 4px; }

.ps-cards { padding: 0 12px; display: flex; flex-direction: column; gap: 8px; }
.ps-card {
  border-radius: 10px; height: 48px; display: flex; align-items: center;
  padding: 0 12px; background: #18181b; border: 1px solid #27272a;
}
.ps-card-dot {
  width: 26px; height: 26px; border-radius: 8px; margin-right: 10px;
  background: var(--primary); transition: background 0.4s;
}
.ps-card-line { height: 8px; border-radius: 4px; background: #1e1e22; flex: 1; }

.ps-nav {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: #18181b; border-top: 1px solid #27272a;
  display: flex; justify-content: space-around; padding: 10px 0 14px;
}
.ps-nav-dot {
  width: 28px; height: 3px; border-radius: 2px;
  background: #1e1e22; transition: background 0.4s;
}
.ps-nav-dot.active { background: var(--primary); }

/* ─── PRICING ─── */
#pricing { background: var(--bg); }

.pricing-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px; margin-top: 48px; align-items: start;
}

.pricing-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 36px 28px;
  position: relative;
  transition: all 0.35s cubic-bezier(0.16,1,0.3,1);
  box-shadow: var(--shadow-sm);
}
.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.pricing-card--featured {
  border-color: var(--primary);
  box-shadow: 0 0 0 1px var(--primary), var(--shadow-lg);
  background: linear-gradient(180deg, rgba(108,92,231,0.03) 0%, var(--surface) 100%);
}
.pricing-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--primary); color: #fff;
  font-size: 0.6875rem; font-weight: 700; padding: 5px 16px;
  border-radius: 100px; white-space: nowrap;
  box-shadow: 0 4px 12px rgba(108,92,231,0.3);
}

.pricing-name {
  font-family: var(--font-display); font-weight: 600;
  font-size: 1.125rem; margin-bottom: 12px;
}
.pricing-price { margin-bottom: 4px; }
.pricing-amount {
  font-family: var(--font-display); font-weight: 700;
  font-size: 2.5rem; letter-spacing: -0.03em;
}
.pricing-period { color: var(--text-muted); font-size: 0.875rem; }
.pricing-setup {
  font-size: 0.8125rem; color: var(--text-secondary); margin-bottom: 28px;
}

.pricing-list {
  list-style: none; display: flex; flex-direction: column; gap: 10px;
  margin-bottom: 28px;
}
.pricing-list li {
  font-size: 0.8125rem; color: var(--text-secondary); line-height: 1.45;
  display: flex; align-items: flex-start; gap: 10px;
}
.pricing-list li::before {
  content: ""; width: 5px; height: 5px; border-radius: 50%;
  background: var(--primary); margin-top: 7px; flex-shrink: 0;
}

.pricing-cta {
  display: block; text-align: center; padding: 13px;
  border-radius: 100px; font-size: 0.875rem; font-weight: 600;
  background: var(--surface-2); color: var(--text);
  border: 1px solid var(--border);
  transition: all 0.25s;
}
.pricing-cta:hover {
  border-color: var(--primary);
  color: var(--primary); background: var(--primary-light);
}
.pricing-cta--primary {
  background: var(--primary); color: #fff; border-color: var(--primary);
  box-shadow: 0 4px 12px rgba(108,92,231,0.25);
}
.pricing-cta--primary:hover {
  background: var(--primary-hover);
  box-shadow: 0 6px 16px rgba(108,92,231,0.35);
}

/* ─── PROCESS ─── */
#process { background: var(--bg-muted); }

.process-steps {
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 0; margin-top: 56px; position: relative;
}
.process-steps::before {
  content: ""; position: absolute;
  top: 20px; left: 10%; right: 10%;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--border) 15%, var(--primary) 50%, var(--border) 85%, transparent);
  pointer-events: none;
}
.process-step {
  text-align: center; padding: 0 12px;
}
.step-num {
  display: inline-block;
  background: var(--surface); border: 2px solid var(--border);
  border-radius: 10px; padding: 6px 12px;
  margin-bottom: 16px; position: relative; z-index: 1;
  font-family: var(--font-display); font-weight: 700;
  font-size: 0.75rem; color: var(--primary);
  letter-spacing: 0.04em;
  box-shadow: var(--shadow-sm);
}
.process-step:nth-child(3) .step-num {
  background: var(--primary); color: #fff;
  border-color: var(--primary);
  box-shadow: 0 4px 12px rgba(108,92,231,0.25);
}
.step-title {
  font-family: var(--font-display); font-weight: 600;
  font-size: 0.875rem; margin-bottom: 6px;
}
.step-desc { color: var(--text-secondary); font-size: 0.8125rem; line-height: 1.5; }

/* ─── CTA ─── */
#cta {
  background: linear-gradient(180deg, var(--bg-alt) 0%, var(--bg) 100%);
}
.cta-inner { text-align: center; max-width: 720px; margin: 0 auto; }

.cta-honeypot {
  position: absolute; clip: rect(0,0,0,0); height: 1px; width: 1px;
  margin: -1px; overflow: hidden; border: 0; padding: 0; display: none;
}

.cta-form {
  display: grid; gap: 16px; margin-top: 32px;
  text-align: left; position: relative;
}
.cta-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.cta-field { display: flex; flex-direction: column; gap: 6px; }
.cta-field label {
  font-size: 0.75rem; font-weight: 600; color: var(--text-muted);
  letter-spacing: 0.04em; text-transform: uppercase;
}
.cta-form input,
.cta-form select,
.cta-form textarea {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-sm); color: var(--text);
  font-family: var(--font-body); font-size: 0.9375rem;
  padding: 13px 16px; outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%; box-sizing: border-box;
}
.cta-form input::placeholder,
.cta-form textarea::placeholder { color: var(--text-muted); }
.cta-form input:focus,
.cta-form select:focus,
.cta-form textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(108,92,231,0.1);
}

.cta-form select {
  appearance: none; -webkit-appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2394A3B8' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center;
  padding-right: 36px;
}
.cta-form textarea { resize: vertical; min-height: 100px; }

.cta-form button[type="submit"] {
  background: var(--primary); color: #fff;
  padding: 16px 28px; border-radius: 100px;
  font-size: 1rem; font-weight: 600;
  width: 100%; margin-top: 4px;
  transition: all 0.25s; cursor: pointer; border: none;
  box-shadow: 0 4px 16px rgba(108,92,231,0.25);
  font-family: var(--font-body);
}
.cta-form button[type="submit"]:hover {
  background: var(--primary-hover);
  box-shadow: 0 6px 20px rgba(108,92,231,0.35);
  transform: translateY(-1px);
}
.cta-form button:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

.cta-note { color: var(--text-muted); font-size: 0.8125rem; margin-top: 14px; }

/* ─── FOOTER ─── */
footer {
  background: var(--surface); padding: 48px 5vw 24px;
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: flex-start;
  padding-bottom: 32px; border-bottom: 1px solid var(--border);
}
.footer-logo {
  font-family: var(--font-display); font-weight: 700; font-size: 1.125rem;
  display: flex; align-items: center; gap: 8px;
  color: var(--text); margin-bottom: 8px;
}
.footer-logo svg { color: var(--primary); }
.footer-brand p { color: var(--text-muted); font-size: 0.8125rem; max-width: 280px; line-height: 1.5; }
.footer-links { display: flex; gap: 24px; }
.footer-links a {
  color: var(--text-secondary); font-size: 0.875rem;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--primary); }

.footer-bottom {
  max-width: 1200px; margin: 0 auto;
  padding-top: 20px;
}
.footer-bottom p { color: var(--text-muted); font-size: 0.75rem; }

/* ─── REVEAL ANIMATIONS ─── */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible { opacity: 1; transform: none; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; gap: 40px; }
  .hero-content { max-width: 600px; margin: 0 auto; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-metrics { justify-content: center; }
  .phone-wrap { order: -1; }
  .solution-grid { grid-template-columns: 1fr 1fr; }
  .custom-grid { grid-template-columns: 1fr; }
  .custom-checklist, .custom-checklist--3col { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-burger { display: flex; }
  .problem-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; }
  .process-steps { grid-template-columns: 1fr 1fr; gap: 24px; }
  .process-steps::before { display: none; }
  .footer-inner { flex-direction: column; gap: 24px; }
}

@media (max-width: 600px) {
  section { padding: 72px 5vw; }
  .feat-grid { grid-template-columns: 1fr 1fr; }
  .cta-row { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; gap: 20px; }
  .hero-metrics { flex-direction: column; gap: 16px; }
  .metric-sep { width: 100%; height: 1px; margin: 0; }
  .solution-grid { grid-template-columns: 1fr; }
  h1 { font-size: 2.25rem; }
}
