:root {
  --ink: #121820;
  --steel: #1e2a36;
  --slate: #364756;
  --line: #d9e0e7;
  --soft: #f4f7f9;
  --white: #ffffff;
  --cyan: #008ca8;
  --cyan-dark: #00687f;
  --safety: #f4b63f;
  --success: #178a4b;
  --shadow: 0 18px 45px rgba(18, 24, 32, .14);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
  background: var(--white);
}

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

a {
  color: var(--cyan-dark);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

h1,
h2,
h3 {
  line-height: 1.12;
  margin: 0 0 16px;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(1.75rem, 3.5vw, 3rem);
  max-width: 980px;
}

h2 {
  font-size: clamp(1.32rem, 2.25vw, 2.1rem);
}

h3 {
  font-size: 1.25rem;
}

p {
  margin: 0 0 18px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 8px clamp(18px, 4vw, 48px);
  background: rgba(255, 255, 255, .94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand img {
  width: 82px;
  height: auto;
  display: block;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 6px;
}

.site-nav a {
  color: var(--steel);
  padding: 10px 12px;
  border-radius: 6px;
  font-weight: 700;
}

.site-nav a[aria-current="page"],
.site-nav a:hover {
  background: var(--soft);
  color: var(--cyan-dark);
  text-decoration: none;
}

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  background: var(--white);
  padding: 9px 12px;
  border-radius: 6px;
  font-weight: 700;
}

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 800;
  cursor: pointer;
  text-align: center;
}

.header-cta,
.btn-primary {
  color: var(--ink);
  background: var(--safety);
  border-color: #dda02f;
}

.whatsapp-cta {
  width: 48px;
  height: 48px;
  min-height: 48px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  box-shadow: 0 10px 22px rgba(37, 211, 102, .28);
}

.whatsapp-cta img {
  width: 48px;
  height: 48px;
  display: block;
}

.header-cta:hover,
.btn:hover {
  text-decoration: none;
  transform: translateY(-1px);
}

.btn-secondary {
  color: var(--white);
  background: var(--cyan-dark);
}

.btn-ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, .45);
  background: rgba(255, 255, 255, .08);
}

.btn-ghost-light {
  color: var(--cyan-dark);
  border-color: var(--line);
  background: var(--white);
}

.hero {
  position: relative;
  min-height: 620px;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--steel);
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(18, 24, 32, .92), rgba(18, 24, 32, .62), rgba(18, 24, 32, .2));
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content {
  position: relative;
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  color: var(--white);
  padding: 92px 0 72px;
}

.hero-content p {
  max-width: 760px;
  font-size: 1.12rem;
}

.eyebrow {
  color: var(--cyan-dark);
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 10px;
}

.hero .eyebrow,
.section-dark .eyebrow,
.quote-hero .eyebrow,
.landing-hero .eyebrow {
  color: var(--safety);
}

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

.strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
}

.strip div {
  padding: 26px clamp(18px, 4vw, 48px);
  background: var(--white);
}

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

.strip span {
  color: var(--slate);
  margin-top: 4px;
}

.section,
.split,
.lead-section,
.contact-grid,
.map-band,
.article,
.page-hero,
.service-hero,
.landing-hero,
.breadcrumbs {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 18px;
  color: var(--slate);
  font-size: .9rem;
}

.breadcrumbs a {
  color: var(--cyan-dark);
  font-weight: 700;
}

.section,
.split,
.lead-section,
.contact-grid,
.map-band,
.article {
  padding: 82px 0;
}

.page-hero {
  padding: 68px 0 34px;
}

.page-hero h1 {
  max-width: 880px;
  font-size: clamp(1.7rem, 2.85vw, 2.4rem);
  line-height: 1.08;
}

.page-hero p {
  max-width: 860px;
  font-size: 1.04rem;
}

.section-head {
  max-width: 860px;
  margin-bottom: 32px;
}

.section-head p {
  font-size: 1.06rem;
  color: var(--slate);
}

.section-muted {
  width: 100%;
  max-width: none;
  padding-left: max(18px, calc((100% - var(--max)) / 2));
  padding-right: max(18px, calc((100% - var(--max)) / 2));
  background: var(--soft);
}

.section-dark {
  width: 100%;
  max-width: none;
  padding-left: max(18px, calc((100% - var(--max)) / 2));
  padding-right: max(18px, calc((100% - var(--max)) / 2));
  color: var(--white);
  background: var(--ink);
}

.section-dark .section-head p {
  color: rgba(255, 255, 255, .78);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.info-card {
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 8px 20px rgba(18, 24, 32, .05);
}

a.info-card:hover {
  text-decoration: none;
  border-color: rgba(0, 140, 168, .5);
  box-shadow: var(--shadow);
}

.info-card img {
  width: 100%;
  aspect-ratio: 484 / 393;
  object-fit: cover;
  background: var(--soft);
}

.info-card h3,
.info-card p,
.card-link {
  margin-left: 18px;
  margin-right: 18px;
}

.info-card h3 {
  margin-top: 18px;
}

.info-card p {
  color: var(--slate);
}

.card-link {
  display: inline-block;
  margin-bottom: 20px;
  font-weight: 800;
  color: var(--cyan-dark);
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(28px, 5vw, 68px);
}

.split > img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.check-list {
  padding: 0;
  margin: 20px 0 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  margin: 12px 0;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .45em;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--success);
}

.pill-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.pill-grid span {
  padding: 12px 16px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 999px;
  background: rgba(255, 255, 255, .08);
}

.pill-grid a {
  padding: 12px 16px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 999px;
  background: rgba(255, 255, 255, .08);
  font-weight: 800;
}

.pill-grid a:hover {
  color: var(--white);
  text-decoration: none;
  border-color: rgba(244, 182, 63, .72);
  background: rgba(244, 182, 63, .18);
}

.tag-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag-grid span {
  padding: 10px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--steel);
  background: var(--soft);
  font-weight: 800;
}

.inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.home-proof {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
  gap: clamp(24px, 4vw, 54px);
  align-items: start;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.proof-grid article {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.proof-grid strong,
.proof-grid span {
  display: block;
}

.proof-grid span {
  margin-top: 8px;
  color: var(--slate);
}

.compact-band {
  padding-top: 64px;
  padding-bottom: 64px;
}

.lead-section {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(28px, 5vw, 68px);
  align-items: start;
  background: var(--steel);
  color: var(--white);
  max-width: none;
  width: 100%;
  padding-left: max(18px, calc((100% - var(--max)) / 2));
  padding-right: max(18px, calc((100% - var(--max)) / 2));
}

.lead-section p {
  color: rgba(255, 255, 255, .82);
}

.lead-form {
  padding: 24px;
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

label {
  display: grid;
  gap: 7px;
  margin-bottom: 14px;
  font-weight: 800;
}

input,
textarea {
  width: 100%;
  min-height: 44px;
  padding: 11px 12px;
  border: 1px solid #b9c4cf;
  border-radius: 6px;
  font: inherit;
}

textarea {
  resize: vertical;
}

.form-note {
  color: var(--slate) !important;
  font-size: .92rem;
  margin: 12px 0 0;
}

.comparison {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 8px 20px rgba(18, 24, 32, .05);
}

.comparison th,
.comparison td {
  padding: 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.comparison th {
  color: var(--white);
  background: var(--steel);
}

.process-grid,
.bullet-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

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

.process-grid article,
.bullet-grid article,
.contact-card {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.process-grid span {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  margin-bottom: 16px;
  border-radius: 50%;
  font-weight: 900;
  background: var(--safety);
}

.service-hero,
.landing-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, .8fr);
  align-items: center;
  gap: clamp(28px, 5vw, 68px);
  padding: 70px 0;
}

.service-hero h1,
.landing-hero h1 {
  font-size: clamp(1.7rem, 3vw, 2.55rem);
  line-height: 1.08;
}

.service-hero p,
.landing-hero p {
  font-size: 1.04rem;
}

.service-hero img,
.landing-hero img {
  width: 100%;
  aspect-ratio: 484 / 393;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.service-hero .btn-ghost {
  color: var(--cyan-dark);
  border-color: var(--line);
  background: var(--white);
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding: 0;
  list-style: none;
  counter-reset: step;
}

.steps li {
  padding: 22px;
  border-radius: 8px;
  background: var(--white);
  border: 1px solid var(--line);
}

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

.steps strong {
  margin-bottom: 8px;
}

.contact-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 28px;
  align-items: start;
}

.map-band {
  padding-top: 0;
}

.map-preview {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 7;
  margin-top: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
  box-shadow: var(--shadow);
}

.map-preview iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.map-open {
  position: absolute;
  left: 18px;
  bottom: 18px;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 11px 16px;
  border-radius: 6px;
  color: var(--white);
  background: var(--cyan-dark);
  box-shadow: 0 10px 24px rgba(12, 57, 76, .24);
  font-weight: 800;
}

.map-open:hover {
  color: var(--white);
  text-decoration: none;
  transform: translateY(-1px);
}

.address-map-thumb {
  position: relative;
  overflow: hidden;
  height: 132px;
  margin: 14px 0 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.address-map-thumb iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.address-map-thumb a {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: end;
  justify-content: center;
  margin: 0;
  padding: 12px;
  color: var(--white);
  background: linear-gradient(180deg, rgba(18, 24, 32, 0), rgba(18, 24, 32, .82));
  font-weight: 900;
  text-align: center;
}

.address-map-thumb a:hover {
  color: var(--white);
  text-decoration: none;
}

.quote-hero,
.landing-hero {
  background: linear-gradient(120deg, var(--ink), var(--steel));
  color: var(--white);
  width: 100%;
  max-width: none;
  padding-left: max(18px, calc((100% - var(--max)) / 2));
  padding-right: max(18px, calc((100% - var(--max)) / 2));
}

.quote-layout {
  background: var(--white);
  color: var(--ink);
}

.quote-layout p {
  color: var(--slate);
}

.quote-layout .lead-form {
  border: 1px solid var(--line);
}

.article {
  max-width: 920px;
}

.article h2 {
  margin-top: 42px;
  font-size: clamp(1.45rem, 2.4vw, 2.2rem);
}

.article h3 {
  margin-top: 28px;
}

.faq-topic h3 {
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.faq-topic h3:first-of-type {
  padding-top: 0;
  border-top: 0;
}

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

.term-grid article {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.term-grid h2 {
  font-size: 1.18rem;
}

.term-grid p {
  color: var(--slate);
}

.site-footer {
  background: #0d1319;
  color: rgba(255, 255, 255, .78);
  padding: 54px clamp(18px, 4vw, 48px) 28px;
}

.site-footer img {
  width: 138px;
  height: auto;
  display: block;
  margin-bottom: 16px;
}

.footer-grid {
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 28px;
}

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

.site-footer a {
  display: block;
  color: rgba(255, 255, 255, .84);
  margin-bottom: 8px;
}

.site-footer .address-map-thumb a {
  display: flex;
  color: var(--white);
  margin-bottom: 0;
}

.site-footer .btn {
  display: inline-flex;
}

.footer-bottom {
  width: min(var(--max), 100%);
  margin: 36px auto 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  width: 58px;
  height: 58px;
  padding: 0;
  border-radius: 50%;
  background: transparent;
  box-shadow: 0 14px 32px rgba(37, 211, 102, .34);
  font-weight: 900;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity .2s ease, transform .2s ease;
}

.floating-whatsapp img {
  width: 58px;
  height: 58px;
  display: block;
}

.has-scrolled .floating-whatsapp {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.floating-whatsapp:hover {
  color: var(--white);
  text-decoration: none;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto 1fr;
  }

  .menu-toggle {
    display: inline-flex;
    justify-self: start;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    padding: 12px 18px 18px;
    background: var(--white);
    border-bottom: 1px solid var(--line);
  }

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

  .header-cta {
    justify-self: end;
  }

  .whatsapp-cta {
    padding: 0;
  }

  .card-grid,
  .process-grid,
  .bullet-grid,
  .proof-grid,
  .term-grid,
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .split,
  .lead-section,
  .home-proof,
  .service-hero,
  .landing-hero,
  .contact-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 680px) {
  h1 {
    font-size: 1.65rem;
  }

  .page-hero h1,
  .service-hero h1,
  .landing-hero h1 {
    font-size: 1.65rem;
  }

  .site-header {
    gap: 10px;
    padding: 10px 14px;
  }

  .brand img {
    width: 62px;
  }

  .header-cta {
    min-height: 40px;
    padding: 9px 10px;
  }

  .whatsapp-cta {
    width: 44px;
    height: 44px;
    min-height: 44px;
    padding: 0;
  }

  .whatsapp-cta img {
    width: 44px;
    height: 44px;
  }

  .hero {
    min-height: 640px;
  }

  .hero-media::after {
    background: rgba(18, 24, 32, .74);
  }

  .hero-content {
    padding: 68px 0 52px;
  }

  .strip,
  .card-grid,
  .process-grid,
  .bullet-grid,
  .proof-grid,
  .term-grid,
  .footer-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .section,
  .split,
  .lead-section,
  .contact-grid,
  .map-band,
  .article {
    padding: 58px 0;
  }

  .page-hero {
    padding: 48px 0 28px;
  }

  .page-hero p,
  .service-hero p,
  .landing-hero p {
    font-size: 1rem;
  }

  .section-muted,
  .section-dark,
  .lead-section,
  .quote-hero,
  .landing-hero {
    padding-left: 18px;
    padding-right: 18px;
  }

  .comparison {
    display: block;
    overflow-x: auto;
  }

  .map-preview {
    aspect-ratio: 1 / 1;
  }

  .map-open {
    left: 12px;
    right: 12px;
    justify-content: center;
  }

  .floating-whatsapp {
    left: auto;
    right: 18px;
    width: 58px;
    height: 58px;
  }
}
