/* ==========================================================================
   ZM Mobile Valet — design system
   Palette drawn from the logo: steel blue on deep charcoal with silver text.
   ========================================================================== */
:root {
  --bg: #0b0e13;
  --bg-alt: #10151d;
  --surface: #151b25;
  --surface-2: #1b2330;
  --line: rgba(255, 255, 255, 0.09);
  --text: #eef2f7;
  --muted: #a7b4c4;
  --accent: #6fabd4;
  --accent-strong: #4a89b8;
  --accent-deep: #3e6e8e;
  --whatsapp: #25d366;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
  --font-display: "Sora", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-body: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
picture { display: contents; }
a { color: inherit; text-decoration: none; }
a, button, input, textarea, select { touch-action: manipulation; }
[id] { scroll-margin-top: 84px; }

:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}
.btn:focus-visible, .socials a:focus-visible { outline-offset: 2px; }

.container { width: min(1140px, 92%); margin-inline: auto; }
.center { text-align: center; margin-top: 2.2rem; }

h1, h2, h3 { font-family: var(--font-display); line-height: 1.15; letter-spacing: -0.015em; }
h1 { font-size: clamp(2rem, 4.6vw, 3.4rem); font-weight: 700; }
h2 { font-size: clamp(1.55rem, 3vw, 2.3rem); font-weight: 700; }
h3 { font-size: 1.15rem; font-weight: 600; }

.kicker {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.hero-kicker svg, .kicker svg { width: 18px; height: 18px; }
.lede { color: var(--muted); font-size: 1.08rem; max-width: 62ch; }
.section-head .lede { margin-inline: auto; }

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 200;
  background: var(--accent); color: #08111a; padding: 0.6rem 1rem; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.55rem;
  font-family: var(--font-display);
  font-weight: 600; font-size: 0.95rem;
  padding: 0.78rem 1.5rem; border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer; transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, border-color 0.15s ease;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; flex: none; }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0) scale(0.97); transition-duration: 80ms; }
.btn-primary {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-strong) 100%);
  color: #07121c;
  box-shadow: 0 10px 28px rgba(111, 171, 212, 0.28);
}
.btn-primary:hover { box-shadow: 0 14px 34px rgba(111, 171, 212, 0.4); }
.btn-ghost { border-color: var(--line); color: var(--text); background: rgba(255, 255, 255, 0.03); }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }
.btn-glass {
  background: rgba(255, 255, 255, 0.12); color: #fff;
  border-color: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
}
.btn-glass:hover { background: rgba(255, 255, 255, 0.2); }
.btn-whatsapp { background: rgba(37, 211, 102, 0.14); color: #7ce9a8; border-color: rgba(37, 211, 102, 0.35); }
.btn-whatsapp:hover { background: rgba(37, 211, 102, 0.24); }
.btn-lg { padding: 0.95rem 1.9rem; font-size: 1.02rem; }
.btn-sm { padding: 0.55rem 1.15rem; font-size: 0.88rem; }
.btn-block { width: 100%; }

.text-link {
  display: inline-flex; align-items: center; gap: 0.4rem;
  color: var(--accent); font-weight: 700; font-size: 0.92rem;
}
.text-link svg { width: 16px; height: 16px; transition: transform 0.15s ease; }
a:hover .text-link svg, .text-link:hover svg { transform: translateX(4px); }

/* --------------------------------------------------------------------------
   Header
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(11, 14, 19, 0.82);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; gap: 1.4rem; padding: 0.7rem 0; }
.brand { display: inline-flex; align-items: center; gap: 0.65rem; }
.brand img { width: 52px; height: 52px; object-fit: contain; }
.brand-name { font-family: var(--font-display); font-weight: 700; font-size: 1.06rem; letter-spacing: 0.01em; }
.brand-name em { font-style: normal; color: var(--accent); }

.site-nav { display: flex; gap: 1.6rem; margin-inline: auto; }
.site-nav a {
  font-weight: 600; font-size: 0.95rem; color: var(--muted);
  padding: 0.4rem 0; position: relative;
}
.site-nav a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: 0;
  height: 2px; background: var(--accent); transition: right 0.2s ease;
}
.site-nav a:hover, .site-nav a.active { color: var(--text); }
.site-nav a:hover::after, .site-nav a.active::after { right: 0; }

.header-actions { display: flex; align-items: center; gap: 0.9rem; }
.header-phone { display: inline-flex; align-items: center; gap: 0.5rem; font-weight: 700; font-size: 0.95rem; color: var(--text); }
.header-phone svg { width: 17px; height: 17px; color: var(--accent); }
.header-phone:hover { color: var(--accent); }

.nav-toggle { display: none; background: none; border: 0; width: 42px; height: 42px; cursor: pointer; flex-direction: column; justify-content: center; align-items: center; gap: 5px; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: transform 0.2s ease, opacity 0.2s ease; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */
.hero { position: relative; min-height: min(88vh, 780px); min-height: min(88dvh, 780px); display: flex; align-items: center; overflow: hidden; }
.hero-bg {
  position: absolute; inset: 0;
  background: url("../images/hero-beading.jpg") center / cover no-repeat;
  background-image: image-set(url("../images/hero-beading.webp") type("image/webp"),
                              url("../images/hero-beading.jpg") type("image/jpeg"));
  transform: scale(1.02);
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(11, 14, 19, 0.55) 0%, rgba(11, 14, 19, 0.35) 45%, var(--bg) 100%),
    linear-gradient(100deg, rgba(11, 14, 19, 0.9) 0%, rgba(11, 14, 19, 0.55) 45%, rgba(11, 14, 19, 0.15) 75%);
}
.hero-inner { position: relative; z-index: 1; padding: 7rem 0 5.5rem; max-width: 800px; }
.hero-kicker {
  display: inline-flex; align-items: center; gap: 0.55rem;
  font-weight: 700; font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.18em;
  color: var(--accent);
  background: rgba(111, 171, 212, 0.12);
  border: 1px solid rgba(111, 171, 212, 0.3);
  padding: 0.45rem 1rem; border-radius: 999px; margin-bottom: 1.4rem;
}
.hero h1 { margin-bottom: 1.1rem; text-shadow: 0 4px 30px rgba(0, 0, 0, 0.55); }
.hero .accent { color: var(--accent); }
.hero-sub { font-size: 1.15rem; color: #cfdae6; max-width: 54ch; margin-bottom: 1.9rem; text-shadow: 0 2px 14px rgba(0,0,0,.5); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-bottom: 2rem; }
.hero-trust { list-style: none; display: flex; flex-wrap: wrap; gap: 1.4rem; color: #d6e0ea; font-weight: 600; font-size: 0.95rem; }
.hero-trust li { display: inline-flex; align-items: center; gap: 0.5rem; }
.hero-trust svg { width: 16px; height: 16px; color: var(--accent); }

/* --------------------------------------------------------------------------
   Sections
   -------------------------------------------------------------------------- */
.section { padding: 5rem 0; }
.section-alt { background: var(--bg-alt); border-block: 1px solid var(--line); }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 3rem; }
.section-head .kicker { justify-content: center; }
.section-head h2 { margin-bottom: 0.9rem; }

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

/* Feature cards (services overview) */
.feature-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 2rem 1.7rem; display: flex; flex-direction: column; gap: 0.9rem;
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}
.feature-card:hover { transform: translateY(-5px); border-color: rgba(111, 171, 212, 0.45); box-shadow: var(--shadow); }
.feature-card p { color: var(--muted); font-size: 0.97rem; flex: 1; }
.feature-card h3 { font-size: 1.3rem; }

/* Steps (how it works) */
.step-card {
  position: relative; background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 2.1rem 1.7rem 1.9rem; overflow: hidden;
}
.step-card p { color: var(--muted); font-size: 0.97rem; }
.step-card h3 { margin-bottom: 0.5rem; }
.step-num {
  position: absolute; top: 0.6rem; right: 1.1rem;
  font-family: var(--font-display); font-size: 4.4rem; font-weight: 700;
  color: rgba(111, 171, 212, 0.12); line-height: 1;
}
.step-card h3 { font-size: 1.25rem; margin-top: 0.4rem; }

/* Split sections */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 3.4rem; align-items: center; }
.split-media { position: relative; }
.split-media img {
  border-radius: var(--radius); aspect-ratio: 4 / 3.4; object-fit: cover; width: 100%;
  box-shadow: var(--shadow); border: 1px solid var(--line);
}
.badge-float {
  position: absolute; left: 1rem; bottom: 1rem;
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(11, 14, 19, 0.82); backdrop-filter: blur(8px);
  border: 1px solid var(--line); border-radius: 999px;
  padding: 0.5rem 1rem; font-size: 0.85rem; font-weight: 600;
}
.badge-float svg { width: 16px; height: 16px; color: var(--accent); }
.split-copy h2 { margin-bottom: 1rem; }
.split-copy .lede { margin-bottom: 1.6rem; }
.split-copy .btn { margin-top: 1.8rem; }

.ticks { list-style: none; display: grid; gap: 1.05rem; }
.ticks li { display: flex; gap: 0.85rem; align-items: flex-start; }
.ticks li > svg { width: 21px; height: 21px; color: var(--accent); flex: none; margin-top: 0.2rem; }
.ticks strong { display: block; font-family: var(--font-display); font-size: 1.02rem; }
.ticks span { color: var(--muted); font-size: 0.95rem; }

/* Price cards on home */
.price-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}
.price-card:hover { transform: translateY(-5px); border-color: rgba(111, 171, 212, 0.45); box-shadow: var(--shadow); }
.price-card picture img { aspect-ratio: 16 / 10; object-fit: cover; width: 100%; height: auto; }
.price-card-body { padding: 1.4rem 1.5rem 1.6rem; display: flex; flex-direction: column; gap: 0.7rem; flex: 1; }
.price-card-top { display: flex; justify-content: space-between; align-items: baseline; gap: 0.8rem; }
.price-card p { color: var(--muted); font-size: 0.94rem; flex: 1; }
.from { color: var(--muted); font-size: 0.85rem; white-space: nowrap; }
.from strong { color: var(--accent); font-family: var(--font-display); font-size: 1.25rem; margin-left: 0.15rem; }

/* Chips */
.chips { display: flex; flex-wrap: wrap; gap: 0.55rem; margin: 1.4rem 0; }
.chip {
  background: var(--surface-2); border: 1px solid var(--line); border-radius: 999px;
  padding: 0.42rem 0.95rem; font-size: 0.88rem; font-weight: 600; color: var(--text);
  display: inline-flex; align-items: center; gap: 0.4rem;
}
.chip svg { width: 14px; height: 14px; color: var(--accent); }
.chip-more { color: var(--accent); border-color: rgba(111, 171, 212, 0.4); }
.chip-lg { padding: 0.55rem 1.1rem; font-size: 0.95rem; }

/* --------------------------------------------------------------------------
   CTA band
   -------------------------------------------------------------------------- */
.cta-band {
  background:
    radial-gradient(900px 380px at 12% -20%, rgba(111, 171, 212, 0.22), transparent 60%),
    linear-gradient(180deg, var(--bg-alt), var(--bg));
  border-top: 1px solid var(--line);
  padding: 4.2rem 0;
}
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.cta-inner h2 { margin-bottom: 0.4rem; }
.cta-inner p { color: var(--muted); }
.cta-actions { display: flex; gap: 0.9rem; flex-wrap: wrap; }

/* --------------------------------------------------------------------------
   Page hero (inner pages)
   -------------------------------------------------------------------------- */
.page-hero {
  padding: 4.6rem 0 3.4rem;
  background:
    radial-gradient(800px 320px at 85% -30%, rgba(111, 171, 212, 0.16), transparent 60%),
    linear-gradient(180deg, var(--bg-alt), var(--bg));
  border-bottom: 1px solid var(--line);
}
.page-hero h1 { margin-bottom: 0.9rem; }
.crumb { display: inline-flex; align-items: center; gap: 0.45rem; color: var(--muted); font-weight: 600; font-size: 0.9rem; margin-bottom: 1.6rem; }
.crumb svg { width: 15px; height: 15px; transform: rotate(180deg); }
.crumb:hover { color: var(--accent); }

/* --------------------------------------------------------------------------
   Packages page
   -------------------------------------------------------------------------- */
.packages-list { display: grid; gap: 1.6rem; }
.package-card {
  display: grid; grid-template-columns: 380px 1fr;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; transition: border-color 0.18s ease, box-shadow 0.18s ease;
}
.package-card:hover { border-color: rgba(111, 171, 212, 0.4); box-shadow: var(--shadow); }
.package-media { position: relative; min-height: 260px; }
.package-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.package-tag {
  position: absolute; top: 1rem; left: 1rem;
  background: rgba(11, 14, 19, 0.85); backdrop-filter: blur(6px);
  color: var(--accent); border: 1px solid rgba(111, 171, 212, 0.4);
  font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em;
  padding: 0.35rem 0.85rem; border-radius: 999px;
}
.package-body { padding: 1.8rem 2rem; display: flex; flex-direction: column; gap: 1rem; }
.package-top { display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; flex-wrap: wrap; }
.package-body > p { color: var(--muted); }
.package-actions { display: flex; gap: 0.8rem; flex-wrap: wrap; margin-top: auto; }

.price-table { display: grid; gap: 0.45rem; }
.price-row {
  display: flex; justify-content: space-between; align-items: center;
  background: var(--surface-2); border: 1px solid var(--line);
  padding: 0.6rem 1rem; border-radius: var(--radius-sm);
  font-size: 0.95rem;
}
.price-row strong, .from strong { font-variant-numeric: tabular-nums; }
.price-row strong { font-family: var(--font-display); color: var(--accent); font-size: 1.05rem; }

.size-note { margin-top: 2.6rem; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.6rem 2rem; }
.size-note h3 { margin-bottom: 0.4rem; }
.size-note p { color: var(--muted); }
.size-note a { color: var(--accent); font-weight: 700; }

/* --------------------------------------------------------------------------
   Service detail pages
   -------------------------------------------------------------------------- */
.service-layout { display: grid; grid-template-columns: 1.6fr 1fr; gap: 2.4rem; align-items: start; }
.service-photo img {
  border-radius: var(--radius); border: 1px solid var(--line);
  aspect-ratio: 16 / 10; object-fit: cover; width: 100%;
  box-shadow: var(--shadow); margin-bottom: 1.8rem;
}
.eyebrow { text-transform: uppercase; letter-spacing: 0.14em; font-size: 0.95rem; color: var(--accent); margin-bottom: 0.7rem; }
.service-main > p { color: var(--muted); max-width: 68ch; }

.pricing-card {
  position: sticky; top: 92px;
  background: var(--surface); border: 1px solid rgba(111, 171, 212, 0.3);
  border-radius: var(--radius); padding: 1.7rem 1.6rem;
  display: grid; gap: 0.95rem;
  box-shadow: var(--shadow);
}
.pricing-card h2 { font-size: 1.3rem; }
.pricing-card .note { color: var(--accent); font-size: 0.88rem; font-weight: 600; }
.mini-note { display: flex; align-items: center; gap: 0.5rem; color: var(--muted); font-size: 0.88rem; }
.mini-note svg { width: 16px; height: 16px; color: var(--accent); }
.call-line { display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem; color: var(--muted); font-weight: 600; font-size: 0.92rem; }
.call-line svg { width: 16px; height: 16px; }
.call-line:hover { color: var(--accent); }

.process { list-style: none; max-width: 780px; margin-inline: auto; display: grid; gap: 0; }
.process-step { display: grid; grid-template-columns: 64px 1fr; gap: 1.4rem; position: relative; padding-bottom: 2.4rem; }
.process-step:not(:last-child)::before {
  content: ""; position: absolute; left: 31px; top: 64px; bottom: 0;
  width: 2px; background: linear-gradient(180deg, rgba(111, 171, 212, 0.5), rgba(111, 171, 212, 0.08));
}
.process-num {
  width: 64px; height: 64px; border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 700; font-size: 1.5rem;
  color: var(--accent);
  background: rgba(111, 171, 212, 0.1);
  border: 1px solid rgba(111, 171, 212, 0.4);
}
.process-body h3 { text-transform: uppercase; letter-spacing: 0.06em; font-size: 1.02rem; margin: 0.6rem 0 0.55rem; }
.process-body p { color: var(--muted); font-size: 0.98rem; max-width: 64ch; }

/* --------------------------------------------------------------------------
   Areas page
   -------------------------------------------------------------------------- */
.areas-block { margin-bottom: 2.4rem; }
.areas-block h2 { font-size: 1.35rem; margin-bottom: 0.9rem; }
.areas-note { color: var(--muted); margin-bottom: 2.4rem; }
.areas-note a { color: var(--accent); font-weight: 700; }
.map-wrap {
  border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line);
  box-shadow: var(--shadow); aspect-ratio: 16 / 8; background: var(--surface);
}
.map-wrap iframe { width: 100%; height: 100%; border: 0; display: block; }

/* --------------------------------------------------------------------------
   Contact page
   -------------------------------------------------------------------------- */
.contact-layout { display: grid; grid-template-columns: 1.5fr 1fr; gap: 2.6rem; align-items: start; }
.contact-form {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 2rem; display: grid; gap: 1.2rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.contact-form label { display: grid; gap: 0.45rem; font-weight: 600; font-size: 0.92rem; }
.contact-form input, .contact-form textarea {
  background: var(--bg); color: var(--text);
  border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 0.8rem 1rem; font: inherit; font-size: 0.98rem;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.contact-form input:focus, .contact-form textarea:focus {
  outline: none; border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(111, 171, 212, 0.18);
}
.contact-form textarea { resize: vertical; }
.form-note { color: var(--muted); font-size: 0.88rem; }
.req { color: var(--accent); font-weight: 700; }
.form-success[hidden] { display: none; }
.form-success {
  display: flex; align-items: center; gap: 0.6rem;
  background: rgba(37, 211, 102, 0.12); color: #8fe9b5;
  border: 1px solid rgba(37, 211, 102, 0.4); border-radius: var(--radius-sm);
  padding: 0.85rem 1.1rem; font-weight: 600; font-size: 0.95rem;
}
.form-success svg { width: 18px; height: 18px; flex: none; }
.btn[disabled] { opacity: 0.55; cursor: progress; pointer-events: none; }

.contact-cards { display: grid; gap: 0.9rem; }
.contact-card {
  display: flex; align-items: center; gap: 1rem;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.15rem 1.3rem;
  transition: border-color 0.15s ease, transform 0.15s ease;
}
.contact-card:hover { border-color: rgba(111, 171, 212, 0.45); transform: translateY(-2px); }
.contact-card > svg { width: 24px; height: 24px; color: var(--accent); flex: none; }
.contact-card strong { display: block; font-family: var(--font-display); }
.contact-card span { color: var(--muted); font-size: 0.9rem; }

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.site-footer { background: #080b0f; border-top: 1px solid var(--line); padding: 4rem 0 1.6rem; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 2.4rem; margin-bottom: 2.8rem; }
.footer-brand p { color: var(--muted); font-size: 0.95rem; margin: 1.1rem 0 1.3rem; max-width: 34ch; }
.footer-col h3 { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.16em; color: var(--muted); margin-bottom: 1.1rem; }
.footer-col a { display: flex; align-items: center; gap: 0.55rem; color: var(--text); padding: 0.32rem 0; font-size: 0.96rem; }
.footer-col a:hover { color: var(--accent); }
.footer-col a svg { width: 16px; height: 16px; color: var(--accent); }
.socials { display: flex; gap: 0.7rem; }
.socials a {
  width: 44px; height: 44px; border-radius: 12px;
  border: 1px solid var(--line); background: var(--surface);
  display: grid; place-items: center; color: var(--muted);
  transition: color 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}
.socials a:hover { color: var(--accent); border-color: rgba(111, 171, 212, 0.5); transform: translateY(-2px); }
.socials svg { width: 20px; height: 20px; }
.socials-row { margin-top: 0.4rem; }
.footer-legal { border-top: 1px solid var(--line); padding-top: 1.5rem; color: var(--muted); font-size: 0.88rem; }

/* Mobile sticky CTA */
.mobile-cta {
  display: none;
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  background: rgba(11, 14, 19, 0.92); backdrop-filter: blur(12px);
  border-top: 1px solid var(--line);
  padding: 0.65rem 0.8rem calc(0.65rem + env(safe-area-inset-bottom));
  gap: 0.6rem;
}
.mobile-cta { gap: 0.45rem; }
.mobile-cta .btn { flex: 1; min-width: 0; padding-inline: 0.3rem; font-size: 0.78rem; gap: 0.35rem; }
.mobile-cta .btn svg { width: 14px; height: 14px; }

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 1000px) {
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .package-card { grid-template-columns: 300px 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .header-phone span { display: none; }
}

@media (max-width: 780px) {
  .section { padding: 3.4rem 0; }
  .grid-3 { grid-template-columns: 1fr; }
  .split, .contact-layout, .service-layout { grid-template-columns: 1fr; }
  .split-rev .split-copy { order: 1; }
  .split-rev .split-media { order: 2; }
  .package-card { grid-template-columns: 1fr; }
  .package-media { min-height: 220px; }
  .form-row { grid-template-columns: 1fr; }
  .pricing-card { position: static; }
  .cta-inner { flex-direction: column; align-items: flex-start; }

  .site-nav {
    position: fixed; inset: 63px 0 auto 0; z-index: 99;
    flex-direction: column; gap: 0;
    background: #0b0e13;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
    padding: 0.6rem 4%;
    transform: translateY(-130%); transition: transform 0.25s ease;
  }
  .site-nav.open { transform: translateY(0); }
  .site-nav a { padding: 0.9rem 0.4rem; border-bottom: 1px solid var(--line); font-size: 1.05rem; }
  .site-nav a:last-child { border-bottom: 0; }
  .site-nav a::after { display: none; }
  .nav-toggle { display: flex; }
  .header-actions .btn { display: none; }
  .header-phone { width: 42px; height: 42px; border: 1px solid var(--line); border-radius: 12px; justify-content: center; }

  .hero { min-height: 78vh; }
  .hero-inner { padding: 5rem 0 4rem; }
  .hero-trust { gap: 0.8rem 1.2rem; }
  .br-desktop { display: none; }

  .mobile-cta { display: flex; }
  body { padding-bottom: 74px; }
  .process-step { grid-template-columns: 48px 1fr; gap: 1rem; }
  .process-num { width: 48px; height: 48px; font-size: 1.15rem; }
  .process-step:not(:last-child)::before { left: 23px; top: 48px; }
}

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation: none !important; }
  html { scroll-behavior: auto; }
}
