/* ============================================================
   Black Mirror Detailing — design tokens
   ============================================================ */
:root {
  --void: #0a0b0e;
  --surface: #15171c;
  --surface-2: #1b1e25;
  --line: #2a2e37;
  --line-soft: #21242c;

  --chrome-1: #a5875a;
  --chrome-2: #f9f1e2;
  --reflect: #c8a86b;
  --reflect-soft: #d9bd86;
  --reflect-dim: #4a3c26;

  --text: #eef1f5;
  --text-muted: #99a1ad;
  --text-faint: #626a76;

  --font-display: "Unbounded", system-ui, sans-serif;
  --font-body: "Manrope", system-ui, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, monospace;

  --container: 1180px;
  --ease: cubic-bezier(.16,.84,.44,1);
}

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

body {
  margin: 0;
  background: var(--void);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3 { font-family: var(--font-display); font-weight: 600; line-height: 1.12; margin: 0; letter-spacing: -0.01em; overflow-wrap: break-word; }
p { margin: 0; overflow-wrap: break-word; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
img { max-width: 100%; display: block; }

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 200;
  background: var(--reflect); color: var(--void); padding: 12px 18px; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

:focus-visible {
  outline: 2px solid var(--reflect-soft);
  outline-offset: 3px;
  border-radius: 4px;
}

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

.eyebrow {
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--reflect-soft);
  margin-bottom: 16px;
  display: block;
}

/* film grain overlay for texture */
.grain {
  position: fixed; inset: 0; z-index: 999; pointer-events: none;
  opacity: 0.035; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-body); font-weight: 700; font-size: 14.5px;
  padding: 13px 22px; border-radius: 999px;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease), border-color .25s var(--ease);
  white-space: nowrap;
}
.btn-lg { padding: 16px 28px; font-size: 15.5px; }

.btn-whatsapp {
  background: linear-gradient(135deg, var(--chrome-2), var(--reflect) 55%, var(--chrome-1));
  color: var(--void);
  box-shadow: 0 8px 24px -8px rgba(200, 168, 107, .45);
}
.btn-whatsapp:hover { transform: translateY(-2px); box-shadow: 0 12px 30px -8px rgba(200, 168, 107, .6); }

.btn-ghost {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line);
  color: var(--text);
}
.btn-ghost:hover { border-color: var(--reflect-soft); background: rgba(200,168,107,0.08); transform: translateY(-2px); }

/* ============================================================
   Nav
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 20px 0;
  transition: padding .35s var(--ease), background .35s var(--ease), border-color .35s var(--ease), backdrop-filter .35s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  padding: 12px 0;
  background: rgba(10,11,14,0.72);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border-bottom: 1px solid var(--line-soft);
}
.nav-inner {
  position: relative; z-index: 1;
  max-width: var(--container); margin: 0 auto; padding: 0 32px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}

.logo { display: flex; align-items: center; gap: 10px; color: var(--text); }
.logo-mark { color: var(--chrome-1); display: flex; flex-shrink: 0; }
.logo-mark svg { display: block; }
.logo-text { display: flex; flex-direction: column; line-height: 1.05; font-family: var(--font-display); }
.logo-line1 { font-size: 13.5px; font-weight: 700; letter-spacing: 0.04em; }
.logo-line2 { font-size: 9.5px; font-weight: 500; letter-spacing: 0.32em; color: var(--reflect-soft); margin-top: 3px; }

.logo-img { height: 92px; width: auto; display: block; transition: height .35s var(--ease); }
.nav.scrolled .logo-img { height: 70px; }

@media (min-width: 761px) {
  .logo-img { height: 180px; }
  .nav.scrolled .logo-img { height: 128px; }
}

.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-links a {
  font-size: 14px; font-weight: 600; color: var(--text-muted);
  position: relative; padding: 4px 0;
  transition: color .2s;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; width: 0; height: 1px;
  background: var(--reflect-soft); transition: width .25s var(--ease);
}
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { width: 100%; }

.nav-cta { flex-shrink: 0; }

.nav-toggle {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 40px; height: 40px; background: none; border: 1px solid var(--line); border-radius: 10px;
  cursor: pointer;
}
.nav-toggle span { display: block; height: 1.5px; width: 18px; margin: 0 auto; background: var(--text); transition: transform .3s var(--ease), opacity .3s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.nav-backdrop {
  position: fixed; inset: 0; z-index: 90;
  background: rgba(10,11,14,0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .4s var(--ease);
}
.nav-backdrop.open { opacity: 1; }

.mobile-menu {
  display: none;
  flex-direction: column; gap: 4px;
  margin: 0; padding: 0 32px;
  max-height: 0; overflow: hidden;
  background: rgba(10,11,14,0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: max-height .4s var(--ease), padding .4s var(--ease);
}
.mobile-menu.open { max-height: 400px; padding: 16px 32px 24px; }
.mobile-menu a {
  padding: 14px 4px; font-size: 15px; font-weight: 600; color: var(--text-muted);
  border-bottom: 1px solid var(--line-soft);
}

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex; align-items: flex-end;
  overflow: hidden;
}
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-media img {
  width: 100%; height: 100%; object-fit: cover; object-position: 60% 55%;
  transform: scale(1.06);
}
.hero-scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(0deg, rgba(6,7,9,0.96) 0%, rgba(6,7,9,0.55) 42%, rgba(6,7,9,0.25) 62%, rgba(6,7,9,0.55) 100%),
    linear-gradient(90deg, rgba(6,7,9,0.65) 0%, rgba(6,7,9,0.05) 45%);
}
.hero-vignette {
  position: absolute; inset: 0;
  box-shadow: inset 0 0 180px 40px rgba(0,0,0,0.75);
}

.hero-content {
  position: relative; z-index: 2;
  max-width: var(--container); margin: 0 auto;
  padding: 0 32px;
  padding-top: 260px;
  padding-bottom: clamp(180px, 32vh, 340px);
  width: 100%;
}

.hero-title {
  font-size: clamp(2.6rem, 6.4vw, 5.4rem);
  color: var(--chrome-2);
  margin-bottom: 22px;
  max-width: 14ch;
}

/* signature: mirror-shine sweep on key word */
.shine-text {
  display: inline-block;
  background: linear-gradient(100deg, var(--chrome-1) 20%, var(--chrome-2) 40%, var(--reflect) 50%, var(--chrome-2) 60%, var(--chrome-1) 80%);
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: shine-sweep 5s ease-in-out infinite;
}
@keyframes shine-sweep {
  0%   { background-position: 100% 0; }
  50%  { background-position: 0% 0; }
  100% { background-position: 100% 0; }
}

.hero-sub {
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  color: var(--text-muted);
  max-width: 46ch;
  margin-bottom: 40px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; }

/* ============================================================
   Reveal on scroll
   ============================================================ */
.reveal {
  opacity: 0; transform: translateY(22px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal.in-view { opacity: 1; transform: translateY(0); }
.reveal:nth-child(2) { transition-delay: .05s; }
.reveal:nth-child(3) { transition-delay: .1s; }
.reveal:nth-child(4) { transition-delay: .15s; }

/* ============================================================
   Sections (generic)
   ============================================================ */
.section { padding: 130px 0; position: relative; }
.section-title {
  font-size: clamp(1.9rem, 3.6vw, 2.9rem);
  color: var(--chrome-2);
  max-width: 16ch;
  margin-bottom: 20px;
}
.section-lead {
  font-size: 1.05rem; color: var(--text-muted); max-width: 58ch; margin-bottom: 20px;
}

/* ============================================================
   Services
   ============================================================ */
.services { background: var(--void); }
.service-grid {
  margin-top: 56px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
}
.service-col {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.service-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  transition: border-color .35s var(--ease), background .35s var(--ease);
}
.service-card::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(115deg, transparent 30%, rgba(200,168,107,0.12) 48%, transparent 66%);
  background-size: 260% 260%;
  background-position: 120% 0%;
  opacity: 0;
  transition: opacity .4s;
  pointer-events: none;
}
.service-card:hover {
  border-color: var(--reflect-dim);
  background: var(--surface-2);
}
.service-card:hover::before {
  opacity: 1;
  animation: card-sweep 1.1s var(--ease);
}
@keyframes card-sweep {
  from { background-position: 120% 0%; }
  to   { background-position: -20% 0%; }
}

.service-card--feature { border-color: var(--reflect-dim); background: linear-gradient(160deg, var(--surface-2), var(--surface)); }

.service-header {
  position: relative; z-index: 1;
  display: flex; align-items: center; gap: 18px;
  width: 100%;
  padding: 22px 28px;
  background: none; border: none;
  font-family: inherit; text-align: left; cursor: pointer;
}

.service-icon {
  flex-shrink: 0;
  width: 52px; height: 52px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  color: var(--reflect-soft);
  background: rgba(200,168,107,0.08);
  border: 1px solid var(--reflect-dim);
}
.service-icon svg { width: 26px; height: 26px; }

.service-header h3 { flex: 1; font-size: 1.1rem; color: var(--text); margin: 0; hyphens: auto; overflow-wrap: normal; }

.service-chevron {
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  width: 28px; height: 28px; border-radius: 50%;
  color: var(--text-faint);
  transition: transform .35s var(--ease), color .35s var(--ease);
}
.service-header[aria-expanded="true"] .service-chevron { transform: rotate(180deg); color: var(--reflect-soft); }

.service-body { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.service-body-inner { padding: 0 28px 28px; }
.service-body-inner p { color: var(--text-muted); font-size: 0.94rem; margin: 0 0 22px; }

.service-foot { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.price-tag {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.04em;
  color: var(--reflect-soft); border: 1px solid var(--line); border-radius: 999px; padding: 5px 12px;
}
.price-tag--multi {
  display: flex; flex-direction: column; align-items: flex-start; gap: 3px;
  border-radius: 12px; padding: 7px 12px;
}
.service-link {
  font-size: 13.5px; font-weight: 700; color: var(--reflect-soft);
  transition: gap .2s;
}
.service-link:hover { color: var(--reflect); }

/* ============================================================
   Before / After sliders
   ============================================================ */
.before-after { background: var(--void); }
.ba-grid {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px 24px;
}
.ba { margin: 0; }
.ba-frame {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--surface);
  cursor: ew-resize;
  user-select: none;
  touch-action: pan-y;
}
.ba-frame:focus-visible { outline-offset: 4px; }

.ba-layer {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
}
.ba-layer img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  pointer-events: none;
  -webkit-user-drag: none;
}
.ba-layer-after {
  background:
    radial-gradient(120% 100% at 80% 0%, rgba(200,168,107,0.16), transparent 55%),
    linear-gradient(155deg, #1d212a 0%, #0d0f13 60%, #06070a 100%);
}
.ba-layer-before {
  background: linear-gradient(155deg, #23262d 0%, #17191e 55%, #101216 100%);
}
.ba-placeholder {
  position: relative; z-index: 0;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--text-faint);
}

.ba-handle {
  position: absolute; top: 0; bottom: 0; left: 50%;
  width: 0; transform: translateX(-50%);
  pointer-events: none;
}
.ba-handle::before {
  content: ""; position: absolute; top: 0; bottom: 0; left: 50%;
  width: 2px; transform: translateX(-50%);
  background: linear-gradient(180deg, transparent, var(--chrome-2) 15%, var(--chrome-2) 85%, transparent);
  box-shadow: 0 0 12px rgba(242,228,196,0.5);
}
.ba-handle-grip {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--chrome-2);
  color: #0a0b0e;
  display: flex; align-items: center; justify-content: center;
  gap: 2px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.45), 0 0 0 5px rgba(242,228,196,0.12);
}

.ba-tag {
  position: absolute; top: 14px;
  font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 6px 12px; border-radius: 999px;
  background: rgba(10,11,14,0.55);
  border: 1px solid rgba(242,228,196,0.18);
  backdrop-filter: blur(6px);
  color: var(--chrome-2);
  pointer-events: none;
}
.ba-tag-before { left: 14px; }
.ba-tag-after { right: 14px; }

.ba figcaption {
  margin-top: 16px;
  font-size: 0.95rem; font-weight: 700; color: var(--text);
  hyphens: auto; overflow-wrap: normal;
}

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

/* ============================================================
   Process
   ============================================================ */
.process { background: var(--surface); border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); }
.process-grid {
  margin-top: 60px;
  display: flex;
  align-items: flex-start;
  gap: 0;
}
.process-step { flex: 1; min-width: 0; }
.process-num {
  font-family: var(--font-mono); font-size: 13px; color: var(--reflect-soft);
  letter-spacing: 0.08em;
  display: block; margin-bottom: 18px;
}
.process-step h3 { font-size: 1.3rem; color: var(--chrome-2); margin-bottom: 12px; }
.process-step p { color: var(--text-muted); max-width: 30ch; }
.process-connector {
  flex-shrink: 0; width: 60px; height: 1px; margin-top: 8px;
  background: linear-gradient(90deg, var(--reflect-dim), var(--line));
  align-self: flex-start;
}

/* ============================================================
   About
   ============================================================ */
.about { background: var(--void); }
.about-grid {
  display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 64px; align-items: center;
}
.about-visual-inner {
  position: relative;
  aspect-ratio: 3072 / 5504;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  background:
    radial-gradient(120% 100% at 20% 0%, rgba(200,168,107,0.14), transparent 55%),
    linear-gradient(160deg, #1b1e25 0%, #0d0f13 62%, #06070a 100%);
}
.about-visual-inner img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: contain; object-position: 50% 50%;
}
.about-shine {
  position: absolute; inset: 0;
  background: linear-gradient(115deg, transparent 40%, rgba(242,228,196,0.16) 50%, transparent 60%);
  background-size: 300% 300%;
  animation: about-sweep 7s ease-in-out infinite;
  pointer-events: none;
}
@keyframes about-sweep {
  0%   { background-position: 100% 0%; }
  50%  { background-position: 0% 100%; }
  100% { background-position: 100% 0%; }
}
.about-visual-inner::after {
  content: "Black Mirror Detailing";
  position: absolute; left: 24px; bottom: 24px;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
  color: #fff;
  text-shadow: 0 1px 6px rgba(0,0,0,0.85), 0 0 2px rgba(0,0,0,0.6);
}

.usp-list { margin-top: 28px; display: flex; flex-direction: column; gap: 16px; }
.usp-list li {
  padding: 18px 22px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  color: var(--text-muted);
  font-size: 0.95rem;
}
.usp-list strong { color: var(--text); font-weight: 700; }

/* ============================================================
   Reviews — infinite marquee
   ============================================================ */
.reviews { background: var(--surface); border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); overflow: hidden; }
.reviews .section-inner { margin-bottom: 56px; }

.reviews-viewport {
  position: relative;
  overflow: hidden;
  cursor: grab;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.reviews-viewport.dragging { cursor: grabbing; }

.reviews-track {
  display: flex;
  gap: 22px;
  width: max-content;
  padding: 4px 0 4px 32px;
  will-change: transform;
}

.review-card {
  flex: 0 0 340px;
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 28px 26px;
  user-select: none;
}
.review-stars { display: flex; gap: 3px; color: var(--reflect-soft); margin-bottom: 16px; }
.review-stars .star-empty { color: var(--line); }
.review-quote { color: var(--text-muted); font-size: 0.96rem; line-height: 1.6; margin-bottom: 22px; }
.review-author { display: flex; flex-direction: column; gap: 2px; }
.review-name { font-weight: 700; font-size: 0.92rem; color: var(--text); }
.review-meta { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.06em; color: var(--reflect-soft); }

@media (max-width: 700px) {
  .review-card { flex-basis: 280px; }
}

/* ============================================================
   Contact
   ============================================================ */
.contact { background: var(--surface); border-top: 1px solid var(--line-soft); }
.contact-grid {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.contact-card {
  display: flex; align-items: center; gap: 18px;
  padding: 26px 26px;
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: 18px;
  transition: border-color .3s var(--ease), transform .3s var(--ease);
}
a.contact-card:hover { transform: translateY(-3px); border-color: var(--reflect-dim); }
.contact-card--main { background: linear-gradient(135deg, rgba(200,168,107,0.14), var(--surface-2)); border-color: rgba(200,168,107,0.35); }
.contact-card-icon {
  flex-shrink: 0; width: 48px; height: 48px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.04); color: var(--reflect-soft);
}
.contact-card--main .contact-card-icon { color: var(--reflect-soft); }
.contact-card h3 { font-size: 1rem; color: var(--text); margin-bottom: 4px; }
.contact-card p { color: var(--text-muted); font-size: 0.92rem; line-height: 1.5; }
.contact-arrow { margin-left: auto; color: var(--text-faint); font-size: 1.2rem; }

/* ============================================================
   Footer
   ============================================================ */
.footer { padding: 56px 0 40px; background: var(--void); }
.footer-inner {
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 24px;
  padding-top: 32px; border-top: 1px solid var(--line-soft);
}
.logo--footer .logo-line1 { color: var(--text); }
.logo--footer .logo-img { height: 80px; }
.footer-links { display: flex; gap: 28px; flex-wrap: wrap; }
.footer-links a { font-size: 13.5px; color: var(--text-muted); }
.footer-links a:hover { color: var(--text); }
.footer-copy { font-size: 12.5px; color: var(--text-faint); font-family: var(--font-mono); }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 980px) {
  .about-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .mobile-menu { display: flex; }
  .section { padding: 88px 0; }
  .service-grid { flex-direction: column; }
  .service-header { padding: 18px 20px; gap: 14px; }
  .service-body-inner { padding: 0 20px 22px; }
  .process-grid { flex-direction: column; gap: 32px; }
  .process-connector { display: none; }
  .hero { align-items: center; }
  .hero-content { padding-top: 165px; padding-bottom: 64px; }
}

@media (max-width: 420px) {
  .section-inner { padding: 0 20px; }
  .nav-inner { padding: 0 20px; }
  .mobile-menu { padding-left: 20px; padding-right: 20px; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn {
    width: 100%;
    justify-content: center;
    white-space: normal;
    text-align: center;
  }
  .service-foot { flex-wrap: wrap; row-gap: 10px; }
  .contact-card { flex-wrap: wrap; }
}
