/* ============================================================
   smartIDEA — premium design system
   Brand: Blau #197CF4 · Indigo #6D4DF4 · Violett #9A46F2 · Magenta #BF41F0
   ============================================================ */

:root {
  --blue:   #197CF4;
  --indigo: #6D4DF4;
  --violet: #9A46F2;
  --magenta:#BF41F0;
  --cyan:   #38C6F4;

  --grad: linear-gradient(115deg, #197CF4 0%, #6D4DF4 42%, #9A46F2 70%, #BF41F0 100%);
  --grad-rev: linear-gradient(115deg, #BF41F0 0%, #9A46F2 30%, #6D4DF4 58%, #197CF4 100%);
  --grad-soft: linear-gradient(115deg, rgba(25,124,244,.12), rgba(109,77,244,.10) 50%, rgba(191,65,240,.12));

  /* neutrals */
  --ink:    #0c0c12;
  --ink-1:  #1d1d24;
  --ink-2:  #55555f;
  --ink-3:  #86868f;
  --hair:   #e6e6ec;
  --hair-2: #f0f0f4;
  --bg:     #ffffff;
  --bg-2:   #f6f6fa;
  --bg-3:   #fbfbfd;
  --night:  #07070c;
  --night-2:#0e0e16;

  --maxw: 1180px;
  --radius: 20px;
  --radius-lg: 30px;
  --radius-xl: 40px;

  --shadow-sm: 0 1px 2px rgba(16,16,32,.05), 0 6px 18px rgba(16,16,32,.06);
  --shadow-md: 0 12px 40px rgba(16,16,40,.10);
  --shadow-lg: 0 30px 70px rgba(16,16,48,.16);
  --shadow-xl: 0 50px 120px rgba(20,16,60,.24);
  --glow: 0 20px 60px rgba(109,77,244,.28);

  --ease: cubic-bezier(.22,1,.36,1);
  --ease-out: cubic-bezier(.16,1,.3,1);

  --font: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text",
          "Inter", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --nav-h: 70px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
html.menu-open { overflow: hidden; }

body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img, svg, video { display: block; max-width: 100%; }
::selection { background: rgba(109,77,244,.22); }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.center { text-align: center; }
.grad-text {
  background: var(--grad); -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}

/* ============================================================
   Typography
   ============================================================ */
h1,h2,h3,h4 { letter-spacing: -.025em; line-height: 1.04; font-weight: 700; }
.display { font-size: clamp(44px, 7.5vw, 100px); font-weight: 800; letter-spacing: -.04em; line-height: .98; }
.h-xl { font-size: clamp(34px, 5.2vw, 60px); font-weight: 750; }
.h-lg { font-size: clamp(28px, 4vw, 46px); }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 650; letter-spacing: .14em; text-transform: uppercase;
  color: var(--indigo);
}
.eyebrow::before { content: ""; width: 22px; height: 2px; border-radius: 2px; background: var(--grad); }
.eyebrow.center-eyebrow { justify-content: center; }
.lead { font-size: clamp(17px, 1.6vw, 21px); color: var(--ink-2); font-weight: 400; line-height: 1.55; }

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  position: relative; display: inline-flex; align-items: center; gap: 9px;
  font-size: 16px; font-weight: 550; line-height: 1;
  padding: 15px 26px; border-radius: 100px; cursor: pointer; border: 0;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .3s, opacity .3s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-grad { background: var(--grad); color: #fff; box-shadow: var(--glow); background-size: 160% 160%; }
.btn-grad:hover { box-shadow: 0 26px 70px rgba(109,77,244,.42); }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: #000; }
.btn-glass {
  background: rgba(255,255,255,.10); color: #fff;
  border: 1px solid rgba(255,255,255,.30); backdrop-filter: blur(10px);
}
.btn-glass:hover { background: rgba(255,255,255,.18); }
.btn-outline { background: transparent; color: var(--ink); border: 1px solid var(--hair); }
.btn-outline:hover { border-color: var(--ink-3); background: var(--bg-2); }
.btn-ghost { background: transparent; color: var(--indigo); padding-left: 6px; padding-right: 6px; font-weight: 550; }
.btn-ghost .arr { transition: transform .3s var(--ease); }
.btn-ghost:hover .arr { transform: translateX(4px); }
.btn-row { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.center .btn-row, .btn-row.center { justify-content: center; }

/* ============================================================
   Navigation
   ============================================================ */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 1000; height: var(--nav-h);
  display: flex; align-items: center;
  transition: background .4s var(--ease), border-color .4s, backdrop-filter .4s, height .35s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(255,255,255,.72);
  backdrop-filter: saturate(180%) blur(22px); -webkit-backdrop-filter: saturate(180%) blur(22px);
  border-bottom-color: rgba(16,16,40,.08);
  height: 60px;
}
.nav-inner { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.nav-logo { display: flex; align-items: center; gap: 11px; }
.nav-logo img { height: 34px; width: auto; transition: height .35s; }
.nav.scrolled .nav-logo img { height: 30px; }
.wm { font-size: 20px; font-weight: 700; letter-spacing: -.02em; color: var(--ink); }
.wm span { font-weight: 350; margin-left: 5px; letter-spacing: .02em;
  background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.nav-links { display: flex; align-items: center; gap: 4px; list-style: none; }
.nav-links a {
  font-size: 14.5px; font-weight: 500; color: var(--ink-1); padding: 9px 14px; border-radius: 10px;
  transition: background .25s, color .25s;
}
.nav-links a:hover { background: var(--bg-2); color: var(--ink); }
.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav .btn { padding: 10px 18px; font-size: 14.5px; }
.nav-burger {
  display: none; width: 42px; height: 42px; border: 0; background: transparent; cursor: pointer;
  position: relative; border-radius: 10px;
}
.nav-burger span { position: absolute; left: 10px; right: 10px; height: 2px; background: var(--ink); border-radius: 2px;
  transition: transform .35s var(--ease), opacity .25s; }
.nav-burger span:nth-child(1){ top: 15px; } .nav-burger span:nth-child(2){ top: 21px; } .nav-burger span:nth-child(3){ top: 27px; }
html.menu-open .nav-burger span:nth-child(1){ transform: translateY(6px) rotate(45deg); }
html.menu-open .nav-burger span:nth-child(2){ opacity: 0; }
html.menu-open .nav-burger span:nth-child(3){ transform: translateY(-6px) rotate(-45deg); }

/* Nav over a dark hero (until scrolled) */
body.dark-top .nav:not(.scrolled) .wm { color: #fff; }
body.dark-top .nav:not(.scrolled) .nav-links a { color: rgba(255,255,255,.84); }
body.dark-top .nav:not(.scrolled) .nav-links a:hover { color: #fff; background: rgba(255,255,255,.12); }
body.dark-top .nav:not(.scrolled) .nav-burger span { background: #fff; }

/* mobile menu panel */
.mobile-menu {
  position: fixed; inset: 0; z-index: 999; background: rgba(255,255,255,.97);
  backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  display: flex; flex-direction: column; justify-content: center; gap: 6px; padding: 90px 32px 40px;
  opacity: 0; visibility: hidden; transform: translateY(-12px);
  transition: opacity .4s var(--ease), transform .4s var(--ease), visibility .4s;
}
html.menu-open .mobile-menu { opacity: 1; visibility: visible; transform: none; }
.mobile-menu a { font-size: 30px; font-weight: 700; letter-spacing: -.03em; color: var(--ink); padding: 12px 0;
  border-bottom: 1px solid var(--hair-2); }
.mobile-menu a.mm-cta { color: var(--indigo); border: 0; margin-top: 14px; }

/* ============================================================
   Decorative gradient blobs (mesh / aurora)
   ============================================================ */
.blob { position: absolute; border-radius: 50%; filter: blur(60px); opacity: .5; pointer-events: none; z-index: 0;
  will-change: transform; }
.blob.b1 { width: 540px; height: 540px; background: radial-gradient(circle, #197CF4, transparent 65%); }
.blob.b2 { width: 520px; height: 520px; background: radial-gradient(circle, #9A46F2, transparent 65%); }
.blob.b3 { width: 460px; height: 460px; background: radial-gradient(circle, #BF41F0, transparent 65%); }
.blob.b4 { width: 480px; height: 480px; background: radial-gradient(circle, #38C6F4, transparent 65%); }
@keyframes floaty { 0%,100%{ transform: translate(0,0) scale(1);} 50%{ transform: translate(24px,-30px) scale(1.08);} }
.blob.anim { animation: floaty 14s ease-in-out infinite; }
.blob.anim.slow { animation-duration: 20s; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; min-height: 100svh; display: grid; place-items: center;
  padding: calc(var(--nav-h) + 30px) 0 70px; overflow: hidden; text-align: center;
  background:
    radial-gradient(70% 50% at 50% -8%, rgba(154,70,242,.10), transparent 70%),
    linear-gradient(180deg, #fdfdff 0%, #f6f5fc 100%);
}
.hero-bg { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.hero-grid { position: absolute; inset: 0; z-index: 0;
  background-image: linear-gradient(rgba(16,16,40,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(16,16,40,.04) 1px, transparent 1px);
  background-size: 64px 64px; mask-image: radial-gradient(70% 60% at 50% 35%, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(70% 60% at 50% 35%, #000 30%, transparent 75%); }
.hero-inner { position: relative; z-index: 3; }
.hero-mark { width: clamp(120px, 17vw, 188px); margin: 0 auto 26px;
  filter: drop-shadow(0 26px 50px rgba(109,77,244,.30)); will-change: transform; }
.hero h1 { margin: 8px 0 4px; }
.hero .lead { max-width: 620px; margin: 20px auto 32px; }
.hero-pills { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 46px; }
.hero-pill { display: inline-flex; align-items: center; gap: 12px; padding: 10px 20px 10px 12px;
  background: rgba(255,255,255,.7); border: 1px solid var(--hair); border-radius: 100px; box-shadow: var(--shadow-sm);
  transition: transform .35s var(--ease), box-shadow .35s; }
.hero-pill:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.hero-pill img { width: 36px; height: 36px; border-radius: 9px; }
.hero-pill b { font-weight: 600; font-size: 15px; }
.hero-pill .muted { color: var(--ink-3); font-size: 13px; }
.scroll-cue { position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: 8px; color: var(--ink-3); font-size: 12px; letter-spacing: .1em; }
.scroll-cue .mouse { width: 24px; height: 38px; border: 2px solid var(--ink-3); border-radius: 14px; position: relative; }
.scroll-cue .mouse::after { content:""; position:absolute; top:7px; left:50%; transform:translateX(-50%); width:4px; height:7px;
  background: var(--ink-3); border-radius: 3px; animation: wheel 1.6s var(--ease) infinite; }
@keyframes wheel { 0%{ opacity:0; transform: translate(-50%,0);} 30%{opacity:1;} 100%{ opacity:0; transform: translate(-50%,12px);} }

/* ============================================================
   Marquee trust strip
   ============================================================ */
.marquee { overflow: hidden; border-block: 1px solid var(--hair); background: var(--bg-3); padding: 18px 0; }
.marquee-track { display: flex; gap: 56px; width: max-content; animation: scrollx 28s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-item { display: inline-flex; align-items: center; gap: 10px; color: var(--ink-3); font-weight: 600; font-size: 15px; white-space: nowrap; }
.marquee-item svg { width: 18px; height: 18px; }
@keyframes scrollx { to { transform: translateX(-50%); } }

/* ============================================================
   Sections
   ============================================================ */
.section { position: relative; padding: clamp(80px, 11vw, 150px) 0; overflow: hidden; }
.section.tight { padding: clamp(60px, 8vw, 100px) 0; }
.section-head { max-width: 760px; }
.section-head.center { margin: 0 auto; }
.section-head .lead { margin-top: 16px; }

/* ============================================================
   App tiles (overview)
   ============================================================ */
.tiles { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; margin-top: 60px; }
.tile { position: relative; border-radius: var(--radius-xl); overflow: hidden; min-height: 520px;
  padding: 46px 44px 0; color: #fff; display: flex; flex-direction: column; isolation: isolate;
  box-shadow: var(--shadow-md); transition: transform .5s var(--ease), box-shadow .5s var(--ease); }
.tile::after { content:""; position:absolute; inset:0; z-index:-1; opacity:.5;
  background: radial-gradient(80% 60% at 80% 0%, rgba(255,255,255,.25), transparent 60%); }
.tile:hover { transform: translateY(-8px); box-shadow: var(--shadow-xl); }
.tile.fc { background: linear-gradient(160deg, #16a34a 0%, #0a7d3a 52%, #064d27 100%); }
.tile.rc { background: linear-gradient(160deg, #2f6bff 0%, #6d4df4 48%, #9a46f2 100%); }
.tile.fr { background: linear-gradient(160deg, #14b8a6 0%, #0d9488 52%, #115e59 100%); }
.tile.ll { background: linear-gradient(160deg, #f59e0b 0%, #d97706 42%, #1f2430 100%); }
.t-icon-art { margin-top: auto; align-self: center; padding: 30px 0 10px; }
.t-icon-art img { width: 144px; height: 144px; border-radius: 30%; box-shadow: 0 18px 48px rgba(0,0,0,.34); display: block; }
.icon-hero { display: flex; justify-content: center; position: relative; }
.icon-hero img { width: clamp(168px, 24vw, 236px); height: auto; border-radius: 24%; box-shadow: var(--shadow-xl); position: relative; z-index: 2; }
.poster-img { width: 100%; max-width: 540px; height: auto; border-radius: 30px; box-shadow: var(--shadow-xl); display: block; margin: 0 auto; }
.phone-screen svg { display: block; width: 100%; height: 100%; }
.tile .t-eyebrow { font-size: 12.5px; font-weight: 650; letter-spacing: .12em; text-transform: uppercase; opacity: .9; }
.tile h3 { font-size: clamp(30px, 3.6vw, 40px); margin: 8px 0 10px; color: #fff; letter-spacing: -.03em; }
.tile p { font-size: 17px; opacity: .94; max-width: 32ch; }
.tile .t-cta { margin-top: 16px; font-weight: 600; display: inline-flex; align-items: center; gap: 6px; }
.tile .t-cta .arr { transition: transform .3s var(--ease); }
.tile:hover .t-cta .arr { transform: translateX(5px); }
.tile .t-art { margin-top: auto; align-self: center; width: 240px; padding-top: 34px; will-change: transform; }

/* ============================================================
   Phone device
   ============================================================ */
/* Realistic iPhone (19.5:9, titanium edge, Dynamic Island from the screenshot itself) */
.phone { position: relative; width: 288px; aspect-ratio: 1206 / 2622;
  background: linear-gradient(145deg, #41414b 0%, #1a1a20 16%, #0c0c10 50%, #1a1a20 84%, #3a3a44 100%);
  border-radius: 15% / 6.9%; padding: 7px;
  box-shadow: var(--shadow-lg), inset 0 0 0 1.5px rgba(255,255,255,.14), inset 0 0 2px 2px rgba(0,0,0,.55); }
.phone-screen { width: 100%; height: 100%; border-radius: 12% / 5.5%; overflow: hidden; background: #000; position: relative; }
.phone-screen img { width: 100%; height: 100%; object-fit: cover; object-position: top center; display: block; }
/* side buttons */
.phone::before { content:""; position: absolute; right: -2px; top: 24%; width: 2.5px; height: 11%;
  background: linear-gradient(#4a4a54,#1c1c22); border-radius: 0 3px 3px 0; }
.phone::after { content:""; position: absolute; left: -2px; top: 17%; width: 2.5px; height: 6%;
  background: linear-gradient(#4a4a54,#1c1c22); border-radius: 3px 0 0 3px;
  box-shadow: 0 7.5% 0 -0.5px #2a2a32, 0 13% 0 0 transparent; }
.phone.shot { padding: 7px; }
.t-art .phone { width: 100%; }

/* ============================================================
   Apple Watch device
   ============================================================ */
.watch { position: relative; display: inline-block; width: 186px; padding: 8px 10px;
  background: linear-gradient(145deg, #45454d 0%, #17171b 40%, #202026 58%, #3c3c44 100%);
  border-radius: 34% / 27%;
  box-shadow: var(--shadow-lg), inset 0 0 0 1px rgba(255,255,255,.13), inset 0 0 2px 2px rgba(0,0,0,.5); }
.watch-screen { width: 100%; aspect-ratio: 416 / 496; border-radius: 29% / 23%; overflow: hidden; background: #000; }
.watch-screen img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; }
/* Digital Crown + side button on the right edge */
.watch::before { content:""; position: absolute; right: -3.5px; top: 30%; width: 6px; height: 13%;
  background: linear-gradient(#56565f, #1c1c22); border-radius: 2px 4px 4px 2px; box-shadow: inset 0 0 0 .5px rgba(0,0,0,.4); }
.watch::after { content:""; position: absolute; right: -2px; top: 49%; width: 3.5px; height: 16%;
  background: linear-gradient(#4a4a54, #1c1c22); border-radius: 0 3px 3px 0; }

.watch-stack { display: flex; justify-content: center; align-items: center; gap: 0; }
.watch-stack .watch:first-child { transform: rotate(-6deg) translateX(14px); z-index: 1; }
.watch-stack .watch:last-child { transform: rotate(6deg) translateX(-14px) translateY(12px); }
.watch-gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 54px; justify-items: center; max-width: 720px; margin-left: auto; margin-right: auto; }
.watch-gallery figure { display: flex; flex-direction: column; align-items: center; }
.watch-gallery .watch { width: 100%; max-width: 190px; }
.watch-gallery figcaption { font-size: 14px; color: #9b9ba6; margin-top: 14px; text-align: center; }
@media (max-width: 560px) {
  .watch-gallery { grid-template-columns: 1fr; gap: 30px; }
  .watch-stack .watch { width: 160px; }
}

/* ============================================================
   Legal pages (Datenschutz / Impressum)
   ============================================================ */
.legal { padding: calc(var(--nav-h) + 60px) 0 90px; }
.legal .wrap { max-width: 820px; }
.legal h1 { font-size: clamp(34px, 5vw, 52px); margin-bottom: 10px; }
.legal .updated { color: var(--ink-3); font-size: 14px; margin-bottom: 40px; }
.legal h2 { font-size: 22px; margin: 38px 0 12px; }
.legal h3 { font-size: 17px; margin: 22px 0 8px; }
.legal p, .legal li { color: var(--ink-1); font-size: 16px; line-height: 1.7; }
.legal p { margin-bottom: 14px; }
.legal ul { margin: 0 0 16px 22px; } .legal li { margin-bottom: 6px; }
.legal a { color: var(--indigo); }
.legal a:hover { text-decoration: underline; }
.legal .addr { background: var(--bg-2); border: 1px solid var(--hair); border-radius: var(--radius);
  padding: 22px 24px; margin: 6px 0 14px; line-height: 1.7; }
.legal hr { border: 0; border-top: 1px solid var(--hair); margin: 40px 0; }

/* ============================================================
   Feature rows (alternating, parallax device)
   ============================================================ */
.feature { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 90px); align-items: center; }
.feature + .feature { margin-top: clamp(90px, 12vw, 160px); }
.feature.flip .feature-media { order: 2; }
.feature-media { display: flex; justify-content: center; position: relative; }
.feature-media .phone { width: clamp(240px, 30vw, 300px); }
.feature-glow { position: absolute; inset: -8% ; z-index: -1; border-radius: 50%; filter: blur(70px); opacity: .5;
  background: var(--grad); }
.feature-list { display: grid; gap: 26px; margin-top: 30px; }
.feat { display: flex; gap: 16px; }
.feat-ic { flex: 0 0 46px; width: 46px; height: 46px; border-radius: 13px; display: grid; place-items: center; color: #fff;
  background: var(--grad); box-shadow: var(--shadow-sm); }
.feat.green .feat-ic { background: linear-gradient(150deg,#22c55e,#0a8a3f); }
.feat h4 { font-size: 19px; margin-bottom: 4px; }
.feat p { font-size: 15.5px; color: var(--ink-2); line-height: 1.55; }
.badges { display: flex; gap: 9px; flex-wrap: wrap; margin: 22px 0 6px; }
.badge { font-size: 12px; font-weight: 600; letter-spacing: .02em; padding: 7px 13px; border-radius: 100px;
  background: var(--bg-2); color: var(--ink-2); border: 1px solid var(--hair); }
.badge.live { background: rgba(34,197,94,.12); color: #128a3c; border-color: rgba(34,197,94,.3); }
.badge.beta { background: rgba(109,77,244,.12); color: var(--indigo); border-color: rgba(109,77,244,.3); }

/* dark variant */
.section.dark, .feature-block.dark { background: var(--night); color: #f4f4f7; }
.section.dark .lead, .section.dark .feat p { color: #9b9ba6; }
.section.dark .badge { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.12); color: #cfcfd8; }
.section.dark .card { background: var(--night-2); border-color: rgba(255,255,255,.08); }
.section.dark .card p { color: #9b9ba6; }

/* ============================================================
   Cards grid
   ============================================================ */
.cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; margin-top: 56px; }
.card { position: relative; background: #fff; border: 1px solid var(--hair); border-radius: var(--radius-lg);
  padding: 32px 28px; box-shadow: var(--shadow-sm); transition: transform .45s var(--ease), box-shadow .45s var(--ease); overflow: hidden; }
.card::before { content:""; position:absolute; inset:0 0 auto 0; height:3px; background: var(--grad); transform: scaleX(0); transform-origin: left; transition: transform .5s var(--ease); }
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.card:hover::before { transform: scaleX(1); }
.card .c-ic { width: 50px; height: 50px; border-radius: 14px; display: grid; place-items: center; color: #fff; margin-bottom: 18px; background: var(--grad); }
.card h4 { font-size: 20px; margin-bottom: 7px; }
.card p { color: var(--ink-2); font-size: 15px; line-height: 1.55; }

/* ============================================================
   Stats / counters
   ============================================================ */
.stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.stat { text-align: center; padding: 18px; }
.stat .num { font-size: clamp(40px,5vw,64px); font-weight: 800; letter-spacing: -.04em;
  background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.stat .lbl { font-size: 15px; color: var(--ink-2); margin-top: 6px; font-weight: 500; }
.section.dark .stat .lbl { color: #9b9ba6; }

/* ============================================================
   Gallery
   ============================================================ */
.gallery { display: grid; grid-template-columns: repeat(4,1fr); gap: 22px; margin-top: 54px; }
.gallery figure { display: flex; flex-direction: column; align-items: center; }
.gallery .phone { width: 100%; }
.gallery figcaption { font-size: 14px; color: var(--ink-2); margin-top: 14px; text-align: center; }
.section.dark .gallery figcaption { color: #9b9ba6; }

/* ============================================================
   Steps
   ============================================================ */
.steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 34px; margin-top: 56px; }
.step { position: relative; }
.step .s-num { font-size: 14px; font-weight: 700; letter-spacing: .12em;
  background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.step h4 { font-size: 22px; margin: 8px 0 8px; }
.step p { color: var(--ink-2); font-size: 15.5px; }

/* ============================================================
   CTA band
   ============================================================ */
.cta { position: relative; text-align: center; padding: clamp(80px,11vw,140px) 0; overflow: hidden; color: #fff;
  background: var(--grad); background-size: 180% 180%; animation: shift 16s ease infinite; }
@keyframes shift { 0%,100%{ background-position: 0% 50%;} 50%{ background-position: 100% 50%;} }
.cta::before { content:""; position:absolute; inset:0; background: radial-gradient(60% 60% at 50% 0%, rgba(255,255,255,.22), transparent 60%); }
.cta .wrap { position: relative; z-index: 2; }
.cta h2 { color: #fff; }
.cta p { font-size: clamp(17px,1.8vw,21px); opacity: .94; max-width: 580px; margin: 16px auto 30px; }

/* ============================================================
   Footer
   ============================================================ */
.footer { background: var(--night); color: #9b9ba6; padding: 70px 0 40px; }
.footer .f-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,.10); }
.footer .f-brand img { height: 56px; width: auto; margin-bottom: 18px; }
.footer .f-brand p { max-width: 30ch; font-size: 14.5px; line-height: 1.6; }
.footer h5 { color: #fff; font-size: 13px; font-weight: 650; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 14px; }
.footer .f-col a { display: block; color: #9b9ba6; margin-bottom: 10px; font-size: 14.5px; transition: color .25s; }
.footer .f-col a:hover { color: #fff; }
.footer .f-bottom { padding-top: 26px; font-size: 12.5px; line-height: 1.7; color: #6c6c78; }

/* ============================================================
   Scroll reveal + parallax
   ============================================================ */
html.js [data-reveal] { opacity: 0; transform: translateY(30px); transition: opacity .9s var(--ease-out), transform .9s var(--ease-out); }
html.js [data-reveal="scale"] { transform: scale(.94); }
html.js [data-reveal="left"] { transform: translateX(-40px); }
html.js [data-reveal="right"] { transform: translateX(40px); }
html.js [data-reveal].in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html.js [data-reveal] { opacity: 1 !important; transform: none !important; transition: none; }
  .blob.anim, .marquee-track, .cta, .scroll-cue .mouse::after { animation: none !important; }
  [data-parallax] { transform: none !important; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 980px) {
  .cards, .stats { grid-template-columns: repeat(2,1fr); }
  .gallery { grid-template-columns: repeat(2,1fr); gap: 30px; }
}
@media (max-width: 820px) {
  .nav-links, .nav-cta .btn { display: none; }
  .nav-burger { display: block; }
  .nav.scrolled, .nav { background: rgba(255,255,255,.82); backdrop-filter: saturate(180%) blur(20px); -webkit-backdrop-filter: saturate(180%) blur(20px); }
  .tiles { grid-template-columns: 1fr; }
  .feature, .feature.flip { grid-template-columns: 1fr; gap: 40px; }
  .feature.flip .feature-media { order: 0; }
  .feature-media { order: -1; }
  .steps { grid-template-columns: 1fr; gap: 26px; }
  [data-parallax] { transform: none !important; } /* ruhiger auf Mobil */
}
@media (max-width: 560px) {
  .cards, .stats { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr 1fr; gap: 18px; }
  .tile { padding: 36px 28px 0; min-height: 460px; }
  .btn { width: 100%; justify-content: center; }
  .hero .btn-row, .cta .btn-row { width: 100%; }
  .hero-pill { width: 100%; }
}
