:root {
  --bg: #f6f9fd;
  --bg-soft: #eef5ff;
  --surface: #ffffff;
  --surface-light: #f8fbff;
  --text: #101827;
  --text-muted: #526173;
  --ink: #101827;
  --ink-muted: #5b6472;
  --line: rgba(15, 23, 42, 0.12);
  --line-dark: rgba(15, 23, 42, 0.12);
  --accent: #2f7df6;
  --accent-dark: #1558b0;
  --accent-soft: #eaf2ff;
  --max-width: 1180px;
  --header-height: 78px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
}

body::selection {
  background: var(--accent);
  color: #ffffff;
}

body.nav-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
svg {
  max-width: 100%;
  display: block;
}

button,
input,
select,
textarea {
  font: inherit;
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 100;
  transform: translateY(-150%);
  background: var(--accent);
  color: var(--ink);
  padding: 0.7rem 1rem;
  border-radius: 4px;
  font-weight: 700;
}

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

.container {
  width: min(calc(100% - 40px), var(--max-width));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(14px);
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-solid {
  background: rgba(255, 255, 255, 0.98);
  border-color: var(--line);
  box-shadow: 0 10px 30px rgba(12, 24, 44, 0.08);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: baseline;
  gap: 0.65rem;
  min-width: max-content;
}

.brand-mark {
  font-weight: 900;
  letter-spacing: 0;
  font-size: 1.24rem;
  color: var(--ink);
}

.brand-text {
  color: var(--ink-muted);
  font-size: 0.88rem;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  color: var(--ink-muted);
  font-size: 0.94rem;
}

.site-nav a {
  transition: color 180ms ease;
}

.site-nav a:hover {
  color: var(--accent-dark);
}

.site-nav a[aria-current="page"] {
  color: var(--accent-dark);
  font-weight: 800;
}

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.82rem 1.18rem;
  border: 1px solid transparent;
  border-radius: 7px;
  font-weight: 750;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.header-cta,
.btn-primary {
  background: var(--accent);
  color: #ffffff;
  box-shadow: 0 8px 18px rgba(47, 125, 246, 0.18);
}

.header-cta:hover,
.btn-primary:hover {
  background: #5a9bff;
  transform: translateY(-1px);
}

.btn-secondary {
  color: var(--ink);
  border-color: rgba(15, 23, 42, 0.16);
  background: #ffffff;
}

.btn-secondary:hover {
  border-color: rgba(47, 125, 246, 0.7);
  background: rgba(47, 125, 246, 0.1);
}

.btn-whatsapp {
  gap: 0.55rem;
  background: #ffffff;
  color: #10151f;
  border-color: rgba(31, 143, 77, 0.34);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
}

.btn-whatsapp:hover {
  background: #f4fff8;
  border-color: #25D366;
  transform: translateY(-1px);
}

.is-contact-pending {
  cursor: not-allowed;
  opacity: 0.58;
  pointer-events: none;
}

.btn.is-contact-pending:hover {
  transform: none;
}

.wa-icon {
  display: inline-block;
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  object-fit: contain;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line-dark);
  border-radius: 4px;
  background: transparent;
  color: var(--ink);
  padding: 0;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  min-height: auto;
  display: flex;
  align-items: center;
  padding: clamp(4rem, 8vw, 7rem) 0;
  position: relative;
  overflow: hidden;
  color: var(--ink);
  background: #ffffff;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.98), rgba(238, 245, 255, 0.94) 58%, rgba(255, 255, 255, 0.98)),
    repeating-linear-gradient(90deg, rgba(15, 23, 42, 0.035) 0 1px, transparent 1px 112px);
  opacity: 1;
}

.hero::after {
  content: "";
  position: absolute;
  right: -8vw;
  top: 12%;
  width: 34vw;
  height: 70%;
  border: 1px solid rgba(47, 125, 246, 0.32);
  transform: skewX(-10deg);
  background: linear-gradient(180deg, rgba(47, 125, 246, 0.08), rgba(255, 255, 255, 0.02));
  opacity: 0.5;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 780px);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--accent);
  text-transform: uppercase;
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.04em;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  font-size: 6.2rem;
  line-height: 0.94;
  margin-bottom: 1.4rem;
  max-width: 11ch;
}

h2 {
  font-size: 3.35rem;
  line-height: 1.05;
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.08rem;
  line-height: 1.25;
  margin-bottom: 0.65rem;
}

.hero-text {
  max-width: 680px;
  color: var(--ink-muted);
  font-size: 1.18rem;
  margin-bottom: 1.8rem;
}

.hero-service-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 0 0 1.35rem;
}

.hero-service-pills a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0.52rem 0.72rem;
  border: 1px solid rgba(21, 88, 176, 0.18);
  border-radius: 999px;
  background: #ffffff;
  color: var(--accent-dark);
  font-size: 0.92rem;
  font-weight: 800;
  box-shadow: 0 6px 18px rgba(12, 24, 44, 0.045);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.trust-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding: 0;
  margin: 1.5rem 0 0;
}

.trust-list li {
  border: 1px solid var(--line);
  color: var(--ink);
  padding: 0.58rem 0.8rem;
  border-radius: 7px;
  background: #ffffff;
}

.hero-panel {
  border: 1px solid rgba(21, 88, 176, 0.15);
  background: #ffffff;
  padding: clamp(1.1rem, 3vw, 1.6rem);
  min-height: auto;
  position: relative;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(12, 24, 44, 0.09);
  margin: 0;
  border-radius: 8px;
}

.compact-process {
  grid-template-columns: repeat(3, 1fr);
}

.booking-page {
  background: var(--surface-light);
  color: var(--ink);
  overflow-x: clip;
}

.booking-hero {
  padding: clamp(3.5rem, 7vw, 6rem) 0;
}

.booking-grid {
  display: grid;
  grid-template-columns: minmax(260px, 390px) minmax(0, 1fr);
  gap: clamp(2rem, 4vw, 3.2rem);
  align-items: start;
}

.booking-grid > *,
.booking-form,
.booking-copy {
  min-width: 0;
}

.booking-copy h1 {
  font-size: 3.4rem;
  line-height: 1.05;
  max-width: 100%;
  overflow-wrap: normal;
}

.thanks-box h1 {
  max-width: 10ch;
}

.booking-copy p {
  max-width: 54ch;
  color: var(--ink-muted);
  font-size: 1.08rem;
}

.urgent-whatsapp-box {
  display: grid;
  gap: 1rem;
  margin-top: 1.4rem;
  padding: 1rem;
  border: 1px solid rgba(37, 211, 102, 0.35);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 10px 26px rgba(12, 24, 44, 0.06);
}

.urgent-whatsapp-box strong {
  display: block;
  margin-bottom: 0.2rem;
  color: var(--ink);
}

.urgent-whatsapp-box span {
  display: block;
  color: var(--ink-muted);
}

.booking-whatsapp {
  width: fit-content;
}

.booking-small-note {
  margin-top: 0.9rem;
  color: var(--ink-muted);
  font-size: 0.96rem;
}

.whatsapp-booking-card {
  align-self: start;
  padding: 2rem;
}

.whatsapp-booking-card h2 {
  max-width: 13ch;
  font-size: 2.4rem;
}

.whatsapp-checklist {
  display: grid;
  gap: 0;
  margin: 1.4rem 0 1.6rem;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line-dark);
}

.whatsapp-checklist li {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 0.85rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line-dark);
}

.whatsapp-checklist li > span {
  color: var(--accent-dark);
  font-size: 0.8rem;
  font-weight: 900;
}

.whatsapp-checklist strong {
  display: block;
  margin-bottom: 0.15rem;
  color: var(--ink);
}

.whatsapp-checklist p {
  margin: 0;
  color: var(--ink-muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.whatsapp-booking-button {
  width: 100%;
}

.whatsapp-only-note {
  margin: 1rem 0 0 !important;
  color: var(--ink-muted);
  font-size: 0.86rem !important;
}

.whatsapp-only-note a {
  color: #17783f;
  font-weight: 800;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem;
}

.form-hint {
  margin: -0.25rem 0 0.35rem;
  color: var(--ink-muted);
  font-size: 0.82rem;
  line-height: 1.45;
}

.form-hint strong {
  color: var(--ink);
}

.form-privacy-note {
  margin: -0.05rem 0 0.25rem;
  color: var(--ink-muted);
  font-size: 0.78rem;
  line-height: 1.5;
}

.form-privacy-note a {
  color: var(--accent-dark);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.checkbox-line {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin: 0.35rem 0 0.7rem;
  padding: 0.9rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  cursor: pointer;
}

.checkbox-line input {
  flex: 0 0 20px;
  width: 20px;
  height: 20px;
  margin: 0.18rem 0 0;
  accent-color: var(--accent);
}

.checkbox-copy {
  min-width: 0;
}

.checkbox-copy strong,
.checkbox-copy > span {
  display: block;
}

.checkbox-copy strong {
  margin-bottom: 0.12rem;
  color: var(--ink);
  font-size: 0.92rem;
}

.checkbox-copy > span {
  color: var(--ink-muted);
  font-size: 0.86rem;
  font-weight: 550;
  line-height: 1.45;
}

.whatsapp-prompt {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 90;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 0.8rem 0.9rem;
  width: min(390px, calc(100vw - 36px));
  padding: 1rem;
  border: 1px solid rgba(27, 147, 73, 0.28);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 50px rgba(12, 24, 44, 0.2);
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 220ms ease, transform 220ms ease;
}

.whatsapp-prompt[hidden] {
  display: none;
}

.whatsapp-prompt.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.whatsapp-prompt-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 7px;
  background: #eafff1;
}

.whatsapp-prompt-icon img {
  width: 27px;
  height: 27px;
}

.whatsapp-prompt-copy {
  min-width: 0;
  padding-right: 1.7rem;
}

.whatsapp-prompt-copy strong,
.whatsapp-prompt-copy span {
  display: block;
}

.whatsapp-prompt-copy strong {
  margin-bottom: 0.12rem;
  color: var(--ink);
  font-size: 1rem;
}

.whatsapp-prompt-copy span {
  color: var(--ink-muted);
  font-size: 0.88rem;
  line-height: 1.45;
}

.whatsapp-prompt-button {
  grid-column: 1 / -1;
  width: 100%;
  min-height: 46px;
  box-shadow: none;
}

.whatsapp-prompt-close {
  position: absolute;
  top: 0.55rem;
  right: 0.55rem;
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  padding: 0;
  border: 0;
  border-radius: 4px;
  background: transparent;
  color: var(--ink-muted);
  font-size: 1.55rem;
  line-height: 1;
  cursor: pointer;
}

.whatsapp-prompt-close:hover {
  background: var(--bg-soft);
  color: var(--ink);
}

.thanks-page {
  min-height: 100svh;
  display: grid;
  place-items: center;
  background: linear-gradient(120deg, #ffffff, #eef5ff);
  color: var(--ink);
  padding: 2rem 0;
}

.thanks-box {
  max-width: 720px;
}

.thanks-box p {
  color: var(--ink-muted);
  font-size: 1.1rem;
}

.thanks-box .btn {
  margin: 0.4rem 0.45rem 0 0;
}

.thanks-legal {
  margin-top: 1.8rem;
  font-size: 0.88rem !important;
}

.thanks-legal a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(145deg, rgba(47, 125, 246, 0.08), transparent 58%);
  pointer-events: none;
}

.hero-panel::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 44%;
  height: 4px;
  z-index: 2;
  background: var(--accent);
}

.panel-kicker {
  position: relative;
  z-index: 2;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.hero-panel h2 {
  position: relative;
  z-index: 2;
  font-size: 2.2rem;
  line-height: 1.08;
  margin-bottom: 1.5rem;
  color: var(--ink);
}

.quick-services {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 0.65rem;
}

.quick-services span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 44px;
  padding: 0.7rem 0.8rem;
  border: 1px solid rgba(21, 88, 176, 0.16);
  border-radius: 6px;
  background: #f8fbff;
  color: var(--ink);
  font-weight: 700;
}

.quick-services span::after {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(47, 125, 246, 0.14);
}

.section {
  padding: clamp(4rem, 8vw, 7.5rem) 0;
  background: var(--surface-light);
  color: var(--ink);
}

.section-muted {
  background: #eef5ff;
}

.section-dark {
  background: #f8fbff;
  color: var(--ink);
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.section-heading {
  max-width: 780px;
  margin-bottom: clamp(1.8rem, 4.5vw, 3.4rem);
}

.section-heading p:not(.eyebrow) {
  color: var(--ink-muted);
  font-size: 1.1rem;
  max-width: 66ch;
}

.section-dark .section-heading p:not(.eyebrow) {
  color: var(--ink-muted);
}

.service-grid,
.benefit-grid,
.trust-grid,
.review-grid {
  display: grid;
  gap: 1rem;
}

.service-grid {
  grid-template-columns: repeat(4, 1fr);
}

.service-card,
.review-card,
.trust-card {
  border: 1px solid var(--line-dark);
  background: #ffffff;
  padding: 1.3rem;
  min-height: 215px;
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(12, 24, 44, 0.045);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.service-card:hover,
.review-card:hover {
  transform: translateY(-4px);
  border-color: rgba(47, 125, 246, 0.38);
  background: #ffffff;
  box-shadow: 0 14px 28px rgba(12, 24, 44, 0.08);
}

.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 1.35rem;
  border: 1px solid var(--line-dark);
  color: #ffffff;
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  font-weight: 900;
}

.service-card p,
.review-card p,
.text-block p,
.process-list p,
.faq-list p {
  color: var(--ink-muted);
  margin-bottom: 0;
}

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}

.text-block {
  font-size: 1.08rem;
  max-width: 68ch;
}

.about-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.7rem;
  margin-top: 1.7rem;
}

.about-points span {
  padding: 0.8rem;
  border: 1px solid rgba(21, 88, 176, 0.16);
  border-radius: 7px;
  background: #ffffff;
  color: var(--accent-dark);
  font-weight: 800;
}

.process-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border: 1px solid var(--line-dark);
}

.process-list li {
  padding: 1.25rem;
  min-height: 230px;
  border-right: 1px solid var(--line-dark);
  background: rgba(255, 255, 255, 0.72);
}

.process-list li:last-child {
  border-right: 0;
}

.process-list span {
  display: block;
  color: var(--accent-dark);
  font-size: 0.85rem;
  font-weight: 900;
  margin-bottom: 3rem;
}

.benefit-grid {
  grid-template-columns: repeat(3, 1fr);
}

.benefit {
  border: 1px solid rgba(21, 88, 176, 0.14);
  padding: 1.25rem;
  min-height: 145px;
  display: grid;
  align-content: end;
  gap: 0.45rem;
  background: #ffffff;
  color: var(--ink);
  border-radius: 8px;
}

.benefit strong {
  font-size: 1.08rem;
}

.benefit span {
  color: var(--ink-muted);
  font-size: 0.95rem;
}

.trust-section {
  padding-top: clamp(3.5rem, 7vw, 6rem);
}

.trust-grid {
  grid-template-columns: repeat(3, 1fr);
}

.trust-card {
  min-height: 150px;
}

.trust-card strong {
  display: block;
  font-size: 3rem;
  line-height: 1;
  margin-bottom: 1rem;
}

.trust-card span {
  color: var(--ink-muted);
}

.review-grid {
  grid-template-columns: repeat(3, 1fr);
}

.review-card {
  margin: 0;
}

.review-card blockquote {
  margin: 0 0 1.3rem;
  color: var(--ink);
  font-size: 1.02rem;
  line-height: 1.55;
}

.review-card figcaption {
  color: var(--ink-muted);
}

.cta-band {
  background: #ffffff;
  color: var(--ink);
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.cta-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: end;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  padding: clamp(2rem, 5vw, 3.5rem) 0;
}

.cta-inner h2 {
  margin-bottom: 0.7rem;
}

.cta-inner p {
  color: var(--ink-muted);
  margin-bottom: 0;
  max-width: 620px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.78fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}

.contact-details {
  margin-top: 2rem;
  display: grid;
  gap: 0.75rem;
}

.contact-details p {
  margin: 0;
  display: grid;
  gap: 0.15rem;
}

.contact-details span {
  color: var(--ink-muted);
  font-size: 0.86rem;
  text-transform: uppercase;
  font-weight: 800;
}

.contact-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  width: fit-content;
  color: #17783f;
  font-weight: 800;
}

.contact-form {
  display: grid;
  gap: 0.7rem;
  padding: clamp(1.2rem, 3vw, 2rem);
  background: #ffffff;
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  box-shadow: 0 12px 32px rgba(12, 24, 44, 0.08);
}

.contact-card {
  padding: clamp(1.2rem, 3vw, 2rem);
  border: 1px solid rgba(21, 88, 176, 0.16);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 12px 32px rgba(12, 24, 44, 0.06);
}

.contact-card p {
  color: var(--ink-muted);
  margin-bottom: 1.2rem;
}

.contact-form label {
  font-weight: 750;
  font-size: 0.9rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(22, 22, 21, 0.18);
  background: #fff;
  color: var(--ink);
  padding: 0.85rem 0.9rem;
  border-radius: 6px;
  margin-bottom: 0.45rem;
}

.contact-form textarea {
  resize: vertical;
  min-height: 140px;
}

.hidden-field {
  display: none;
}

.faq-list {
  display: grid;
  gap: 0.8rem;
}

.faq-list details {
  border: 1px solid var(--line-dark);
  background: rgba(255, 255, 255, 0.78);
  padding: 1.05rem 1.2rem;
  border-radius: 8px;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 850;
}

.faq-list p {
  margin: 0.8rem 0 0;
}

.site-footer {
  background: #101827;
  color: #ffffff;
  padding: 4rem 0 1.5rem;
}

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

.footer-grid p,
.footer-grid a,
.footer-bottom {
  color: #cbd5e1;
}

.footer-grid > div > span {
  display: block;
  margin-bottom: 0.55rem;
  color: #cbd5e1;
}

.footer-grid h2 {
  font-size: 0.86rem;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 1rem;
}

.footer-grid a {
  display: block;
  margin-bottom: 0.55rem;
  transition: color 180ms ease;
}

.footer-grid a:hover,
.footer-bottom a:hover {
  color: #ffffff;
}

.footer-brand {
  margin-bottom: 1.2rem;
}

.site-footer .brand-mark {
  color: #ffffff;
}

.site-footer .brand-text {
  color: #cbd5e1;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  font-size: 0.92rem;
}

.compact-footer {
  padding-top: 1.5rem;
}

.legal-page {
  background: var(--surface-light);
  color: var(--ink);
  min-height: 70svh;
}

.legal-content {
  max-width: 780px;
  padding-top: clamp(4rem, 8vw, 7rem);
  padding-bottom: clamp(4rem, 8vw, 7rem);
}

.legal-content h1 {
  font-size: 4rem;
  line-height: 1;
  margin-bottom: 0.8rem;
  max-width: none;
}

.legal-content h2 {
  font-size: 1.28rem;
  line-height: 1.25;
  margin-top: 2.4rem;
  margin-bottom: 0.65rem;
}

.legal-content p,
.legal-content address {
  color: var(--ink-muted);
}

.legal-content address {
  font-style: normal;
}

.legal-content address strong {
  color: var(--ink);
}

.legal-content a:not(.btn) {
  color: var(--accent-dark);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.legal-meta {
  margin-bottom: 1.7rem;
  color: var(--ink-muted);
  font-size: 0.85rem;
}

.legal-intro {
  max-width: 66ch;
  margin-bottom: 2.4rem;
  font-size: 1.08rem;
}

.subpage-hero {
  padding: 5.5rem 0;
  border-bottom: 1px solid var(--line-dark);
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.98), rgba(238, 245, 255, 0.92)),
    repeating-linear-gradient(90deg, rgba(15, 23, 42, 0.035) 0 1px, transparent 1px 112px);
}

.subpage-hero-inner {
  max-width: 860px;
}

.subpage-hero h1 {
  max-width: 13ch;
  font-size: 4.7rem;
  line-height: 1;
  margin-bottom: 1.25rem;
}

.subpage-hero p:not(.eyebrow) {
  max-width: 66ch;
  margin-bottom: 0;
  color: var(--ink-muted);
  font-size: 1.12rem;
}

.area-band {
  padding: 4.5rem 0;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  background: #eef5ff;
}

.area-band-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 3rem;
  align-items: center;
}

.area-band-inner h2,
.area-band-inner p {
  margin-bottom: 0;
}

.area-band-inner p:last-child {
  color: var(--ink-muted);
  font-size: 1.06rem;
}

.process-list.process-page-list {
  grid-template-columns: repeat(4, 1fr);
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line-dark);
}

.info-item {
  display: grid;
  gap: 0.4rem;
  padding: 1.35rem;
  border-left: 1px solid var(--line-dark);
}

.info-item:first-child {
  border-left: 0;
}

.info-item strong {
  color: var(--ink);
  font-size: 1rem;
}

.info-item span {
  color: var(--ink-muted);
  font-size: 0.94rem;
}

.faq-page-width {
  max-width: 900px;
}

.contact-value {
  width: fit-content;
  color: var(--ink) !important;
  font-size: 1rem !important;
  font-weight: 750 !important;
  text-transform: none !important;
}

.contact-action-card {
  display: grid;
  gap: 0.85rem;
}

.contact-action-card .btn {
  width: 100%;
}

.footer-link-button {
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  cursor: pointer;
}

.site-footer .footer-link-button {
  color: #cbd5e1;
}

.site-footer .footer-link-button:hover,
.footer-link-button:hover {
  color: #ffffff;
}

.light-link-button {
  color: var(--accent-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.light-link-button:hover {
  color: var(--ink);
}

.cookie-banner {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 110;
  width: min(560px, calc(100vw - 36px));
  padding: 1.25rem;
  border: 1px solid rgba(21, 88, 176, 0.24);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 20px 55px rgba(12, 24, 44, 0.2);
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 220ms ease, transform 220ms ease;
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.cookie-banner-content {
  display: grid;
  gap: 0.65rem;
}

.cookie-kicker {
  margin: 0;
  color: var(--accent-dark);
  font-size: 0.74rem;
  font-weight: 850;
  text-transform: uppercase;
}

.cookie-banner h2 {
  margin: 0;
  font-size: 1.3rem;
  line-height: 1.2;
}

.cookie-banner p:not(.cookie-kicker) {
  margin: 0;
  color: var(--ink-muted);
  font-size: 0.91rem;
  line-height: 1.55;
}

.cookie-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 0.35rem;
}

.cookie-acknowledge {
  min-width: 135px;
  cursor: pointer;
}

.cookie-privacy-link {
  color: var(--accent-dark);
  font-size: 0.9rem;
  font-weight: 750;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  :root {
    --header-height: 72px;
  }

  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: block;
    position: relative;
    z-index: 60;
  }

  .site-nav {
    position: fixed;
    inset: var(--header-height) 0 auto 0;
    display: grid;
    gap: 0;
    padding: 0 20px 1.2rem;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid var(--line-dark);
    transform: translateY(-120%);
    transition: transform 220ms ease;
  }

  .nav-open .site-nav {
    transform: translateY(0);
  }

  .site-nav a {
    padding: 1rem 0;
    border-bottom: 1px solid var(--line-dark);
    font-size: 1.06rem;
  }

  .hero-grid,
  .split,
  .contact-grid,
  .cta-inner,
  .area-band-inner {
    grid-template-columns: 1fr;
  }

  .area-band-inner {
    gap: 1.2rem;
  }

  .process-list.process-page-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .booking-hero {
    padding: 2.8rem 0 4rem;
  }

  .booking-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 1.8rem;
    max-width: 820px;
  }

  .booking-copy h1 {
    font-size: 3.3rem;
    margin-bottom: 1rem;
  }

  .hero-panel {
    max-width: 620px;
  }

  .service-grid,
  .benefit-grid,
  .trust-grid,
  .review-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-points {
    grid-template-columns: 1fr;
  }

  .process-list {
    grid-template-columns: 1fr;
  }

  .process-list li {
    border-right: 0;
    border-bottom: 1px solid var(--line-dark);
    min-height: auto;
  }

  .process-list li:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 640px) {
  :root {
    --header-height: 66px;
  }

  .container {
    width: min(calc(100% - 28px), var(--max-width));
  }

  .site-header {
    height: var(--header-height);
  }

  .brand {
    gap: 0.45rem;
  }

  .brand-mark {
    font-size: 1.08rem;
  }

  .brand-text {
    display: inline;
    font-size: 0.7rem;
  }

  .hero {
    min-height: auto;
    padding: 2.25rem 0 3rem;
  }

  .hero::after {
    display: none;
  }

  .hero-grid {
    gap: 1.4rem;
  }

  h1 {
    font-size: 3.15rem;
    line-height: 0.98;
    max-width: 9ch;
  }

  h2 {
    font-size: 2.15rem;
    line-height: 1.08;
  }

  h3 {
    font-size: 1.02rem;
  }

  .hero-text {
    font-size: 1rem;
    margin-bottom: 1rem;
  }

  .hero-service-pills {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    margin-bottom: 1rem;
  }

  .hero-service-pills a {
    justify-content: center;
    min-height: 40px;
    padding: 0.52rem 0.58rem;
    border-radius: 7px;
    font-size: 0.86rem;
  }

  .hero-service-pills a:last-child {
    grid-column: 1 / -1;
  }

  .button-row,
  .btn {
    width: 100%;
  }

  .btn {
    min-height: 52px;
  }

  .trust-list {
    display: grid;
    gap: 0.55rem;
    margin-top: 1rem;
  }

  .trust-list li {
    border-radius: 6px;
  }

  .hero-panel {
    padding: 1rem;
  }

  .service-grid,
  .benefit-grid,
  .trust-grid,
  .review-grid,
  .footer-grid,
  .info-grid {
    grid-template-columns: 1fr;
  }

  .subpage-hero {
    padding: 3.4rem 0;
  }

  .subpage-hero h1 {
    max-width: 100%;
    font-size: 2.45rem;
    line-height: 1.05;
  }

  .subpage-hero p:not(.eyebrow) {
    font-size: 1rem;
  }

  .area-band {
    padding: 3.2rem 0;
  }

  .process-list.process-page-list {
    grid-template-columns: 1fr;
  }

  .info-item,
  .info-item:first-child {
    padding: 1rem 0;
    border-left: 0;
    border-bottom: 1px solid var(--line-dark);
  }

  .info-item:last-child {
    border-bottom: 0;
  }

  .quick-services {
    grid-template-columns: 1fr;
  }

  .quick-services span {
    min-height: 40px;
    font-size: 0.92rem;
  }

  .section {
    padding: 3.4rem 0;
  }

  .section-heading {
    margin-bottom: 1.55rem;
  }

  .service-card,
  .trust-card {
    min-height: auto;
  }

  .service-card,
  .review-card,
  .trust-card,
  .contact-form {
    padding: 1.05rem;
  }

  .service-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 1rem;
    font-size: 0.86rem;
  }

  .process-list {
    border-radius: 8px;
    overflow: hidden;
  }

  .process-list span {
    margin-bottom: 0.9rem;
  }

  .benefit {
    min-height: 118px;
  }

  .trust-card strong {
    font-size: 2rem;
  }

  .cta-inner {
    align-items: start;
  }

  .contact-details {
    margin-top: 1.2rem;
  }

  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    min-height: 48px;
    min-width: 0;
    max-width: 100%;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .booking-hero {
    padding: 1.75rem 0 3rem;
  }

  .booking-grid {
    width: 100%;
    gap: 1.35rem;
    padding-inline: 14px;
  }

  .booking-copy h1 {
    max-width: none;
    font-size: 2.35rem;
    line-height: 1.04;
  }

  .booking-copy > p {
    font-size: 0.98rem;
  }

  .urgent-whatsapp-box {
    margin-top: 1rem;
    padding: 0.9rem;
  }

  .booking-whatsapp {
    width: 100%;
    padding-inline: 0.75rem;
    font-size: 0.94rem;
  }

  .booking-form {
    width: 100%;
    max-width: 100%;
    padding: 1rem;
  }

  .whatsapp-booking-card {
    width: 100%;
    padding: 1rem;
  }

  .whatsapp-booking-card h2 {
    max-width: 100%;
    font-size: 1.9rem;
  }

  .form-privacy-note {
    font-size: 0.76rem;
  }

  .checkbox-line {
    gap: 0.65rem;
    padding: 0.8rem 0;
  }

  .checkbox-line input {
    flex-basis: 19px;
    width: 19px;
    height: 19px;
  }

  .checkbox-copy strong {
    font-size: 0.9rem;
  }

  .checkbox-copy > span {
    font-size: 0.82rem;
  }

  .whatsapp-prompt {
    right: 12px;
    bottom: 12px;
    width: calc(100vw - 24px);
    padding: 0.85rem;
  }

  .whatsapp-prompt-copy {
    padding-right: 1.45rem;
  }

  .whatsapp-prompt-button {
    min-height: 50px;
    font-size: 0.92rem;
  }

  .cookie-banner {
    right: 12px;
    bottom: 12px;
    width: calc(100vw - 24px);
    padding: 1rem;
  }

  .cookie-actions {
    display: grid;
    gap: 0.75rem;
  }

  .cookie-acknowledge,
  .cookie-privacy-link {
    width: 100%;
    text-align: center;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .legal-content {
    padding-top: 2.8rem;
    padding-bottom: 3.5rem;
  }

  .legal-content h1 {
    max-width: 100%;
    font-size: 1.65rem;
    hyphens: none;
    overflow-wrap: normal;
  }

  .legal-content h2 {
    margin-top: 2rem;
    font-size: 1.15rem;
  }

  .legal-intro {
    font-size: 1rem;
  }
}

@media (max-width: 360px) {
  .hero-service-pills {
    grid-template-columns: 1fr;
  }

  .hero-service-pills a:last-child {
    grid-column: auto;
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
