/* ================================================================
   MindLog – Website Stylesheet v3
   True full-width. Fluid. Immersive. Device-adaptive.
   ================================================================ */

/* ── RESET & BASE ── */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --color-primary: #2c3e8f;
  --color-primary-light: #3d52b5;
  --color-primary-dark: #1a2a6c;
  --color-accent: #4a6cf7;
  --color-accent-light: #6b8cff;
  --color-text: #1a1a2e;
  --color-text-secondary: #4b5563;
  --color-text-muted: #6b7280;
  --color-bg: #ffffff;
  --color-bg-alt: #f8f9fb;
  --color-bg-warm: #fafaf8;
  --color-border: #e5e7eb;
  --color-border-light: #f0f1f3;
  --color-success: #059669;
  --color-success-bg: #ecfdf5;
  --color-warning: #d97706;
  --color-warning-bg: #fffbeb;
  --color-error: #dc2626;

  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-xl: 24px;
  --radius-2xl: 32px;

  --shadow-sm: 0 1px 3px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.06);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.08);
  --shadow-xl: 0 16px 48px rgba(0,0,0,0.10);
  --shadow-2xl: 0 24px 72px rgba(0,0,0,0.12);

  --transition: 0.2s ease;
  --transition-slow: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);

  /* Fluid spacing – scales with viewport */
  --space-section: clamp(80px, 10vw, 140px);
  --space-container: clamp(20px, 4vw, 64px);
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-sans);
  font-size: clamp(15px, 1vw, 17px);
  line-height: 1.65;
  color: var(--color-text);
  background: var(--color-bg);
  overflow-x: hidden;
}

a {
  color: var(--color-accent);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover { color: var(--color-primary); }

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ── TYPOGRAPHY – fluid ── */
h1, h2, h3, h4 {
  font-family: var(--font-sans);
  font-weight: 700;
  line-height: 1.15;
  color: var(--color-text);
}

h1 { font-size: clamp(2.2rem, 4.5vw, 4rem); letter-spacing: -0.04em; }
h2 { font-size: clamp(1.8rem, 3.2vw, 3rem); letter-spacing: -0.03em; }
h3 { font-size: clamp(1.15rem, 1.5vw, 1.5rem); letter-spacing: -0.01em; }
h4 { font-size: clamp(1rem, 1.2vw, 1.2rem); }

p { color: var(--color-text-secondary); }
.text-muted { color: var(--color-text-muted); font-size: 0.9rem; }
.text-center { text-align: center; }
.desktop-hide { display: none; }

/* ── LAYOUT – Full-Width ── */
.container {
  width: 100%;
  padding: 0 var(--space-container);
}

.container-narrow {
  max-width: 840px;
  margin: 0 auto;
  padding: 0 var(--space-container);
}

.section {
  padding: var(--space-section) 0;
}

.section-alt {
  background: var(--color-bg-alt);
}

.section-header {
  max-width: 800px;
  margin: 0 auto clamp(48px, 5vw, 72px);
  text-align: center;
}

.section-header p {
  margin-top: 16px;
  font-size: clamp(1rem, 1.2vw, 1.2rem);
  line-height: 1.7;
}

.section-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-accent);
  margin-bottom: 14px;
  padding: 5px 16px;
  background: rgba(74, 108, 247, 0.07);
  border-radius: 20px;
}

/* Gradient section dividers */
.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-border), transparent);
  border: none;
  margin: 0;
}

/* ── NAVIGATION – full-width ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.82);
  backdrop-filter: blur(24px) saturate(1.4);
  -webkit-backdrop-filter: blur(24px) saturate(1.4);
  border-bottom: 1px solid transparent;
  transition: all 0.35s ease;
}

.nav.scrolled {
  box-shadow: 0 1px 24px rgba(0,0,0,0.05);
  border-bottom-color: rgba(0,0,0,0.04);
}

.nav-inner {
  width: 100%;
  padding: 0 var(--space-container);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-logo-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

.nav-logo-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 8px;
}

.nav-logo-text {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-text);
  letter-spacing: -0.02em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.5vw, 40px);
  list-style: none;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text-secondary);
  transition: color var(--transition);
  position: relative;
}

.nav-links a:hover { color: var(--color-text); }

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-accent);
  border-radius: 1px;
  transition: width 0.3s ease;
}

.nav-links a:hover::after { width: 100%; }

.nav-cta {
  background: var(--color-primary);
  color: #fff !important;
  padding: 10px 24px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.9rem;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}

.nav-cta::after { display: none !important; }

.nav-cta:hover {
  background: var(--color-primary-light);
  color: #fff !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(44, 62, 143, 0.3);
}

/* Mobile menu */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-text);
  margin: 5px 0;
  transition: var(--transition);
  border-radius: 1px;
}

/* ── HERO – truly full-width, immersive ── */
.hero {
  padding: 0;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(168deg, #080e27 0%, #0d1b4a 25%, #1a2a6c 55%, #2c3e8f 80%, #3d52b5 100%);
}

.hero::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -15%;
  width: 70%;
  height: 180%;
  background: radial-gradient(ellipse at center, rgba(74,108,247,0.18) 0%, transparent 65%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 220px;
  background: linear-gradient(to top, var(--color-bg-alt) 0%, transparent 100%);
  pointer-events: none;
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 6vw, 100px);
  align-items: center;
  padding: clamp(120px, 15vh, 180px) 0 clamp(100px, 12vh, 160px);
}

.hero-content h1 {
  margin-bottom: 24px;
  color: #fff;
  line-height: 1.08;
}

.hero-content h1 .highlight {
  background: linear-gradient(135deg, var(--color-accent-light) 0%, #a5b4fc 50%, #c4b5fd 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-content .hero-sub {
  font-size: clamp(1.05rem, 1.3vw, 1.25rem);
  color: rgba(255,255,255,0.65);
  margin-bottom: 40px;
  line-height: 1.8;
  max-width: 560px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero .btn-primary {
  background: #fff;
  color: var(--color-primary);
  box-shadow: 0 4px 24px rgba(0,0,0,0.15);
}

.hero .btn-primary:hover {
  background: #f0f4ff;
  color: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 36px rgba(0,0,0,0.22);
}

.hero .btn-secondary {
  color: rgba(255,255,255,0.88);
  border-color: rgba(255,255,255,0.22);
}

.hero .btn-secondary:hover {
  color: #fff;
  border-color: rgba(255,255,255,0.45);
  background: rgba(255,255,255,0.07);
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.hero-image-placeholder {
  width: 100%;
  max-width: 560px;
  aspect-ratio: 4/3;
  background: rgba(255,255,255,0.04);
  border-radius: var(--radius-2xl);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
  box-shadow: 0 32px 80px rgba(0,0,0,0.35), 0 0 0 1px rgba(255,255,255,0.05) inset;
  transform: perspective(1200px) rotateY(-3deg) rotateX(1deg);
  transition: transform 0.7s ease;
}

.hero-image-placeholder:hover {
  transform: perspective(1200px) rotateY(0deg) rotateX(0deg);
}

.hero-image-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Floating glow decorations */
.hero-glow-1, .hero-glow-2 {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
}

.hero-glow-1 {
  width: 500px;
  height: 500px;
  background: rgba(74, 108, 247, 0.18);
  top: 8%;
  right: -3%;
}

.hero-glow-2 {
  width: 350px;
  height: 350px;
  background: rgba(107, 140, 255, 0.12);
  bottom: 18%;
  left: 8%;
}

/* Scroll indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 48px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.35);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: pulseDown 2s ease infinite;
}

.hero-scroll-indicator .scroll-line {
  width: 1px;
  height: 32px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.3), transparent);
}

@keyframes pulseDown {
  0%, 100% { opacity: 0.4; transform: translateX(-50%) translateY(0); }
  50% { opacity: 0.7; transform: translateX(-50%) translateY(6px); }
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  line-height: 1.4;
}

.btn-primary {
  background: var(--color-primary);
  color: #fff;
}

.btn-primary:hover {
  background: var(--color-primary-light);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(44, 62, 143, 0.25);
}

.btn-secondary {
  background: transparent;
  color: var(--color-primary);
  border: 1.5px solid var(--color-border);
}

.btn-secondary:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
  background: var(--color-bg-alt);
}

.btn-accent { background: var(--color-accent); color: #fff; }
.btn-accent:hover { background: var(--color-accent-light); color: #fff; transform: translateY(-2px); }

.btn-lg {
  padding: 16px 40px;
  font-size: 1.05rem;
  border-radius: var(--radius-md);
}

/* ── PROBLEM SECTION ── */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2.5vw, 36px);
  max-width: 1400px;
  margin: 0 auto;
}

.problem-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: clamp(28px, 3vw, 44px) clamp(24px, 2.5vw, 36px);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.problem-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.problem-card:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-6px);
  border-color: transparent;
}

.problem-card:hover::before { opacity: 1; }

.problem-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #f0f4ff 0%, #e8edff 100%);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}

.problem-icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--color-accent);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.problem-card h3 { margin-bottom: 12px; }
.problem-card p { font-size: 0.95rem; line-height: 1.65; }

/* ── STATS BAR – full-width ── */
.stats-bar {
  background: linear-gradient(135deg, #0a1232 0%, #0d1b4a 40%, var(--color-primary-dark) 100%);
  padding: clamp(56px, 6vw, 88px) 0;
  position: relative;
  overflow: hidden;
}

.stats-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.025'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(24px, 3vw, 48px);
  text-align: center;
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

.stat-item { padding: 24px 0; }

.stat-item .stat-value {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-item .stat-label {
  font-size: clamp(0.8rem, 0.95vw, 0.95rem);
  color: rgba(255,255,255,0.55);
  margin-top: 4px;
  line-height: 1.5;
}

.stat-item .stat-source {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.25);
  margin-top: 4px;
}

/* ── HOW IT WORKS ── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2.5vw, 36px);
  counter-reset: step;
  max-width: 1400px;
  margin: 0 auto;
}

.steps-grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

.step-card {
  position: relative;
  text-align: center;
  padding: clamp(32px, 3vw, 48px) clamp(20px, 2vw, 28px);
  border-radius: var(--radius-xl);
  background: var(--color-bg);
  border: 1px solid var(--color-border-light);
  transition: all 0.4s ease;
}

.step-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
  border-color: transparent;
}

.step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 800;
  margin: 0 auto 20px;
  box-shadow: 0 6px 24px rgba(74, 108, 247, 0.3);
}

.step-card h3 { margin-bottom: 12px; }
.step-card p { font-size: 0.95rem; line-height: 1.6; }
.step-connector { display: none; }

/* ── EXPORT / PRAXIS PREVIEW – full-width ── */
.export-section {
  background: linear-gradient(170deg, var(--color-bg-alt) 0%, #fff 40%, #f0f4ff 100%);
  position: relative;
}

.export-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

.export-content h2 { margin-bottom: 20px; }

.export-content > p {
  font-size: clamp(1rem, 1.1vw, 1.15rem);
  margin-bottom: 20px;
  line-height: 1.7;
}

.export-features {
  list-style: none;
  margin: 24px 0 32px;
}

.export-features li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 16px;
  font-size: 0.95rem;
  color: var(--color-text-secondary);
}

.export-features li .check {
  width: 24px;
  height: 24px;
  background: var(--color-success-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.export-features li .check svg {
  width: 13px;
  height: 13px;
  stroke: var(--color-success);
  fill: none;
  stroke-width: 2.5;
}

.export-image-placeholder {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-2xl);
  overflow: hidden;
  aspect-ratio: 210/297;
  max-width: 460px;
  margin: 0 auto;
  position: relative;
  transition: transform 0.6s ease, box-shadow 0.6s ease;
}

.export-image-placeholder:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 40px 100px rgba(0,0,0,0.14);
}

.export-image-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.export-image-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0,0,0,0.6);
  color: #fff;
  text-align: center;
  padding: 8px;
  font-size: 0.8rem;
}

/* ── TRUST / PRIVACY ── */
.trust-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(20px, 2.5vw, 32px);
  max-width: 1400px;
  margin: 0 auto;
}

.trust-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: clamp(24px, 2.5vw, 36px);
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: all 0.35s ease;
}

.trust-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: transparent;
}

.trust-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, #f0f4ff 0%, #e8edff 100%);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.trust-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--color-accent);
  fill: none;
  stroke-width: 1.8;
}

.trust-card h4 { margin-bottom: 8px; }
.trust-card p { font-size: 0.92rem; line-height: 1.6; }

/* ── SURVEY SECTION ── */
.survey-section {
  background: linear-gradient(170deg, #080e27 0%, #0d1b4a 40%, var(--color-primary) 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.survey-section::before {
  content: '';
  position: absolute;
  top: -25%;
  right: -8%;
  width: 55%;
  height: 150%;
  background: radial-gradient(ellipse, rgba(74,108,247,0.1) 0%, transparent 65%);
  pointer-events: none;
}

.survey-section .section-header { position: relative; }
.survey-section .section-header p { color: rgba(255,255,255,0.65); }

.survey-section .section-label {
  color: var(--color-accent-light);
  background: rgba(107, 140, 255, 0.1);
}

.survey-section h2 { color: #fff; }

.survey-container {
  max-width: 700px;
  margin: 0 auto;
  background: #fff;
  border-radius: var(--radius-2xl);
  padding: clamp(32px, 4vw, 52px);
  box-shadow: 0 32px 88px rgba(0,0,0,0.28);
  position: relative;
}

.survey-container h3,
.survey-container h4,
.survey-container p,
.survey-container label {
  color: var(--color-text);
}

/* Survey form */
.survey-progress {
  display: flex;
  gap: 6px;
  margin-bottom: 36px;
}

.survey-progress-step {
  flex: 1;
  height: 4px;
  background: var(--color-border);
  border-radius: 2px;
  transition: background 0.3s ease;
}

.survey-progress-step.active { background: var(--color-accent); }
.survey-progress-step.completed { background: var(--color-success); }

.survey-question {
  display: none;
  animation: fadeIn 0.35s ease;
}

.survey-question.active { display: block; }

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.survey-question-number {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}

.survey-question h3 { font-size: 1.2rem; margin-bottom: 6px; }

.survey-question .question-hint {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-bottom: 24px;
}

/* Radio / Checkbox */
.option-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}

.option-item { position: relative; }

.option-item input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.option-item label {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: var(--color-bg-alt);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 500;
  transition: all var(--transition);
  user-select: none;
}

.option-item label:hover {
  border-color: var(--color-accent);
  background: #f0f4ff;
}

.option-item input:checked + label {
  border-color: var(--color-accent);
  background: #f0f4ff;
  color: var(--color-primary);
}

.option-indicator {
  width: 20px;
  height: 20px;
  border: 2px solid var(--color-border);
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

.option-indicator-checkbox { border-radius: 5px; }

.option-item input:checked + label .option-indicator {
  border-color: var(--color-accent);
  background: var(--color-accent);
}

.option-item input:checked + label .option-indicator::after {
  content: '';
  width: 8px;
  height: 8px;
  background: #fff;
  border-radius: 50%;
}

.option-item input:checked + label .option-indicator-checkbox::after {
  content: '';
  width: 10px;
  height: 10px;
  background: #fff;
  border-radius: 2px;
  clip-path: polygon(20% 50%, 40% 70%, 80% 30%, 85% 35%, 40% 80%, 15% 55%);
}

/* Textarea & Input */
.survey-textarea {
  width: 100%;
  min-height: 100px;
  padding: 14px 16px;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--color-text);
  background: var(--color-bg-alt);
  resize: vertical;
  transition: border-color var(--transition);
  margin-bottom: 24px;
}

.survey-textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  background: #fff;
}

.survey-textarea::placeholder { color: var(--color-text-muted); }

.survey-input {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--color-text);
  background: var(--color-bg-alt);
  transition: border-color var(--transition);
  margin-bottom: 16px;
}

.survey-input:focus {
  outline: none;
  border-color: var(--color-accent);
  background: #fff;
}

/* Survey navigation */
.survey-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 8px;
}

.survey-nav .btn { min-width: 120px; }
.survey-step-count { font-size: 0.85rem; color: var(--color-text-muted); }

/* Survey success */
.survey-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
  animation: fadeIn 0.4s ease;
}

.survey-success.active { display: block; }

.survey-success-icon {
  width: 72px;
  height: 72px;
  background: var(--color-success-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.survey-success-icon svg {
  width: 36px;
  height: 36px;
  stroke: var(--color-success);
  fill: none;
  stroke-width: 2;
}

.survey-success h3 { font-size: 1.5rem; margin-bottom: 12px; }
.survey-success p { font-size: 1rem; line-height: 1.6; }

/* ── FAQ – full-width ── */
.faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--color-border);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-sans);
  font-size: clamp(1rem, 1.1vw, 1.15rem);
  font-weight: 600;
  color: var(--color-text);
  transition: color var(--transition);
}

.faq-question:hover { color: var(--color-accent); }

.faq-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-answer-inner {
  padding: 0 0 24px;
  font-size: 1rem;
  color: var(--color-text-secondary);
  line-height: 1.7;
}

/* ── CTA SECTION ── */
.cta-section {
  padding: var(--space-section) 0;
  text-align: center;
  background: linear-gradient(180deg, var(--color-bg) 0%, #f0f4ff 100%);
}

.cta-box {
  max-width: 900px;
  margin: 0 auto;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
  border-radius: var(--radius-2xl);
  padding: clamp(44px, 5vw, 72px) clamp(32px, 4vw, 64px);
  position: relative;
  overflow: hidden;
}

.cta-box::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 55%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(255,255,255,0.08) 0%, transparent 65%);
  pointer-events: none;
}

.cta-box h2 { margin-bottom: 16px; color: #fff; position: relative; }

.cta-box p {
  font-size: clamp(1rem, 1.15vw, 1.2rem);
  margin-bottom: 36px;
  color: rgba(255,255,255,0.78);
  position: relative;
}

.cta-box .btn-primary {
  background: #fff;
  color: var(--color-primary);
  box-shadow: 0 4px 24px rgba(0,0,0,0.15);
  position: relative;
}

.cta-box .btn-primary:hover {
  background: #f8f9fb;
  transform: translateY(-2px);
  box-shadow: 0 8px 36px rgba(0,0,0,0.2);
}

/* ── FOOTER – full-width ── */
.footer {
  background: #0a0e1a;
  color: rgba(255,255,255,0.45);
  padding: clamp(48px, 5vw, 72px) 0 clamp(32px, 3vw, 44px);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: clamp(32px, 4vw, 64px);
  margin-bottom: 40px;
}

.footer-brand .nav-logo-icon {
  background: rgba(255,255,255,0.08);
}

.footer-brand .nav-logo-text { color: #fff; }

.footer-brand p {
  margin-top: 16px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.35);
  line-height: 1.6;
}

.footer h4 {
  color: rgba(255,255,255,0.75);
  font-size: 0.83rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }

.footer-links a {
  color: rgba(255,255,255,0.4);
  font-size: 0.9rem;
  transition: color var(--transition);
}

.footer-links a:hover { color: #fff; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
}

/* ── SCROLL ANIMATIONS ── */
.slide-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.slide-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.slide-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.slide-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.slide-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.slide-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.scale-in {
  opacity: 0;
  transform: scale(0.94);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.scale-in.visible {
  opacity: 1;
  transform: scale(1);
}

/* Staggered delays */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* ── RESPONSIVE – Tablet ── */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .hero-content h1 { margin-left: auto; margin-right: auto; }
  .hero-content .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }

  .hero-visual { order: -1; }

  .hero-image-placeholder {
    max-width: 400px;
    transform: none;
  }

  .hero-image-placeholder:hover { transform: none; }

  .problem-grid {
    grid-template-columns: 1fr;
    max-width: 560px;
    margin: 0 auto;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px 24px;
  }

  .steps-grid,
  .steps-grid-4 {
    grid-template-columns: 1fr 1fr;
    max-width: 640px;
    margin: 0 auto;
  }

  .export-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
  }

  .export-image-placeholder { max-width: 320px; }

  .trust-grid {
    grid-template-columns: 1fr;
    max-width: 600px;
    margin: 0 auto;
  }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .cta-box { max-width: 640px; }
}

/* ════════════════════════════════════════════════════
   MOBILE – Fullscreen Menu, compact layout, no overflow
   ════════════════════════════════════════════════════ */
@media (max-width: 640px) {

  /* ── FIX OVERFLOW – prevent horizontal scroll ── */
  html, body {
    overflow-x: hidden;
    max-width: 100vw;
  }

  .hero { overflow: hidden; }
  .hero-glow-1, .hero-glow-2 { display: none; }
  .hero-scroll-indicator { display: none; }

  /* ── FLUID SPACING tighter on mobile ── */
  :root {
    --space-section: clamp(56px, 8vw, 80px);
    --space-container: clamp(18px, 5vw, 28px);
  }

  /* ── NAV – FULLSCREEN OVERLAY MENU ── */
  .nav {
    backdrop-filter: blur(12px) saturate(1.2);
    -webkit-backdrop-filter: blur(12px) saturate(1.2);
  }
  .nav-inner { height: 64px; }
  .nav-links { display: none; }
  .nav-toggle { display: block; z-index: 1002; position: relative; }

  /* When menu is open, make nav bar part of the dark overlay */
  .nav.menu-open {
    background: #080e27 !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    border-bottom-color: transparent !important;
  }

  .nav.menu-open .nav-logo-text {
    color: #fff;
  }

  .nav.menu-open .nav-toggle span {
    background: #fff;
  }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #080e27;
    z-index: 1001;
    padding: 90px 32px 48px;
    gap: 0;
    align-items: stretch;
    justify-content: flex-start;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .nav-links.open li {
    border-bottom: 1px solid rgba(255,255,255,0.08);
    list-style: none;
  }

  .nav-links.open li:last-child {
    border-bottom: none;
    margin-top: 24px;
  }

  .nav-links.open a {
    color: rgba(255,255,255,0.85) !important;
    font-size: 1.15rem;
    font-weight: 600;
    padding: 18px 0;
    display: block;
    letter-spacing: -0.01em;
    transition: color 0.2s, padding-left 0.2s;
  }

  .nav-links.open a:hover {
    color: #fff !important;
    padding-left: 8px;
  }

  .nav-links.open a::after { display: none !important; }

  .nav-links.open .nav-cta {
    background: #fff !important;
    color: var(--color-primary) !important;
    border: none;
    border-radius: var(--radius-md);
    text-align: center;
    padding: 16px 24px !important;
    font-size: 1rem;
    font-weight: 700;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  }

  /* Toggle becomes X when open */
  .nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  .nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  /* ── HERO compact ── */
  .hero {
    min-height: auto;
    padding: 0;
  }

  .hero-grid {
    gap: 28px;
    padding: clamp(90px, 14vh, 130px) 0 clamp(48px, 8vh, 72px);
  }

  .hero-content h1 {
    font-size: clamp(1.7rem, 7vw, 2.4rem);
    line-height: 1.12;
    letter-spacing: -0.03em;
  }

  .hero-content .hero-sub {
    font-size: 0.95rem;
    line-height: 1.65;
    margin-bottom: 28px;
    max-width: 100%;
  }

  .hero-actions {
    flex-direction: column;
    gap: 12px;
  }

  .hero-actions .btn {
    width: 100%;
    padding: 14px 24px;
    font-size: 0.95rem;
  }

  .hero-image-placeholder {
    max-width: 280px;
    margin: 0 auto;
  }

  /* ── SECTION HEADERS compact ── */
  .section-header {
    margin-bottom: clamp(32px, 5vw, 48px);
  }

  .section-header p {
    font-size: 0.88rem;
    line-height: 1.5;
  }

  .section-label {
    font-size: 0.72rem;
    padding: 4px 12px;
    margin-bottom: 10px;
  }

  /* ── MOBILE TEXT: shorter via utility class ── */
  .mobile-hide {
    display: none !important;
  }

  .desktop-hide {
    display: inline !important;
  }

  /* ── PROBLEM CARDS compact ── */
  .problem-grid {
    gap: 14px;
    max-width: 100%;
  }

  .problem-card {
    padding: 20px;
    display: flex;
    gap: 14px;
    align-items: flex-start;
  }

  .problem-card .problem-icon {
    margin-bottom: 0;
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, #eef2ff 0%, #e0e7ff 100%);
  }

  .problem-card .problem-icon svg {
    width: 22px;
    height: 22px;
  }

  .problem-card h3 {
    font-size: 1rem;
    margin-bottom: 6px;
  }

  .problem-card p {
    font-size: 0.88rem;
    line-height: 1.5;
  }

  /* ── STATS compact ── */
  .stats-bar {
    padding: clamp(36px, 5vw, 56px) 0;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px 16px;
  }

  .stat-item { padding: 12px 0; }

  .stat-item .stat-value {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
  }

  .stat-item .stat-label {
    font-size: 0.75rem;
    line-height: 1.4;
  }

  .stat-item .stat-source {
    font-size: 0.6rem;
  }

  /* ── STEPS compact ── */
  .steps-grid,
  .steps-grid-4 {
    grid-template-columns: 1fr;
    gap: 14px;
    max-width: 100%;
  }

  .step-card {
    padding: 20px;
    text-align: left;
    display: flex;
    gap: 14px;
    align-items: flex-start;
  }

  .step-number {
    margin: 0;
    width: 44px;
    height: 44px;
    min-width: 44px;
    font-size: 1.1rem;
    box-shadow: 0 3px 12px rgba(74, 108, 247, 0.25);
  }

  .step-card h3 { font-size: 1rem; margin-bottom: 6px; }
  .step-card p { font-size: 0.88rem; line-height: 1.5; }

  /* ── EXPORT compact ── */
  .export-grid {
    gap: 28px;
    max-width: 100%;
  }

  .export-content h2 {
    font-size: clamp(1.4rem, 5vw, 1.8rem);
  }

  .export-features li {
    font-size: 0.88rem;
    margin-bottom: 8px;
    gap: 12px;
    padding: 4px 0;
  }

  .export-features li .check {
    width: 20px;
    height: 20px;
    min-width: 20px;
  }

  .export-features li .check svg {
    width: 11px;
    height: 11px;
  }

  .export-image-placeholder {
    max-width: 240px;
  }

  /* ── TRUST CARDS compact ── */
  .trust-grid {
    gap: 14px;
    max-width: 100%;
  }

  .trust-card {
    padding: 20px;
    gap: 14px;
  }

  .trust-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, #eef2ff 0%, #e0e7ff 100%);
  }

  .trust-icon svg {
    width: 20px;
    height: 20px;
  }

  .trust-card h4 { font-size: 1rem; margin-bottom: 6px; }
  .trust-card p { font-size: 0.88rem; line-height: 1.5; }

  /* ── SURVEY compact – extra top-padding so header is visible ── */
  .survey-section {
    padding-top: calc(var(--space-section) + 72px);
  }

  .survey-section .section-header {
    margin-bottom: clamp(28px, 5vw, 40px);
  }

  .survey-container {
    padding: clamp(24px, 5vw, 36px);
    border-radius: var(--radius-xl);
  }

  .survey-question h3 {
    font-size: 1.05rem;
    line-height: 1.4;
  }

  .option-item label {
    padding: 12px 14px;
    font-size: 0.9rem;
    gap: 12px;
  }

  /* ── FAQ compact ── */
  .faq-question {
    font-size: 0.9rem;
    padding: 14px 0;
  }

  .faq-answer-inner {
    font-size: 0.85rem;
    line-height: 1.55;
    padding-bottom: 16px;
  }

  .faq-icon {
    width: 20px;
    height: 20px;
  }

  /* ── CTA compact ── */
  .cta-box {
    padding: clamp(32px, 6vw, 48px) clamp(24px, 4vw, 36px);
    border-radius: var(--radius-xl);
  }

  .cta-box h2 {
    font-size: clamp(1.3rem, 5vw, 1.7rem);
    margin-bottom: 12px;
  }

  .cta-box p { margin-bottom: 24px; }

  /* ── FOOTER compact ── */
  .footer {
    padding: 40px 0 28px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-bottom: 24px;
  }

  .footer-brand p {
    font-size: 0.85rem;
  }

  /* ── DIVIDERS lighter on mobile ── */
  .section-divider { opacity: 0.5; }

  /* ── MOBILE VISUAL POLISH ── */

  /* Einheitliches Karten-Design: Alle Cards bekommen denselben sauberen Look */
  /* Abgerundete Karten, dezenter Schatten, kein doppelter Rand */
  .problem-card,
  .step-card,
  .trust-card {
    background: #fff;
    border: 1px solid var(--color-border-light);
    border-radius: var(--radius-lg);
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  }

  /* Gradient-Top aus dem ::before entfernen – sauberer ohne */
  .problem-card::before {
    display: none;
  }

  /* H2 Überschriften: dezenter Akzent-Strich */
  .section-header h2 {
    position: relative;
    display: inline-block;
    padding-bottom: 12px;
  }

  .section-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
    border-radius: 2px;
  }

  .survey-section .section-header h2::after {
    background: linear-gradient(90deg, var(--color-accent-light), #c4b5fd);
  }

  /* Export Feature-Liste kompakter */
  .export-features {
    margin: 16px 0 24px;
  }

  /* Schnellere Stagger-Delays */
  .delay-1 { transition-delay: 0.05s; }
  .delay-2 { transition-delay: 0.1s; }
  .delay-3 { transition-delay: 0.15s; }
  .delay-4 { transition-delay: 0.2s; }
}

/* ── Small phone ── */
@media (max-width: 380px) {
  .stats-grid { grid-template-columns: 1fr; }

  .hero-content h1 { font-size: 1.55rem; }

  .section-header p {
    font-size: 0.82rem;
  }

  .problem-card, .step-card, .trust-card {
    gap: 12px;
  }

  .problem-card .problem-icon,
  .step-number,
  .trust-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
  }

  .problem-card .problem-icon svg,
  .trust-icon svg {
    width: 18px;
    height: 18px;
  }

  .step-number {
    font-size: 1rem;
  }

  .survey-section {
    padding-top: calc(var(--space-section) + 80px);
  }

  .faq-question {
    font-size: 0.85rem;
    padding: 12px 0;
  }
}

/* ════════════════════════════════════════════════════
   ADDITIONAL FEATURES – Ticker, Typed Text, Tilt Cards
   ════════════════════════════════════════════════════ */

/* ── TICKER / MARQUEE BAR ── */
.ticker-bar {
  background: var(--color-bg-alt);
  border-bottom: 1px solid var(--color-border-light);
  overflow: hidden;
  padding: 14px 0;
  position: relative;
}

.ticker-bar::before,
.ticker-bar::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}

.ticker-bar::before {
  left: 0;
  background: linear-gradient(to right, var(--color-bg-alt), transparent);
}

.ticker-bar::after {
  right: 0;
  background: linear-gradient(to left, var(--color-bg-alt), transparent);
}

.ticker-track {
  display: flex;
  align-items: center;
  gap: 32px;
  animation: tickerScroll 30s linear infinite;
  width: max-content;
}

.ticker-item {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  white-space: nowrap;
}

.ticker-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--color-accent);
  opacity: 0.35;
  flex-shrink: 0;
}

@keyframes tickerScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── TYPED TEXT cursor ── */
.typed-cursor {
  display: inline-block;
  width: 2px;
  height: 1.1em;
  background: var(--color-accent-light);
  margin-left: 2px;
  vertical-align: text-bottom;
  animation: cursorBlink 0.85s step-end infinite;
}

@keyframes cursorBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

/* ── TILT / HOVER 3D on cards ── */
.tilt-card {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  transform-style: preserve-3d;
  will-change: transform;
}

/* ── ACTIVE NAV LINK indicator ── */
.nav-links a.active {
  color: var(--color-text);
}

.nav-links a.active::after {
  width: 100%;
}

/* ── SMOOTH PROGRESS BAR at very top of page ── */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent), var(--color-accent-light));
  z-index: 1001;
  width: 0%;
  transition: width 0.05s linear;
}

/* ── BACK TO TOP button ── */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  cursor: pointer;
  border: none;
  z-index: 100;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s ease, transform 0.3s ease, background 0.2s ease;
  pointer-events: none;
}

.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.back-to-top:hover {
  background: var(--color-accent);
  transform: translateY(-3px);
}

.back-to-top svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ── COOKIE BANNER ── */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: rgba(15, 23, 42, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 0;
  opacity: 0;
  transform: translateY(100%);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.cookie-banner.visible {
  opacity: 1;
  transform: translateY(0);
}

.cookie-banner.hiding {
  opacity: 0;
  transform: translateY(100%);
}

.cookie-banner-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 22px var(--space-container);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.cookie-banner-text {
  flex: 1;
}

.cookie-banner-text strong {
  color: #fff;
  font-size: 0.95rem;
  display: block;
  margin-bottom: 6px;
}

.cookie-banner-text p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.55;
  margin-bottom: 4px;
}

.cookie-link {
  font-size: 0.78rem;
  color: var(--color-accent-light) !important;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-link:hover {
  color: #fff !important;
}

.cookie-banner-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.cookie-btn {
  padding: 10px 22px;
  border: none;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
  font-family: var(--font-sans);
}

.cookie-btn-accept {
  background: #fff;
  color: var(--color-primary);
}

.cookie-btn-accept:hover {
  background: #f0f4ff;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.cookie-btn-minimal {
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.15);
}

.cookie-btn-minimal:hover {
  background: rgba(255,255,255,0.15);
  color: #fff;
}

/* ── RESPONSIVE additions ── */
@media (max-width: 640px) {
  .back-to-top {
    bottom: 20px;
    right: 20px;
    width: 42px;
    height: 42px;
  }

  .ticker-bar { padding: 10px 0; }
  .ticker-item { font-size: 0.72rem; }
  .ticker-track { gap: 20px; }
  .ticker-bar::before, .ticker-bar::after { width: 40px; }

  .scroll-progress { height: 2px; }

  /* Cookie Banner mobile */
  .cookie-banner-inner {
    flex-direction: column;
    gap: 16px;
    padding: 18px var(--space-container);
    text-align: center;
  }

  .cookie-banner-actions {
    width: 100%;
    flex-direction: column;
    gap: 8px;
  }

  .cookie-btn {
    width: 100%;
    padding: 12px 20px;
  }

  .cookie-banner-text strong {
    font-size: 0.9rem;
  }

  .cookie-banner-text p {
    font-size: 0.78rem;
  }
}
