/* ==========================================================================
   Drive Point – Design System
   ========================================================================== */

:root {
  /* Drive Point CI: Logo-Blau, Logo-Rot, Website-Orange */
  --navy-900: #052048;
  --navy-800: #054597;
  --navy-700: #0a5bc4;
  --orange-600: #e6301f;
  --orange-500: #ec6707;
  --orange-100: #fbe2d9;
  --cream: #faf7f3;
  --white: #ffffff;
  --ink: #262524;
  --ink-soft: #5c5955;
  --line: #e8e2d9;
  --whatsapp: #25d366;
  --whatsapp-dark: #1ebe5b;

  --font-display: "Space Grotesk", "Inter", sans-serif;
  --font-body: "Inter", sans-serif;

  --radius-s: 10px;
  --radius-m: 18px;
  --radius-l: 28px;
  --radius-full: 999px;

  --shadow-card: 0 12px 30px -14px rgba(5, 32, 72, 0.22);
  --shadow-float: 0 14px 34px -8px rgba(37, 211, 102, 0.55);
  --container: 1120px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a { color: inherit; text-decoration: none; }

ul { list-style: none; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--navy-900);
}

h1 { font-size: clamp(2.4rem, 5.2vw, 4.2rem); font-weight: 700; }
h2 { font-size: clamp(1.9rem, 3.4vw, 2.7rem); font-weight: 700; }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); font-weight: 600; }

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

section { padding: 88px 0; }
@media (max-width: 720px) { section { padding: 56px 0; } }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange-600);
  margin-bottom: 16px;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--orange-600);
  border-radius: 2px;
}

.lede {
  font-size: 1.14rem;
  color: var(--ink-soft);
  max-width: 46ch;
}

.center { text-align: center; margin-left: auto; margin-right: auto; }

/* ---------------------------------- Buttons ---------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  padding: 15px 28px;
  border-radius: var(--radius-full);
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease;
  white-space: nowrap;
}
.btn svg { width: 20px; height: 20px; flex-shrink: 0; }
.btn:active { transform: scale(0.97); }

.btn-whatsapp {
  background: var(--whatsapp);
  color: #fff;
  box-shadow: 0 10px 24px -8px rgba(37, 211, 102, 0.65);
}
.btn-whatsapp:hover { background: var(--whatsapp-dark); transform: translateY(-2px); }

.btn-outline {
  background: transparent;
  border-color: var(--navy-900);
  color: var(--navy-900);
}
.btn-outline:hover { background: var(--navy-900); color: #fff; transform: translateY(-2px); }

.btn-orange {
  background: var(--orange-600);
  color: #fff;
  box-shadow: 0 10px 24px -8px rgba(230, 48, 31, 0.55);
}
.btn-orange:hover { background: #b8280f; transform: translateY(-2px); }

.btn-ghost-light {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.4);
  color: #fff;
}
.btn-ghost-light:hover { background: rgba(255,255,255,0.22); transform: translateY(-2px); }

.btn-block { width: 100%; }
.btn-sm { padding: 11px 20px; font-size: 0.92rem; }

.btn-row { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }

/* ---------------------------------- Header / Nav ---------------------------------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(250, 246, 240, 0.86);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 82px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--navy-900);
}
.logo .dot { color: var(--orange-600); }
.logo-img { height: 32px; width: auto; display: block; }
.footer-grid .logo-img { filter: brightness(0) invert(1); }

.main-nav {
  display: flex;
  align-items: center;
  gap: 34px;
}

.nav-links {
  display: flex;
  gap: 30px;
}
.nav-links a {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--ink-soft);
  position: relative;
  padding: 6px 0;
  transition: color 0.15s ease;
}
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--navy-900); }
.nav-links a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 3px;
  background: var(--orange-600);
  border-radius: 3px;
}

.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-cta .btn { padding: 11px 20px; font-size: 0.92rem; }

.nav-toggle {
  display: none;
  width: 46px; height: 46px;
  border-radius: var(--radius-s);
  border: 1.5px solid var(--line);
  background: #fff;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.nav-toggle svg { width: 22px; height: 22px; }

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-cta .btn-outline-nav-phone { display: none; }
  .nav-toggle { display: flex; }
  .site-header .container { gap: 10px; }
  .logo { font-size: 1.08rem; gap: 8px; }
  .logo-img { height: 26px; }
  .nav-cta .btn-whatsapp { padding: 10px 16px; font-size: 0.85rem; }
  body.nav-open .nav-links {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 82px; left: 0; right: 0;
    background: var(--cream);
    padding: 20px 24px 28px;
    gap: 4px;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-card);
  }
  body.nav-open .nav-links a { padding: 12px 4px; border-bottom: 1px solid var(--line); }
}

@media (max-width: 420px) {
  .nav-cta .btn-whatsapp span { display: none; }
  .nav-cta .btn-whatsapp { padding: 10px; }
  .nav-cta .btn-whatsapp svg { width: 18px; height: 18px; }
}

/* ---------------------------------- Hero ---------------------------------- */

.hero {
  padding: 64px 0 96px;
  position: relative;
  overflow: hidden;
}
.hero .container {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 900px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero { padding: 24px 0 64px; }
  .hero-visual { order: -1; margin-bottom: 8px; }
}

.hero h1 { margin-bottom: 20px; }
.hero .lede { margin-bottom: 34px; font-size: 1.2rem; }

.hero-stats {
  display: flex;
  gap: 28px;
  margin-top: 44px;
  flex-wrap: wrap;
}
.hero-stats .stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.7rem;
  color: var(--navy-900);
}
.hero-stats .stat span {
  font-size: 0.86rem;
  color: var(--ink-soft);
}

.hero-visual {
  position: relative;
  aspect-ratio: 1/1;
  border-radius: var(--radius-l);
  background: var(--navy-900);
  overflow: hidden;
}
.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 60% 35%;
}
.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(200deg, rgba(5,32,72,0) 45%, rgba(5,32,72,0.55) 100%);
  pointer-events: none;
}
.hero-badge {
  position: absolute;
  bottom: 22px; left: 22px;
  background: rgba(255,255,255,0.96);
  border-radius: var(--radius-m);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-card);
}
.hero-badge svg { width: 30px; height: 30px; color: var(--whatsapp); }
.hero-badge strong { display: block; font-family: var(--font-display); font-size: 0.92rem; color: var(--navy-900); }
.hero-badge span { font-size: 0.78rem; color: var(--ink-soft); }

/* ---------------------------------- Cards / Grids ---------------------------------- */

.grid {
  display: grid;
  gap: 26px;
}
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 900px) { .grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .grid-3, .grid-2 { grid-template-columns: 1fr; } }

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  padding: 32px;
  box-shadow: var(--shadow-card);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.card:hover { transform: translateY(-4px); }

.icon-tile {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: var(--orange-100);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.icon-tile svg { width: 30px; height: 30px; color: var(--orange-600); }
.icon-tile.navy { background: var(--navy-900); }
.icon-tile.navy svg { color: var(--orange-500); }

.offer-card h3 { margin-bottom: 8px; }
.offer-card p.desc { color: var(--ink-soft); font-size: 0.96rem; margin-bottom: 18px; }
.offer-card .price {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--navy-900);
  font-size: 1.05rem;
  margin-bottom: 18px;
}
.offer-card .price span { color: var(--ink-soft); font-weight: 400; font-size: 0.85rem; }
.offer-card a.more {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--orange-600);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.offer-card a.more svg { width: 16px; height: 16px; }

/* ---------------------------------- Steps ---------------------------------- */

.steps { counter-reset: step; }
.step {
  position: relative;
  padding-left: 8px;
}
.step .num {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--orange-100);
  -webkit-text-stroke: 1.5px var(--orange-500);
  display: block;
  margin-bottom: 12px;
}

/* ---------------------------------- Section variants ---------------------------------- */

.section-dark {
  background: var(--navy-900);
  color: rgba(255,255,255,0.88);
}
.section-dark h2, .section-dark h3 { color: #fff; }
.section-dark .lede { color: rgba(255,255,255,0.68); }

.section-cream { background: var(--cream); }
.section-white { background: #fff; }

/* ---------------------------------- Formula widget (interactive) ---------------------------------- */

.formula-widget {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 900px) { .formula-widget { grid-template-columns: 1fr; gap: 36px; } }

.formula-preview {
  position: relative;
  border-radius: var(--radius-l);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--navy-900);
  box-shadow: var(--shadow-card);
}
.formula-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 60% 35%;
  filter: blur(24px) grayscale(1) brightness(0.5);
  transform: scale(1.1);
  transition: filter 1.1s ease, transform 1.1s ease;
}
.formula-preview.unlocked img { filter: blur(0) grayscale(0) brightness(1); transform: scale(1); }

.formula-lock {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-align: center;
  padding: 24px;
  transition: opacity 0.5s ease;
}
.formula-lock .lock-icon {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: rgba(255,255,255,0.14);
  display: flex; align-items: center; justify-content: center;
}
.formula-lock .lock-icon svg { width: 24px; height: 24px; color: #fff; }
.formula-lock strong { font-family: var(--font-display); color: #fff; font-size: 1.08rem; }
.formula-lock span { color: rgba(255,255,255,0.65); font-size: 0.88rem; }
.formula-preview.unlocked .formula-lock { opacity: 0; pointer-events: none; }

.formula-reveal {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 28px 26px 26px;
  background: linear-gradient(0deg, rgba(5,32,72,0.95), rgba(5,32,72,0.05));
  transform: translateY(14px);
  opacity: 0;
  transition: opacity 0.6s ease 0.25s, transform 0.6s ease 0.25s;
}
.formula-preview.unlocked .formula-reveal { opacity: 1; transform: translateY(0); }
.formula-reveal strong { display: block; color: #fff; font-family: var(--font-display); font-size: 1.25rem; margin-bottom: 4px; }
.formula-reveal span { display: block; color: rgba(255,255,255,0.75); font-size: 0.9rem; margin-bottom: 16px; }

.slider-group { margin-top: 30px; }
.slider-head { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 10px; }
.slider-label { font-family: var(--font-display); font-weight: 600; color: #fff; font-size: 1.02rem; }
.slider-value {
  font-family: var(--font-display); font-weight: 700;
  color: var(--orange-500); font-size: 1.05rem;
  font-variant-numeric: tabular-nums;
}
.slider-status { margin-top: 9px; font-size: 0.84rem; color: rgba(255,255,255,0.55); }

.slider-track { position: relative; height: 26px; display: flex; align-items: center; }
.slider-track .fill-bg {
  position: absolute; left: 0; right: 0;
  height: 10px; border-radius: 999px;
  background: rgba(255,255,255,0.15);
}
.slider-track .slider-fill {
  position: absolute; left: 0;
  height: 10px; border-radius: 999px;
  background: linear-gradient(90deg, var(--orange-600), var(--orange-500));
  width: 0%;
}
.slider-track input[type="range"] {
  position: absolute; inset: 0;
  width: 100%; height: 26px; margin: 0;
  appearance: none; -webkit-appearance: none;
  background: transparent;
  cursor: pointer;
}
.slider-track input[type="range"]::-webkit-slider-runnable-track { height: 26px; background: transparent; }
.slider-track input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--orange-600);
  box-shadow: 0 3px 8px rgba(0,0,0,0.35);
  cursor: pointer;
}
.slider-track input[type="range"]::-moz-range-track { height: 26px; background: transparent; border: none; }
.slider-track input[type="range"]::-moz-range-thumb {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--orange-600);
  box-shadow: 0 3px 8px rgba(0,0,0,0.35);
  cursor: pointer;
}
.slider-track input[type="range"]:focus-visible::-webkit-slider-thumb { outline: 2px solid #fff; outline-offset: 2px; }

.section-head {
  max-width: 640px;
  margin-bottom: 52px;
}
.section-head.center { margin-left: auto; margin-right: auto; }

.section-head-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: 44px;
  flex-wrap: wrap;
}

/* ---------------------------------- CTA banner ---------------------------------- */

.cta-banner {
  background: linear-gradient(120deg, var(--navy-900), var(--navy-700));
  border-radius: var(--radius-l);
  padding: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}
.cta-banner::after {
  content: "";
  position: absolute;
  right: -60px; top: -60px;
  width: 260px; height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(236,103,7,0.4), transparent 70%);
}
.cta-banner h2 { color: #fff; margin-bottom: 10px; }
.cta-banner p { color: rgba(255,255,255,0.7); max-width: 40ch; }
.cta-banner .btn-row { position: relative; z-index: 1; }
@media (max-width: 720px) { .cta-banner { padding: 40px 28px; } }

.cta-banner.photo {
  background: linear-gradient(120deg, rgba(5,32,72,0.92), rgba(5,32,72,0.78)), var(--cta-photo, none) center/cover;
}

/* ---------------------------------- Testimonials ---------------------------------- */

.testi-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  padding: 28px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  height: 100%;
}
.testi-card .stars { color: var(--orange-600); margin-bottom: 14px; letter-spacing: 2px; }
.testi-card p.quote { color: var(--ink); font-size: 0.98rem; flex: 1; margin-bottom: 18px; }
.testi-card .author {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--navy-900);
  display: flex;
  align-items: center;
  gap: 10px;
}
.testi-card .avatar {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--orange-100);
  color: var(--orange-600);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.82rem; font-weight: 700;
}

/* ---------------------------------- Accordion (Angebot details) ---------------------------------- */

.accordion { border-top: 1px solid var(--line); }
.acc-item { border-bottom: 1px solid var(--line); }
.acc-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 4px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.02rem;
  color: var(--navy-900);
}
.acc-trigger .plus {
  width: 30px; height: 30px;
  border-radius: 50%;
  border: 1.5px solid var(--line);
  flex-shrink: 0;
  position: relative;
  transition: transform 0.25s ease, background 0.25s ease;
}
.acc-trigger .plus::before, .acc-trigger .plus::after {
  content: "";
  position: absolute;
  background: var(--navy-900);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.acc-trigger .plus::before { width: 12px; height: 2px; }
.acc-trigger .plus::after { width: 2px; height: 12px; transition: opacity 0.2s ease; }
.acc-item.open .acc-trigger .plus { background: var(--orange-600); border-color: var(--orange-600); transform: rotate(180deg); }
.acc-item.open .acc-trigger .plus::before, .acc-item.open .acc-trigger .plus::after { background: #fff; }
.acc-item.open .acc-trigger .plus::after { opacity: 0; }

.acc-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.acc-panel-inner { padding: 0 4px 24px; color: var(--ink-soft); }
.acc-panel-inner ul { margin-top: 10px; }
.acc-panel-inner li { padding-left: 20px; position: relative; margin-bottom: 6px; }
.acc-panel-inner li::before {
  content: "";
  position: absolute; left: 0; top: 9px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--orange-600);
}

/* ---------------------------------- Pricing block (Angebot page) ---------------------------------- */

.price-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  padding: 40px;
  box-shadow: var(--shadow-card);
}
.price-card.featured { border: 2px solid var(--orange-600); position: relative; }
.price-card .tag {
  position: absolute; top: -14px; left: 32px;
  background: var(--orange-600);
  color: #fff;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: var(--radius-full);
}
.price-card .amount {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--navy-900);
  margin: 6px 0 4px;
}
.price-card .amount span { font-size: 1rem; color: var(--ink-soft); font-weight: 500; }
.price-card ul { margin: 22px 0 26px; }
.price-card ul li {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 7px 0;
  font-size: 0.96rem;
  color: var(--ink);
}
.price-card ul li svg { width: 18px; height: 18px; color: var(--whatsapp); flex-shrink: 0; margin-top: 2px; }
.price-card .note { font-size: 0.85rem; color: var(--ink-soft); margin-top: 14px; }

.detail-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  max-width: 460px;
}
.detail-photo { position: relative; border-radius: var(--radius-m); overflow: hidden; aspect-ratio: 4/3; box-shadow: var(--shadow-card); }
.detail-photo img { width: 100%; height: 100%; object-fit: cover; }
.detail-photo span {
  position: absolute; left: 12px; bottom: 12px;
  background: rgba(5,32,72,0.85);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.8rem;
  padding: 6px 12px;
  border-radius: var(--radius-full);
}

.offer-section { scroll-margin-top: 100px; }
.pill-nav {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}
.pill-nav a {
  padding: 10px 20px;
  border-radius: var(--radius-full);
  border: 1.5px solid var(--line);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.88rem;
  background: #fff;
  transition: all 0.15s ease;
}
.pill-nav a:hover { border-color: var(--orange-600); color: var(--orange-600); }

.divider-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 96px 0 48px;
}
.divider-row .line { flex: 1; height: 1px; background: var(--line); }
.divider-row span {
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

/* ---------------------------------- About page ---------------------------------- */

.about-hero {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 900px) { .about-hero { grid-template-columns: 1fr; } }

.photo-frame {
  aspect-ratio: 4/5;
  border-radius: var(--radius-l);
  background: var(--navy-900);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}
.photo-frame .ring {
  position: absolute;
  inset: 14px;
  border: 1.5px solid rgba(255,255,255,0.35);
  border-radius: calc(var(--radius-l) - 8px);
  pointer-events: none;
}
.photo-caption {
  margin-top: 16px;
  font-size: 0.85rem;
  color: var(--ink-soft);
  text-align: center;
}

.pull-quote {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  font-weight: 600;
  color: var(--navy-900);
  line-height: 1.3;
  border-left: 4px solid var(--orange-600);
  padding-left: 24px;
  margin: 40px 0;
}

.sponsor-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 20px;
}
.sponsor-chip {
  border: 1.5px solid var(--line);
  background: #fff;
  border-radius: var(--radius-full);
  padding: 10px 18px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.86rem;
  display: flex;
  align-items: center;
  gap: 8px;
}
.sponsor-chip svg { width: 16px; height: 16px; color: var(--orange-600); }

/* ---------------------------------- Contact page ---------------------------------- */

.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: start;
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }

.whatsapp-block {
  background: linear-gradient(135deg, var(--whatsapp), var(--whatsapp-dark));
  border-radius: var(--radius-l);
  padding: 44px;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.whatsapp-block svg.big-wa { width: 52px; height: 52px; margin-bottom: 18px; }
.whatsapp-block h2 { color: #fff; margin-bottom: 12px; }
.whatsapp-block p { color: rgba(255,255,255,0.9); margin-bottom: 26px; max-width: 42ch; }
.whatsapp-block .phone-shot {
  position: absolute;
  right: -26px; bottom: -26px;
  width: 168px;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.35);
  transform: rotate(7deg);
}
@media (max-width: 720px) { .whatsapp-block .phone-shot { display: none; } }

.info-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  padding: 30px;
  margin-bottom: 20px;
}
.info-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}
.info-row:last-child { border-bottom: none; }
.info-row svg { width: 20px; height: 20px; color: var(--orange-600); flex-shrink: 0; margin-top: 2px; }
.info-row strong { display: block; font-family: var(--font-display); font-size: 0.92rem; margin-bottom: 2px; }
.info-row span, .info-row a { color: var(--ink-soft); font-size: 0.92rem; }

.map-frame {
  border-radius: var(--radius-m);
  overflow: hidden;
  border: 1px solid var(--line);
  margin-top: 20px;
}
.map-frame iframe { width: 100%; height: 280px; border: 0; display: block; }

/* ---------------------------------- Footer ---------------------------------- */

.site-footer {
  background: var(--navy-900);
  color: rgba(255,255,255,0.7);
  padding: 72px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
@media (max-width: 720px) { .footer-grid { grid-template-columns: 1fr; gap: 32px; } }

.footer-grid .logo { color: #fff; margin-bottom: 14px; }
.footer-grid p { font-size: 0.92rem; max-width: 32ch; }

.footer-col h4 {
  color: #fff;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col a { font-size: 0.92rem; transition: color 0.15s ease; }
.footer-col a:hover { color: #fff; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  font-size: 0.82rem;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom a:hover { color: #fff; }
.footer-socials { display: flex; gap: 12px; }
.footer-socials a {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
}
.footer-socials svg { width: 16px; height: 16px; }
.footer-socials a:hover { background: var(--orange-600); border-color: var(--orange-600); }

/* ---------------------------------- Utilities ---------------------------------- */

.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.text-center { text-align: center; }
.badge-strip {
  display: flex;
  gap: 34px;
  flex-wrap: wrap;
  align-items: center;
  padding: 28px 0;
  color: var(--ink-soft);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
}
.badge-strip .item { display: flex; align-items: center; gap: 10px; }
.badge-strip svg { width: 20px; height: 20px; color: var(--orange-600); }

.reveal { transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.pre { opacity: 0; transform: translateY(18px); }
.reveal.in { opacity: 1; transform: translateY(0); }

.page-hero {
  padding: 56px 0 20px;
}
.page-hero .lede { margin-top: 16px; }

.breadcrumb-space { height: 0; }

/* ---------------------------------- Legal pages ---------------------------------- */

.legal { max-width: 760px; }
.legal h2 { margin-top: 40px; margin-bottom: 14px; font-size: 1.35rem; }
.legal h2:first-child { margin-top: 0; }
.legal p { color: var(--ink-soft); margin-bottom: 14px; }
.legal ul { margin: 0 0 14px 0; }
.legal ul li { color: var(--ink-soft); padding-left: 20px; position: relative; margin-bottom: 8px; }
.legal ul li::before {
  content: "";
  position: absolute; left: 0; top: 9px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--orange-600);
}
.legal a { color: var(--orange-600); text-decoration: underline; }

/* ---------------------------------- Marquee ticker ---------------------------------- */

.marquee {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
  background: var(--cream);
}
.marquee-track {
  display: flex;
  align-items: center;
  gap: 22px;
  width: max-content;
  animation: marquee-scroll 28s linear infinite;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--navy-900);
  white-space: nowrap;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track .sep { color: var(--orange-600); font-size: 0.75rem; }
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
}

/* ---------------------------------- Steps connector ---------------------------------- */

.steps { position: relative; }
@media (min-width: 641px) {
  .steps::before {
    content: "";
    position: absolute;
    top: 22px;
    left: calc(100% / 6);
    right: calc(100% / 6);
    height: 1.5px;
    background: repeating-linear-gradient(90deg, var(--line) 0 8px, transparent 8px 16px);
    z-index: 0;
  }
  .steps .step { position: relative; z-index: 1; background: var(--cream); }
}

/* ---------------------------------- Offer showcase (asymmetric) ---------------------------------- */

.offer-showcase {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 28px;
  align-items: stretch;
}
@media (max-width: 900px) { .offer-showcase { grid-template-columns: 1fr; } }

.offer-feature {
  position: relative;
  display: block;
  border-radius: var(--radius-l);
  overflow: hidden;
  min-height: 420px;
  box-shadow: var(--shadow-card);
}
.offer-feature img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 62% 35%;
  transition: transform 0.5s ease;
}
.offer-feature:hover img { transform: scale(1.06); }
.offer-feature-overlay {
  position: relative; z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px;
  background: linear-gradient(0deg, rgba(5,32,72,0.94) 8%, rgba(5,32,72,0.25) 55%, rgba(5,32,72,0.05) 100%);
}
.offer-feature-tag {
  align-self: flex-start;
  background: var(--orange-600);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 6px 13px;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
}
.offer-feature-overlay h3 { color: #fff; font-size: 1.55rem; margin-bottom: 8px; }
.offer-feature-overlay p { color: rgba(255,255,255,0.75); font-size: 0.95rem; max-width: 32ch; }
.offer-feature-foot { display: flex; align-items: center; justify-content: space-between; margin-top: 22px; }
.offer-feature-foot .price { font-family: var(--font-display); font-weight: 700; font-size: 1.15rem; color: #fff; }
.offer-feature-foot .price small { font-weight: 400; opacity: 0.7; font-size: 0.75rem; }
.offer-feature-foot .arrow {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s ease, transform 0.2s ease;
}
.offer-feature-foot .arrow svg { width: 18px; height: 18px; color: #fff; }
.offer-feature:hover .offer-feature-foot .arrow { background: var(--orange-600); transform: translateX(3px); }

.offer-list { display: flex; flex-direction: column; gap: 14px; }
.offer-row {
  display: flex;
  align-items: center;
  gap: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  padding: 20px 22px;
  flex: 1;
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.offer-row:hover { border-color: var(--orange-600); transform: translateX(4px); box-shadow: var(--shadow-card); }
.offer-row-icon {
  width: 46px; height: 46px;
  border-radius: 13px;
  background: var(--orange-100);
  color: var(--orange-600);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.offer-row-icon svg { width: 22px; height: 22px; }
.offer-row-body { flex: 1; min-width: 0; }
.offer-row-body h4 { font-family: var(--font-display); font-weight: 600; font-size: 1rem; color: var(--navy-900); margin-bottom: 3px; }
.offer-row-body p { font-size: 0.85rem; color: var(--ink-soft); }
.offer-row-price { text-align: right; flex-shrink: 0; }
.offer-row-price strong { display: block; font-family: var(--font-display); font-weight: 700; color: var(--navy-900); font-size: 1rem; }
.offer-row-price span { font-size: 0.72rem; color: var(--ink-soft); }
.offer-row-arrow { width: 18px; height: 18px; color: var(--ink-soft); flex-shrink: 0; transition: transform 0.2s ease, color 0.2s ease; }
.offer-row:hover .offer-row-arrow { color: var(--orange-600); transform: translateX(3px); }

@media (max-width: 560px) {
  .offer-row { flex-wrap: wrap; row-gap: 10px; }
  .offer-row-body { flex: 1 1 170px; }
  .offer-row-price { margin-left: 64px; order: 3; }
  .offer-row-arrow { order: 4; }
}

/* ---------------------------------- About photo stat chip ---------------------------------- */

.photo-stat {
  position: absolute;
  bottom: -18px; right: -14px;
  background: #fff;
  border-radius: var(--radius-m);
  padding: 14px 18px;
  box-shadow: var(--shadow-card);
  text-align: center;
}
.photo-stat strong { display: block; font-family: var(--font-display); font-weight: 700; font-size: 1.3rem; color: var(--orange-600); }
.photo-stat span { font-size: 0.72rem; color: var(--ink-soft); }

/* ---------------------------------- Testimonial quote glyph ---------------------------------- */

.testi-card { position: relative; }
.testi-card .quote-mark {
  position: absolute;
  top: -14px; left: 24px;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--navy-900);
  color: var(--orange-500);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  box-shadow: var(--shadow-card);
}
.testi-card { padding-top: 34px; }

.testimonial-stat {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: -22px 0 44px;
  color: var(--ink-soft);
  font-size: 0.92rem;
}
.testimonial-stat strong { color: var(--navy-900); font-family: var(--font-display); }
.testimonial-stat .stars-mini { color: var(--orange-600); letter-spacing: 1px; }
