/* ═══════════════════════════════════════════════════════════════
   SPORTBROS – Modern Redesign
   Design System: Dark/Black + Red Accent + Electric Details
   ═══════════════════════════════════════════════════════════════ */

/* ═══════════════════════════════════════════════
   PRELOADER
   ═══════════════════════════════════════════════ */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.7s ease, visibility 0.7s ease;
}
.preloader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.pre-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}
.pre-logo-img {
  width: 120px;
  height: 120px;
  object-fit: contain;
  animation: preLogoPulse 1.4s ease-in-out infinite;
  filter: drop-shadow(0 0 30px rgba(221,7,65,0.7));
}
@keyframes preLogoPulse {
  0%, 100% { transform: scale(1);    filter: drop-shadow(0 0 20px rgba(221,7,65,0.5)); }
  50%       { transform: scale(1.08); filter: drop-shadow(0 0 50px rgba(221,7,65,0.9)); }
}
.pre-bar-wrap {
  width: 200px;
  height: 2px;
  background: rgba(255,255,255,0.1);
  border-radius: 99px;
  overflow: hidden;
}
.pre-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--red), var(--red-light));
  border-radius: 99px;
  transition: width 0.05s linear;
  box-shadow: 0 0 12px var(--red-glow);
}
.pre-label {
  font-family: var(--font-head);
  font-size: 0.9rem;
  letter-spacing: 3px;
  color: var(--text-faint);
}

/* ── LOGO: Nav ── */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.nav-logo-patch {
  width: 36px;
  height: 36px;
  object-fit: contain;
  transition: filter 0.3s, transform 0.3s;
  filter: drop-shadow(0 0 0px transparent);
  flex-shrink: 0;
}
.nav-logo:hover .nav-logo-patch {
  filter: drop-shadow(0 0 10px rgba(221,7,65,0.7));
  transform: rotate(-5deg) scale(1.1);
}
.nav-logo-wordmark {
  height: 48px;
  width: auto;
  object-fit: contain;
  opacity: 0.92;
  transition: opacity 0.3s;
}
.nav-logo:hover .nav-logo-wordmark {
  opacity: 1;
}

/* ── LOGO: Footer ── */
.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1rem;
}
.footer-logo-patch {
  width: 44px;
  height: 44px;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(221,7,65,0.4));
  flex-shrink: 0;
}
.footer-logo-wordmark {
  height: 60px;
  width: auto;
  object-fit: contain;
  opacity: 0.9;
}

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

:root {
  --bg:        #0a0a0a;
  --bg2:       #111111;
  --bg3:       #1a1a1a;
  --surface:   #1e1e1e;
  --border:    rgba(255,255,255,0.08);
  --red:       #e60000;
  --red-glow:  rgba(230,0,0,0.35);
  --red-light: #ff2020;
  --text:      #ffffff;
  --text-dim:  rgba(255,255,255,0.6);
  --text-faint:rgba(255,255,255,0.35);
  --font-body: 'Inter', system-ui, sans-serif;
  --font-head: 'Bebas Neue', 'Inter', sans-serif;
  --radius:    12px;
  --radius-lg: 20px;
  --ease-out:  cubic-bezier(0.22,1,0.36,1);
}

html { scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--red); border-radius: 99px; }

/* ═══════════════════════════════════════════════
   TYPOGRAPHY UTILITIES
   ═══════════════════════════════════════════════ */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1rem;
}
.section-label::before {
  content: '';
  display: inline-block;
  width: 20px; height: 2px;
  background: var(--red);
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(2.8rem, 7vw, 6rem);
  line-height: 1;
  letter-spacing: 1px;
  color: var(--text);
  margin-bottom: 1.5rem;
}
.section-title .highlight { color: var(--red); }

.section-sub {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: var(--text-dim);
  line-height: 1.7;
  max-width: 560px;
  margin-bottom: 3rem;
}

/* ═══════════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  transition: all 0.3s var(--ease-out);
  position: relative;
  overflow: hidden;
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.08);
  transform: translateX(-100%);
  transition: transform 0.4s var(--ease-out);
}
.btn:hover::before { transform: translateX(0); }

.btn-primary {
  background: var(--red);
  color: #fff;
  box-shadow: 0 0 30px var(--red-glow);
}
.btn-primary:hover {
  background: var(--red-light);
  box-shadow: 0 0 50px var(--red-glow), 0 4px 20px rgba(230,0,0,0.4);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border);
}
.btn-ghost:hover {
  border-color: rgba(255,255,255,0.3);
  transform: translateY(-2px);
}

.btn-full { width: 100%; justify-content: center; }
.btn-arrow { transition: transform 0.3s var(--ease-out); }
.btn:hover .btn-arrow { transform: translateX(4px); }

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

.section {
  padding: 100px 0;
  position: relative;
}

/* ═══════════════════════════════════════════════
   NAVBAR
   ═══════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0;
  transition: all 0.4s var(--ease-out);
}
.navbar.scrolled {
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-head);
  font-size: 1.8rem;
  letter-spacing: 2px;
  text-decoration: none;
}
.logo-sport { color: var(--text); }
.logo-bros  { color: var(--red); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-link {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--text-dim);
  transition: color 0.2s;
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 100%;
  height: 1.5px;
  background: var(--red);
  transition: right 0.3s var(--ease-out);
}
.nav-link:hover { color: var(--text); }
.nav-link:hover::after { right: 0; }

.nav-cta {
  background: var(--red);
  color: #fff !important;
  padding: 10px 22px;
  border-radius: var(--radius);
  font-size: 0.85rem;
  font-weight: 700;
  transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
}
.nav-cta::after { display: none; }
.nav-cta:hover {
  background: var(--red-light);
  box-shadow: 0 0 20px var(--red-glow);
  transform: translateY(-1px);
}

/* Burger */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.burger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s var(--ease-out);
}
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ═══════════════════════════════════════════════
   HERO – Cinematic
   ═══════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  /* start dark, reveal after preloader */
}

/* Background */
.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  transform: scale(1.12);
  transition: transform 0s;
}
.hero-img.hero-revealed {
  animation: heroZoom 22s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  from { transform: scale(1.08); }
  to   { transform: scale(1.16); }
}

/* Film-grain noise overlay */
.hero-noise {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  opacity: 0.3;
  pointer-events: none;
  animation: noiseShift 0.12s steps(1) infinite;
}
@keyframes noiseShift {
  0%   { background-position: 0 0; }
  25%  { background-position: -10px 5px; }
  50%  { background-position: 5px -8px; }
  75%  { background-position: -5px 10px; }
  100% { background-position: 8px -3px; }
}

/* Animated grid lines */
.hero-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}
.hg-line {
  position: absolute;
  background: rgba(255,255,255,0.03);
}
.hg-v { width: 1px; top: 0; bottom: 0; }
.hg-h { height: 1px; left: 0; right: 0; }

/* Particles */
.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

/* Red sweep */
.hero-sweep {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(120deg, transparent 0%, rgba(221,7,65,0.12) 50%, transparent 100%);
  background-size: 200% 100%;
  animation: sweepAnim 6s ease-in-out infinite;
}
@keyframes sweepAnim {
  0%   { background-position: 200% 0; opacity: 0; }
  15%  { opacity: 1; }
  50%  { background-position: -100% 0; opacity: 1; }
  65%  { opacity: 0; }
  100% { background-position: -100% 0; opacity: 0; }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0,0,0,0.9) 0%,
    rgba(0,0,0,0.65) 55%,
    rgba(15,0,0,0.45) 100%
  );
}

/* Patch logo watermark */
.hero-watermark {
  position: absolute;
  bottom: -60px;
  right: -60px;
  z-index: 1;
  pointer-events: none;
}
.hero-watermark-img {
  width: 520px;
  height: 520px;
  object-fit: contain;
  opacity: 0.06;
  animation: watermarkPulse 8s ease-in-out infinite;
  filter: drop-shadow(0 0 40px rgba(221,7,65,0.15));
}
@keyframes watermarkPulse {
  0%, 100% { opacity: 0.06; transform: scale(1) rotate(0deg); }
  50%       { opacity: 0.10; transform: scale(1.03) rotate(2deg); }
}

.hero-content {
  position: relative;
  z-index: 3;
  padding: 0 24px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  padding-top: 120px;
}

/* Patch logo in hero */
.hero-patch {
  position: relative;
  display: inline-block;
  margin-bottom: 2rem;
  opacity: 0;
  transform: scale(0.6) rotate(-15deg);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.hero-patch.visible {
  opacity: 1;
  transform: scale(1) rotate(0deg);
}
.hero-patch-img {
  width: 90px;
  height: 90px;
  object-fit: contain;
  position: relative;
  z-index: 1;
  animation: patchFloat 5s ease-in-out infinite;
}
@keyframes patchFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  33%       { transform: translateY(-8px) rotate(2deg); }
  66%       { transform: translateY(-4px) rotate(-1deg); }
}
.patch-glow {
  position: absolute;
  inset: -20px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(221,7,65,0.4), transparent 70%);
  animation: glowPulse 3s ease-in-out infinite;
  z-index: 0;
}
@keyframes glowPulse {
  0%, 100% { transform: scale(1);    opacity: 0.6; }
  50%       { transform: scale(1.3);  opacity: 1; }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(230,0,0,0.15);
  border: 1px solid rgba(230,0,0,0.4);
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 99px;
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}
.hero-badge.visible {
  opacity: 1;
  transform: translateX(0);
}
.badge-dot {
  width: 6px; height: 6px;
  background: var(--red);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.4; transform: scale(0.7); }
}

.hero-title {
  font-family: var(--font-head);
  font-size: clamp(4.5rem, 14vw, 12rem);
  line-height: 0.92;
  letter-spacing: 2px;
  display: flex;
  flex-direction: column;
  margin-bottom: 2rem;
}
.title-line {
  display: block;
  overflow: visible;
}

/* ── Each line starts hidden, JS adds .line-in ── */
.tl-1, .tl-2, .tl-3 {
  display: block;
  position: relative;
  opacity: 0;
  will-change: transform, opacity, filter;
}

/* DEIN — blasts in from far left */
.tl-1 {
  transform: translateX(-120px) skewX(-6deg);
  filter: blur(12px);
  transition:
    opacity   0.5s cubic-bezier(0.22,1,0.36,1),
    transform 0.6s cubic-bezier(0.22,1,0.36,1),
    filter    0.5s ease;
}
.tl-1.line-in {
  opacity: 1;
  transform: translateX(0) skewX(0);
  filter: blur(0);
}

/* TEAMWEAR — explodes from center, overshoots then settles */
.tl-2 {
  transform: scale(0.55) translateX(-30px);
  filter: blur(20px);
  transition:
    opacity   0.55s cubic-bezier(0.34,1.56,0.64,1),
    transform 0.65s cubic-bezier(0.34,1.56,0.64,1),
    filter    0.5s ease,
    text-shadow 0.5s ease;
}
.tl-2.line-in {
  opacity: 1;
  transform: scale(1) translateX(0);
  filter: blur(0);
  text-shadow: 0 0 80px rgba(230,0,0,0.9), 0 0 30px rgba(230,0,0,0.5);
  animation: teamwearSettle 0.8s 0.65s ease forwards;
}

/* PROFI — blasts in from right */
.tl-3 {
  transform: translateX(120px) skewX(6deg);
  filter: blur(12px);
  transition:
    opacity   0.5s cubic-bezier(0.22,1,0.36,1),
    transform 0.6s cubic-bezier(0.22,1,0.36,1),
    filter    0.5s ease;
}
.tl-3.line-in {
  opacity: 1;
  transform: translateX(0) skewX(0);
  filter: blur(0);
}

/* After TEAMWEAR settles, reduce glow to normal */
@keyframes teamwearSettle {
  0%   { text-shadow: 0 0 80px rgba(230,0,0,0.9), 0 0 30px rgba(230,0,0,0.5); }
  100% { text-shadow: 0 0 60px rgba(230,0,0,0.5); }
}

/* Red shockwave burst — injected by JS on TEAMWEAR */
.title-burst {
  position: absolute;
  inset: -40px;
  border-radius: 8px;
  background: radial-gradient(ellipse at center, rgba(230,0,0,0.35) 0%, transparent 70%);
  animation: burstFade 0.7s ease-out forwards;
  pointer-events: none;
  z-index: -1;
}
@keyframes burstFade {
  0%   { opacity: 1; transform: scale(0.5); }
  60%  { opacity: 0.8; transform: scale(1.3); }
  100% { opacity: 0; transform: scale(1.6); }
}

.title-highlight { color: var(--red); }


/* Typewriter */
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 680px;
  min-height: 2.5em;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}
.hero-sub.visible { opacity: 1; transform: translateY(0); }
.cursor-blink {
  display: inline-block;
  color: var(--red);
  font-weight: 300;
  animation: blink 0.9s steps(1) infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0; }
}

/* hero-sub is now defined above with typewriter styles */

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 4rem;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}
.hero-actions.visible { opacity: 1; transform: translateY(0); }
.btn-icon { font-style: normal; }

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}
.hero-stats.visible { opacity: 1; transform: translateY(0); }
.stat {
  padding: 0 32px;
  text-align: center;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.stat:first-child { padding-left: 0; }
.stat-row {
  display: flex;
  align-items: flex-end;
  line-height: 1;
}
.stat-num {
  display: block;
  font-family: var(--font-head);
  font-size: 2.8rem;
  color: var(--text);
  line-height: 1;
}
.stat-sym {
  font-family: var(--font-head);
  font-size: 2.5rem;
  color: var(--red);
}
.stat-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-top: 4px;
}
.stat-divider {
  width: 1px;
  height: 50px;
  background: var(--border);
}

.hero-scroll-hint {
  position: absolute;
  bottom: 40px; right: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
}
.hero-scroll-hint span {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-faint);
  writing-mode: vertical-lr;
}
.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--red), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; opacity: 1; }
  50%  { transform: scaleY(1); transform-origin: top; opacity: 1; }
  100% { transform: scaleY(1); transform-origin: bottom; opacity: 0; }
}

/* ═══════════════════════════════════════════════
   TICKER
   ═══════════════════════════════════════════════ */
.ticker-wrap {
  background: var(--red);
  overflow: hidden;
  padding: 14px 0;
  position: relative;
}
.ticker-track {
  display: flex;
  gap: 0;
  width: max-content;
  animation: ticker 25s linear infinite;
}
.ticker-track span {
  font-family: var(--font-head);
  font-size: 1.1rem;
  letter-spacing: 3px;
  padding: 0 24px;
  color: rgba(255,255,255,0.9);
  white-space: nowrap;
}
.ticker-track .sep { color: rgba(255,255,255,0.5); }
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ═══════════════════════════════════════════════
   LEISTUNGEN / CARDS
   ═══════════════════════════════════════════════ */
.leistungen-section { background: var(--bg); }

.cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s var(--ease-out);
  cursor: default;
}
.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-out);
}
.card:hover::before { transform: scaleX(1); }
.card:hover {
  border-color: rgba(230,0,0,0.3);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 0 1px rgba(230,0,0,0.1);
}

.card-featured {
  background: var(--red);
  border-color: var(--red);
}
.card-featured::before { background: rgba(255,255,255,0.3); }
.card-featured:hover { border-color: var(--red-light); }

.card-icon {
  width: 44px; height: 44px;
  margin-bottom: 1.5rem;
  opacity: 0.8;
}
.card-icon svg { width: 100%; height: 100%; }

.card-num {
  font-family: var(--font-head);
  font-size: 0.9rem;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.35);
  margin-bottom: 0.5rem;
}
.card-featured .card-num { color: rgba(255,255,255,0.6); }

.card-title {
  font-family: var(--font-head);
  font-size: 1.6rem;
  letter-spacing: 1px;
  color: var(--text);
  margin-bottom: 1rem;
}

.card-text {
  font-size: 0.88rem;
  line-height: 1.7;
  color: var(--text-dim);
}
.card-featured .card-text { color: rgba(255,255,255,0.8); }

.card-arrow {
  position: absolute;
  bottom: 24px; right: 24px;
  font-size: 1.2rem;
  opacity: 0.3;
  transition: all 0.3s var(--ease-out);
}
.card:hover .card-arrow { opacity: 1; transform: translate(4px, -4px); }

/* ═══════════════════════════════════════════════
   VORTEILE
   ═══════════════════════════════════════════════ */
.vorteile-section {
  background: var(--bg2);
  position: relative;
  overflow: hidden;
}
.vorteile-section::before {
  content: 'VORTEILE';
  position: absolute;
  font-family: var(--font-head);
  font-size: 20rem;
  color: rgba(255,255,255,0.015);
  top: 50%; left: -5%;
  transform: translateY(-50%);
  pointer-events: none;
  white-space: nowrap;
}

.vorteile-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.vorteile-right { display: flex; flex-direction: column; gap: 8px; }

.vorteil-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  transition: all 0.35s var(--ease-out);
}
.vorteil-item:hover {
  background: rgba(255,255,255,0.03);
  border-color: var(--border);
  transform: translateX(8px);
}
.vorteil-icon {
  width: 40px; height: 40px;
  flex-shrink: 0;
  color: var(--red);
  margin-top: 2px;
}
.vorteil-icon svg { width: 100%; height: 100%; }
.vorteil-content h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.vorteil-content p {
  font-size: 0.88rem;
  color: var(--text-dim);
  line-height: 1.6;
}

/* ═══════════════════════════════════════════════
   MARKEN
   ═══════════════════════════════════════════════ */
.marken-section {
  background: var(--bg3);
  position: relative;
}

.brands-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.brand-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  transition: all 0.35s var(--ease-out);
  position: relative;
  overflow: hidden;
}
.brand-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(230,0,0,0.12), transparent 70%);
  opacity: 0;
  transition: opacity 0.3s;
}
.brand-card:hover { border-color: rgba(230,0,0,0.4); transform: translateY(-4px); }
.brand-card:hover::after { opacity: 1; }

.brand-name {
  font-family: var(--font-head);
  font-size: 1.5rem;
  letter-spacing: 2px;
  margin-bottom: 6px;
}
.brand-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--red);
}

/* ═══════════════════════════════════════════════
   ÜBER UNS
   ═══════════════════════════════════════════════ */
.ueber-section {
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
.ueber-section::after {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(230,0,0,0.08), transparent 70%);
  right: -200px; top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

/* "Alles aus einer Hand" banner */
.alles-banner {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--red);
  color: #fff;
  font-family: var(--font-head);
  font-size: 1.2rem;
  letter-spacing: 3px;
  padding: 12px 24px;
  border-radius: var(--radius);
  margin-bottom: 1.5rem;
  box-shadow: 0 0 30px var(--red-glow);
  animation: allesPulse 3s ease-in-out infinite;
}
@keyframes allesPulse {
  0%, 100% { box-shadow: 0 0 20px var(--red-glow); }
  50%       { box-shadow: 0 0 50px rgba(230,0,0,0.6); }
}
.alles-icon { font-size: 1rem; }

.ueber-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.ueber-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.ueber-gfx {
  position: relative;
  width: 260px; height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gfx-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid;
}
.ring-1 {
  width: 260px; height: 260px;
  border-color: rgba(230,0,0,0.2);
  animation: spin 20s linear infinite;
}
.ring-2 {
  width: 190px; height: 190px;
  border-color: rgba(230,0,0,0.35);
  animation: spin 12s linear infinite reverse;
}
.ring-3 {
  width: 120px; height: 120px;
  border-color: rgba(230,0,0,0.5);
  background: radial-gradient(circle, rgba(230,0,0,0.1), transparent);
  animation: spin 8s linear infinite;
}
@keyframes spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.gfx-center {
  position: relative;
  z-index: 1;
  font-size: 5rem;
  animation: float 4s ease-in-out infinite;
}
.gfx-trophy {
  width: 130px;
  height: 130px;
  animation: float 4s ease-in-out infinite;
  filter: drop-shadow(0 0 18px rgba(180,200,230,0.35));
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-12px); }
}

.ueber-stats-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  width: 100%;
}
.us-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.us-row + .us-row { margin-top: 20px; padding-top: 20px; border-top: 1px solid var(--border); }
.us-stat { text-align: center; }
.us-num {
  display: block;
  font-family: var(--font-head);
  font-size: 2rem;
  color: var(--red);
  line-height: 1;
  margin-bottom: 4px;
}
.us-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--text-faint);
}

.ueber-desc {
  font-size: 0.95rem;
  color: var(--text-dim);
  line-height: 1.75;
  margin-bottom: 1rem;
}

.ueber-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 1.5rem;
}
.highlight-chip {
  background: rgba(230,0,0,0.12);
  border: 1px solid rgba(230,0,0,0.3);
  color: var(--red);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 8px 16px;
  border-radius: 99px;
}

/* ═══════════════════════════════════════════════
   FAQ
   ═══════════════════════════════════════════════ */
.faq-section {
  background: var(--bg2);
}
.faq-section .section-title { text-align: center; }
.faq-section .section-label { display: flex; justify-content: center; }
.faq-section .section-sub { text-align: center; margin-left: auto; margin-right: auto; }

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.3s;
}
.faq-item.open { border-color: rgba(230,0,0,0.4); }

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 24px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  text-align: left;
  transition: color 0.2s;
}
.faq-q:hover { color: var(--red); }
.faq-item.open .faq-q { color: var(--red); }

.faq-icon {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border: 1.5px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 400;
  transition: all 0.3s var(--ease-out);
  color: var(--red);
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-out);
}
.faq-a p {
  padding: 0 24px 24px;
  font-size: 0.9rem;
  color: var(--text-dim);
  line-height: 1.75;
}

/* ═══════════════════════════════════════════════
   KONTAKT
   ═══════════════════════════════════════════════ */
.kontakt-section {
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
.kontakt-section::before {
  content: '';
  position: absolute;
  width: 800px; height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(230,0,0,0.06), transparent 70%);
  left: -300px; bottom: -300px;
  pointer-events: none;
}

.kontakt-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.kontakt-desc {
  font-size: 0.95rem;
  color: var(--text-dim);
  line-height: 1.75;
  margin-bottom: 2.5rem;
}

.kontakt-details { display: flex; flex-direction: column; gap: 20px; }
.k-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.k-icon { font-size: 1.2rem; flex-shrink: 0; margin-top: 2px; }
.k-detail div { display: flex; flex-direction: column; gap: 2px; }
.k-detail strong { font-size: 0.78rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--text-faint); }
.k-detail span, .k-detail a { font-size: 0.95rem; color: var(--text); }
.k-detail a:hover { color: var(--red); }

/* Form */
.kontakt-form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-faint);
}
.form-group input,
.form-group textarea {
  background: rgba(255,255,255,0.04);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 18px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--text);
  transition: border-color 0.3s, box-shadow 0.3s;
  outline: none;
  resize: vertical;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-faint); }
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(230,0,0,0.12);
}

.form-success {
  display: none;
  text-align: center;
  padding: 16px;
  background: rgba(0,200,100,0.1);
  border: 1px solid rgba(0,200,100,0.3);
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 600;
  color: #00c864;
}
.form-success.visible { display: block; }

.form-error {
  display: none;
  text-align: center;
  padding: 16px;
  background: rgba(230,0,0,0.1);
  border: 1px solid rgba(230,0,0,0.3);
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--red);
  margin-top: 12px;
}
.form-error.visible { display: block; }


/* ═══════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════ */
.footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding-top: 60px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 60px;
}

.footer-logo {
  font-family: var(--font-head);
  font-size: 2rem;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}
.footer-tagline { font-size: 0.88rem; color: var(--text-dim); margin-bottom: 1.5rem; }

.footer-social { display: flex; gap: 12px; }
.social-btn {
  width: 40px; height: 40px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dim);
  transition: all 0.3s;
}
.social-btn svg { width: 18px; height: 18px; }
.social-btn:hover { background: var(--red); border-color: var(--red); color: #fff; transform: translateY(-2px); }

.footer-links-group h5 {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 20px;
}
.footer-links-group ul { display: flex; flex-direction: column; gap: 12px; }
.footer-links-group li { font-size: 0.88rem; color: var(--text-dim); }
.footer-links-group a { color: var(--text-dim); transition: color 0.2s; }
.footer-links-group a:hover { color: var(--red); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-bottom p { font-size: 0.82rem; color: var(--text-faint); }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { font-size: 0.82rem; color: var(--text-faint); transition: color 0.2s; }
.footer-legal a:hover { color: var(--text); }

/* ═══════════════════════════════════════════════
   SCROLL REVEAL ANIMATIONS
   ═══════════════════════════════════════════════ */
.reveal-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal-up.visible { opacity: 1; transform: translateY(0); }

.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }

.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

.reveal-card {
  opacity: 0;
  transform: translateY(30px) scale(0.97);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}
.reveal-card.visible { opacity: 1; transform: translateY(0) scale(1); }

/* Delay classes */
.delay-0 { transition-delay: 0s; }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* Card stagger */
.reveal-card:nth-child(1) { transition-delay: 0.05s; }
.reveal-card:nth-child(2) { transition-delay: 0.15s; }
.reveal-card:nth-child(3) { transition-delay: 0.25s; }
.reveal-card:nth-child(4) { transition-delay: 0.35s; }
.reveal-card:nth-child(5) { transition-delay: 0.45s; }
.reveal-card:nth-child(6) { transition-delay: 0.55s; }
.reveal-card:nth-child(7) { transition-delay: 0.65s; }

/* ═══════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .brands-grid { grid-template-columns: repeat(3, 1fr); }
  .brand-card:nth-child(5) { grid-column: auto; }
  .vorteile-inner,
  .ueber-inner,
  .kontakt-inner { grid-template-columns: 1fr; gap: 60px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; gap: 0; }
  .nav-links.open {
    display: flex;
    position: fixed;
    top: 72px; left: 0; right: 0; bottom: 0;
    background: rgba(10,10,10,0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 40px 24px;
    gap: 8px;
    z-index: 999;
  }
  .nav-links.open .nav-link {
    font-size: 1.5rem;
    padding: 12px 0;
    color: var(--text);
    border-bottom: 1px solid var(--border);
  }
  .nav-links.open .nav-cta {
    margin-top: 24px;
    text-align: center;
    font-size: 1rem;
    padding: 16px;
  }
  .burger { display: flex; }

  .hero-title { font-size: clamp(3.5rem, 18vw, 6rem); }
  .hero-stats { flex-wrap: wrap; gap: 20px; }
  .stat-divider { display: none; }
  .stat { padding: 0; }
  .hero-scroll-hint { display: none; }

  .cards-grid { grid-template-columns: 1fr; }
  .brands-grid { grid-template-columns: repeat(3, 1fr); gap: 8px; }

  .ueber-inner,
  .vorteile-inner,
  .kontakt-inner { grid-template-columns: 1fr; }
  .kontakt-form { padding: 28px 20px; }
  .form-row { grid-template-columns: 1fr; }

  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }

  .section { padding: 50px 0; }
  .marken-section .section-label { font-size: 0.7rem; }
  .marken-section .section-title { font-size: clamp(2rem, 10vw, 3rem); margin-bottom: 0.5rem; }
  .marken-section .section-desc { font-size: 0.8rem; margin-bottom: 1.5rem; }
  .ueber-gfx { width: 180px; height: 180px; }
  .ring-1 { width: 180px; height: 180px; }
  .ring-2 { width: 130px; height: 130px; }
  .ring-3 { width: 80px; height: 80px; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }
  .section-title { font-size: clamp(2.2rem, 12vw, 3.5rem); }
  .brands-grid { grid-template-columns: repeat(3, 1fr); gap: 6px; }
  .brand-card { padding: 14px 8px; }
  .brand-name { font-size: 1rem; }
  .brand-label { font-size: 0.6rem; }
}

/* ═══════════════════════════════════════════════
   WHATSAPP
   ═══════════════════════════════════════════════ */

/* Inline WA link in contact section */
.wa-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 6px;
  background: #25d366;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 99px;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 0 0 0 rgba(37,211,102,0.5);
}
.wa-link:hover {
  background: #1ebe5c;
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
}
.wa-icon {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}

/* Floating WhatsApp button */
.wa-fab {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9000;
  display: flex;
  align-items: center;
  gap: 8px;
  background: #25d366;
  color: #fff;
  text-decoration: none;
  padding: 14px 20px 14px 16px;
  border-radius: 99px;
  font-size: 0.9rem;
  font-weight: 700;
  box-shadow: 0 4px 24px rgba(37,211,102,0.45);
  transition: all 0.3s var(--ease-out);
  animation: waAppear 1s 3s both, waPulse 3s 4s ease-in-out infinite;
}
.wa-fab svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}
.wa-fab:hover {
  background: #1ebe5c;
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 8px 32px rgba(37,211,102,0.6);
}
@keyframes waAppear {
  from { opacity: 0; transform: translateY(20px) scale(0.8); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes waPulse {
  0%, 100% { box-shadow: 0 4px 24px rgba(37,211,102,0.45); }
  50%       { box-shadow: 0 4px 40px rgba(37,211,102,0.75); }
}

@media (max-width: 480px) {
  .wa-fab-label { display: none; }
  .wa-fab { padding: 14px; border-radius: 50%; bottom: 20px; right: 20px; }
}

/* ═══════════════════════════════════════════════
   MODALS – Impressum & Datenschutz
   ═══════════════════════════════════════════════ */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 60px 24px 40px;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s var(--ease-out), visibility 0.35s;
}
.modal-overlay.open {
  opacity: 1;
  visibility: visible;
}

.modal-box {
  background: #111;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px 48px 56px;
  max-width: 720px;
  width: 100%;
  position: relative;
  transform: translateY(20px);
  transition: transform 0.35s var(--ease-out);
}
.modal-overlay.open .modal-box {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 20px; right: 20px;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text-dim);
  font-size: 0.9rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s;
}
.modal-close:hover {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
  transform: rotate(90deg);
}

.modal-title {
  font-family: var(--font-head);
  font-size: 2.5rem;
  letter-spacing: 2px;
  margin-bottom: 2rem;
  color: var(--text);
}

.modal-content h3 {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--red);
  margin: 2rem 0 0.6rem;
}
.modal-content h3:first-child { margin-top: 0; }
.modal-content p {
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--text-dim);
}
.modal-content a {
  color: var(--red);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.modal-content a:hover { color: var(--red-light); }

@media (max-width: 600px) {
  .modal-box { padding: 32px 24px 40px; }
  .modal-title { font-size: 1.8rem; }
}


/* ═══════════════════════════════════════════════
   COOKIE BANNER
   ═══════════════════════════════════════════════ */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9999;
  background: rgba(14,14,14,0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid var(--border);
  padding: 20px 24px;
  transform: translateY(110%);
  transition: transform 0.5s cubic-bezier(0.34,1.3,0.64,1);
  box-shadow: 0 -8px 40px rgba(0,0,0,0.5);
}
.cookie-banner.show { transform: translateY(0); }
.cookie-banner.hide { transform: translateY(110%); transition-timing-function: ease-in; }
.cookie-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.cookie-text {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  flex: 1;
  min-width: 260px;
}
.cookie-icon { font-size: 1.6rem; flex-shrink: 0; margin-top: 2px; }
.cookie-text strong { display: block; font-size: 0.95rem; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.cookie-text p { font-size: 0.82rem; color: var(--text-dim); line-height: 1.6; margin: 0; }
.cookie-text a { color: var(--red); text-decoration: underline; text-underline-offset: 2px; }
.cookie-text a:hover { color: var(--red-light); }
.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-btn {
  padding: 11px 22px;
  border-radius: var(--radius);
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
  white-space: nowrap;
}
.cookie-accept { background: #25d366; color: #fff; box-shadow: 0 0 20px rgba(37,211,102,0.3); }
.cookie-accept:hover { background: #1ebe5c; transform: translateY(-2px); box-shadow: 0 4px 20px rgba(37,211,102,0.5); }
.cookie-reject { background: transparent; color: var(--text-dim); border: 1px solid var(--border); }
.cookie-reject:hover { border-color: rgba(255,255,255,0.3); color: var(--text); }
@media (max-width: 600px) {
  .cookie-inner { flex-direction: column; gap: 16px; }
  .cookie-actions { width: 100%; }
  .cookie-btn { flex: 1; text-align: center; }
}
