:root {
  color-scheme: dark;
  --bg: #080808;
  --bg-soft: #0f0f10;
  --panel: #151517;
  --panel-2: #1c1c1f;
  --line: rgba(255, 255, 255, 0.11);
  --text: #f4f1ec;
  --muted: #b7b0a8;
  --faint: #7f7972;
  --red: #e02020;
  --red-2: #ff3a2f;
  --gold: #e2b96f;
  --green: #4dd477;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.36);
  --radius: 8px;
  --container: min(1160px, calc(100vw - 40px));
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(224, 32, 32, 0.17), transparent 31rem),
    linear-gradient(180deg, #050505 0%, #0b0b0c 48%, #080808 100%);
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open,
body.quiz-open,
body.quiz-locked { overflow: hidden; }

a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 1000;
  transform: translateY(-140%);
  padding: 10px 14px;
  background: var(--text);
  color: #060606;
  border-radius: 6px;
  transition: transform 0.18s ease;
}

.skip-link:focus { transform: translateY(0); }

.container {
  width: var(--container);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 800;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(8, 8, 8, 0.86);
  backdrop-filter: blur(18px);
}

.nav-wrap {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  letter-spacing: 0.08em;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}

.brand-logo {
  width: auto;
  height: 34px;
  object-fit: contain;
}

.brand-symbol {
  width: auto;
  height: 24px;
  object-fit: contain;
}

.brand-mark {
  width: 10px;
  height: 36px;
  border-radius: 2px;
  background: var(--red);
  box-shadow: 0 0 24px rgba(224, 32, 32, 0.55);
}

.nav {
  display: flex;
  align-items: center;
  gap: 26px;
  color: rgba(244, 241, 236, 0.82);
  font-size: 0.92rem;
  font-weight: 760;
}

.nav a {
  position: relative;
  padding-block: 8px;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--red);
  transition: transform 0.18s ease;
}

.nav a:hover::after,
.nav a:focus-visible::after,
.nav a[aria-current="page"]::after { transform: scaleX(1); }

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.mobile-toggle {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}

.mobile-toggle span,
.mobile-toggle span::before,
.mobile-toggle span::after {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  border-radius: 99px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.mobile-toggle span::before,
.mobile-toggle span::after {
  content: "";
  position: relative;
}

.mobile-toggle span::before { top: -6px; }
.mobile-toggle span::after { top: 4px; }
.menu-open .mobile-toggle span { transform: rotate(45deg); }
.menu-open .mobile-toggle span::before { transform: translateY(6px) rotate(90deg); }
.menu-open .mobile-toggle span::after { opacity: 0; }

.btn {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 850;
  line-height: 1.05;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.btn:hover,
.btn:focus-visible { transform: translateY(-1px); }
.btn-primary { background: var(--red); color: white; box-shadow: 0 12px 34px rgba(224, 32, 32, 0.28); }
.btn-primary:hover { background: var(--red-2); }
.btn-secondary { border-color: rgba(255, 255, 255, 0.18); background: rgba(255, 255, 255, 0.05); color: var(--text); }
.btn-secondary:hover { border-color: rgba(255, 255, 255, 0.34); background: rgba(255, 255, 255, 0.09); }
.btn-whatsapp { border-color: rgba(77, 212, 119, 0.35); background: rgba(77, 212, 119, 0.12); color: #ecfff2; }
.btn-whatsapp:hover { background: rgba(77, 212, 119, 0.2); }

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

.section-tight { padding: 72px 0; }

.hero {
  min-height: calc(92vh - 76px);
  display: grid;
  align-items: center;
  padding: 72px 0 56px;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  align-items: center;
  gap: 48px;
}

.hero-visual {
  min-height: 520px;
  display: grid;
  align-content: end;
  gap: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 28px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 36%),
    radial-gradient(circle at 50% 42%, rgba(224, 32, 32, 0.18), transparent 34%),
    linear-gradient(180deg, rgba(28, 28, 31, 0.92), rgba(9, 9, 10, 0.94));
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(to bottom, black, transparent 88%);
  opacity: 0.55;
}

.visual-inner { position: relative; z-index: 1; }

.hero-image-card {
  min-height: 520px;
  display: grid;
  align-items: end;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  background: #080808;
  box-shadow: var(--shadow);
}

.hero-image-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-image-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.14) 0%, rgba(0, 0, 0, 0.3) 42%, rgba(0, 0, 0, 0.82) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.2), transparent 48%);
}

.hero-image-content {
  position: relative;
  z-index: 1;
  padding: clamp(22px, 4vw, 34px);
  isolation: isolate;
}

.hero-image-content::before {
  content: "";
  position: absolute;
  inset: -18px 0 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.82)),
    rgba(0, 0, 0, 0.54);
  backdrop-filter: blur(14px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  mask-image: linear-gradient(180deg, transparent 0%, black 22%);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--red-2);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1, h2, h3, p { margin-top: 0; }
h1 { max-width: 850px; margin-bottom: 18px; font-size: clamp(3rem, 8vw, 6.6rem); line-height: 0.94; letter-spacing: 0; }
h2 { margin-bottom: 18px; font-size: clamp(2rem, 4.2vw, 4.5rem); line-height: 1; letter-spacing: 0; }
h3 { margin-bottom: 10px; font-size: clamp(1.1rem, 1.5vw, 1.35rem); line-height: 1.15; letter-spacing: 0; }

.lead {
  max-width: 740px;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  line-height: 1.72;
}

.muted { color: var(--muted); }
.faint { color: var(--faint); }
.accent { color: var(--red-2); }

.hero-actions,
.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0 0;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 7px 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1;
}

.pill[data-pill-icon]::before {
  content: attr(data-pill-icon);
  font-size: 1rem;
  line-height: 1;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 5px rgba(224, 32, 32, 0.16);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 38px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--line);
}

.stat {
  min-height: 104px;
  padding: 18px;
  background: rgba(18, 18, 19, 0.86);
}

.stat[data-stat-icon]::before {
  content: attr(data-stat-icon);
  display: block;
  margin-bottom: 12px;
  font-size: 1.25rem;
  line-height: 1;
}

.stat strong {
  display: block;
  margin-bottom: 3px;
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  line-height: 1;
}

.stat span { color: var(--muted); font-size: 0.82rem; font-weight: 760; }

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 44px;
  align-items: start;
}

.section-head { max-width: 760px; margin-bottom: 34px; }
.section-head.center { margin-inline: auto; text-align: center; }

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
  color: var(--faint);
  font-size: 0.86rem;
  font-weight: 780;
}

.breadcrumb a {
  color: var(--muted);
}

.breadcrumb a:hover {
  color: var(--text);
}

.breadcrumb span + span::before {
  content: "/";
  margin-right: 8px;
  color: rgba(255, 255, 255, 0.28);
}

.check-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  color: var(--muted);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 5px rgba(224, 32, 32, 0.12);
}

.cta-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  padding: clamp(24px, 4vw, 36px);
  border: 1px solid rgba(224, 32, 32, 0.28);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(224, 32, 32, 0.16), transparent 52%), rgba(18, 18, 19, 0.9);
}

.text-link {
  color: var(--text);
  font-weight: 900;
  text-decoration: underline;
  text-decoration-color: rgba(224, 32, 32, 0.65);
  text-underline-offset: 4px;
}

.grid { display: grid; gap: 18px; }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.card {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(21, 21, 23, 0.78);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.22);
}

.card-pad { padding: 24px; }
.card p:last-child { margin-bottom: 0; }

.feature-icon {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 8px;
  border: 1px solid rgba(224, 32, 32, 0.34);
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 70, 70, 0.25), transparent 58%),
    rgba(224, 32, 32, 0.12);
  color: #fff;
  font-size: 1.35rem;
  line-height: 1;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 14px 28px rgba(224, 32, 32, 0.08);
}

.timeline {
  display: grid;
  gap: 16px;
  counter-reset: step;
}

.timeline.horizontal { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.timeline.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }

.step {
  position: relative;
  padding: 26px;
  counter-increment: step;
}

.step::before {
  content: "0" counter(step);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 20px;
  border-radius: 50%;
  background: var(--red);
  color: white;
  font-weight: 950;
}

.step[data-step-icon]::before {
  content: attr(data-step-icon);
  border-radius: 8px;
  border: 1px solid rgba(224, 32, 32, 0.34);
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 70, 70, 0.25), transparent 58%),
    rgba(224, 32, 32, 0.12);
  font-size: 1.25rem;
  font-weight: 400;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 14px 28px rgba(224, 32, 32, 0.08);
}

.comparison {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
}

.comparison th,
.comparison td {
  padding: 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.comparison th {
  background: rgba(224, 32, 32, 0.12);
  color: var(--text);
}

.comparison tr:last-child td { border-bottom: 0; }

.price-card {
  display: grid;
  gap: 14px;
  padding: clamp(28px, 4vw, 44px);
  border: 1px solid rgba(224, 32, 32, 0.28);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(224, 32, 32, 0.16), transparent 42%), rgba(20, 20, 22, 0.9);
}

.price {
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 0.95;
  font-weight: 950;
}

.reviews-top {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 32px;
}

.rating-badge {
  min-width: 210px;
  padding: 20px;
  border: 1px solid rgba(226, 185, 111, 0.28);
  border-radius: var(--radius);
  background: rgba(226, 185, 111, 0.08);
}

.stars { color: var(--gold); letter-spacing: 0.05em; font-size: 1.15rem; }
.review-card { display: grid; gap: 16px; align-content: start; min-height: 250px; }

.faq-list {
  display: grid;
  gap: 10px;
  max-width: 900px;
  margin-inline: auto;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(21, 21, 23, 0.8);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 22px;
  border: 0;
  background: transparent;
  color: var(--text);
  text-align: left;
  font-weight: 900;
}

.faq-question::after {
  content: "+";
  flex: 0 0 auto;
  color: var(--red-2);
  font-size: 1.4rem;
  line-height: 1;
}

.faq-item[open] .faq-question::after { content: "-"; }
.faq-answer { padding: 0 22px 22px; color: var(--muted); }

.booking {
  background: linear-gradient(135deg, rgba(224, 32, 32, 0.16), transparent 44%), #080808;
}

.booking-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(310px, 0.72fr);
  gap: 34px;
  align-items: start;
  padding: clamp(28px, 5vw, 56px);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
  background: rgba(17, 17, 18, 0.88);
  box-shadow: var(--shadow);
}

.contact-list { display: grid; gap: 14px; }

.contact-row {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 12px;
  align-items: start;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
}

.contact-icon {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: rgba(224, 32, 32, 0.13);
  color: white;
  font-size: 1.12rem;
  line-height: 1;
}

.blog-list {
  display: grid;
  gap: 18px;
}

.blog-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
}

.site-footer {
  padding: 34px 0 96px;
  border-top: 1px solid var(--line);
  color: var(--faint);
  background: #070707;
  font-size: 0.9rem;
}

.footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.agency-credit {
  color: var(--faint);
  font-weight: 760;
}

.agency-credit a {
  color: var(--muted);
  text-decoration: underline;
  text-decoration-color: rgba(224, 32, 32, 0.55);
  text-underline-offset: 4px;
}

.agency-credit a:hover,
.agency-credit a:focus-visible {
  color: var(--text);
}

.mobile-bottom-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 760;
  display: none;
  gap: 8px;
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  border-top: 1px solid var(--line);
  background: rgba(8, 8, 8, 0.94);
  backdrop-filter: blur(16px);
}

.quiz-modal {
  position: fixed;
  inset: 0;
  z-index: 900;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.72);
}

.quiz-open .quiz-modal { display: flex; }

.quiz-dialog {
  width: min(620px, 100%);
  max-height: min(720px, calc(100vh - 40px));
  overflow: auto;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: #111113;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.48);
}

.quiz-head {
  position: sticky;
  top: 0;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 22px;
  border-bottom: 1px solid var(--line);
  background: rgba(17, 17, 19, 0.95);
  backdrop-filter: blur(14px);
}

.quiz-close {
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  font-size: 1.35rem;
  line-height: 1;
}

.quiz-body { padding: 24px; }
.quiz-step { display: none; }
.quiz-step.active { display: block; }
.quiz-options { display: grid; gap: 10px; margin: 22px 0; }

.quiz-option {
  width: 100%;
  min-height: 54px;
  padding: 15px 16px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.045);
  color: var(--text);
  text-align: left;
  font-weight: 800;
}

.quiz-option:hover,
.quiz-option.selected {
  border-color: rgba(224, 32, 32, 0.68);
  background: rgba(224, 32, 32, 0.14);
}

input {
  width: 100%;
  min-height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 7px;
  padding: 12px 14px;
  background: rgba(0, 0, 0, 0.24);
  color: var(--text);
  outline: none;
}

select {
  width: 100%;
  min-height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 7px;
  padding: 12px 14px;
  background: rgba(0, 0, 0, 0.24);
  color: var(--text);
  outline: none;
}

input:focus {
  border-color: rgba(224, 32, 32, 0.72);
  box-shadow: 0 0 0 3px rgba(224, 32, 32, 0.14);
}

select:focus {
  border-color: rgba(224, 32, 32, 0.72);
  box-shadow: 0 0 0 3px rgba(224, 32, 32, 0.14);
}

.field label {
  display: block;
  margin-bottom: 8px;
  color: var(--text);
  font-weight: 850;
}

.progress {
  height: 6px;
  margin-top: 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.progress span {
  display: block;
  height: 100%;
  width: 25%;
  background: var(--red);
  transition: width 0.2s ease;
}

.btn-red { background: var(--red); color: white; box-shadow: 0 12px 34px rgba(224, 32, 32, 0.28); }
.btn-red:hover { background: var(--red-2); }
.btn-ghost { border-color: rgba(255, 255, 255, 0.18); background: rgba(255, 255, 255, 0.05); color: var(--text); }
.btn-ghost:hover { border-color: rgba(255, 255, 255, 0.34); background: rgba(255, 255, 255, 0.09); }

.quiz-modal.is-open { display: grid; }
.quiz-dialog { width: min(920px, 100%); }
.quiz-dialog-head {
  position: sticky;
  top: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 24px;
  background: rgba(11, 11, 11, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}
.quiz-title {
  margin: 0;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 950;
}
.quiz-progress {
  height: 4px;
  background: rgba(255, 255, 255, 0.08);
}
.quiz-progress-bar {
  width: 25%;
  height: 100%;
  background: var(--red);
  transition: width 180ms ease;
}
.quiz-form {
  padding: 28px 24px 24px;
}
.quiz-step { display: none; }
.quiz-step.is-active { display: block; }
.quiz-step h3 {
  font-size: clamp(26px, 4vw, 42px);
  line-height: 1.04;
  margin-bottom: 12px;
}
.quiz-step p {
  color: var(--muted);
  margin-bottom: 24px;
}
.quiz-form .field-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.quiz-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 18px 0 8px;
}
.quiz-option {
  position: relative;
  display: block;
}
.quiz-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  width: 1px;
  min-height: 0;
}
.quiz-option span {
  display: flex;
  min-height: 54px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #080808;
  color: #ededed;
  padding: 13px 14px;
  font-weight: 850;
  cursor: pointer;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}
.quiz-option span:hover {
  transform: translateY(-2px);
  border-color: rgba(224, 32, 32, 0.45);
}
.quiz-option input:checked + span {
  border-color: rgba(224, 32, 32, 0.9);
  background: rgba(224, 32, 32, 0.16);
}
.quiz-nav {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 26px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.quiz-nav .btn { min-width: 144px; }
.quiz-error {
  display: none;
  color: #ffb0af;
  font-size: 13px;
  font-weight: 850;
  margin-top: 16px;
}
.quiz-error.is-visible { display: block; }
.quiz-result-score {
  font-size: clamp(58px, 8vw, 96px);
  line-height: 0.95;
  color: var(--red);
  font-weight: 950;
  margin: 18px 0 10px;
}
.quiz-result-band {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(224, 32, 32, 0.16);
  border: 1px solid rgba(224, 32, 32, 0.45);
  font-weight: 950;
  margin-bottom: 18px;
}
.quiz-result-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 20px 0;
  list-style: none;
}
.quiz-result-list li {
  position: relative;
  padding-left: 22px;
  color: var(--muted);
}
.quiz-result-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
}

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

@media (max-width: 1060px) {
  .nav { gap: 18px; }
  .header-actions .btn-whatsapp { display: none; }
  .hero-grid, .split, .booking-card { grid-template-columns: 1fr; }
  .cta-band { grid-template-columns: 1fr; }
  .hero-visual,
  .hero-image-card { min-height: 320px; }
  .grid-4, .timeline.horizontal { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .timeline.three { grid-template-columns: 1fr; }
}

@media (max-width: 820px) {
  :root { --container: min(100% - 48px, 1160px); }
  .nav-wrap { min-height: 66px; }
  .mobile-toggle {
    display: inline-flex;
    position: relative;
    z-index: 902;
    width: 48px;
    height: 48px;
  }
  .menu-open .site-header::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 880;
    background: rgba(0, 0, 0, 0.88);
    backdrop-filter: blur(18px);
  }
  .menu-open .site-header::after {
    content: "";
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    z-index: 881;
    height: 66px;
    background: rgba(0, 0, 0, 0.96);
    backdrop-filter: blur(22px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
  .menu-open .brand,
  .menu-open .header-actions {
    position: relative;
    z-index: 902;
  }
  .nav {
    position: fixed;
    left: 16px;
    right: 16px;
    top: 80px;
    z-index: 900;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    min-height: 0;
    padding: 22px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 8px;
    background:
      linear-gradient(135deg, rgba(224, 32, 32, 0.08), transparent 44%),
      rgba(0, 0, 0, 0.98);
    box-shadow: 0 28px 90px rgba(0, 0, 0, 0.78);
  }
  .menu-open .nav { display: flex; }
  .nav a {
    min-height: 64px;
    display: flex;
    align-items: center;
    padding: 0 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    background: rgba(12, 12, 13, 0.96);
    font-size: 1.1rem;
    font-weight: 900;
  }
  .nav a:hover,
  .nav a:focus-visible,
  .nav a[aria-current="page"] {
    border-color: rgba(224, 32, 32, 0.54);
    background: rgba(224, 32, 32, 0.12);
  }
  .nav a::after { display: none; }
  .header-actions .btn-primary { display: none; }
  .hero { min-height: auto; padding-top: 54px; }
  h1 {
    max-width: 100%;
    font-size: 2.65rem;
    line-height: 1.02;
    overflow-wrap: anywhere;
    hyphens: auto;
  }
  .section { padding: 72px 0; }
  .section-tight { padding: 58px 0; }
  .grid-2, .grid-3, .grid-4, .stats-grid { grid-template-columns: 1fr; }
  .reviews-top { display: grid; align-items: start; }
  .comparison { display: block; overflow-x: auto; }
  .blog-card { grid-template-columns: 1fr; }
  .mobile-bottom-cta { display: grid; grid-template-columns: 1fr 1fr; }
  .mobile-bottom-cta .btn { min-height: 48px; padding-inline: 10px; font-size: 0.92rem; }
}

@media (max-width: 540px) {
  :root { --container: min(100% - 48px, 1160px); }
  body { font-size: 15px; }
  h1 { font-size: 2.5rem; }
  .brand { font-size: 0.96rem; }
  .brand-logo { height: 29px; }
  .brand-symbol { height: 22px; }
  .hero-actions, .section-actions { align-items: stretch; flex-direction: column; }
  .btn { width: 100%; }
  .hero-visual,
  .hero-image-card { min-height: 280px; }
  .card-pad, .step { padding: 20px; }
  .quiz-body { padding: 20px; }
  .quiz-form .field-grid,
  .quiz-options { grid-template-columns: 1fr; }
  .quiz-nav { flex-direction: column-reverse; }
  .quiz-nav .btn { width: 100%; }
  .price { font-size: 3rem; }
}
