/* ═══════════════════════════════════════════
   NODUS NEXUS — CINEMATIC SCROLL SITE
   Petrol & Champagne
═══════════════════════════════════════════ */
:root {
  --ink-deep:   #04161c;
  --ink:        #072530;
  --ink-soft:   #0a313d;
  --petrol:     #0e8492;
  --aqua:       #34c0ce;
  --aqua-soft:  rgba(52,192,206,0.5);
  --gold:       #c8a951;
  --gold-light: #e8c878;
  --paper:      #eef5f4;
  --txt:        #e9f3f2;
  --txt-dim:    rgba(233,243,242,0.62);
  --txt-faint:  rgba(233,243,242,0.38);
  --eo: cubic-bezier(0.16, 1, 0.3, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: auto; }
body {
  background: var(--ink-deep);
  color: var(--txt);
  font-family: 'Instrument Sans', system-ui, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}
h1, h2, h3 { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 700; line-height: 1.06; }
a { color: inherit; text-decoration: none; }
::selection { background: rgba(52,192,206,0.35); }

/* ── Grain + progress + cursor ── */
.grain {
  position: fixed; inset: -50%;
  width: 200%; height: 200%;
  pointer-events: none; z-index: 9998;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain 7s steps(8) infinite;
}
@keyframes grain {
  0%,100% { transform: translate(0,0); } 12% { transform: translate(-3%,2%); }
  25% { transform: translate(2%,-3%); } 37% { transform: translate(-2%,-2%); }
  50% { transform: translate(3%,1%); }  62% { transform: translate(-1%,3%); }
  75% { transform: translate(2%,2%); }  87% { transform: translate(-3%,-1%); }
}
.progress {
  position: fixed; top: 0; left: 0; right: 0;
  height: 2px; z-index: 9999;
  background: linear-gradient(90deg, var(--petrol), var(--aqua) 55%, var(--gold));
  transform-origin: left; transform: scaleX(0);
}
.cursor { position: fixed; top: 0; left: 0; pointer-events: none; z-index: 9999; }
.cursor-dot, .cursor-ring {
  position: fixed; top: 0; left: 0;
  border-radius: 50%;
  transform: translate(-50%,-50%);
}
.cursor-dot  { width: 6px; height: 6px; background: var(--aqua); }
.cursor-ring { width: 34px; height: 34px; border: 1px solid var(--aqua-soft); transition: width 0.25s var(--eo), height 0.25s var(--eo), border-color 0.25s; }
.cursor--on .cursor-ring { width: 52px; height: 52px; border-color: var(--gold); }
@media (hover: none), (prefers-reduced-motion: reduce) { .cursor { display: none; } }

/* ── Nav ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 64px; height: 90px; z-index: 100;
  background: rgba(4,22,28,0);
  transition: background 0.4s ease, box-shadow 0.4s ease, backdrop-filter 0.4s ease;
}
.nav--solid { background: rgba(4,22,28,0.88); backdrop-filter: blur(18px); box-shadow: 0 1px 0 rgba(255,255,255,0.09); }
.nav-brand { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 800; font-size: 20px; display: flex; align-items: center; }
.nav-logo { height: 54px; width: auto; display: block; }
.footer-logo { height: 38px; width: auto; display: block; }
.nav-links { display: flex; gap: 36px; font-size: 15.5px; color: var(--txt-dim); }
.nav-links a { position: relative; transition: color 0.2s; }
.nav-links a:hover { color: var(--txt); }
.nav-links a::after {
  content: ''; position: absolute; left: 0; bottom: -5px;
  width: 100%; height: 2px; border-radius: 2px;
  background: var(--aqua);
  transform: scaleX(0); transform-origin: right;
  transition: transform 0.3s var(--eo);
}
.nav-links a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav-cta {
  background: var(--gold); color: var(--ink);
  font-weight: 700; font-size: 15px;
  padding: 12px 26px; border-radius: 10px;
  transition: background 0.2s;
}
.nav-cta:hover { background: var(--gold-light); }

.kicker {
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--aqua);
}
.kicker--center { text-align: center; }

/* ════ HERO ════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: grid; place-items: center;
  background:
    radial-gradient(ellipse 60% 55% at 50% 42%, rgba(14,132,146,0.30) 0%, transparent 65%),
    radial-gradient(ellipse 35% 35% at 80% 75%, rgba(200,169,81,0.10) 0%, transparent 60%),
    var(--ink);
  overflow: hidden;
}
.hero-wave { position: absolute; inset: 0; width: 100%; height: 100%; mix-blend-mode: screen; }
.hero-inner { position: relative; text-align: center; max-width: 880px; padding: 0 24px; }
.hero-label {
  font-size: 12.5px; font-weight: 700;
  letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--aqua); margin-bottom: 26px;
}
.hero-title { font-size: clamp(44px, 7.4vw, 96px); font-weight: 800; letter-spacing: -0.02em; }
.hero-title .line { display: block; overflow: hidden; padding-bottom: 0.08em; margin-bottom: -0.08em; }
.hero-title .line > span { display: inline-block; will-change: transform; }
.hero-title .accent { color: var(--aqua); }
.hero-desc {
  margin: 30px auto 0; max-width: 60ch;
  font-size: 17px; color: var(--txt-dim);
}
.hero-scroll {
  position: absolute; bottom: 36px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.hero-scroll-line { width: 1px; height: 52px; background: rgba(255,255,255,0.18); position: relative; overflow: hidden; }
.hero-scroll-line::after {
  content: ''; position: absolute; top: -50%; left: 0;
  width: 100%; height: 50%;
  background: var(--aqua);
  animation: scrollcue 1.8s var(--eo) infinite;
}
@keyframes scrollcue { to { top: 110%; } }
.hero-scroll-txt { font-size: 10.5px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--txt-faint); }

/* ════ SCENE — LIVE CALL ════ */
.scene-call { background: var(--ink-deep); position: relative; }
.call-pin { min-height: 100vh; display: grid; place-items: center; overflow: hidden; position: relative; }
.call-stage {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 70px; align-items: center;
  width: min(1180px, 92vw);
  padding: 80px 0;
}
.call-copy .kicker { margin-bottom: 22px; }
.call-caption { position: relative; font-size: clamp(26px, 3vw, 40px); font-weight: 700; min-height: 4.4em; }
.call-caption .cap { position: absolute; inset: 0; opacity: 0; }
.call-caption .cap:first-child { opacity: 1; }

.call-card {
  background: rgba(255,255,255,0.055);
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: 18px;
  backdrop-filter: blur(12px);
  box-shadow: 0 0 0 1px rgba(52,192,206,0.16), 0 0 80px rgba(14,132,146,0.3), 0 36px 80px rgba(0,0,0,0.5);
  overflow: hidden;
  will-change: transform;
}
.call-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 20px;
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.015));
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.call-id { display: flex; align-items: center; gap: 12px; }
.call-avatar {
  width: 40px; height: 40px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--petrol), var(--aqua));
  box-shadow: 0 4px 18px rgba(14,132,146,0.5);
}
.eq { display: flex; gap: 3px; align-items: center; height: 16px; }
.eq span { width: 3px; border-radius: 2px; background: #fff; animation: eq 1.1s ease-in-out infinite; }
.eq span:nth-child(1) { height: 8px; }
.eq span:nth-child(2) { height: 16px; animation-delay: 0.15s; }
.eq span:nth-child(3) { height: 11px; animation-delay: 0.3s; }
.eq span:nth-child(4) { height: 6px;  animation-delay: 0.45s; }
@keyframes eq { 0%,100% { transform: scaleY(0.45); } 50% { transform: scaleY(1); } }
.call-id-txt { display: flex; flex-direction: column; gap: 2px; }
.call-id-txt strong { font-family: 'Bricolage Grotesque', sans-serif; font-size: 15px; }
.call-id-txt small { display: flex; align-items: center; gap: 6px; font-size: 11.5px; color: var(--txt-dim); }
.call-id-txt em { font-style: normal; }
.call-id-txt .dot { width: 6px; height: 6px; border-radius: 50%; background: #4ade80; box-shadow: 0 0 8px rgba(74,222,128,0.8); }
.call-lang { font-size: 11px; font-weight: 600; color: var(--txt-faint); background: rgba(255,255,255,0.06); border-radius: 20px; padding: 3px 11px; }
.call-body { display: flex; flex-direction: column; gap: 14px; padding: 22px 20px 6px; }
.msg { display: flex; align-items: flex-end; gap: 8px; max-width: 88%; will-change: transform, opacity; }
.msg--agent { align-self: flex-end; }
.msg p {
  padding: 11px 15px; border-radius: 14px;
  font-size: 13.5px; line-height: 1.5;
}
.msg--caller p { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.1); border-bottom-left-radius: 4px; color: rgba(255,255,255,0.86); }
.msg--agent p  { background: rgba(14,132,146,0.36); border: 1px solid rgba(52,192,206,0.3); border-bottom-right-radius: 4px; box-shadow: 0 4px 16px rgba(14,132,146,0.25); }
.av {
  flex-shrink: 0; width: 24px; height: 24px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 10.5px; font-weight: 700; margin-bottom: 2px;
  background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.14); color: rgba(255,255,255,0.7);
}
.av--n { background: linear-gradient(135deg, var(--petrol), var(--aqua)); border: none; color: #fff; }
.call-results { display: flex; gap: 10px; flex-wrap: wrap; padding: 16px 20px 20px; }
.chip {
  font-size: 12px; font-weight: 600;
  padding: 6px 13px; border-radius: 20px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--txt-dim);
  will-change: transform, opacity;
}
.chip--ok { color: #86efac; border-color: rgba(74,222,128,0.3); background: rgba(34,197,94,0.1); }

/* ════ SCENE — FLOW (horizontal) ════ */
.scene-flow { background: var(--paper); color: var(--ink); }
.flow-pin { min-height: 100vh; display: flex; flex-direction: column; justify-content: center; overflow: hidden; padding: 90px 0 70px; }
.flow-head { padding: 0 7vw 50px; }
.flow-head .kicker { color: var(--petrol); margin-bottom: 14px; }
.flow-head h2 { font-size: clamp(34px, 4.6vw, 62px); color: var(--ink); letter-spacing: -0.015em; }
.flow-progress { margin-top: 26px; width: min(420px, 60vw); height: 2px; background: rgba(7,37,48,0.14); border-radius: 2px; }
.flow-progress-fill { display: block; width: 100%; height: 100%; border-radius: 2px; background: linear-gradient(90deg, var(--petrol), var(--aqua)); transform: scaleX(0); transform-origin: left; }
.flow-track { display: flex; gap: 4vw; padding: 0 7vw; will-change: transform; }
.flow-step {
  flex: 0 0 min(460px, 72vw);
  background: #fff;
  border: 1px solid rgba(7,37,48,0.1);
  border-radius: 20px;
  padding: 42px 40px 46px;
  box-shadow: 0 24px 60px rgba(7,37,48,0.08);
}
.flow-num {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 72px; font-weight: 800; line-height: 1;
  color: rgba(14,132,146,0.18);
  display: block; margin-bottom: 18px;
}
.flow-step h3 { font-size: 24px; margin-bottom: 12px; color: var(--ink); }
.flow-step p { color: rgba(7,37,48,0.66); font-size: 15px; }

/* ════ SCENE — STATS ════ */
.scene-stats { background: var(--ink); padding: 130px 7vw; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; max-width: 1180px; margin: 0 auto; }
.stat { text-align: center; }
.stat-num {
  display: block;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(44px, 5.4vw, 76px); font-weight: 800;
  color: var(--gold-light); line-height: 1;
}
.stat-label { display: block; margin-top: 12px; font-size: 12px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--txt-faint); }

/* ════ SCENE — BRANCHEN ════ */
.scene-branchen { background: var(--ink-deep); padding: 110px 0; overflow: hidden; }
.scene-branchen .kicker { margin-bottom: 48px; }
.marquee { display: flex; overflow: hidden; margin-bottom: 26px; -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); }
.marquee-track { display: flex; gap: 22px; flex-shrink: 0; padding-right: 22px; will-change: transform; }
.marquee-track span {
  white-space: nowrap;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(20px, 2.4vw, 32px); font-weight: 600;
  color: var(--txt-faint);
  padding: 14px 30px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 60px;
  transition: color 0.3s, border-color 0.3s;
}
.marquee-track span:hover { color: var(--aqua); border-color: var(--aqua-soft); }

/* ════ SCENE — PAKETE ════ */
.scene-pakete { background: var(--paper); color: var(--ink); padding: 130px 7vw 150px; }
.scene-pakete .kicker { color: var(--petrol); }
.pakete-title { text-align: center; font-size: clamp(32px, 4.2vw, 56px); margin: 16px 0 64px; color: var(--ink); letter-spacing: -0.015em; }
.pakete-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; max-width: 1180px; margin: 0 auto; align-items: stretch; }
.paket {
  position: relative;
  background: #fff;
  border: 1px solid rgba(7,37,48,0.1);
  border-radius: 20px;
  padding: 40px 34px;
  display: flex; flex-direction: column;
  box-shadow: 0 18px 50px rgba(7,37,48,0.07);
  transition: transform 0.3s var(--eo), box-shadow 0.3s ease;
  will-change: transform;
}
.paket:hover { transform: translateY(-8px); box-shadow: 0 30px 70px rgba(14,132,146,0.18); }
.paket--featured { border: 2px solid var(--petrol); box-shadow: 0 26px 70px rgba(14,132,146,0.16); }
.paket-tag {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--petrol); color: #fff;
  font-size: 11.5px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 5px 16px; border-radius: 20px;
}
.paket h3 { font-size: 21px; color: var(--ink); }
.paket-price { font-family: 'Bricolage Grotesque', sans-serif; font-size: 40px; font-weight: 800; color: var(--ink); margin: 14px 0 22px; }
.paket-price small { font-family: 'Instrument Sans', sans-serif; font-size: 14px; font-weight: 500; color: rgba(7,37,48,0.5); }
.paket ul { list-style: none; display: flex; flex-direction: column; gap: 11px; margin-bottom: 30px; flex: 1; }
.paket li { font-size: 14.5px; color: rgba(7,37,48,0.72); padding-left: 24px; position: relative; }
.paket li::before { content: '✓'; position: absolute; left: 0; color: var(--petrol); font-weight: 700; }
.paket-cta {
  display: block; text-align: center;
  padding: 13px; border-radius: 11px;
  font-weight: 700; font-size: 14.5px;
  border: 1.5px solid rgba(7,37,48,0.18); color: var(--ink);
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.paket-cta:hover { border-color: var(--petrol); color: var(--petrol); }
.paket-cta--gold { background: var(--gold); border-color: var(--gold); color: var(--ink); }
.paket-cta--gold:hover { background: var(--gold-light); border-color: var(--gold-light); color: var(--ink); }

/* ════ SCENE — CTA ════ */
.scene-cta {
  position: relative;
  background: var(--ink);
  text-align: center;
  padding: 170px 24px 180px;
  overflow: hidden;
}
.cta-aurora { position: absolute; border-radius: 50%; filter: blur(95px); pointer-events: none; will-change: transform; }
.cta-aurora--1 { width: 520px; height: 520px; background: rgba(14,132,146,0.38); top: -18%; left: 6%;  animation: aur-a 17s ease-in-out infinite; }
.cta-aurora--2 { width: 420px; height: 420px; background: rgba(200,169,81,0.16); bottom: -22%; right: 8%; animation: aur-b 21s ease-in-out infinite; }
@keyframes aur-a { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(80px,46px) scale(1.14); } }
@keyframes aur-b { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(-66px,-34px) scale(0.9); } }
.cta-title { position: relative; font-size: clamp(38px, 5.6vw, 78px); font-weight: 800; margin: 20px 0 26px; letter-spacing: -0.02em; }
.cta-title .line { display: block; overflow: hidden; padding-bottom: 0.1em; margin-bottom: -0.1em; }
.cta-title .line > span { display: inline-block; }
.cta-title .accent { color: var(--aqua); }
.cta-sub { position: relative; color: var(--txt-dim); font-size: 17px; margin-bottom: 44px; }
.cta-btn {
  position: relative;
  display: inline-flex; align-items: center; gap: 11px;
  background: var(--gold); color: var(--ink);
  font-size: 17px; font-weight: 700;
  padding: 18px 42px; border-radius: 14px;
  box-shadow: 0 14px 44px rgba(200,169,81,0.3);
  transition: background 0.2s, box-shadow 0.3s;
  will-change: transform;
}
.cta-btn:hover { background: var(--gold-light); box-shadow: 0 18px 56px rgba(200,169,81,0.42); }
.cta-hints { position: relative; display: flex; justify-content: center; gap: 26px; margin-top: 22px; font-size: 11px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--txt-faint); }
.cta-hints span { display: flex; align-items: center; gap: 7px; }
.cta-hints span::before { content: ''; width: 4px; height: 4px; border-radius: 50%; background: var(--aqua); }

/* ── Footer ── */
.footer {
  background: var(--ink-deep);
  border-top: 1px solid rgba(255,255,255,0.07);
  display: flex; align-items: center; justify-content: space-between;
  gap: 18px; flex-wrap: wrap;
  padding: 44px 56px;
  font-size: 15px; color: var(--txt-dim);
}
.footer a:hover { color: var(--aqua); }
.footer-row { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.footer-links { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.footer-links a { transition: color 0.2s; }

/* ── Hamburger nav ── */
.nav-toggle {
  display: none;
  flex-direction: column; justify-content: center; align-items: center;
  gap: 5px; width: 40px; height: 40px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.nav-toggle span {
  display: block; width: 22px; height: 2px;
  background: var(--txt); border-radius: 2px;
  transition: transform 0.3s var(--eo), opacity 0.2s;
}
.nav-toggle--open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle--open span:nth-child(2) { opacity: 0; }
.nav-toggle--open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-drawer {
  display: none;
  position: fixed; inset: 0; top: 90px;
  background: #071e27;
  border-top: 1px solid rgba(52,192,206,0.18);
  flex-direction: column; gap: 2px;
  padding: 20px 16px 32px;
  z-index: 998;
  overflow-y: auto;
}
.nav-drawer--open { display: flex; }
.nd-link {
  font-size: 22px; font-weight: 600;
  color: #e9f3f2; padding: 15px 18px;
  border-radius: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: background 0.2s, color 0.2s;
}
.nd-link:last-of-type { border-bottom: none; }
.nd-link:hover { background: rgba(52,192,206,0.1); color: #34c0ce; }
.nd-link--cta {
  margin-top: 16px;
  background: var(--gold); color: #04161c;
  text-align: center; font-weight: 700;
  padding: 18px; border-radius: 12px;
  border-bottom: none;
  font-size: 18px; letter-spacing: 0.01em;
}
.nd-link--cta:hover { background: var(--gold-light); color: #04161c; }

/* ── 900px tablet ── */
@media (max-width: 900px) {
  .nav { padding: 0 22px; }
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }

  .hero-desc { font-size: 15px; }
  .call-stage { grid-template-columns: 1fr; gap: 32px; padding: 100px 20px 60px; }
  .call-caption { min-height: 3.6em; font-size: 22px; }
  .call-card { max-width: 480px; width: 100%; margin: 0 auto; }

  .scene-flow { overflow: hidden; }
  .flow-pin { min-height: auto; padding: 80px 0 60px; }
  .flow-track { flex-direction: column; padding: 0 5vw; gap: 20px; }
  .flow-step { flex: none; width: 100%; max-width: 600px; margin: 0 auto; }
  .flow-progress { display: none; }

  .scene-stats { padding: 80px 5vw; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 44px; }

  .scene-branchen { padding: 70px 0; }

  .scene-pakete { padding: 90px 5vw 100px; }
  .pakete-title { font-size: clamp(28px, 5.5vw, 44px); }
  .pakete-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }

  .scene-compare { padding: 80px 4vw 90px; }
  .cmp-sub { font-size: 13.5px; }

  .scene-faq { padding: 80px 5vw 100px; }

  .scene-cta { padding: 110px 5vw 120px; }
  .cta-aurora--1 { width: 340px; height: 340px; }
  .cta-aurora--2 { width: 280px; height: 280px; }

  .footer { padding: 36px 24px; justify-content: center; text-align: center; }
  .footer-links { justify-content: center; }
}

/* ── 640px mobile ── */
@media (max-width: 640px) {
  .hero-title { font-size: clamp(36px, 9.5vw, 52px); }
  .hero-desc { font-size: 14px; margin-top: 20px; }
  .hero-scroll { display: none; }


  .call-stage { padding: 90px 16px 50px; gap: 24px; }
  .call-caption { font-size: 20px; min-height: 4em; }
  .call-card { border-radius: 14px; }
  .msg p { font-size: 12.5px; }

  .flow-step { padding: 28px 24px 32px; }
  .flow-num { font-size: 52px; }

  .scene-stats { padding: 60px 5vw; }
  .stat-num { font-size: clamp(36px, 9vw, 60px); }

  .marquee-track span { font-size: clamp(16px, 4.5vw, 24px); padding: 10px 20px; }

  .scene-pakete { padding: 70px 5vw 80px; }
  .paket { padding: 32px 24px; }
  .paket-price { font-size: 32px; }

  .scene-compare { padding: 60px 4vw 70px; }
  .cmp-title, .faq-title { font-size: clamp(26px, 7vw, 40px); }

  .scene-faq { padding: 60px 5vw 80px; }
  .faq-item summary { font-size: 14.5px; padding: 16px 44px 16px 18px; }

  .scene-cta { padding: 80px 5vw 90px; }
  .cta-title { font-size: clamp(30px, 8.5vw, 50px); }
  .cta-sub { font-size: 15px; }
  .cta-btn { font-size: 15px; padding: 15px 28px; }
  .cta-hints { flex-wrap: wrap; gap: 14px; }

  .footer { padding: 32px 20px; font-size: 13px; }
  .footer-links { flex-wrap: wrap; gap: 14px; }

  .ck-bar { padding: 14px 16px; }
  .ck-bar-inner { flex-direction: column; align-items: stretch; gap: 12px; }
  .ck-bar-btns { justify-content: stretch; }
  .ck-btn { flex: 1; text-align: center; }
}

/* ── 480px small phone ── */
@media (max-width: 480px) {
  .call-card { border-radius: 12px; }
  .msg { max-width: 95%; }
  .msg p { font-size: 12px; padding: 9px 12px; }
  .stats-grid { gap: 32px; }
  .paket-price { font-size: 28px; }
}

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .grain, .progress, .hero-scroll { display: none; }
  .call-caption .cap { position: static; opacity: 1 !important; display: block; margin-bottom: 0.6em; font-size: 0.6em; }
  .call-caption { min-height: 0; }
}

/* ════ COOKIE BANNER ════ */
.ck-bar {
  position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%);
  z-index: 9999; width: min(760px, calc(100vw - 32px));
  background: var(--ink-soft); border: 1px solid rgba(52,192,206,0.2);
  border-radius: 14px; box-shadow: 0 8px 40px rgba(0,0,0,0.5);
  padding: 18px 24px;
}
.ck-bar[hidden] { display: none; }
.ck-bar-inner { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.ck-bar-txt { flex: 1; font-size: 13.5px; color: var(--txt-dim); min-width: 200px; }
.ck-bar-txt a { color: var(--aqua); text-decoration: underline; text-underline-offset: 3px; }
.ck-bar-btns { display: flex; gap: 10px; flex-shrink: 0; }
.ck-btn {
  font: 600 13px/1 'Instrument Sans', sans-serif;
  padding: 9px 18px; border-radius: 8px; cursor: pointer;
  white-space: nowrap; border: none;
}
.ck-btn--ghost {
  background: rgba(255,255,255,0.07); color: var(--txt-dim);
  border: 1px solid rgba(255,255,255,0.12);
}
.ck-btn--ghost:hover { background: rgba(255,255,255,0.12); }
.ck-btn--accept { background: var(--aqua); color: var(--ink); }
.ck-btn--accept:hover { background: var(--petrol); color: #fff; }

/* ════ CONTACT MODAL ════ */
.cmodal-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(4,22,28,0.82); backdrop-filter: blur(6px);
  z-index: 9999; align-items: center; justify-content: center; padding: 20px;
}
.cmodal-overlay--open { display: flex; }
.cmodal {
  background: #0a2530;
  border: 1px solid rgba(52,192,206,0.2);
  border-radius: 20px; width: 100%; max-width: 540px;
  max-height: 92vh; overflow-y: auto;
  padding: 44px 40px 40px; position: relative;
  box-shadow: 0 32px 80px rgba(4,22,28,0.7);
}
.cmodal-close {
  position: absolute; top: 16px; right: 20px;
  background: none; border: none; font-size: 24px;
  color: var(--txt-dim); cursor: pointer; line-height: 1;
  padding: 4px 8px; border-radius: 6px;
  transition: color 0.15s, background 0.15s;
}
.cmodal-close:hover { color: var(--txt); background: rgba(255,255,255,0.06); }
.cmodal-title {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 26px; font-weight: 700; color: var(--txt); margin: 0 0 6px;
}
.cmodal-sub { font-size: 14px; color: var(--txt-dim); margin: 0 0 28px; }
.cform-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.cform-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.cform-label { font-size: 13px; font-weight: 500; color: var(--txt-dim); }
.cform-input {
  padding: 11px 14px;
  border: 1.5px solid rgba(52,192,206,0.18); border-radius: 10px;
  font-size: 14px; color: var(--txt);
  background: rgba(255,255,255,0.05);
  outline: none; width: 100%; font-family: inherit;
  transition: border-color 0.18s, box-shadow 0.18s;
}
.cform-input:focus { border-color: var(--aqua); box-shadow: 0 0 0 3px rgba(52,192,206,0.12); }
.cform-input::placeholder { color: rgba(233,243,242,0.3); }
.cform-input option { background: #0a2530; color: var(--txt); }
.cform-textarea { resize: vertical; min-height: 100px; }
.cform-submit {
  width: 100%; padding: 14px;
  background: var(--gold); color: #04161c;
  border: none; border-radius: 10px;
  font-size: 15px; font-weight: 700;
  font-family: 'Bricolage Grotesque', sans-serif;
  cursor: pointer; transition: background 0.18s, transform 0.15s; margin-top: 8px;
}
.cform-submit:hover { background: var(--gold-light); transform: translateY(-1px); }
.cform-submit:disabled { opacity: 0.6; cursor: default; transform: none; }
.cform-done { text-align: center; padding: 40px 20px; display: none; }
.cform-done-icon {
  width: 52px; height: 52px; background: rgba(52,192,206,0.12);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 24px; color: var(--aqua); margin: 0 auto 16px;
}
.cform-done h4 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 22px; color: var(--txt); margin: 0 0 8px;
}
.cform-done p { font-size: 14px; color: var(--txt-dim); margin: 0; }
.cform-fail {
  background: rgba(229,57,53,0.08); border: 1px solid rgba(229,57,53,0.3);
  border-radius: 10px; padding: 12px 16px;
  font-size: 13px; color: #ff8080; margin-top: 12px; display: none;
}
.cform-fail a { color: #ff8080; }
@media (max-width: 560px) {
  .cmodal { padding: 32px 20px; }
  .cform-row { grid-template-columns: 1fr; }
}
