:root {
  --color-navy: #0b1f3a;
  --color-blue: #1455d9;
  --color-green: #25d366;
  --color-bg: #f5f7fa;
  --color-text: #1f2937;
  --color-muted: #6b7280;
  --color-white: #ffffff;
  --color-line: #dbe3ee;
  --shadow: 0 18px 48px rgba(11, 31, 58, 0.12);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
}

.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.section {
  padding: 64px 0;
}

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

.skip-link {
  position: absolute;
  left: 16px;
  top: -48px;
  z-index: 20;
  padding: 10px 14px;
  color: var(--color-white);
  background: var(--color-navy);
  border-radius: var(--radius);
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 12px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--color-line);
  backdrop-filter: blur(14px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand img {
  width: 190px;
  max-width: 48vw;
  height: auto;
}

.menu-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 8px 12px;
  color: var(--color-navy);
  background: var(--color-white);
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  font: inherit;
  font-weight: 700;
}

.menu-toggle::before {
  content: "";
  width: 18px;
  height: 14px;
  background:
    linear-gradient(var(--color-navy), var(--color-navy)) 0 0 / 18px 2px no-repeat,
    linear-gradient(var(--color-navy), var(--color-navy)) 0 6px / 18px 2px no-repeat,
    linear-gradient(var(--color-navy), var(--color-navy)) 0 12px / 18px 2px no-repeat;
}

.menu-toggle span {
  display: none;
}

.site-nav {
  position: absolute;
  left: 16px;
  right: 16px;
  top: 74px;
  display: none;
  padding: 14px;
  background: var(--color-white);
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.site-nav.is-open {
  display: grid;
  gap: 6px;
}

.site-nav a {
  display: block;
  padding: 12px 10px;
  color: var(--color-navy);
  text-decoration: none;
  font-weight: 700;
  border-radius: var(--radius);
}

.site-nav a:hover,
.site-nav a:focus {
  background: var(--color-bg);
}

.site-nav .nav-cta {
  color: var(--color-white);
  background: var(--color-green);
  text-align: center;
}

.hero {
  padding-top: 40px;
  background:
    linear-gradient(135deg, rgba(20, 85, 217, 0.09), transparent 40%),
    var(--color-white);
}

.hero-grid,
.feature-grid,
.location-grid,
.two-column,
.split-panel {
  display: grid;
  gap: 32px;
}

.hero-copy {
  align-self: center;
}

.hero-grid-simple {
  max-width: 880px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--color-blue);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.78rem;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 18px;
  color: var(--color-navy);
  font-size: clamp(2.15rem, 9vw, 4.35rem);
  line-height: 1.03;
}

h2 {
  color: var(--color-navy);
  font-size: clamp(1.65rem, 6vw, 2.55rem);
  line-height: 1.14;
  margin-bottom: 14px;
}

h3 {
  color: var(--color-navy);
  font-size: 1.1rem;
  line-height: 1.25;
  margin-bottom: 8px;
}

.hero-text,
.hero-location,
.section-heading p,
.split-panel p,
.feature-grid p,
.location-grid p {
  color: var(--color-muted);
  font-size: 1.03rem;
}

.hero-text {
  margin-bottom: 12px;
}

.hero-text-strong {
  color: var(--color-navy);
  font-weight: 800;
}

.hero-location strong,
.location-grid strong {
  color: var(--color-text);
}

.actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 18px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 800;
  text-align: center;
}

.btn-whatsapp {
  color: #073b1d;
  background: var(--color-green);
}

.btn-primary {
  color: var(--color-white);
  background: var(--color-blue);
}

.btn-secondary {
  color: var(--color-navy);
  background: var(--color-white);
  border-color: var(--color-line);
}

.btn:hover,
.btn:focus {
  transform: translateY(-1px);
  box-shadow: 0 12px 26px rgba(11, 31, 58, 0.14);
}

.trust-list {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.trust-list li {
  position: relative;
  padding-left: 28px;
  color: var(--color-text);
  font-weight: 700;
}

.trust-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.48em;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: var(--color-green);
}

.hero-visual img,
.feature-grid img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--color-line);
  box-shadow: var(--shadow);
}

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

.service-grid,
.benefit-grid,
.steps {
  display: grid;
  gap: 18px;
}

.service-card,
.mini-card,
.benefit-grid article,
.steps article {
  background: var(--color-white);
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
}

.service-card {
  overflow: hidden;
}

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

.service-card div {
  padding: 22px;
}

.service-card p,
.mini-card p,
.benefit-grid p,
.steps p,
.faq p,
.site-footer p {
  color: var(--color-muted);
}

.service-card a,
.mini-card a {
  display: inline-flex;
  margin-top: 8px;
  color: var(--color-blue);
  font-weight: 800;
  text-decoration: none;
}

.mini-card,
.benefit-grid article,
.steps article {
  padding: 22px;
}

.check-grid {
  display: grid;
  gap: 10px;
}

.check-grid span {
  position: relative;
  padding: 14px 14px 14px 42px;
  background: var(--color-white);
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  font-weight: 700;
}

.check-grid span::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 19px;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--color-blue);
}

.price-box {
  display: grid;
  gap: 14px;
}

.price-box div {
  padding: 24px;
  color: var(--color-white);
  background: var(--color-navy);
  border-radius: var(--radius);
}

.price-box span {
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 700;
}

.price-box strong {
  font-size: clamp(2rem, 9vw, 3.2rem);
  line-height: 1;
}

.steps article span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-bottom: 16px;
  color: var(--color-white);
  background: var(--color-blue);
  border-radius: 999px;
  font-weight: 900;
}

.section-feature {
  background: #eef4ff;
}

.reverse img {
  order: -1;
}

.brand-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.brand-list span {
  padding: 10px 14px;
  color: var(--color-navy);
  background: var(--color-white);
  border: 1px solid var(--color-line);
  border-radius: 999px;
  font-weight: 800;
}

.map-placeholder {
  min-height: 300px;
  display: grid;
  place-items: center;
  padding: 24px;
  text-align: center;
  color: var(--color-navy);
  background:
    linear-gradient(90deg, rgba(20, 85, 217, 0.08) 1px, transparent 1px),
    linear-gradient(rgba(20, 85, 217, 0.08) 1px, transparent 1px),
    var(--color-white);
  background-size: 36px 36px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
}

.map-placeholder span {
  display: block;
  font-size: 1.25rem;
  font-weight: 900;
}

.map-placeholder small {
  display: block;
  max-width: 280px;
  margin-top: 8px;
  color: var(--color-muted);
}

.map-frame {
  min-height: 330px;
  overflow: hidden;
  background: var(--color-white);
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  box-shadow: 0 12px 34px rgba(11, 31, 58, 0.08);
}

.map-frame iframe {
  display: block;
  width: 100%;
  min-height: 330px;
}

.faq {
  max-width: 860px;
}

.faq details {
  border-top: 1px solid var(--color-line);
}

.faq details:last-child {
  border-bottom: 1px solid var(--color-line);
}

.faq summary {
  cursor: pointer;
  padding: 18px 0;
  color: var(--color-navy);
  font-weight: 900;
}

.faq p {
  margin-bottom: 18px;
}

.final-cta {
  text-align: center;
  color: var(--color-white);
  background: var(--color-navy);
}

.final-cta .eyebrow,
.final-cta h2,
.final-cta p {
  color: var(--color-white);
}

.final-cta .container {
  max-width: 760px;
}

.final-cta .btn {
  margin-top: 8px;
}

.site-footer {
  padding: 46px 0 86px;
  color: rgba(255, 255, 255, 0.82);
  background: #08182d;
}

.site-footer img {
  width: 180px;
  height: auto;
  padding: 8px 10px;
  background: var(--color-white);
  border-radius: var(--radius);
}

.site-footer img + p {
  margin-top: 16px;
}

.site-footer a {
  color: var(--color-white);
  text-decoration: none;
}

.site-footer h2 {
  color: var(--color-white);
  font-size: 1rem;
  margin-bottom: 12px;
}

.footer-grid {
  display: grid;
  gap: 28px;
}

.footer-bottom {
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom p {
  margin-bottom: 0;
}

.floating-whatsapp {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 14px;
  z-index: 12;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 54px;
  padding: 14px 18px;
  color: #073b1d;
  background: var(--color-green);
  border-radius: var(--radius);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.34);
  text-decoration: none;
  font-weight: 900;
}

@media (min-width: 680px) {
  .actions {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .btn {
    width: auto;
  }

  .service-grid,
  .benefit-grid,
  .steps,
  .check-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: 1.2fr 1fr 1fr;
  }
}

@media (min-width: 900px) {
  .section {
    padding: 86px 0;
  }

  .menu-toggle {
    display: none;
  }

  .site-nav {
    position: static;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0;
    border: 0;
    box-shadow: none;
  }

  .site-nav a {
    padding: 10px 12px;
  }

  .site-nav .nav-cta {
    padding-inline: 16px;
  }

  .hero {
    padding-top: 60px;
  }

  .hero-grid,
  .feature-grid,
  .location-grid,
  .two-column,
  .split-panel {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: center;
  }

  .hero-grid-simple {
    display: block;
  }

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

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

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

  .reverse img {
    order: 0;
  }

  .floating-whatsapp {
    left: auto;
    right: 24px;
    bottom: 24px;
    width: auto;
  }
}
