/* crewgo – Vorstellungsseite. Gleicher Aufbau wie die Mitfeiern-Seite, Farben und Formen wie in der App (app/public/assets/css/app.css). */

:root {
  --bg: #f5f8fa;
  --bg-soft: #e8eff3;
  --surface: #ffffff;
  --ink: #10222c;
  --ink-soft: #2c4653;
  --muted: #5d7480;
  --line: #dce6ea;
  --primary: #1f6f8b;
  --primary-hover: #185a72;
  --primary-soft: #e2f0f5;
  --accent: #f2a33a;
  --accent-soft: #fdf0dc;
  --night: #0f2b3a;
  --success: #1f8a5b;
  --success-soft: #e2f4ea;
  --info: #3a5bc7;
  --info-soft: #e6ecfb;
  --radius-s: 10px;
  --radius: 16px;
  --radius-l: 28px;
  --shadow-s: 0 1px 2px rgba(31, 27, 46, .06), 0 1px 1px rgba(31, 27, 46, .04);
  --shadow: 0 10px 30px -12px rgba(31, 27, 46, .22), 0 2px 6px rgba(31, 27, 46, .05);
  --shadow-l: 0 40px 80px -30px rgba(31, 27, 46, .45);
  --font: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-display: ui-rounded, "SF Pro Rounded", system-ui, -apple-system, "Segoe UI", sans-serif;
  --grad: linear-gradient(120deg, #0f2b3a 0%, #1f6f8b 55%, #3fb0a2 100%);
  color-scheme: light dark;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #0c1a22;
    --bg-soft: #122530;
    --surface: #152c38;
    --ink: #eef5f8;
    --ink-soft: #cfe0e7;
    --muted: #94aeba;
    --line: #23404e;
    --primary: #57b6d4;
    --primary-hover: #7ccbe4;
    --primary-soft: #14313d;
    --accent-soft: #3a2d19;
    --success: #4cc790;
    --success-soft: #17302a;
    --info: #8aa4ff;
    --info-soft: #1d2440;
    --shadow: 0 10px 30px -12px rgba(0, 0, 0, .6);
    --shadow-l: 0 40px 80px -30px rgba(0, 0, 0, .8);
  }
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
[id] { scroll-margin-top: 84px; }
body { margin: 0; font-family: var(--font); font-size: 17px; line-height: 1.6; color: var(--ink); background: var(--bg); overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { color: var(--primary); }
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.15; margin: 0 0 .5em; letter-spacing: -.01em; }
h2 { font-size: clamp(1.9rem, 4.2vw, 2.8rem); }
h3 { font-size: 1.35rem; }
h4 { font-size: 1.05rem; margin-bottom: .35em; }
p { margin: 0 0 1em; overflow-wrap: anywhere; }
.i { width: 1.15em; height: 1.15em; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; flex: none; vertical-align: -.2em; }
.sr { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.skip { position: absolute; left: 1rem; top: -3rem; background: var(--ink); color: var(--bg); padding: .5rem 1rem; border-radius: var(--radius-s); z-index: 100; }
.skip:focus { top: 1rem; }
:focus-visible { outline: 3px solid var(--info); outline-offset: 3px; border-radius: 6px; }

.wrap { width: 100%; max-width: 1160px; margin-inline: auto; padding-inline: 20px; }
.wrap.narrow { max-width: 820px; }
.center { text-align: center; }
.section { padding-block: clamp(4rem, 9vw, 7rem); }
.section-soft { background: var(--bg-soft); }
.section-lead { font-size: 1.15rem; color: var(--muted); max-width: 680px; }
.section-lead.center { margin-inline: auto; margin-bottom: 3rem; }
.eyebrow { display: inline-flex; align-items: center; gap: .45rem; font-weight: 700; font-size: .85rem; letter-spacing: .08em; text-transform: uppercase; color: var(--primary); margin-bottom: .8rem; }
.eyebrow.center { display: flex; justify-content: center; }
.eyebrow.light { color: var(--accent); }

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: .5rem; min-height: 46px; padding: .7rem 1.25rem; border-radius: 999px; font-weight: 650; font-size: 1rem; text-decoration: none; border: 1.5px solid transparent; cursor: pointer; transition: transform .15s ease, background .15s ease, box-shadow .15s ease; white-space: nowrap; }
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--primary); color: #fff; box-shadow: 0 10px 24px -10px rgba(31, 111, 139, .7); }
.btn-primary:hover { background: var(--primary-hover); }
.btn-ghost { background: var(--surface); color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--ink-soft); }
.btn-light { background: #fff; color: var(--night); }
.btn-large { min-height: 54px; padding-inline: 1.6rem; font-size: 1.05rem; }
.btn-small { min-height: 44px; padding: .45rem 1rem; font-size: .95rem; }
.btn-block { width: 100%; }

/* Top bar */
.topbar { position: sticky; top: 0; z-index: 50; background: color-mix(in srgb, var(--bg) 82%, transparent); backdrop-filter: saturate(1.4) blur(14px); -webkit-backdrop-filter: saturate(1.4) blur(14px); border-bottom: 1px solid transparent; transition: border-color .2s; }
.topbar.scrolled { border-bottom-color: var(--line); }
.topbar-inner { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.brand { display: inline-flex; align-items: center; gap: .6rem; font-family: var(--font-display); font-weight: 800; font-size: 1.3rem; color: var(--ink); text-decoration: none; }
.brand img { border-radius: 10px; }
.nav { display: flex; align-items: center; gap: 1.6rem; }
.nav a:not(.btn) { color: var(--ink-soft); text-decoration: none; font-weight: 550; font-size: .98rem; }
.nav a:not(.btn):hover { color: var(--primary); }
.nav-toggle { display: none; background: none; border: 0; color: var(--ink); width: 46px; height: 46px; border-radius: 12px; font-size: 1.35rem; cursor: pointer; }

@media (max-width: 860px) {
  .nav-toggle { display: inline-grid; place-items: center; }
  .nav { position: absolute; top: 68px; left: 0; right: 0; flex-direction: column; align-items: stretch; gap: 0; padding: .5rem 20px 1.2rem; background: var(--bg); border-bottom: 1px solid var(--line); box-shadow: var(--shadow); display: none; }
  .nav.open { display: flex; }
  .nav a:not(.btn) { padding: .8rem 0; border-bottom: 1px solid var(--line); }
  .nav-cta { margin-top: 1rem; }
}

/* Hero */
.hero { position: relative; overflow: hidden; padding-block: clamp(3rem, 7vw, 6rem) clamp(4rem, 8vw, 7rem); }
.hero-glow { position: absolute; inset: -30% -10% auto auto; width: 70vw; height: 70vw; max-width: 900px; max-height: 900px; background: radial-gradient(circle at 60% 40%, rgba(63, 176, 162, .35), rgba(31, 111, 139, .18) 40%, transparent 68%); pointer-events: none; }
.hero-grid { position: relative; display: grid; grid-template-columns: 1.05fr 1fr; gap: 3rem; align-items: center; }
.hero h1 { font-size: clamp(2.7rem, 7vw, 4.6rem); font-weight: 850; letter-spacing: -.025em; margin-bottom: .35em; }
.grad { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
@media (prefers-color-scheme: dark) { .grad { background: linear-gradient(120deg, #7ccbe4, #3fb0a2 45%, #f2a33a); -webkit-background-clip: text; background-clip: text; } }
.lead { font-size: clamp(1.1rem, 2.2vw, 1.28rem); color: var(--ink-soft); max-width: 560px; }
.cta-row { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.8rem; }
.trust { list-style: none; padding: 0; margin: 2rem 0 0; display: flex; flex-wrap: wrap; gap: .6rem 1.4rem; color: var(--muted); font-size: .95rem; font-weight: 550; }
.trust li { display: inline-flex; align-items: center; gap: .4rem; }
.trust .i { color: var(--success); }

/* Hero visual: phones */
.hero-visual { position: relative; height: 600px; }
.phone { position: absolute; width: 280px; height: 570px; border-radius: 44px; background: #16131f; padding: 11px; box-shadow: var(--shadow-l), inset 0 0 0 2px #2c2838; }
.phone::before { content: ""; position: absolute; top: 20px; left: 50%; transform: translateX(-50%); width: 84px; height: 24px; border-radius: 20px; background: #16131f; z-index: 3; }
.screen { position: relative; height: 100%; border-radius: 34px; overflow: hidden; background: #fbf7f2; color: #1f1b2e; font-size: 12.5px; line-height: 1.35; display: flex; flex-direction: column; gap: 9px; padding-bottom: 60px; }
.phone-back { left: -3%; top: 10px; transform: rotate(-6deg); }
.phone-front { right: -4%; top: 40px; transform: rotate(5deg); }
.app-hero { background: var(--grad); color: #fff; padding: 52px 16px 18px; display: flex; flex-direction: column; gap: 3px; }
.app-hero strong { font-family: var(--font-display); font-size: 21px; }
.app-pill { align-self: flex-start; background: rgba(255,255,255,.2); padding: 2px 9px; border-radius: 99px; font-size: 11px; font-weight: 600; }
.app-sub { opacity: .9; }
.app-card { background: #fff; margin-inline: 11px; border-radius: 14px; padding: 10px 12px; box-shadow: 0 1px 2px rgba(31,27,46,.07); border: 1px solid #efe7dd; }
.app-card.slim { display: flex; align-items: center; gap: 8px; font-weight: 600; color: #3d3650; }
.app-card.slim .i { color: #d4472e; }
.app-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 6px; }
.app-badge { background: #d4472e; color: #fff; border-radius: 99px; font-size: 10px; font-weight: 700; padding: 0 7px; }
.app-seg { display: grid; grid-template-columns: repeat(3, 1fr); background: #f4ede4; border-radius: 10px; padding: 3px; gap: 3px; text-align: center; font-weight: 600; color: #6b6478; }
.app-seg span { padding: 5px 0; border-radius: 8px; }
.app-seg .on { background: #1f8a5b; color: #fff; }
.app-meta { color: #6b6478; margin-top: 6px; font-size: 11.5px; }
.app-line { display: grid; grid-template-columns: 1fr 58px 26px; align-items: center; gap: 8px; padding: 3px 0; }
.app-line em { font-style: normal; color: #6b6478; font-size: 11px; text-align: right; }
.bar { height: 6px; border-radius: 9px; background: #f4ede4; overflow: hidden; }
.bar i { display: block; height: 100%; background: #f2a33a; border-radius: 9px; }
.app-task { display: flex; align-items: center; gap: 8px; padding: 4px 0; }
.app-task em { margin-left: auto; font-style: normal; color: #6b6478; font-size: 11px; }
.tick { width: 16px; height: 16px; border-radius: 6px; border: 2px solid #d8cdc0; flex: none; }
.app-task.done { color: #6b6478; text-decoration: line-through; }
.app-task.done .tick { background: #1f8a5b; border-color: #1f8a5b; box-shadow: inset 0 0 0 2px #fff; }
.app-tabs { position: absolute; left: 0; right: 0; bottom: 0; height: 54px; background: #fff; border-top: 1px solid #efe7dd; display: grid; grid-template-columns: repeat(4, 1fr); align-items: center; text-align: center; font-size: 10.5px; color: #6b6478; font-weight: 600; }
.app-tabs .on { color: #d4472e; }

.phone-front .screen { background: #1c1828; color: #f4efe8; padding: 48px 12px 14px; gap: 12px; }
.live-head { display: flex; align-items: center; gap: 8px; font-family: var(--font-display); font-weight: 700; font-size: 17px; }
.live-dot { width: 9px; height: 9px; border-radius: 50%; background: #ff5a4a; box-shadow: 0 0 0 0 rgba(255, 90, 74, .7); animation: pulse 1.8s infinite; display: inline-block; }
@keyframes pulse { 70% { box-shadow: 0 0 0 9px rgba(255, 90, 74, 0); } 100% { box-shadow: 0 0 0 0 rgba(255, 90, 74, 0); } }
.capture-row { display: grid; grid-template-columns: 1.5fr 1fr; gap: 8px; }
.cap { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px; height: 76px; border-radius: 16px; background: #2a2439; font-weight: 700; }
.cap .i { width: 24px; height: 24px; }
.cap-main { background: linear-gradient(135deg, #d4472e, #f2a33a); color: #fff; }
.photo-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 5px; }
.ph { aspect-ratio: 1; border-radius: 10px; display: grid; place-items: center; font-size: 26px; }
.ph1 { background: linear-gradient(135deg, #f7c59f, #d4472e); }
.ph2 { background: linear-gradient(135deg, #ffd3e0, #b85c8a); }
.ph3 { background: linear-gradient(135deg, #7f7fd5, #2b2550); }
.ph4 { background: linear-gradient(135deg, #f2a33a, #8e3b5a); }
.ph5 { background: linear-gradient(135deg, #9be3c4, #2f7f78); }
.ph6 { background: linear-gradient(135deg, #ffe29a, #f2a33a); }
.ph.new { animation: pop 3.2s ease-in-out infinite; }
@keyframes pop { 0%, 55% { transform: scale(1); } 65% { transform: scale(1.12); } 75%, 100% { transform: scale(1); } }
.phone-front .app-card.slim { background: #2a2439; border-color: #3a3350; color: #f4efe8; margin: 0; }
.phone-front .app-card.slim .i { color: #f2a33a; }
.toast { margin-top: auto; background: #fff; color: #1f1b2e; border-radius: 14px; padding: 9px 12px; box-shadow: 0 10px 20px -8px rgba(0,0,0,.5); animation: toast 6s ease-in-out infinite; }
@keyframes toast { 0%, 8% { opacity: 0; transform: translateY(10px); } 15%, 80% { opacity: 1; transform: none; } 90%, 100% { opacity: 0; transform: translateY(10px); } }

.float-chip { position: absolute; display: inline-flex; align-items: center; gap: .5rem; background: var(--surface); color: var(--ink); border: 1px solid var(--line); border-radius: 999px; padding: .55rem 1rem; font-size: .9rem; font-weight: 650; box-shadow: var(--shadow); animation: float 6s ease-in-out infinite; white-space: nowrap; z-index: 4; }
.float-chip .i { color: var(--primary); }
.chip-a { left: -8%; bottom: 70px; }
.chip-b { right: -2%; top: 0; animation-delay: -3s; }
@keyframes float { 50% { transform: translateY(-10px); } }

@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { text-align: center; }
  .lead { margin-inline: auto; }
  .cta-row, .trust { justify-content: center; }
  .hero-visual { max-width: 560px; width: 100%; margin-inline: auto; }
}
@media (max-width: 560px) {
  .hero-visual { height: 480px; }
  .phone { transform-origin: top center; }
  .phone-back { left: -12%; transform: scale(.78) rotate(-6deg); }
  .phone-front { right: -12%; top: 30px; transform: scale(.78) rotate(5deg); }
  .chip-a { left: 0; bottom: 20px; }
  .chip-b { right: 0; top: -6px; }
  .btn-large { width: 100%; }
}
@media (max-width: 400px) {
  .phone-back { left: -22%; }
  .phone-front { right: -22%; }
}

/* Pain points */
.pains { padding-top: 2rem; }
.pain-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin-top: 2.2rem; }
.pain { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.4rem; box-shadow: var(--shadow-s); }
.pain .emoji { font-size: 2rem; display: block; margin-bottom: .6rem; }
.pain p { margin: 0; color: var(--ink-soft); font-size: .98rem; }
.pain strong { color: var(--ink); }
.pain-answer { text-align: center; font-size: clamp(1.15rem, 2.4vw, 1.4rem); max-width: 720px; margin: 2.6rem auto 0; font-family: var(--font-display); }
@media (max-width: 900px) { .pain-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .pain-grid { grid-template-columns: 1fr; } }

/* Steps */
.steps { list-style: none; padding: 0; margin: 3rem 0 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; counter-reset: s; position: relative; }
.step { position: relative; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-l); padding: 2rem 1.6rem 1.6rem; box-shadow: var(--shadow-s); }
.step p { color: var(--ink-soft); margin: 0; }
.demo-box { margin-top: 2.6rem; display: grid; grid-template-columns: 1fr auto; gap: 1.4rem 2.5rem; align-items: center; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-l); padding: 1.8rem; box-shadow: var(--shadow-s); }
.demo-box h3 { margin: .2rem 0 .6rem; }
.demo-box p { color: var(--ink-soft); margin: 0 0 .6rem; }
.demo-note { color: var(--muted); font-size: .9rem; margin: 0 !important; }
.step-no { display: grid; place-items: center; width: 48px; height: 48px; border-radius: 16px; background: var(--grad); color: #fff; font-family: var(--font-display); font-weight: 800; font-size: 1.35rem; margin-bottom: 1rem; box-shadow: 0 10px 20px -10px rgba(31, 111, 139, .8); }
@media (max-width: 860px) { .steps { grid-template-columns: 1fr; } }

/* Features */
.phase { margin-top: 3.5rem; }
.phase-head { display: flex; flex-wrap: wrap; align-items: center; gap: .6rem 1rem; margin-bottom: 1.4rem; }
.phase-head h3 { margin: 0; font-size: clamp(1.3rem, 2.6vw, 1.7rem); }
.phase-tag { display: inline-flex; align-items: center; gap: .45rem; padding: .3rem .85rem; border-radius: 999px; font-weight: 700; font-size: .85rem; }
.tag-before { background: var(--info-soft); color: var(--info); }
.tag-live { background: var(--primary-soft); color: var(--primary); }
.tag-after { background: var(--success-soft); color: var(--success); }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.feature { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.3rem 1.3rem 1.1rem; transition: transform .2s ease, box-shadow .2s ease; }
.feature:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.feature p { color: var(--muted); margin: 0; font-size: .96rem; }
.feature.row { display: flex; gap: 1rem; align-items: flex-start; }
.f-icon { display: grid; place-items: center; width: 46px; height: 46px; border-radius: 14px; margin-bottom: .8rem; flex: none; }
.feature.row .f-icon { margin: 0; }
.f-icon .i { width: 22px; height: 22px; }
.c1 { background: var(--primary-soft); color: var(--primary); }
.c2 { background: var(--accent-soft); color: #b36b00; }
.c3 { background: var(--success-soft); color: var(--success); }
.c4 { background: var(--info-soft); color: var(--info); }
@media (prefers-color-scheme: dark) { .c2 { color: var(--accent); } }
.split { display: grid; grid-template-columns: 1.1fr 1fr; gap: 2.5rem; align-items: center; }
.split-center { align-items: center; }
.feature-list { display: grid; gap: 1rem; }
@media (max-width: 900px) { .feature-grid { grid-template-columns: repeat(2, 1fr); } .split { grid-template-columns: 1fr; } }
@media (max-width: 560px) { .feature-grid { grid-template-columns: 1fr; } }

/* TV */
.tv { max-width: 520px; width: 100%; margin-inline: auto; }
.tv-screen { position: relative; aspect-ratio: 16 / 10; border-radius: 18px; background: #0e0c15; border: 10px solid #1d1a26; box-shadow: var(--shadow-l); overflow: hidden; }
.tv-photo { position: absolute; display: grid; place-items: center; font-size: clamp(2rem, 6vw, 3.4rem); border-radius: 10px; box-shadow: 0 16px 30px -12px rgba(0,0,0,.8); border: 5px solid #fff; animation: drift 9s ease-in-out infinite; }
.tp1 { width: 42%; aspect-ratio: 4/3; left: 6%; top: 10%; background: linear-gradient(135deg, #f7c59f, #d4472e); transform: rotate(-5deg); }
.tp2 { width: 30%; aspect-ratio: 3/4; right: 8%; top: 7%; background: linear-gradient(135deg, #7f7fd5, #2b2550); transform: rotate(6deg); animation-delay: -2s; }
.tp3 { width: 34%; aspect-ratio: 1; left: 34%; top: 36%; background: linear-gradient(135deg, #ffd3e0, #b85c8a); transform: rotate(2deg); animation-delay: -4s; z-index: 2; }
.tp4 { width: 26%; aspect-ratio: 4/3; left: 8%; bottom: 14%; background: linear-gradient(135deg, #9be3c4, #2f7f78); transform: rotate(-3deg); animation-delay: -6s; }
@keyframes drift { 50% { translate: 0 -6px; } }
.tv-caption { position: absolute; left: 0; right: 0; bottom: 0; padding: .5rem .9rem; font-size: .8rem; color: #fff; background: linear-gradient(transparent, rgba(0,0,0,.7)); text-align: right; font-weight: 600; }
.tv-stand { width: 32%; height: 14px; margin: 0 auto; background: #1d1a26; border-radius: 0 0 12px 12px; }

/* Guests */
.checks { list-style: none; padding: 0; margin: 1.5rem 0 0; display: grid; gap: .9rem; }
.checks li { display: flex; gap: .75rem; align-items: flex-start; color: var(--ink-soft); }
.checks .i { color: #fff; background: var(--success); border-radius: 50%; padding: 4px; width: 24px; height: 24px; margin-top: 2px; stroke-width: 3; }
.join-card { max-width: 380px; width: 100%; margin-inline: auto; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-l); padding: 1.6rem; box-shadow: var(--shadow-l); transform: rotate(1.5deg); }
.join-top { display: flex; gap: .8rem; align-items: center; margin-bottom: 1.2rem; }
.join-top img { border-radius: 12px; }
.join-top small { display: block; color: var(--muted); }
.join-top strong { font-family: var(--font-display); font-size: 1.25rem; }
.qr { display: grid; place-items: center; height: 130px; border-radius: var(--radius); background: var(--bg-soft); margin-bottom: 1.2rem; color: var(--ink); }
.qr .i { width: 84px; height: 84px; stroke-width: 1.4; }
.join-card label { font-weight: 650; font-size: .95rem; }
.fake-input { margin: .35rem 0 1rem; border: 1.5px solid var(--info); border-radius: 12px; padding: .7rem .9rem; font-size: 1.05rem; box-shadow: 0 0 0 4px var(--info-soft); }
.caret { display: inline-block; width: 2px; height: 1.1em; background: var(--ink); vertical-align: -.2em; margin-left: 2px; animation: blink 1s steps(1) infinite; }
@keyframes blink { 50% { opacity: 0; } }
.join-note { text-align: center; color: var(--muted); font-size: .88rem; margin: .8rem 0 0; }

/* Privacy */
.section-night { background: radial-gradient(circle at 15% 0%, #16465a 0%, transparent 45%), radial-gradient(circle at 90% 100%, rgba(63, 176, 162, .35) 0%, transparent 45%), #0f2b3a; color: #f4efe8; }
.section-night h2 { color: #fff; margin-bottom: 2.6rem; }
.privacy-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.priv { background: rgba(255, 255, 255, .06); border: 1px solid rgba(255, 255, 255, .12); border-radius: var(--radius); padding: 1.4rem; }
.priv .i { width: 28px; height: 28px; color: var(--accent); margin-bottom: .7rem; }
.priv p { color: rgba(244, 239, 232, .78); margin: 0; font-size: .96rem; }
@media (max-width: 900px) { .privacy-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .privacy-grid { grid-template-columns: 1fr; } }

/* Pricing */
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; align-items: stretch; }
.price { position: relative; display: flex; flex-direction: column; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-l); padding: 1.8rem 1.6rem 1.6rem; box-shadow: var(--shadow-s); }
.price h3 { margin-bottom: .2rem; }
.price-desc { color: var(--muted); font-size: .95rem; min-height: 3em; }
.amount { font-family: var(--font-display); font-size: 2.6rem; font-weight: 850; margin: .2rem 0 1.2rem; line-height: 1; }
.amount small { display: block; font-family: var(--font); font-size: .85rem; font-weight: 550; color: var(--muted); margin-top: .45rem; }
.price ul { list-style: none; padding: 0; margin: 0 0 1.6rem; display: grid; gap: .55rem; flex: 1; }
.price li { position: relative; padding-left: 1.6rem; color: var(--ink-soft); font-size: .97rem; }
.price li::before { content: ""; position: absolute; left: 0; top: .45em; width: .95rem; height: .55rem; border-left: 2.5px solid var(--success); border-bottom: 2.5px solid var(--success); transform: rotate(-45deg); }
.price.featured { border: 2px solid var(--primary); box-shadow: var(--shadow-l); transform: translateY(-10px); }
.ribbon { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--grad); color: #fff; font-weight: 700; font-size: .82rem; padding: .3rem .9rem; border-radius: 999px; }
.pro { margin-top: 2rem; display: grid; grid-template-columns: 1.4fr 1fr; gap: 1.5rem 2.5rem; align-items: center; background: var(--bg-soft); border: 1px solid var(--line); border-radius: var(--radius-l); padding: 1.8rem; }
.pro h3 { display: flex; flex-wrap: wrap; align-items: center; gap: .5rem; }
.pro h3 .i { color: var(--accent); }
.pro-price { font-family: var(--font); font-size: .95rem; font-weight: 700; background: var(--surface); border: 1px solid var(--line); padding: .15rem .7rem; border-radius: 999px; }
.pro p { color: var(--ink-soft); margin: 0; }
.addons { display: grid; gap: .6rem; }
.addons span { display: flex; justify-content: space-between; gap: 1rem; background: var(--surface); border: 1px solid var(--line); border-radius: 12px; padding: .65rem 1rem; font-size: .95rem; }
.fineprint { color: var(--muted); font-size: .88rem; max-width: 760px; margin: 1.8rem auto 0; }
@media (max-width: 900px) {
  .price-grid { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; }
  .price.featured { transform: none; }
  .price-desc { min-height: 0; }
  .pro { grid-template-columns: 1fr; }
  .demo-box { grid-template-columns: 1fr; }
}

/* FAQ */
.faq { margin-top: 2.4rem; display: grid; gap: .7rem; }
.faq details { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 0 1.3rem; transition: box-shadow .2s; }
.faq details[open] { box-shadow: var(--shadow); }
.faq summary { cursor: pointer; list-style: none; padding: 1.1rem 2rem 1.1rem 0; font-weight: 650; position: relative; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: ""; position: absolute; right: .2rem; top: 50%; width: .6rem; height: .6rem; border-right: 2px solid var(--muted); border-bottom: 2px solid var(--muted); transform: translateY(-70%) rotate(45deg); transition: transform .2s; }
.faq details[open] summary::after { transform: translateY(-30%) rotate(-135deg); }
.faq p { color: var(--ink-soft); padding-bottom: 1.1rem; margin: 0; }

/* Final CTA */
.final { padding-block: clamp(4rem, 8vw, 6rem); background: var(--grad); color: #fff; text-align: center; position: relative; overflow: hidden; }
.final::before { content: "🎉  🥂  📸  🎈  🎂  💃"; position: absolute; inset: auto 0 -8px; font-size: 3.5rem; letter-spacing: 2rem; opacity: .14; white-space: nowrap; }
.final-inner { position: relative; }
.final h2 { color: #fff; }
.final p { font-size: 1.15rem; opacity: .92; max-width: 560px; margin: 0 auto 1.8rem; }

/* Footer */
.footer { padding-block: 2.6rem; border-top: 1px solid var(--line); }
.footer-inner { display: grid; grid-template-columns: 1fr auto; gap: 1rem 2rem; align-items: center; }
.footer-brand p { color: var(--muted); margin: .3rem 0 0; font-size: .95rem; }
.footer-nav { display: flex; flex-wrap: wrap; gap: .5rem 1.4rem; }
.footer-nav a { color: var(--ink-soft); text-decoration: none; }
.footer-nav a:hover { color: var(--primary); }
.footer-note { grid-column: 1 / -1; color: var(--muted); font-size: .85rem; margin: .6rem 0 0; }
@media (max-width: 700px) { .footer-inner { grid-template-columns: 1fr; } }

/* Legal pages */
.legal { padding-block: 3rem 5rem; }
.legal h1 { font-size: clamp(2rem, 5vw, 2.8rem); }
.legal h2 { font-size: 1.35rem; margin-top: 2rem; }
.legal .notice { background: var(--accent-soft); border: 1px solid var(--line); border-radius: var(--radius); padding: 1rem 1.2rem; }

/* Reveal on scroll (only with JS; content stays visible without) */
.js [data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.js [data-reveal].visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .js [data-reveal] { opacity: 1; transform: none; }
}
