/* =============================================
   AT DIENSTLEISTUNGEN — BLACK & GOLD LUXURY 2026
   ============================================= */

/* --- CSS Variables --- */
:root {
  /* Gold palette */
  --accent: #D4AF37;            /* classic gold */
  --accent-light: #F0C75E;      /* warm bright gold */
  --accent-dark: #A78327;       /* deep gold */
  --accent-glow: rgba(212, 175, 55, 0.28);
  --gold-gradient: linear-gradient(135deg, #B8941F 0%, #D4AF37 35%, #F0C75E 60%, #D4AF37 100%);
  --gold-gradient-soft: linear-gradient(135deg, #D4AF37 0%, #F0C75E 100%);

  /* Charcoal palette (lighter than pure black) */
  --primary: #2A2A2A;
  --primary-dark: #1F1F1F;
  --primary-darker: #161616;
  --dark: #1A1A1A;              /* charcoal, not pure black */
  --dark-soft: #2F2F2F;
  --charcoal: #353535;
  --charcoal-light: #4A4A4A;

  /* Neutrals */
  --gray: #6B7280;
  --gray-light: #9CA3AF;
  --light: #F4F4F4;             /* cool light gray */
  --light-warm: #EDEDED;
  --border: #DDDDDD;
  --white: #ffffff;

  --whatsapp: #FBBC05;
  --google-star: #FBBC05;

  --radius: 16px;
  --radius-sm: 8px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  --font-body: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --font-heading: 'Outfit', system-ui, -apple-system, sans-serif;

  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 10px 30px rgba(0,0,0,0.12);
  --shadow-lg: 0 22px 60px rgba(0,0,0,0.18);
  --shadow-xl: 0 32px 80px rgba(0,0,0,0.28);
  --shadow-gold: 0 14px 40px rgba(212, 175, 55, 0.28);
  --shadow-glow: 0 0 50px rgba(212, 175, 55, 0.30);

  --transition: 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  --transition-fast: 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: 8rem; }
body {
  font-family: var(--font-body);
  color: var(--dark);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--transition-fast); }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
input, select, textarea { font: inherit; }
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.15;
}

/* --- Utility --- */
.container { width: 100%; max-width: 1320px; margin: 0 auto; padding: 0 1.25rem; }
@media (min-width: 768px) { .container { padding: 0 2rem; } }
@media (min-width: 1024px) { .container { padding: 0 3rem; } }

.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* --- Scroll Reveal Animations --- */
@keyframes revealUp {
  from { opacity: 0; transform: translateY(60px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes revealLeft {
  from { opacity: 0; transform: translateX(-60px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes revealRight {
  from { opacity: 0; transform: translateX(60px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes revealScale {
  from { opacity: 0; transform: scale(0.85); }
  to { opacity: 1; transform: scale(1); }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 20px var(--accent-glow); }
  50% { box-shadow: 0 0 50px var(--accent-glow), 0 0 80px rgba(212,175,55,0.1); }
}
@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}
@keyframes slowZoom {
  from { transform: scale(1); }
  to { transform: scale(1.1); }
}
@keyframes lineDraw {
  from { width: 0; }
  to { width: 80px; }
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes grain {
  0%, 100% { transform: translate(0, 0); }
  10% { transform: translate(-5%, -10%); }
  30% { transform: translate(3%, -15%); }
  50% { transform: translate(12%, 9%); }
  70% { transform: translate(9%, 4%); }
  90% { transform: translate(-1%, 7%); }
}

.reveal { opacity: 0; transform: translateY(60px); transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-60px); transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1); }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(60px); transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1); }
.reveal-right.visible { opacity: 1; transform: translateX(0); }
.reveal-scale { opacity: 0; transform: scale(0.85); transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1); }
.reveal-scale.visible { opacity: 1; transform: scale(1); }

/* Stagger 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; }
.delay-5 { transition-delay: 0.5s; }
.delay-6 { transition-delay: 0.6s; }

/* =============================================
   HEADER — Sticky Glass
   ============================================= */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 9999;
  transition: all var(--transition);
}
.header__topbar {
  background: linear-gradient(90deg, #000 0%, #0A0A0A 50%, #000 100%);
  border-bottom: 1px solid rgba(212,175,55,0.18);
  padding: 0.5rem 0;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.85);
  display: none;
}
@media (min-width: 1024px) { .header__topbar { display: block; } }
.header__topbar .container { display: flex; justify-content: space-between; align-items: center; }
.header__topbar a { color: rgba(255,255,255,0.8); transition: color var(--transition-fast); }
.header__topbar a:hover { color: var(--accent); }
.header__topbar i { color: var(--accent); margin-right: 0.5rem; }

.header__main {
  background: rgba(26, 26, 26, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(212,175,55,0.18);
  padding: 0.75rem 0;
  position: relative;
}
.header__main::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(212,175,55,0.6) 50%, transparent 100%);
  pointer-events: none;
}
.header.scrolled .header__main {
  background: rgba(26, 26, 26, 0.97);
  box-shadow: 0 6px 30px rgba(0,0,0,0.35);
  border-bottom-color: rgba(212,175,55,0.3);
}
.header__main .container { display: flex; justify-content: space-between; align-items: center; }

.header__logo { display: inline-flex; align-items: center; }

/* --- Brand Logo (image-based) --- */
.brand-logo-img {
  display: inline-flex;
  align-items: center;
  height: 5rem;
  transition: filter var(--transition-fast), transform var(--transition-fast);
}
.brand-logo-img img {
  height: 100%;
  width: auto;
  display: block;
  /* black-on-white logo → white silhouette for dark surfaces */
  filter: brightness(0) invert(1) drop-shadow(0 2px 8px rgba(0,0,0,0.4));
}
.header__logo:hover .brand-logo-img { transform: scale(1.05); }
@media (min-width: 1024px) {
  .brand-logo-img { height: 6rem; }
}
@media (max-width: 480px) {
  .brand-logo-img { height: 3.5rem; }
}
.footer__brand {
  display: inline-flex;
  margin-bottom: 1.5rem;
  height: 5.5rem;
}
.footer__brand img {
  height: 100%;
  width: auto;
  filter: brightness(0) invert(1);
}

.header__nav { display: none; align-items: center; gap: 0.25rem; }
@media (min-width: 1024px) { .header__nav { display: flex; } }
.header__nav a {
  padding: 0.5rem 0.875rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  border-radius: var(--radius-sm);
  position: relative;
  transition: all var(--transition-fast);
}
.header__nav a:hover, .header__nav a.active {
  color: var(--white);
  background: rgba(255,255,255,0.07);
}
.header__nav a::after {
  content: '';
  position: absolute;
  bottom: 0.15rem; left: 0.875rem; right: 0.875rem;
  height: 2px;
  background: var(--accent);
  border-radius: 1px;
  transform: scaleX(0);
  transition: transform var(--transition-fast);
}
.header__nav a:hover::after, .header__nav a.active::after { transform: scaleX(1); }

.header__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.5rem;
  background: var(--gold-gradient);
  color: #000;
  font-weight: 700;
  font-size: 0.875rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,0.18);
  box-shadow: 0 6px 22px rgba(212,175,55,0.32), inset 0 1px 0 rgba(255,255,255,0.35);
  transition: all var(--transition-fast);
}
.header__cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 32px rgba(212,175,55,0.5), inset 0 1px 0 rgba(255,255,255,0.45);
  filter: brightness(1.05);
}

.header__mobile-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  color: var(--white);
  font-size: 1.25rem;
  border-radius: var(--radius-sm);
  transition: background var(--transition-fast);
}
@media (min-width: 1024px) { .header__mobile-toggle { display: none; } }
.header__mobile-toggle:hover { background: rgba(255,255,255,0.1); }

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 99999;
  background: rgba(26,26,26,0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  flex-direction: column;
  padding: 6rem 2rem 2rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu__close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.5rem;
  border-radius: var(--radius-sm);
  transition: background var(--transition-fast);
}
.mobile-menu__close:hover { background: rgba(255,255,255,0.1); }
.mobile-menu a {
  display: block;
  padding: 1rem 0;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color var(--transition-fast);
}
.mobile-menu a:hover { color: var(--accent); }
.mobile-menu__cta {
  display: block;
  margin-top: 2rem;
  padding: 1rem 2rem;
  background: var(--accent);
  color: var(--dark) !important;
  text-align: center;
  font-weight: 700;
  border-radius: var(--radius-sm);
  border-bottom: none !important;
}

/* =============================================
   HERO — SPLIT EDITORIAL LAYOUT
   ============================================= */
.hero--split {
  position: relative;
  min-height: auto;
  padding: 10rem 0 5rem;
  overflow: hidden;
  background:
    radial-gradient(45% 60% at 8% 20%, rgba(212,175,55,0.16) 0%, transparent 65%),
    radial-gradient(55% 70% at 100% 80%, rgba(240,199,94,0.12) 0%, transparent 60%),
    linear-gradient(180deg, var(--primary) 0%, var(--dark) 100%);
  color: var(--white);
}
@media (min-width: 1024px) {
  .hero--split { padding: 13rem 0 6rem; min-height: 90vh; display: flex; align-items: center; }
}
.hero--split::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(rgba(212,175,55,0.08) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: linear-gradient(180deg, transparent, #000 30%, #000 70%, transparent);
  -webkit-mask-image: linear-gradient(180deg, transparent, #000 30%, #000 70%, transparent);
  pointer-events: none;
  z-index: 0;
}
.hero--split::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--accent) 50%, transparent 100%);
  opacity: 0.5;
}
.hero--split .container { position: relative; z-index: 2; width: 100%; }
.hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .hero__grid { grid-template-columns: 1.15fr 1fr; gap: 4rem; }
}

/* Eyebrow */
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.5rem 1rem 0.5rem 0.75rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(212,175,55,0.35);
  border-radius: 9999px;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  margin-bottom: 1.5rem;
}
.hero__eyebrow-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px var(--accent);
  animation: pulse-glow 2.4s ease-in-out infinite;
}

/* Editorial headline — stacked lines, mixed serif feel */
.hero__hed {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 6.5vw, 5.25rem);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.025em;
  margin-bottom: 1.5rem;
  color: var(--white);
}
.hero__hed-line { display: block; }
.hero__hed-line--accent {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-style: italic;
  font-weight: 800;
}
.hero__hed-line--outline {
  -webkit-text-stroke: 1.5px var(--accent);
  color: transparent;
  font-style: italic;
}

/* Lede */
.hero__lede {
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  color: rgba(255,255,255,0.78);
  line-height: 1.65;
  max-width: 32rem;
  margin-bottom: 2rem;
}

/* Actions */
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}
.hero__phone {
  display: inline-flex;
  flex-direction: column;
  text-decoration: none;
  color: var(--white);
  position: relative;
  padding-left: 1.5rem;
  border-left: 2px solid rgba(212,175,55,0.5);
}
.hero__phone-label {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.hero__phone-num {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--accent-light);
}

/* Stats row */
.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.5rem;
  max-width: 32rem;
}
.hero__stat {
  position: relative;
  padding: 0 1rem;
}
.hero__stat + .hero__stat {
  border-left: 1px solid rgba(255,255,255,0.08);
}
.hero__stat strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
  margin-bottom: 0.25rem;
}
.hero__stat span {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}

/* Right column — showcase */
.hero__col-right { position: relative; }
.hero__showcase {
  position: relative;
  border-radius: 28px;
  overflow: visible;
  padding: 2rem;
  background:
    linear-gradient(155deg, rgba(212,175,55,0.18) 0%, rgba(0,0,0,0.4) 100%);
  border: 1px solid rgba(212,175,55,0.35);
  box-shadow:
    0 30px 80px rgba(0,0,0,0.45),
    inset 0 1px 0 rgba(255,255,255,0.06);
  transform: rotate(-1.5deg);
}
.hero__showcase::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 28px;
  background: linear-gradient(135deg, transparent 30%, rgba(212,175,55,0.3) 50%, transparent 70%);
  z-index: -1;
  filter: blur(20px);
  opacity: 0.6;
}
.hero__showcase-frame {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  background: var(--dark);
  border: 1px solid rgba(212,175,55,0.25);
}
.hero__showcase-frame img {
  display: block;
  width: 100%;
  height: auto;
}
.hero__chip {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1rem;
  background: var(--white);
  color: var(--dark);
  font-size: 0.82rem;
  font-weight: 700;
  border-radius: 9999px;
  box-shadow: 0 14px 30px rgba(0,0,0,0.35);
  transform: rotate(2deg);
  z-index: 3;
}
.hero__chip i { color: var(--accent-dark); }
.hero__chip--top { top: -0.75rem; left: 1.5rem; }
.hero__chip--bottom {
  bottom: -0.75rem; right: 1.5rem;
  transform: rotate(-2deg);
  background: var(--dark);
  color: var(--accent-light);
  border: 1px solid rgba(212,175,55,0.4);
}
.hero__chip--bottom i { color: var(--accent); }

/* Corner badge */
.hero__corner-badge {
  position: absolute;
  top: -1.5rem;
  right: -1.5rem;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: var(--gold-gradient);
  color: #000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-align: center;
  line-height: 1.1;
  box-shadow: 0 14px 30px rgba(212,175,55,0.4), inset 0 1px 0 rgba(255,255,255,0.5);
  transform: rotate(8deg);
  z-index: 4;
}
.hero__corner-badge strong {
  font-size: 1.5rem;
  display: block;
  margin-bottom: 0.1rem;
}

/* =============================================
   MARQUEE — Service ticker bar
   ============================================= */
.marquee {
  position: relative;
  overflow: hidden;
  background: var(--dark);
  border-top: 1px solid rgba(212,175,55,0.2);
  border-bottom: 1px solid rgba(212,175,55,0.2);
  padding: 1.25rem 0;
}
.marquee::before, .marquee::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.marquee::before { left: 0; background: linear-gradient(90deg, var(--dark), transparent); }
.marquee::after { right: 0; background: linear-gradient(270deg, var(--dark), transparent); }
.marquee__track {
  display: inline-flex;
  align-items: center;
  gap: 3rem;
  animation: marquee 38s linear infinite;
  white-space: nowrap;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--white);
}
.marquee__item {
  display: inline-flex;
  align-items: center;
  gap: 0.875rem;
}
.marquee__item i { color: var(--accent); }
.marquee__sep {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px var(--accent);
  flex-shrink: 0;
}

/* =============================================
   TIMELINE — Horizontal process flow
   ============================================= */
.timeline {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  counter-reset: step;
  max-width: 1080px;
  margin: 0 auto;
}
@media (min-width: 900px) {
  .timeline {
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
  }
  .timeline::before {
    content: '';
    position: absolute;
    top: 32px;
    left: 8%;
    right: 8%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent) 15%, var(--accent) 85%, transparent);
    opacity: 0.4;
    z-index: 0;
  }
}
.timeline__step {
  position: relative;
  padding: 0 1.5rem;
  z-index: 1;
}
.timeline__marker {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  background: var(--dark);
  border: 2px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  background: var(--gold-gradient);
  color: #000;
  box-shadow: 0 10px 28px rgba(212,175,55,0.4), inset 0 1px 0 rgba(255,255,255,0.5);
  position: relative;
}
.timeline__marker::after {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1px dashed rgba(212,175,55,0.4);
  animation: spin 30s linear infinite;
}
.timeline__step-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 0.5rem;
}
.timeline__step-desc {
  font-size: 0.92rem;
  color: var(--gray);
  text-align: center;
  line-height: 1.55;
}
.section--dark .timeline__step-title { color: var(--white); }
.section--dark .timeline__step-desc { color: rgba(255,255,255,0.65); }

/* =============================================
   HERO — Charcoal & Gold (legacy, used on sub-pages)
   ============================================= */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(55% 60% at 12% 28%, rgba(212,175,55,0.18) 0%, transparent 60%),
    radial-gradient(50% 70% at 95% 100%, rgba(240,199,94,0.10) 0%, transparent 60%),
    radial-gradient(40% 45% at 80% 10%, rgba(212,175,55,0.08) 0%, transparent 65%),
    linear-gradient(160deg, var(--primary) 0%, var(--dark) 55%, var(--primary) 100%);
}
.hero--short {
  min-height: auto;
  padding: 10rem 0 3.5rem;
  background:
    radial-gradient(45% 80% at 0% 100%, rgba(212,175,55,0.18) 0%, transparent 60%),
    radial-gradient(35% 60% at 100% 0%, rgba(240,199,94,0.10) 0%, transparent 60%),
    linear-gradient(180deg, var(--primary) 0%, var(--dark) 100%);
  display: block;
  align-items: initial;
}
@media (min-width: 1024px) {
  .hero--short { padding: 12.5rem 0 4rem; }
}
.hero--short .hero__bg,
.hero--short .hero__accent-line,
.hero--short .hero__geo { display: none !important; }
.hero--short .hero__content { padding: 0; }
.hero--short::before {
  content: '';
  position: absolute;
  left: 2.5%;
  top: 50%;
  transform: translateY(-30%);
  width: 3px;
  height: 50%;
  background: linear-gradient(180deg, transparent, var(--accent) 25%, var(--accent-light) 50%, var(--accent) 75%, transparent);
  border-radius: 2px;
  box-shadow: 0 0 18px rgba(212,175,55,0.5);
  z-index: 3;
}
.hero--short::after {
  content: '';
  position: absolute;
  right: 4%;
  top: 18%;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  border: 1px solid rgba(212,175,55,0.25);
  box-shadow: inset 0 0 60px rgba(212,175,55,0.08);
  pointer-events: none;
}
.hero--short .hero__title {
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  letter-spacing: -0.015em;
}
.hero--short .hero__breadcrumb { margin-bottom: 1.25rem; }

.hero__bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.hero__bg img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.35;
  filter: blur(1.5px);
  mix-blend-mode: luminosity;
}

/* Subtle gold grid pattern */
.hero__bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(212,175,55,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212,175,55,0.06) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, #000 30%, transparent 80%);
  opacity: 0.55;
}
/* Diagonal gold streak */
.hero__bg::after {
  content: '';
  position: absolute;
  top: -20%; right: -10%;
  width: 70%;
  height: 140%;
  background: linear-gradient(135deg, transparent 45%, rgba(212,175,55,0.10) 50%, transparent 55%);
  transform: rotate(8deg);
  filter: blur(2px);
  pointer-events: none;
}

/* Overlay is now barely needed — keep a thin vignette */
.hero__overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 0%, rgba(0,0,0,0.45) 100%);
  z-index: 1;
}
/* Film grain */
.hero__noise {
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  pointer-events: none;
  mix-blend-mode: overlay;
}
/* Decorative accent line */
.hero__accent-line {
  position: absolute;
  left: 0;
  bottom: 30%;
  width: 4px;
  height: 220px;
  background: linear-gradient(to bottom, transparent, var(--accent-light) 35%, var(--accent) 70%, transparent);
  z-index: 5;
  border-radius: 2px;
  box-shadow: 0 0 24px rgba(212,175,55,0.55);
  display: none;
}
@media (min-width: 1024px) { .hero__accent-line { display: block; } }

/* Geometric decoration */
.hero__geo {
  position: absolute;
  z-index: 3;
  pointer-events: none;
}
.hero__geo--circle {
  top: 10%;
  right: 4%;
  width: 380px;
  height: 380px;
  border: 1px solid rgba(212,175,55,0.28);
  border-radius: 50%;
  box-shadow: inset 0 0 100px rgba(212,175,55,0.10);
  animation: float 10s ease-in-out infinite;
}
.hero__geo--circle::before {
  content: '';
  position: absolute;
  inset: 30px;
  border-radius: 50%;
  border: 1px dashed rgba(212,175,55,0.18);
  animation: spin 60s linear infinite;
}
.hero__geo--circle::after {
  content: '';
  position: absolute;
  inset: 80px;
  border-radius: 50%;
  border: 1px solid rgba(212,175,55,0.10);
}
.hero__geo--square {
  bottom: 22%;
  right: 14%;
  width: 140px;
  height: 140px;
  border: 1px solid rgba(212,175,55,0.30);
  transform: rotate(45deg);
  animation: float 12s ease-in-out infinite reverse;
}
.hero__geo--square::before {
  content: '';
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(212,175,55,0.16);
}

.hero__wave {
  position: absolute;
  bottom: -1px;
  left: 0; right: 0;
  z-index: 5;
  line-height: 0;
}
.hero__wave svg { width: 100%; height: 60px; display: block; }
@media (min-width: 768px) { .hero__wave svg { height: 90px; } }

.hero__content {
  position: relative;
  z-index: 10;
  width: 100%;
  padding: 10rem 0 5rem;
}
@media (min-width: 768px) { .hero__content { padding: 12rem 0 5rem; } }
@media (min-width: 1024px) { .hero__content { padding: 14rem 0 6rem; } }

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(212,175,55,0.55);
  border-radius: 9999px;
  color: var(--accent-light);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  box-shadow: 0 0 0 1px rgba(0,0,0,0.2), 0 8px 24px rgba(0,0,0,0.35);
  animation: revealLeft 0.8s ease-out both;
}
.hero__badge i { color: var(--accent); }

.hero__rating {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem;
  padding: 0.625rem 1.25rem;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(212,175,55,0.4);
  border-radius: 9999px;
  margin-bottom: 1.5rem;
  font-size: 0.9375rem;
  color: var(--white);
  box-shadow: 0 0 0 1px rgba(0,0,0,0.2), 0 12px 30px rgba(0,0,0,0.35);
  animation: revealScale 0.7s ease-out 0.1s both;
}
.hero__rating strong { color: var(--accent-light); font-weight: 800; }
.hero__rating .stars { color: var(--google-star); margin-right: 0.25rem; filter: drop-shadow(0 0 6px rgba(251,188,5,0.45)); }

.hero__title {
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  font-weight: 800;
  letter-spacing: -0.015em;
  color: var(--white);
  margin-bottom: 0.75rem;
  text-shadow: 0 4px 30px rgba(0,0,0,0.45);
  animation: revealUp 0.8s ease-out 0.15s both;
}
.hero__title span {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 2px 12px rgba(212,175,55,0.35));
}

.hero__title-line {
  display: block;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-light), var(--accent) 60%, transparent);
  border-radius: 2px;
  margin-bottom: 0.75rem;
  box-shadow: 0 0 18px rgba(212,175,55,0.5);
  animation: lineDraw 1s ease-out 0.5s both;
  max-width: 100px;
}

.hero__subtitle {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  color: var(--accent);
  margin-bottom: 1.5rem;
  animation: revealUp 0.8s ease-out 0.25s both;
}

.hero__desc {
  color: rgba(255,255,255,0.85);
  font-size: 1.125rem;
  line-height: 1.75;
  max-width: 620px;
  margin-bottom: 2rem;
  animation: revealUp 0.8s ease-out 0.35s both;
}
.hero__desc em { color: var(--accent); font-style: normal; font-weight: 600; }

.hero__list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
  animation: revealUp 0.8s ease-out 0.45s both;
}
.hero__list li {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.92);
  padding-left: 0;
}
.hero__list li i {
  color: var(--accent-light);
  font-size: 1.05rem;
  width: 1.75rem;
  height: 1.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(212,175,55,0.12);
  border: 1px solid rgba(212,175,55,0.35);
  border-radius: 50%;
  flex-shrink: 0;
}

.hero__ctas {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  animation: revealUp 0.8s ease-out 0.55s both;
}
@media (min-width: 640px) { .hero__ctas { flex-direction: row; } }

/* Breadcrumb */
.hero__breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: rgba(148,163,184,1);
  margin-bottom: 1.5rem;
  animation: revealUp 0.6s ease-out both;
}
.hero__breadcrumb a:hover { color: var(--accent); }
.hero__breadcrumb .active { color: var(--accent); }



/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  font-weight: 700;
  font-size: 1rem;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn--primary {
  padding: 0.875rem 2rem;
  background: var(--gold-gradient);
  color: #000;
  border: 1px solid rgba(255,255,255,0.18);
  box-shadow: 0 10px 28px rgba(212,175,55,0.32), inset 0 1px 0 rgba(255,255,255,0.4);
}
.btn--primary::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.45), transparent);
  transition: left 0.6s ease;
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 38px rgba(212,175,55,0.5), inset 0 1px 0 rgba(255,255,255,0.55);
  filter: brightness(1.06);
}
.btn--primary:hover::after { left: 100%; }

.btn--secondary {
  padding: 0.875rem 2rem;
  background: rgba(0,0,0,0.35);
  backdrop-filter: blur(8px);
  color: var(--white);
  border: 1px solid rgba(212,175,55,0.55);
}
.btn--secondary:hover {
  background: rgba(212,175,55,0.12);
  border-color: var(--accent);
  color: var(--accent-light);
  transform: translateY(-2px);
  box-shadow: 0 0 0 1px rgba(212,175,55,0.25), 0 12px 24px rgba(0,0,0,0.35);
}

.btn--dark {
  padding: 0.875rem 2rem;
  background: var(--dark);
  color: var(--white);
  border: 1px solid rgba(212,175,55,0.4);
}
.btn--dark:hover {
  background: var(--gold-gradient);
  color: #000;
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.btn--outline {
  padding: 0.875rem 2rem;
  background: transparent;
  color: var(--dark);
  border: 2px solid var(--accent);
}
.btn--outline:hover {
  background: var(--gold-gradient);
  color: #000;
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.btn--white {
  padding: 0.875rem 2rem;
  background: var(--white);
  color: var(--dark);
  border: 1px solid rgba(212,175,55,0.35);
}
.btn--white:hover {
  background: var(--gold-gradient);
  color: #000;
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.btn--lg {
  padding: 1rem 2.5rem;
  font-size: 1.0625rem;
}

.btn--full { width: 100%; }

/* =============================================
   SECTION STYLES
   ============================================= */
.section { padding: 5rem 0; }
@media (min-width: 768px) { .section { padding: 6rem 0; } }
@media (min-width: 1024px) { .section { padding: 8rem 0; } }

.section--dark {
  background: radial-gradient(80% 60% at 50% 0%, rgba(212,175,55,0.12) 0%, transparent 60%), var(--primary);
  color: var(--white);
  position: relative;
}
.section--dark::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212,175,55,0.55), transparent);
}
.section--darker { background: var(--dark); color: var(--white); }
.section--light {
  background:
    radial-gradient(60% 80% at 50% 0%, rgba(212,175,55,0.06) 0%, transparent 60%),
    var(--light);
  position: relative;
}
.section--light::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: min(420px, 60%);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212,175,55,0.5), transparent);
}
.section--accent { background: var(--gold-gradient); color: #000; }
.section--whatsapp { background: var(--whatsapp); color: var(--white); }

/* Diagonal section separator */
.section--diagonal {
  position: relative;
  padding-top: 8rem;
}
.section--diagonal::before {
  content: '';
  position: absolute;
  top: -4rem;
  left: 0; right: 0;
  height: 8rem;
  background: inherit;
  transform: skewY(-3deg);
  z-index: -1;
}

/* Section headers */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 1rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 9999px;
  margin-bottom: 1rem;
}
.section-label--dark {
  background: var(--dark);
  color: var(--accent-light);
  border: 1px solid rgba(212,175,55,0.4);
}
.section-label--light { background: var(--light); color: var(--dark); border: 1px solid var(--border); }
.section-label--white {
  background: rgba(0,0,0,0.35);
  color: var(--accent-light);
  border: 1px solid rgba(212,175,55,0.45);
}
.section-label--accent { background: rgba(212,175,55,0.15); color: var(--accent-dark); border: 1px solid rgba(212,175,55,0.4); }

.section-title {
  font-size: clamp(2rem, 4vw, 3.25rem);
  margin-bottom: 1rem;
  font-weight: 800;
  letter-spacing: -0.01em;
}
.section-title span,
.section-title [style*="--accent"] {
  background: var(--gold-gradient) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  color: transparent !important;
}
.section--dark .section-title span,
.section--darker .section-title span {
  filter: drop-shadow(0 2px 12px rgba(212,175,55,0.35));
}

.section-desc {
  font-size: 1.125rem;
  color: var(--gray);
  max-width: 680px;
  line-height: 1.7;
}
.section--dark .section-desc { color: rgba(255,255,255,0.7); }

.text-center { text-align: center; }
.text-center .section-desc { margin-left: auto; margin-right: auto; }

/* =============================================
   TRUST BAR
   ============================================= */
.trust-bar {
  padding: 2.5rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background:
    linear-gradient(180deg, var(--white) 0%, var(--light) 100%);
  position: relative;
}
.trust-bar::before,
.trust-bar::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212,175,55,0.5), transparent);
}
.trust-bar::before { top: 0; }
.trust-bar::after { bottom: 0; }
.trust-bar .container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
@media (min-width: 768px) { .trust-bar .container { grid-template-columns: repeat(4, 1fr); } }
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.875rem;
}
.trust-item__icon {
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 50%;
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--accent);
  font-size: 1.125rem;
  border: 1px solid rgba(212,175,55,0.45);
  box-shadow: 0 6px 18px rgba(0,0,0,0.18), inset 0 0 12px rgba(212,175,55,0.08);
}
.trust-item__text strong { display: block; font-size: 0.9375rem; color: var(--dark); font-weight: 700; }
.trust-item__text span { font-size: 0.8125rem; color: var(--gray); }

/* =============================================
   SERVICE BENTO — Editorial 2-column layout
   ============================================= */
.service-bento {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.875rem;
  max-width: 1080px;
  margin: 0 auto;
}
@media (min-width: 768px) { .service-bento { grid-template-columns: repeat(2, 1fr); gap: 1rem; } }

.service-row {
  position: relative;
  display: grid;
  grid-template-columns: auto auto 1fr auto;
  gap: 1.25rem;
  align-items: center;
  padding: 1.5rem 1.75rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
  text-decoration: none;
  color: inherit;
}
.service-row::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--gold-gradient);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform var(--transition);
}
.service-row:hover {
  transform: translateY(-3px);
  border-color: rgba(212,175,55,0.5);
  box-shadow: 0 18px 40px rgba(0,0,0,0.10), 0 0 0 1px rgba(212,175,55,0.15);
}
.service-row:hover::before { transform: scaleY(1); }

.service-row__num {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 800;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
  letter-spacing: -0.02em;
  min-width: 2.25rem;
}
.service-row__icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 12px;
  background: var(--dark);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  border: 1px solid rgba(212,175,55,0.35);
  flex-shrink: 0;
  transition: all var(--transition);
}
.service-row:hover .service-row__icon {
  background: var(--gold-gradient);
  color: #000;
  border-color: transparent;
  box-shadow: 0 6px 18px rgba(212,175,55,0.4);
}
.service-row__content { min-width: 0; }
.service-row__title {
  font-size: 1.0625rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
  color: var(--dark);
}
.service-row__desc {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.45;
}
.service-row__cta {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--dark);
  font-size: 0.85rem;
  flex-shrink: 0;
  transition: all var(--transition-fast);
}
.service-row:hover .service-row__cta {
  background: var(--gold-gradient);
  color: #000;
  border-color: transparent;
  transform: rotate(-45deg);
}
@media (max-width: 560px) {
  .service-row { grid-template-columns: auto 1fr auto; gap: 0.875rem; padding: 1.125rem 1.25rem; }
  .service-row__num { display: none; }
  .service-row__title { font-size: 1rem; }
  .service-row__desc { font-size: 0.8rem; }
  .service-row__cta { width: 2.25rem; height: 2.25rem; }
}

/* =============================================
   SERVICE CARDS — Bento Grid Style (legacy)
   ============================================= */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  padding: 1px;
  background: var(--gold-gradient);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  opacity: 0;
  transition: opacity var(--transition);
  pointer-events: none;
  z-index: 1;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.18), 0 0 0 1px rgba(212,175,55,0.15);
  border-color: transparent;
}
.service-card:hover::before { opacity: 1; }

.service-card__img {
  position: relative;
  height: 200px;
  overflow: hidden;
  background:
    radial-gradient(70% 90% at 30% 20%, rgba(212,175,55,0.22) 0%, transparent 60%),
    radial-gradient(50% 60% at 90% 100%, rgba(240,199,94,0.12) 0%, transparent 60%),
    linear-gradient(135deg, #0A0A0A, #000);
}
.service-card__img::before,
.service-card__img::after {
  content: '';
  position: absolute;
  width: 22px;
  height: 22px;
  z-index: 2;
  pointer-events: none;
}
.service-card__img::before {
  top: 14px; left: 14px;
  border-top: 2px solid var(--accent);
  border-left: 2px solid var(--accent);
}
.service-card__img::after {
  top: 14px; right: 14px;
  border-top: 2px solid var(--accent);
  border-right: 2px solid var(--accent);
}
/* Subtle grid pattern on card image area */
.service-card__img > .service-card__img-overlay {
  background-image:
    linear-gradient(rgba(212,175,55,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212,175,55,0.06) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 40%, #000 30%, transparent 90%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 40%, #000 30%, transparent 90%);
}
.service-card__img img { display: none; }
.service-card__img-overlay {
  position: absolute;
  inset: 0;
}
.service-card__icon {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  background: var(--gold-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  font-size: 2rem;
  border: 1px solid rgba(255,255,255,0.35);
  box-shadow: 0 14px 38px rgba(212,175,55,0.5), inset 0 1px 0 rgba(255,255,255,0.55);
  z-index: 3;
  transition: transform var(--transition);
}
.service-card:hover .service-card__icon {
  transform: translate(-50%, -50%) scale(1.08);
}

.service-card__body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.service-card__title {
  font-size: 1.375rem;
  margin-bottom: 0.625rem;
}
.service-card__desc {
  font-size: 0.9375rem;
  color: var(--gray);
  margin-bottom: 1rem;
  line-height: 1.6;
}
.service-card__list {
  font-size: 0.8125rem;
  color: var(--gray);
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.service-card__list li { display: flex; align-items: center; gap: 0.5rem; }
.service-card__list i { color: var(--accent); font-size: 0.75rem; }

.service-card__cta {
  margin-top: auto;
}

/* =============================================
   ADVANTAGES
   ============================================= */
.advantage-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) { .advantage-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .advantage-grid { grid-template-columns: repeat(3, 1fr); } }

.advantage-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--border);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.advantage-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 3px;
  background: var(--gold-gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.advantage-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.14);
  border-color: rgba(212,175,55,0.4);
}
.advantage-card:hover::after { transform: scaleX(1); }
.advantage-card__icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: var(--radius);
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--accent);
  font-size: 1.375rem;
  border: 1px solid rgba(212,175,55,0.35);
  transition: all var(--transition);
}
.advantage-card:hover .advantage-card__icon {
  background: var(--gold-gradient);
  color: #000;
  border-color: transparent;
  box-shadow: var(--shadow-gold);
}
.advantage-card__title {
  font-size: 1.175rem;
  margin-bottom: 0.5rem;
}
.advantage-card__desc {
  font-size: 0.9375rem;
  color: var(--gray);
  line-height: 1.6;
}

/* =============================================
   TESTIMONIALS
   ============================================= */
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  transition: all var(--transition);
  position: relative;
}
.testimonial-card::before {
  content: '\201E';
  position: absolute;
  top: 0.5rem; right: 1.25rem;
  font-family: var(--font-heading);
  font-size: 5rem;
  line-height: 1;
  color: var(--accent);
  opacity: 0.25;
  pointer-events: none;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.16);
  border-color: rgba(212,175,55,0.4);
}
.testimonial-card__stars { color: var(--google-star); margin-bottom: 1rem; font-size: 1rem; }
.testimonial-card__text {
  font-size: 1.0625rem;
  color: var(--dark-soft);
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  position: relative;
}
.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 0.875rem;
}
.testimonial-card__avatar {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: var(--gold-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  font-weight: 700;
  font-size: 0.875rem;
  border: 1px solid rgba(255,255,255,0.35);
  box-shadow: 0 4px 14px rgba(212,175,55,0.4);
}
.testimonial-card__name {
  font-weight: 700;
  font-size: 1rem;
  color: var(--dark);
}

/* =============================================
   PROCESS STEPS
   ============================================= */
.process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) { .process-grid { grid-template-columns: repeat(3, 1fr); } }

.process-step {
  text-align: center;
  position: relative;
}
.process-step__number {
  position: absolute;
  top: -0.5rem;
  right: calc(50% - 3.5rem);
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: var(--gold-gradient);
  color: #000;
  font-weight: 700;
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  border: 1px solid rgba(255,255,255,0.35);
  box-shadow: 0 6px 18px rgba(212,175,55,0.45);
}
.process-step__icon {
  width: 5rem;
  height: 5rem;
  margin: 0 auto 1.25rem;
  border-radius: 50%;
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1.75rem;
  border: 1px solid rgba(212,175,55,0.4);
  box-shadow: inset 0 0 24px rgba(212,175,55,0.08);
  transition: all var(--transition);
}
.process-step:hover .process-step__icon {
  background: var(--gold-gradient);
  color: #000;
  border-color: transparent;
  box-shadow: var(--shadow-gold);
}
.process-step__title { font-size: 1.175rem; margin-bottom: 0.5rem; }
.process-step__desc { font-size: 0.9375rem; color: var(--gray); line-height: 1.6; }

/* Connector line between steps */
@media (min-width: 768px) {
  .process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 2.5rem;
    left: 60%;
    width: 80%;
    height: 2px;
    background: linear-gradient(90deg, var(--accent) 0%, rgba(212,175,55,0.2) 100%);
    border-radius: 1px;
  }
}

/* =============================================
   CONTACT FORM
   ============================================= */
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 0.5rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--dark);
  font-size: 0.9375rem;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast);
}
.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
  border-color: rgba(212,175,55,0.5);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-glow);
}
.form-group textarea { resize: vertical; min-height: 120px; }

.form-row { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 640px) { .form-row { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 768px) { .form-row--3 { grid-template-columns: repeat(3, 1fr); } }

.form-radio-group {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}
@media (min-width: 768px) { .form-radio-group--5 { grid-template-columns: repeat(5, 1fr); } }
.form-radio {
  display: flex;
  align-items: center;
  padding: 0.75rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition-fast);
}
.form-radio:hover { background: var(--light); }
.form-radio input { width: 1rem; height: 1rem; margin-right: 0.5rem; accent-color: var(--accent); }
.form-radio span { font-size: 0.875rem; }

/* =============================================
   CHECKBOX & RADIO — Spacing Fixes
   ============================================= */
input[type="checkbox"],
input[type="radio"] {
  width: 1.125rem;
  height: 1.125rem;
  accent-color: var(--accent);
  flex-shrink: 0;
  cursor: pointer;
  margin: 0;
}

/* Checkbox Grid in Bewerbung */
.checkbox-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 15rem), 1fr));
  gap: 0.625rem;
  margin-top: 0.5rem;
}
.checkbox-grid label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-weight: 500;
  font-size: 0.9375rem;
  cursor: pointer;
  transition: all var(--transition-fast);
  user-select: none;
}
.checkbox-grid label:hover {
  border-color: var(--accent);
  background: rgba(212,175,55, 0.06);
}
.checkbox-grid label:has(input:checked) {
  border-color: var(--accent);
  background: rgba(212,175,55, 0.1);
  box-shadow: 0 0 0 1px var(--accent);
}

/* Datenschutz Checkbox */
.consent-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
  font-weight: 400;
  padding: 0.75rem 0;
}
.consent-label input[type="checkbox"] {
  margin-top: 0.15rem;
}
.consent-label span {
  font-size: 0.875rem;
  color: var(--gray);
  line-height: 1.5;
}
.consent-label a {
  color: var(--primary);
  text-decoration: underline;
  font-weight: 600;
}
.consent-label a:hover {
  color: var(--accent);
}

/* =============================================
   FILE UPLOAD ZONE
   ============================================= */
.file-upload-zone {
  position: relative;
  border: 2px dashed var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  cursor: pointer;
  transition: all var(--transition-fast);
  background: var(--light);
}
.file-upload-zone:hover,
.file-upload-zone.dragover {
  border-color: var(--accent);
  background: rgba(212,175,55, 0.05);
}
.file-upload-zone input[type="file"] {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  z-index: 2;
}
.file-upload-zone__icon {
  width: 3.5rem;
  height: 3.5rem;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: rgba(212,175,55, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1.5rem;
  transition: all var(--transition-fast);
}
.file-upload-zone:hover .file-upload-zone__icon {
  background: var(--accent);
  color: var(--white);
  transform: scale(1.1);
}
.file-upload-zone__title {
  font-weight: 700;
  font-size: 1rem;
  color: var(--dark);
  margin-bottom: 0.375rem;
}
.file-upload-zone__desc {
  font-size: 0.8125rem;
  color: var(--gray);
  line-height: 1.5;
}
.file-upload-zone__formats {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0.375rem;
  margin-top: 0.75rem;
  justify-content: center;
}
.file-upload-zone__formats span {
  padding: 0.25rem 0.625rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 9999px;
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--gray);
  text-transform: uppercase;
}

/* File Preview List */
.file-preview-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 0.75rem;
}
.file-preview-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.625rem 0.875rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.8125rem;
  animation: revealUp 0.3s ease-out both;
}
.file-preview-item__icon {
  width: 2rem;
  height: 2rem;
  border-radius: var(--radius-sm);
  background: var(--light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--accent);
  font-size: 0.875rem;
}
.file-preview-item__info {
  flex: 1;
  min-width: 0;
}
.file-preview-item__name {
  font-weight: 600;
  color: var(--dark);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.file-preview-item__size {
  font-size: 0.75rem;
  color: var(--gray);
}
.file-preview-item__remove {
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray);
  font-size: 0.75rem;
  cursor: pointer;
  transition: all var(--transition-fast);
  flex-shrink: 0;
  border: none;
}
.file-preview-item__remove:hover {
  background: #fee2e2;
  color: #ef4444;
}

/* Image thumbnail in file preview */
.file-preview-item__thumb {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: var(--radius-sm);
  object-fit: cover;
  flex-shrink: 0;
}

/* =============================================
   FORM STATUS MESSAGES
   ============================================= */
.form-status {
  padding: 1rem 1.25rem;
  border-radius: var(--radius-sm);
  font-size: 0.9375rem;
  font-weight: 600;
  display: none;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1rem;
}
.form-status.show { display: flex; }
.form-status--success {
  background: #dcfce7;
  color: #166534;
  border: 1px solid #bbf7d0;
}
.form-status--error {
  background: #fef2f2;
  color: #991b1b;
  border: 1px solid #fecaca;
}
.form-status--loading {
  background: var(--light);
  color: var(--primary);
  border: 1px solid var(--border);
}

/* Loading spinner on button */
.btn--loading {
  pointer-events: none;
  opacity: 0.7;
  position: relative;
}
.btn--loading::before {
  content: '';
  display: inline-block;
  width: 1rem;
  height: 1rem;
  border: 2px solid currentColor;
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
  margin-right: 0.5rem;
}
@keyframes spin {
  to { transform: rotate(360deg); }
}

/* =============================================
   PARTNER SECTION
   ============================================= */
.partner-section {
  background: linear-gradient(135deg, #f8fafc, #f1f5f9);
}

/* =============================================
   FAQ
   ============================================= */
.faq-list { display: flex; flex-direction: column; gap: 0.75rem; max-width: 56rem; margin: 0 auto; }
.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: all var(--transition-fast);
  box-shadow: var(--shadow-sm);
}
.faq-item:hover {
  border-color: rgba(212,175,55,0.5);
  box-shadow: 0 12px 30px rgba(0,0,0,0.08), 0 0 0 1px rgba(212,175,55,0.15);
}
.faq-item.open {
  border-color: var(--accent);
  box-shadow: 0 12px 30px rgba(0,0,0,0.08), 0 0 0 1px rgba(212,175,55,0.25);
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  width: 100%;
  text-align: left;
  font-weight: 700;
  font-size: 1rem;
  color: var(--dark);
  background: none;
  border: none;
  font-family: inherit;
}
.faq-question i { color: var(--accent); transition: transform var(--transition-fast); font-size: 0.875rem; }
.faq-item.open .faq-question i { transform: rotate(180deg); }
.faq-answer {
  padding: 0 1.5rem 1.25rem;
  font-size: 0.9375rem;
  color: var(--gray);
  line-height: 1.7;
  display: none;
}
.faq-item.open .faq-answer { display: block; }

/* =============================================
   MAP
   ============================================= */
.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.map-container iframe { width: 100%; height: 400px; border: 0; display: block; }
@media (min-width: 768px) { .map-container iframe { height: 500px; } }

/* =============================================
   INFO CARDS (glass style)
   ============================================= */
.info-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 2.5rem;
}
@media (min-width: 768px) { .info-cards { grid-template-columns: repeat(3, 1fr); } }

.info-card {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(16px);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  border: 1px solid rgba(255,255,255,0.08);
  transition: all var(--transition);
}
.info-card:hover {
  border-color: rgba(212,175,55,0.3);
  transform: translateY(-4px);
}
.info-card__icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: var(--radius);
  background: var(--gold-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: #000;
  font-size: 1.375rem;
  border: 1px solid rgba(255,255,255,0.35);
  box-shadow: 0 8px 24px rgba(212,175,55,0.4), inset 0 1px 0 rgba(255,255,255,0.45);
  transition: transform var(--transition-fast);
}
.info-card:hover .info-card__icon { transform: scale(1.1); }
.info-card__title { font-size: 1.175rem; color: var(--white); margin-bottom: 0.375rem; }
.info-card__text { font-size: 0.9375rem; color: rgba(255,255,255,0.6); line-height: 1.5; }
.info-card__text a { color: var(--accent); transition: color var(--transition-fast); }
.info-card__text a:hover { color: var(--white); }

/* Info Cards — Light Background Variant */
.info-cards--light .info-card {
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.info-cards--light .info-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-lg);
}
.info-cards--light .info-card__title {
  color: var(--dark);
}
.info-cards--light .info-card__text {
  color: var(--gray);
}
.info-cards--light .info-card__text a {
  color: var(--accent);
  font-weight: 600;
}
.info-cards--light .info-card__text a:hover {
  color: var(--primary);
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background:
    radial-gradient(60% 80% at 50% 0%, rgba(212,175,55,0.12) 0%, transparent 60%),
    linear-gradient(180deg, var(--primary) 0%, var(--dark) 100%);
  color: var(--white);
  padding-top: 5rem;
  position: relative;
}
.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--accent) 25%, var(--accent-light) 50%, var(--accent) 75%, transparent 100%);
  box-shadow: 0 0 18px rgba(212,175,55,0.6);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
}
@media (min-width: 768px) { .footer__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer__grid { grid-template-columns: 1.5fr 1fr 1fr 1.5fr; } }

.footer__logo img { height: 5rem; margin-bottom: 1.25rem; }
.footer__desc { color: rgba(255,255,255,0.6); font-size: 0.9375rem; line-height: 1.7; }

.footer__heading {
  font-size: 1.0625rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  position: relative;
  padding-bottom: 0.625rem;
  color: var(--accent-light);
}
.footer__heading::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 36px;
  height: 2px;
  background: var(--gold-gradient);
  border-radius: 1px;
}
.footer__links { display: flex; flex-direction: column; gap: 0.625rem; }
.footer__links a {
  color: rgba(255,255,255,0.6);
  font-size: 0.9375rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: color var(--transition-fast);
}
.footer__links a i { font-size: 0.6875rem; color: var(--accent); }
.footer__links a:hover { color: var(--white); }

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  margin-bottom: 1.25rem;
}
.footer__contact-item i {
  color: var(--accent);
  font-size: 1rem;
  margin-top: 0.25rem;
  flex-shrink: 0;
}
.footer__contact-item strong { display: block; font-size: 1rem; color: var(--white); margin-bottom: 0.125rem; }
.footer__contact-item a { color: rgba(255,255,255,0.6); transition: color var(--transition-fast); }
.footer__contact-item a:hover { color: var(--white); }
.footer__contact-item .small { font-size: 0.8125rem; color: rgba(255,255,255,0.4); }

.footer__hours {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}
@media (min-width: 768px) { .footer__hours { flex-direction: row; justify-content: space-between; } }
.footer__hours-text { color: rgba(255,255,255,0.6); font-size: 0.875rem; }
.footer__hours-text i { color: var(--accent); margin-right: 0.5rem; }
.footer__badges { display: flex; gap: 1rem; font-size: 0.8125rem; color: rgba(255,255,255,0.5); }
.footer__badges i { color: var(--accent); margin-right: 0.25rem; }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}
@media (min-width: 768px) { .footer__bottom { flex-direction: row; justify-content: space-between; } }
.footer__copyright { color: rgba(255,255,255,0.5); font-size: 0.8125rem; }
.footer__legal { display: flex; gap: 1.5rem; }
.footer__legal a { color: rgba(255,255,255,0.5); font-size: 0.8125rem; transition: color var(--transition-fast); }
.footer__legal a:hover { color: var(--white); }

/* =============================================
   COOKIE BANNER
   ============================================= */
#cookie-accept { display: none; }
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 999999;
  background: rgba(0,0,0,0.97);
  backdrop-filter: blur(16px);
  border-top: 1px solid rgba(212,175,55,0.5);
  padding: 1.25rem 1rem;
  box-shadow: 0 -8px 40px rgba(0,0,0,0.45), 0 -1px 0 rgba(212,175,55,0.2);
  transition: transform 0.5s ease, opacity 0.5s ease;
}
#cookie-accept:checked ~ .cookie-banner { transform: translateY(100%); opacity: 0; pointer-events: none; }
.cookie-banner__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}
@media (min-width: 768px) { .cookie-banner__inner { flex-direction: row; gap: 2rem; } }
.cookie-banner__icon { font-size: 2rem; display: none; }
@media (min-width: 768px) { .cookie-banner__icon { display: block; } }
.cookie-banner__text { flex: 1; }
.cookie-banner__title { font-family: var(--font-heading); font-weight: 700; color: var(--white); margin-bottom: 0.25rem; }
.cookie-banner__desc { font-size: 0.8125rem; color: rgba(255,255,255,0.65); line-height: 1.6; }
.cookie-banner__desc a { color: var(--accent); text-decoration: underline; }
.cookie-banner__actions { display: flex; gap: 0.75rem; flex-shrink: 0; flex-wrap: wrap; }
.cookie-banner__accept {
  padding: 0.75rem 1.75rem;
  background: var(--gold-gradient);
  color: #000;
  font-weight: 700;
  font-size: 0.875rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,0.18);
  cursor: pointer;
  box-shadow: 0 8px 22px rgba(212,175,55,0.32), inset 0 1px 0 rgba(255,255,255,0.4);
  transition: all var(--transition-fast);
}
.cookie-banner__accept:hover { transform: translateY(-1px); filter: brightness(1.06); box-shadow: 0 12px 28px rgba(212,175,55,0.45); }
.cookie-banner__essential {
  padding: 0.75rem 1.75rem;
  background: rgba(255,255,255,0.08);
  color: var(--white);
  font-weight: 600;
  font-size: 0.875rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,0.2);
  cursor: pointer;
  transition: all var(--transition-fast);
}
.cookie-banner__essential:hover { background: rgba(255,255,255,0.15); }
.cookie-banner__link {
  padding: 0.75rem 1rem;
  color: rgba(255,255,255,0.5);
  font-size: 0.8125rem;
  text-decoration: underline;
}
.cookie-banner__link:hover { color: var(--white); }

/* =============================================
   WHATSAPP FAB
   ============================================= */
.whatsapp-fab {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 9998;
  width: 3.5rem;
  height: 3.5rem;
  background: var(--whatsapp);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.5rem;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: all var(--transition-fast);
  animation: pulse-glow 3s ease-in-out infinite;
}
.whatsapp-fab:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(37,211,102,0.5);
}

/* =============================================
   RESPONSIVE HELPERS
   ============================================= */
.hide-mobile { display: none; }
@media (min-width: 768px) { .hide-mobile { display: block; } }
.show-mobile { display: block; }
@media (min-width: 768px) { .show-mobile { display: none; } }
