@import url("https://fonts.googleapis.com/css2?family=Archivo+Black&family=Barlow+Condensed:wght@400;500;600;700;800&display=swap");

:root {
  --bg: #f5f3f4;
  --surface: #ffffff;
  --surface-soft: #fbf9fa;
  --text: #1f1f23;
  --muted: #5f636d;
  --line: #e6e2e5;
  --brand: #c21f68;
  --brand-dark: #90174d;
  --brand-soft: #fbe9f1;
  --success: #1e8a57;
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --shadow-soft: 0 14px 40px rgba(34, 30, 33, 0.08);
  --shadow-strong: 0 26px 70px rgba(27, 22, 27, 0.14);
  --container: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  overflow-x: hidden;
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--text);
  background: radial-gradient(circle at top right, #fcebf3 0%, transparent 35%),
    radial-gradient(circle at bottom left, #f0ecef 0%, transparent 40%),
    var(--bg);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

a:visited,
a:hover,
a:active,
a:focus {
  color: inherit;
}

p {
  margin: 0 0 1rem;
  color: var(--muted);
}

h1,
h2,
h3,
h4 {
  margin: 0 0 1rem;
  line-height: 1.15;
  color: var(--text);
}

h1,
h2 {
  font-family: "Playfair Display", Georgia, serif;
  letter-spacing: -0.02em;
}

section {
  padding: 5.2rem 0;
}

.container {
  width: min(100% - 2.4rem, var(--container));
  margin: 0 auto;
}

.eyebrow {
  font-size: 0.84rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand-dark);
  font-weight: 700;
  margin-bottom: 0.8rem;
}

.section-title {
  font-size: clamp(1.7rem, 3.4vw, 2.8rem);
  margin-bottom: 0.8rem;
}

.section-subtitle {
  width: min(100%, 700px);
  margin-bottom: 2rem;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 70;
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.82);
  border-bottom: 1px solid rgba(194, 31, 104, 0.08);
  transition: box-shadow 0.25s ease, padding 0.25s ease;
}

.topbar.scrolled {
  box-shadow: 0 10px 32px rgba(20, 20, 24, 0.08);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 80px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  font-weight: 800;
}

.brand-logo {
  width: auto;
  height: 44px;
  max-width: 230px;
  object-fit: contain;
}

.brand-title {
  line-height: 1.1;
  font-size: 1rem;
}

.brand-title span {
  display: block;
  color: var(--muted);
  font-weight: 600;
  font-size: 0.78rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.nav-links a {
  font-weight: 600;
  color: #2f3138;
  position: relative;
  padding: 0.25rem 0;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.16rem;
  width: 100%;
  height: 2px;
  background: var(--brand);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.mobile-toggle {
  display: none;
  border: 0;
  background: transparent;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  color: var(--text);
}

.mobile-toggle i {
  font-size: 1.2rem;
}

.btn {
  border: 0;
  border-radius: 999px;
  padding: 0.82rem 1.25rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.25s ease, background 0.25s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--brand), #d62c79);
  color: #fff;
  box-shadow: 0 14px 30px rgba(194, 31, 104, 0.22);
}

.btn-secondary {
  background: #fff;
  color: var(--text);
  border: 1px solid var(--line);
}

.btn-ghost {
  background: transparent;
  color: var(--brand-dark);
  border: 1px solid rgba(194, 31, 104, 0.2);
}

.hero {
  padding-top: 7rem;
  position: relative;
  overflow: clip;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.5rem;
  align-items: center;
}

.hero h1 {
  font-size: clamp(2.2rem, 4.4vw, 4rem);
}

.hero p {
  width: min(100%, 58ch);
  margin-bottom: 1.8rem;
  font-size: 1.05rem;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin: 1.25rem 0 2rem;
}

.pill {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(194, 31, 104, 0.2);
  color: var(--brand-dark);
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 700;
}

.hero-card {
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-strong);
  padding: 1.2rem;
  border-radius: var(--radius-lg);
}

.hero-card img {
  border-radius: 20px;
  border: 1px solid var(--line);
}

.hero-card-blend {
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 0;
  overflow: visible;
}

.hero-card-blend img {
  border: 0;
  border-radius: 0;
  width: 122%;
  aspect-ratio: 16 / 10;
  object-fit: contain;
  max-width: none;
  transform: translateX(-3%);
  filter: drop-shadow(0 26px 34px rgba(194, 31, 104, 0.22));
}

.grid-3,
.grid-2 {
  display: grid;
  gap: 1.1rem;
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 1.2rem;
  box-shadow: var(--shadow-soft);
}

.card h3,
.card h4 {
  margin-bottom: 0.5rem;
}

.card-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--brand-soft);
  color: var(--brand-dark);
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
}

.split {
  display: grid;
  gap: 2rem;
  align-items: center;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.media-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-strong);
  border: 1px solid var(--line);
}

.media-frame img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.media-frame-blend {
  border: 0;
  box-shadow: none;
  background: radial-gradient(circle at 30% 20%, #f6e9f0 0%, #f3eff2 55%, transparent 100%);
}

.media-frame img.image-contain {
  object-fit: contain;
  padding: 0.8rem;
}

.steps {
  counter-reset: step;
  display: grid;
  gap: 1rem;
}

.step {
  position: relative;
  padding: 1rem 1rem 1rem 3.4rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
}

.step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 1rem;
  top: 1rem;
  width: 1.8rem;
  height: 1.8rem;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  font-weight: 700;
  display: grid;
  place-items: center;
  font-size: 0.9rem;
}

.pricing {
  background: linear-gradient(180deg, #fff 0%, #fbf7fa 100%);
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

.price-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 1.3rem;
  box-shadow: var(--shadow-soft);
  position: relative;
}

.price-card.featured {
  border-color: rgba(194, 31, 104, 0.38);
  transform: translateY(-6px);
  box-shadow: 0 28px 56px rgba(194, 31, 104, 0.14);
}

.badge {
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 0.72rem;
  background: var(--brand-soft);
  color: var(--brand-dark);
  border-radius: 999px;
  padding: 0.3rem 0.7rem;
  font-weight: 700;
}

.price {
  font-size: 2.1rem;
  color: var(--brand-dark);
  font-weight: 800;
}

.price small {
  font-size: 0.95rem;
  color: var(--muted);
}

.list {
  list-style: none;
  margin: 1rem 0;
  padding: 0;
  display: grid;
  gap: 0.48rem;
}

.list li {
  display: flex;
  gap: 0.5rem;
  align-items: baseline;
  color: #333744;
}

.list i {
  color: var(--brand);
  font-size: 0.82rem;
}

.slider-shell {
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.swiper {
  padding: 1.3rem;
}

.review {
  min-height: 255px;
  display: grid;
  align-content: space-between;
  gap: 1rem;
}

.review-stars {
  color: #f4a31f;
}

.review-author {
  border-top: 1px dashed var(--line);
  padding-top: 0.9rem;
  color: #384052;
  font-weight: 700;
}

.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  margin-bottom: 0.8rem;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: left;
  border: 0;
  background: transparent;
  color: var(--text);
  padding: 1rem 1.1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
}

.faq-question i {
  color: var(--brand-dark);
}

.faq-answer {
  padding: 0 1.1rem 1rem;
  display: none;
}

.faq-item.open .faq-answer {
  display: block;
}

.cta-band {
  background: linear-gradient(130deg, #2a272d 0%, #19181b 100%);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 2.2rem;
  display: grid;
  gap: 1rem;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
}

.cta-band p {
  color: #e5dfe5;
}

.cta-band a:visited {
  color: inherit;
}

.contact-wrap {
  display: grid;
  gap: 1.3rem;
  grid-template-columns: 1fr 1fr;
}

.panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 1.2rem;
  box-shadow: var(--shadow-soft);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.form-field {
  display: grid;
  gap: 0.35rem;
}

.form-field.full {
  grid-column: 1 / -1;
}

label {
  font-size: 0.9rem;
  color: #3f4452;
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #d6d2d7;
  border-radius: 10px;
  padding: 0.72rem 0.84rem;
  font: inherit;
  background: #fff;
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(194, 31, 104, 0.28);
  border-color: rgba(194, 31, 104, 0.55);
}

textarea {
  min-height: 150px;
  resize: vertical;
}

.notice {
  padding: 0.9rem 1rem;
  border-radius: 10px;
  margin-bottom: 1rem;
  display: none;
}

.notice.error {
  display: block;
  background: #fff0f0;
  border: 1px solid #e8bcbc;
  color: #983838;
}

.notice.success {
  display: block;
  background: #effaf3;
  border: 1px solid #a7d7ba;
  color: #1f6b42;
}

.footer {
  margin-top: 4rem;
  background: #161419;
  color: #f2edf2;
  padding: 3.5rem 0 1rem;
}

.footer p,
.footer a {
  color: #dbd4dc;
}

.footer-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
}

.footer .brand-title span {
  color: #b5aeb7;
}

.footer .brand-logo {
  display: none;
}

.copyright {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.9rem;
}

.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(19, 18, 21, 0.78);
  z-index: 80;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.mobile-menu.open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-panel {
  width: min(90vw, 360px);
  height: 100%;
  background: #fff;
  margin-left: auto;
  padding: 1.2rem;
  transform: translateX(100%);
  transition: transform 0.28s ease;
}

.mobile-menu.open .mobile-panel {
  transform: translateX(0);
}

.mobile-panel nav {
  display: grid;
  gap: 0.7rem;
  margin: 1.4rem 0;
}

.mobile-panel a {
  padding: 0.6rem;
  border-radius: 10px;
  font-weight: 700;
}

.mobile-panel a.active,
.mobile-panel a:hover {
  background: var(--brand-soft);
}

.table-wrap {
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: var(--shadow-soft);
}

table {
  border-collapse: collapse;
  width: 100%;
  min-width: 620px;
}

th,
td {
  text-align: left;
  padding: 0.9rem;
  border-bottom: 1px solid #efedf0;
}

th {
  background: #f9f6f8;
}

.page-hero {
  padding: 6.4rem 0 3.4rem;
}

.page-hero p {
  max-width: 70ch;
}

.small {
  font-size: 0.9rem;
}

@media (max-width: 1050px) {
  .nav-links,
  .nav-actions .btn {
    display: none;
  }

  .mobile-toggle {
    display: inline-grid;
    place-items: center;
  }

  .hero-grid,
  .split,
  .price-grid,
  .contact-wrap,
  .footer-grid,
  .cta-band,
  .grid-3,
  .grid-2 {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 5.5rem;
  }

  .price-card.featured {
    transform: none;
  }
}

@media (max-width: 640px) {
  section {
    padding: 3.8rem 0;
  }

  .container {
    width: min(100% - 1.4rem, var(--container));
  }

  .nav-shell {
    min-height: 72px;
  }

  .brand-logo {
    height: 36px;
    max-width: 190px;
  }

  .hero h1 {
    font-size: clamp(2rem, 9.2vw, 2.8rem);
  }

  .form-grid {
    grid-template-columns: 1fr;
  }
}

/* Rebrand: poster-style dark identity */

:root {
  --bg: #07080c;
  --surface: #12141b;
  --surface-soft: #171a23;
  --text: #f7f7f8;
  --muted: #b9bcc6;
  --line: rgba(255, 255, 255, 0.16);
  --brand: #ff0f79;
  --brand-dark: #ff5ca4;
  --brand-soft: rgba(255, 15, 121, 0.14);
  --shadow-soft: 0 14px 40px rgba(0, 0, 0, 0.4);
  --shadow-strong: 0 24px 70px rgba(0, 0, 0, 0.55);
}

body {
  font-family: "Barlow Condensed", "Segoe UI", sans-serif;
  letter-spacing: 0.01em;
  background:
    radial-gradient(circle at 18% 0%, rgba(255, 15, 121, 0.24) 0%, rgba(255, 15, 121, 0) 34%),
    radial-gradient(circle at 82% 24%, rgba(90, 110, 255, 0.14) 0%, rgba(90, 110, 255, 0) 40%),
    linear-gradient(145deg, #040408 0%, #090c15 48%, #08090e 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(to bottom, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0)),
    repeating-linear-gradient(
      125deg,
      rgba(255, 255, 255, 0.02) 0,
      rgba(255, 255, 255, 0.02) 2px,
      transparent 2px,
      transparent 22px
    );
  opacity: 0.45;
  z-index: -1;
}

h1,
h2,
h3,
h4,
.section-title,
.price,
.nav-links a,
.brand-title {
  font-family: "Bebas Neue", "Barlow Condensed", sans-serif;
  letter-spacing: 0.03em;
}

p,
li,
label,
input,
select,
textarea,
.btn {
  font-family: "Barlow Condensed", "Segoe UI", sans-serif;
}

.accent-script {
  font-family: "Yellowtail", cursive;
  font-size: 1.1em;
  color: var(--brand);
  font-weight: 400;
  text-transform: lowercase;
}

.eyebrow {
  color: var(--brand);
  letter-spacing: 0.12em;
}

.topbar {
  background: #000;
  border-bottom: 1px solid rgba(255, 15, 121, 0.26);
}

.topbar.scrolled {
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.55);
}

.brand-title span,
.nav-links a {
  color: #f1f2f6;
}

.nav-links a {
  font-size: 1.1rem;
}

.mobile-toggle {
  color: #fff;
}

.btn-primary {
  background: linear-gradient(135deg, #ff0f79 0%, #ff3f98 52%, #ff66ac 100%);
  box-shadow: 0 14px 34px rgba(255, 15, 121, 0.32);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.24);
}

.btn-ghost {
  color: #fff;
  border-color: rgba(255, 15, 121, 0.4);
}

.pill,
.card,
.step,
.price-card,
.slider-shell,
.faq-item,
.panel,
.table-wrap,
.hero-card {
  background: linear-gradient(170deg, rgba(255, 255, 255, 0.035) 0%, rgba(255, 255, 255, 0.01) 100%);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: var(--shadow-soft);
}

.hero-card.hero-card-blend {
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 0;
}

.step::before {
  background: linear-gradient(145deg, #ff0f79, #ff64ad);
  color: #fff;
}

.card-icon,
.badge {
  background: rgba(255, 15, 121, 0.18);
  color: #ff8bc0;
}

.price {
  color: #fff;
}

.pricing {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0) 100%);
}

.price-card.featured {
  border-color: rgba(255, 15, 121, 0.72);
  box-shadow: 0 30px 56px rgba(255, 15, 121, 0.22);
}

.list li,
label,
th,
td,
.faq-question,
.review-author,
.mobile-panel a,
.copyright,
.small {
  color: #e8eaf0;
}

p,
.section-subtitle,
.cta-band p,
.price small,
.footer p,
.footer a,
.brand-title span {
  color: var(--muted);
}

.list i,
.faq-question i {
  color: var(--brand);
}

.media-frame {
  border-color: rgba(255, 255, 255, 0.16);
}

.hero {
  padding-top: 7.3rem;
}

.hero h1,
.page-hero h1,
.page-hero .section-title {
  text-transform: uppercase;
  font-size: clamp(2.5rem, 5.6vw, 5.2rem);
  line-height: 0.95;
  text-wrap: balance;
}

.hero h1 {
  animation: intro-pop 0.8s ease-out both;
}

.hero p {
  font-size: 1.22rem;
}


.hero-card-blend img,
.media-frame img {
  filter: contrast(1.02) saturate(0.92);
}

.cta-band {
  border: 1px solid rgba(255, 15, 121, 0.36);
  background:
    radial-gradient(circle at 88% 32%, rgba(255, 15, 121, 0.16) 0%, rgba(255, 15, 121, 0) 42%),
    linear-gradient(132deg, #111319 0%, #0b0d12 100%);
}

.footer {
  background: linear-gradient(180deg, #0a0b10 0%, #06070a 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu {
  background: rgba(5, 6, 10, 0.86);
}

.mobile-panel {
  background: #0f1118;
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.mobile-panel a.active,
.mobile-panel a:hover {
  background: rgba(255, 15, 121, 0.16);
}

th {
  background: rgba(255, 255, 255, 0.06);
}

th,
td,
.review-author,
.copyright {
  border-color: rgba(255, 255, 255, 0.12);
}

input,
select,
textarea {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.22);
  color: #fff;
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(255, 15, 121, 0.35);
  border-color: rgba(255, 15, 121, 0.65);
}

.notice.error {
  background: rgba(150, 30, 50, 0.2);
  border-color: rgba(220, 90, 120, 0.5);
  color: #ffd6df;
}

.notice.success {
  background: rgba(18, 116, 74, 0.24);
  border-color: rgba(108, 202, 161, 0.45);
  color: #d5ffec;
}

@keyframes intro-pop {
  from {
    opacity: 0;
    transform: translateY(20px);
    text-shadow: 0 0 0 rgba(255, 15, 121, 0);
  }

  to {
    opacity: 1;
    transform: translateY(0);
    text-shadow: 0 0 14px rgba(255, 15, 121, 0.18);
  }
}

@media (max-width: 640px) {
  .hero h1,
  .page-hero h1,
  .page-hero .section-title {
    font-size: clamp(2.2rem, 13vw, 3.2rem);
  }

  .hero p {
    font-size: 1.12rem;
  }
}

/* Supplied logo: crop its large black canvas to the visible wordmark. */
.brand-logo {
  width: 205px;
  height: 62px;
  max-width: none;
  object-fit: cover;
  object-position: center;
  filter: contrast(1.28) brightness(1.12);
}

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

.footer .brand-logo {
  display: block;
  width: 240px;
  height: 73px;
}

@media (max-width: 640px) {
  .brand-logo {
    width: 170px;
    height: 52px;
  }

  .footer .brand-logo {
    width: 210px;
    height: 64px;
  }
}

/* Hero art direction: the car is part of the composition, not a floating card. */
@media (min-width: 1051px) {
  .hero {
    min-height: 760px;
    display: grid;
    align-items: center;
    padding: 5rem 0 6rem;
    background-image:
      linear-gradient(90deg, #0b0b0d 0%, rgba(11, 11, 13, 0.98) 28%, rgba(11, 11, 13, 0.62) 49%, rgba(11, 11, 13, 0.08) 78%),
      url("../images/hero-car-photo.png");
    background-size: 100% 100%, min(74vw, 1060px) auto;
    background-position: center, right center;
    background-repeat: no-repeat;
  }

  .hero-grid {
    display: block;
    position: relative;
    min-height: 600px;
  }

  .hero-grid > div:first-child {
    position: relative;
    z-index: 3;
    width: min(520px, 48%);
    padding-top: 3rem;
  }

  .hero-card.hero-card-blend {
    display: none;
  }
}

@media (max-width: 1050px) {
  .hero {
    background-image: linear-gradient(90deg, rgba(11, 11, 13, 0.98), rgba(11, 11, 13, 0.55)), url("../images/hero-car-photo.png");
    background-size: cover;
    background-position: center;
  }

  .hero-grid {
    display: grid;
  }

  .hero-card.hero-card-blend {
    display: none;
  }
}

/* Reviews: proof-led, editorial layout instead of a generic card carousel. */
.reviews-layout {
  display: grid;
  grid-template-columns: minmax(220px, 0.35fr) minmax(0, 1fr);
  gap: clamp(2rem, 6vw, 6rem);
  align-items: stretch;
  margin-top: 2.8rem;
}

.review-summary {
  padding: 1.2rem 0 1.2rem 2rem;
  border-left: 2px solid var(--brand);
  align-self: center;
}

.review-summary-mark {
  color: var(--brand);
  font-family: Georgia, serif;
  font-size: 5rem;
  line-height: 0.55;
  margin-bottom: 1.4rem;
}

.review-score {
  margin: 0 0 0.3rem;
  color: var(--text);
  font-family: "Bebas Neue", sans-serif;
  font-size: 3rem;
  line-height: 1;
  letter-spacing: 0.04em;
}

.review-score span {
  color: var(--muted);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1rem;
  letter-spacing: 0;
}

.review-summary .review-stars {
  display: flex;
  gap: 0.22rem;
  margin-bottom: 1.35rem;
  color: var(--brand);
  font-size: 0.85rem;
}

.review-summary-copy {
  max-width: 25ch;
  font-size: 1.05rem;
}

.review-source {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-top: 1.8rem;
  color: #f1ebee;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.review-source i {
  color: var(--brand);
  font-size: 1.1rem;
}

.reviews-layout .slider-shell {
  border: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.reviews-layout .swiper {
  padding: 0;
}

.reviews-layout .review {
  min-height: 292px;
  padding: 2rem 2.2rem 2rem 0;
  border-right: 1px solid var(--line);
}

.reviews-layout .review + .review {
  padding-left: 2.2rem;
}

.reviews-layout .review p {
  max-width: 30ch;
  color: #f1ebee;
  font-family: Georgia, serif;
  font-size: clamp(1.3rem, 2vw, 1.65rem);
  line-height: 1.28;
}

.reviews-layout .review-stars {
  display: flex;
  gap: 0.18rem;
  margin-bottom: 1.4rem;
  color: var(--brand);
  font-size: 0.76rem;
}

.reviews-layout .review-author {
  border-top: 0;
  padding-top: 1rem;
  color: var(--muted);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.92rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.reviews-layout .swiper-pagination {
  position: static;
  margin-top: 1rem;
  text-align: left;
}

.reviews-layout .swiper-pagination-bullet {
  width: 7px;
  height: 7px;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.34);
  opacity: 1;
}

.reviews-layout .swiper-pagination-bullet-active {
  width: 24px;
  background: var(--brand);
}

@media (max-width: 760px) {
  .reviews-layout {
    grid-template-columns: 1fr;
    gap: 2.2rem;
  }

  .review-summary {
    padding-left: 1.2rem;
  }

  .review-summary-copy {
    max-width: 38ch;
  }

  .reviews-layout .review,
  .reviews-layout .review + .review {
    min-height: 270px;
    padding: 1.6rem 1.2rem 1.6rem 0;
    border-right: 0;
  }
}

/* Hero motto: a small signature line that sits over the road scene. */
.hero-motto {
  position: absolute;
  top: clamp(2rem, 7vw, 5.5rem);
  right: clamp(1.2rem, 7vw, 7rem);
  z-index: 4;
  width: min(255px, 23vw);
  text-align: center;
  color: #fff;
  text-shadow: 0 0.15rem 1rem rgba(0, 0, 0, 0.45);
}

.hero-motto-heart {
  width: clamp(3.4rem, 5.5vw, 5rem);
  height: auto;
  margin: 0 auto 0.35rem;
  fill: none;
  stroke: rgba(255, 255, 255, 0.82);
  stroke-width: 2.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-motto p {
  position: relative;
  margin: 0;
  color: #fff;
  font: italic 1.55rem/1.05 "Playfair Display", Georgia, serif;
}

.hero-motto p em {
  position: relative;
  color: var(--brand);
  font-style: italic;
}

.hero-motto p em::after {
  content: "";
  position: absolute;
  left: -0.12em;
  right: -0.12em;
  bottom: -0.22em;
  height: 0.12em;
  border-radius: 999px;
  background: var(--brand);
  transform: rotate(-4deg);
}

@media (max-width: 1050px) {
  .hero-motto {
    position: relative;
    top: auto;
    right: auto;
    width: min(245px, 78vw);
    margin: 2rem auto 0;
  }
}

@media (max-width: 560px) {
  .hero-motto p {
    font-size: 1.35rem;
  }
}

/* Final hero precedence: keep the campaign photo as one continuous background layer. */
@media (min-width: 1051px) {
  .hero {
    min-height: 760px;
    position: relative;
    isolation: isolate;
    background: #0b0b0d;
  }

  .hero::before {
    content: "";
    position: absolute;
    z-index: -1;
    inset: 0;
    background: url("../images/hero-car-photo.png") right center / min(74vw, 1060px) auto no-repeat;
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.1) 17%, #000 43%, #000 100%);
    mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.1) 17%, #000 43%, #000 100%);
    opacity: 0.92;
  }

  .hero-grid {
    display: block;
    position: relative;
    min-height: 600px;
  }

  .hero-grid > div:first-child {
    width: min(520px, 48%);
    position: relative;
    z-index: 3;
    padding-top: 3rem;
  }

  .hero-card.hero-card-blend {
    display: none !important;
  }
}

/* Compact proof point in the hero: visible, credible and easy to scan. */
.hero-proof {
  display: inline-flex;
  align-items: baseline;
  gap: 0.65rem;
  margin: 1.35rem 0 0.25rem;
  padding-left: 0.9rem;
  border-left: 2px solid var(--brand);
}

.hero-proof strong {
  color: var(--brand);
  font-size: clamp(1.8rem, 3vw, 2.45rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

.hero-proof span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@media (max-width: 640px) {
  .hero-proof {
    margin-top: 1.1rem;
  }
}

/* Final card alignment override: all three feature cards share one row and height. */
.grid-3 {
  align-items: stretch;
}

.grid-3 .card:first-child {
  grid-row: auto;
  padding-top: 2rem;
}

.grid-3 .card {
  height: 100%;
}

/* Persistent contact shortcut: visible on every page without competing with the main CTA. */
.whatsapp-float {
  position: fixed;
  left: 1.25rem;
  bottom: 1.25rem;
  z-index: 1000;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 3.35rem;
  padding: 0.7rem 1rem 0.7rem 0.78rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: #25d366;
  color: #06150b;
  font: 700 0.84rem/1 "Manrope", system-ui, sans-serif;
  letter-spacing: 0.01em;
  text-decoration: none;
  box-shadow: 0 0.7rem 1.8rem rgba(0, 0, 0, 0.35), 0 0 1.8rem rgba(37, 211, 102, 0.36);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  background: #45df7d;
  color: #06150b;
  transform: translateY(-3px);
  box-shadow: 0 0.8rem 1.8rem rgba(0, 0, 0, 0.32), 0 0 1.8rem rgba(37, 211, 102, 0.32);
}

.whatsapp-float:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.9);
  outline-offset: 3px;
}

.whatsapp-float svg {
  width: 1.55rem;
  height: 1.55rem;
  flex: 0 0 auto;
  fill: currentColor;
}

.language-switch {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.35rem;
  height: 2.35rem;
  padding: 0 0.55rem;
  border: 1px solid rgba(255, 255, 255, 0.32);
  color: #fff;
  font: 700 0.74rem/1 "Manrope", sans-serif;
  letter-spacing: 0.08em;
  transition: border-color 180ms ease, color 180ms ease, background 180ms ease;
}

.language-switch:hover,
.language-switch:focus-visible {
  border-color: var(--brand);
  background: rgba(242, 38, 112, 0.14);
  color: #fff;
}

.mobile-language-switch {
  align-self: flex-start;
  margin-top: 0.5rem;
}

@media (max-width: 560px) {
  .whatsapp-float {
    left: 0.9rem;
    bottom: calc(0.9rem + env(safe-area-inset-bottom));
    min-height: 3rem;
    padding: 0.65rem 0.9rem 0.65rem 0.72rem;
    font-size: 0.74rem;
  }

  .whatsapp-float-label {
    display: inline;
  }

  body {
    font-size: 17px;
  }

  p,
  li,
  label,
  input,
  select,
  textarea,
  .btn,
  .section-subtitle,
  .faq-answer p,
  .review p {
    font-size: 1.08rem;
    line-height: 1.55;
  }

  .card p,
  .step p,
  .price-card p,
  .instructor-info p {
    font-size: 1.04rem;
  }
}

/* Keep feature cards on one visual baseline; the first-card editorial span is not used here. */
.grid-3 {
  align-items: stretch;
}

.grid-3 .card:first-child {
  grid-row: auto;
  padding-top: 2rem;
}

.grid-3 .card {
  height: 100%;
}

@media (max-width: 1050px) {
  .hero {
    background-image: linear-gradient(90deg, rgba(11, 11, 13, 0.98), rgba(11, 11, 13, 0.55)), url("../images/hero-car-photo.png");
    background-size: cover;
    background-position: center;
  }

  .hero-card.hero-card-blend {
    display: none !important;
  }
}

/* Campaign redesign: editorial, poster-led identity inspired by the supplied reference. */
:root {
  --bg: #0b0b0d;
  --surface: #151519;
  --surface-soft: #1b1b20;
  --text: #f5f2f3;
  --muted: #b5afb4;
  --line: rgba(255, 255, 255, 0.2);
  --brand: #f22670;
  --brand-dark: #f22670;
  --brand-soft: rgba(242, 38, 112, 0.12);
  --container: 1180px;
}

body {
  background: #0b0b0d;
  color: var(--text);
}

body::before {
  opacity: 0.2;
  background: repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.025) 0 1px, transparent 1px 28px);
}

.topbar {
  background: rgba(8, 8, 10, 0.96);
  border-bottom: 1px solid rgba(242, 38, 112, 0.45);
}

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

.brand-logo {
  width: 220px;
  height: 70px;
}

.nav-links {
  gap: 1.5rem;
}

.nav-links a {
  font-size: 1rem;
  letter-spacing: 0.05em;
}

.btn {
  border-radius: 3px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.8rem;
  padding: 0.95rem 1.35rem;
}

.btn-primary {
  background: var(--brand);
  box-shadow: 0 10px 28px rgba(242, 38, 112, 0.25);
}

.btn-primary:hover {
  background: #ff4f8c;
  transform: translateY(-2px);
}

.btn-secondary,
.btn-ghost {
  border-radius: 3px;
}

.hero {
  min-height: min(790px, calc(100dvh - 84px));
  padding: clamp(5rem, 9vw, 8.5rem) 0 6rem;
  background:
    linear-gradient(90deg, rgba(11, 11, 13, 0.98) 0%, rgba(11, 11, 13, 0.88) 38%, rgba(11, 11, 13, 0.2) 78%),
    radial-gradient(circle at 88% 50%, rgba(242, 38, 112, 0.08), transparent 34%);
  overflow: hidden;
}

.hero-grid {
  grid-template-columns: minmax(0, 0.78fr) minmax(420px, 1.22fr);
  gap: 3rem;
  align-items: center;
}

.hero h1,
.page-hero h1,
.page-hero .section-title {
  max-width: 8ch;
  font-size: clamp(3.4rem, 7vw, 7.4rem);
  line-height: 0.88;
  letter-spacing: -0.015em;
}

.hero h1 .accent-script {
  color: var(--brand);
  font-size: 0.75em;
  white-space: nowrap;
}

.hero p {
  max-width: 42ch;
  margin-top: 1.8rem;
  color: #d5cfd3;
  font-size: 1.15rem;
}

.hero-badges {
  gap: 0;
  margin: 2rem 0 2.2rem;
}

.pill {
  border: 0;
  border-left: 1px solid var(--brand);
  border-radius: 0;
  background: transparent;
  padding: 0.35rem 1rem;
  color: #ede7ea;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-card.hero-card-blend {
  min-height: 500px;
  display: grid;
  place-items: center;
  position: relative;
}

.hero-card.hero-card-blend::before {
  content: "";
  position: absolute;
  width: 72%;
  height: 72%;
  border-radius: 50%;
  background: rgba(242, 38, 112, 0.18);
  filter: blur(70px);
}

.hero-card.hero-card-blend img {
  position: relative;
  width: min(100%, 690px);
  height: 560px;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.05) contrast(1.05) drop-shadow(0 30px 30px rgba(0, 0, 0, 0.48));
  clip-path: none;
}

section {
  padding: clamp(5rem, 9vw, 9rem) 0;
}

.section-title {
  max-width: 13ch;
  font-size: clamp(2.4rem, 5vw, 4.7rem);
  line-height: 0.93;
}

.eyebrow {
  color: var(--brand);
  font-size: 0.76rem;
  letter-spacing: 0.2em;
}

.card,
.step,
.price-card,
.panel,
.faq-item,
.table-wrap {
  border-radius: 0;
  border: 1px solid rgba(255, 255, 255, 0.17);
  background: rgba(255, 255, 255, 0.025);
  box-shadow: none;
}

.card:hover,
.price-card:hover {
  border-color: rgba(242, 38, 112, 0.65);
  transform: translateY(-4px);
}

.grid-3 {
  grid-template-columns: 1.15fr 0.95fr 0.95fr;
  gap: 1rem;
}

.grid-3 .card:first-child {
  grid-row: auto;
  padding-top: 2rem;
}

.card h3,
.step h3,
.price-card h3 {
  letter-spacing: 0.04em;
}

.card-icon,
.badge {
  border-radius: 2px;
  background: var(--brand-soft);
  color: #ff6d9d;
}

.split {
  gap: clamp(2rem, 7vw, 7rem);
  align-items: center;
}

.media-frame {
  border-radius: 0;
  border: 0;
  box-shadow: 18px 18px 0 rgba(242, 38, 112, 0.12);
}

.media-frame img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.steps {
  border-top: 1px solid var(--line);
}

.step {
  border-width: 0 0 1px;
  padding: 1.8rem 0;
  display: grid;
  grid-template-columns: 0.2fr 1fr 1.5fr;
  align-items: center;
  gap: 1.5rem;
  position: relative;
}

.step::before {
  position: static;
  width: auto;
  height: auto;
  border-radius: 0;
  background: transparent;
  color: var(--brand);
  content: counter(step-counter, decimal-leading-zero);
  font-family: "Bebas Neue", sans-serif;
  font-size: 2rem;
}

.steps {
  counter-reset: step-counter;
}

.step {
  counter-increment: step-counter;
}

.step p {
  margin: 0;
}

.pricing {
  background: #111115;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.price-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.price-card {
  padding: 2rem;
}

.price-card.featured {
  border-color: var(--brand);
  transform: translateY(-1.5rem);
}

.cta-band {
  border-radius: 0;
  border: 1px solid var(--brand);
  background: linear-gradient(105deg, rgba(242, 38, 112, 0.14), transparent 65%);
  box-shadow: none;
}

.footer {
  margin-top: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

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

  .hero-card.hero-card-blend {
    min-height: 330px;
    order: -1;
  }

  .hero-card.hero-card-blend img {
    height: 380px;
    object-position: center;
  }

  .hero h1 {
    max-width: 10ch;
  }

  .grid-3,
  .price-grid {
    grid-template-columns: 1fr 1fr;
  }

  .grid-3 .card:first-child {
    grid-row: auto;
  }
}

@media (max-width: 640px) {
  .nav-shell {
    min-height: 72px;
  }

  .brand-logo {
    width: 178px;
    height: 57px;
  }

  .hero {
    min-height: auto;
    padding-top: 4.8rem;
  }

  .hero-card.hero-card-blend {
    min-height: 230px;
  }

  .hero-card.hero-card-blend img {
    height: 260px;
    clip-path: none;
  }

  .hero h1,
  .page-hero h1,
  .page-hero .section-title {
    font-size: clamp(3.1rem, 16vw, 5rem);
  }

  .hero p {
    font-size: 1.12rem;
  }

  .hero-badges {
    display: grid;
  }

  .pill {
    padding-left: 0.7rem;
  }

  .grid-3,
  .price-grid {
    grid-template-columns: 1fr;
  }

  .price-card.featured {
    transform: none;
  }

  .step {
    grid-template-columns: 0.2fr 1fr;
  }

  .step p {
    grid-column: 2;
  }
}

/* Final hero precedence: keep the campaign photo as one continuous background layer. */
@media (min-width: 1051px) {
  .hero {
    min-height: 760px;
    position: relative;
    isolation: isolate;
    background: #0b0b0d;
  }

  .hero::before {
    content: "";
    position: absolute;
    z-index: -1;
    inset: 0;
    background: url("../images/hero-car-photo.png") right center / min(74vw, 1060px) auto no-repeat;
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.1) 17%, #000 43%, #000 100%);
    mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.1) 17%, #000 43%, #000 100%);
    opacity: 0.92;
  }

  .hero-grid {
    display: block;
    position: relative;
    min-height: 600px;
  }

  .hero-grid > div:first-child {
    width: min(520px, 48%);
    position: relative;
    z-index: 3;
    padding-top: 3rem;
  }

  .hero-card.hero-card-blend {
    display: none !important;
  }
}

@media (max-width: 1050px) {
  .hero {
    background-image: linear-gradient(90deg, rgba(11, 11, 13, 0.98), rgba(11, 11, 13, 0.55)), url("../images/hero-car-photo.png");
    background-size: cover;
    background-position: center;
  }

  .hero-card.hero-card-blend {
    display: none !important;
  }
}
