:root {
  --font-body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --blue: #123766;
  --blue-dark: #0a2545;
  --green: #128c4a;
  --green-dark: #0b6f38;
  --ink: #152235;
  --muted: #5d6878;
  --line: #dfe5ec;
  --bg: #f5f7fa;
  --white: #ffffff;
  --shadow: 0 14px 35px rgba(15, 35, 62, 0.11);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 450;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 18px;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(8px);
}

.brand {
  flex: 0 0 auto;
  color: var(--blue-dark);
  font-weight: 850;
  font-size: 1.08rem;
  text-decoration: none;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 18px;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 650;
}

.nav-links a,
.site-footer a {
  text-decoration: none;
}

.nav-links a:hover,
.site-footer a:hover {
  text-decoration: underline;
}

.header-cta {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 6px;
  color: var(--white);
  background: var(--green);
  font-weight: 750;
  font-size: 0.92rem;
  text-decoration: none;
}

.section {
  padding: 56px 18px;
}

.hero {
  display: grid;
  gap: 28px;
  padding-top: 38px;
  background: linear-gradient(180deg, #f4f7fb 0%, #ffffff 70%);
}

.hero-copy,
.section-heading,
.quote-copy,
.split-section > div {
  max-width: 720px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--green-dark);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  color: var(--blue-dark);
  font-weight: 850;
  line-height: 1.1;
}

h1 {
  margin-bottom: 16px;
  font-size: clamp(2.35rem, 12vw, 4.35rem);
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(1.68rem, 7vw, 2.45rem);
}

h3 {
  margin-bottom: 8px;
  font-size: 1.05rem;
}

.hero-subtitle {
  color: var(--ink);
  font-size: clamp(1.05rem, 3vw, 1.18rem);
  line-height: 1.62;
}

.service-line,
.location-line {
  padding-left: 13px;
  border-left: 4px solid var(--green);
  font-weight: 750;
}

.location-line {
  color: var(--muted);
}

.cta-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 22px;
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 13px 18px;
  border: 0;
  border-radius: 6px;
  cursor: pointer;
  font: inherit;
  font-weight: 800;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
}

.button-whatsapp {
  color: var(--white);
  background: var(--green);
}

.button-whatsapp:hover,
.header-cta:hover,
.sticky-whatsapp:hover {
  background: var(--green-dark);
}

.button-secondary,
.button-primary {
  color: var(--white);
  background: var(--blue);
}

.button-secondary.light {
  color: var(--blue-dark);
  background: var(--white);
}

.button-primary:hover,
.button-secondary:hover {
  background: var(--blue-dark);
}

.helper-text {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.hero-media {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
  background: var(--bg);
}

.hero-media img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

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

.section-heading {
  margin-bottom: 24px;
}

.section-heading p:not(.eyebrow),
.quote-copy p,
.split-section p,
.final-cta p {
  color: var(--muted);
}

.card-grid,
.reason-grid {
  display: grid;
  gap: 14px;
}

.service-card,
.reason-grid p,
.quote-form {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.service-card {
  padding: 20px;
}

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

.card-icon {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  border-radius: 6px;
  color: var(--green-dark);
  background: #e7f5ed;
  font-weight: 900;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

table {
  width: 100%;
  min-width: 420px;
  border-collapse: collapse;
}

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

th {
  color: var(--white);
  background: var(--blue);
  font-size: 0.9rem;
}

tbody tr:last-child td {
  border-bottom: 0;
}

td:first-child {
  font-weight: 800;
  color: var(--blue-dark);
}

.notice {
  margin: 14px 0 22px;
  padding: 13px 14px;
  border-left: 4px solid var(--green);
  color: var(--ink);
  background: var(--white);
  font-weight: 700;
}

.quote-layout {
  display: grid;
  gap: 24px;
}

.check-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 20px 0 0;
  list-style: none;
  color: var(--blue-dark);
  font-weight: 700;
}

.check-list li {
  padding-left: 26px;
  position: relative;
}

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

.quote-form {
  display: grid;
  gap: 14px;
  padding: 18px;
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 6px;
  color: var(--blue-dark);
  font-weight: 750;
}

input,
textarea {
  width: 100%;
  min-height: 46px;
  padding: 11px 12px;
  border: 1px solid #c9d2dc;
  border-radius: 6px;
  color: var(--ink);
  font: inherit;
  background: var(--white);
}

textarea {
  resize: vertical;
}

input:focus,
textarea:focus {
  outline: 3px solid rgba(18, 140, 74, 0.22);
  border-color: var(--green);
}

.split-section {
  display: grid;
  gap: 20px;
}

.reason-grid p {
  margin: 0;
  padding: 16px;
  color: var(--blue-dark);
  font-weight: 750;
}

.final-cta {
  color: var(--white);
  background: var(--blue-dark);
}

.final-cta > * {
  max-width: 720px;
}

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

.final-cta .button {
  min-width: 190px;
}

.final-cta .button-secondary.light {
  white-space: nowrap;
}

.site-footer {
  display: grid;
  gap: 8px;
  padding: 32px 18px 92px;
  color: #d9e5f4;
  background: #071d36;
}

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

.site-footer p {
  margin: 8px 0 0;
  color: #b9c7d8;
}

.sticky-whatsapp {
  position: fixed;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 20;
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 18px;
  border-radius: 6px;
  color: var(--white);
  background: var(--green);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.22);
  font-weight: 900;
  text-decoration: none;
}

@media (min-width: 640px) {
  .section {
    padding-left: 28px;
    padding-right: 28px;
  }

  .cta-row {
    flex-direction: row;
    align-items: center;
  }

  .button {
    width: auto;
  }

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

@media (min-width: 900px) {
  .site-header {
    padding: 14px max(36px, calc((100vw - 1180px) / 2));
  }

  .nav-links {
    display: flex;
  }

  .section {
    padding: 76px max(36px, calc((100vw - 1180px) / 2));
  }

  .hero {
    grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
    align-items: center;
    min-height: calc(100vh - 72px);
    padding-top: 58px;
    padding-bottom: 64px;
  }

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

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

  .quote-layout {
    grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.8fr);
    align-items: start;
  }

  .split-section {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
  }

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

  .site-footer {
    padding: 38px max(36px, calc((100vw - 1180px) / 2));
  }

  .sticky-whatsapp {
    display: none;
  }
}
