:root {
  --bg: #ffffff;
  --text: #1c2227;
  --muted: #56606a;
  --brand: #fd3101;
  --brand-dark: #e92c00;
  --dark: #0b1418;
  --line: #e6eaef;
  --soft: #f7f9fb;
  --radius: 14px;
  --shadow: 0 10px 28px rgba(12, 22, 32, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Open Sans", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

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

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

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.section {
  padding: 72px 0;
}

[id] {
  scroll-margin-top: 160px;
}

.section-light {
  background: var(--soft);
}

.eyebrow {
  color: var(--brand);
  font-weight: 700;
  letter-spacing: 0.2px;
  margin: 0 0 8px;
}

.eyebrow.center,
.center {
  text-align: center;
}

h1,
h2,
h3 {
  margin: 0 0 14px;
  font-family: "Poppins", sans-serif;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2rem, 4.8vw, 3.2rem);
}

h2 {
  font-size: clamp(1.6rem, 3.3vw, 2.4rem);
}

h3 {
  font-size: 1.1rem;
}

p {
  margin: 0 0 12px;
  color: var(--muted);
}

.lead {
  font-size: 1.05rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.header-row {
  height: 80px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
}

.brand {
  display: inline-flex;
  align-items: center;
  height: 100%;
}

.brand img {
  width: 132px;
  max-height: 44px;
  height: auto;
  object-fit: contain;
}

.site-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  gap: 10px;
  min-width: 0;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
}

.site-nav::-webkit-scrollbar {
  display: none;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  font-weight: 600;
  font-size: 0.9rem;
  line-height: 1.2;
  white-space: nowrap;
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid transparent;
  color: #33404d;
}

.site-nav a:hover {
  color: var(--brand);
  border-color: #ffd6cc;
  background: #fff4f1;
}

.menu-toggle {
  display: none;
  border: 1px solid var(--brand);
  background: transparent;
  color: var(--brand);
  width: 40px;
  height: 40px;
  padding: 0;
  border-radius: 8px;
  font-weight: 700;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.menu-toggle-line {
  width: 18px;
  height: 2px;
  background: var(--brand);
  border-radius: 99px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle-line:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.header-cta {
  white-space: nowrap;
  min-height: 40px;
  padding: 10px 14px;
  line-height: 1;
}

.header-highlights {
  border-top: 1px solid #f25b37;
  border-bottom: 1px solid #d92300;
  background: linear-gradient(90deg, #fd3101 0%, #f03a0f 55%, #df2a00 100%);
}

.header-highlights-row {
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.8rem;
  color: #fff;
  font-weight: 700;
  padding: 4px 0;
}

.header-highlights-row span {
  position: relative;
  white-space: nowrap;
  line-height: 1.2;
}

.header-highlights-row span:not(:last-child)::after {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
  position: absolute;
  right: -12px;
  top: 50%;
  transform: translateY(-50%);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 12px 18px;
  font-weight: 700;
  border: 1px solid transparent;
  transition: 0.2s ease;
  cursor: pointer;
}

.btn-primary {
  background: var(--brand);
  color: #fff;
}

.btn-primary:hover {
  background: var(--brand-dark);
}

.btn-outline {
  border-color: var(--brand);
  color: var(--brand);
}

.btn-outline:hover {
  background: var(--brand);
  color: #fff;
}

.hero {
  padding-top: 108px;
  background: linear-gradient(180deg, #fff 0%, #f8fbfe 100%);
}

.hero-grid,
.two-col,
.promo-grid,
.final-cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 42px;
  align-items: center;
}

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

.hero-image-wrap {
  width: 100%;
  aspect-ratio: 3 / 2;
  max-height: 560px;
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow);
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.stats-grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.stat-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 18px;
}

.stat-card h3 {
  margin-bottom: 6px;
  color: var(--text);
}

.stat-card p {
  margin: 0;
}

.rounded-image {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  color: var(--muted);
}

.check-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--brand);
  font-weight: 700;
}

.promo-section {
  background: linear-gradient(120deg, #10212b 0%, #1f3d4f 100%);
}

.promo-section h2,
.promo-section p,
.promo-section .eyebrow {
  color: #f3f7fa;
}

.promo-section .eyebrow {
  opacity: 0.95;
}

.card-grid.three {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.info-card {
  position: relative;
  min-height: 410px;
  border-radius: 16px;
  perspective: 1400px;
  outline: none;
}

.info-card-inner {
  position: relative;
  height: 100%;
  min-height: 410px;
  transform-style: preserve-3d;
  transition: transform 0.8s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.info-card:hover .info-card-inner,
.info-card:focus .info-card-inner,
.info-card:focus-within .info-card-inner,
.info-card.is-flipped .info-card-inner {
  transform: rotateY(180deg);
}

.info-card-face {
  position: absolute;
  inset: 0;
  border-radius: 16px;
  backface-visibility: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 14px 34px rgba(17, 32, 45, 0.12);
  padding: 26px 20px 20px;
  display: flex;
  flex-direction: column;
}

.info-card-front {
  background: linear-gradient(160deg, #ffffff 0%, #edf3f8 100%);
  justify-content: flex-start;
  text-align: left;
}

.info-card-front img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  object-position: center;
  border-radius: 12px;
  margin: 0 0 14px;
  background: #fff;
  border: 1px solid #d9e4ef;
}

.info-card-front h3 {
  margin: 0 0 10px;
}

.info-card-front p {
  margin: 0;
  color: #415162;
}

.info-card-back {
  transform: rotateY(180deg);
  background: linear-gradient(160deg, #11222e 0%, #0b1418 100%);
  color: #ecf2f7;
  justify-content: center;
}

.info-card-back h3 {
  color: #fff;
}

.info-card-back p {
  color: #c8d5df;
  margin-bottom: 20px;
}

.info-card-cta {
  width: 100%;
  border-color: rgba(255, 255, 255, 0.72);
  color: #fff;
}

.info-card-cta:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.16);
}

.logos-section {
  background: #fff;
}

.logo-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
  align-items: center;
}

.logo-grid + .logo-grid {
  margin-top: 16px;
}

.logo-grid img {
  width: 100%;
  height: 60px;
  object-fit: contain;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 10px;
  padding: 8px;
}

.faq-list {
  margin-top: 24px;
  display: grid;
  gap: 10px;
}

.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px 16px;
}

.faq-item summary {
  cursor: pointer;
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #1f2a34;
  list-style: none;
  position: relative;
  padding-right: 26px;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  color: var(--brand);
  font-size: 1.2rem;
  line-height: 1;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  margin: 10px 0 0;
}

.final-cta {
  background: linear-gradient(180deg, #ffffff 0%, #f8fbfe 100%);
}

.final-cta-action {
  display: flex;
  justify-content: flex-end;
}

.site-footer {
  background: var(--dark);
  color: #dce6ee;
  padding-top: 52px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.2fr;
  gap: 28px;
}

.footer-grid h3 {
  color: #fff;
  margin-bottom: 12px;
}

.footer-grid a {
  display: block;
  margin-bottom: 8px;
  color: #dce6ee;
}

.footer-grid a:hover {
  color: #fff;
}

.footer-logo {
  width: 130px;
  margin-bottom: 12px;
}

.footer-bottom {
  margin-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 18px 0 28px;
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  color: #b9c8d3;
}

.floating-wa {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 80;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
  line-height: 0;
}

.floating-wa img {
  width: 54px;
  height: 54px;
  display: block;
  object-fit: contain;
}

.back-to-top {
  position: fixed;
  left: 18px;
  bottom: 18px;
  width: 42px;
  height: 42px;
  border: 1px solid var(--brand);
  color: var(--brand);
  background: #fff;
  border-radius: 8px;
  font-size: 20px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: 0.2s ease;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

@media (max-width: 1024px) {
  .header-row {
    position: relative;
    grid-template-columns: auto 1fr auto;
    grid-template-areas: "brand cta menu";
    min-height: 72px;
    height: 72px;
    gap: 12px;
    padding: 0;
  }

  .brand {
    grid-area: brand;
  }

  .header-cta {
    grid-area: cta;
    justify-self: end;
    min-height: 38px;
    padding: 8px 12px;
    font-size: 0.82rem;
  }

  .menu-toggle {
    grid-area: menu;
    justify-self: end;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    grid-area: unset;
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 12px 26px rgba(15, 25, 35, 0.14);
    padding: 6px 12px;
    z-index: 70;
  }

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

  .site-nav a {
    padding: 9px 4px;
    border-bottom: 1px solid #eef3f7;
    border-radius: 0;
    border-left: 0;
    border-right: 0;
    border-top: 0;
    background: transparent;
  }

  .site-nav a:last-child {
    border-bottom: 0;
  }

  .header-highlights-row {
    justify-content: center;
    gap: 12px;
    min-height: auto;
    padding: 6px 0;
    overflow: visible;
    flex-wrap: wrap;
    font-size: 0.76rem;
  }

  .header-highlights-row span {
    white-space: normal;
    text-align: center;
    max-width: 30ch;
  }

  .header-highlights-row span::after {
    display: none;
  }

  .hero-grid,
  .two-col,
  .promo-grid,
  .final-cta-grid {
    grid-template-columns: 1fr;
  }

  .hero-image-wrap {
    aspect-ratio: 3 / 2;
    max-height: 500px;
  }

  .final-cta-action {
    justify-content: flex-start;
  }

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

  .info-card,
  .info-card-inner {
    min-height: 360px;
  }

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

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .desktop-only {
    display: none;
  }
}

@media (max-width: 640px) {
  .header-highlights {
    display: none;
  }

  .section {
    padding: 56px 0;
  }

  .header-row {
    min-height: 68px;
    height: 68px;
    gap: 8px;
  }

  .brand img,
  .footer-logo {
    width: 110px;
  }

  .brand img {
    max-height: 36px;
  }

  .header-cta {
    width: auto;
    max-width: 150px;
    text-align: center;
    min-height: 36px;
    padding: 7px 10px;
    font-size: 0.78rem;
  }

  .header-highlights-row {
    font-size: 0.72rem;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    gap: 2px;
    min-height: auto;
    padding: 4px 0 3px;
    line-height: 1.2;
  }

  .header-highlights-row span {
    max-width: 100%;
    text-align: right;
  }

  .hero-actions .btn,
  .final-cta-action .btn,
  .info-card-cta {
    width: 100%;
  }

  .hero-image-wrap {
    aspect-ratio: 3 / 2;
    max-height: 380px;
  }

  [id] {
    scroll-margin-top: 120px;
  }

  .hero-actions {
    display: grid;
    width: 100%;
  }

  .stats-grid,
  .footer-grid,
  .logo-grid {
    grid-template-columns: 1fr 1fr;
  }

  .info-card,
  .info-card-inner {
    min-height: 340px;
  }

  .info-card-face {
    padding: 22px 18px 18px;
  }

  .info-card-front img {
    height: 170px;
  }

  .floating-wa {
    right: 12px;
    bottom: 12px;
  }

  .floating-wa img {
    width: 50px;
    height: 50px;
  }

  .back-to-top {
    left: 12px;
    bottom: 12px;
  }
}
