:root {
  --blue: #005da3;
  --blue-dark: #003f75;
  --blue-soft: #e8f3fb;
  --orange: #f4770b;
  --orange-dark: #d85e00;
  --ink: #1f2a37;
  --muted: #657180;
  --line: #d9e2ec;
  --surface: #ffffff;
  --soft: #f6f8fb;
  --shadow: 0 20px 60px rgba(31, 42, 55, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 104px;
}

body {
  background: var(--soft);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  margin: 0;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  align-items: center;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(217, 226, 236, 0.8);
  display: flex;
  gap: 28px;
  height: 76px;
  justify-content: space-between;
  left: 0;
  padding: 0 max(24px, calc((100vw - 1180px) / 2));
  position: sticky;
  right: 0;
  top: 0;
  z-index: 20;
}

.site-logo img {
  display: block;
  height: 48px;
  max-width: 250px;
  object-fit: contain;
}

.site-nav {
  align-items: center;
  display: flex;
  gap: 24px;
  font-size: 14px;
  font-weight: 700;
}

.site-nav a {
  color: #344054;
}

.site-nav a:hover {
  color: var(--blue);
}

.nav-cta,
.button {
  align-items: center;
  border-radius: 8px;
  display: inline-flex;
  font-weight: 800;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
}

.nav-cta,
.button.primary {
  background: var(--orange);
  color: #fff !important;
}

.nav-cta:hover,
.button.primary:hover {
  background: var(--orange-dark);
}

.button.secondary {
  background: #fff;
  border: 1px solid var(--line);
  color: var(--blue-dark);
}

.button,
.feature-card,
.steps-grid article,
.audience-panel,
.testimonial-grid article,
.faq-grid details {
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

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

.hero {
  align-items: center;
  background:
    linear-gradient(90deg, rgba(0, 93, 163, 0.08), rgba(244, 119, 11, 0.06)),
    var(--soft);
  display: grid;
  gap: clamp(32px, 5vw, 76px);
  grid-template-columns: minmax(0, 560px) minmax(320px, 520px);
  justify-content: center;
  min-height: calc(100vh - 76px);
  padding: 56px 24px 44px;
}

.hero-content {
  color: var(--ink);
  max-width: 560px;
  position: relative;
}

.hero-content::before {
  background: var(--orange);
  border-radius: 999px;
  content: "";
  display: block;
  height: 8px;
  margin-bottom: 28px;
  width: 86px;
}

.eyebrow {
  color: var(--orange);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  margin: 0 0 12px;
  text-transform: uppercase;
}

.hero h1 {
  color: var(--blue-dark);
  font-size: clamp(42px, 5vw, 68px);
  letter-spacing: 0;
  line-height: 1;
  margin: 0 0 24px;
  max-width: 620px;
}

.hero-copy {
  color: var(--muted);
  font-size: 20px;
  line-height: 1.5;
  margin: 0;
  max-width: 620px;
}

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

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.trust-row span {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(31, 42, 55, 0.08);
  color: var(--blue-dark);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.2;
  padding: 10px 12px;
}

.hero-visual {
  justify-self: end;
  max-width: 520px;
  position: relative;
  width: 100%;
}

.hero-visual img {
  border-radius: 8px;
  border: 1px solid rgba(0, 93, 163, 0.16);
  box-shadow: 0 24px 70px rgba(0, 63, 117, 0.16);
  display: block;
  aspect-ratio: 4 / 5;
  height: auto;
  object-fit: cover;
  object-position: center;
  width: 100%;
}

.hero-card {
  background: #fff;
  border: 1px solid var(--line);
  border-left: 5px solid var(--orange);
  border-radius: 8px;
  bottom: 28px;
  box-shadow: 0 18px 40px rgba(31, 42, 55, 0.18);
  display: grid;
  gap: 4px;
  left: -26px;
  max-width: 260px;
  padding: 18px;
  position: absolute;
}

.hero-card strong {
  color: var(--blue-dark);
  font-size: 18px;
}

.hero-card span {
  color: var(--muted);
  line-height: 1.45;
}

.intro-section,
.features-section,
.steps-section,
.testimonials-section,
.faq-section,
.contact-section {
  margin: 0 auto;
  max-width: 1180px;
  padding: 86px 24px;
}

.intro-section {
  align-items: start;
  display: grid;
  gap: 40px;
  grid-template-columns: minmax(260px, 430px) minmax(0, 1fr);
}

.split-section {
  align-items: center;
}

.split-copy {
  display: grid;
  gap: 22px;
}

.signal-card {
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 34px rgba(0, 63, 117, 0.1);
  display: grid;
  gap: 18px;
  grid-template-columns: 74px 1fr;
  padding: 18px;
}

.signal-card img {
  height: 74px;
  object-fit: contain;
  width: 74px;
}

.signal-card strong {
  color: var(--blue-dark);
  display: block;
  font-size: 18px;
  margin-bottom: 4px;
}

.signal-card span {
  color: var(--muted);
  line-height: 1.45;
}

h2 {
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.05;
  margin: 0;
}

.intro-section p:last-child,
.contact-copy p {
  color: var(--muted);
  font-size: 19px;
  line-height: 1.55;
  margin: 0;
}

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

.features-section {
  background: #fff;
  max-width: none;
  padding-left: max(24px, calc((100vw - 1180px) / 2 + 24px));
  padding-right: max(24px, calc((100vw - 1180px) / 2 + 24px));
}

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

.feature-card {
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 14px;
  padding: 28px;
}

.feature-card:hover,
.steps-grid article:hover,
.audience-panel:hover,
.testimonial-grid article:hover {
  border-color: rgba(0, 93, 163, 0.28);
  box-shadow: 0 18px 45px rgba(0, 63, 117, 0.12);
  transform: translateY(-4px);
}

.feature-icon {
  border-radius: 8px;
  display: block;
  height: 74px;
  object-fit: cover;
  width: 74px;
}

.feature-card p {
  color: var(--muted);
  line-height: 1.55;
  margin: 0;
}

.stats-band {
  background: var(--blue-dark);
  color: #fff;
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0 auto;
  max-width: 1180px;
  overflow: hidden;
}

.stats-band div {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  display: grid;
  gap: 8px;
  min-height: 150px;
  padding: 30px;
}

.stats-band strong {
  color: #fff;
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1;
}

.stats-band span:last-child {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 700;
  line-height: 1.45;
}

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

.steps-grid article,
.lead-form,
.faq-grid details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 8px 26px rgba(31, 42, 55, 0.06);
}

.steps-grid article {
  padding: 22px;
}

.steps-grid span {
  align-items: center;
  background: var(--blue-soft);
  border-radius: 8px;
  color: var(--blue);
  display: inline-flex;
  font-weight: 900;
  height: 38px;
  justify-content: center;
  margin-bottom: 20px;
  width: 38px;
}

h3 {
  font-size: 20px;
  line-height: 1.2;
  margin: 0 0 10px;
}

.steps-grid p,
.benefit-list span,
.faq-grid p {
  color: var(--muted);
  line-height: 1.55;
  margin: 0;
}

.audience-band {
  margin: 0 auto;
  max-width: 1180px;
  padding: 86px 24px;
  position: relative;
  scroll-margin-top: 104px;
}

.anchor-offset {
  left: 0;
  pointer-events: none;
  position: absolute;
  top: 0;
  scroll-margin-top: 104px;
}

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

.audience-panel {
  background: #fff;
  border: 1px solid var(--line);
  border-top: 6px solid var(--blue);
  border-radius: 8px;
  box-shadow: 0 10px 34px rgba(31, 42, 55, 0.08);
  display: grid;
  gap: 18px;
  padding: 34px;
}

.audience-panel.featured {
  border-top-color: var(--orange);
}

.audience-kicker {
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.audience-panel.featured .audience-kicker {
  color: var(--orange);
}

.audience-panel h3 {
  color: var(--blue-dark);
  font-size: 30px;
  line-height: 1.08;
  margin: 0;
}

.audience-panel p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
  margin: 0;
}

.benefit-list {
  display: grid;
  gap: 12px;
  margin-top: 8px;
}

.benefit-list div {
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 4px;
  padding: 16px 18px;
}

.benefit-list strong {
  color: var(--ink);
  font-size: 17px;
}

.testimonials-section {
  background:
    linear-gradient(90deg, rgba(0, 93, 163, 0.08), rgba(244, 119, 11, 0.05)),
    #fff;
  max-width: none;
  padding-left: max(24px, calc((100vw - 1180px) / 2 + 24px));
  padding-right: max(24px, calc((100vw - 1180px) / 2 + 24px));
}

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

.testimonial-grid article {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 8px 26px rgba(31, 42, 55, 0.06);
  display: grid;
  gap: 18px;
  padding: 26px;
}

.testimonial-grid p {
  color: var(--ink);
  font-size: 18px;
  line-height: 1.55;
  margin: 0;
}

.testimonial-grid strong {
  color: var(--blue);
}

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

.faq-grid details {
  padding: 20px 22px;
}

.faq-grid summary {
  cursor: pointer;
  font-size: 18px;
  font-weight: 850;
}

.faq-grid p {
  margin-top: 12px;
}

.final-cta {
  align-items: center;
  background: var(--blue-dark);
  color: #fff;
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr auto;
  margin: 0 auto;
  max-width: 1180px;
  padding: 44px;
}

.final-cta h2 {
  color: #fff;
}

.final-cta .eyebrow {
  color: var(--orange);
}

.contact-section {
  align-items: start;
  display: grid;
  gap: 34px;
  grid-template-columns: minmax(280px, 0.8fr) minmax(320px, 1fr);
}

.contact-copy {
  display: grid;
  gap: 20px;
}

.contact-methods {
  display: grid;
  gap: 10px;
}

.contact-methods a {
  color: var(--blue);
  font-weight: 850;
}

.lead-form {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding: 28px;
}

.lead-form label {
  display: grid;
  gap: 7px;
}

.lead-form span {
  color: #344054;
  font-size: 13px;
  font-weight: 800;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  min-height: 46px;
  padding: 11px 12px;
  width: 100%;
}

.lead-form textarea {
  resize: vertical;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  border-color: var(--blue);
  outline: 3px solid var(--blue-soft);
}

.full {
  grid-column: 1 / -1;
}

.consent {
  align-items: start;
  display: grid !important;
  gap: 10px !important;
  grid-template-columns: 18px 1fr;
}

.consent input {
  min-height: auto;
  margin-top: 3px;
  width: 18px;
}

.consent a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.form-status {
  color: var(--blue);
  font-weight: 800;
  grid-column: 1 / -1;
  margin: 0;
  min-height: 20px;
}

.whatsapp-float {
  align-items: center;
  background: var(--blue);
  border-radius: 8px;
  bottom: 22px;
  box-shadow: 0 14px 32px rgba(31, 42, 55, 0.2);
  color: #fff;
  display: inline-flex;
  font-weight: 900;
  min-height: 48px;
  padding: 0 18px;
  position: fixed;
  right: 22px;
  z-index: 30;
}

.site-footer {
  align-items: center;
  border-top: 1px solid var(--line);
  display: flex;
  gap: 20px;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1180px;
  padding: 30px 24px;
}

.site-footer img {
  height: 42px;
}

.site-footer p {
  color: var(--muted);
  margin: 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 13px;
  font-weight: 800;
}

.footer-links a {
  color: var(--blue);
}

.legal-page {
  background: #fff;
}

.legal-hero,
.legal-content {
  margin: 0 auto;
  max-width: 920px;
  padding: 64px 24px 24px;
}

.legal-hero h1 {
  font-size: clamp(34px, 6vw, 58px);
  line-height: 1;
  margin: 0 0 18px;
}

.legal-hero p,
.legal-content p,
.legal-content li {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.legal-content {
  padding-top: 18px;
  padding-bottom: 80px;
}

.legal-content section {
  border-top: 1px solid var(--line);
  padding: 26px 0;
}

.legal-content h2 {
  font-size: 25px;
  line-height: 1.2;
}

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

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

[data-animate] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

[data-animate].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  [data-animate] {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 980px) {
  .site-header {
    padding: 0 20px;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    align-items: stretch;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 18px 38px rgba(31, 42, 55, 0.12);
    display: none;
    flex-direction: column;
    gap: 0;
    left: 0;
    padding: 14px 20px 20px;
    position: absolute;
    right: 0;
    top: 76px;
  }

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

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

  .nav-cta {
    margin-top: 8px;
  }

  .hero,
  .intro-section,
  .contact-section,
  .final-cta {
    grid-template-columns: 1fr;
  }

  .hero {
    background:
      linear-gradient(90deg, rgba(0, 93, 163, 0.08), rgba(244, 119, 11, 0.06)),
      var(--soft);
    min-height: auto;
    padding-top: 42px;
  }

  .hero-content,
  .hero-visual {
    justify-self: stretch;
    max-width: none;
  }

  .hero-visual img {
    aspect-ratio: 16 / 11;
  }

  .hero-card {
    bottom: 16px;
    left: 16px;
  }

  .steps-grid,
  .audience-grid,
  .feature-grid,
  .stats-band,
  .testimonial-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .final-cta {
    padding: 34px 24px;
  }
}

@media (max-width: 640px) {
  .site-logo img {
    height: 38px;
    max-width: 205px;
  }

  .hero {
    padding-left: 20px;
    padding-right: 20px;
  }

  .hero h1 {
    font-size: 40px;
  }

  .hero-copy,
  .intro-section p:last-child,
  .contact-copy p {
    font-size: 17px;
  }

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

  .trust-row span {
    width: 100%;
  }

  .intro-section,
  .features-section,
  .steps-section,
  .audience-band,
  .testimonials-section,
  .faq-section,
  .contact-section {
    padding: 58px 20px;
  }

  .signal-card {
    grid-template-columns: 1fr;
  }

  .stats-band div {
    min-height: 120px;
    padding: 24px;
  }

  .lead-form {
    grid-template-columns: 1fr;
    padding: 20px;
  }

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

  .whatsapp-float {
    bottom: 14px;
    right: 14px;
  }
}
