:root {
  --color-1: #FFAF21;
  --color-2: #B67D21;
  --color-4: #E5E9F2;
  --color-5: #B4B1B1;
  --dark: #111318;
  --dark-2: #1f232b;
  --white: #ffffff;
  --muted: #686d78;
  --success: #24c060;
  --shadow: 0 24px 80px rgba(17, 19, 24, 0.14);
  --shadow-soft: 0 18px 40px rgba(17, 19, 24, 0.08);
  --radius: 28px;
  --radius-sm: 18px;
  --container: 1180px;
  --ease: cubic-bezier(.2, .7, .2, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--dark);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}
body.nav-open { overflow: hidden; }
body.nav-open .site-header { z-index: 2500; }
body.nav-open .whatsapp-float { opacity: 0; pointer-events: none; transform: scale(.9); }
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
::selection { background: var(--color-1); color: var(--dark); }

.container {
  width: min(var(--container), calc(100% - 40px));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: -120px;
  left: 20px;
  z-index: 9999;
  padding: 12px 18px;
  color: var(--dark);
  background: var(--color-1);
  border-radius: 999px;
  transition: top .25s ease;
}
.skip-link:focus { top: 20px; }
.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;
}

h1, h2, h3 { line-height: 1.04; margin: 0 0 18px; letter-spacing: -0.045em; }
h1 { font-size: clamp(3.1rem, 5vw, 5rem); }
h2 { font-size: clamp(1.8rem, 3vw, 3rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }
p { margin: 0 0 18px; color: var(--muted); }

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  color: var(--white);
  transition: all .35s var(--ease);
}
.topbar {
  border-bottom: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(6px);
  transition: opacity .35s var(--ease), transform .35s var(--ease), max-height .35s var(--ease);
  max-height: 42px;
  overflow: hidden;
}
.topbar__inner {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  font-size: .86rem;
  color: rgba(255,255,255,.86);
}
.topbar i { color: var(--color-1); margin-right: 7px; }
.site-header.is-scrolled {
  background: rgba(17, 19, 24, .92);
  box-shadow: 0 14px 44px rgba(0,0,0,.18);
  backdrop-filter: blur(18px);
}
.site-header.is-scrolled .topbar { max-height: 0; opacity: 0; transform: translateY(-100%); }
.navbar { transition: all .35s var(--ease); }
.nav-shell {
  min-height: 98px;
  display: grid;
  grid-template-columns: minmax(210px, 1fr) auto minmax(320px, 1fr);
  align-items: center;
  gap: 22px;
  position: relative;
}
.site-header.is-scrolled .nav-shell { min-height: 78px; }
.brand {
  grid-column: 1;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  justify-self: start;
  align-self: center;
  height: 100%;
  width: min(220px, 40vw);
  z-index: 2;
}
.brand img {
  width: 210px;
  height: auto;
  max-height: 72px;
  object-fit: contain;
  filter: drop-shadow(0 12px 24px rgba(0,0,0,.28));
  transition: transform .35s var(--ease), max-height .35s var(--ease), width .35s var(--ease);
}
.brand:hover img { transform: translateY(-2px) scale(1.03); }
.brand__glow {
  position: absolute;
  inset: 6px;
  background: radial-gradient(circle, rgba(255,175,33,.34), transparent 70%);
  filter: blur(12px);
  opacity: .8;
}
.nav-menu__mobile-brand {
  display: none;
}
.nav-menu__mobile-brand img {
  width: min(190px, 56vw);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 18px 34px rgba(0,0,0,.35));
}

.nav-links {
  grid-column: 2;
  justify-self: center;
  align-self: center;
  display: flex;
  align-items: center;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
  pointer-events: auto;
}
.nav-actions {
  grid-column: 3;
  justify-self: end;
  align-self: center;
  display: flex;
  align-items: center;
  gap: 10px;
  pointer-events: auto;
}
.nav-link {
  position: relative;
  display: inline-flex;
  padding: 12px 14px;
  border-radius: 999px;
  font-weight: 750;
  font-size: .94rem;
  color: rgba(255,255,255,.9);
  overflow: hidden;
  transition: color .28s var(--ease), transform .28s var(--ease);
}
.nav-link::before {
  content: "";
  position: absolute;
  inset: auto 13px 6px 13px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-1), transparent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .28s var(--ease);
}
.nav-link::after {
  content: "";
  position: absolute;
  inset: 2px;
  border-radius: inherit;
  background: rgba(255,175,33,.12);
  opacity: 0;
  transform: scale(.9);
  transition: .28s var(--ease);
  z-index: -1;
}
.nav-link:hover, .nav-link.is-active { color: var(--color-1); transform: translateY(-2px); }
.nav-link:hover::before, .nav-link.is-active::before { transform: scaleX(1); }
.nav-link:hover::after, .nav-link.is-active::after { opacity: 1; transform: scale(1); }
.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 16px;
  background: rgba(255,255,255,.08);
  color: white;
  justify-self: end;
  place-items: center;
  padding: 11px;
  cursor: pointer;
}
.nav-toggle span:not(.sr-only) {
  width: 22px;
  height: 2px;
  background: currentColor;
  display: block;
  margin: 3px 0;
  border-radius: 99px;
  transition: .25s var(--ease);
}
.nav-toggle.is-active span:nth-child(1) { transform: translateY(5px) rotate(45deg); }
.nav-toggle.is-active span:nth-child(2) { opacity: 0; }
.nav-toggle.is-active span:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }

/* Desktop navbar alignment fix */
@media (min-width: 1101px) {
  .navbar,
  .nav-shell,
  .nav-menu {
    display: grid;
    align-items: center;
  }

  .nav-shell {
    height: 98px;
    min-height: 98px;
  }

  .site-header.is-scrolled .nav-shell {
    height: 78px;
    min-height: 78px;
  }

  .brand {
    height: 100%;
    min-height: inherit;
    padding-block: 8px;
  }

  .brand img {
    display: block;
    flex: 0 0 auto;
    width: 210px;
    max-height: 72px;
  }

  .site-header.is-scrolled .brand img {
    width: 188px;
    max-height: 60px;
  }

  .brand__glow {
    top: 50%;
    right: -8px;
    bottom: auto;
    left: -8px;
    height: 76px;
    transform: translateY(-50%);
  }

  .nav-menu {
    height: 100%;
    grid-template-rows: 1fr;
  }

  .nav-links,
  .nav-actions {
    height: 100%;
    align-items: center;
  }

  .nav-link,
  .nav-actions .btn {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }
}


/* Buttons */
.btn {
  --btn-bg: var(--dark);
  --btn-color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: var(--btn-bg);
  color: var(--btn-color);
  font-weight: 850;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 16px 32px rgba(0,0,0,.12);
  transition: transform .28s var(--ease), box-shadow .28s var(--ease), background .28s var(--ease), border-color .28s var(--ease);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-3px); box-shadow: 0 24px 42px rgba(0,0,0,.2); }
.btn--primary { --btn-bg: linear-gradient(135deg, var(--color-1), var(--color-2)); --btn-color: #16130d; }
.btn--light { --btn-bg: rgba(255,255,255,.96); --btn-color: var(--dark); }
.btn--dark { --btn-bg: var(--dark); --btn-color: var(--white); }
.btn--ghost { --btn-bg: rgba(255,255,255,.08); --btn-color: var(--white); border-color: rgba(255,255,255,.18); box-shadow: none; }
.btn--small { padding: 12px 16px; font-size: .88rem; }
.btn--full { width: 100%; border: 0; }
.btn--magnetic { position: relative; overflow: hidden; }
.btn--magnetic::after {
  content: "";
  position: absolute;
  inset: -50%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.32), transparent);
  transform: translateX(-80%) rotate(20deg);
  transition: transform .55s ease;
}
.btn--magnetic:hover::after { transform: translateX(80%) rotate(20deg); }

/* Hero */
.hero {
  min-height: 100vh;
  position: relative;
  display: grid;
  place-items: center;
  color: var(--white);
  overflow: hidden;
  padding: 170px 0 70px;
}
.hero-video-wrap, .hero-video, .hero-fallback, .hero-overlay, .speed-lines {
  position: absolute;
  inset: 0;
}
.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .68;
  z-index: 1;
}
.hero-fallback {
  background:
    linear-gradient(120deg, rgba(17,19,24,.82), rgba(17,19,24,.35)),
    url('https://images.unsplash.com/photo-1492144534655-ae79c964c9d7?auto=format&fit=crop&w=2200&q=80') center/cover;
  z-index: 0;
}
.hero-overlay {
  z-index: 2;
  background:
    radial-gradient(circle at 50% 15%, rgba(255,175,33,.28), transparent 24%),
    linear-gradient(180deg, rgba(17,19,24,.24), rgba(17,19,24,.84) 78%);
}
.speed-lines {
  z-index: 3;
  opacity: .55;
  background-image: repeating-linear-gradient(110deg, transparent 0 42px, rgba(255,255,255,.1) 43px 44px);
  transform: translateX(-10%);
  animation: speedLines 8s linear infinite;
  mix-blend-mode: screen;
}
@keyframes speedLines { to { transform: translateX(10%); } }
.hero-content {
  position: relative;
  z-index: 4;
  text-align: center;
  max-width: 1050px;
}
.hero-badge, .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,175,33,.13);
  color: var(--color-2);
  font-size: .82rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .12em;
}
.hero-badge {
  color: var(--white);
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(12px);
  margin-bottom: 22px;
}
.eyebrow.light { color: var(--white); background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.18); }
.hero h1 { text-shadow: 0 20px 70px rgba(0,0,0,.45); }
.hero-lead {
  max-width: 780px;
  margin: 0 auto 32px;
  color: rgba(255,255,255,.87);
  font-size: clamp(1.1rem, 2.2vw, 1.55rem);
  font-weight: 650;
}
.hero-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}
.hero-stats {
  margin: 44px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 720px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(16px);
  overflow: hidden;
}
.hero-stats div {
  padding: 22px 18px;
  border-right: 1px solid rgba(255,255,255,.12);
}
.hero-stats div:last-child { border-right: 0; }
.hero-stats strong { display: block; color: var(--color-1); font-size: 2rem; line-height: 1; }
.hero-stats span { color: rgba(255,255,255,.78); font-size: .9rem; }

/* Sections */
.section-pad { padding: clamp(74px, 10vw, 130px) 0; }
.section-pad-sm { padding: clamp(52px, 7vw, 92px) 0; }
.section-lift { margin-top: -54px; position: relative; z-index: 5; }
.section-heading { margin-bottom: 42px; }
.section-heading.centered { margin-inline: auto; text-align: center; }
.section-heading p { font-size: 1.05rem; }
.center-actions { text-align: center; margin-top: 42px; }

.quick-offer { background: linear-gradient(180deg, #fff 0%, #f8f9fc 100%); }
.offer-grid {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  align-items: center;
  gap: clamp(30px, 6vw, 72px);
}
.offer-copy h2 { margin-top: 16px; }
.offer-copy p { font-size: 1.08rem; }
.mini-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.mini-icons span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
  color: var(--dark);
  font-weight: 800;
}
.mini-icons i { color: var(--color-1); }
.offer-grid--cta {
  grid-template-columns: minmax(0, .95fr) minmax(360px, 1.05fr);
}
.offer-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}
.offer-trust {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 18px 0 0;
  color: #535760;
  font-weight: 800;
}
.offer-trust i { color: var(--color-1); }
.offer-photo-card {
  position: relative;
  min-height: clamp(430px, 45vw, 610px);
  border-radius: calc(var(--radius) + 10px);
  overflow: hidden;
  box-shadow: 0 34px 80px rgba(17,19,24,.2);
  isolation: isolate;
  background: #111318;
}
.offer-photo-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  transition: transform .75s var(--ease), filter .75s var(--ease);
}
.offer-photo-card:hover img { transform: scale(1.1) rotate(.35deg); filter: saturate(1.08); }
.offer-photo-card__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(17,19,24,.1), rgba(17,19,24,.88));
  z-index: 1;
}
.offer-photo-card__content {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 2;
  padding: clamp(24px, 4vw, 40px);
  color: white;
}
.offer-photo-card__content h3 {
  max-width: 560px;
  margin-top: 12px;
  color: white;
}
.offer-photo-card__content p {
  max-width: 530px;
  color: rgba(255,255,255,.78);
}
.photo-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 13px;
  border-radius: 999px;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(12px);
  color: var(--color-1);
  font-weight: 900;
}
.floating-proof {
  position: absolute;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 12px 15px;
  border-radius: 18px;
  background: rgba(255,255,255,.92);
  box-shadow: 0 18px 45px rgba(0,0,0,.18);
  color: var(--dark);
  font-weight: 900;
  animation: floatProof 4.8s ease-in-out infinite;
}
.floating-proof i { color: var(--color-1); }
.floating-proof--top { top: 28px; left: 28px; }
.floating-proof--bottom { right: 28px; bottom: 28px; animation-delay: -1.7s; }
@keyframes floatProof {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.glass-card {
  border: 1px solid rgba(255,255,255,.68);
  background: rgba(255,255,255,.88);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  padding: clamp(22px, 4vw, 34px);
  backdrop-filter: blur(18px);
}
.form-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 22px;
}
.form-head > i {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--color-1), var(--color-2));
  color: #17120a;
  font-size: 1.35rem;
  box-shadow: 0 14px 32px rgba(255,175,33,.28);
}
.form-head h2, .form-head h3 { margin-bottom: 4px; letter-spacing: -.03em; }
.form-head p { margin: 0; font-size: .92rem; }
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}
.form-grid label {
  display: grid;
  gap: 8px;
  font-weight: 850;
  font-size: .9rem;
}
.form-grid .full { grid-column: 1 / -1; }
input, select, textarea {
  width: 100%;
  border: 1px solid #dde2ea;
  border-radius: 16px;
  background: #f9fafc;
  padding: 14px 15px;
  outline: none;
  color: var(--dark);
  transition: border-color .25s ease, background .25s ease, box-shadow .25s ease;
}
textarea { min-height: 120px; resize: vertical; }
input:focus, select:focus, textarea:focus {
  border-color: var(--color-1);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(255,175,33,.15);
}
.form-grid + .btn, .offer-form .btn, .contact-form .btn { margin-top: 18px; }
.form-note { font-size: .84rem; margin: 14px 0 0; }

/* Media strip */
.media-strip { background: #f7f8fb; overflow: hidden; }
.photo-marquee { margin-top: 32px; overflow: visible; }
.photo-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: clamp(220px, 28vw, 380px);
  gap: 18px;
  animation: marquee 36s linear infinite;
  width: max-content;
}
.photo-chip {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transform: rotate(var(--r, -1deg));
  background: white;
  padding: 8px;
}
.photo-chip:nth-child(2n) { --r: 1.2deg; }
.photo-chip img { width: 100%; height: 250px; object-fit: cover; border-radius: 22px; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* Cards */
.hover-card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.photo-card {
  position: relative;
  min-height: 440px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  isolation: isolate;
  transform-style: preserve-3d;
}
.photo-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  transition: transform .55s var(--ease), filter .55s var(--ease);
  z-index: -2;
}
.photo-card__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(17,19,24,.08), rgba(17,19,24,.88));
  z-index: -1;
}
.photo-card__content {
  position: absolute;
  inset: auto 0 0 0;
  padding: 28px;
  color: var(--white);
  transform: translateY(50px);
  transition: transform .45s var(--ease);
}
.photo-card i { color: var(--color-1); font-size: 2rem; margin-bottom: 18px; }
.photo-card h3 { font-size: 1.55rem; }
.photo-card p { color: rgba(255,255,255,.78); opacity: 0; transform: translateY(12px); transition: .35s var(--ease); }
.photo-card span { color: var(--color-1); font-weight: 900; opacity: 0; transform: translateY(12px); display: inline-flex; gap: 8px; transition: .35s var(--ease); }
.photo-card:hover img { transform: scale(1.14); filter: saturate(1.18) contrast(1.08); }
.photo-card:hover .photo-card__content { transform: translateY(0); }
.photo-card:hover p, .photo-card:hover span { opacity: 1; transform: translateY(0); }

/* Parallax */
.parallax-section {
  position: relative;
  min-height: 620px;
  display: grid;
  place-items: center;
  color: var(--white);
  overflow: hidden;
  background: var(--bg) center/cover fixed;
}
.parallax-section--short { min-height: 490px; }
.parallax-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 25% 20%, rgba(255,175,33,.24), transparent 30%),
    linear-gradient(120deg, rgba(17,19,24,.84), rgba(17,19,24,.44));
}
.parallax-content {
  position: relative;
  z-index: 1;
  max-width: 820px;
  text-align: center;
}
.parallax-content h2 { margin-top: 16px; }
.parallax-content p { color: rgba(255,255,255,.82); font-size: 1.12rem; }

/* Process */
.timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  position: relative;
}
.timeline::before {
  content: "";
  position: absolute;
  top: 38px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-1), transparent);
  z-index: 0;
}
.step-card {
  position: relative;
  z-index: 1;
  background: var(--white);
  border: 1px solid #edf0f5;
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-soft);
  transition: transform .3s var(--ease), border-color .3s var(--ease);
  align-items: center;
  justify-content: center;
  text-align: center;
}
.step-card:hover { transform: translateY(-8px); border-color: rgba(255,175,33,.5); }
.step-number {
  display: inline-grid;
  place-items: center;
  width: 76px;
  height: 76px;
  border-radius: 24px;
  margin-bottom: 24px;
  background: linear-gradient(135deg, var(--color-1), var(--color-2));
  color: #17120a;
  font-size: 1.8rem;
  font-weight: 950;
  box-shadow: 0 16px 34px rgba(255,175,33,.25);
}

/* Video Stage */
.video-stage { background: linear-gradient(135deg, #111318, #222732); color: white; }
.video-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  align-items: center;
  gap: clamp(28px, 6vw, 70px);
}
.video-copy p { color: rgba(255,255,255,.72); }
.video-placeholder {
  min-height: 420px;
  border-radius: calc(var(--radius) + 10px);
  display: grid;
  place-items: center;
  text-align: center;
  padding: 30px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.13);
  background:
    linear-gradient(135deg, rgba(255,175,33,.12), rgba(255,255,255,.04)),
    repeating-linear-gradient(90deg, transparent 0 34px, rgba(255,255,255,.04) 35px 36px);
  box-shadow: 0 30px 100px rgba(0,0,0,.3);
}
.video-placeholder::before {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  border: 1px solid rgba(255,175,33,.28);
  border-radius: 50%;
  animation: spin 18s linear infinite;
}
.video-placeholder::after {
  content: "";
  position: absolute;
  inset: auto -20% 0 -20%;
  height: 120px;
  background: linear-gradient(180deg, transparent, rgba(255,175,33,.14));
}
.play-orb {
  width: 96px;
  height: 96px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--color-1);
  color: var(--dark);
  font-size: 2rem;
  box-shadow: 0 0 0 16px rgba(255,175,33,.13), 0 0 70px rgba(255,175,33,.4);
  z-index: 1;
}
.video-placeholder p { color: white; font-weight: 900; margin: 12px 0 0; z-index: 1; }
.video-placeholder span { color: rgba(255,255,255,.65); z-index: 1; }
@keyframes spin { to { transform: rotate(360deg); } }

/* Local / CTA */
.local-seo { background: #f8f9fc; }
.local-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.area-cloud {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  text-align: center;
  justify-content: center;
  gap: 12px;
}
.area-cloud span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 15px;
  border-radius: 999px;
  background: white;
  color: var(--dark);
  box-shadow: var(--shadow-soft);
  font-weight: 850;
}
.area-cloud.compact span { padding: 9px 12px; font-size: .9rem; }
.area-cloud i { color: var(--color-1); }
.cta-banner {
  padding: 72px 0;
  background:
    radial-gradient(circle at 20% 10%, rgba(255,255,255,.24), transparent 26%),
    linear-gradient(135deg, var(--color-1), var(--color-2));
  color: #17120a;
  position: relative;
  overflow: hidden;
}
.cta-banner::after {
  content: "";
  position: absolute;
  inset: auto -10% -30px -10%;
  height: 86px;
  background: repeating-linear-gradient(90deg, rgba(17,19,24,.85) 0 70px, transparent 70px 110px);
  opacity: .16;
  transform: skewY(-2deg);
}
.cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.cta-inner h2 { margin-bottom: 10px; }
.cta-inner p { color: rgba(17,19,24,.72); margin: 0; }
.cta-buttons { display: flex; gap: 12px; flex-wrap: wrap; justify-content: flex-end; }

/* Sub pages */
.subhero {
  position: relative;
  min-height: 20vh;
  display: grid;
  place-items: end start;
  padding: 180px 0 86px;
  color: white;
  background: var(--bg) center/cover fixed;
  overflow: hidden;
}
.subhero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(255,175,33,.25), transparent 30%),
    linear-gradient(120deg, rgba(17,19,24,.9), rgba(17,19,24,.36));
}
.subhero-content { position: relative; z-index: 1;}
.subhero-content h1 { margin-top: 16px;}
.subhero-content p { color: rgba(255,255,255,.82); font-size: 1.16rem; }

.service-masonry {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.service-card-large {
  min-height: 430px;
  grid-column: span 2;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  background: var(--dark);
}
.service-card-large:nth-child(3n) { grid-column: span 1; }
.service-card-large:nth-child(4n) { grid-column: span 1; }
.service-card-large img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .76;
  transform: scale(1.05);
  transition: transform .5s var(--ease), opacity .5s var(--ease);
}
.service-card-large::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(17,19,24,.08), rgba(17,19,24,.92));
}
.service-card-large__body {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 1;
  padding: 28px;
  color: white;
}
.service-card-large__body i { color: var(--color-1); font-size: 2.1rem; margin-bottom: 18px; }
.service-card-large__body p { color: rgba(255,255,255,.76); }
.service-card-large__body a { color: var(--color-1); font-weight: 900; }
.service-card-large:hover img { transform: scale(1.14); opacity: .92; }
.compare-section { background: #f8f9fc; }
.compare-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(26px, 6vw, 70px);
  align-items: center;
}
.benefit-stack { display: grid; gap: 14px; }
.benefit-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 22px;
  border-radius: 22px;
  background: white;
  box-shadow: var(--shadow-soft);
  transition: transform .28s var(--ease);
}
.benefit-item:hover { transform: translateX(8px); }
.benefit-item i { color: var(--color-1); font-size: 1.4rem; margin-top: 2px; }
.benefit-item h3 { font-size: 1.1rem; margin-bottom: 4px; }
.benefit-item p { margin: 0; }

/* Contact */
.contact-section { background: linear-gradient(180deg, white, #f8f9fc); }
.contact-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: clamp(26px, 6vw, 70px);
  align-items: start;
}
.contact-panel {
  position: sticky;
  top: 110px;
}
.contact-lines { display: grid; gap: 13px; margin-top: 24px; }
.contact-lines a {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  border-radius: 20px;
  background: white;
  box-shadow: var(--shadow-soft);
  transition: transform .28s var(--ease), box-shadow .28s var(--ease);
}
.contact-lines a:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.contact-lines i {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  background: rgba(255,175,33,.15);
  color: var(--color-2);
  font-size: 1.2rem;
}
.contact-lines strong { display: block; color: var(--dark); }
.contact-lines span { color: var(--muted); }
.map-section { background: #f8f9fc; }
.map-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  align-items: center;
  text-align: center;
  justify-content: center;
}
.map-placeholder, .region-card {
  border-radius: var(--radius);
  padding: clamp(24px, 5vw, 42px);
  box-shadow: var(--shadow-soft);
  background: white;
    align-items: center;
  text-align: center;
  justify-content: center;
}
.map-placeholder {
  display: grid;
  place-items: center;
  text-align: center;
  background:
    linear-gradient(135deg, rgba(255,175,33,.16), rgba(255,255,255,.82)),
    repeating-linear-gradient(45deg, #f1f3f7 0 18px, #fff 18px 36px);
  position: relative;
  overflow: hidden;
}
.map-pin {
  width: 94px;
  height: 94px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--color-1);
  color: var(--dark);
  font-size: 2.2rem;
  box-shadow: 0 0 0 18px rgba(255,175,33,.18);
  z-index: 1;
}
.map-placeholder h2, .map-placeholder p, .map-placeholder a { z-index: 1; }
.region-card { display: flex; flex-direction: column; justify-content: center; }

/* FAQ */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(28px, 6vw, 72px);
  align-items: start;
}
.faq-intro { position: sticky; top: 110px; }
.accordion { display: grid; gap: 14px; }
.faq-item {
  border: 1px solid #edf0f5;
  border-radius: 22px;
  background: white;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  border: 0;
  background: transparent;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 23px;
  text-align: left;
  color: var(--dark);
  font-weight: 900;
  cursor: pointer;
}
.faq-question i { color: var(--color-2); transition: transform .25s var(--ease); }
.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .3s var(--ease);
}
.faq-answer p {
  overflow: hidden;
  margin: 0;
  padding: 0 23px;
}
.faq-item.is-open .faq-answer { grid-template-rows: 1fr; }
.faq-item.is-open .faq-answer p { padding-bottom: 23px; }
.faq-item.is-open .faq-question i { transform: rotate(180deg); }

/* Footer */
.footer {
  position: relative;
  padding: 72px 0 26px;
  background: #111318;
  color: white;
  overflow: hidden;
}
.footer-road {
  position: absolute;
  inset: 0 0 auto 0;
  height: 8px;
  background: repeating-linear-gradient(90deg, var(--color-1) 0 70px, transparent 70px 120px);
  opacity: .85;
  animation: roadMove 5s linear infinite;
}
@keyframes roadMove { to { background-position: 120px 0; } }
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 34px;
}
.footer h3 { font-size: 1.2rem; }
.footer p, .footer li { color: rgba(255,255,255,.68); }
.footer-logo { width: 170px; margin-bottom: 18px; filter: drop-shadow(0 16px 28px rgba(0,0,0,.35)); }
.footer-list {
  list-style: disc;
  padding-left: 1.2rem;
  margin: 0;
  display: grid;
  gap: 8px;
}

.footer-list li::marker {
  color: var(--color-1);
}

.footer-list i {
  display: none;
}
.socials { display: flex; gap: 10px; margin-top: 20px; }
.socials a {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  color: var(--color-1);
  transition: transform .25s var(--ease), background .25s var(--ease);
}
.socials a:hover { transform: translateY(-4px); background: rgba(255,175,33,.16); }
.text-link { color: var(--color-1); font-weight: 900; }
.footer-bottom {
  display: block;
  justify-content: center;
  align-items: center;
  text-align: center ;
  gap: 16px;
  margin-top: 46px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.1);
  color: rgba(255,255,255,.58);
  font-size: .92rem;
}
.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 1200;
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #25D366;
  color: white;
  font-size: 2rem;
  box-shadow: 0 18px 45px rgba(37,211,102,.38);
  transition: transform .25s var(--ease);
}
.whatsapp-float:hover { transform: translateY(-4px) scale(1.04); }
.whatsapp-float__pulse {
  position: absolute;
  inset: -8px;
  border-radius: inherit;
  border: 2px solid rgba(37,211,102,.4);
  animation: pulse 1.8s ease-out infinite;
}
@keyframes pulse { to { transform: scale(1.35); opacity: 0; } }



/* Desktop navbar alignment fix */
@media (min-width: 1101px) {
  .nav-shell {
    min-height: 98px;
    display: grid;
    grid-template-columns: 230px minmax(0, 1fr) auto;
    align-items: center;
    gap: 24px;
    position: relative;
  }

  .site-header.is-scrolled .nav-shell {
    min-height: 78px;
  }

  .brand {
    grid-column: 1;
    grid-row: 1;
    justify-self: start;
    align-self: center;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 210px;
    height: 98px;
    position: relative;
    z-index: 3;
  }

  .site-header.is-scrolled .brand {
    height: 78px;
  }

  .brand img {
    width: 250px;
    height: auto;
    max-height: 100px;
    object-fit: contain;
    display: block;
  }

  .site-header.is-scrolled .brand img {
    width: 185px;
    height: 68px;
    max-height: 68px;
  }

  .nav-menu {
    grid-column: 2 / 4;
    grid-row: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    column-gap: 24px;
    width: 100%;
    height: 98px;
    pointer-events: auto;
  }

  .site-header.is-scrolled .nav-menu {
    height: 78px;
  }

  .nav-links {
    grid-column: 1;
    justify-self: center;
    align-self: center;
    display: flex;
    align-items: center;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .nav-actions {
    grid-column: 2;
    justify-self: end;
    align-self: center;
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .nav-toggle {
    display: none;
  }

  .nav-menu__mobile-brand {
    display: none;
  }
}

/* Responsive */
@media (max-width: 1100px) {
  .nav-shell { grid-template-columns: auto 1fr auto; min-height: 82px; }
  .brand { grid-column: 1; justify-self: start; width: 170px; }
  .brand img { width: 170px; }
  .nav-toggle { display: grid; grid-column: 3; position: relative; z-index: 1602; }
  .nav-menu {
    position: fixed;
    inset: 0;
    width: 100vw;
    min-height: 100dvh;
    grid-column: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: clamp(20px, 4vh, 34px);
    pointer-events: auto;
    padding: clamp(28px, 7vw, 58px);
    border-radius: 0;
    background:
      radial-gradient(circle at 50% 10%, rgba(255,175,33,.18), transparent 32%),
      linear-gradient(145deg, rgba(17,19,24,.98), rgba(31,33,39,.98));
    border: 0;
    box-shadow: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-18px);
    transition: opacity .32s var(--ease), visibility .32s var(--ease), transform .32s var(--ease);
    overflow-y: auto;
  }
  .nav-menu::before {
    content: "";
    position: absolute;
    inset: 18px;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 30px;
    pointer-events: none;
  }
  .nav-menu.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
  .nav-menu__mobile-brand { display: inline-flex; position: relative; z-index: 1; }
  .nav-links {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: clamp(6px, 1.3vh, 12px);
    width: min(420px, 100%);
  }
  .nav-links li { width: 100%; }
  .nav-link {
    display: flex;
    justify-content: center;
    width: 100%;
    padding: 15px 24px;
    font-size: clamp(1.25rem, 5vw, 2rem);
    letter-spacing: -.03em;
  }
  .nav-link::before { inset: auto 23% 5px 23%; }
  .nav-actions {
    position: relative;
    z-index: 1;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: min(340px, 100%);
    margin-top: 0;
  }
  .nav-actions .btn { flex: unset; width: 100%; }
  .topbar { display: none; }
  .hover-card-grid, .service-masonry { grid-template-columns: repeat(2, 1fr); }
  .service-card-large, .service-card-large:nth-child(3n), .service-card-large:nth-child(4n) { grid-column: span 1; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .container { width: min(var(--container), calc(100% - 28px)); }
  .hero { padding-top: 130px; min-height: 100svh; }
  .hero-actions, .cta-buttons { justify-content: stretch; }
  .hero-actions .btn, .cta-buttons .btn { width: 100%; }
  .hero-stats { grid-template-columns: 1fr; max-width: 420px; }
  .hero-stats div { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.12); }
  .hero-stats div:last-child { border-bottom: 0; }
  .offer-grid, .offer-grid--cta, .video-grid, .local-grid, .compare-grid, .contact-grid, .map-grid, .faq-grid { grid-template-columns: 1fr; }
  .contact-panel, .faq-intro { position: static; }
  .timeline { grid-template-columns: 1fr; }
  .timeline::before { display: none; }
  .cta-inner { display: grid; }
  .cta-buttons { justify-content: start; }
  .parallax-section, .subhero { background-attachment: scroll; }
  .subhero { min-height: 62vh; padding-top: 140px; }
  .photo-track { grid-auto-columns: 280px; }
  .photo-chip img { height: 220px; }
  .offer-photo-card { min-height: 500px; }
  .offer-cta-actions .btn { width: 100%; }
}

@media (max-width: 640px) {
  h1 { font-size: clamp(2.7rem, 4vw, 4rem); }
  h2 { font-size: clamp(2rem, 3vw, 3rem); }
  .brand, .brand img { width: 145px; }
  .nav-shell { min-height: 72px; }
  .site-header.is-scrolled .nav-shell { min-height: 66px; }
  .section-lift { margin-top: -30px; }
  .form-grid { grid-template-columns: 1fr; }
  .hover-card-grid, .service-masonry { grid-template-columns: 1fr; }
  .photo-card { min-height: 360px; }
  .video-placeholder { min-height: 300px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
  .whatsapp-float { width: 56px; height: 56px; right: 16px; bottom: 16px; font-size: 1.75rem; }
  .nav-actions { display: grid; }
  .offer-photo-card { min-height: 460px; }
  .floating-proof { position: relative; top: auto; right: auto; bottom: auto; left: auto; margin: 10px 0 0 18px; display: none; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .001ms !important;
  }
}

/* Auto verkaufen multi-step form page */
.form-hero {
  min-height: 20vh;
  position: relative;
  display: grid;
  align-items: center;
  color: var(--white);
  overflow: hidden;
  padding: 170px 0 80px;
}
.form-hero__bg,
.form-hero__overlay {
  position: absolute;
  inset: 0;
}
.form-hero__bg {
  background:
    linear-gradient(120deg, rgba(17,19,24,.92), rgba(17,19,24,.28)),
    url('/images/cars/gold.jpg') center/cover fixed;
  transform: scale(1.04);
}
.form-hero__overlay {
  background:
    radial-gradient(circle at 74% 22%, rgba(255,175,33,.35), transparent 26%),
    linear-gradient(180deg, rgba(17,19,24,.10), rgba(17,19,24,.88) 82%);
  z-index: 1;
}
.form-hero__grid {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: clamp(36px, 7vw, 92px);
}
.form-hero__copy p {
  color: rgba(255,255,255,.86);
  font-size: clamp(1.1rem, 2.1vw, 1.46rem);
  max-width: 760px;
}
.form-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}
.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}
.trust-strip span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 999px;
  background: rgba(255,255,255,.09);
  backdrop-filter: blur(12px);
  color: rgba(255,255,255,.86);
  font-weight: 800;
  font-size: .9rem;
}
.trust-strip i { color: var(--color-1); }
.form-hero__media {
  display: grid;
  place-items: center;
  min-height: 520px;
  perspective: 1200px;
}
.hero-phone-card {
  width: min(420px, 92vw);
  aspect-ratio: 8 / 10;
  position: relative;
  transform: rotateY(-12deg) rotateX(7deg);
  animation: floatPhone 6s ease-in-out infinite;
}
@keyframes floatPhone {
  0%, 100% { transform: rotateY(-12deg) rotateX(7deg) translateY(0); }
  50% { transform: rotateY(-8deg) rotateX(5deg) translateY(-16px); }
}
.hero-phone-card__screen {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  border-radius: 42px;
  background:
    linear-gradient(160deg, rgba(255,255,255,.96), rgba(229,233,242,.88)),
    radial-gradient(circle at 70% 20%, rgba(255,175,33,.22), transparent 36%);
  box-shadow: 0 44px 110px rgba(0,0,0,.42);
  padding: 42px;
  display: grid;
  place-items: center;
  text-align: center;
  overflow: hidden;
}
.hero-phone-card__screen::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(17,19,24,.08);
  border-radius: 30px;
}
.hero-phone-card__screen::after {
  content: "";
  position: absolute;
  top: 26px;
  width: 86px;
  height: 8px;
  border-radius: 999px;
  background: rgba(17,19,24,.16);
}
.hero-phone-card__screen img {
  width: min(240px, 66%);
  filter: drop-shadow(0 18px 30px rgba(17,19,24,.18));
}
.hero-phone-card__screen strong {
  color: var(--dark);
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1;
  letter-spacing: -.05em;
}
.hero-phone-card__screen span {
  color: var(--muted);
  font-weight: 800;
}
.hero-phone-card__glow {
  position: absolute;
  inset: 22% -10% -6% 10%;
  background: radial-gradient(circle, rgba(255,175,33,.42), transparent 68%);
  filter: blur(28px);
  z-index: 0;
}
.form-page-section {
  background:
    radial-gradient(circle at 16% 10%, rgba(255,175,33,.10), transparent 30%),
    linear-gradient(180deg, #fff 0%, #f8f9fc 100%);
}
.form-page-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}
.form-side-panel {
  position: sticky;
  top: 118px;
}
.form-side-panel h2 {
  font-size: clamp(2rem, 4vw, 3.45rem);
  margin-top: 14px;
}
.cta-card-stack {
  display: grid;
    grid-template-columns: 1fr 1fr 1fr;
  gap: clamp(28px, 5vw, 64px);

  gap: 12px;
  margin: 28px 0;
}
.mini-cta {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 15px;
  border-radius: 22px;
  background: var(--white);
  border: 1px solid #eceff5;
  box-shadow: var(--shadow-soft);
  transition: transform .28s var(--ease), border-color .28s var(--ease), box-shadow .28s var(--ease);
}
.mini-cta:hover {
  transform: translateX(8px);
  border-color: rgba(255,175,33,.55);
  box-shadow: var(--shadow);
}
.mini-cta i {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  flex: 0 0 52px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--color-1), var(--color-2));
  color: #17120a;
  font-size: 1.25rem;
}
.mini-cta span { display: grid; gap: 2px; }
.mini-cta strong { line-height: 1.1; }
.mini-cta small { color: var(--muted); font-weight: 700; }
.side-photo-card {
  position: relative;
  min-height: 340px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  isolation: isolate;
}
.side-photo-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
  transition: transform .5s var(--ease);
}
.side-photo-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(17,19,24,.08), rgba(17,19,24,.84));
  z-index: -1;
}
.side-photo-card:hover img { transform: scale(1.08); }
.side-photo-card div {
  position: absolute;
  inset: auto 0 0 0;
  padding: 28px;
  color: white;
  display: grid;
  gap: 6px;
}
.side-photo-card strong { font-size: 1.35rem; }
.side-photo-card span { color: rgba(255,255,255,.78); font-weight: 700; }
.wizard-card {
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(229,233,242,.9);
  border-radius: clamp(28px, 4vw, 44px);
  box-shadow: var(--shadow);
  padding: clamp(20px, 4vw, 38px);
  overflow: hidden;
  backdrop-filter: blur(18px);
}
.wizard-top {
  display: grid;
  grid-template-columns: 1fr minmax(160px, 260px);
  gap: 24px;
  align-items: center;
  margin-bottom: 24px;
}
.wizard-top h2 { margin: 10px 0 0; font-size: clamp(1.9rem, 4vw, 3.45rem); }
.wizard-progress {
  height: 12px;
  background: #edf0f5;
  border-radius: 999px;
  overflow: hidden;
  box-shadow: inset 0 1px 2px rgba(17,19,24,.06);
}
.wizard-progress__bar {
  display: block;
  width: 25%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--color-1), var(--color-2));
  transition: width .35s var(--ease);
}
.wizard-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 28px;
}
.wizard-step-dot {
  border: 1px solid #e5e9f2;
  border-radius: 20px;
  background: #f9fafc;
  padding: 13px 12px;
  text-align: left;
  cursor: pointer;
  transition: .28s var(--ease);
  display: grid;
  gap: 2px;
}
.wizard-step-dot strong { color: var(--color-2); font-size: .82rem; }
.wizard-step-dot span { font-weight: 900; color: var(--dark); }
.wizard-step-dot:hover,
.wizard-step-dot.is-active {
  transform: translateY(-3px);
  border-color: rgba(255,175,33,.62);
  background: rgba(255,175,33,.10);
}
.wizard-step-dot.is-complete strong::after {
  content: " ✓";
}
.wizard-page {
  display: none;
  animation: wizardIn .38s var(--ease);
}
.wizard-page.is-active { display: block; }
@keyframes wizardIn {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}
.question-card {
  display: grid;
  grid-template-columns: 118px 1fr;
  gap: 22px;
  align-items: center;
  padding: 20px;
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(255,175,33,.12), rgba(229,233,242,.45));
  margin-bottom: 22px;
  border: 1px solid rgba(255,175,33,.20);
}
.question-icon {
  width: 118px;
  aspect-ratio: 1;
  object-fit: contain;
  filter: drop-shadow(0 14px 22px rgba(17,19,24,.12));
  animation: iconFloat 4.8s ease-in-out infinite;
  border-radius: 20px;
}
@keyframes iconFloat {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-8px) rotate(1.4deg); }
}
.question-card h3 { margin: 9px 0 8px; font-size: clamp(1.5rem, 3vw, 2.35rem); }
.question-card p { margin: 0; }
.form-grid--wizard { gap: 18px; }
.label-with-icon {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.label-with-icon img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}
.choice-group {
  border: 0;
  padding: 0;
  margin: 0 0 20px;
}
.choice-group legend {
  font-weight: 900;
  margin-bottom: 12px;
}
.choice-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.choice-card {
  cursor: pointer;
}
.choice-card input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.choice-card span {
  display: grid;
  gap: 12px;
  place-items: center;
  min-height: 132px;
  padding: 18px;
  border: 1px solid #e5e9f2;
  border-radius: 24px;
  background: #f9fafc;
  text-align: center;
  transition: .28s var(--ease);
}
.choice-card i {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: white;
  color: var(--color-2);
  font-size: 1.35rem;
  box-shadow: var(--shadow-soft);
}
.choice-card input:checked + span,
.choice-card:hover span {
  border-color: rgba(255,175,33,.72);
  background: rgba(255,175,33,.12);
  transform: translateY(-4px);
}
.two-visual-fields { margin-top: 22px; }
.send-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 20px;
}
.wizard-actions {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid #edf0f5;
}
.wizard-actions .btn { min-width: 150px; }
.wizard-prev.btn--ghost {
  --btn-bg: #f4f6fa;
  --btn-color: var(--dark);
  border-color: #e5e9f2;
}
.wizard-prev:disabled {
  opacity: .45;
  cursor: not-allowed;
  transform: none;
}
.wizard-next.is-hidden { display: none; }
.form-seo-band {
  background: #fff;
}
@media (max-width: 980px) {
  .form-hero__grid,
  .form-page-layout {
    grid-template-columns: 1fr;
  }
  .form-hero__media { min-height: auto; }
  .hero-phone-card { width: min(320px, 82vw); }
  .form-side-panel { position: static; }
  .wizard-top { grid-template-columns: 1fr; }
  .choice-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 700px) {
  .form-hero {
    padding-top: 126px;
    min-height: auto;
  }
  .form-hero__actions .btn { width: 100%; }
  .trust-strip span { width: 100%; justify-content: center; }
  .wizard-card { padding: 18px; border-radius: 28px; }
  .wizard-steps { grid-template-columns: repeat(2, 1fr); }
  .question-card { grid-template-columns: 1fr; text-align: center; justify-items: center; }
  .question-icon { width: 104px; }
  .choice-grid, .send-options { grid-template-columns: 1fr; }
  .wizard-actions { display: grid; grid-template-columns: 1fr; }
  .wizard-actions .btn { width: 100%; }
}
input.is-invalid, select.is-invalid, textarea.is-invalid {
  border-color: #e5484d;
  background: #fff7f7;
  box-shadow: 0 0 0 4px rgba(229,72,77,.12);
}
.form-link-cta { margin-top: 10px; }



.credits-link {
  color: #ad8330 !important;
  text-decoration: none;
}

.credits-link i {
  color: #ad8330;
}

.video-frame {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  min-height: auto;
  padding: 0;
  background: #000;
}

.video-frame video {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

/* Legal pages */

.legal-hero {
  position: relative;
  background:
    radial-gradient(circle at top left, rgba(255, 175, 33, 0.22), transparent 34%),
    linear-gradient(135deg, var(--dark), var(--dark-2));
  color: var(--white);
  overflow: hidden;
}

.legal-hero h1 {
  margin: 40px ;
  line-height: 1;
}

.legal-hero p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.08rem;
}

.legal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.legal-content {
  max-width: 920px;
}

.legal-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  padding: clamp(24px, 4vw, 46px);
  border: 1px solid rgba(17, 19, 24, 0.08);
}

.legal-card h2 {
  margin: 30px 0 12px;
  color: var(--dark);
  font-size: clamp(1.25rem, 2.4vw, 1.75rem);
}

.legal-card h2:first-child {
  margin-top: 0;
}

.legal-card p {
  color: var(--muted);
  line-height: 1.75;
}

.legal-card a {
  color: var(--color-2);
  font-weight: 700;
  text-decoration: none;
}

.legal-card a:hover {
  color: var(--color-1);
}

.legal-updated {
  display: inline-flex;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 175, 33, 0.14);
  color: var(--dark) !important;
  font-weight: 700;
}

.legal-list {
  margin: 0 0 20px;
  padding-left: 1.2rem;
  display: grid;
  gap: 8px;
  color: var(--muted);
  line-height: 1.65;
}

.legal-list li::marker {
  color: var(--color-1);
}

.footer-legal-links {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.footer-legal-links a {
  color: inherit;
  text-decoration: none;
  font-weight: 700;
}

.footer-legal-links a:hover {
  color: var(--color-1);
}

/* Cookie banner */

.cookie-banner {
  position: fixed;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 9999;
  max-width: 980px;
  margin: 0 auto;
  animation: cookieSlideUp 0.45s var(--ease) both;
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner__content {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 20px;
  border-radius: var(--radius-sm);
  background: rgba(17, 19, 24, 0.96);
  color: var(--white);
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
}

.cookie-banner strong {
  display: block;
  margin-bottom: 6px;
  color: var(--color-1);
  font-size: 1.05rem;
}

.cookie-banner p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.55;
  font-size: 0.95rem;
}

.cookie-banner a {
  color: var(--color-1);
  font-weight: 700;
  text-decoration: none;
}

.cookie-banner a:hover {
  text-decoration: underline;
}

.cookie-banner__actions {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.cookie-btn {
  border: 0;
  cursor: pointer;
  white-space: nowrap;
}

@keyframes cookieSlideUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 820px) {
  .legal-grid {
    grid-template-columns: 1fr;
  }

  .cookie-banner__content {
    grid-template-columns: 1fr;
  }

  .cookie-banner__actions {
    justify-content: stretch;
  }

  .cookie-banner__actions .btn {
    flex: 1;
    justify-content: center;
  }
}