/* Reset & base */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: #0a0a0f;
  color: #e5e7eb;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

:root {
  --accent: #8b5cf6;
  --accent-2: #6366f1;
  --accent-3: #3b82f6;
  --bg: #0a0a0f;
  --bg-2: #111116;
  --bg-3: #15151d;
  --border: rgba(255,255,255,0.08);
  --text: #e5e7eb;
  --text-dim: #9ca3af;
  --text-dimmer: #6b7280;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* NAV */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(10,10,15,0.7);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, background .3s;
}
.nav.scrolled { border-bottom-color: var(--border); background: rgba(10,10,15,0.85); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.logo { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 18px; letter-spacing: -0.01em; }
.logo-mark {
  width: 38px; height: 38px; border-radius: 9px;
  background: url('app-icon.svg') center/contain no-repeat;
  box-shadow: 0 0 24px rgba(139,92,246,0.4);
}
.nav-links { display: flex; gap: 28px; }
.nav-links a { color: var(--text-dim); font-size: 14px; font-weight: 500; transition: color .2s; }
.nav-links a:hover { color: var(--text); }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 22px; border-radius: 10px;
  font-weight: 600; font-size: 15px; letter-spacing: -0.01em;
  cursor: pointer; border: 1px solid transparent;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
  white-space: nowrap;
}
.btn-sm { padding: 8px 16px; font-size: 14px; border-radius: 8px; }
.btn-lg { padding: 16px 28px; font-size: 16px; }
.btn-block { width: 100%; }
.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: white;
  box-shadow: 0 8px 30px rgba(139,92,246,0.35);
}
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 12px 36px rgba(139,92,246,0.5); }
.btn-ghost {
  background: transparent; color: var(--text);
  border-color: var(--border);
}
.btn-ghost:hover { background: rgba(255,255,255,0.05); }
.btn-disabled {
  opacity: 0.55; cursor: not-allowed; pointer-events: none;
}
.btn-disabled:hover { background: transparent; }

/* HERO */
.hero {
  position: relative;
  padding: 120px 0 100px;
  overflow: hidden;
  text-align: center;
}
.bg-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  pointer-events: none;
}
.bg-glow {
  position: absolute; top: -20%; left: 50%; transform: translateX(-50%);
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(139,92,246,0.25), transparent 60%);
  filter: blur(60px);
  pointer-events: none;
}
.hero-inner { position: relative; z-index: 1; }
.badge {
  display: inline-block; padding: 6px 16px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 100px;
  font-size: 11px; font-weight: 600; color: var(--text-dim);
  letter-spacing: 0.18em; text-transform: uppercase;
  margin-bottom: 28px;
}
h1 {
  font-size: clamp(40px, 7vw, 76px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}
.gradient {
  background: linear-gradient(90deg, #3b82f6 0%, #8b5cf6 50%, #ec4899 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.hero-sub {
  font-size: clamp(16px, 2vw, 19px);
  color: var(--text-dim);
  max-width: 680px; margin: 0 auto 40px;
}
.hero-cta {
  display: flex; flex-direction: row; align-items: center; justify-content: center;
  gap: 18px; flex-wrap: wrap;
}
.hero-hint { color: var(--text-dimmer); font-size: 13px; margin-top: 18px; }
.hint { color: var(--text-dimmer); font-size: 13px; }

/* SECTIONS */
.section { padding: 100px 0; position: relative; }
.section-alt { background: var(--bg-2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.section-head { text-align: center; max-width: 680px; margin: 0 auto 64px; }
.section-head h2 {
  font-size: clamp(30px, 4.5vw, 46px);
  font-weight: 700; letter-spacing: -0.02em; line-height: 1.15;
  margin-bottom: 16px;
}
.section-head p { color: var(--text-dim); font-size: 17px; }

/* GRID / CARDS */
.grid { display: grid; gap: 20px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
}
.card:hover {
  transform: translateY(-3px);
  border-color: rgba(139,92,246,0.3);
  background: var(--bg-3);
}
.card-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: linear-gradient(135deg, rgba(139,92,246,0.2), rgba(59,130,246,0.2));
  color: #c4b5fd;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.card-icon svg { width: 22px; height: 22px; }
.card h3 { font-size: 19px; font-weight: 600; margin-bottom: 10px; letter-spacing: -0.01em; }
.card p { color: var(--text-dim); font-size: 15px; }

/* SCREENSHOTS */
.screens {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 20px;
  perspective: 1200px;
}
/* Features-mit-Mocks-Grid (6 gleich grosse Cards) */
.screens-grid { grid-template-columns: repeat(3, 1fr); gap: 32px; }
.screen-card { display: flex; flex-direction: column; gap: 16px; }
.screen-card .screen { transition: transform .3s ease, box-shadow .3s ease; }
.screen-card:hover .screen { transform: translateY(-4px); box-shadow: 0 26px 70px rgba(0,0,0,0.55); }
.screen-card h3 { font-size: 18px; font-weight: 600; margin-top: 2px; }
.screen-card p { color: var(--text-dim); font-size: 14px; line-height: 1.55; }
.screen {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 16/10;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  transition: transform .4s ease;
}
.screen:hover { transform: translateY(-6px); }
.screen-bar {
  height: 28px; background: #1a1a22; display: flex; align-items: center; padding: 0 12px; gap: 6px;
  border-bottom: 1px solid var(--border);
}
.screen-bar span { width: 10px; height: 10px; border-radius: 50%; background: #3a3a44; }
.screen-bar span:first-child { background: #ff5f57; }
.screen-bar span:nth-child(2) { background: #febc2e; }
.screen-bar span:nth-child(3) { background: #28c840; }
.screen-body { padding: 16px; display: flex; gap: 12px; height: calc(100% - 28px); }

/* Screen 1: dashboard mock */
.screen-1 .screen-body { display: flex; }
.mock-sidebar { width: 60px; background: #1a1a22; border-radius: 6px; flex-shrink: 0; }
.mock-main { flex: 1; display: flex; flex-direction: column; gap: 10px; }
.mock-row { height: 32px; background: #1a1a22; border-radius: 6px; }
.mock-row-lg { height: 40px; }
.mock-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.mock-tile { height: 50px; background: linear-gradient(135deg, rgba(139,92,246,0.2), rgba(59,130,246,0.15)); border-radius: 6px; }
.mock-gantt { flex: 1; background: #14141c; border-radius: 6px; padding: 14px; display: flex; flex-direction: column; gap: 8px; justify-content: center; position: relative; }
.mock-bar { height: 10px; background: linear-gradient(90deg, var(--accent-3), var(--accent)); border-radius: 4px; position: relative; }

/* Screen 2: calendar mock */
.screen-2 .screen-body { flex-direction: column; }
.mock-cal { width: 100%; height: 100%; display: flex; flex-direction: column; gap: 10px; }
.mock-cal-head { height: 30px; background: #1a1a22; border-radius: 6px; }
.mock-cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; flex: 1; }
.mock-cal-grid > div { background: #14141c; border-radius: 4px; }
.mock-cal-grid > div.on { background: linear-gradient(135deg, var(--accent), var(--accent-2)); box-shadow: 0 0 12px rgba(139,92,246,0.4); }

/* Screen 3: list mock */
.screen-3 .screen-body { flex-direction: column; }
.mock-list { width: 100%; display: flex; flex-direction: column; gap: 8px; }
.mock-item { height: 28px; background: #14141c; border-radius: 6px; position: relative; }
.mock-item::before { content: ''; position: absolute; left: 8px; top: 50%; transform: translateY(-50%); width: 16px; height: 16px; border-radius: 50%; background: linear-gradient(135deg, var(--accent), var(--accent-3)); }
/* CRM-Variante mit blau-pinkem Avatar */
.mock-list-crm .mock-item::before { background: linear-gradient(135deg, #3b82f6, #ec4899); }

/* Shotlist-Mock: 3x2 Kachel-Grid */
.mock-shots { flex: 1; display: grid; grid-template-columns: repeat(3, 1fr); grid-template-rows: repeat(2, 1fr); gap: 8px; }
.mock-shot { background: linear-gradient(135deg, rgba(139,92,246,0.25), rgba(59,130,246,0.18)); border-radius: 6px; position: relative; overflow: hidden; }
.mock-shot::after { content: ''; position: absolute; left: 6px; right: 6px; bottom: 6px; height: 4px; background: rgba(255,255,255,0.2); border-radius: 2px; }
.mock-shot:nth-child(2n)::after { background: rgba(255,255,255,0.35); }

/* Budget-Mock: horizontale Balken */
.mock-budget { flex: 1; display: flex; flex-direction: column; gap: 12px; justify-content: center; }
.mock-brow { display: flex; align-items: center; gap: 10px; }
.mock-blabel { width: 40px; height: 8px; background: #1a1a22; border-radius: 4px; flex-shrink: 0; }
.mock-bar-h { height: 10px; display: block; border-radius: 4px; }

/* FEATURES BENTO: links 2 gross (untereinander), rechts 3 klein (aufgereiht) */
.features-bento {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(0, 1fr);
  gap: 28px;
  align-items: stretch;
}
.features-col { display: flex; flex-direction: column; justify-content: space-between; gap: 22px; }
.features-col-big { gap: 24px; }
.features-col-small { gap: 16px; }

/* Feature-Card: Mock links, Text rechts — ohne Box */
.feature-card {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 1fr);
  gap: 32px;
  align-items: stretch;
  background: none;
  border: none;
  border-radius: 0;
  padding: 0;
  transition: transform .25s ease;
}
.feature-card:hover { transform: translateY(-2px); }
.feature-big { flex: 1; }
.feature-small { }
.feature-card .screen {
  width: 100%;
  aspect-ratio: 16 / 10;
  box-shadow: 0 14px 40px rgba(0,0,0,0.45);
}
.feature-small .screen { aspect-ratio: 16 / 10; }

/* Text als Block — größerer Fließtext schließt Lücke zur Überschrift */
.feature-text {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 14px;
  min-height: 0;
  padding-top: 8px;
}
.feature-text h3 {
  font-size: clamp(26px, 2.6vw, 34px);
  font-weight: 700; letter-spacing: -0.015em;
  margin: 0; line-height: 1.15;
}
.feature-text p { color: var(--text-dim); font-size: 19px; line-height: 1.6; margin: 0; }
.feature-small .feature-text { gap: 12px; }
.feature-small .feature-text h3 { font-size: clamp(20px, 1.8vw, 25px); line-height: 1.2; }
.feature-small .feature-text p { font-size: 16px; line-height: 1.55; }

.feature-card .screen-body { padding: 12px; gap: 8px; overflow: hidden; }

/* === MOCK: SHOTLIST === */
.mock-shotlist {
  flex: 1; display: flex; flex-direction: column; gap: 4px;
  min-height: 0;
}
.sl-row {
  display: grid;
  grid-template-columns: 24px 34px 1fr 44px;
  align-items: center;
  gap: 8px;
  background: #14141c;
  border: 1px solid rgba(255,255,255,0.04);
  border-radius: 5px;
  padding: 6px 8px;
  min-height: 26px;
}
.sl-num {
  font-size: 10px; font-weight: 800;
  color: #c4b5fd; letter-spacing: 0.06em;
  font-variant-numeric: tabular-nums;
}
.sl-cam {
  font-size: 9px; font-weight: 700;
  background: rgba(139,92,246,0.18);
  border: 1px solid rgba(139,92,246,0.3);
  color: #c4b5fd;
  padding: 2px 5px; border-radius: 3px;
  text-align: center; letter-spacing: 0.05em;
}
.sl-desc { flex: 1; }
.sl-line {
  display: block; height: 7px;
  background: #2a2a34; border-radius: 3px; width: 85%;
}
.sl-line-short { width: 55%; }
.sl-tag {
  font-size: 9px; font-weight: 700;
  padding: 3px 6px; border-radius: 3px;
  text-align: center; letter-spacing: 0.03em;
}
.sl-tag-a { background: rgba(59,130,246,0.2); color: #93c5fd; border: 1px solid rgba(59,130,246,0.3); }
.sl-tag-b { background: rgba(139,92,246,0.2); color: #c4b5fd; border: 1px solid rgba(139,92,246,0.3); }
.sl-tag-c { background: rgba(236,72,153,0.2); color: #f9a8d4; border: 1px solid rgba(236,72,153,0.3); }

/* === MOCK: KALKULATION === */
.mock-calc {
  flex: 1; display: flex; flex-direction: column;
  gap: 3px; min-height: 0;
}
.calc-head, .calc-row, .calc-sum {
  display: grid;
  grid-template-columns: 1.3fr 0.6fr 0.7fr 1fr;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  font-size: 11px;
}
.calc-head {
  color: var(--text-dimmer); font-weight: 700;
  letter-spacing: 0.05em; text-transform: uppercase;
  font-size: 9px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 6px;
}
.calc-row {
  background: #14141c;
  border-radius: 4px;
  color: var(--text);
}
.calc-row > span:nth-child(2),
.calc-row > span:nth-child(3),
.calc-head > span:nth-child(2),
.calc-head > span:nth-child(3) { text-align: right; font-variant-numeric: tabular-nums; }
.calc-val {
  text-align: right;
  font-weight: 700;
  color: #c4b5fd;
  font-variant-numeric: tabular-nums;
}
.calc-sum {
  margin-top: 4px;
  grid-template-columns: 1fr auto;
  padding: 10px 10px 4px;
  border-top: 1px solid var(--border);
  font-size: 13px;
  font-weight: 700;
}
.calc-total {
  color: transparent;
  background: linear-gradient(90deg, #3b82f6, #8b5cf6, #ec4899);
  -webkit-background-clip: text;
  background-clip: text;
  font-size: 15px; font-weight: 800;
  font-variant-numeric: tabular-nums;
}

/* === MOCK: GANTT (mehrere Zeilen) === */
.mock-gantt-lg {
  flex: 1; display: flex; flex-direction: column;
  gap: 5px; justify-content: center; min-height: 0;
}
.g-row { display: flex; align-items: center; gap: 8px; }
.g-lbl {
  width: 24px; height: 5px; background: #1a1a22;
  border-radius: 2px; flex-shrink: 0;
}
.g-track {
  flex: 1; height: 10px; background: #14141c;
  border-radius: 3px; position: relative;
}
.g-bar {
  position: absolute; top: 1px; bottom: 1px;
  background: linear-gradient(90deg, var(--accent-3), var(--accent));
  border-radius: 2px;
}
.g-bar-b { background: linear-gradient(90deg, var(--accent), var(--accent-2)); }
.g-bar-c { background: linear-gradient(90deg, var(--accent-3), #ec4899); }

/* === MOCK: CAST-PROFIL === */
.mock-profile {
  flex: 1;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: center;
  min-height: 0;
}
.profile-img {
  width: 72px; height: 92px;
  border-radius: 6px;
  background:
    linear-gradient(135deg, rgba(139,92,246,0.3), rgba(59,130,246,0.25)),
    radial-gradient(circle at 50% 35%, rgba(255,255,255,0.25), transparent 55%);
  background-blend-mode: screen;
  border: 1px solid rgba(255,255,255,0.08);
  position: relative;
  overflow: hidden;
}
.profile-img::after {
  content: ''; position: absolute;
  left: 50%; top: 30%; transform: translateX(-50%);
  width: 24px; height: 24px; border-radius: 50%;
  background: rgba(255,255,255,0.2);
}
.profile-img::before {
  content: ''; position: absolute;
  left: 20%; right: 20%; bottom: 0;
  height: 40%; border-radius: 40% 40% 0 0;
  background: rgba(255,255,255,0.15);
}
.profile-info {
  display: flex; flex-direction: column; gap: 6px;
  min-width: 0;
}
.profile-name {
  display: block; height: 10px; width: 75%;
  background: #3a3a48; border-radius: 3px;
}
.profile-role {
  display: block; height: 7px; width: 55%;
  background: #24242e; border-radius: 3px;
}
.profile-meta {
  display: block; height: 6px; width: 40%;
  background: #1c1c24; border-radius: 3px;
  margin-top: 2px;
}
.profile-tags { display: flex; gap: 4px; margin-top: 4px; }
.profile-tag {
  display: block; height: 14px; width: 32px;
  border-radius: 3px;
  background: linear-gradient(135deg, rgba(139,92,246,0.35), rgba(99,102,241,0.35));
  border: 1px solid rgba(139,92,246,0.3);
}
.profile-tag:last-child {
  background: linear-gradient(135deg, rgba(59,130,246,0.35), rgba(236,72,153,0.35));
  border-color: rgba(236,72,153,0.3);
}

/* === MOCK: CRM-LISTE === */
.mock-crm {
  flex: 1; display: flex; flex-direction: column;
  gap: 5px; justify-content: flex-start; min-height: 0;
  overflow: hidden;
}
.crm-row {
  display: flex; align-items: center; gap: 8px;
  background: #14141c;
  border: 1px solid rgba(255,255,255,0.04);
  border-radius: 5px;
  padding: 6px 8px;
  min-height: 28px;
}
.crm-av {
  width: 20px; height: 20px; border-radius: 50%;
  background: linear-gradient(135deg, #3b82f6, #ec4899);
  flex-shrink: 0;
  box-shadow: 0 0 6px rgba(59,130,246,0.25);
}
.crm-info {
  flex: 1; display: flex; flex-direction: column; gap: 3px;
  min-width: 0;
}
.crm-name {
  display: block; height: 6px; width: 60%;
  background: #2a2a34; border-radius: 2px;
}
.crm-sub {
  display: block; height: 4px; width: 38%;
  background: #1c1c24; border-radius: 2px;
}
.crm-tag {
  display: block; width: 32px; height: 12px;
  border-radius: 3px;
  background: linear-gradient(135deg, rgba(59,130,246,0.4), rgba(236,72,153,0.4));
  border: 1px solid rgba(236,72,153,0.25);
  flex-shrink: 0;
}

/* PRICING */
.pricing {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}
.price-card {
  position: relative;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px 32px;
}
.price-card-main {
  border-color: rgba(139,92,246,0.4);
  background: linear-gradient(180deg, rgba(139,92,246,0.06), transparent 60%), var(--bg-2);
  box-shadow: 0 20px 60px -20px rgba(139,92,246,0.3);
}
.price-card-soon { opacity: 0.85; }
.price-tag {
  position: absolute; top: -12px; right: 24px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: white; padding: 4px 12px; border-radius: 100px;
  font-size: 12px; font-weight: 600;
}
.price-tag-soon { background: #374151; }
.price-card h3 { font-size: 20px; font-weight: 600; margin-bottom: 12px; }
.price { display: flex; align-items: baseline; gap: 10px; margin-bottom: 12px; flex-wrap: wrap; }
.price-amount { font-size: 42px; font-weight: 700; letter-spacing: -0.02em; }
.price-unit { color: var(--text-dim); font-size: 14px; }
.price-strike {
  font-size: 24px;
  font-weight: 700;
  color: #ef4444;
  text-decoration: line-through;
  text-decoration-color: #ef4444;
  text-decoration-thickness: 2px;
  letter-spacing: -0.01em;
}
.price-promo {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: #f59e0b;
  background: rgba(245,158,11,0.12);
  border: 1px solid rgba(245,158,11,0.3);
  border-radius: 8px;
  padding: 6px 12px;
  margin-bottom: 24px;
}
.price-features { list-style: none; margin-bottom: 28px; }
.price-features li {
  padding: 8px 0;
  color: var(--text-dim);
  font-size: 15px;
  position: relative;
  padding-left: 24px;
  border-bottom: 1px solid var(--border);
}
.price-features li:last-child { border-bottom: none; }
.price-features li::before {
  content: '✓';
  position: absolute; left: 0; top: 8px;
  color: var(--accent);
  font-weight: 700;
}
.price-note {
  font-size: 12px;
  color: var(--text-dim);
  margin-top: 10px;
  text-align: center;
  opacity: 0.7;
}

/* Pricing FAQ */
.pricing-faq {
  max-width: 900px;
  margin: 40px auto 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.pricing-faq details {
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--bg-2);
  padding: 14px 18px;
  transition: border-color 0.2s;
}
.pricing-faq details[open] {
  border-color: rgba(139,92,246,0.3);
}
.pricing-faq summary {
  cursor: pointer;
  font-weight: 500;
  font-size: 14px;
  list-style: none;
  position: relative;
  padding-right: 24px;
  user-select: none;
}
.pricing-faq summary::-webkit-details-marker { display: none; }
.pricing-faq summary::after {
  content: '+';
  position: absolute;
  right: 0; top: 50%;
  transform: translateY(-50%);
  color: var(--accent);
  font-size: 18px;
  transition: transform 0.2s;
}
.pricing-faq details[open] summary::after { content: '−'; }
.pricing-faq details p {
  margin-top: 10px;
  font-size: 13px;
  color: var(--text-dim);
  line-height: 1.55;
}

/* CTA */
.cta-section {
  background: radial-gradient(ellipse at center, rgba(139,92,246,0.1), transparent 60%);
  text-align: center;
}
.cta-inner { max-width: 640px; margin: 0 auto; }
.cta-inner h2 { font-size: clamp(28px, 4vw, 40px); font-weight: 700; margin-bottom: 12px; letter-spacing: -0.02em; }
.cta-inner p { color: var(--text-dim); font-size: 17px; margin-bottom: 32px; }

/* FOOTER */
.footer { background: var(--bg-2); border-top: 1px solid var(--border); padding: 60px 0 24px; }
.footer-inner { display: grid; grid-template-columns: 1fr 2fr; gap: 48px; margin-bottom: 48px; }
.footer-brand p { color: var(--text-dim); margin-top: 12px; font-size: 14px; }
.footer-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.footer-cols h4 { font-size: 14px; font-weight: 600; margin-bottom: 14px; color: var(--text); }
.footer-cols a { display: block; color: var(--text-dim); font-size: 14px; padding: 4px 0; transition: color .2s; }
.footer-cols a:hover { color: var(--text); }
.footer-bottom { padding-top: 24px; border-top: 1px solid var(--border); color: var(--text-dimmer); font-size: 13px; text-align: center; }

/* REVEAL ANIMATION */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* RESPONSIVE */
@media (max-width: 900px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .screens { grid-template-columns: 1fr 1fr; }
  .screen-1 { grid-column: span 2; }
  .screens-grid { grid-template-columns: repeat(2, 1fr); }
  .screens-grid .screen-1 { grid-column: span 1; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .pricing { grid-template-columns: 1fr; }
}
@media (max-width: 1080px) {
  .features-bento { grid-template-columns: 1fr; gap: 22px; }
  .features-col-big { flex-direction: row; gap: 18px; }
  .features-col-big .feature-card { flex: 1; }
}
@media (max-width: 820px) {
  .features-col-big { flex-direction: column; }
  .feature-card { grid-template-columns: 1fr; gap: 16px; }
  .feature-text { padding: 0; }
}
@media (max-width: 640px) {
  .nav-links { display: none; }
  .hero { padding: 80px 0 70px; }
  .section { padding: 70px 0; }
  .grid-3 { grid-template-columns: 1fr; }
  .screens { grid-template-columns: 1fr; }
  .screen-1 { grid-column: span 1; }
  .screens-grid { grid-template-columns: 1fr; }
  .footer-cols { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .features-stack { gap: 32px; }
}
