/* === Reset & Tokens === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --ink: #0f172a;
  --ink-light: #334155;
  --ink-muted: #64748b;
  --surface: #ffffff;
  --surface-alt: #f8fafc;
  --surface-dark: #0f172a;
  --border: #e2e8f0;
  --accent: #2563eb;
  --accent-dark: #1d4ed8;
  --accent-light: #eff6ff;
  --green: #16a34a;
  --green-light: #f0fdf4;
  --red: #dc2626;
  --red-light: #fef2f2;
  --radius: 8px;
  --radius-lg: 12px;
  --shadow: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 32px rgba(0,0,0,0.1);
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Inter, Roboto, Helvetica, Arial, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  background: var(--surface);
}

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3 { line-height: 1.2; letter-spacing: -0.02em; }

h2 {
  font-size: 2.2rem;
  text-align: center;
  margin-bottom: 0.5rem;
}

.subtitle {
  text-align: center;
  color: var(--ink-muted);
  font-size: 1.1rem;
  margin-bottom: 3rem;
}

/* === Buttons === */
.btn {
  display: inline-block;
  padding: 14px 28px;
  background: var(--accent);
  color: var(--surface);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  border-radius: var(--radius);
  border: 2px solid var(--accent);
  cursor: pointer;
  transition: all 0.15s;
  font-family: var(--font);
}

.btn:hover { background: var(--accent-dark); border-color: var(--accent-dark); }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--border);
}

.btn-ghost:hover {
  background: var(--surface-alt);
  border-color: var(--ink-muted);
  color: var(--ink);
}

.btn-sm { padding: 10px 20px; font-size: 0.9rem; }
.btn-full { width: 100%; text-align: center; }

.btn-tier {
  width: 100%;
  text-align: center;
  margin-top: auto;
}

/* === Header === */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}

.logo {
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: -0.03em;
}

.nav { display: flex; align-items: center; gap: 28px; }

.nav a {
  text-decoration: none;
  color: var(--ink-light);
  font-weight: 500;
  font-size: 0.9rem;
  transition: color 0.15s;
}

.nav a:hover { color: var(--ink); }
.nav .btn { color: var(--surface); }
.nav .btn:hover { color: var(--surface); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.2s;
}

/* === Hero === */
.hero {
  padding: 72px 0 56px;
  background: var(--surface);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1.2rem;
  color: var(--ink);
}

.hero-text > p {
  font-size: 1.15rem;
  color: var(--ink-light);
  margin-bottom: 2rem;
  max-width: 500px;
}

.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.hero-trust {
  display: flex;
  gap: 20px;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.hero-trust span {
  font-size: 0.9rem;
  color: var(--ink-muted);
  font-weight: 500;
}

/* Hero Screenshot */
.hero-screenshot {
  position: relative;
}

.browser-frame {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.browser-dots {
  display: flex;
  gap: 6px;
  padding: 10px 14px;
  border-bottom: 1px solid var(--border);
}

.browser-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border);
}

.browser-content { padding: 0; }

.mini-hero {
  background: linear-gradient(135deg, #1e3a5f, #2c5282);
  color: white;
  padding: 28px 20px;
  text-align: center;
}

.mini-logo {
  font-size: 0.7rem;
  opacity: 0.8;
  margin-bottom: 10px;
}

.mini-h1 {
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 8px;
  line-height: 1.2;
}

.mini-badges {
  font-size: 0.6rem;
  opacity: 0.7;
  margin-bottom: 12px;
}

.mini-btn {
  display: inline-block;
  padding: 6px 14px;
  background: #f6ad1b;
  color: #111;
  font-size: 0.7rem;
  font-weight: 700;
  border-radius: 6px;
}

.mini-services {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 6px;
  padding: 12px;
}

.mini-service-card {
  height: 40px;
  background: var(--surface-alt);
  border: 1px solid var(--border);
  border-radius: 6px;
}

.hero-screenshot-label {
  display: block;
  text-align: center;
  margin-top: 12px;
  font-size: 0.85rem;
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.15s;
}
.hero-screenshot-label:hover {
  color: var(--accent-dark);
}

/* === Pain Points === */
.pain {
  padding: 72px 0;
  background: var(--surface-alt);
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 800px;
  margin: 0 auto 2rem;
}

.pain-card {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 20px;
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.pain-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--red-light);
  color: var(--red);
  border-radius: 50%;
  font-weight: 700;
  font-size: 0.9rem;
}

.pain-card p {
  color: var(--ink-light);
  font-size: 0.95rem;
}

.pain-stat {
  text-align: center;
  font-size: 1.05rem;
  color: var(--ink-light);
  max-width: 600px;
  margin: 0 auto;
  padding: 24px;
  background: var(--surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}

.pain-stat strong {
  color: var(--accent);
}

/* === Solution / What You Get === */
.solution {
  padding: 80px 0;
}

/* Before/After */
.before-after {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: stretch;
  margin-bottom: 3rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 3rem;
}

.ba-col {
  padding: 28px 24px;
  border-radius: var(--radius-lg);
}

.ba-before {
  background: var(--red-light);
  border: 1px solid #fecaca;
}

.ba-after {
  background: var(--green-light);
  border: 1px solid #bbf7d0;
}

.ba-col h3 {
  font-size: 1rem;
  margin-bottom: 12px;
}

.ba-before h3 { color: var(--red); }
.ba-after h3 { color: var(--green); }

.ba-col ul {
  list-style: none;
}

.ba-col ul li {
  padding: 6px 0;
  font-size: 0.9rem;
  color: var(--ink-light);
  padding-left: 20px;
  position: relative;
}

.ba-before ul li::before {
  content: "✗";
  position: absolute;
  left: 0;
  color: var(--red);
  font-weight: 700;
}

.ba-after ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
}

.ba-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--ink-muted);
  font-weight: 700;
}

.solution-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.solution-card {
  padding: 28px 24px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: box-shadow 0.2s, transform 0.2s;
}

.solution-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.solution-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-light);
  color: var(--accent);
  border-radius: 10px;
  margin-bottom: 16px;
}

.solution-card h3 {
  margin-bottom: 8px;
  font-size: 1.05rem;
}

.solution-card p {
  color: var(--ink-muted);
  font-size: 0.9rem;
}

/* === AI Highlight === */
.ai-highlight {
  margin-top: 2.5rem;
  padding: 28px 32px;
  background: linear-gradient(135deg, var(--accent-light), #eef2ff);
  border: 1px solid #c7d2fe;
  border-radius: var(--radius-lg);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.ai-highlight-inner {
  display: flex;
  align-items: center;
  gap: 24px;
}

.ai-highlight-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  background: var(--accent);
  color: white;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ai-highlight-text h3 {
  font-size: 1.15rem;
  margin-bottom: 6px;
  text-align: left;
}

.new-badge {
  display: inline-block;
  background: var(--accent);
  color: white;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 10px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  vertical-align: middle;
  margin-left: 6px;
}

.ai-highlight-text p {
  color: var(--ink-muted);
  font-size: 0.95rem;
  text-align: left;
}

@media (max-width: 600px) {
  .ai-highlight-inner {
    flex-direction: column;
    text-align: center;
  }
  .ai-highlight-text h3,
  .ai-highlight-text p {
    text-align: center;
  }
}

/* === Demo Showcase === */
.demo {
  padding: 80px 0;
  background: var(--surface-alt);
}

.demo-showcase {
  max-width: 700px;
  margin: 0 auto 2rem;
}

.demo-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.demo-tab {
  padding: 8px 20px;
  border: 1px solid var(--border);
  border-radius: 40px;
  background: var(--surface);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  font-family: var(--font);
  color: var(--ink-light);
  transition: all 0.15s;
}

.demo-tab.active {
  background: var(--accent);
  color: var(--surface);
  border-color: var(--accent);
}

.demo-tab:disabled:not(.active) {
  opacity: 0.5;
  cursor: default;
}

.coming {
  font-size: 0.7rem;
  background: var(--surface-alt);
  padding: 2px 6px;
  border-radius: 4px;
  color: var(--ink-muted);
  margin-left: 4px;
}

.demo-frame-link {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s;
}

.demo-frame-link:hover {
  transform: translateY(-2px);
}

.demo-browser {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.demo-browser .browser-dots {
  display: flex;
  gap: 6px;
  padding: 10px 14px;
  border-bottom: 1px solid var(--border);
}

.demo-browser .browser-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border);
}

.demo-browser-content { padding: 0; }

.demo-hero-mini {
  background: linear-gradient(135deg, #1e3a5f, #2c5282);
  color: white;
  padding: 32px 24px;
  text-align: center;
}

.demo-mini-top {
  font-size: 0.8rem;
  opacity: 0.8;
  margin-bottom: 10px;
}

.demo-mini-h1 {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 10px;
  line-height: 1.2;
}

.demo-mini-badges {
  font-size: 0.7rem;
  opacity: 0.75;
  margin-bottom: 14px;
}

.demo-mini-cta {
  display: inline-block;
  padding: 8px 20px;
  background: #f6ad1b;
  color: #111;
  font-size: 0.8rem;
  font-weight: 700;
  border-radius: 6px;
}

.demo-mini-sections {
  padding: 16px;
}

.demo-mini-section {
  margin-bottom: 12px;
}

.demo-mini-heading {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--ink-muted);
  margin-bottom: 8px;
}

.demo-mini-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 6px;
}

.demo-mini-card {
  background: var(--surface-alt);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 10px;
  font-size: 0.7rem;
  text-align: center;
  color: var(--ink-muted);
}

.demo-mini-review {
  background: var(--surface-alt);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 12px;
  font-size: 0.75rem;
  color: var(--ink-muted);
  font-style: italic;
}

.demo-click-hint {
  text-align: center;
  margin-top: 12px;
  font-size: 0.9rem;
  color: var(--accent);
  font-weight: 500;
}

.demo-features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  max-width: 700px;
  margin: 0 auto;
}

.demo-features span {
  font-size: 0.9rem;
  color: var(--ink-muted);
  font-weight: 500;
}

/* === Industries === */
.industries {
  padding: 64px 0;
}

.industry-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 0;
}

.industry-tags span {
  padding: 8px 18px;
  background: var(--surface-alt);
  border: 1px solid var(--border);
  border-radius: 40px;
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--ink-light);
}

/* === Results === */
.results {
  padding: 72px 0;
  background: var(--surface);
}
.results-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}
.result-card {
  text-align: center;
  padding: 28px 16px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}
.result-number {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.result-card p {
  font-size: 0.9rem;
  color: var(--ink-muted);
}

/* === Pricing === */
.pricing {
  padding: 80px 0;
  background: var(--surface-alt);
}

.tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}

.tier {
  display: flex;
  flex-direction: column;
  padding: 32px 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
  position: relative;
}

.tier-featured {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent), var(--shadow-md);
}

.tier-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--surface);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.tier-label {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-muted);
  margin-bottom: 4px;
}

.tier h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
}

.tier-price {
  margin-bottom: 16px;
  display: flex;
  align-items: baseline;
  gap: 6px;
  flex-wrap: wrap;
}

.price-from {
  font-size: 0.85rem;
  color: var(--ink-muted);
}

.price-amount {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.02em;
}

.price-period {
  font-size: 0.85rem;
  color: var(--ink-muted);
}

.tier-desc {
  color: var(--ink-muted);
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.tier ul {
  list-style: none;
  margin-bottom: 24px;
  flex-grow: 1;
}

.tier ul li {
  padding: 6px 0;
  padding-left: 20px;
  position: relative;
  color: var(--ink-light);
  font-size: 0.9rem;
}

.tier ul li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
}

.tier-promise {
  padding: 16px;
  background: var(--accent-light);
  border-radius: var(--radius);
  font-size: 0.9rem;
  color: var(--ink-light);
  margin-bottom: 20px;
}

.tier-promise strong {
  color: var(--accent);
}

.tier-coming {
  opacity: 0.55;
  position: relative;
}

.tier-coming-badge {
  display: inline-block;
  background: var(--surface-alt);
  border: 1px solid var(--border);
  color: var(--ink-muted);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 6px 18px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.btn-disabled {
  background: var(--border);
  border-color: var(--border);
  color: var(--ink-muted);
  cursor: default;
  pointer-events: none;
}

.guarantee {
  margin-top: 2.5rem;
  display: flex;
  justify-content: center;
}
.guarantee-inner {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  max-width: 520px;
  background: var(--green-light);
  border: 1px solid #bbf7d0;
  border-radius: var(--radius-lg);
  padding: 20px 24px;
}
.guarantee-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
  line-height: 1;
}
.guarantee-text strong {
  font-size: 1rem;
  color: var(--ink);
  display: block;
  margin-bottom: 4px;
}
.guarantee-text p {
  font-size: 0.875rem;
  color: var(--ink-light);
  line-height: 1.5;
  margin: 0;
}

.currency-switcher {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 2rem;
}
.currency-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--surface);
  color: var(--ink-muted);
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.15s;
}
.currency-btn:hover {
  border-color: var(--accent);
  color: var(--ink);
}
.currency-btn.active {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}
.pricing-trust {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 2rem;
  flex-wrap: wrap;
}
.pricing-trust span {
  font-size: 0.9rem;
  color: var(--ink-muted);
  font-weight: 500;
}

@media (max-width: 600px) {
  .pricing-trust {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }
}

/* === FAQ === */
.faq {
  padding: 72px 0;
}

.faq-list {
  max-width: 720px;
  margin: 2rem auto 0;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item summary {
  padding: 20px 0;
  font-weight: 600;
  font-size: 1.05rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--ink);
}

.faq-item summary::after {
  content: "+";
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--ink-muted);
  transition: transform 0.2s;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item p {
  padding: 0 0 20px;
  color: var(--ink-muted);
  line-height: 1.7;
}

/* === CTA === */
.cta {
  padding: 80px 0;
  background: var(--surface-dark);
  color: var(--surface);
}

.cta-inner {
  max-width: 480px;
  margin: 0 auto;
  text-align: center;
}

.cta h2 {
  color: var(--surface);
  margin-bottom: 0.75rem;
}

.cta-inner > p {
  color: #94a3b8;
  margin-bottom: 2rem;
  font-size: 1.05rem;
}

.cta-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 1.5rem;
}

.cta-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.cta-form input {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #334155;
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-family: var(--font);
  background: #1e293b;
  color: var(--surface);
  transition: border-color 0.15s;
}

.cta-form input::placeholder { color: #64748b; }

.cta-form input:focus {
  outline: none;
  border-color: var(--accent);
}

.cta-note-form {
  color: #475569;
  font-size: 0.85rem;
  margin-top: 4px;
}

.cta-note {
  color: #64748b;
  font-size: 0.9rem;
}

.cta-note a {
  color: #94a3b8;
  text-decoration: underline;
}

/* === Footer === */
.footer {
  padding: 48px 0 24px;
  background: var(--surface-dark);
  border-top: 1px solid #1e293b;
  color: #94a3b8;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 32px;
}

.footer-col .logo {
  color: var(--surface);
  font-size: 1.2rem;
  display: block;
  margin-bottom: 8px;
}

.footer-col p {
  font-size: 0.9rem;
  margin-bottom: 8px;
}

.footer-col > a {
  display: block;
  color: #64748b;
  text-decoration: none;
  font-size: 0.85rem;
  padding: 3px 0;
  transition: color 0.15s;
}

.footer-col > a:hover {
  color: var(--surface);
}

.footer-col h4 {
  color: var(--surface);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  margin-bottom: 12px;
}

.footer-copy {
  font-size: 0.8rem;
  color: #475569;
  border-top: 1px solid #1e293b;
  padding-top: 20px;
  text-align: center;
}

/* === Sticky Mobile CTA === */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 99;
  background: var(--surface);
  border-top: 1px solid var(--border);
  box-shadow: 0 -4px 12px rgba(0,0,0,0.1);
  padding: 10px 16px;
}

.sticky-cta-btn {
  display: block;
  text-align: center;
  padding: 14px;
  background: var(--accent);
  color: var(--surface);
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  border-radius: var(--radius);
}

/* === Legal Pages === */
.legal-page {
  padding: 120px 0 60px;
}
.legal-container {
  max-width: 720px;
  margin: 0 auto;
}
.legal-container h1 {
  font-size: 2rem;
  margin-bottom: 8px;
  color: var(--ink);
}
.legal-updated {
  color: var(--ink-muted);
  font-size: 0.9rem;
  margin-bottom: 2rem;
}
.legal-container h2 {
  font-size: 1.3rem;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  color: var(--ink);
}
.legal-container h3 {
  font-size: 1.05rem;
  margin-top: 1.25rem;
  margin-bottom: 0.5rem;
  color: var(--ink);
}
.legal-container p {
  color: var(--ink-light);
  line-height: 1.75;
  margin-bottom: 1rem;
}
.legal-container ul {
  margin: 0 0 1rem 1.5rem;
  color: var(--ink-light);
  line-height: 1.75;
}
.legal-container li {
  margin-bottom: 4px;
}
.legal-container a {
  color: var(--accent);
}
.legal-contact {
  list-style: none;
  margin-left: 0;
}

/* === Cookie Banner === */
.cookie-banner {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: var(--surface-dark);
  color: #cbd5e1;
  padding: 14px 24px;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-size: 0.875rem;
  box-shadow: 0 -4px 12px rgba(0,0,0,0.15);
}
.cookie-banner.visible {
  display: flex;
}
.cookie-banner p {
  margin: 0;
}
.cookie-banner a {
  color: var(--surface);
  text-decoration: underline;
}
.cookie-accept {
  background: var(--accent);
  color: var(--surface);
  border: none;
  padding: 8px 20px;
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.15s;
}
.cookie-accept:hover {
  background: var(--accent-dark);
}
@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    text-align: center;
    gap: 10px;
    padding: 16px 20px;
  }
}

/* === Responsive === */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .hero { text-align: center; padding: 56px 0 48px; }
  .hero-text > p { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-trust { justify-content: center; }
  .hero h1 { font-size: 2.4rem; }

  .before-after { grid-template-columns: 1fr; }
  .ba-arrow { transform: rotate(90deg); padding: 8px 0; }
  .solution-grid { grid-template-columns: 1fr 1fr; }
  .results-grid { grid-template-columns: repeat(2, 1fr); }
  .tiers { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
}

@media (max-width: 768px) {
  body {
    padding-bottom: 64px;
  }

  .nav {
    display: none;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    background: var(--surface);
    flex-direction: column;
    padding: 16px 24px;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
    gap: 12px;
  }

  .nav.open { display: flex; }
  .nav .btn-sm { width: 100%; text-align: center; }
  .nav-toggle { display: flex; }

  .sticky-cta { display: block; }

  h2 { font-size: 1.7rem; }

  .pain-grid { grid-template-columns: 1fr; }
  .solution-grid { grid-template-columns: 1fr; }

  .cta-row { grid-template-columns: 1fr; }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
  .footer-col:first-child {
    grid-column: 1 / -1;
  }
}

@media (min-width: 769px) {
  .sticky-cta { display: none !important; }
}
