/* ── Variables ───────────────────────────────────────── */
:root {
  --bg:       #0d0d0d;
  --surface:  #181818;
  --surface2: #222222;
  --border:   #2e2e2e;
  --accent:   #f5820d;
  --accent-dim: #7a400a;
  --text:     #f0ece4;
  --muted:    #888880;
  --font-display: 'Bricolage Grotesque', sans-serif;
  --font-body:    'Lora', serif;
  --radius:   12px;
  --max:      1160px;
  --ease:     cubic-bezier(0.16, 1, 0.3, 1);
}

/* ── Reset ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── Scroll-Reveal ───────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── Utility ─────────────────────────────────────────── */
.container { max-width: var(--max); margin: 0 auto; padding: 0 24px; }
.tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid var(--accent-dim);
  background: rgba(245,130,13,0.08);
  padding: 5px 14px;
  border-radius: 999px;
  margin-bottom: 20px;
}

/* ── NAV ─────────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(13,13,13,0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-cta {
  background: var(--accent);
  color: #000;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  padding: 10px 22px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}
.nav-cta:hover { background: #ff9a2e; transform: translateY(-1px); }

/* ── HERO ────────────────────────────────────────────── */
#hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}
#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 65% 50%, rgba(245,130,13,0.07) 0%, transparent 70%),
    repeating-linear-gradient(
      -55deg,
      transparent,
      transparent 38px,
      rgba(255,255,255,0.015) 38px,
      rgba(255,255,255,0.015) 39px
    );
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-label { margin-bottom: 20px; }
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.04em;
  margin-bottom: 24px;
}
.hero-headline em {
  font-style: normal;
  color: var(--accent);
  position: relative;
}
.hero-sub {
  color: var(--muted);
  font-size: 18px;
  max-width: 480px;
  margin-bottom: 24px;
}
.hero-features {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.hero-features li {
  padding-left: 24px;
  position: relative;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.5;
}
.hero-features li::before {
  content: "•";
  position: absolute;
  left: 6px;
  color: var(--accent);
  font-weight: bold;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.btn-primary {
  background: var(--accent);
  color: #000;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  padding: 16px 32px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 0 0 0 rgba(245,130,13,0.4);
}
.btn-primary::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 50%; height: 100%;
  background: linear-gradient(to right, transparent, rgba(255,255,255,0.3), transparent);
  transform: skewX(-20deg);
  animation: btn-shimmer 3s infinite;
}
@keyframes btn-shimmer {
  0% { left: -100%; }
  20% { left: 200%; }
  100% { left: 200%; }
}
.btn-primary:hover {
  background: #ff9a2e;
  transform: translateY(-4px);
  box-shadow: 0 0 20px rgba(245,130,13,0.4), 0 12px 28px rgba(0,0,0,0.3);
}
.btn-secondary {
  background: transparent;
  color: var(--text);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  padding: 16px 24px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}
.btn-secondary:hover { border-color: var(--accent); background: rgba(245,130,13,0.05); }

/* ── Chat mock ───────────────────────────────────────── */
.chat-mock {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.5);
  position: relative;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
  cursor: default;
  z-index: 1;
}
.chat-mock:hover {
  transform: translateY(-8px);
  border-color: rgba(245, 130, 13, 0.4);
  box-shadow: 0 30px 90px rgba(0,0,0,0.6), 0 0 60px rgba(245, 130, 13, 0.15);
}
.chat-mock.active-call {
  border-color: var(--accent);
  animation: call-glow 2s ease-in-out infinite;
}
.chat-mock.active-call::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(245,130,13,0.3), rgba(245,130,13,0.05), rgba(245,130,13,0.3));
  z-index: -1;
  opacity: 0.6;
  animation: call-glow-ring 2s ease-in-out infinite;
}
.chat-mock.speaking {
  animation: speak-glow 0.8s ease-in-out infinite;
  border-color: #ffa940;
}
.chat-mock.speaking::after {
  animation: speak-glow-ring 0.8s ease-in-out infinite;
  opacity: 0.9;
}
@keyframes call-glow {
  0%, 100% { box-shadow: 0 0 20px rgba(245,130,13,0.15), 0 0 60px rgba(245,130,13,0.05); }
  50%      { box-shadow: 0 0 30px rgba(245,130,13,0.3), 0 0 80px rgba(245,130,13,0.1); }
}
@keyframes call-glow-ring {
  0%, 100% { opacity: 0.4; }
  50%      { opacity: 0.7; }
}
@keyframes speak-glow {
  0%, 100% { box-shadow: 0 0 25px rgba(245,130,13,0.3), 0 0 70px rgba(245,130,13,0.15); }
  50%      { box-shadow: 0 0 45px rgba(245,130,13,0.5), 0 0 100px rgba(245,130,13,0.25); }
}
@keyframes speak-glow-ring {
  0%, 100% { opacity: 0.6; }
  50%      { opacity: 1; }
}
.response-badge {
  position: absolute;
  top: -12px; right: 20px;
  background: var(--accent);
  color: #000;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 999px;
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
}
.response-badge.show { opacity: 1; transform: scale(1); }

/* ── INTEGRATIONS ────────────────────────────────────── */
.integrations-bar {
  border-top: 1px solid var(--border);
  padding: 36px 0;
  background: rgba(24, 24, 24, 0.4);
  text-align: center;
}
.integrations-title {
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 24px;
  font-weight: 700;
  font-family: var(--font-display);
}
.integrations-logos {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  align-items: center;
  opacity: 0.5;
  filter: grayscale(100%);
  transition: opacity 0.3s;
}
.integrations-logos:hover { opacity: 0.8; }
.integrations-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 19px;
  letter-spacing: -0.02em;
}

/* ── FOUNDER TRUST BOX ──────────────────────────────── */
.founder-trust-box {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  gap: 20px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}
.founder-img-small {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--border);
  display: flex;
  justify-content: center;
  align-items: center;
}
.founder-img-small img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.founder-trust-text strong {
  display: block;
  color: var(--text);
  font-family: var(--font-display);
  margin-bottom: 4px;
  font-size: 15px;
}
.founder-trust-text p {
  color: var(--muted);
  font-size: 13px;
  font-style: italic;
  line-height: 1.5;
}

/* ── PAIN ────────────────────────────────────────────── */
#pain { padding: 100px 0; border-top: 1px solid var(--border); }
.section-header { text-align: center; margin-bottom: 64px; }
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.15;
}
.section-sub {
  color: var(--muted);
  margin-top: 14px;
  font-size: 17px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.pain-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
}
.pain-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #ff3333, #ff6633);
}
.pain-icon { font-size: 32px; margin-bottom: 16px; }
.pain-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  margin-bottom: 10px;
  color: var(--text);
}
.pain-card p { color: var(--muted); font-size: 15px; line-height: 1.6; }

/* ── HOW IT WORKS ────────────────────────────────────── */
#how {
  padding: 100px 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.steps { display: flex; flex-direction: column; gap: 0; max-width: 760px; margin: 0 auto; }
.step {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 28px;
  align-items: start;
  padding: 40px 0;
  border-bottom: 1px solid var(--border);
  position: relative;
}
.step:last-child { border-bottom: none; }
.step-num {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--bg);
  border: 2px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 20px;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 4px;
}
.step-content h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.step-content p { color: var(--muted); font-size: 16px; }
.step-badge {
  display: inline-block;
  margin-top: 12px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--accent);
  background: rgba(245,130,13,0.1);
  padding: 4px 12px;
  border-radius: 999px;
}

/* ── FEATURES ────────────────────────────────────────── */
#features { padding: 100px 0; }
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 32px;
  transition: border-color 0.25s, transform 0.25s var(--ease);
  cursor: default;
}
.feature-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
}
.feature-icon { font-size: 36px; margin-bottom: 18px; display: block; }
.feature-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 19px;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}
.feature-card p { color: var(--muted); font-size: 15px; line-height: 1.65; }

/* ── DSGVO ──────────────────────────────────────────── */
.dsgvo-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: #22c55e;
  background: rgba(34, 197, 94, 0.08);
  border: 1px solid rgba(34, 197, 94, 0.25);
  padding: 8px 16px;
  border-radius: 999px;
  margin-top: 16px;
}
.dsgvo-badge svg { flex-shrink: 0; }
.dsgvo-card {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.06) 0%, rgba(34, 197, 94, 0.02) 100%);
  border: 1px solid rgba(34, 197, 94, 0.2);
}
.dsgvo-card:hover { border-color: #22c55e !important; }
.dsgvo-card .feature-icon { font-size: 36px; }
.dsgvo-highlight { color: #22c55e; font-weight: 700; }

/* ── ROI CALCULATOR ──────────────────────────────────── */
#roi-calculator {
  padding: 100px 0;
  background: var(--bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.roi-box {
  max-width: 800px;
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 48px;
  display: flex;
  flex-direction: column;
  gap: 36px;
  position: relative;
}
.roi-input-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}
.roi-input-group:last-child { margin-bottom: 0; }
.roi-input-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--text);
}
.roi-val {
  color: var(--accent);
  font-size: 22px;
  font-weight: 700;
  background: rgba(245, 130, 13, 0.1);
  padding: 4px 12px;
  border-radius: 8px;
}
input[type=range] {
  -webkit-appearance: none;
  width: 100%;
  background: transparent;
  margin-top: 6px;
}
input[type=range]:focus { outline: none; }
input[type=range]::-webkit-slider-runnable-track {
  width: 100%;
  height: 8px;
  cursor: pointer;
  background: rgba(255,255,255,0.05);
  border-radius: 4px;
  border: 1px solid var(--border);
}
input[type=range]::-webkit-slider-thumb {
  height: 24px;
  width: 24px;
  border-radius: 50%;
  background: var(--accent);
  cursor: pointer;
  -webkit-appearance: none;
  margin-top: -9px;
  box-shadow: 0 0 16px rgba(245, 130, 13, 0.4);
  transition: transform 0.2s;
}
input[type=range]::-webkit-slider-thumb:hover { transform: scale(1.15); }
.roi-divider { height: 1px; background: var(--border); width: 100%; }
.roi-outputs { display: flex; flex-direction: column; gap: 16px; }
.roi-result-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
  color: var(--muted);
}
.roi-result-item.highlight {
  background: rgba(34, 197, 94, 0.05);
  border: 1px solid rgba(34, 197, 94, 0.2);
  padding: 20px;
  border-radius: 12px;
  color: var(--text);
}
.roi-lost {
  font-size: 22px;
  font-weight: 700;
  font-family: var(--font-display);
  color: #ff4d4d;
}
.roi-won {
  font-size: 26px;
  font-weight: 700;
  font-family: var(--font-display);
  color: #22c55e;
}
.roi-small { font-size: 14px; opacity: 0.6; font-weight: normal; margin-left: 4px; }
.roi-footer {
  text-align: center;
  margin-top: 24px;
  font-size: 18px;
  color: var(--text);
  font-family: var(--font-display);
}
.roi-multiplier {
  color: var(--accent);
  font-size: 28px;
  font-weight: 800;
  display: inline-block;
  margin: 0 4px;
}
.roi-basis {
  font-size: 13px;
  color: var(--muted);
  margin-top: 10px;
  font-weight: normal;
  font-family: var(--font-body);
}

/* ── TESTIMONIALS ────────────────────────────────────── */
#testimonials { padding: 100px 0; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.testimonial {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 32px;
}
.testimonial-quote {
  font-size: 15px;
  color: var(--text);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 24px;
}
.testimonial-quote::before { content: '\201E'; }
.testimonial-quote::after  { content: '"'; }
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.author-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--surface2);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}
.author-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
}
.author-role { font-size: 13px; color: var(--muted); }
.stars { color: var(--accent); font-size: 14px; letter-spacing: 2px; margin-bottom: 14px; }

/* ── PRICING ─────────────────────────────────────────── */
#pricing { padding: 100px 0; border-top: 1px solid var(--border); }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: var(--max);
  margin: 0 auto;
}
.pricing-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 48px 32px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.3s var(--ease), border-color 0.3s;
}
.pricing-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent-dim);
}
.pricing-card.popular {
  border-color: var(--accent);
  background: linear-gradient(180deg, rgba(245,130,13,0.05) 0%, transparent 100%);
  box-shadow: 0 16px 40px rgba(245,130,13,0.08);
}
.pricing-card.popular:hover { border-color: #ff9a2e; }
.pricing-badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #000;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 999px;
  box-shadow: 0 4px 12px rgba(245,130,13,0.3);
  white-space: nowrap;
}
.pricing-name {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.pricing-desc {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 28px;
  min-height: 44px;
}
.pricing-price {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 800;
  color: var(--text);
  line-height: 1;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.pricing-price span {
  font-size: 16px;
  color: var(--muted);
  font-weight: 500;
  letter-spacing: 0;
}
.pricing-setup {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
}
.pricing-features { list-style: none; flex: 1; margin-bottom: 36px; }
.pricing-feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 14px;
  line-height: 1.5;
}
.pricing-feature:last-child { margin-bottom: 0; }
.pricing-check {
  color: var(--accent);
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 1px;
}
.pricing-card:not(.popular) .pricing-check { color: var(--text); }
.pricing-comparison {
  text-align: center;
  font-size: 16px;
  color: var(--text);
  background: rgba(245, 130, 13, 0.08);
  border: 1px solid rgba(245, 130, 13, 0.2);
  padding: 16px 24px;
  border-radius: 12px;
  max-width: 700px;
  margin: 0 auto 36px;
  line-height: 1.6;
}
.pricing-trial-notice {
  text-align: center;
  font-size: 15px;
  color: var(--muted);
  background: rgba(0, 200, 83, 0.08);
  border: 1px solid rgba(0, 200, 83, 0.2);
  padding: 14px 24px;
  border-radius: 12px;
  max-width: 700px;
  margin: -24px auto 36px;
  line-height: 1.6;
}
.pricing-trial-notice strong { color: var(--text); }

/* ── FAQ ─────────────────────────────────────────────── */
#faq {
  padding: 100px 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
}
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 17px;
  cursor: pointer;
  user-select: none;
  gap: 16px;
  transition: color 0.2s;
}
.faq-question:hover { color: var(--accent); }
.faq-icon {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 400;
  transition: transform 0.3s var(--ease), border-color 0.2s, background 0.2s;
  line-height: 1;
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
  border-color: var(--accent);
  background: rgba(245,130,13,0.1);
  color: var(--accent);
}
.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.45s var(--ease), padding 0.3s;
}
.faq-answer-inner {
  padding-bottom: 24px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

/* ── CTA SECTION ─────────────────────────────────────── */
#cta {
  padding: 120px 0;
  border-top: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
#cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 80% at 50% 100%, rgba(245,130,13,0.1) 0%, transparent 60%);
  pointer-events: none;
}
.cta-inner { text-align: center; max-width: 620px; margin: 0 auto; position: relative; }
.cta-inner .section-title { margin-bottom: 16px; }
.cta-inner .section-sub { margin-bottom: 40px; }
.cta-form {
  display: flex;
  gap: 12px;
  max-width: 480px;
  margin: 0 auto 16px;
  flex-wrap: wrap;
}
.cta-input {
  flex: 1;
  min-width: 220px;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  padding: 14px 18px;
  border-radius: var(--radius);
  outline: none;
  transition: border-color 0.2s;
}
.cta-input:focus { border-color: var(--accent); }
.cta-input::placeholder { color: var(--muted); }
.cta-note { color: var(--muted); font-size: 13px; }
#form-success {
  display: none;
  color: #25d366;
  font-family: var(--font-display);
  font-weight: 600;
  margin-top: 16px;
}
#form-error {
  display: none;
  color: #ff4444;
  font-family: var(--font-display);
  font-size: 14px;
  margin-top: 8px;
}

/* ── FOOTER ──────────────────────────────────────────── */
footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 48px 0 32px;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 24px;
}
.footer-logo { display: flex; align-items: center; gap: 10px; }
.footer-links { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-links a {
  font-size: 14px;
  color: var(--muted);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--text); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy { font-size: 13px; color: var(--muted); }

/* ── Legal page content ──────────────────────────────── */
.legal-content {
  padding: 140px 0 80px;
}
.legal-content .container {
  max-width: 800px;
}
.legal-content h1 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 32px;
  letter-spacing: -0.04em;
}
.legal-body {
  color: var(--muted);
  line-height: 1.8;
  font-size: 16px;
}
.legal-body p { margin-bottom: 16px; }
.legal-body strong { color: var(--text); }

/* ── Responsive ──────────────────────────────────────── */
@media (max-width: 1200px) {
  .hero-grid { gap: 40px; }
}
@media (max-width: 1024px) {
  .pricing-grid { grid-template-columns: 1fr; gap: 32px; }
  .pricing-card { padding: 36px 24px; }
  .pricing-badge { font-size: 11px; padding: 5px 14px; top: -12px; }
}
@media (max-width: 768px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-headline { font-size: 2.4rem; }
  .chat-mock { max-width: 420px; }
  .pain-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .roi-box { padding: 32px 24px; }
  .roi-input-header { flex-direction: column; align-items: flex-start; gap: 8px; }
  .roi-result-item { flex-direction: column; align-items: flex-start; gap: 8px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .step { grid-template-columns: 56px 1fr; gap: 16px; }
  .cta-form { flex-direction: column; }
  .cta-input { min-width: unset; width: 100%; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .founder-trust-box { flex-direction: column; text-align: center; gap: 16px; }
  .integrations-logos { gap: 24px; }
}
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-headline { font-size: 2rem; }
  .hero-actions { flex-direction: column; }
  .btn-primary, .btn-secondary { width: 100%; text-align: center; }
  .section-title { font-size: 1.75rem; }
}

/* ── Cookie Banner ───────────────────────────────────── */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9999;
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 20px 24px;
  box-shadow: 0 -8px 40px rgba(0,0,0,0.5);
  transform: translateY(100%);
  opacity: 0;
  transition: transform 0.5s var(--ease), opacity 0.5s var(--ease);
}
.cookie-banner.show {
  transform: translateY(0);
  opacity: 1;
}
.cookie-banner-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.cookie-text strong {
  display: block;
  font-family: var(--font-display);
  font-size: 15px;
  margin-bottom: 4px;
  color: var(--text);
}
.cookie-text p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
  margin: 0;
}
.cookie-text a { color: var(--accent); text-decoration: underline; }
.cookie-text a:hover { color: #ff9a2e; }
.cookie-actions { flex-shrink: 0; }
.cookie-btn {
  background: var(--accent);
  color: #000;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  padding: 10px 28px;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
}
.cookie-btn:hover { background: #ff9a2e; transform: translateY(-1px); }
@media (max-width: 600px) {
  .cookie-banner-inner { flex-direction: column; align-items: flex-start; }
  .cookie-btn { width: 100%; text-align: center; }
}
