:root {
  --primary: #133f97;
  --primary-dark: #0b2968;
  --accent: #2a8cff;
  --text: #13233f;
  --muted: #5d6d88;
  --surface: #f4f7ff;
  --line: #dbe3f1;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Inter", sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  color: var(--text);
  line-height: 1.6;
  background: var(--white);
}

.container {
  width: min(1140px, 92%);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}

.nav-wrap {
  min-height: 152px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  padding: 0.2rem 0;
}

.brand img {
  height: 132px;
  width: auto;
  display: block;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.3rem;
}

.nav a {
  text-decoration: none;
  color: var(--text);
  font-weight: 600;
  font-size: 0.94rem;
}

.nav a:hover {
  color: var(--primary);
}

.nav .nav-cta {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: var(--white);
  border-radius: 999px;
  padding: 0.45rem 0.9rem;
  box-shadow: 0 8px 18px rgba(19, 63, 151, 0.2);
}

.nav .nav-cta:hover {
  color: var(--white);
  transform: translateY(-1px);
}

.menu-btn {
  display: none;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 10px;
  padding: 0.3rem 0.65rem;
  font-size: 1.1rem;
}

.hero {
  padding: 6rem 0 4.2rem;
  background:
    radial-gradient(circle at 5% 10%, rgba(42, 140, 255, 0.2), transparent 40%),
    radial-gradient(circle at 95% 0%, rgba(19, 63, 151, 0.18), transparent 32%),
    linear-gradient(180deg, #f8fbff 0%, #ffffff 95%);
}

.hero-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
  grid-template-columns: 1.15fr 0.85fr;
}

.pill {
  display: inline-flex;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--primary-dark);
  background: #dceaff;
  margin-bottom: 1rem;
}

h1 {
  font-size: clamp(2rem, 4.2vw, 3.3rem);
  line-height: 1.15;
  margin-bottom: 1rem;
}

.hero p {
  color: var(--muted);
}

.hero-cta {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.btn {
  border: 0;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  padding: 0.75rem 1.2rem;
  display: inline-block;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: var(--white);
  box-shadow: 0 10px 26px rgba(19, 63, 151, 0.24);
}

.btn-secondary {
  color: var(--text);
  background: var(--white);
  border: 1px solid var(--line);
}

.btn-light {
  color: var(--primary-dark);
  background: var(--white);
}

.stats {
  margin-top: 1.6rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
}

.stats div {
  min-width: 130px;
}

.stats strong {
  display: block;
  font-size: 1.2rem;
}

.stats span {
  color: var(--muted);
  font-size: 0.86rem;
}

.hero-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.3rem;
  box-shadow: 0 20px 50px rgba(11, 41, 104, 0.12);
}

.hero-card h2 {
  font-size: 1.16rem;
  margin-bottom: 0.8rem;
}

.hero-card ul {
  list-style: none;
  display: grid;
  gap: 0.75rem;
  color: #233858;
}

.hero-card li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.5rem;
}

.text-link {
  display: inline-block;
  margin-top: 1rem;
  color: var(--primary);
  font-weight: 700;
  text-decoration: none;
}

.trust-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fbfdff;
}

.trust-wrap {
  padding: 1rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.trust-wrap p {
  color: var(--muted);
  font-weight: 600;
}

.trust-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.trust-tags span {
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  background: #eef4ff;
  color: #2c4570;
  font-size: 0.8rem;
  font-weight: 600;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.value-card {
  background: linear-gradient(170deg, #ffffff 20%, #f2f7ff 100%);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.2rem;
  box-shadow: 0 14px 30px rgba(16, 48, 108, 0.07);
}

.value-card h3 {
  font-size: 1.02rem;
}

.value-card p {
  margin-top: 0.45rem;
  color: var(--muted);
}

.section {
  padding: 4.7rem 0;
}

.section-muted {
  background: var(--surface);
}

.section-head {
  text-align: center;
  margin-bottom: 2rem;
}

.section-head h2 {
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
}

.section-head p {
  color: var(--muted);
  margin-top: 0.35rem;
}

.cards {
  display: grid;
  gap: 1rem;
}

.cards-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card {
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 14px;
  padding: 1.2rem;
  color: inherit;
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 32px rgba(14, 49, 111, 0.12);
}

.card p {
  margin-top: 0.45rem;
  color: var(--muted);
}

.timeline {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.timeline article {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.2rem;
}

.timeline span {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  display: inline-grid;
  place-content: center;
  margin-bottom: 0.6rem;
  color: var(--white);
  background: var(--primary);
  font-weight: 700;
}

.faq-list {
  max-width: 860px;
  margin: 0 auto;
  display: grid;
  gap: 0.75rem;
}

details {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
  padding: 0.85rem 1rem;
}

summary {
  cursor: pointer;
  font-weight: 600;
}

details p {
  margin-top: 0.5rem;
  color: var(--muted);
}

.cta-band {
  background: linear-gradient(130deg, #0b2b6a 0%, #123f9c 100%);
  color: var(--white);
}

.cta-band-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.cta-band p {
  opacity: 0.88;
}

.contact-grid {
  display: grid;
  gap: 1.4rem;
  grid-template-columns: 1fr 1fr;
}

.contact-list {
  list-style: none;
  margin-top: 1rem;
  display: grid;
  gap: 0.45rem;
}

.contact-form {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1rem;
  display: grid;
  gap: 0.5rem;
  background: #fcfdff;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid #ccd8eb;
  border-radius: 9px;
  padding: 0.65rem;
}

.contact-form button[disabled] {
  opacity: 0.7;
  cursor: not-allowed;
}

.form-status {
  min-height: 1.2rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary-dark);
}

.form-status.error {
  color: #b42318;
}

.footer {
  background: #081630;
  color: #d4e2ff;
  padding: 1.2rem 0;
}

.footer-wrap {
  text-align: center;
  display: grid;
  gap: 0.2rem;
  font-size: 0.92rem;
}

.footer-wrap a {
  color: #d4e2ff;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
}

.legal-copy {
  max-width: 860px;
}

.legal-copy h2 {
  margin-top: 1.4rem;
  font-size: 1.2rem;
}

.legal-copy p {
  margin-top: 0.5rem;
  color: var(--muted);
}

.whatsapp-float {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-content: center;
  text-decoration: none;
  color: var(--white);
  background: #1ebe5d;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.25);
}

.mobile-cta {
  display: none;
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.reveal-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .hero-grid,
  .cards-3,
  .contact-grid,
  .timeline,
  .value-grid {
    grid-template-columns: 1fr 1fr;
  }

  .trust-wrap {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 760px) {

  .brand img {
    height: 102px;
  }

  .menu-btn {
    display: block;
  }

  .nav {
    position: absolute;
    top: 152px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
    padding: 0.8rem 4%;
    background: var(--white);
    border-bottom: 1px solid var(--line);
  }

  .nav.open {
    display: flex;
  }

  .hero,
  .section {
    padding: 3.6rem 0;
  }

  .hero-grid,
  .cards-3,
  .contact-grid,
  .timeline,
  .value-grid {
    grid-template-columns: 1fr;
  }

  .nav .nav-cta {
    width: 100%;
    text-align: center;
  }

  .mobile-cta {
    position: fixed;
    left: 0.8rem;
    right: 0.8rem;
    bottom: 0.8rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem;
    z-index: 998;
  }

  .mobile-cta a {
    text-align: center;
    text-decoration: none;
    padding: 0.72rem 0.8rem;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--white);
    background: #0d3280;
    box-shadow: 0 8px 24px rgba(6, 30, 82, 0.25);
  }

  .mobile-cta a:first-child {
    background: #0b8f47;
  }

  .whatsapp-float {
    bottom: 4.8rem;
  }

  .cta-band-wrap {
    flex-direction: column;
    align-items: flex-start;
  }
}