/* ============================================================
   RIGHT CAR DETAILING — Premium site stylesheet
   Palette derived from Park+ (parkplus.io): violet #5E33D9,
   lavender gradient, soft off-white background, near-black ink.
   ============================================================ */

:root {
  --primary: #5E33D9;
  --primary-dark: #4321A8;
  --primary-light: #8F6FFF;
  --lavender: #D3C9FB;
  --lavender-soft: #F1EDFD;
  --bg-soft: #F6F7FB;
  --ink: #17161C;
  --ink-secondary: #63636B;
  --ink-faint: #9B9BA5;
  --border: #E9E8F2;
  --white: #FFFFFF;
  --black-cta: #141417;
  --gold: #FFB800;

  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-pill: 999px;

  --shadow-sm: 0 2px 10px rgba(23, 22, 28, 0.06);
  --shadow-md: 0 16px 40px rgba(94, 51, 217, 0.14);
  --shadow-lg: 0 30px 70px rgba(23, 22, 28, 0.16);

  --container: 1240px;
  --nav-h: 84px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Plus Jakarta Sans', 'Segoe UI', Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: inherit; font-size: 1rem; }

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

section { position: relative; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 { font-weight: 800; line-height: 1.15; letter-spacing: -0.02em; color: var(--ink); }
h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.9rem, 3.4vw, 2.7rem); }
h3 { font-size: clamp(1.3rem, 2vw, 1.6rem); }
p { color: var(--ink-secondary); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--primary);
  background: var(--lavender-soft);
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: 18px;
}

.section-head {
  max-width: 640px;
  margin-bottom: 52px;
}
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head p { margin-top: 14px; font-size: 1.08rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 30px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.98rem;
  white-space: nowrap;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
  box-shadow: var(--shadow-md);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 20px 46px rgba(94,51,217,0.24); }

.btn-dark {
  background: var(--black-cta);
  color: var(--white);
}
.btn-dark:hover { transform: translateY(-3px); background: #000; }

.btn-outline {
  background: var(--white);
  color: var(--ink);
  border: 1.5px solid var(--border);
}
.btn-outline:hover { border-color: var(--primary); color: var(--primary); transform: translateY(-3px); }

.btn-ghost {
  background: var(--lavender-soft);
  color: var(--primary-dark);
}
.btn-ghost:hover { background: var(--lavender); }

.btn-block { width: 100%; }
.btn-lg { padding: 18px 36px; font-size: 1.05rem; }

/* ---------- Top announcement bar ---------- */
.announce {
  background: var(--black-cta);
  color: var(--white);
  text-align: center;
  font-size: 0.86rem;
  font-weight: 600;
  padding: 10px 16px;
  letter-spacing: 0.01em;
}
.announce strong { color: var(--lavender); }

/* ---------- Navbar ---------- */
header.site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.18rem;
  color: var(--ink);
}
.brand .brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
}
.brand .brand-mark svg { width: 24px; height: 24px; color: var(--white); }
.brand span.sub { display: block; font-size: 0.68rem; font-weight: 600; color: var(--ink-faint); letter-spacing: 0.08em; text-transform: uppercase; margin-top: -2px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 38px;
}
.nav-links a {
  font-weight: 600;
  font-size: 0.96rem;
  color: var(--ink-secondary);
  position: relative;
  padding: 6px 0;
  transition: color .2s ease;
}
.nav-links a:hover, .nav-links a.active { color: var(--ink); }
.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -4px;
  height: 3px;
  border-radius: 3px;
  background: var(--primary);
}

.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.94rem;
  color: var(--ink);
}
.nav-phone svg { width: 18px; height: 18px; color: var(--primary); }

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  border-radius: 10px;
  align-items: center;
  justify-content: center;
  background: var(--bg-soft);
}
.nav-toggle svg { width: 22px; height: 22px; }

/* ---------- Hero ---------- */
.hero {
  background: linear-gradient(120deg, #FFFFFF 0%, #F7F4FE 40%, #E7DEFC 100%);
  padding: 48px 0 56px;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
}
.hero-copy h1 { font-size: clamp(2.1rem, 3.4vw, 2.9rem); margin-bottom: 16px; }
.hero-copy h1 .accent {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-copy p.lead { font-size: 1.05rem; max-width: 500px; margin-bottom: 24px; }
.hero-actions { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }

.hero-stats {
  display: flex;
  gap: 34px;
  flex-wrap: wrap;
}
.hero-stats .stat b {
  display: block;
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--ink);
}
.hero-stats .stat span {
  font-size: 0.85rem;
  color: var(--ink-secondary);
  font-weight: 600;
}

/* hero visual: 4-image service grid */
.hero-visual { position: relative; display: flex; justify-content: center; align-items: center; min-height: auto; max-height: 320px; }
.hero-quad {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  width: 100%;
}
.quad-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease;
}
.quad-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.quad-card img {
  width: 100%;
  height: 96px;
  object-fit: cover;
  display: block;
  flex-shrink: 0;
}
.quad-label {
  display: flex;
  align-items: center;
  min-height: 40px;
  padding: 8px 12px;
  font-size: 0.8rem;
  line-height: 1.25;
  font-weight: 700;
  color: var(--ink);
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  opacity: 0.55;
}
.blob-1 { width: 320px; height: 320px; background: radial-gradient(circle at 30% 30%, var(--lavender), transparent 70%); top: -20px; right: -30px; }
.blob-2 { width: 220px; height: 220px; background: radial-gradient(circle at 30% 30%, var(--primary-light), transparent 70%); bottom: -10px; left: -10px; opacity: 0.3; }

.mock-card {
  position: relative;
  width: 340px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 26px;
  z-index: 2;
  transform: rotate(-2deg);
}
.mock-card .mock-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.mock-card .mock-badge {
  background: var(--lavender-soft);
  color: var(--primary-dark);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: var(--radius-pill);
}
.mock-card .mock-car {
  height: 150px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--lavender-soft), var(--lavender));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.mock-card .mock-car svg { width: 92px; height: 92px; color: var(--primary); }
.mock-row { display: flex; align-items: center; justify-content: space-between; padding: 10px 0; border-top: 1px solid var(--border); }
.mock-row:first-of-type { border-top: none; }
.mock-row span.label { font-size: 0.88rem; font-weight: 600; color: var(--ink-secondary); }
.mock-row span.val { font-size: 0.9rem; font-weight: 700; color: var(--ink); }
.mock-row span.val.ok { color: #1EA672; }

.float-chip {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 3;
}
.float-chip svg { width: 22px; height: 22px; color: var(--gold); }
.float-chip b { font-size: 1rem; }
.float-chip span { font-size: 0.75rem; color: var(--ink-secondary); display: block; }
.chip-rating { top: 12px; left: -10px; transform: rotate(-4deg); }
.chip-eta { bottom: 20px; right: -18px; transform: rotate(3deg); }

/* ---------- Image marquee ---------- */
.image-marquee {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 36px 0;
  overflow: hidden;
}
.marquee-viewport {
  width: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 34s linear infinite;
}
.marquee-group {
  display: flex;
  gap: 18px;
  padding-right: 18px;
}
.marquee-card {
  flex: 0 0 auto;
  width: 190px;
  height: 130px;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: transform .3s ease, box-shadow .3s ease;
}
.marquee-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.marquee-card img { width: 100%; height: 100%; object-fit: cover; display: block; }
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
}

/* ---------- Cards / grids ---------- */
.grid { display: grid; gap: 26px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 34px 28px;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }

.icon-tile {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--lavender-soft), var(--lavender));
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.icon-tile svg { width: 28px; height: 28px; color: var(--primary); }

.card h3 { margin-bottom: 10px; }
.card p { font-size: 0.96rem; }
.card .card-link { margin-top: 16px; display: inline-flex; align-items: center; gap: 6px; font-weight: 700; color: var(--primary); font-size: 0.92rem; }

section.services-preview { padding: 110px 0; background: var(--bg-soft); }
section.light { padding: 110px 0; }
section.tinted { padding: 110px 0; background: var(--bg-soft); }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; counter-reset: step; }
.step { position: relative; padding: 34px 26px 26px; background: var(--white); border-radius: var(--radius-lg); border: 1px solid var(--border); transition: transform .3s ease, box-shadow .3s ease; }
.step:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.step .step-num {
  width: 46px; height: 46px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 1.1rem;
  margin-bottom: 20px;
  box-shadow: var(--shadow-md);
}
.step h3 { margin-bottom: 10px; }
.step p { font-size: 0.95rem; }

/* ---------- Trust badges ---------- */
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.trust-item { text-align: center; padding: 30px 18px; border-radius: var(--radius-lg); transition: transform .3s ease, box-shadow .3s ease; }
.trust-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); }
.trust-item .icon-tile { margin: 0 auto 18px; }
.trust-item h3 { font-size: 1.05rem; margin-bottom: 8px; }
.trust-item p { font-size: 0.88rem; }

/* ---------- Service area ---------- */
.area-wrap {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  border-radius: var(--radius-lg);
  padding: 60px;
  color: var(--white);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.area-wrap h2 { color: var(--white); }
.area-wrap p { color: rgba(255,255,255,0.82); }
.area-chip-list { display: flex; flex-wrap: wrap; gap: 10px; }
.area-chip {
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.22);
  padding: 9px 16px;
  border-radius: var(--radius-pill);
  font-size: 0.86rem;
  font-weight: 600;
}

/* ---------- Testimonials ---------- */
.testi-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: 0 4px 16px rgba(23, 22, 28, 0.05);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.testi-card::before {
  content: "\201C";
  position: absolute;
  top: 14px;
  right: 22px;
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1;
  color: var(--lavender-soft);
  font-family: Georgia, serif;
}
.testi-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--lavender); }
.stars { display: flex; gap: 3px; margin-bottom: 16px; }
.stars svg { width: 18px; height: 18px; color: var(--gold); }
.testi-card p.quote { position: relative; color: var(--ink); font-size: 0.98rem; margin-bottom: 20px; }
.testi-person { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--lavender), var(--primary-light));
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-weight: 700;
  box-shadow: 0 3px 8px rgba(94, 51, 217, 0.25);
}
.testi-person b { display: block; font-size: 0.92rem; }
.testi-person span { font-size: 0.8rem; color: var(--ink-secondary); }
.placeholder-note {
  display: inline-block;
  margin-top: 6px;
  font-size: 0.72rem;
  color: var(--ink-faint);
  font-style: italic;
}

/* ---------- CTA banner ---------- */
.cta-banner {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-radius: var(--radius-lg);
  padding: 70px 60px;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.cta-banner h2 { color: var(--white); margin-bottom: 16px; }
.cta-banner p { color: rgba(255,255,255,0.85); max-width: 560px; margin: 0 auto 34px; font-size: 1.05rem; }
.cta-banner .btn-primary { background: var(--white); color: var(--primary-dark); box-shadow: 0 16px 40px rgba(0,0,0,0.2); }
.cta-banner .btn-primary:hover { background: var(--lavender-soft); }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ---------- Footer ---------- */
footer.site-footer {
  background: var(--black-cta);
  color: rgba(255,255,255,0.7);
  padding: 76px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand .brand { color: var(--white); margin-bottom: 16px; }
.footer-brand p { color: rgba(255,255,255,0.55); font-size: 0.92rem; max-width: 300px; }
.footer-col h4 { color: var(--white); font-size: 0.92rem; margin-bottom: 20px; letter-spacing: 0.03em; text-transform: uppercase; }
.footer-col li { margin-bottom: 12px; font-size: 0.92rem; }
.footer-col a { color: rgba(255,255,255,0.62); transition: color .2s ease; }
.footer-col a:hover { color: var(--white); }
.footer-col .foot-contact { display: flex; gap: 10px; align-items: flex-start; }
.footer-col .foot-contact svg { width: 18px; height: 18px; color: var(--primary-light); flex-shrink: 0; margin-top: 2px; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 26px;
  font-size: 0.84rem;
  color: rgba(255,255,255,0.45);
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom .socials { display: flex; gap: 12px; }
.footer-bottom .socials a {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
}
.footer-bottom .socials svg { width: 16px; height: 16px; }

/* ---------- Mobile call FAB ---------- */
.call-fab {
  position: fixed;
  bottom: 22px;
  right: 22px;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  z-index: 998;
  animation: pulse 2.4s infinite;
}
.call-fab svg { width: 24px; height: 24px; color: var(--white); }
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(94,51,217,0.45), var(--shadow-lg); }
  70% { box-shadow: 0 0 0 14px rgba(94,51,217,0), var(--shadow-lg); }
  100% { box-shadow: 0 0 0 0 rgba(94,51,217,0), var(--shadow-lg); }
}

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  background: linear-gradient(120deg, #FFFFFF 0%, #F7F4FE 45%, #E7DEFC 100%);
  padding: 64px 0 70px;
  text-align: center;
}
.page-hero .section-head { margin: 0 auto; }
.breadcrumb { font-size: 0.86rem; color: var(--ink-secondary); margin-bottom: 18px; }
.breadcrumb a { color: var(--primary); font-weight: 600; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ---------- Forms ---------- */
.form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 18px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 0.86rem; font-weight: 700; margin-bottom: 8px; color: var(--ink); }
.field input, .field select, .field textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border);
  background: var(--bg-soft);
  color: var(--ink);
  transition: border-color .2s ease, background .2s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: var(--white);
}
.field textarea { resize: vertical; min-height: 110px; }
.form-note { font-size: 0.82rem; color: var(--ink-faint); margin-top: 14px; }
.form-success {
  display: none;
  background: #EAF9F1;
  border: 1px solid #BEEBD3;
  color: #1EA672;
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.92rem;
  margin-bottom: 20px;
  align-items: center;
  gap: 10px;
}
.form-success.show { display: flex; }

.contact-grid { grid-template-columns: 1.3fr 1fr; gap: 40px; align-items: flex-start; }

/* ---------- Info cards (contact) ---------- */
.info-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  margin-bottom: 20px;
}
.info-card .icon-tile { margin-bottom: 0; flex-shrink: 0; }
.info-card h4 { font-size: 1rem; margin-bottom: 6px; }
.info-card p { font-size: 0.92rem; margin: 0; }
.map-wrap { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); height: 280px; margin-top: 20px; }
.map-wrap iframe { width: 100%; height: 100%; border: 0; }

/* ---------- Pricing ---------- */
.price-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  position: relative;
  display: flex;
  flex-direction: column;
}
.price-card.featured {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
  transform: scale(1.03);
}
.price-badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--white);
  font-size: 0.74rem;
  font-weight: 700;
  padding: 7px 18px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
}
.price-card h3 { margin-bottom: 6px; }
.price-card .price-tag { display: flex; align-items: baseline; gap: 6px; margin: 18px 0 6px; }
.price-card .price-tag b { font-size: 2.4rem; font-weight: 800; }
.price-card .price-tag span { font-size: 0.9rem; color: var(--ink-secondary); font-weight: 600; }
.price-card .price-note { font-size: 0.8rem; color: var(--ink-faint); margin-bottom: 24px; }
.price-list { flex: 1; margin-bottom: 30px; }
.price-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.92rem; margin-bottom: 14px; color: var(--ink-secondary); }
.price-list svg { width: 18px; height: 18px; color: var(--primary); flex-shrink: 0; margin-top: 1px; }
.pricing-disclaimer {
  background: var(--lavender-soft);
  border: 1px dashed var(--primary-light);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  font-size: 0.88rem;
  color: var(--primary-dark);
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.pricing-disclaimer svg { width: 20px; height: 20px; flex-shrink: 0; margin-top: 2px; }

/* ---------- Services detail page ---------- */
.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 70px 0;
  border-bottom: 1px solid var(--border);
}
.service-detail:last-child { border-bottom: none; }
.service-detail.reverse { direction: rtl; }
.service-detail.reverse > * { direction: ltr; }
.service-visual {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 340px;
  box-shadow: var(--shadow-sm);
}
.service-visual img { width: 100%; height: 100%; object-fit: cover; display: block; }
.service-copy ul.check-list { margin: 22px 0 30px; }
.service-copy ul.check-list li { display: flex; gap: 10px; font-size: 0.95rem; color: var(--ink-secondary); margin-bottom: 12px; align-items: flex-start; }
.service-copy ul.check-list svg { width: 20px; height: 20px; color: #1EA672; flex-shrink: 0; margin-top: 1px; }

/* ---------- Reviews page ---------- */
.rating-summary {
  display: flex;
  align-items: center;
  gap: 30px;
  background: linear-gradient(135deg, var(--white), var(--bg-soft));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 34px 40px;
  box-shadow: 0 10px 30px rgba(94, 51, 217, 0.08);
  margin-bottom: 60px;
}
.rating-big { text-align: center; }
.rating-big b { font-size: 3rem; font-weight: 800; display: block; color: var(--primary); }
.rating-big .stars { justify-content: center; margin: 8px 0; }
.rating-big span { font-size: 0.86rem; color: var(--ink-secondary); font-weight: 600; }
.rating-divider { width: 1px; align-self: stretch; background: var(--border); }
.rating-platforms { display: flex; gap: 30px; flex: 1; flex-wrap: wrap; }
.platform-item b { display: block; font-size: 1.2rem; }
.platform-item span { font-size: 0.82rem; color: var(--ink-secondary); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1080px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { order: -1; min-height: auto; max-height: 300px; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .marquee-card { width: 160px; height: 110px; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .area-wrap { grid-template-columns: 1fr; padding: 44px 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .service-detail { grid-template-columns: 1fr; gap: 32px; }
  .service-detail.reverse { direction: ltr; }
  .service-visual { order: -1; height: 260px; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-phone span.txt { display: none; }
  .grid-3 { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .call-fab { display: flex; }
  .cta-banner { padding: 50px 26px; }
  .rating-summary { flex-direction: column; align-items: stretch; text-align: center; }
  .rating-divider { display: none; }
  .rating-platforms { justify-content: center; }
}

/* ---------- Mobile typography & density overhaul ---------- */
@media (max-width: 640px) {
  :root { --nav-h: 68px; --radius-lg: 18px; --radius-md: 14px; }

  html { font-size: 15px; }

  .container { padding: 0 18px; }

  h1 { font-size: 1.85rem; line-height: 1.2; }
  h2 { font-size: 1.45rem; }
  h3 { font-size: 1.08rem; }
  p { font-size: 0.92rem; }

  .eyebrow { font-size: 0.72rem; padding: 6px 13px; margin-bottom: 12px; }
  .section-head { margin-bottom: 34px; }
  .section-head p { font-size: 0.95rem; margin-top: 10px; }

  .announce { font-size: 0.72rem; padding: 8px 12px; }
  .brand { font-size: 1rem; }
  .brand .brand-mark { width: 36px; height: 36px; border-radius: 10px; }
  .brand .brand-mark svg { width: 20px; height: 20px; }
  .brand span.sub { font-size: 0.6rem; }

  /* Buttons: smaller, denser */
  .btn { padding: 12px 20px; font-size: 0.86rem; gap: 8px; }
  .btn-lg { padding: 13px 22px; font-size: 0.9rem; }
  .btn svg { width: 16px; height: 16px; }

  .hero { padding: 32px 0 40px; }
  .hero-copy p.lead { font-size: 0.96rem; margin-bottom: 22px; }
  .hero-actions { gap: 10px; margin-bottom: 26px; }
  .hero-actions .btn { flex: 1; }
  .hero-stats { gap: 16px; }
  .hero-stats .stat b { font-size: 1.25rem; }
  .hero-stats .stat span { font-size: 0.72rem; }
  .hero-visual { min-height: auto; max-height: 240px; }
  .hero-quad { gap: 10px; }
  .quad-card img { height: 68px; }
  .quad-label { min-height: 34px; padding: 6px 10px; font-size: 0.7rem; }
  .mock-card { width: 250px; padding: 18px; border-radius: 16px; }
  .mock-card .mock-car { height: 110px; margin-bottom: 12px; }
  .mock-card .mock-car svg { width: 64px; height: 64px; }
  .mock-row { padding: 7px 0; }
  .mock-row span.label, .mock-row span.val { font-size: 0.76rem; }
  .float-chip { padding: 9px 12px; gap: 7px; border-radius: 12px; }
  .float-chip svg { width: 16px; height: 16px; }
  .float-chip b { font-size: 0.8rem; }
  .float-chip span { font-size: 0.62rem; }
  .blob-1, .blob-2 { display: none; }

  .image-marquee { padding: 24px 0; }
  .marquee-card { width: 130px; height: 90px; }
  .marquee-track { animation-duration: 24s; }

  section.services-preview, section.light, section.tinted { padding: 48px 0; }

  .grid { gap: 16px; }
  .grid-2, .grid-4 { grid-template-columns: 1fr; }

  .card { padding: 20px 18px; border-radius: 16px; }
  .icon-tile { width: 44px; height: 44px; border-radius: 12px; margin-bottom: 14px; }
  .icon-tile svg { width: 22px; height: 22px; }
  .card h3 { margin-bottom: 6px; }
  .card p { font-size: 0.88rem; }

  .steps { gap: 16px; }
  .step { padding: 22px 18px 18px; border-radius: 16px; }
  .step .step-num { width: 38px; height: 38px; font-size: 0.95rem; margin-bottom: 14px; border-radius: 11px; }

  .trust-grid { gap: 14px; }
  .trust-item { padding: 18px 12px; }
  .trust-item h3 { font-size: 0.92rem; }
  .trust-item p { font-size: 0.8rem; }

  .area-wrap { padding: 30px 22px; border-radius: 18px; gap: 24px; }
  .area-wrap h2 { font-size: 1.4rem; }
  .area-chip { padding: 7px 13px; font-size: 0.76rem; }

  .testi-card { padding: 20px 18px; border-radius: 16px; }
  .testi-card p.quote { font-size: 0.88rem; margin-bottom: 14px; }
  .stars svg { width: 15px; height: 15px; }
  .testi-avatar { width: 36px; height: 36px; font-size: 0.86rem; }
  .testi-person b { font-size: 0.85rem; }
  .testi-person span { font-size: 0.74rem; }

  .cta-banner { padding: 34px 20px; border-radius: 18px; }
  .cta-banner h2 { font-size: 1.5rem; margin-bottom: 10px; }
  .cta-banner p { font-size: 0.9rem; margin-bottom: 22px; }
  .cta-actions { gap: 10px; }
  .cta-actions .btn { width: 100%; }

  .footer-grid { grid-template-columns: 1fr; gap: 26px; padding-bottom: 30px; }
  footer.site-footer { padding: 46px 0 24px; }
  .footer-brand p { max-width: none; font-size: 0.85rem; }
  .footer-col h4 { font-size: 0.82rem; margin-bottom: 14px; }
  .footer-col li { font-size: 0.85rem; margin-bottom: 9px; }
  .footer-bottom { flex-direction: column; text-align: center; font-size: 0.76rem; }

  .price-card { padding: 26px 20px; border-radius: 16px; }
  .price-card.featured { transform: none; }
  .price-card .price-tag b { font-size: 1.9rem; }
  .price-list li { font-size: 0.86rem; margin-bottom: 10px; }
  .pricing-disclaimer { padding: 14px 16px; font-size: 0.82rem; border-radius: 14px; }

  .page-hero { padding: 40px 0 44px; }
  .breadcrumb { font-size: 0.78rem; margin-bottom: 12px; }

  .service-detail { padding: 40px 0; gap: 22px; }
  .service-visual { height: 180px; border-radius: 16px; }
  .service-copy ul.check-list li { font-size: 0.86rem; margin-bottom: 9px; }

  .rating-summary { padding: 22px 20px; border-radius: 16px; margin-bottom: 34px; }
  .rating-big b { font-size: 2.1rem; }
  .platform-item b { font-size: 1rem; }
  .platform-item span { font-size: 0.76rem; }
  .rating-platforms { gap: 18px; }

  .form-card { padding: 20px; border-radius: 16px; }
  .field label { font-size: 0.8rem; margin-bottom: 6px; }
  .field input, .field select, .field textarea { padding: 11px 13px; font-size: 0.9rem; }
  .form-note { font-size: 0.76rem; }
  .info-card { padding: 18px; gap: 12px; border-radius: 16px; margin-bottom: 14px; }
  .info-card h4 { font-size: 0.92rem; }
  .info-card p { font-size: 0.85rem; }
  .map-wrap { height: 200px; }

  .call-fab { width: 50px; height: 50px; bottom: 16px; right: 16px; }
  .call-fab svg { width: 20px; height: 20px; }
}

@media (max-width: 400px) {
  h1 { font-size: 1.6rem; }
  h2 { font-size: 1.3rem; }
  .mock-card { width: 220px; }
  .hero-visual { max-height: 200px; }
  .quad-card img { height: 54px; }
  .quad-label { font-size: 0.62rem; min-height: 28px; padding: 5px 8px; }
}

/* Mobile nav drawer */
.mobile-drawer {
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: 1001;
  padding: 26px 24px;
  transform: translateX(100%);
  transition: transform .35s ease;
  overflow-y: auto;
}
.mobile-drawer.open { transform: translateX(0); }
.mobile-drawer .drawer-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 40px; }
.mobile-drawer nav a {
  display: block;
  font-size: 1.4rem;
  font-weight: 700;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.mobile-drawer .drawer-cta { margin-top: 30px; display: flex; flex-direction: column; gap: 14px; }
body.no-scroll { overflow: hidden; }

/* ---------- Enquiry popup ---------- */
.enquiry-overlay {
  position: fixed;
  inset: 0;
  background: rgba(23, 22, 28, 0.55);
  backdrop-filter: blur(3px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
}
.enquiry-overlay.open { opacity: 1; pointer-events: auto; }
.enquiry-modal {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  width: 100%;
  max-width: 420px;
  padding: 36px 32px 32px;
  transform: translateY(16px) scale(.97);
  transition: transform .3s ease;
}
.enquiry-overlay.open .enquiry-modal { transform: translateY(0) scale(1); }
.enquiry-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  background: var(--bg-soft);
  color: var(--ink-secondary);
  font-size: 1.3rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s ease;
}
.enquiry-close:hover { background: var(--lavender-soft); color: var(--primary); }
.enquiry-eyebrow {
  display: inline-block;
  background: var(--lavender-soft);
  color: var(--primary-dark);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: .02em;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 14px;
}
.enquiry-modal h3 { font-size: 1.5rem; margin-bottom: 8px; }
.enquiry-modal > p { font-size: 0.92rem; color: var(--ink-secondary); margin-bottom: 22px; }
.enquiry-modal form { display: flex; flex-direction: column; gap: 12px; }
.enquiry-modal input,
.enquiry-modal select {
  width: 100%;
  padding: 13px 16px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  font-size: 0.94rem;
  font-family: inherit;
  color: var(--ink);
  background: var(--white);
}
.enquiry-modal input:focus,
.enquiry-modal select:focus { outline: none; border-color: var(--primary); }
.enquiry-modal .enquiry-submit { margin-top: 6px; width: 100%; justify-content: center; }
.enquiry-success {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  padding: 20px 0 6px;
}
.enquiry-success.show { display: flex; }
.enquiry-success svg { width: 46px; height: 46px; color: #1EA672; }
.enquiry-success p { font-weight: 700; color: var(--ink); }

@media (max-width: 480px) {
  .enquiry-modal { padding: 30px 22px 26px; max-width: 100%; }
  .enquiry-modal h3 { font-size: 1.28rem; }
}

/* ---------- Trust badges strip ---------- */
.trust-badges {
  background: var(--bg-soft);
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
}
.trust-badges .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 34px;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--ink);
}
.trust-badge svg { width: 22px; height: 22px; color: var(--primary); flex-shrink: 0; }

@media (max-width: 640px) {
  .trust-badges { padding: 20px 0; }
  .trust-badges .container { gap: 18px 22px; }
  .trust-badge { font-size: 0.76rem; }
  .trust-badge svg { width: 18px; height: 18px; }
}

/* ---------- Trust badges strip ---------- */
.trust-badges {
  background: var(--bg-soft);
  padding: 26px 0;
  border-bottom: 1px solid var(--border);
}
.trust-badges .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 34px;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--ink);
}
.trust-badge svg { width: 20px; height: 20px; color: var(--primary); flex-shrink: 0; }

@media (max-width: 640px) {
  .trust-badges { padding: 18px 0; }
  .trust-badges .container { gap: 16px 22px; }
  .trust-badge { font-size: 0.76rem; }
  .trust-badge svg { width: 17px; height: 17px; }
}