:root {
  --brand-blue: #384E5C;
  --brand-blue-dark: #253946;
  --brand-light: #E5E6E7;
  --paper: #ffffff;
  --mist: #f4f6f6;
  --ink: #182329;
  --muted: #5f6d75;
  --line: #d9dedf;
  --whatsapp: #25D366;
  --max: 1120px;
  --font-text: "Segoe UI", Arial, sans-serif;
  --font-accent: "Tw Cen MT", "Segoe UI", Arial, sans-serif;
}

*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-text);
  font-size: 18px;
  line-height: 1.65;
}

a {
  color: inherit;
}

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

h1 {
  margin-bottom: 22px;
  font-size: clamp(2.35rem, 4.8vw, 4.4rem);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 12px;
  color: var(--brand-blue);
  font-size: clamp(1.7rem, 2.8vw, 2.45rem);
  font-weight: 700;
  line-height: 1.16;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  color: var(--brand-blue);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.25;
}

p {
  margin-bottom: 1rem;
}

.site-header {
  background: var(--brand-blue);
  color: var(--brand-light);
  border-bottom: 1px solid rgba(229, 230, 231, .22);
}

.header-inner {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

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

.brand-logo {
  display: block;
  width: clamp(300px, 34vw, 430px);
  height: auto;
  max-width: 100%;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 8px 16px;
  font-size: .94rem;
}

.site-nav a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: var(--brand-light);
  text-decoration: none;
  opacity: .92;
}

.site-nav a:hover,
.site-nav a:focus {
  opacity: 1;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.site-nav a.active {
  border-bottom: 2px solid var(--brand-light);
  font-weight: 700;
  pointer-events: none;
}

.nav-cta,
.button,
.button-secondary,
.button-light {
  min-height: 44px;
  min-width: 44px;
  padding: 12px 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 6px;
  font: inherit;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
}

.nav-cta,
.button {
  background: var(--whatsapp);
  color: #ffffff;
}

.button-secondary {
  background: transparent;
  color: var(--brand-blue);
  border-color: var(--brand-blue);
}

.button-light {
  background: transparent;
  color: var(--brand-light);
  border-color: rgba(229, 230, 231, .55);
}

.hero {
  background: var(--brand-blue);
  color: var(--brand-light);
}

.hero-inner {
  width: min(100%, var(--max));
  min-height: 620px;
  margin: 0 auto;
  padding: 76px 24px 88px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(330px, .78fr);
  align-items: center;
  gap: 56px;
}

.eyebrow {
  margin: 0 0 14px;
  color: rgba(229, 230, 231, .82);
  font-size: .82rem;
  font-weight: 800;
  font-family: var(--font-accent);
  letter-spacing: .12em;
  text-transform: uppercase;
}

.hero-copy,
.lead {
  color: var(--muted);
  font-size: 1.08rem;
}

.hero-copy {
  max-width: 670px;
  margin-bottom: 30px;
  color: rgba(229, 230, 231, .9);
}

.hero-actions,
.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.hero-note {
  max-width: 620px;
  margin-top: 24px;
  color: rgba(229, 230, 231, .74);
  font-size: .92rem;
}

.intake-panel {
  background: var(--paper);
  color: var(--ink);
  border: 1px solid rgba(229, 230, 231, .44);
  border-radius: 8px;
  padding: 26px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .22);
}

.intake-panel h2 {
  margin-bottom: 10px;
  color: var(--brand-blue);
  font-size: 1.28rem;
  line-height: 1.24;
}

.intake-panel p,
.form-disclaimer {
  color: var(--muted);
  font-size: .95rem;
}

.intake-panel label {
  display: block;
  margin: 14px 0 6px;
  color: var(--brand-blue);
  font-size: .9rem;
  font-weight: 700;
}

.intake-panel input,
.intake-panel select,
.intake-panel textarea {
  width: 100%;
  min-height: 44px;
  padding: 11px 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--ink);
  background: #ffffff;
  font: inherit;
  font-size: 1rem;
}

.intake-panel textarea {
  min-height: 94px;
  resize: vertical;
}

.form-disclaimer {
  margin: 12px 0 0;
}

.section {
  padding: 76px 24px;
}

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

.section-blue {
  background: var(--brand-blue);
  color: var(--brand-light);
}

.section-inner {
  width: min(100%, var(--max));
  margin: 0 auto;
}

.section-head {
  max-width: 760px;
  margin-bottom: 36px;
}

.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-blue h2 {
  color: var(--brand-light);
}

.section-blue .lead {
  color: rgba(229, 230, 231, .86);
}

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

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

.card,
.step,
.article-card {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.card {
  padding: 24px;
}

.card p,
.card li,
.article-card p,
.article-card li {
  color: #43515a;
}

.number-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  counter-reset: steps;
}

.step {
  padding: 22px;
  counter-increment: steps;
}

.step::before {
  content: counter(steps, decimal-leading-zero);
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--brand-blue);
  font-size: .86rem;
  font-weight: 800;
  letter-spacing: .08em;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
  gap: 44px;
  align-items: start;
}

.fact-box {
  padding: 28px;
  background: rgba(229, 230, 231, .08);
  border: 1px solid rgba(229, 230, 231, .25);
  border-radius: 8px;
}

.fact-box p {
  color: rgba(229, 230, 231, .86);
}

.authority-section {
  background: #ffffff;
}

.authority-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  max-width: 1040px;
}

.authority-media {
  display: flex;
  align-items: center;
}

.authority-media img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  border: 1px solid var(--line);
  object-fit: contain;
  object-position: center;
  box-shadow: 0 18px 46px rgba(24, 35, 41, .14);
}

.authority-copy p {
  color: #43515a;
  margin: 0 0 12px;
  line-height: 1.56;
  max-width: 820px;
}

.authority-copy h2 {
  margin-bottom: 14px;
}

.trust-badges {
  margin: 22px 0 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.trust-badges span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 7px 12px;
  border: 1px solid rgba(56, 78, 92, .18);
  border-radius: 999px;
  background: var(--mist);
  color: var(--brand-blue);
  font-size: .86rem;
  font-weight: 700;
}

.content-page {
  background: var(--mist);
}

.page-hero {
  background: var(--brand-blue);
  color: var(--brand-light);
  padding: 70px 24px;
}

.page-hero-inner,
.content-wrap {
  width: min(100%, 920px);
  margin: 0 auto;
}

.page-hero h1 {
  font-size: clamp(2.15rem, 4.2vw, 3.4rem);
}

.page-hero p {
  max-width: 760px;
  color: rgba(229, 230, 231, .88);
  font-size: 1.08rem;
}

.content-wrap {
  padding: 56px 24px 80px;
}

.article-card {
  padding: 38px;
}

.article-card h2 {
  margin-top: 34px;
  font-size: 1.55rem;
}

.article-card h2:first-child {
  margin-top: 0;
}

.article-card ul {
  padding-left: 1.2rem;
}

.faq-list {
  display: grid;
  gap: 18px;
}

.faq-list article {
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

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

.faq-list h3 {
  color: var(--ink);
  font-size: 1.08rem;
}

.faq-list p {
  margin-bottom: 0;
}

.site-footer {
  background: var(--brand-blue-dark);
  color: rgba(229, 230, 231, .78);
}

.footer-inner {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 42px 24px;
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(520px, 1.18fr);
  gap: 32px;
}

.footer-logo {
  display: block;
  width: clamp(260px, 30vw, 360px);
  height: auto;
  margin-bottom: 18px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  align-content: start;
  justify-content: flex-end;
}

.footer-links a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: var(--brand-light);
  font-size: .9rem;
  text-decoration: none;
}

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

.legal-note {
  grid-column: 1 / -1;
  padding-top: 22px;
  border-top: 1px solid rgba(229, 230, 231, .18);
  color: rgba(229, 230, 231, .62);
  font-size: .78rem;
  line-height: 1.55;
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  min-height: 52px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  background: var(--whatsapp);
  color: #ffffff;
  font-size: .95rem;
  text-decoration: none;
  box-shadow: 0 14px 34px rgba(0, 0, 0, .22);
}

.floating-whatsapp svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
  flex: 0 0 auto;
}

@media (max-width: 980px) {
  .header-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-nav {
    justify-content: flex-start;
  }

  .hero-inner,
  .split,
  .authority-grid,
  .footer-inner {
    grid-template-columns: 1fr;
  }

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

  .grid,
  .grid.two,
  .number-list {
    grid-template-columns: 1fr;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .authority-media img {
    max-height: none;
  }
}

@media (max-width: 560px) {
  body {
    font-size: 16px;
    line-height: 1.58;
  }

  h1 {
    font-size: clamp(2rem, 10vw, 2.6rem);
  }

  h2 {
    font-size: clamp(1.45rem, 7vw, 1.9rem);
  }

  .header-inner,
  .hero-inner,
  .section,
  .page-hero,
  .content-wrap,
  .footer-inner {
    padding-left: 18px;
    padding-right: 18px;
  }

  .brand-logo {
    width: min(100%, 340px);
  }

  .nav-cta,
  .button,
  .button-secondary,
  .button-light {
    width: 100%;
  }

  .floating-whatsapp {
    right: 14px;
    bottom: 14px;
    width: 56px;
    height: 56px;
    padding: 0;
  }

  .floating-whatsapp strong {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }

  .intake-panel,
  .article-card {
    padding: 22px;
  }
}
