:root {
  --blue: #0067d8;
  --blue-2: #00a8ff;
  --navy: #061a3a;
  --deep: #020b1f;
  --text: #10213f;
  --muted: #62708a;
  --line: #dce8f6;
  --bg: #f5f9ff;
  --white: #ffffff;
  --shadow: 0 22px 70px rgba(2, 24, 61, 0.16);
  --radius: 26px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background: var(--white);
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  line-height: 1.6;
}

body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }

.top-strip {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 9px clamp(18px, 5vw, 72px);
  color: #dcecff;
  background: linear-gradient(90deg, var(--deep), var(--navy));
  font-size: 0.88rem;
  font-weight: 800;
}

.top-strip a { color: #fff; }

.site-header {
  position: sticky;
  z-index: 30;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 84px;
  padding: 12px clamp(18px, 5vw, 72px);
  border-bottom: 1px solid rgba(0, 103, 216, 0.12);
  color: var(--text);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(16px);
  box-shadow: 0 10px 28px rgba(8, 38, 82, 0.04);
}

.brand {
  display: inline-flex;
  width: clamp(145px, 16vw, 190px);
  flex: 0 0 auto;
}

.brand img {
  width: 100%;
  padding: 6px 8px;
  border-radius: 18px;
  background: #fff;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.4vw, 26px);
  font-size: 0.94rem;
  font-weight: 800;
}

.nav a {
  color: #183057;
}

.nav a:hover {
  color: var(--blue);
}

.nav a:last-child {
  padding: 11px 17px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
  box-shadow: 0 10px 24px rgba(0, 103, 216, 0.22);
}

.menu-button {
  display: none;
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 16px;
  color: var(--navy);
  background: #fff;
  font-weight: 900;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: auto;
  color: #fff;
  background: #061a3a;
}

.hero::before {
  position: absolute;
  inset: 0;
  content: "";
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(2, 11, 31, 0.92) 0%, rgba(6, 26, 58, 0.72) 42%, rgba(0, 103, 216, 0.22) 100%),
    radial-gradient(circle at 18% 22%, rgba(0, 168, 255, 0.28), transparent 32%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.86;
  filter: saturate(1.08) contrast(1.04);
}

.hero-shade {
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  height: 38%;
  background: linear-gradient(to top, rgba(2, 11, 31, 0.58), transparent);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: clamp(34px, 6vw, 66px);
  align-items: center;
  min-height: 680px;
  padding: clamp(62px, 9vw, 108px) clamp(18px, 5vw, 72px);
}

.hero-copy { max-width: 780px; }

.hero .eyebrow { color: #9fe0ff; }
.hero h1 { color: #fff; }
.hero-copy > p:not(.eyebrow) { color: #e8f5ff; }

.eyebrow {
  margin: 0 0 12px;
  color: var(--blue);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1, h2, h3 {
  margin: 0;
  color: var(--navy);
  line-height: 1.08;
  letter-spacing: -0.03em;
  overflow-wrap: anywhere;
}

h1 { font-size: clamp(2.65rem, 5.6vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.3rem); }
h3 { font-size: 1.28rem; }
p { overflow-wrap: anywhere; }

.hero-copy > p:not(.eyebrow),
.section-head > p,
.section-heading > p,
.page-hero p:not(.eyebrow),
.contact-copy > p,
.method-copy > p {
  max-width: 720px;
  color: #4a5d7c;
  font-size: clamp(1.02rem, 1.8vw, 1.18rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.button,
.contact-form button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 14px 20px;
  font-weight: 900;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button:hover,
.contact-form button:hover {
  transform: translateY(-2px);
}

.button.primary,
.contact-form button {
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
  box-shadow: 0 16px 32px rgba(0, 103, 216, 0.25);
}

.button.ghost {
  color: var(--navy);
  border-color: var(--line);
  background: #fff;
}

.button.soft {
  color: var(--blue);
  border-color: rgba(0, 103, 216, 0.14);
  background: rgba(0, 168, 255, 0.1);
  box-shadow: none;
}

.button.whatsapp {
  color: #fff;
  background: linear-gradient(135deg, #0d8f4f, #1cc86f);
  box-shadow: 0 16px 34px rgba(13, 143, 79, 0.26);
}

.hero-pain-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.hero-pain-points span {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  border: 1px solid rgba(0, 103, 216, 0.14);
  border-radius: 999px;
  padding: 8px 13px;
  color: #fff;
  background: rgba(255, 255, 255, 0.13);
  backdrop-filter: blur(10px);
  font-size: 0.9rem;
  font-weight: 900;
}

.hero-panel {
  display: grid;
  gap: 16px;
  padding: 32px;
  border: 1px solid rgba(0, 103, 216, 0.14);
  border-radius: 36px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow);
}

.hero-panel img {
  width: min(100%, 440px);
  margin-inline: auto;
}

.hero-panel p,
.hero-panel strong { margin: 0; }

.hero-panel p { color: var(--muted); }
.hero-panel strong { color: var(--navy); font-size: 1.08rem; }

.hero-panel ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-panel li {
  position: relative;
  padding-left: 24px;
  color: #2b4264;
  font-weight: 800;
}

.hero-panel li::before {
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--blue-2);
  box-shadow: 0 0 0 7px rgba(0, 168, 255, 0.12);
  content: "";
}

.proof-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  padding: 18px clamp(18px, 5vw, 72px);
  background: #fff;
}

.proof-bar div {
  min-height: auto;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(9, 42, 90, 0.07);
}

.proof-bar span,
.service-card span,
.timeline span {
  display: inline-grid;
  min-width: 42px;
  height: 34px;
  place-items: center;
  margin-bottom: 12px;
  border-radius: 999px;
  color: var(--blue);
  background: rgba(0, 168, 255, 0.12);
  font-size: 0.85rem;
  font-weight: 900;
}

.proof-bar strong {
  display: block;
  color: var(--navy);
  font-size: 1.12rem;
}

.proof-bar p,
.trust-strip p,
.service-card p,
.timeline p,
.sector-list p,
.gallery-card p,
.legal-note span,
.site-footer span,
.form-status {
  color: var(--muted);
}

.trust-strip {
  display: grid;
  grid-template-columns: 1.08fr repeat(3, minmax(0, 1fr));
  gap: 14px;
  padding: 18px clamp(18px, 5vw, 72px) clamp(36px, 5vw, 58px);
  background: #fff;
}

.trust-strip > div {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(9, 42, 90, 0.07);
}

.trust-strip strong {
  display: block;
  color: var(--navy);
  font-size: 1.06rem;
}

.trust-score {
  color: #fff;
  border-color: transparent !important;
  background:
    radial-gradient(circle at top right, rgba(0, 168, 255, 0.32), transparent 34%),
    linear-gradient(135deg, #061a3a, #084d9f) !important;
}

.trust-score span {
  display: block;
  margin-bottom: 8px;
  color: #ffcf66;
  font-size: 1.08rem;
  letter-spacing: 0.08em;
}

.trust-score strong,
.trust-score p,
.trust-score .text-link {
  color: #fff;
}

.trust-score p { opacity: 0.84; }

.section,
.method,
.split-section,
.contact,
.specialty,
.legal-preview {
  padding: clamp(68px, 9vw, 104px) clamp(18px, 5vw, 72px);
}

.section-head,
.section-heading {
  max-width: 860px;
  margin-bottom: 34px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.clean-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }

.service-card {
  min-height: 230px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 16px 38px rgba(8, 38, 82, 0.08);
}

.service-card.featured {
  color: #fff;
  border-color: transparent;
  background:
    radial-gradient(circle at top right, rgba(0, 168, 255, 0.35), transparent 34%),
    linear-gradient(135deg, #061a3a, #084d9f);
}

.service-card.featured h3,
.service-card.featured p { color: #fff; }
.service-card.featured p { opacity: 0.8; }

.service-card h3 { margin: 4px 0 10px; }

.why-section {
  background:
    radial-gradient(circle at 12% 14%, rgba(0, 168, 255, 0.12), transparent 28%),
    var(--bg);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.why-grid article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(8, 38, 82, 0.06);
}

.why-grid strong {
  display: block;
  color: var(--navy);
  font-size: 1.05rem;
}

.why-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.field-proof {
  background: #fff;
}

.field-proof-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1.15fr);
  gap: clamp(28px, 5vw, 58px);
  align-items: start;
}

.evidence-list {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.evidence-list article,
.faq-list details {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(8, 38, 82, 0.05);
}

.evidence-list strong,
.faq-list summary {
  color: var(--navy);
  font-weight: 900;
}

.evidence-list p,
.long-copy p,
.long-copy li,
.faq-list p,
.price-list p,
.pro-list p {
  color: var(--muted);
}

.photo-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.photo-strip figure {
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 16px 38px rgba(8, 38, 82, 0.08);
}

.photo-strip img {
  width: 100%;
  min-height: 220px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.photo-strip img[src*="photo-"],
.gallery-card img[src*="photo-"],
.local-photo-band img[src*="photo-"] {
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center;
}

.gallery-card img.wide-photo,
.local-photo-band img.wide-photo,
.photo-strip img.wide-photo {
  aspect-ratio: 4 / 3;
}

.photo-strip figcaption {
  padding: 16px 18px 18px;
  color: #223a60;
  font-weight: 850;
}

.whatsapp-callout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  margin-top: 34px;
  padding: clamp(24px, 4vw, 38px);
  border-radius: 30px;
  color: #fff;
  background:
    radial-gradient(circle at 88% 20%, rgba(28, 200, 111, 0.34), transparent 34%),
    linear-gradient(135deg, #061a3a, #0d8f4f);
  box-shadow: var(--shadow);
}

.whatsapp-callout h2,
.whatsapp-callout h3,
.whatsapp-callout p {
  color: #fff;
}

.whatsapp-callout p {
  margin: 8px 0 0;
  opacity: 0.86;
}

.long-copy {
  display: grid;
  gap: 22px;
}

.long-copy h2 {
  margin-top: 12px;
}

.long-copy ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 20px;
  font-weight: 800;
}

.local-photo-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.local-photo-band img {
  width: 100%;
  min-height: 190px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: 0 14px 34px rgba(8, 38, 82, 0.08);
}

.faq-section {
  background: var(--bg);
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 960px;
}

.faq-list summary {
  cursor: pointer;
  list-style-position: outside;
}

.faq-list p {
  margin-bottom: 0;
}

.price-list,
.pro-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.price-list article,
.pro-list article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 14px 34px rgba(8, 38, 82, 0.06);
}

.quick-contact {
  position: fixed;
  z-index: 35;
  right: 18px;
  bottom: 18px;
  display: flex;
  gap: 10px;
}

.quick-contact a {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 12px 16px;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
  font-size: 0.92rem;
  font-weight: 950;
  box-shadow: 0 14px 34px rgba(0, 103, 216, 0.24);
}

.quick-contact a:last-child {
  background: linear-gradient(135deg, #0d8f4f, #1cc86f);
}

.text-link {
  display: inline-flex;
  margin-top: 12px;
  color: var(--blue);
  font-weight: 900;
}

.featured .text-link { color: #fff; }

.method {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1.15fr);
  gap: clamp(32px, 6vw, 76px);
  color: #fff;
  background:
    radial-gradient(circle at 78% 30%, rgba(0, 168, 255, 0.28), transparent 32%),
    linear-gradient(135deg, #061a3a, #063f89 55%, #0079e9);
}

.method h2,
.method h3 { color: #fff; }
.method .eyebrow { color: #a7dcff; }
.method p { color: #dcecff; }

.timeline {
  display: grid;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.timeline li {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 18px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.1);
}

.timeline span {
  min-width: 42px;
  height: 42px;
  margin: 0;
  color: var(--blue);
  background: #fff;
}

.timeline p { margin: 8px 0 0; }

.specialty {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.58fr);
  gap: clamp(32px, 6vw, 76px);
  background: #fff;
}

.specialty p { color: var(--muted); }

.specialty ul {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding-left: 20px;
  color: var(--navy);
  font-weight: 800;
}

.specialty aside,
.legal-note,
.attachment-note,
.appointment-panel {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg);
}

.split-section,
.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(320px, 1fr);
  gap: clamp(32px, 6vw, 76px);
  align-items: start;
}

.sector-list {
  display: grid;
  gap: 14px;
}

.sector-list article {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(8, 38, 82, 0.05);
}

.page-main { padding-top: 0; }

.page-hero {
  padding: clamp(72px, 10vw, 120px) clamp(18px, 5vw, 72px);
  color: #fff;
  background:
    radial-gradient(circle at 78% 30%, rgba(0, 168, 255, 0.28), transparent 32%),
    linear-gradient(135deg, #061a3a, #063f89 55%, #0079e9);
}

.page-hero h1 { max-width: 980px; color: #fff; }
.page-hero .eyebrow { color: #a7dcff; }
.page-hero p:not(.eyebrow) { color: #dcecff; }

.compact-section { padding-top: clamp(46px, 7vw, 82px); }

.contact { background: var(--bg); }
.page-contact { padding-top: clamp(62px, 8vw, 100px); }

.contact-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 800px;
  margin-top: 26px;
}

.contact-links a {
  display: flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 13px 16px;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
  font-weight: 900;
  text-align: center;
  box-shadow: 0 14px 34px rgba(0, 103, 216, 0.2);
}

.social-links,
.footer-socials,
.footer-legal,
.legal-inline-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.social-links a,
.footer-socials a,
.footer-legal a,
.legal-inline-links a {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 13px;
  color: var(--blue);
  background: #fff;
  font-weight: 900;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 34px;
  background: #fff;
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: #213756;
  font-size: 0.94rem;
  font-weight: 900;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px 16px;
  color: var(--text);
  background: #fff;
  outline: none;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(0, 103, 216, 0.08);
}

.contact-form button { width: 100%; border: 0; }

.appointment-trigger {
  color: var(--blue);
  background: rgba(0, 168, 255, 0.12);
  box-shadow: none;
}

.appointment-panel { display: grid; gap: 12px; }
.appointment-panel[hidden] { display: none; }

.appointment-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.appointment-panel p,
.attachment-note p,
.note {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.reviews-section {
  background:
    radial-gradient(circle at 85% 16%, rgba(0, 168, 255, 0.1), transparent 28%),
    var(--bg);
}

.map-section {
  background: #fff;
}

.map-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.46fr);
  max-width: 980px;
  margin-inline: auto;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg);
  box-shadow: var(--shadow);
}

.map-card iframe {
  width: 100%;
  min-height: 300px;
  border: 0;
}

.map-details {
  display: grid;
  align-content: center;
  gap: 14px;
  padding: clamp(24px, 4vw, 38px);
}

.map-details p {
  margin: 0;
  color: var(--muted);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.reviews-carousel {
  max-width: 780px;
  margin-inline: auto;
}

.reviews-carousel .reviews-grid {
  display: block;
  position: relative;
  min-height: 290px;
}

.review-card {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 16px 38px rgba(8, 38, 82, 0.08);
}

.reviews-carousel .review-card {
  display: none;
  min-height: 290px;
  align-content: center;
  padding: clamp(28px, 5vw, 46px);
  text-align: center;
}

.reviews-carousel .review-card.is-active {
  display: grid;
  animation: reviewFade 0.28s ease;
}

.review-card p,
.review-card span {
  color: var(--muted);
}

.review-card span {
  display: inline-flex;
  margin-top: 8px;
  font-weight: 900;
}

.stars {
  margin-bottom: 12px;
  color: #ffb84d;
  font-size: 1.25rem;
  letter-spacing: 0.08em;
}

.reviews-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.reviews-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 18px;
}

.review-nav {
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--navy);
  background: #fff;
  font-size: 1.6rem;
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 10px 22px rgba(8, 38, 82, 0.08);
}

.review-nav:hover,
.review-dot:hover,
.review-dot.is-active {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
}

.review-dots {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.review-dot {
  width: 11px;
  height: 11px;
  border: 1px solid rgba(0, 103, 216, 0.28);
  border-radius: 999px;
  padding: 0;
  background: #fff;
  cursor: pointer;
}

@keyframes reviewFade {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.diagram-section {
  background:
    radial-gradient(circle at 86% 12%, rgba(0, 168, 255, 0.12), transparent 30%),
    var(--bg);
}

.diagram-grid {
  display: grid;
  gap: 22px;
}

.diagram-card {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  gap: 24px;
  align-items: center;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 16px 38px rgba(8, 38, 82, 0.08);
}

.diagram-visual {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #f7fbff;
}

.diagram-visual svg {
  display: block;
  width: 100%;
  height: auto;
}

.diagram-copy p,
.diagram-copy li {
  color: var(--muted);
}

.diagram-copy ul {
  display: grid;
  gap: 8px;
  margin: 18px 0 0;
  padding-left: 20px;
  font-weight: 800;
}

.gallery-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 16px 38px rgba(8, 38, 82, 0.08);
}

.gallery-card h3,
.gallery-card p {
  margin-left: 22px;
  margin-right: 22px;
}

.gallery-card h3 { margin-top: 20px; }
.gallery-card p { margin-bottom: 24px; }

.gallery-card img {
  display: block;
  width: 100%;
  min-height: 230px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-bottom: 1px solid var(--line);
}


.photo-placeholder {
  display: grid;
  min-height: 230px;
  aspect-ratio: 4 / 3;
  place-items: center;
  border-bottom: 1px solid var(--line);
  color: #1f477a;
  background:
    linear-gradient(135deg, rgba(0, 103, 216, 0.12), rgba(0, 168, 255, 0.22)),
    repeating-linear-gradient(45deg, #f4f9ff, #f4f9ff 12px, #eaf4ff 12px, #eaf4ff 24px);
  font-weight: 900;
}

.legal-preview {
  background: #fff;
}

.cgv-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.cgv-grid article,
.legal-page article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 12px 30px rgba(8, 38, 82, 0.06);
}

.legal-page {
  min-height: 100vh;
  padding: clamp(70px, 10vw, 120px) clamp(18px, 5vw, 72px);
  background: var(--bg);
}

.legal-page article {
  max-width: 920px;
  margin-inline: auto;
}

.legal-page p,
.legal-page li,
.legal-preview p {
  color: var(--muted);
}

.legal-page a { color: var(--blue); font-weight: 900; }

.zone-highlight-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.zone-highlight-grid article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 14px 34px rgba(8, 38, 82, 0.06);
}

.zone-highlight-grid span {
  display: inline-grid;
  min-width: 42px;
  height: 34px;
  place-items: center;
  margin-bottom: 12px;
  border-radius: 999px;
  color: var(--blue);
  background: rgba(0, 168, 255, 0.12);
  font-size: 0.85rem;
  font-weight: 900;
}

.zone-highlight-grid p {
  color: var(--muted);
}

.zone-list-section {
  background: var(--bg);
}

.city-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.city-cloud span {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 14px;
  color: #223a60;
  background: #fff;
  font-weight: 850;
}

.site-footer {
  display: grid;
  grid-template-columns: 190px 1fr auto;
  gap: 28px;
  align-items: center;
  padding: 44px clamp(18px, 5vw, 72px);
  color: #dcecff;
  background: linear-gradient(135deg, #020b1f, #061a3a);
}

.site-footer img {
  width: 180px;
  padding: 8px;
  border-radius: 18px;
  background: #fff;
}

.site-footer strong {
  display: block;
  color: #fff;
}

.site-footer span {
  display: block;
  margin-top: 5px;
  color: #dcecff;
}

.site-footer > a {
  color: #fff;
  font-weight: 900;
}

.cookie-banner {
  position: fixed;
  z-index: 50;
  left: clamp(14px, 4vw, 34px);
  right: clamp(14px, 4vw, 34px);
  bottom: 18px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  max-width: 980px;
  margin: 0 auto;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--shadow);
}

.cookie-banner[hidden] { display: none; }
.cookie-banner p { margin: 4px 0 0; color: var(--muted); }

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 16px;
  color: var(--blue);
  background: #fff;
  font-weight: 900;
  cursor: pointer;
}

.cookie-actions button:last-child {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
}

@media (max-width: 980px) {
  .top-strip {
    display: grid;
    justify-items: center;
    text-align: center;
  }

  .site-header { align-items: flex-start; }
  .menu-button { display: inline-flex; }

  .nav {
    position: fixed;
    top: 96px;
    left: 18px;
    right: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: #fff;
    box-shadow: var(--shadow);
  }

  .nav.is-open { display: flex; }
  .nav a { padding: 13px; border-bottom: 1px solid var(--line); }
  .nav a:last-child { border-bottom: 0; text-align: center; }

  .hero-inner,
  .method,
  .split-section,
  .contact,
  .specialty,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .hero-inner { min-height: auto; }
  .hero-bg {
    width: 100%;
    height: 100%;
    opacity: 0.72;
  }
  .proof-bar,
  .trust-strip,
  .service-grid,
  .clean-grid,
  .why-grid,
  .field-proof-grid,
  .photo-strip,
  .local-photo-band,
  .price-list,
  .pro-list,
  .zone-highlight-grid,
  .gallery-grid,
  .reviews-grid,
  .map-card,
  .diagram-card,
  .cgv-grid {
    grid-template-columns: 1fr;
  }

  .map-card iframe { min-height: 230px; }

  .site-footer { justify-items: start; }
}

@media (max-width: 620px) {
  h1 { font-size: 2.55rem; }
  .brand { width: 142px; }
  .hero-actions,
  .button,
  .contact-links,
  .contact-links a {
    width: 100%;
  }

  .contact-links,
  .appointment-grid,
  .cookie-banner {
    grid-template-columns: 1fr;
  }

  .cookie-actions { flex-direction: column; }
  .hero-panel,
  .contact-form { padding: 22px; }
  .timeline li { grid-template-columns: 1fr; }
  .quick-contact {
    left: 12px;
    right: 12px;
    bottom: 12px;
  }
  .quick-contact a { flex: 1; }
  .whatsapp-callout {
    grid-template-columns: 1fr;
  }
  body { padding-bottom: 76px; }
}

/* Hero adjustments */
.hero .hero-copy > p:not(.eyebrow) {
  color: #f5fbff;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.42);
}

.hero-panel {
  max-width: 360px;
  justify-self: end;
}

.hero-panel img {
  width: min(100%, 220px);
}

@media (min-width: 760px) and (max-width: 1100px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1fr) minmax(240px, 320px);
    gap: 28px;
    align-items: center;
    min-height: 620px;
    padding-top: 44px;
    padding-bottom: 56px;
  }

  .hero-copy {
    max-width: 680px;
  }

  .hero h1 {
    font-size: clamp(3rem, 5.8vw, 4.35rem);
  }

  .hero-copy > p:not(.eyebrow) {
    max-width: 640px;
    font-size: 1.08rem;
  }

  .hero-panel {
    max-width: 300px;
    gap: 12px;
    padding: 22px;
    border-radius: 24px;
  }

  .hero-panel img {
    width: min(100%, 150px);
  }

  .hero-panel strong {
    font-size: 0.98rem;
  }

  .hero-panel li {
    font-size: 0.9rem;
  }
}

@media (max-width: 759px) {
  .hero-panel {
    max-width: none;
    justify-self: stretch;
  }
}
