:root {
  --ink: #062b49;
  --ink-2: #0c3f66;
  --blue: #126fae;
  --sky: #24b9f3;
  --sky-2: #84dcff;
  --mist: #e7f5ff;
  --mist-2: #f3f9fd;
  --paper: #ffffff;
  --orange: #ff633e;
  --orange-dark: #d94324;
  --green: #159a55;
  --text: #17384f;
  --muted: #5e7485;
  --line: #cfe0eb;
  --max: 1180px;
  --radius: 18px;
  --shadow: 0 22px 70px rgba(6, 43, 73, 0.14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--text);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
h1, h2, h3, h4, p { margin-top: 0; }
h1, h2, h3, h4 {
  color: var(--ink);
  font-family: Impact, "Arial Narrow", "Roboto Condensed", sans-serif;
  font-weight: 900;
  letter-spacing: -0.025em;
  line-height: 0.98;
}
h1 { font-size: clamp(3.2rem, 7vw, 6.8rem); }
h2 { font-size: clamp(2.35rem, 4.7vw, 4.4rem); }
h3 { font-size: clamp(1.45rem, 2.1vw, 2rem); }
p { margin-bottom: 1rem; }
ul, ol { margin-top: 0; }

.container { width: min(calc(100% - 40px), var(--max)); margin-inline: auto; }
.narrow { width: min(calc(100% - 40px), 820px); margin-inline: auto; }
.section { padding: 100px 0; }
.section-sm { padding: 66px 0; }
.section-mist { background: var(--mist-2); }
.section-ink { background: var(--ink); color: #fff; }
.section-ink h2, .section-ink h3 { color: #fff; }
.section-ink p { color: #c6d9e7; }
.section-line { border-block: 1px solid var(--line); }
.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 999;
  transform: translateY(-160%);
  padding: 10px 15px;
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font-weight: 900;
  box-shadow: var(--shadow);
}
.skip-link:focus { transform: translateY(0); }
:where(a, button, input, select, textarea, summary):focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 3px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--blue);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  line-height: 1.3;
  text-transform: uppercase;
}
.eyebrow::before { width: 32px; height: 4px; background: var(--orange); content: ""; }
.section-ink .eyebrow { color: var(--sky-2); }
.section-intro { max-width: 780px; margin-bottom: 44px; }
.section-intro p:not(.eyebrow) { color: var(--muted); font-size: 1.08rem; }
.section-ink .section-intro p:not(.eyebrow) { color: #c6d9e7; }
.lead { color: var(--muted); font-size: clamp(1.05rem, 1.8vw, 1.28rem); }
.muted { color: var(--muted); }

.topline { background: var(--ink); color: #fff; }
.topline-inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.035em;
}
.topline a { color: var(--sky-2); }
.topline strong { color: #fff; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(6, 43, 73, 0.12);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
}
.nav-row { min-height: 92px; display: flex; align-items: center; gap: 28px; }
.brand { display: flex; align-items: center; gap: 12px; flex: 0 0 auto; }
.brand img { width: 64px; height: 64px; object-fit: contain; }
.brand-copy { display: grid; color: var(--ink); line-height: 1; }
.brand-copy strong {
  font-family: Impact, "Arial Narrow", sans-serif;
  font-size: 1.34rem;
  font-weight: 900;
  letter-spacing: -0.025em;
  text-transform: uppercase;
}
.brand-copy span { margin-top: 5px; color: var(--blue); font-size: 0.62rem; font-weight: 900; letter-spacing: 0.12em; text-transform: uppercase; }
.desktop-nav { display: flex; align-items: center; gap: 25px; margin-left: auto; }
.desktop-nav a { color: var(--ink); font-size: 0.84rem; font-weight: 850; }
.desktop-nav a:hover { color: var(--blue); }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.header-call { display: grid; padding: 3px 8px; line-height: 1.15; text-align: right; }
.header-call span { color: var(--muted); font-size: 0.66rem; font-weight: 800; text-transform: uppercase; }
.header-call strong { color: var(--ink); font-size: 0.94rem; }
.menu-btn {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  color: var(--ink);
  font-size: 1.4rem;
}
.mobile-menu {
  position: fixed;
  inset: 131px 0 0;
  overflow-y: auto;
  padding: 28px 22px 120px;
  background: #fff;
}
.mobile-menu[hidden] { display: none; }
.mobile-menu a:not(.btn) { display: block; border-bottom: 1px solid var(--line); padding: 15px 2px; color: var(--ink); font-size: 1.12rem; font-weight: 850; }
.mobile-menu .mobile-menu-actions { display: grid; gap: 10px; margin-top: 22px; }

.btn {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 2px solid transparent;
  border-radius: 9px;
  padding: 12px 20px;
  font-weight: 900;
  line-height: 1.15;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--orange); color: #fff; box-shadow: 0 12px 26px rgba(255, 99, 62, 0.26); }
.btn-primary:hover { background: var(--orange-dark); }
.btn-secondary { border-color: var(--ink); background: #fff; color: var(--ink); }
.btn-secondary:hover { background: var(--mist); }
.btn-whatsapp { background: var(--green); color: #fff; box-shadow: 0 12px 26px rgba(21, 154, 85, 0.22); }
.btn-whatsapp:hover { background: #0f7f45; }
.btn-white { border-color: #fff; background: #fff; color: var(--ink); }
.btn-ghost-white { border-color: rgba(255, 255, 255, 0.5); color: #fff; }
.btn-small { min-height: 44px; padding: 10px 15px; font-size: 0.82rem; }
.button-row { display: flex; flex-wrap: wrap; gap: 12px; }
.button-row.centered { justify-content: center; }
.spaced-top { margin-top: 30px; }
.icon { width: 20px; height: 20px; flex: 0 0 auto; display: block; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.9; }
.whatsapp-logo,
.btn .whatsapp-logo,
.mobile-cta .whatsapp-logo { width: 22px !important; height: 22px !important; max-width: 22px !important; min-width: 22px !important; flex: 0 0 22px !important; object-fit: contain; display: block; }

.hero {
  position: relative;
  overflow: hidden;
  background: var(--mist);
}
.hero::before {
  position: absolute;
  inset: auto auto -180px -150px;
  width: 410px;
  height: 410px;
  border: 78px solid rgba(36, 185, 243, 0.12);
  border-radius: 50%;
  content: "";
}
.hero-grid { min-height: 690px; display: grid; grid-template-columns: 1.02fr 0.98fr; align-items: stretch; }
.hero-copy { position: relative; z-index: 2; display: flex; flex-direction: column; justify-content: center; padding: 76px 70px 92px 0; }
.hero h1 { max-width: 760px; margin-bottom: 25px; text-transform: uppercase; font-family: Impact, "Arial Narrow", sans-serif; font-weight: 900; letter-spacing: -0.02em; }
.hero h1 .accent { display: block; color: var(--blue); }
.hero .lead { max-width: 700px; }
.hero-positioning { width: fit-content; max-width: 660px; display: grid; gap: 3px; margin-top: 18px; border-left: 5px solid var(--orange); padding: 10px 14px; background: rgba(255, 255, 255, 0.68); color: var(--ink); }
.hero-positioning strong { font-size: 0.95rem; line-height: 1.2; }
.hero-positioning span { color: var(--muted); font-size: 0.78rem; font-weight: 700; }
.hero-rating-badge { width: fit-content; display: inline-flex; align-items: center; gap: 12px; margin-top: 8px; border: 1px solid rgba(6, 43, 73, 0.18); border-radius: 12px; padding: 10px 14px; background: rgba(255, 255, 255, 0.78); color: var(--ink); box-shadow: 0 10px 22px rgba(6, 43, 73, 0.08); }
.hero-rating-badge:hover { border-color: var(--blue); transform: translateY(-1px); }
.hero-rating-stars, .review-stars { color: #f5ad00; letter-spacing: 0.08em; font-size: 1.08rem; line-height: 1; }
.hero-rating-badge span:last-child { display: grid; gap: 2px; }
.hero-rating-badge strong { font-size: 0.92rem; line-height: 1.1; }
.hero-rating-badge small { color: var(--muted); font-size: 0.72rem; font-weight: 700; line-height: 1.2; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 11px; margin-top: 25px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 9px 18px; margin-top: 26px; color: var(--ink-2); font-size: 0.82rem; font-weight: 800; }
.hero-trust span { display: flex; align-items: center; gap: 7px; }
.hero-trust span::before { width: 8px; height: 8px; border-radius: 50%; background: var(--sky); content: ""; }
.hero-media { position: relative; min-height: 690px; background: var(--ink); }
.hero-media::before { position: absolute; inset: 0 0 0 -70px; z-index: 1; background: var(--ink); clip-path: polygon(70px 0, 100% 0, 100% 100%, 0 100%); content: ""; }
.hero-media img { position: absolute; inset: 28px 0 28px -34px; z-index: 2; width: calc(100% + 34px); height: calc(100% - 56px); object-fit: cover; clip-path: polygon(80px 0, 100% 0, 100% 100%, 0 100%); }
.hero-media::after { position: absolute; right: 0; bottom: 72px; z-index: 3; width: 72%; height: 16px; background: var(--orange); content: ""; }
.availability-card {
  position: absolute;
  left: 5px;
  bottom: 55px;
  z-index: 4;
  width: min(330px, calc(100% - 32px));
  border-radius: 14px;
  padding: 18px 20px;
  background: #fff;
  box-shadow: var(--shadow);
}
.availability-card strong { display: block; color: var(--ink); font-size: 1.05rem; }
.availability-card span { color: var(--muted); font-size: 0.78rem; }
.availability-card .availability-kicker { display: block; margin-bottom: 7px; color: var(--blue); font-size: 0.67rem; font-weight: 900; letter-spacing: 0.11em; }
.status-dot { display: inline-block; width: 10px; height: 10px; margin-right: 7px; border-radius: 50%; background: #20b866; box-shadow: 0 0 0 5px rgba(32, 184, 102, 0.14); }

.proof-strip { position: relative; z-index: 5; margin-top: -45px; }
.proof-grid { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--line); border-radius: 15px; background: #fff; box-shadow: var(--shadow); }
.proof-item { min-height: 116px; display: flex; flex-direction: column; justify-content: center; padding: 19px 24px; border-right: 1px solid var(--line); }
.proof-item:last-child { border-right: 0; }
.proof-item strong { color: var(--ink); font-family: Impact, "Arial Narrow", sans-serif; font-size: 1.7rem; font-weight: 900; line-height: 1; }
.proof-item span { margin-top: 8px; color: var(--muted); font-size: 0.78rem; font-weight: 750; }
.stars { color: #f6a800 !important; letter-spacing: 0.06em; }

.problem-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.problem-card { position: relative; overflow: hidden; min-height: 260px; border: 1px solid var(--line); border-radius: var(--radius); padding: 27px; background: #fff; }
.problem-card::after { position: absolute; right: -32px; bottom: -40px; width: 128px; height: 128px; border: 24px solid var(--mist); border-radius: 50%; content: ""; }
.problem-number { display: inline-grid; place-items: center; width: 38px; height: 38px; margin-bottom: 32px; border-radius: 50%; background: var(--ink); color: #fff; font-size: 0.78rem; font-weight: 900; }
.problem-card h3 { margin-bottom: 10px; }
.problem-card p { position: relative; z-index: 1; color: var(--muted); }
.problem-card a { color: var(--blue); font-weight: 900; }

.service-feature-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 18px; }
.service-feature {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  border-radius: 22px;
  padding: 34px;
  color: #fff;
}
.service-feature img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.service-feature::after { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(6, 43, 73, 0.05) 20%, rgba(6, 43, 73, 0.94) 92%); content: ""; }
.service-feature-content { position: relative; z-index: 1; }
.service-feature h3 { color: #fff; font-size: clamp(2.2rem, 4vw, 4rem); text-transform: uppercase; }
.service-feature p { max-width: 570px; color: #d7e7f0; }
.service-list { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.service-tile { min-height: 170px; display: flex; flex-direction: column; justify-content: space-between; border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; background: #fff; transition: transform 0.2s ease, border-color 0.2s ease; }
.service-tile:hover { transform: translateY(-3px); border-color: var(--sky); }
.service-tile .tile-icon { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 10px; background: var(--mist); color: var(--blue); }
.service-tile h3 { margin: 20px 0 8px; font-size: 1.38rem; }
.service-tile p { margin: 0; color: var(--muted); font-size: 0.86rem; line-height: 1.5; }
.service-tile .arrow { margin-top: 12px; color: var(--orange); font-weight: 900; }

.diagnosis-grid { display: grid; grid-template-columns: 0.82fr 1.18fr; gap: 64px; align-items: center; }
.diagnosis-media { position: relative; }
.diagnosis-media img { width: 100%; height: auto; aspect-ratio: 1 / 1; border-radius: 24px; object-fit: cover; box-shadow: var(--shadow); }
.diagnosis-media .stamp { position: absolute; right: -22px; bottom: 28px; width: 148px; height: 148px; display: grid; place-items: center; border: 8px solid #fff; border-radius: 50%; padding: 18px; background: var(--orange); color: #fff; font-family: Impact, "Arial Narrow", sans-serif; font-size: 1rem; font-weight: 900; line-height: 1.05; text-align: center; text-transform: uppercase; transform: rotate(-8deg); box-shadow: var(--shadow); }
.process-list { margin: 30px 0 0; padding: 0; list-style: none; counter-reset: process; }
.process-list li { position: relative; min-height: 88px; padding: 0 0 24px 72px; counter-increment: process; }
.process-list li::before { position: absolute; left: 0; top: -4px; width: 46px; height: 46px; display: grid; place-items: center; border-radius: 50%; background: var(--sky); color: var(--ink); content: counter(process); font-weight: 900; }
.process-list li::after { position: absolute; left: 22px; top: 49px; bottom: 3px; width: 2px; background: var(--line); content: ""; }
.process-list li:last-child::after { display: none; }
.process-list strong { display: block; color: var(--ink); font-size: 1.02rem; }
.process-list span { color: var(--muted); font-size: 0.9rem; }

.answer-box { margin: 25px 0; border-left: 6px solid var(--orange); border-radius: 0 14px 14px 0; padding: 22px 26px; background: var(--mist); }
.answer-box strong { display: block; margin-bottom: 6px; color: var(--blue); font-size: 0.72rem; font-weight: 900; letter-spacing: 0.13em; text-transform: uppercase; }
.answer-box p:last-child { margin-bottom: 0; }

.gallery-grid { display: grid; grid-template-columns: 1.25fr 0.75fr 0.75fr; grid-template-rows: 240px 240px; gap: 12px; }
.gallery-grid figure { position: relative; overflow: hidden; margin: 0; border-radius: 14px; background: var(--mist); }
.gallery-grid figure:first-child { grid-row: 1 / 3; }
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.35s ease; }
.gallery-grid figure:hover img { transform: scale(1.035); }
.gallery-grid figcaption { position: absolute; right: 10px; bottom: 10px; left: 10px; padding: 9px 11px; border-radius: 8px; background: rgba(6, 43, 73, 0.86); color: #fff; font-size: 0.72rem; }

.rating-panel { display: grid; grid-template-columns: 0.7fr 1.3fr; gap: 55px; align-items: center; }
.rating-score { border: 1px solid #2a6388; border-radius: 20px; padding: 34px; background: #0b3959; }
.rating-score strong { display: block; color: #fff; font-family: Impact, "Arial Narrow", sans-serif; font-size: 5rem; line-height: 0.9; }
.rating-score .stars { display: block; margin-top: 17px; font-size: 1.35rem; }
.rating-score p { margin: 8px 0 0; }
.rating-copy h2 { margin-bottom: 18px; }
.rating-copy .button-row { margin-top: 25px; }
.review-grid { display: grid !important; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; align-items: stretch; }
.review-card { display: flex !important; flex-direction: column; min-height: 340px; border: 1px solid #c8dce8; border-radius: 18px; padding: 24px; background: #fff; box-shadow: 0 14px 34px rgba(6, 43, 73, 0.1); }
.review-card-top { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding-bottom: 15px; border-bottom: 1px solid #e1edf3; }
.review-source { color: #5e7485; font-size: 0.68rem; font-weight: 900; text-transform: uppercase; letter-spacing: 0.08em; }
.review-stars { color: #f5ad00 !important; font-size: 1.18rem; letter-spacing: 0.07em; line-height: 1; white-space: nowrap; }
.review-quote { display: -webkit-box; -webkit-line-clamp: 7; -webkit-box-orient: vertical; overflow: hidden; margin: 18px 0 22px; color: #17384f; font-size: 0.96rem; line-height: 1.58; }
.review-author { display: grid; gap: 2px; margin: auto 0 0; padding-top: 16px; border-top: 1px solid #e1edf3; }
.review-author strong { color: #062b49; font-size: 0.95rem; }
.review-author span { color: #5e7485; font-size: 0.76rem; }

.area-panels { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.area-panel { position: relative; overflow: hidden; min-height: 410px; display: flex; flex-direction: column; justify-content: flex-end; border-radius: 20px; padding: 32px; background: var(--ink); color: #fff; }
.area-panel::before { position: absolute; inset: 0; opacity: 0.34; background: radial-gradient(circle at 76% 20%, var(--sky), transparent 34%), repeating-linear-gradient(135deg, transparent 0 26px, rgba(255,255,255,0.07) 26px 28px); content: ""; }
.area-panel:nth-child(2) { background: var(--blue); }
.area-panel-content { position: relative; z-index: 1; }
.area-panel h3 { color: #fff; font-size: clamp(2.1rem, 4vw, 3.7rem); text-transform: uppercase; }
.area-panel p { color: #d9e8f2; }
.pill-list { display: flex; flex-wrap: wrap; gap: 7px; margin: 18px 0 24px; }
.pill { border: 1px solid rgba(255, 255, 255, 0.35); border-radius: 99px; padding: 6px 10px; color: #fff; font-size: 0.75rem; font-weight: 800; }

.faq-list { display: grid; gap: 11px; }
.faq-list details { border: 1px solid var(--line); border-radius: 12px; background: #fff; padding-inline: 20px; }
.faq-list summary { position: relative; cursor: pointer; list-style: none; padding: 18px 40px 18px 0; color: var(--ink); font-weight: 850; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { position: absolute; right: 2px; color: var(--orange); content: "+"; font-size: 1.5rem; line-height: 1; }
.faq-list details[open] summary::after { content: "−"; }
.faq-list details p { padding-bottom: 18px; color: var(--muted); }

.cta-band { position: relative; overflow: hidden; padding: 74px 0; background: var(--orange); color: #fff; }
.cta-band::after { position: absolute; right: -120px; top: -160px; width: 420px; height: 420px; border: 72px solid rgba(255, 255, 255, 0.13); border-radius: 50%; content: ""; }
.cta-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr auto; gap: 50px; align-items: center; }
.cta-band h2 { max-width: 760px; margin-bottom: 14px; color: #fff; text-transform: uppercase; }
.cta-band p { max-width: 720px; margin-bottom: 0; }
.cta-actions { display: grid; gap: 10px; min-width: 250px; }

.page-hero { overflow: hidden; border-bottom: 1px solid var(--line); background: var(--mist); }
.page-hero-grid { min-height: 515px; display: grid; grid-template-columns: 1.08fr 0.92fr; align-items: center; gap: 58px; }
.page-hero-copy { padding: 68px 0; }
.page-hero h1 { margin-bottom: 22px; font-size: clamp(3.1rem, 6.1vw, 6rem); text-transform: uppercase; }
.page-hero h1 .accent { color: var(--blue); }
.page-hero-media { position: relative; width: min(100%, 560px); height: min(44vw, 560px); min-height: 0; aspect-ratio: 1 / 1; justify-self: end; }
.page-hero-media::before { position: absolute; inset: 35px -120px 35px 0; border-radius: 28px 0 0 28px; background: var(--ink); content: ""; }
.page-hero-media img { position: absolute; inset: 52px -60px 52px 18px; width: calc(100% + 42px); height: calc(100% - 104px); border-radius: 22px 0 0 22px; object-fit: cover; }
.breadcrumbs { margin-bottom: 22px; color: var(--muted); font-size: 0.78rem; font-weight: 750; }
.breadcrumbs a { color: var(--blue); }
.breadcrumbs span { margin-inline: 6px; color: #96a9b7; }

.content-layout { display: grid; grid-template-columns: minmax(0, 1fr) 340px; gap: 62px; align-items: start; }
.prose { font-size: 1.03rem; }
.prose p, .prose li { color: #405f74; }
.prose h2 { margin-top: 2.4rem; }
.prose h3 { margin-top: 1.8rem; }
.prose a { color: var(--blue); font-weight: 750; text-decoration: underline; text-underline-offset: 3px; }
.prose ul, .prose ol { padding-left: 22px; }
.prose li { margin-bottom: 8px; }
.prose > h2[id], .prose > h3[id] { scroll-margin-top: 150px; }
.content-meta { margin-bottom: 28px; border-bottom: 1px solid var(--line); padding-bottom: 16px; color: var(--muted) !important; font-size: 0.8rem; }
.sidebar-card { position: sticky; top: 145px; border: 1px solid var(--line); border-radius: 18px; padding: 25px; background: #fff; box-shadow: 0 15px 50px rgba(6, 43, 73, 0.08); }
.sidebar-card + .sidebar-card { margin-top: 14px; }
.sidebar-card h3 { margin-bottom: 12px; }
.sidebar-card p { color: var(--muted); font-size: 0.9rem; }
.sidebar-card .btn { width: 100%; margin-top: 8px; }
.mini-facts { display: grid; gap: 9px; margin: 17px 0; padding: 0; list-style: none; }
.mini-facts li { display: flex; gap: 9px; color: var(--text); font-size: 0.83rem; font-weight: 750; }
.mini-facts li::before { color: var(--sky); content: "✓"; font-weight: 900; }

.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 17px; }
.info-card { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; }
.info-card img { width: 100%; height: 220px; object-fit: cover; }
.info-card-body { padding: 23px; }
.info-card h3 { margin-bottom: 10px; }
.info-card p { color: var(--muted); font-size: 0.9rem; }
.text-link { color: var(--blue); font-weight: 900; }
.text-link::after { margin-left: 5px; color: var(--orange); content: "→"; }
.link-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.link-grid a { border: 1px solid var(--line); border-radius: 10px; padding: 13px 14px; background: #fff; color: var(--ink); font-size: 0.84rem; font-weight: 850; }
.link-grid a:hover { border-color: var(--sky); color: var(--blue); }
.region-group + .region-group { margin-top: 44px; }
.region-group h2 { margin-bottom: 19px; font-size: 2.5rem; }
.region-note { margin-bottom: 20px; border-left: 4px solid var(--sky); padding: 14px 17px; background: var(--mist); color: var(--text); }

.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; counter-reset: steps; }
.step-card { min-height: 235px; border: 1px solid var(--line); border-radius: 15px; padding: 23px; background: #fff; counter-increment: steps; }
.step-card::before { display: grid; place-items: center; width: 38px; height: 38px; margin-bottom: 28px; border-radius: 50%; background: var(--orange); color: #fff; content: counter(steps); font-weight: 900; }
.step-card h3 { font-size: 1.34rem; }
.step-card p { color: var(--muted); font-size: 0.87rem; }

.contact-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 30px; }
.contact-stack { display: grid; gap: 13px; }
.contact-card { border: 1px solid var(--line); border-radius: 15px; padding: 24px; background: #fff; }
.contact-card span { display: block; color: var(--muted); font-size: 0.75rem; font-weight: 800; text-transform: uppercase; }
.contact-card strong { display: block; margin-top: 4px; color: var(--ink); font-size: 1.15rem; }
.lead-form { border-radius: 20px; padding: 30px; background: var(--ink); color: #fff; }
.lead-form h2 { color: #fff; }
.lead-form > p { color: #c6d9e7; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 13px; }
.lead-form label { display: grid; gap: 6px; margin-bottom: 13px; color: #d8e8f1; font-size: 0.78rem; font-weight: 800; }
.lead-form input, .lead-form select, .lead-form textarea { width: 100%; border: 1px solid #35698c; border-radius: 9px; padding: 12px 13px; background: #0c3a5a; color: #fff; outline: none; }
.lead-form input::placeholder, .lead-form textarea::placeholder { color: #9eb8ca; }
.lead-form input:focus, .lead-form select:focus, .lead-form textarea:focus { border-color: var(--sky); box-shadow: 0 0 0 3px rgba(36, 185, 243, 0.16); }
.lead-form .btn { width: 100%; margin-top: 4px; }
.form-note { margin: 11px 0 0 !important; color: #9eb8ca !important; font-size: 0.73rem !important; }
.form-note a { color: var(--sky-2); text-decoration: underline; }

.fact-table { overflow: hidden; border: 1px solid var(--line); border-radius: 14px; }
.fact-row { display: grid; grid-template-columns: 190px 1fr; border-bottom: 1px solid var(--line); }
.fact-row:last-child { border-bottom: 0; }
.fact-row strong, .fact-row span { padding: 13px 16px; }
.fact-row strong { background: var(--mist); color: var(--ink); }
.fact-row span { background: #fff; }

.site-footer { padding: 72px 0 104px; background: #031e34; color: #bed2df; }
.footer-grid { display: grid; grid-template-columns: 1.35fr 1fr 1fr 1fr; gap: 38px; }
.footer-logo { width: 220px; height: 150px; margin-bottom: 17px; object-fit: contain; object-position: left center; }
.site-footer h3 { margin-bottom: 17px; color: #fff; font-size: 1rem; letter-spacing: 0.03em; text-transform: uppercase; }
.site-footer p, .site-footer li, .site-footer a { color: #a9c0cf; font-size: 0.83rem; }
.site-footer a:hover { color: var(--sky-2); }
.site-footer ul { display: grid; gap: 7px; margin: 0; padding: 0; list-style: none; }
.footer-details { margin-top: 28px; border-block: 1px solid #17435f; padding: 21px 0; font-size: 0.78rem; }
.footer-bottom { display: flex; justify-content: space-between; gap: 28px; padding-top: 19px; color: #83a0b3; font-size: 0.73rem; }
.footer-bottom a { font-size: inherit; }
.mobile-cta { display: none; }

[data-reveal] { opacity: 0; transform: translateY(18px); transition: opacity 0.55s ease, transform 0.55s ease; }
[data-reveal].is-visible { opacity: 1; transform: none; }

@media (max-width: 1080px) {
  .desktop-nav, .header-call { display: none; }
  .nav-actions { margin-left: auto; }
  .menu-btn { display: inline-grid; place-items: center; }
  .hero-grid { min-height: auto; grid-template-columns: 1fr; }
  .hero-copy { padding: 70px 0 50px; }
  .hero-media { min-height: 520px; }
  .hero-media::before { left: 0; clip-path: none; }
  .hero-media img { inset: 20px; width: calc(100% - 40px); height: calc(100% - 40px); border-radius: 20px; clip-path: none; }
  .availability-card { left: 38px; bottom: 42px; }
  .proof-strip { margin-top: 22px; }
  .service-feature-grid { grid-template-columns: 1fr; }
  .service-feature { min-height: 520px; }
  .content-layout { grid-template-columns: 1fr; }
  .sidebar-card { position: static; }
  .footer-grid { grid-template-columns: 1.3fr 1fr 1fr; }
  .footer-grid > div:last-child { display: none; }
}

@media (max-width: 760px) {
  .container, .narrow { width: min(calc(100% - 28px), var(--max)); }
  .section { padding: 72px 0; }
  .section-sm { padding: 50px 0; }
  .topline-inner { min-height: 42px; justify-content: center; text-align: center; }
  .topline-inner span:last-child { display: none; }
  /* Mobile dropdown: keep the full menu visible directly below the header.
     Using absolute positioning here avoids iOS Safari trapping a fixed menu
     inside the backdrop-filtered sticky header. */
  .site-header { position: sticky; }
  .mobile-menu {
    position: absolute;
    top: 100%;
    right: 0;
    bottom: auto;
    left: 0;
    max-height: none;
    overflow: visible;
    padding: 12px 22px 20px;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 18px 34px rgba(3, 30, 52, 0.16);
    background: #fff;
  }
  .mobile-menu a:not(.btn) {
    padding: 12px 2px;
    font-size: 1.02rem;
  }
  .mobile-menu .mobile-menu-actions {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 14px;
  }
  .mobile-menu .mobile-menu-actions .btn {
    min-height: 48px;
    padding: 10px 9px;
    font-size: 0.82rem;
  }
  .nav-row { min-height: 82px; }
  .brand img { width: 54px; height: 54px; }
  .brand-copy strong { font-size: 1.08rem; }
  .brand-copy span { font-size: 0.52rem; }
  .nav-actions > .btn { display: none; }
  .hero h1 { font-size: clamp(3.35rem, 16vw, 5.2rem); }
  .hero-copy { padding-top: 54px; }
  .hero-positioning { width: 100%; }
  .hero-rating-badge { width: 100%; max-width: 330px; }
  .hero-actions .btn { width: 100%; }
  .hero-media { min-height: 410px; }
  .hero-media img { inset: 12px; width: calc(100% - 24px); height: calc(100% - 24px); }
  .hero-media::after { right: 12px; bottom: 12px; }
  .availability-card { left: 24px; bottom: 24px; }
  .proof-grid { grid-template-columns: 1fr 1fr; }
  .proof-item { min-height: 100px; border-bottom: 1px solid var(--line); }
  .proof-item:nth-child(2) { border-right: 0; }
  .proof-item:nth-child(n + 3) { border-bottom: 0; }
  .problem-grid, .card-grid { grid-template-columns: 1fr; }
  .service-list { grid-template-columns: 1fr; }
  .service-feature { min-height: 450px; padding: 25px; }
  .diagnosis-grid, .rating-panel, .area-panels, .contact-grid { grid-template-columns: 1fr; gap: 34px; }
  .review-grid { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
  .diagnosis-media .stamp { right: -4px; width: 122px; height: 122px; font-size: 0.85rem; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 320px 180px 180px; }
  .gallery-grid figure:first-child { grid-column: 1 / 3; grid-row: auto; }
  .cta-grid { grid-template-columns: 1fr; gap: 28px; }
  .cta-actions { min-width: 0; }
  .page-hero-grid { min-height: auto; grid-template-columns: 1fr; gap: 0; }
  .page-hero-copy { padding: 50px 0 30px; }
  .page-hero h1 { font-size: clamp(3rem, 14vw, 4.8rem); }
  .page-hero-media { width: min(100%, 520px); height: auto; min-height: 0; aspect-ratio: 1 / 1; justify-self: stretch; }
  .page-hero-media::before { inset: 10px -28px 18px 0; }
  .page-hero-media img { inset: 24px -14px 32px 14px; width: calc(100% + 14px); height: calc(100% - 56px); }
  .link-grid { grid-template-columns: 1fr 1fr; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .form-grid { grid-template-columns: 1fr; gap: 0; }
  .fact-row { grid-template-columns: 1fr; }
  .fact-row strong { padding-bottom: 4px; }
  .fact-row span { padding-top: 4px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; }
  .mobile-cta { position: fixed; right: 0; bottom: 0; left: 0; z-index: 150; display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 7px; border-top: 1px solid #1a4c6d; padding: 8px; background: #031e34; }
  .mobile-cta a { min-height: 49px; display: grid; place-items: center; border-radius: 8px; color: #fff; font-weight: 900; }
  .mobile-cta a:first-child { background: var(--blue); }
  .mobile-cta a:last-child { background: var(--green); }
  .site-footer { padding-bottom: 130px; }
}

@media (max-width: 480px) {
  .brand-copy span { display: none; }
  .proof-item { padding: 16px; }
  .proof-item strong { font-size: 1.35rem; }
  .gallery-grid { grid-template-columns: 1fr; grid-template-rows: 300px repeat(4, 200px); }
  .gallery-grid figure:first-child { grid-column: auto; }
  .link-grid, .steps-grid, .footer-grid { grid-template-columns: 1fr; }
  .review-grid { grid-template-columns: 1fr !important; }
  .footer-grid > div:first-child { grid-column: auto; }
  .lead-form { padding: 23px 18px; }
  .button-row .btn { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
  [data-reveal] { opacity: 1; transform: none; }
}

/* Mobile-only header cleanup: keep desktop header unchanged. */
.topline-mobile-copy { display: none; }

@media (max-width: 760px) {
  .topline-inner {
    min-height: 42px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    justify-content: initial;
    gap: 12px;
    text-align: left;
    font-size: 0.72rem;
    letter-spacing: 0.025em;
  }

  .topline-inner > span:not(.topline-mobile-copy) { display: none; }

  .topline-inner .topline-mobile-copy {
    display: block;
    min-width: 0;
    overflow: hidden;
    color: #fff;
    white-space: nowrap;
    text-overflow: ellipsis;
    text-transform: uppercase;
    font-size: 0.69rem;
    letter-spacing: 0.06em;
  }

  .topline-inner > a {
    justify-self: end;
    white-space: nowrap;
    color: var(--sky-2);
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.02em;
  }
}
