/* ═══════════════════════════════════════════════════════════
   DESIGN SYSTEM & THEME TOKENS – BAUHANDWERK STEY
   Modern UI Pro v3.2 – MotionSites Edition
   ═══════════════════════════════════════════════════════════ */

:root, [data-theme="dark"] {
  --bg: #080b0e;
  --bg-secondary: #0f141a;
  --fg: #f4f6f8;
  --fg-muted: #94a3b8;
  --card-bg: rgba(15, 20, 26, 0.85);
  --card-shell: rgba(255, 255, 255, 0.05);
  --border: rgba(255, 255, 255, 0.10);
  --border-focus: rgba(245, 158, 11, 0.6);

  /* Brand Accents */
  --accent-amber: #f59e0b;
  --accent-amber-hover: #d97706;
  --accent-emerald: #10b981;
  --accent-emerald-hover: #059669;
  --accent-glow: rgba(245, 158, 11, 0.3);

  /* Aurora Mesh */
  --aurora-1: hsla(38, 92%, 50%, 0.18);
  --aurora-2: hsla(160, 84%, 39%, 0.14);

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
}

[data-theme="light"] {
  --bg: #f8fafc;
  --bg-secondary: #ffffff;
  --fg: #0f172a;
  --fg-muted: #475569;
  --card-bg: rgba(255, 255, 255, 0.95);
  --card-shell: rgba(15, 23, 42, 0.05);
  --border: rgba(15, 23, 42, 0.12);
  --border-focus: rgba(217, 119, 6, 0.6);

  --accent-amber: #d97706;
  --accent-amber-hover: #b45309;
  --accent-emerald: #059669;
  --accent-emerald-hover: #047857;
  --accent-glow: rgba(217, 119, 6, 0.15);

  --aurora-1: hsla(38, 92%, 60%, 0.12);
  --aurora-2: hsla(160, 84%, 45%, 0.10);
}

/* Base Setup */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
}

html {
  color-scheme: dark light;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg);
  color: var(--fg);
  line-height: 1.6;
  overflow-x: hidden;
  transition: background-color 0.3s ease, color 0.3s ease;
}

/* Accessibility: Skip-Link */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1.5rem;
  z-index: 999999;
  padding: 0.75rem 1.5rem;
  background: var(--accent-amber);
  color: #000;
  font-weight: 700;
  border-radius: 0 0 0.75rem 0.75rem;
  text-decoration: none;
  transition: top 0.2s ease;
}
.skip-link:focus {
  top: 0;
}

:focus-visible {
  outline: 2px solid var(--accent-amber);
  outline-offset: 3px;
  border-radius: 4px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* Fixed Noise Overlay */
.noise-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' 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)'/%3E%3C/svg%3E");
  background-size: 256px 256px;
}

/* Custom Cursor */
.cursor-blob, .cursor-follower {
  position: fixed;
  pointer-events: none;
  z-index: 10000;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  display: none;
}
@media (hover: hover) and (pointer: fine) {
  .cursor-blob {
    display: block;
    width: 8px;
    height: 8px;
    background: var(--accent-amber);
    box-shadow: 0 0 10px var(--accent-amber);
  }
  .cursor-follower {
    display: block;
    width: 38px;
    height: 38px;
    border: 1px solid rgba(245, 158, 11, 0.4);
    transition: transform 0.15s ease-out, border-color 0.2s;
  }
}

/* Aurora Mesh Background */
.aurora-bg {
  background:
    radial-gradient(ellipse 80% 50% at 20% 20%, var(--aurora-1) 0%, transparent 65%),
    radial-gradient(ellipse 60% 40% at 80% 70%, var(--aurora-2) 0%, transparent 60%),
    radial-gradient(circle at 50% 50%, var(--aurora-1) 0%, transparent 70%);
  filter: blur(40px);
}

/* Typography */
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5.5vw, 4.8rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.025em;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3.8vw, 3.2rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.gradient-title {
  color: var(--accent-amber) !important;
  -webkit-text-fill-color: var(--accent-amber) !important;
  text-shadow: 0 0 25px var(--accent-glow);
  display: inline;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.9rem;
  border-radius: 9999px;
  background: var(--card-shell);
  border: 1px solid var(--border);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-amber);
}
.eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-amber);
  box-shadow: 0 0 8px var(--accent-amber);
}

/* Double-Bezel Architecture */
.bento-shell {
  background: var(--card-shell);
  border: 1px solid var(--border);
  border-radius: 2rem;
  padding: 0.375rem;
  overflow: hidden;
  transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}
.bento-shell:hover {
  border-color: rgba(245, 158, 11, 0.3);
}
.bento-core {
  background: var(--card-bg);
  border-radius: calc(2rem - 0.375rem);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.08);
  height: 100%;
}

/* Glassmorphism Panel (Fixed / Floating only) */
.glass-panel {
  background: rgba(15, 20, 26, 0.8);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border: 1px solid var(--border);
}

/* Images & Badges */
.cover-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.img-badge {
  position: absolute;
  bottom: 0.75rem;
  right: 0.75rem;
  font-size: 0.6rem;
  color: rgba(255, 255, 255, 0.85);
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(8px);
  padding: 0.2rem 0.6rem;
  border-radius: 9999px;
  pointer-events: none;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Buttons */
.btn-cta {
  background: var(--accent-amber);
  color: #080b0e;
  border-radius: 9999px;
  border: 1px solid var(--accent-amber);
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  box-sizing: border-box;
  word-break: break-word;
  transition: transform 0.25s cubic-bezier(0.32, 0.72, 0, 1), background-color 0.2s, box-shadow 0.25s;
  box-shadow: 0 4px 16px var(--accent-glow);
}
.btn-cta:hover {
  background: var(--accent-amber-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px var(--accent-glow);
}
.btn-cta:active {
  transform: scale(0.98);
}

.btn-secondary {
  background: var(--card-shell);
  color: var(--fg);
  border: 1px solid var(--border);
  border-radius: 9999px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  box-sizing: border-box;
  word-break: break-word;
  transition: border-color 0.2s, background-color 0.2s, transform 0.2s;
}
.btn-secondary:hover {
  border-color: var(--accent-amber);
  background: rgba(245, 158, 11, 0.08);
}

.btn-icon-wrapper {
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.15);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  margin-left: 0.25rem;
}

/* ═══════════════════════════════════════════════════════════
   NAVBAR & HAMBURGER (Variante A: Fluid Island)
   ═══════════════════════════════════════════════════════════ */

.nav-island {
  position: fixed;
  top: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 2rem);
  max-width: 1320px;
  z-index: 1000;
  background: rgba(8, 11, 14, 0.85);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid var(--border);
  border-radius: 9999px;
  padding: 0.5rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
  transition: all 0.35s cubic-bezier(0.32, 0.72, 0, 1);
}
[data-theme="light"] .nav-island {
  background: rgba(255, 255, 255, 0.88);
}
.nav-island.scrolled {
  top: 0.75rem;
  padding: 0.4rem 1.1rem;
  background: rgba(8, 11, 14, 0.95);
  border-color: rgba(245, 158, 11, 0.3);
}

.logo-badge {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.65rem;
  background: var(--accent-amber);
  color: #000;
}

.nav-status-pill {
  background: var(--card-shell);
  border: 1px solid var(--border);
}
.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent-emerald);
  box-shadow: 0 0 8px var(--accent-emerald);
}

.nav-link {
  color: var(--fg-muted);
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s ease;
}
.nav-link:hover {
  color: var(--accent-amber);
}

.theme-toggle {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--card-shell);
  color: var(--fg);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 0.9rem;
  transition: border-color 0.2s, transform 0.2s;
}
.theme-toggle:hover {
  border-color: var(--accent-amber);
  transform: rotate(20deg);
}
[data-theme="dark"] .theme-icon-moon { display: none; }
[data-theme="light"] .theme-icon-sun { display: none; }

/* Hamburger Morphing */
.hamburger {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--card-shell);
  color: var(--fg);
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  cursor: pointer;
  padding: 0;
}
.ham-line {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform 0.3s cubic-bezier(0.68, -0.6, 0.32, 1.6), opacity 0.3s ease;
}
.hamburger.open .ham-line.top {
  transform: translateY(6px) rotate(45deg);
}
.hamburger.open .ham-line.mid {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger.open .ham-line.bot {
  transform: translateY(-6px) rotate(-45deg);
}

/* Mobile Overlay */
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 990;
  opacity: 0;
  visibility: hidden;
  display: flex !important;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}
.mobile-overlay.open {
  opacity: 1;
  visibility: visible;
}
.mobile-nav-link {
  color: var(--fg);
  text-decoration: none;
  transition: color 0.2s, transform 0.2s;
}
.mobile-nav-link:hover {
  color: var(--accent-amber);
  transform: translateX(4px);
}

/* ═══════════════════════════════════════════════════════════
   STICKY CARD STACKING (§ 15)
   ═══════════════════════════════════════════════════════════ */

.card-sticky-container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

@media (min-width: 901px) {
  .card-sticky-container {
    gap: 0;
    padding-bottom: 4rem;
  }
  .stacking-card {
    position: sticky;
    top: 6.5rem;
    margin-bottom: 2rem;
    will-change: transform, opacity;
  }
  .stacking-card[data-card-index="1"] { top: 6.5rem; }
  .stacking-card[data-card-index="2"] { top: 7.5rem; }
  .stacking-card[data-card-index="3"] { top: 8.5rem; }
  .stacking-card[data-card-index="4"] { top: 9.5rem; }
  .stacking-card[data-card-index="5"] { top: 10.5rem; }
}

@media (max-width: 900px) {
  .card-sticky-container {
    height: auto !important;
  }
  .stacking-card {
    position: relative !important;
    top: auto !important;
    transform: none !important;
    margin-bottom: 1.5rem;
  }
}

/* ═══════════════════════════════════════════════════════════
   CALCULATOR STYLES
   ═══════════════════════════════════════════════════════════ */

.calc-radio-card {
  cursor: pointer;
  position: relative;
}
.calc-radio-card input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.calc-radio-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1rem 0.5rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 1rem;
  text-align: center;
  transition: all 0.2s ease;
  height: 100%;
}
.calc-radio-card input:checked + .calc-radio-content {
  border-color: var(--accent-amber);
  background: rgba(245, 158, 11, 0.1);
  box-shadow: 0 0 12px var(--accent-glow);
}
.calc-radio-card:hover .calc-radio-content {
  border-color: rgba(245, 158, 11, 0.4);
}

/* ═══════════════════════════════════════════════════════════
   MULTI-STEP FUNNEL FORM
   ═══════════════════════════════════════════════════════════ */

.funnel-step {
  display: none;
  border: none;
  padding: 0;
  margin: 0;
}
.funnel-step.active {
  display: block;
  animation: fadeIn 0.35s ease both;
}

.funnel-option-card {
  cursor: pointer;
  position: relative;
}
.funnel-option-card input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.funnel-card-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 1rem;
  transition: all 0.2s ease;
}
.funnel-option-card input:checked + .funnel-card-inner {
  border-color: var(--accent-amber);
  background: rgba(245, 158, 11, 0.1);
  box-shadow: 0 0 12px var(--accent-glow);
}
.funnel-option-card:hover .funnel-card-inner {
  border-color: rgba(245, 158, 11, 0.4);
}

.form-input {
  width: 100%;
  padding: 0.8rem 1rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  outline: none;
}
.form-input:focus {
  border-color: var(--accent-amber);
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.15);
}
.form-input.error {
  border-color: #ef4444;
}

/* ═══════════════════════════════════════════════════════════
   FAQ ACCORDION
   ═══════════════════════════════════════════════════════════ */

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s cubic-bezier(0.32, 0.72, 0, 1);
  overflow: hidden;
}
.faq-answer.open {
  grid-template-rows: 1fr;
}
.faq-answer > .faq-content {
  min-height: 0;
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

/* ═══════════════════════════════════════════════════════════
   MAPS CONSENT PLACEHOLDER
   ═══════════════════════════════════════════════════════════ */

.maps-placeholder {
  position: absolute;
  inset: 0;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.maps-placeholder.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* ═══════════════════════════════════════════════════════════
   WHATSAPP FLOATING WIDGET
   ═══════════════════════════════════════════════════════════ */

.whatsapp-widget {
  position: fixed;
  bottom: 5.5rem;
  right: 1.5rem;
  z-index: 9000;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: #25d366;
  color: white;
  padding: 0.75rem 1.25rem 0.75rem 0.9rem;
  border-radius: 9999px;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 600;
  transition: transform 0.3s cubic-bezier(0.32, 0.72, 0, 1), box-shadow 0.3s ease;
  animation: wa-pulse 3s ease-in-out infinite;
}
.whatsapp-widget:hover {
  transform: scale(1.05) translateY(-2px);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.55);
}
@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.75); }
}
@media (max-width: 640px) {
  .whatsapp-widget {
    bottom: 5rem;
    right: 1rem;
    padding: 0.75rem;
    border-radius: 50%;
  }
  .whatsapp-label {
    display: none;
  }
}

/* ═══════════════════════════════════════════════════════════
   MOBILE STICKY BOTTOM BAR
   ═══════════════════════════════════════════════════════════ */

.mobile-sticky-bottom-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9500;
  background: rgba(8, 11, 14, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid var(--border);
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  padding: 0.5rem 0.75rem;
  gap: 0.5rem;
}
[data-theme="light"] .mobile-sticky-bottom-bar {
  background: rgba(255, 255, 255, 0.94);
}
.mobile-bar-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.6rem 0.3rem;
  border-radius: 0.75rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
}
.mobile-bar-call {
  background: var(--accent-amber);
  color: #000;
}
.mobile-bar-wa {
  background: #25d366;
  color: #fff;
}
.mobile-bar-offer {
  background: var(--card-shell);
  color: var(--fg);
  border: 1px solid var(--border);
}

/* ═══════════════════════════════════════════════════════════
   LEGAL MODALS (IMPRESSUM & DATENSCHUTZ)
   ═══════════════════════════════════════════════════════════ */

.legal-modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: rgba(5, 7, 12, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s cubic-bezier(0.32, 0.72, 0, 1), visibility 0.35s ease;
  overscroll-behavior: contain;
}
.legal-modal-backdrop.open {
  opacity: 1;
  visibility: visible;
}
.legal-modal-card {
  width: 100%;
  max-width: 800px;
  max-height: 86vh;
  display: flex;
  flex-direction: column;
  transform: scale(0.94) translateY(16px);
  transition: transform 0.35s cubic-bezier(0.32, 0.72, 0, 1);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.6);
  overscroll-behavior: contain;
}
.legal-modal-backdrop.open .legal-modal-card {
  transform: scale(1) translateY(0);
}
.legal-modal-close {
  flex-shrink: 0 !important;
  width: 2.25rem !important;
  height: 2.25rem !important;
  min-width: 2.25rem !important;
  min-height: 2.25rem !important;
  border-radius: 9999px !important;
  border: 1px solid var(--border);
  background: var(--bg);
  color: var(--fg);
  font-size: 1rem;
  font-weight: 700;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer;
  padding: 0 !important;
  line-height: 1 !important;
  transition: all 0.2s ease;
}
.legal-modal-close:hover {
  background: var(--accent-amber);
  color: #000;
  border-color: var(--accent-amber);
  transform: rotate(90deg) scale(1.08);
}
.legal-modal-body {
  max-height: calc(86vh - 5.5rem);
  overflow-y: auto !important;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-y;
  scrollbar-width: thin;
  scrollbar-color: var(--border) transparent;
}
.legal-modal-body::-webkit-scrollbar {
  width: 6px;
}
.legal-modal-body::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: 9999px;
}

/* ═══════════════════════════════════════════════════════════
   DSGVO CONSENT BANNER
   ═══════════════════════════════════════════════════════════ */

.consent-banner {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  z-index: 99998;
  background: rgba(8, 11, 14, 0.96);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: 1.5rem;
  max-width: 680px;
  margin: 0 auto;
  padding: 1.5rem;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
  transform: translateY(0);
  transition: transform 0.4s cubic-bezier(0.32, 0.72, 0, 1), opacity 0.4s ease;
}
[data-theme="light"] .consent-banner {
  background: rgba(255, 255, 255, 0.98);
}
.consent-banner.hidden {
  transform: translateY(150%);
  opacity: 0;
  pointer-events: none;
}
.consent-inner {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.consent-text {
  color: var(--fg-muted);
  font-size: 0.875rem;
  line-height: 1.5;
  margin: 0;
}
.consent-link {
  color: var(--accent-amber);
  text-decoration: underline;
}
.consent-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.btn-consent-accept {
  padding: 0.6rem 1.5rem;
  border-radius: 9999px;
  border: none;
  cursor: pointer;
  background: var(--accent-amber);
  color: #000;
  font-weight: 700;
  font-size: 0.875rem;
  flex: 1;
  min-width: 140px;
  transition: opacity 0.2s;
}
.btn-consent-accept:hover {
  opacity: 0.9;
}
.btn-consent-reject {
  padding: 0.6rem 1.5rem;
  border-radius: 9999px;
  cursor: pointer;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--fg-muted);
  font-size: 0.875rem;
  flex: 1;
  min-width: 120px;
  transition: border-color 0.2s, color 0.2s;
}
.btn-consent-reject:hover {
  border-color: var(--fg);
  color: var(--fg);
}
@media (max-width: 768px) {
  .consent-banner {
    bottom: 4.8rem;
    left: 1rem;
    right: 1rem;
    padding: 1.1rem;
  }
}

/* Animations Keyframes */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
