:root {
  --ink: #102033;
  --muted: #607083;
  --line: #d9e2ea;
  --surface: #ffffff;
  --soft: #f3f8fb;
  --brand: #0479b9;
  --brand-dark: #07527d;
  --accent: #14b287;
  --accent-dark: #0d8f6d;
  --shadow: 0 22px 60px rgba(9, 37, 68, 0.16);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--surface);
  line-height: 1.6;
  overflow-x: hidden;
}

img,
svg {
  display: block;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(217, 226, 234, 0.8);
  backdrop-filter: blur(14px);
}

.nav {
  width: min(1180px, calc(100vw - 32px));
  margin: 0 auto;
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  font-size: 1.05rem;
}

.brand-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--brand);
  border-radius: 8px;
}

.brand-mark svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  color: #34465a;
  font-size: 0.95rem;
  font-weight: 700;
}

.nav-links a:not(.nav-cta):hover {
  color: var(--brand);
}

.nav-cta {
  padding: 10px 16px;
  color: #fff;
  background: var(--ink);
  border-radius: 8px;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 11px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 8px;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px 0;
  background: var(--ink);
}

.hero {
  width: min(1180px, calc(100vw - 32px));
  margin: 0 auto;
  min-height: min(760px, calc(100vh - 120px));
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(380px, 1.14fr);
  align-items: center;
  gap: clamp(28px, 4vw, 64px);
  padding: 56px 0 42px;
}

.hero h1,
.section-heading h2,
.split-section h2,
.coverage h2,
.cta-section h2 {
  margin: 0;
  line-height: 1.04;
  letter-spacing: 0;
}

.hero-content,
.hero-media,
.coverage-copy,
.coverage-panel,
.split-section > div,
.steps,
.cta-section > div {
  min-width: 0;
}

.hero h1 {
  max-width: 13ch;
  font-size: clamp(2.55rem, 3.85vw, 4rem);
  line-height: 1;
}

.hero-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 10px;
}

.hero h1 span {
  display: block;
}

.eyebrow {
  margin: 0;
  color: var(--brand-dark);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.76rem;
  letter-spacing: 0;
}

.language-toggle {
  display: inline-flex;
  align-items: center;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #f7fbfd;
}

.language-option {
  min-width: 48px;
  min-height: 36px;
  padding: 0 12px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-size: 0.84rem;
  font-weight: 800;
  cursor: pointer;
}

.language-option.is-active {
  color: #fff;
  background: var(--brand-dark);
}

.hero-copy {
  max-width: 34rem;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 1.03rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 18px;
  border-radius: 8px;
  font-weight: 800;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button.primary {
  color: #fff;
  background: var(--accent-dark);
  box-shadow: 0 14px 28px rgba(13, 143, 109, 0.24);
}

.button.secondary {
  color: var(--brand-dark);
  background: #e6f4fa;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 34px 0 0;
}

.hero-stats div {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.hero-stats dt {
  color: var(--brand-dark);
  font-size: 1.25rem;
  font-weight: 800;
}

.hero-stats dd {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.hero-media {
  position: relative;
}

.hero-media img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.service-badge {
  position: absolute;
  right: 22px;
  bottom: 22px;
  max-width: 250px;
  padding: 16px;
  color: #fff;
  background: rgba(16, 32, 51, 0.9);
  border-radius: 8px;
}

.service-badge strong,
.service-badge span {
  display: block;
}

.service-badge span {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border-block: 1px solid var(--line);
}

.trust-strip span {
  padding: 18px;
  text-align: center;
  color: #33485d;
  background: #f8fbfd;
  font-size: 0.92rem;
  font-weight: 800;
}

.section,
.split-section,
.cta-section {
  width: min(1180px, calc(100vw - 32px));
  margin: 0 auto;
}

.section {
  padding: 88px 0;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 34px;
}

.section-heading h2,
.split-section h2,
.coverage h2,
.cta-section h2 {
  font-size: clamp(2rem, 4vw, 3.45rem);
}

.section-heading p:not(.eyebrow),
.split-section p:not(.eyebrow),
.coverage p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.04rem;
}

.service-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 18px;
}

.service-card {
  min-height: 244px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.service-card.featured {
  grid-row: span 2;
  padding: 0;
  overflow: hidden;
}

.service-card.featured img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.service-card.featured div {
  padding: 24px;
}

.card-icon {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 34px;
  color: #fff;
  background: var(--brand);
  border-radius: 8px;
  font-size: 0.86rem;
  font-weight: 800;
}

.service-card h3 {
  margin: 0;
  font-size: 1.22rem;
}

.service-card p {
  margin: 12px 0 0;
  color: var(--muted);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(360px, 1fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: start;
  padding: 84px clamp(18px, 4vw, 56px);
  background: var(--soft);
  border-radius: 8px;
}

.steps {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 0;
  counter-reset: steps;
  list-style: none;
}

.steps li {
  position: relative;
  padding: 20px 20px 20px 72px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.steps li::before {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--accent-dark);
  border-radius: 8px;
  font-weight: 800;
  counter-increment: steps;
  content: counter(steps);
}

.steps strong,
.steps span {
  display: block;
}

.steps span {
  margin-top: 5px;
  color: var(--muted);
}

.coverage {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.72fr);
  gap: 32px;
  align-items: center;
}

.coverage-panel {
  display: grid;
  gap: 12px;
}

.coverage-panel div {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.coverage-panel strong,
.coverage-panel span {
  display: block;
}

.coverage-panel span {
  color: var(--muted);
}

.cta-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 72px;
  padding: 34px;
  color: #fff;
  background: var(--brand-dark);
  border-radius: 8px;
}

.cta-section .eyebrow {
  color: #b7e7fa;
}

.cta-section h2 {
  max-width: 760px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px max(16px, calc((100% - 1180px) / 2));
  color: #d7e6f2;
  background: var(--ink);
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  font-weight: 800;
}

.whatsapp-widget {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  display: grid;
  justify-items: end;
  gap: 12px;
}

.whatsapp-toggle {
  width: 62px;
  height: 62px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: #128c7e;
  border: 0;
  border-radius: 50%;
  box-shadow: 0 16px 32px rgba(18, 140, 126, 0.32);
  cursor: pointer;
  font: inherit;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.whatsapp-toggle:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 38px rgba(18, 140, 126, 0.36);
}

.whatsapp-toggle svg {
  width: 30px;
  height: 30px;
  fill: currentColor;
}

.whatsapp-toggle span {
  display: none;
}

button:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(20, 178, 135, 0.45);
  outline-offset: 3px;
}

@media (max-width: 900px) {
  .nav {
    min-height: 64px;
  }

  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 64px;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    padding: 13px 12px;
  }

  .hero,
  .coverage,
  .split-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 42px;
  }

  .hero-toolbar {
    margin-top: 4px;
  }

  .hero-media {
    order: -1;
  }

  .service-grid {
    grid-template-columns: 1fr 1fr;
  }

  .service-card.featured {
    grid-column: span 2;
  }

  .trust-strip {
    grid-template-columns: 1fr 1fr;
  }

  .cta-section,
  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 620px) {
  .hero-toolbar {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .hero h1 {
    max-width: none;
    font-size: 2rem;
    line-height: 1.02;
  }

  .hero-copy {
    font-size: 0.95rem;
    max-width: 100%;
  }

  .hero-stats,
  .service-grid,
  .trust-strip {
    grid-template-columns: 1fr;
  }

  .service-card.featured {
    grid-column: auto;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-media img {
    aspect-ratio: 5 / 4;
  }

  .service-badge {
    position: static;
    max-width: none;
    margin-top: 10px;
  }

  .section {
    padding: 62px 0;
  }

  .split-section,
  .cta-section {
    padding: 24px;
  }

  .whatsapp-toggle {
    width: 58px;
    height: 58px;
    right: 0;
  }
}
