:root {
  --navy-950: #061725;
  --navy-900: #081c2c;
  --navy-800: #0d2b42;
  --blue-700: #0f5fa8;
  --blue-600: #1674c8;
  --blue-500: #2f95e5;
  --blue-100: #dceefb;
  --blue-50: #eef6fb;
  --orange: #ef6b2e;
  --green: #138a4b;
  --ink: #132333;
  --muted: #5e6b76;
  --line: #dce4ea;
  --surface: #f6f9fb;
  --white: #fff;
  --shadow: 0 18px 50px rgba(6, 23, 37, .13);
  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 28px;
  --wrap: 1180px;
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 70px;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  padding-bottom: calc(76px + env(safe-area-inset-bottom));
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: inherit; }
button, input { font: inherit; }

.wrap {
  width: min(calc(100% - 28px), var(--wrap));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  left: 14px;
  top: 10px;
  padding: 10px 14px;
  color: var(--white);
  background: var(--navy-950);
  border-radius: 8px;
  transform: translateY(-160%);
}

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

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

/* Mobile navigation and global chrome */
.safety-bar {
  color: #dce9f2;
  background: var(--navy-950);
  font-size: 12px;
}

.safety-inner {
  min-height: 44px;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: center;
  gap: 2px 6px;
  padding-block: 7px;
  line-height: 1.35;
  text-align: center;
}

.safety-inner strong { color: #ffb28e; }
.safety-inner a { color: var(--white); font-weight: 800; }

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  background: rgba(255, 255, 255, .96);
  border-bottom: 1px solid rgba(220, 228, 234, .9);
  backdrop-filter: blur(14px);
}

.header-inner {
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.brand { flex: 0 1 174px; min-width: 0; }
.brand img { width: 174px; height: auto; }
.desktop-nav { display: none; }

.header-call {
  flex: 0 0 auto;
  min-width: 54px;
  min-height: 44px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  color: var(--white);
  background: var(--blue-600);
  border-radius: var(--radius-sm);
  text-align: center;
  text-decoration: none;
  box-shadow: 0 8px 22px rgba(22, 116, 200, .2);
}

.header-call span { display: none; }
.header-call strong { font-size: 0; line-height: 1.2; }
.header-call strong::after { content: "Ara"; font-size: 14px; }

.mobile-actions {
  position: fixed;
  z-index: 80;
  left: 0;
  right: 0;
  bottom: 0;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  padding: 9px max(10px, env(safe-area-inset-right)) calc(9px + env(safe-area-inset-bottom)) max(10px, env(safe-area-inset-left));
  background: rgba(6, 23, 37, .97);
  box-shadow: 0 -7px 24px rgba(0,0,0,.2);
}

.mobile-actions a {
  min-height: 49px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-decoration: none;
}

.mobile-actions a:first-child { background: var(--blue-600); border-radius: 9px; }
.mobile-actions a:last-child { color: #b9ebce; }
.mobile-actions strong { font-size: 14px; line-height: 1.2; }
.mobile-actions span { font-size: 10px; opacity: .82; }

/* Shared typography and controls */
.eyebrow, .section-kicker {
  margin: 0 0 12px;
  color: var(--blue-700);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .12em;
  line-height: 1.35;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #83c8f5;
}

.eyebrow span {
  flex: 0 0 auto;
  width: 18px;
  height: 3px;
  background: var(--orange);
  border-radius: 3px;
}

.button {
  width: 100%;
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 16px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease;
}

.button:focus-visible, a:focus-visible, summary:focus-visible, input:focus-visible {
  outline: 3px solid #f3a27b;
  outline-offset: 3px;
}

.button svg { width: 20px; height: 20px; fill: currentColor; }
.button-primary { color: var(--white); background: var(--blue-600); box-shadow: 0 12px 30px rgba(22, 116, 200, .3); }
.button-whatsapp { color: var(--white); background: transparent; border-color: rgba(255, 255, 255, .28); }
.button-outline { margin-top: 12px; color: var(--blue-700); border-color: #b7d8ed; background: var(--white); }
.call-note { margin: 11px 0 0; color: #aebfca; font-size: 12px; }
.section { padding-block: 56px; }

.section-heading, .trust-heading {
  display: grid;
  grid-template-columns: 1fr;
  align-items: start;
  gap: 17px;
  margin-bottom: 28px;
}

.section-heading h2,
.trust-heading h2,
.process-copy h2,
.brands-grid h2,
.faq-grid h2,
.final-cta h2,
.service-intro-copy h2,
.narrow-heading h2,
.evidence-main > h2 {
  margin: 0;
  font-size: clamp(30px, 9vw, 38px);
  letter-spacing: -.042em;
  line-height: 1.08;
}

.section-heading p, .trust-heading > p, .brands-grid > div > p, .faq-grid > div > p, .narrow-heading > p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
}

/* Home hero: the default layout is designed for 360-430px phones */
.hero, .detail-hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 85% 10%, rgba(47, 149, 229, .2), transparent 30%),
    linear-gradient(135deg, var(--navy-950), var(--navy-900) 62%, #0b2940);
}

.hero::after, .detail-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(255,255,255,.024) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.024) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: linear-gradient(to right, #000, transparent 76%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 34px;
  min-height: 0;
  padding-block: 38px 54px;
}

.hero h1, .detail-hero-copy h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(34px, 10.5vw, 44px);
  font-weight: 820;
  letter-spacing: -.045em;
  line-height: 1.04;
}

.hero h1 em, .detail-hero-copy h1 em, .corporate-hero-copy h1 em { color: #65b9ee; font-style: normal; }

.hero-lead {
  max-width: 700px;
  margin: 18px 0 0;
  color: #d4e2eb;
  font-size: 16px;
  line-height: 1.58;
}

.hero-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 9px;
  margin-top: 24px;
}

.trust-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 11px;
  margin: 28px 0 0;
  padding: 22px 0 0;
  border-top: 1px solid rgba(255,255,255,.13);
  list-style: none;
}

.trust-row li {
  display: grid;
  grid-template-columns: 108px 1fr;
  gap: 8px;
  padding: 0;
  border: 0;
}

.trust-row strong { color: var(--white); font-size: 14px; }
.trust-row span { align-self: center; color: #a9bbc7; font-size: 11px; }

.hero-proof-links {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  margin-top: 15px;
}

.hero-proof-links a {
  min-height: 47px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 9px;
  padding: 9px 12px;
  color: var(--white);
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 9px;
  font-size: 11px;
  text-decoration: none;
}

.hero-proof-links strong { font-size: 12px; }
.hero-proof-links > a > span:last-child { color: #a9c5d7; text-align: right; }
.hero-stars, .stars { color: #f7b91d; letter-spacing: .06em; white-space: nowrap; }

.hero-visual {
  position: relative;
  max-width: 540px;
  margin: 0;
  padding: 8px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 20px;
  box-shadow: 0 24px 55px rgba(0,0,0,.24);
}

.hero-visual::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 76px;
  height: 76px;
  right: -18px;
  top: -18px;
  background: var(--orange);
  border-radius: 50%;
  opacity: .72;
}

.hero-visual img { width: 100%; aspect-ratio: 716 / 400; object-fit: cover; border-radius: 14px; }

.hero-visual figcaption {
  position: static;
  display: flex;
  align-items: center;
  gap: 11px;
  margin: -8px 8px 4px;
  padding: 14px 15px;
  color: var(--ink);
  background: var(--white);
  border-radius: 11px;
  box-shadow: var(--shadow);
  font-size: 12px;
  line-height: 1.4;
}

.hero-visual figcaption strong { display: block; font-size: 14px; }
.status-dot { flex: 0 0 auto; width: 12px; height: 12px; background: #21a65b; border: 3px solid #d6f2e2; border-radius: 50%; box-sizing: content-box; }

/* Quick help and direct answer */
.quick-help { padding-block: 30px; background: var(--blue-50); border-bottom: 1px solid #d8e9f4; }
.quick-grid { display: grid; grid-template-columns: 1fr; gap: 18px; }
.quick-grid .section-kicker { margin-bottom: 5px; }
.quick-grid h2 { margin: 0; font-size: 23px; letter-spacing: -.025em; line-height: 1.25; }
.symptom-list { display: grid; grid-template-columns: 1fr; gap: 8px; }
.symptom-list a {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 15px;
  color: #29475c;
  background: rgba(255,255,255,.82);
  border: 1px solid #d7e7f1;
  border-radius: 9px;
  font-size: 13px;
  font-weight: 750;
  text-decoration: none;
}
.symptom-list span, .service-card a span { color: var(--blue-600); }

.answer-section { padding-block: 28px; background: var(--white); border-bottom: 1px solid var(--line); }
.answer-panel {
  display: grid;
  grid-template-columns: 1fr;
  align-items: start;
  gap: 17px;
  padding: 22px 20px;
  background: linear-gradient(135deg, var(--blue-50), #f8fbfd);
  border: 1px solid #cfe3ef;
  border-radius: 14px;
}
.answer-panel h2 { margin: 0; font-size: 25px; letter-spacing: -.035em; line-height: 1.14; }
.answer-panel > div:last-child > p:first-child { margin: 0; color: #334a5b; font-size: 16px; line-height: 1.68; }
.answer-evidence { display: flex; flex-wrap: wrap; gap: 7px; margin: 16px 0 0; color: #71808b; font-size: 12px; }
.answer-evidence a { color: var(--blue-700); font-weight: 800; text-decoration: none; }

/* Main content sections */
.service-intro { background: var(--surface); border-bottom: 1px solid var(--line); }
.service-intro-grid { display: grid; grid-template-columns: 1fr; align-items: center; gap: 34px; }
.service-intro-copy h2 { margin-bottom: 19px; }
.service-intro-copy p { max-width: 780px; margin: 0 0 15px; color: var(--muted); font-size: 16px; }
.service-intro-copy p:last-child { margin-bottom: 0; }

.service-scope {
  padding: 23px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 42px rgba(8, 28, 44, .08);
}
.service-scope ol { display: grid; gap: 0; margin: 18px 0 22px; padding: 0; list-style: none; }
.service-scope li { display: grid; grid-template-columns: 32px 1fr; gap: 12px; padding-block: 13px; border-bottom: 1px solid var(--line); }
.service-scope li:first-child { padding-top: 0; }
.service-scope li > span { color: var(--blue-600); font-size: 12px; font-weight: 850; }
.service-scope strong { font-size: 15px; }
.service-scope p { margin: 3px 0 0; color: var(--muted); font-size: 13px; }
.service-scope > a { color: var(--blue-700); font-size: 14px; font-weight: 850; text-decoration: none; }

.service-grid { display: grid; grid-template-columns: 1fr; gap: 13px; }
.service-card {
  position: relative;
  min-height: 0;
  display: flex;
  flex-direction: column;
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.service-card.featured { background: var(--blue-50); border-color: #c4dfef; }
.card-number { color: var(--blue-600); font-size: 12px; font-weight: 850; letter-spacing: .12em; }
.service-card h3 { max-width: 280px; margin: 24px 0 10px; font-size: 22px; letter-spacing: -.025em; line-height: 1.2; }
.service-card p { margin: 0 0 22px; color: var(--muted); font-size: 14px; }
.service-card a { margin-top: auto; color: var(--blue-700); font-size: 14px; font-weight: 800; text-decoration: none; }

/* Trust and reviews */
.trust-section { background: var(--white); border-top: 1px solid #edf1f4; }
.trust-heading h2 { max-width: 760px; }
.trust-proof-grid { display: grid; grid-template-columns: 1fr; align-items: stretch; gap: 14px; }
.credential-card {
  display: flex;
  flex-direction: column;
  padding: 23px;
  background: linear-gradient(145deg, var(--blue-50), #f9fcfe);
  border: 1px solid #cfe3ef;
  border-radius: var(--radius);
}
.credential-copy h3 { margin: 10px 0 12px; font-size: 23px; letter-spacing: -.03em; line-height: 1.18; }
.credential-copy p { margin: 0; color: var(--muted); font-size: 14px; }
.credential-copy ul { display: grid; gap: 8px; margin: 20px 0 25px; padding: 0; list-style: none; }
.credential-copy li { position: relative; padding-left: 21px; color: #31536a; font-size: 13px; font-weight: 750; }
.credential-copy li::before { content: ""; position: absolute; left: 0; top: .52em; width: 8px; height: 8px; background: var(--blue-600); border: 3px solid #cce6f7; border-radius: 50%; box-sizing: content-box; transform: translateY(-50%); }
.credential-image { position: relative; margin-top: auto; padding: 10px 10px 36px; color: var(--blue-700); background: var(--white); border: 1px solid var(--line); border-radius: 13px; text-decoration: none; box-shadow: 0 12px 28px rgba(8, 28, 44, .08); }
.credential-image img { width: 100%; height: auto; border-radius: 8px; }
.credential-image span { position: absolute; left: 13px; bottom: 9px; font-size: 12px; font-weight: 800; }

.reviews-panel { padding: 22px; background: var(--navy-900); border-radius: var(--radius); box-shadow: 0 22px 55px rgba(6, 23, 37, .15); }
.reviews-summary { display: flex; align-items: flex-start; flex-direction: column; gap: 11px; margin-bottom: 18px; padding-bottom: 18px; border-bottom: 1px solid rgba(255,255,255,.13); }
.reviews-summary > div { display: flex; flex-wrap: wrap; align-items: center; gap: 9px; }
.google-word { color: var(--white); font-size: 18px; font-weight: 800; letter-spacing: -.02em; }
.reviews-summary strong { color: var(--white); font-size: 16px; }
.reviews-summary > a { color: #9fd3f4; font-size: 12px; font-weight: 800; text-decoration: none; }
.review-list { display: grid; grid-template-columns: 1fr; gap: 10px; }
.review-card { min-width: 0; display: flex; flex-direction: column; padding: 19px; color: var(--ink); background: var(--white); border: 1px solid rgba(255,255,255,.12); border-radius: 13px; }
.review-meta { display: flex; flex-direction: column; gap: 4px; }
.review-meta strong { font-size: 14px; }
.review-meta span { color: #f1aa00; font-size: 12px; letter-spacing: .08em; }
.review-card blockquote { margin: 16px 0 20px; color: #3d4b56; font-size: 14px; line-height: 1.62; }
.review-card > a { margin-top: auto; color: var(--blue-700); font-size: 12px; font-weight: 800; text-decoration: none; }

/* Process, brands, districts, FAQ and footer */
.process-section, .evidence-section { color: var(--white); background: var(--navy-900); }
.process-grid { display: grid; grid-template-columns: 1fr; gap: 42px; }
.section-kicker.light { color: #71bce9; }
.process-copy p { max-width: 470px; margin: 18px 0 22px; color: #b6c7d2; }
.text-link-light { color: var(--white); font-weight: 800; text-decoration: none; }
.text-link-light span { color: #72bee9; }
.process-steps { margin: 0; padding: 0; list-style: none; }
.process-steps li { display: grid; grid-template-columns: 48px 1fr; gap: 16px; padding: 0 0 23px; margin-bottom: 23px; border-bottom: 1px solid rgba(255,255,255,.12); }
.process-steps li:last-child { margin: 0; padding: 0; border: 0; }
.process-steps li > span { width: 46px; height: 46px; display: grid; place-items: center; color: #83c8f5; border: 1px solid rgba(131,200,245,.35); border-radius: 50%; font-weight: 850; }
.process-steps strong { font-size: 18px; }
.process-steps p { margin: 4px 0 0; color: #a9bbc7; font-size: 14px; }

.brands-section, .decision-section, .regions-directory { background: var(--surface); }
.brands-grid { display: grid; grid-template-columns: 1fr; align-items: center; gap: 38px; }
.brands-grid > div > p { margin-top: 17px; }
.brand-list { display: grid; grid-template-columns: 1fr; gap: 10px; }
.brand-list a, .brand-list div { min-height: 116px; display: flex; flex-direction: column; justify-content: center; padding: 14px 17px; background: var(--white); border: 1px solid var(--line); border-radius: 12px; text-decoration: none; }
.brand-list strong { font-size: 17px; }
.brand-list span { color: #74818b; font-size: 12px; }
.brand-list .brand-logo-stage { width: 100%; min-height: 40px; display: flex; align-items: center; margin-bottom: 7px; color: var(--ink); }
.brand-list .brand-logo-stage + strong { margin-top: 2px; }
.brand-section-actions { display: flex; flex-direction: column; align-items: flex-start; gap: 13px; margin-top: 24px; }
.brand-section-actions .button { margin: 0; }
.brand-section-actions .text-link { color: var(--blue-700); font-size: 13px; font-weight: 800; text-decoration: none; }

.device-gallery-section { background: var(--white); }
.device-gallery { display: flex; gap: 13px; margin-inline: -16px; padding: 2px 16px 13px; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: thin; }
.device-gallery figure { flex: 0 0 min(82vw, 330px); margin: 0; overflow: hidden; background: var(--surface); border: 1px solid var(--line); border-radius: 14px; scroll-snap-align: start; }
.device-gallery img { width: 100%; aspect-ratio: 16 / 9; object-fit: contain; background: var(--white); }
.device-gallery figcaption { display: block; padding: 17px 18px 19px; }
.device-gallery figcaption strong { display: block; font-size: 16px; }
.device-gallery figcaption span { display: block; margin-top: 5px; color: var(--muted); font-size: 13px; line-height: 1.5; }

.districts-section { background: var(--white); }
.district-search { display: block; }
.district-search input { width: 100%; min-height: 50px; padding: 12px 16px; color: var(--ink); background: var(--surface); border: 1px solid var(--line); border-radius: 11px; }
.district-search input::placeholder { color: #7a8791; }
.district-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; margin: 0; padding: 0; list-style: none; }
.district-list li[hidden] { display: none; }
.district-list a, .district-list span { min-height: 46px; display: flex; align-items: center; padding: 9px 11px; background: var(--surface); border: 1px solid #e2e8ec; border-radius: 9px; font-size: 12px; font-weight: 700; text-decoration: none; overflow-wrap: anywhere; }
.district-list a { color: var(--blue-700); background: var(--blue-50); border-color: #c7e0ef; }
.district-note, .district-empty { margin: 17px 0 0; color: #7a8791; font-size: 12px; }
.district-note a { color: var(--blue-700); font-weight: 800; text-decoration: none; }
.district-empty { color: #9b3f1c; }

.faq-section { background: var(--blue-50); }
.faq-grid { display: grid; grid-template-columns: 1fr; gap: 38px; }
.faq-grid > div > p { margin-top: 15px; }
.faq-list details { border-bottom: 1px solid #cbdde8; }
.faq-list summary { position: relative; min-height: 52px; padding: 19px 42px 19px 0; cursor: pointer; font-size: 17px; font-weight: 800; line-height: 1.35; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; position: absolute; right: 4px; top: 15px; color: var(--blue-700); font-size: 25px; font-weight: 400; }
.faq-list details[open] summary::after { content: "−"; }
.faq-list details p { max-width: 720px; margin: -2px 36px 19px 0; color: var(--muted); }

.final-cta { color: var(--white); background: linear-gradient(135deg, var(--navy-950), var(--navy-800)); }
.final-cta-inner { min-height: 0; display: grid; grid-template-columns: 1fr; align-items: center; gap: 27px; padding-block: 52px; }
.final-cta p { max-width: 620px; margin: 15px 0 0; color: #b8c9d4; }
.final-actions { display: flex; flex-direction: column; align-items: stretch; gap: 13px; }
.whatsapp-text { min-height: 44px; display: grid; place-items: center; color: #b8e7cc; font-weight: 800; text-align: center; text-decoration: none; }

.site-footer { padding-block: 48px 38px; color: #63727d; background: #f8fafb; font-size: 13px; }
.footer-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 31px 22px; }
.footer-brand { grid-column: 1 / -1; }
.footer-brand img { width: 200px; height: auto; }
.footer-brand p { max-width: 280px; }
.footer-grid > div:not(.footer-brand) { display: flex; flex-direction: column; gap: 8px; }
.footer-grid > div:last-child { grid-column: 1 / -1; }
.footer-grid strong { margin-bottom: 5px; color: var(--ink); font-size: 14px; }
.footer-grid a { text-decoration: none; overflow-wrap: anywhere; }
.footer-bottom { display: flex; flex-direction: column; gap: 4px; margin-top: 36px; padding-top: 18px; border-top: 1px solid var(--line); }

/* Service, brand and district detail pages */
.detail-hero > .wrap { position: relative; z-index: 1; padding-block: 16px 48px; }
.breadcrumb { display: flex; flex-wrap: wrap; align-items: center; gap: 7px; margin-bottom: 29px; color: #8fa8b8; font-size: 12px; }
.breadcrumb a { color: #bfd1dd; text-decoration: none; }
.detail-hero-grid { display: grid; grid-template-columns: 1fr; align-items: center; gap: 31px; }

.corporate-hero > .wrap { padding-bottom: 48px; }
.corporate-hero-copy { max-width: 820px; }
.corporate-hero-copy h1 { max-width: 780px; margin: 14px 0 0; color: var(--white); font-size: clamp(34px, 10vw, 44px); line-height: 1.04; letter-spacing: -.045em; }

.coverage-card, .product-proof {
  max-width: 540px;
  margin: 0;
  padding: 23px;
  color: var(--ink);
  background: rgba(255,255,255,.97);
  border: 1px solid rgba(255,255,255,.44);
  border-radius: 18px;
  box-shadow: 0 24px 58px rgba(0,0,0,.22);
}
.brand-page-logo { display: grid; place-items: center; width: 142px; max-width: 100%; height: 64px; margin-bottom: 20px; padding: 10px 14px; overflow: hidden; background: var(--white); border: 1px solid var(--line); border-radius: 10px; }
.brand-mark { display: block; width: 110px; max-width: 100%; height: 42px; object-fit: contain; object-position: left center; }
.brand-page-logo .brand-mark { object-position: center; }
.brand-hub-intro { max-width: 800px; }
.proof-label { display: block; color: var(--blue-700); font-size: 11px; font-weight: 850; letter-spacing: .1em; line-height: 1.35; text-transform: uppercase; }
.coverage-card h2 { margin: 10px 0 18px; font-size: 22px; letter-spacing: -.03em; line-height: 1.18; }
.coverage-card p { margin: 18px 0 0; color: var(--muted); font-size: 13px; }
.request-card { padding-bottom: 21px; }
.service-request-list { display: grid; gap: 0; margin: 0; padding: 0; list-style: none; }
.service-request-list li { display: grid; grid-template-columns: 34px 1fr; align-items: center; gap: 11px; padding: 12px 0; border-top: 1px solid var(--line); }
.service-request-list b { display: grid; width: 30px; height: 30px; place-items: center; color: var(--white); background: var(--blue-600); border-radius: 8px; font-size: 12px; }
.service-request-list span { color: var(--muted); font-size: 12px; line-height: 1.4; }
.service-request-list strong { display: block; color: var(--ink); font-size: 14px; }
.request-card-link { display: flex; justify-content: space-between; gap: 14px; margin-top: 12px; padding-top: 15px; color: var(--blue-700); border-top: 1px solid var(--line); font-size: 13px; font-weight: 820; text-decoration: none; }
.warranty-checklist { display: grid; gap: 0; margin: 0; padding: 0; list-style: none; }
.warranty-checklist li { display: flex; align-items: flex-start; justify-content: space-between; gap: 18px; padding: 13px 0; border-top: 1px solid var(--line); }
.warranty-checklist strong { color: var(--ink); font-size: 14px; }
.warranty-checklist span { max-width: 180px; color: var(--muted); font-size: 12px; line-height: 1.45; text-align: right; }
.area-chips { display: flex; flex-wrap: wrap; gap: 7px; }
.area-chips span { padding: 7px 9px; color: #31536a; background: var(--blue-50); border: 1px solid #d0e5f2; border-radius: 7px; font-size: 12px; font-weight: 750; }

.product-proof { position: relative; display: grid; place-items: center; min-height: 335px; padding: 20px; background: linear-gradient(145deg, #fff, #edf5fa); }
.product-proof::after { content: ""; position: absolute; width: 120px; height: 120px; right: -44px; top: -44px; background: var(--orange); border-radius: 50%; opacity: .82; }
.product-proof img { position: relative; z-index: 1; width: min(78%, 280px); height: auto; filter: drop-shadow(0 24px 28px rgba(7, 28, 44, .25)); }
.product-proof figcaption { position: absolute; z-index: 2; left: 17px; right: 17px; bottom: 16px; padding: 12px 14px; background: rgba(255,255,255,.94); border: 1px solid var(--line); border-radius: 11px; box-shadow: 0 12px 30px rgba(8, 28, 44, .12); }
.product-proof figcaption strong { display: block; margin-top: 4px; font-size: 13px; line-height: 1.45; }

.fact-strip { background: var(--white); border-bottom: 1px solid var(--line); }
.fact-grid { display: grid; grid-template-columns: repeat(2, 1fr); }
.fact-grid > div { min-height: 88px; display: flex; flex-direction: column; justify-content: center; padding: 16px 13px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.fact-grid > div:nth-child(odd) { border-left: 1px solid var(--line); }
.fact-grid span { color: #74828c; font-size: 11px; }
.fact-grid strong { margin-top: 4px; font-size: 14px; line-height: 1.35; }

.visual-evidence-section { padding-block: 28px; background: var(--blue-50); border-bottom: 1px solid #d8e9f4; }
.visual-evidence-card { display: grid; grid-template-columns: 1fr; margin-block: 0; overflow: hidden; background: var(--white); border: 1px solid #cfe3ef; border-radius: 16px; box-shadow: 0 16px 38px rgba(8,28,44,.08); }
.visual-evidence-card > img { width: 100%; aspect-ratio: 1200 / 628; object-fit: contain; background: var(--white); }
.visual-evidence-card figcaption { padding: 21px; }
.visual-evidence-card h2 { margin: 8px 0; font-size: 23px; letter-spacing: -.025em; line-height: 1.2; }
.visual-evidence-card p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.65; }

.narrow-heading { max-width: 790px; margin-bottom: 27px; }
.narrow-heading > p { margin-top: 15px; }
.symptom-cards, .decision-grid { display: grid; grid-template-columns: 1fr; gap: 11px; }
.symptom-cards article { min-height: 0; padding: 22px; background: var(--surface); border: 1px solid var(--line); border-radius: 14px; }
.symptom-cards article > span { color: var(--blue-600); font-size: 12px; font-weight: 850; }
.symptom-cards h3 { margin: 20px 0 9px; font-size: 19px; letter-spacing: -.02em; line-height: 1.25; }
.symptom-cards p { margin: 0; color: var(--muted); font-size: 14px; }

.evidence-grid { display: grid; grid-template-columns: 1fr; gap: 38px; }
.evidence-lead { max-width: 760px; margin: 18px 0 30px; color: #b6c7d2; font-size: 16px; }
.content-blocks { display: grid; gap: 0; }
.content-blocks article { display: grid; grid-template-columns: 1fr; gap: 7px; padding-block: 21px; border-top: 1px solid rgba(255,255,255,.13); }
.content-blocks h3 { margin: 0; font-size: 17px; line-height: 1.4; }
.content-blocks p { margin: 0; color: #aebfca; font-size: 14px; }
.review-proof { position: relative; align-self: start; max-width: 540px; margin-top: 0; padding: 30px 24px 25px; color: var(--ink); background: var(--white); border-radius: var(--radius); box-shadow: 0 28px 70px rgba(0,0,0,.24); }
.quote-mark { position: absolute; right: 19px; top: 6px; color: var(--blue-100); font-family: Georgia, serif; font-size: 82px; line-height: 1; }
.review-proof blockquote { position: relative; margin: 32px 0 13px; font-size: 18px; font-weight: 720; line-height: 1.55; }
.review-proof > p { margin: 0; color: #7a8791; font-size: 12px; }
.review-proof > .stars { display: block; margin-top: 12px; }
.review-proof > p a { color: var(--blue-700); font-weight: 800; text-decoration: none; }

.credential-inline { max-width: 730px; display: grid; grid-template-columns: 54px 1fr; align-items: center; gap: 13px; margin-top: 22px; padding: 12px; color: var(--ink); background: var(--white); border: 1px solid #cfe3ef; border-radius: 12px; text-decoration: none; }
.credential-inline img { width: 54px; height: 42px; object-fit: cover; border-radius: 7px; }
.credential-inline span { display: flex; flex-direction: column; color: var(--muted); font-size: 12px; }
.credential-inline strong { color: var(--ink); font-size: 14px; }
.credential-inline b { display: none; color: var(--blue-700); font-size: 12px; white-space: nowrap; }
.decision-grid article { padding: 21px; background: var(--white); border: 1px solid var(--line); border-radius: 13px; }
.decision-grid h3 { margin: 0 0 10px; font-size: 18px; }
.decision-grid p { margin: 0; color: var(--muted); font-size: 14px; }

.related-section { padding-block: 30px; background: var(--white); border-top: 1px solid var(--line); }
.related-inner { display: flex; align-items: flex-start; flex-direction: column; gap: 18px; }
.related-inner > strong { font-size: 14px; }
.related-inner > div { display: flex; flex-wrap: wrap; justify-content: flex-start; gap: 8px; }
.related-inner a { min-height: 42px; display: inline-flex; align-items: center; padding: 8px 11px; color: var(--blue-700); background: var(--blue-50); border-radius: 8px; font-size: 12px; font-weight: 800; text-decoration: none; }
.related-inner a span { margin-left: 6px; }

/* Service regions directory */
.regions-grid { display: grid; grid-template-columns: 1fr; gap: 10px; }
.regions-grid > a { min-height: 164px; display: flex; flex-direction: column; padding: 21px; color: var(--ink); background: var(--white); border: 1px solid var(--line); border-radius: 14px; text-decoration: none; transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease; }
.regions-grid span { color: var(--blue-700); font-size: 12px; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.regions-grid strong { margin-top: 13px; font-size: 19px; line-height: 1.28; }
.regions-grid small { margin-top: 9px; color: var(--muted); font-size: 13px; line-height: 1.55; }
.regions-grid b { margin-top: auto; padding-top: 18px; color: var(--blue-700); font-size: 12px; }
.brand-directory { background: var(--surface); }
.brand-directory-grid { display: grid; grid-template-columns: 1fr; gap: 10px; }
.brand-directory-grid > a { min-height: 196px; display: flex; flex-direction: column; padding: 18px; color: var(--ink); background: var(--white); border: 1px solid var(--line); border-radius: 14px; text-decoration: none; transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease; }
.brand-logo-stage { min-width: 0; height: 48px; display: flex; align-items: center; overflow: hidden; }
.brand-mark-directory { width: 110px; height: 44px; }
.brand-mark-home { width: 110px; height: 38px; }
.brand-directory-grid strong { margin-top: 14px; font-size: 18px; line-height: 1.28; }
.brand-directory-grid small { margin-top: 8px; color: var(--muted); font-size: 13px; line-height: 1.55; }
.brand-directory-grid b { margin-top: auto; padding-top: 17px; color: var(--blue-700); font-size: 12px; }
.brand-scope-note { display: grid; gap: 8px; margin-top: 18px; padding: 20px; background: var(--blue-50); border: 1px solid #cfe2ee; border-radius: 14px; }
.brand-scope-note strong { font-size: 18px; }
.brand-scope-note p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.65; }
.brand-scope-note a { width: fit-content; min-height: 44px; display: inline-flex; align-items: center; color: var(--blue-700); font-size: 13px; font-weight: 850; text-decoration: none; }

/* Corporate and legal pages */
.legal-section { background: #f4f7f9; }
.legal-grid { display: grid; grid-template-columns: 1fr; gap: 30px; align-items: start; }
.legal-aside { position: static; padding: 23px; background: var(--white); border: 1px solid var(--line); border-radius: 18px; box-shadow: 0 14px 38px rgba(8, 28, 44, .07); }
.legal-aside h2, .legal-aside strong { display: block; margin: 11px 0; color: var(--ink); font-size: 23px; line-height: 1.2; }
.legal-aside p { color: var(--muted); line-height: 1.7; }
.legal-aside a { color: var(--blue-700); font-weight: 750; overflow-wrap: anywhere; }
.legal-copy { display: grid; gap: 14px; }
.legal-copy section { padding: 23px; background: var(--white); border: 1px solid var(--line); border-radius: 18px; }
.legal-copy h2 { margin: 0 0 13px; color: var(--ink); font-size: 22px; line-height: 1.25; }
.legal-copy p { margin: 0; color: var(--muted); font-size: 16px; line-height: 1.75; }
.legal-copy p + p { margin-top: 12px; }
.legal-copy a { color: var(--blue-700); font-weight: 750; }

.contact-card-grid { display: grid; grid-template-columns: 1fr; gap: 13px; }
.contact-card { display: flex; min-height: 220px; flex-direction: column; padding: 24px; color: var(--ink); text-decoration: none; background: var(--white); border: 1px solid var(--line); border-radius: 18px; box-shadow: 0 14px 38px rgba(8, 28, 44, .06); }
.contact-card span { color: var(--blue-700); font-size: 12px; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.contact-card strong { margin-top: 18px; font-size: 22px; line-height: 1.22; overflow-wrap: anywhere; }
.contact-card p { color: var(--muted); line-height: 1.65; }
.contact-card b { margin-top: auto; color: var(--blue-700); }
.contact-card.featured { color: var(--white); background: var(--navy-900); border-color: var(--navy-900); }
.contact-card.featured strong, .contact-card.featured b { color: var(--white); }
.contact-card.featured p { color: #b8c9d4; }
.contact-card.whatsapp span, .contact-card.whatsapp b { color: #0c7a44; }
.contact-safety { display: flex; align-items: stretch; flex-direction: column; gap: 23px; margin-top: 21px; padding: 24px; color: var(--white); background: #132f42; border-radius: 18px; }
.contact-safety h2 { margin: 8px 0 0; font-size: 27px; }
.contact-safety p { max-width: 690px; margin: 9px 0 0; color: #c3d3dd; }

/* Frequently asked questions hub */
.faq-hub-section { background: #f4f7f9; }
.faq-topic-nav { display: flex; gap: 8px; margin: -8px -16px 30px; padding: 8px 16px 12px; overflow-x: auto; scrollbar-width: thin; }
.faq-topic-nav a { min-height: 44px; display: inline-flex; flex: 0 0 auto; align-items: center; padding: 9px 13px; color: var(--blue-700); background: var(--white); border: 1px solid #cfe2ee; border-radius: 10px; font-size: 13px; font-weight: 800; text-decoration: none; }
.faq-hub-grid { display: grid; gap: 16px; }
.faq-category { scroll-margin-top: 94px; display: grid; grid-template-columns: 1fr; gap: 25px; padding: 24px; background: var(--white); border: 1px solid var(--line); border-radius: 18px; box-shadow: 0 14px 38px rgba(8, 28, 44, .05); }
.faq-category-heading h2 { margin: 9px 0 11px; color: var(--ink); font-size: 27px; letter-spacing: -.03em; line-height: 1.12; }
.faq-category-heading p { margin: 0; color: var(--muted); font-size: 16px; line-height: 1.7; }
.faq-category .faq-list summary { font-size: 16px; }
.faq-category .faq-list details:first-child { border-top: 1px solid #cbdde8; }
.faq-emergency { display: flex; align-items: stretch; flex-direction: column; gap: 22px; margin-top: 16px; padding: 25px; color: var(--white); background: #132f42; border-radius: 18px; }
.faq-emergency h2 { margin: 8px 0 0; font-size: 27px; line-height: 1.14; }
.faq-emergency p { max-width: 760px; margin: 10px 0 0; color: #c3d3dd; font-size: 16px; line-height: 1.7; }
.faq-help { display: grid; grid-template-columns: 1fr; gap: 24px; margin-top: 16px; padding: 25px; background: var(--white); border: 1px solid var(--line); border-radius: 18px; }
.faq-help h2 { margin: 9px 0 0; color: var(--ink); font-size: 27px; line-height: 1.15; letter-spacing: -.03em; }
.faq-help p { max-width: 720px; margin: 10px 0 0; color: var(--muted); font-size: 16px; line-height: 1.7; }
.faq-help > div:last-child { display: flex; align-items: stretch; flex-direction: column; gap: 14px; }
.faq-help .text-link { min-height: 44px; display: inline-flex; align-items: center; justify-content: center; color: var(--blue-700); font-weight: 800; text-decoration: none; }

.service-support-links { display: flex; flex-direction: column; gap: 8px; margin-top: 16px; padding: 16px 18px; background: var(--blue-50); border: 1px solid #cfe2ee; border-radius: 13px; }
.service-support-links strong { color: var(--ink); font-size: 14px; }
.service-support-links div { display: flex; flex-wrap: wrap; gap: 8px 16px; }
.service-support-links a { min-height: 40px; display: inline-flex; align-items: center; color: var(--blue-700); font-size: 13px; font-weight: 800; text-decoration: none; }

/* Progressive enhancement for larger screens */
@media (min-width: 560px) {
  .wrap { width: min(calc(100% - 40px), var(--wrap)); }
  .device-gallery { margin-inline: 0; padding-inline: 0; }
  .header-inner { min-height: 66px; }
  .brand { flex-basis: 190px; }
  .brand img { width: 190px; }
  .header-call { min-width: 150px; }
  .header-call span { display: block; font-size: 9px; font-weight: 800; letter-spacing: .11em; line-height: 1.2; text-transform: uppercase; opacity: .82; }
  .header-call strong { font-size: 14px; }
  .header-call strong::after { content: none; }
  .button { width: auto; padding-inline: 20px; }
  .hero-actions { display: flex; flex-wrap: wrap; gap: 11px; }
  .hero-actions .button { flex: 1 1 210px; }
  .trust-row { grid-template-columns: repeat(3, 1fr); gap: 0; }
  .trust-row li { display: flex; flex-direction: column; padding-inline: 14px; border-right: 1px solid rgba(255,255,255,.12); }
  .trust-row li:first-child { padding-left: 0; }
  .trust-row li:last-child { border-right: 0; }
  .hero-proof-links { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hero-proof-links a { display: block; }
  .hero-proof-links > a > span:last-child { display: block; margin-top: 2px; text-align: left; }
  .symptom-list, .brand-list { grid-template-columns: repeat(2, 1fr); }
  .district-list { grid-template-columns: repeat(3, 1fr); }
  .reviews-summary { align-items: center; flex-direction: row; justify-content: space-between; }
  .reviews-summary > div { flex-wrap: nowrap; }
  .fact-grid { grid-template-columns: repeat(4, 1fr); }
  .fact-grid > div { min-height: 98px; border-bottom: 0; border-left: 0; }
  .fact-grid > div:first-child { border-left: 1px solid var(--line); }
  .symptom-cards, .decision-grid { grid-template-columns: repeat(2, 1fr); }
  .credential-inline { grid-template-columns: 64px 1fr auto; gap: 16px; }
  .credential-inline img { width: 64px; height: 44px; }
  .credential-inline b { display: block; }
  .regions-grid { grid-template-columns: repeat(2, 1fr); }
  .brand-directory-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid > div:last-child { grid-column: auto; }
}

@media (min-width: 760px) {
  html { scroll-padding-top: 88px; }
  body { padding-bottom: 0; }
  .mobile-actions { display: none; }
  .section { padding-block: 78px; }
  .section-heading, .trust-heading { grid-template-columns: 1.25fr .75fr; align-items: end; gap: 38px; margin-bottom: 36px; }
  .section-heading h2, .trust-heading h2, .process-copy h2, .brands-grid h2, .faq-grid h2, .final-cta h2, .service-intro-copy h2, .narrow-heading h2, .evidence-main > h2 { font-size: clamp(36px, 5vw, 46px); }
  .hero-grid { gap: 42px; padding-block: 54px 70px; }
  .hero h1, .detail-hero-copy h1 { font-size: clamp(46px, 7vw, 58px); line-height: 1.02; }
  .hero-lead { margin-top: 21px; font-size: 18px; line-height: 1.64; }
  .hero-visual { border-radius: var(--radius-lg); padding: 10px; }
  .hero-visual img { border-radius: 20px; }
  .hero-visual figcaption { position: absolute; left: 23px; right: 23px; bottom: -24px; margin: 0; }
  .quick-help { padding-block: 36px; }
  .quick-grid { grid-template-columns: .75fr 1.5fr; align-items: center; gap: 38px; }
  .answer-section { padding-block: 40px; }
  .answer-panel { grid-template-columns: minmax(230px, .72fr) minmax(0, 1.28fr); gap: 45px; padding: 28px 30px; border-radius: 18px; }
  .answer-panel h2 { font-size: 30px; }
  .service-intro-grid { grid-template-columns: minmax(0, 1.08fr) minmax(300px, .72fr); gap: 48px; }
  .service-scope, .credential-card, .reviews-panel { padding: 28px; }
  .service-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .service-card { min-height: 285px; padding: 28px; }
  .service-card h3 { margin-top: 38px; }
  .review-list { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .process-grid { grid-template-columns: .8fr 1.2fr; gap: 60px; }
  .brands-grid { grid-template-columns: .75fr 1.25fr; gap: 56px; }
  .device-gallery { display: grid; grid-template-columns: repeat(3, 1fr); overflow: visible; padding-bottom: 0; }
  .device-gallery figure { min-width: 0; }
  .visual-evidence-section { padding-block: 42px; }
  .visual-evidence-card { grid-template-columns: minmax(300px, .9fr) minmax(0, 1.1fr); align-items: center; border-radius: 20px; }
  .visual-evidence-card figcaption { padding: 30px 34px; }
  .visual-evidence-card h2 { font-size: 30px; }
  .district-list { grid-template-columns: repeat(4, 1fr); }
  .faq-grid { grid-template-columns: .65fr 1.35fr; gap: 60px; }
  .final-cta-inner { grid-template-columns: 1.3fr .7fr; gap: 42px; padding-block: 62px; }
  .footer-grid { grid-template-columns: 1.35fr repeat(3, 1fr); gap: 36px; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { flex-direction: row; justify-content: space-between; gap: 20px; }
  .detail-hero > .wrap { padding-block: 20px 64px; }
  .breadcrumb { margin-bottom: 38px; }
  .corporate-hero > .wrap { padding-bottom: 62px; }
  .corporate-hero-copy h1 { margin-top: 18px; font-size: clamp(46px, 7vw, 64px); line-height: 1.02; }
  .coverage-card, .product-proof { padding: 28px; border-radius: var(--radius-lg); }
  .coverage-card h2 { font-size: 24px; }
  .product-proof { min-height: 370px; }
  .content-blocks article { grid-template-columns: 170px 1fr; gap: 25px; padding-block: 24px; }
  .related-inner { align-items: center; flex-direction: row; justify-content: space-between; gap: 28px; }
  .related-inner > div { justify-content: flex-end; }
  .legal-copy section { padding: 32px; }
  .contact-safety { align-items: center; flex-direction: row; justify-content: space-between; gap: 30px; padding: 31px; }
  .faq-topic-nav { margin: -8px 0 36px; padding-inline: 0; }
  .faq-category { grid-template-columns: minmax(220px, .55fr) minmax(0, 1.45fr); gap: 52px; padding: 32px; }
  .faq-emergency { align-items: center; flex-direction: row; justify-content: space-between; gap: 34px; padding: 32px; }
  .faq-help { grid-template-columns: minmax(0, 1.3fr) minmax(230px, .7fr); align-items: center; padding: 32px; }
  .faq-help > div:last-child { align-items: stretch; }
  .service-support-links { align-items: center; flex-direction: row; justify-content: space-between; gap: 24px; padding-inline: 22px; }
  .service-support-links div { justify-content: flex-end; }
}

@media (min-width: 980px) {
  .header-inner { min-height: 74px; gap: 22px; }
  .brand { flex-basis: 216px; }
  .brand img { width: 216px; }
  .desktop-nav { display: flex; align-items: center; gap: 20px; margin-left: auto; }
  .desktop-nav a { color: #314251; font-size: 13px; font-weight: 700; text-decoration: none; }
  .header-call { min-width: 165px; padding: 9px 14px; }
  .header-call strong { font-size: 16px; }
  .hero-grid { grid-template-columns: minmax(0, 1.05fr) minmax(350px, .85fr); align-items: center; gap: 58px; min-height: 600px; padding-block: 70px 78px; }
  .hero h1, .detail-hero-copy h1 { font-size: clamp(54px, 5vw, 68px); }
  .hero-actions .button { flex: 0 1 auto; }
  .hero-visual figcaption { left: 28px; right: 28px; }
  .service-grid { grid-template-columns: repeat(3, 1fr); }
  .trust-proof-grid { grid-template-columns: minmax(320px, .72fr) minmax(0, 1.28fr); gap: 18px; }
  .review-list { grid-template-columns: repeat(3, 1fr); }
  .district-list { grid-template-columns: repeat(5, 1fr); }
  .detail-hero-grid { grid-template-columns: minmax(0, 1.12fr) minmax(330px, .72fr); gap: 62px; }
  .symptom-cards, .decision-grid { grid-template-columns: repeat(4, 1fr); }
  .symptom-cards article { min-height: 230px; padding: 24px; }
  .symptom-cards h3 { margin-top: 35px; }
  .evidence-grid { grid-template-columns: minmax(0, 1.25fr) minmax(300px, .55fr); gap: 68px; }
  .review-proof { margin-top: 30px; }
  .regions-grid { grid-template-columns: repeat(3, 1fr); gap: 12px; }
  .regions-grid > a { min-height: 205px; padding: 24px; }
  .brand-directory-grid { grid-template-columns: repeat(3, 1fr); gap: 12px; }
  .brand-directory-grid > a { min-height: 218px; padding: 22px; }
  .legal-grid { grid-template-columns: minmax(220px, .35fr) minmax(0, 1fr); gap: 60px; }
  .legal-aside { position: sticky; top: 106px; padding: 26px; }
  .contact-card-grid { grid-template-columns: repeat(3, 1fr); gap: 18px; }
  .contact-card { min-height: 255px; padding: 27px; }
}

@media (min-width: 1180px) {
  .section { padding-block: 96px; }
  .header-inner { gap: 24px; }
  .brand { flex-basis: 226px; }
  .brand img { width: 226px; }
  .desktop-nav { gap: 26px; }
  .desktop-nav a { font-size: 14px; }
  .hero-grid { gap: 80px; min-height: 620px; padding-block: 76px 82px; }
  .quick-grid { gap: 48px; }
  .answer-panel { gap: 72px; padding: 30px 34px; }
  .service-intro-grid { gap: 88px; }
  .process-grid, .faq-grid { gap: 100px; }
  .brands-grid { gap: 90px; }
  .detail-hero-grid { gap: 88px; }
  .evidence-grid { gap: 96px; }
  .legal-grid { gap: 82px; }
}

@media (hover: hover) and (pointer: fine) {
  .button:hover { transform: translateY(-2px); }
  .button-primary:hover { background: var(--blue-700); }
  .button-whatsapp:hover { background: rgba(255, 255, 255, .08); }
  .desktop-nav a:hover { color: var(--blue-700); }
  .breadcrumb a:hover { color: var(--white); }
  .hero-proof-links a:hover { background: rgba(255,255,255,.12); }
  .symptom-list a:hover { color: var(--blue-700); border-color: #a8cee6; }
  .answer-evidence a:hover { text-decoration: underline; }
  .brand-list a:hover, .credential-inline:hover { border-color: #9dc9e4; box-shadow: 0 10px 28px rgba(15,95,168,.08); }
  .district-list a:hover { background: #dfedf6; }
  .regions-grid > a:hover { border-color: #9dc9e4; box-shadow: 0 12px 34px rgba(8, 28, 44, .08); transform: translateY(-2px); }
  .brand-directory-grid > a:hover { border-color: #9dc9e4; box-shadow: 0 12px 34px rgba(8, 28, 44, .08); transform: translateY(-2px); }
  .footer-grid a:hover { color: var(--blue-700); }
  .reviews-summary > a:hover { color: var(--white); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; }
}
