:root {
  --bg: #f3f7ff;
  --surface: #ffffff;
  --ink: #16233b;
  --ink-soft: #556684;
  --line: #d9e4f5;
  --brand: #0b5bd3;
  --brand-dark: #083f95;
  --whatsapp: #138c47;
  --radius: 12px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Manrope", sans-serif;
  background: linear-gradient(180deg, #f8fbff 0%, #f0f5ff 100%);
  color: var(--ink);
  line-height: 1.56;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  line-height: 1.2;
}

p {
  margin: 0;
}

.container {
  width: min(1140px, 92%);
  margin: 0 auto;
}

.eyebrow {
  margin: 0 0 10px;
  font-size: 0.76rem;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--brand-dark);
}

.btn {
  border: 0;
  border-radius: 999px;
  min-height: 46px;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s ease, filter 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
  filter: brightness(0.98);
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, #0f64e4 0%, #0b4eb7 100%);
}

.topbar {
  background: #081f44;
  color: #d8e7ff;
  font-size: 0.83rem;
}

.topbar-inner {
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.topbar a {
  color: #fff;
  text-decoration: none;
  font-weight: 700;
}

.header {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(6px);
}

.header-inner {
  min-height: 72px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 22px;
  align-items: center;
}

.brand {
  text-decoration: none;
  color: #123d87;
  font-size: 1.16rem;
  font-weight: 800;
  font-family: "Montserrat", sans-serif;
}

.nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
}

.nav a {
  text-decoration: none;
  color: #28466d;
  font-size: 0.92rem;
  font-weight: 700;
}

.nav a:hover {
  color: var(--brand-dark);
}

.header-actions {
  display: flex;
  gap: 8px;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.menu-toggle span {
  width: 24px;
  height: 2.5px;
  background: #1e417d;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);
}

.mode-btn {
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid #b8ccec;
  background: #fff;
  color: #1e417d;
  text-decoration: none;
  font-size: 0.84rem;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.mode-btn-active {
  border-color: #1e5bc1;
  background: #1e5bc1;
  color: #fff;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 70px 0 56px;
}

.hero-bg-shape {
  position: absolute;
  top: -180px;
  right: -220px;
  width: 540px;
  height: 540px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(65, 128, 227, 0.4) 0%, rgba(65, 128, 227, 0) 70%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 420px;
  gap: 26px;
  align-items: start;
}

.hero-copy h1 {
  font-size: clamp(2rem, 4vw, 3.15rem);
  max-width: 20ch;
}

.hero-lead {
  margin-top: 14px;
  max-width: 62ch;
  color: var(--ink-soft);
  font-size: 1.02rem;
}

.hero-highlights {
  margin-top: 22px;
  display: grid;
  gap: 10px;
}

.hero-highlights article {
  background: #fff;
  border: 1px solid #dce6f6;
  border-radius: var(--radius);
  padding: 14px 16px;
  display: grid;
  gap: 5px;
}

.hero-highlights strong {
  font-size: 0.95rem;
  color: #153f86;
}

.hero-highlights span {
  color: #506581;
  font-size: 0.92rem;
}

.contact-form {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  display: grid;
  gap: 10px;
  box-shadow: 0 16px 38px rgba(22, 50, 99, 0.1);
}

.contact-form h2 {
  font-size: 1.46rem;
}

.contact-form > p {
  color: #5a6d88;
  font-size: 0.9rem;
}

.contact-form label {
  display: grid;
  gap: 5px;
  font-size: 0.88rem;
  font-weight: 700;
}

.contact-form input {
  min-height: 45px;
  border: 1px solid #cad8ee;
  border-radius: 8px;
  padding: 0 12px;
  font: inherit;
}

.contact-form input:focus {
  outline: 2px solid #98bcf9;
  border-color: #98bcf9;
}

.legal {
  margin-top: 3px;
  color: #5d7090;
  font-size: 0.81rem;
}

.trust-strip {
  padding: 0 0 16px;
}

.trust-grid {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
}

.trust-grid article {
  padding: 18px 16px;
  border-right: 1px solid #e2e9f6;
}

.trust-grid article:last-child {
  border-right: 0;
}

.metric {
  font-family: "Montserrat", sans-serif;
  color: #143f88;
  font-weight: 800;
  font-size: 1.18rem;
  margin-bottom: 5px;
}

.trust-grid p:last-child {
  color: #557091;
  font-size: 0.88rem;
}

.section {
  padding: 62px 0;
}

.section-head {
  max-width: 760px;
}

.section-head h2 {
  font-size: clamp(1.6rem, 2.8vw, 2.3rem);
}

.steps-grid {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.step-card {
  border: 1px solid #dce6f6;
  border-radius: var(--radius);
  background: #fff;
  padding: 20px;
}

.step-card span {
  display: inline-grid;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  place-items: center;
  margin-bottom: 10px;
  font-size: 0.85rem;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, #0d65e8 0%, #0c4eb5 100%);
}

.step-card h3 {
  margin-bottom: 8px;
  font-size: 1.12rem;
}

.step-card p {
  color: #587090;
  font-size: 0.93rem;
}

.section-blue {
  background: linear-gradient(180deg, #0d56c2 0%, #0c4aad 100%);
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.solution-card {
  background: rgba(255, 255, 255, 0.97);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.solution-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  display: block;
}

.solution-card div {
  padding: 18px;
}

.solution-card h3 {
  margin-bottom: 8px;
  color: #113b82;
}

.solution-card p:last-child {
  color: #546b8b;
}

.impact-grid {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.impact-grid article {
  background: #fff;
  border: 1px solid #dce6f6;
  border-radius: var(--radius);
  padding: 18px;
}

.impact-grid h3 {
  margin-bottom: 8px;
  color: #1a3f83;
  font-size: 1.05rem;
}

.impact-grid p {
  color: #596f8e;
  font-size: 0.92rem;
}

.logo-wall {
  margin-top: 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.logo-wall img {
  width: 100%;
  height: 42px;
  object-fit: contain;
  border: 1px solid #e2e9f6;
  border-radius: 8px;
  padding: 8px;
  background: #fff;
}

.testimonials {
  background: #fff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.testimonials-grid article {
  border: 1px solid #dce6f6;
  border-radius: var(--radius);
  padding: 18px;
  background: #f8fbff;
}

.testimonials-grid p {
  color: #3b5276;
  margin-bottom: 10px;
}

.testimonials-grid strong {
  color: #1b3f83;
  font-size: 0.9rem;
}

.faq-wrap {
  display: grid;
  gap: 20px;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-list details {
  background: #fff;
  border: 1px solid #d9e5f6;
  border-radius: 10px;
  padding: 14px 16px;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 700;
  color: #1a3f84;
}

.faq-list p {
  margin-top: 10px;
  color: #58718f;
}

.contact-section {
  background: linear-gradient(180deg, #eff5ff 0%, #e4eeff 100%);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 22px;
  align-items: start;
}

.contact-copy h2 {
  font-size: clamp(1.6rem, 2.8vw, 2.25rem);
  max-width: 20ch;
}

.contact-copy p {
  margin-top: 12px;
  color: #506b8b;
  max-width: 58ch;
}

.contact-copy img {
  margin-top: 16px;
  width: 100%;
  max-width: 640px;
  height: 300px;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid #d8e3f5;
}

.footer {
  background: #132948;
  color: #c7d8ef;
  padding: 40px 0 18px;
}

.footer-mega {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 28px;
}

.footer-brand {
  text-decoration: none;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: 2rem;
  font-weight: 800;
}

.footer-brand-block p {
  margin-top: 10px;
  color: #d4e1f4;
  font-size: 0.95rem;
  max-width: 34ch;
}

.footer h3 {
  margin: 0 0 10px;
  color: #fff;
  font-size: 1.15rem;
}

.footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 7px;
}

.footer li a {
  color: #d8e5f7;
  text-decoration: none;
  font-weight: 600;
}

.social-row {
  display: flex;
  gap: 10px;
  margin-top: 6px;
}

.social-row a {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  text-decoration: none;
  font-weight: 800;
  color: #fff;
  background: #3f65a9;
}

.social-row a:nth-child(2) {
  background: #1f2432;
}

.social-row a:nth-child(3) {
  background: #0f93d2;
}

.footer-copy {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(212, 227, 246, 0.25);
}

.footer-copy p {
  margin: 0;
  font-size: 0.86rem;
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 40;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 12px 15px;
  border-radius: 999px;
  text-decoration: none;
  color: #fff;
  font-weight: 800;
  background: var(--whatsapp);
  box-shadow: 0 12px 28px rgba(19, 140, 71, 0.34);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(19, 140, 71, 0.4);
}

.whatsapp-icon {
  width: 28px;
  aspect-ratio: 1;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.22);
  color: #fff;
}

.whatsapp-icon svg {
  width: 18px;
  height: 18px;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1024px) {
  .header-inner {
    grid-template-columns: auto 1fr auto;
  }

  .menu-toggle {
    display: flex;
  }

  .header-actions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: #fff;
    border-top: 1px solid #e2e9f6;
    padding: 12px 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    z-index: 1000;
  }

  .header-actions.active {
    max-height: 200px;
  }

  .mode-btn {
    border-radius: 0;
    border: none;
    border-bottom: 1px solid #e2e9f6;
    padding: 12px 20px;
    font-size: 0.9rem;
    min-height: auto;
    justify-content: flex-start;
  }

  .mode-btn-active {
    background: #f0f5ff;
  }

  .hero-grid,
  .trust-grid,
  .steps-grid,
  .solutions-grid,
  .impact-grid,
  .testimonials-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .trust-grid article {
    border-right: 0;
    border-bottom: 1px solid #e2e9f6;
  }

  .trust-grid article:last-child {
    border-bottom: 0;
  }

  .contact-copy img,
  .solution-card img {
    height: 260px;
  }

  .logo-wall {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .footer-mega {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
}

@media (max-width: 760px) {
  .topbar-inner {
    min-height: auto;
    padding: 10px 0;
    flex-direction: column;
    align-items: flex-start;
  }

  .nav {
    display: none;
  }

  .hero {
    padding-top: 46px;
  }

  .hero-copy h1 {
    font-size: clamp(1.75rem, 8vw, 2.3rem);
  }

  .logo-wall {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .btn {
    width: 100%;
  }

  .footer-mega {
    grid-template-columns: 1fr;
  }

  .whatsapp-float {
    right: 10px;
    bottom: 10px;
    font-size: 0.9rem;
    padding: 11px 13px;
  }
}
