:root {
  --navy: #0b2445;
  --navy-2: #102d57;
  --navy-3: #173863;
  --gold: #d9a62e;
  --gold-2: #e7bb4b;
  --green: #2db45f;
  --green-2: #3ac56f;
  --bg: #f3f3f3;
  --card: #ffffff;
  --muted: #6d7683;
  --text: #12233f;
  --line: #e8e8e8;
  --soft-pink: #fbf1f1;
  --shadow: 0 14px 40px rgba(10, 28, 58, 0.08);
  --radius: 10px;
  --container: 1100px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  background: var(--bg);
  color: var(--text);
}

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

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

button {
  font: inherit;
}

.page {
  width: 100%;
  overflow-x: hidden;
}

.container {
  width: min(calc(100% - 24px), var(--container));
  margin: 0 auto;
}

.hero {
  background:
    radial-gradient(circle at 50% 100%, rgba(255,255,255,0.14), transparent 30%),
    linear-gradient(180deg, #082245 0%, #0a2649 72%, #1b365d 100%);
  color: #fff;
  position: relative;
  padding: 12px 0 28px;
  box-shadow: inset 0 -22px 45px rgba(255,255,255,0.18);
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 0 0 18px;
}

.brand {
  font-size: 14px;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.brand span {
  color: var(--gold-2);
}

.call-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  font-weight: 700;
  color: #fff;
  background: var(--green);
  border-radius: 6px;
  padding: 8px 12px;
  box-shadow: 0 8px 16px rgba(45,180,95,0.25);
}

.call-chip .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,0.95);
  color: var(--green);
  display: grid;
  place-items: center;
  font-size: 8px;
  font-weight: 900;
}

.hero-content {
  text-align: center;
  padding-bottom: 6px;
}

.hero h1 {
  margin: 10px auto 14px;
  max-width: 920px;
  font-size: clamp(32px, 6vw, 68px);
  line-height: 1.02;
  letter-spacing: -0.05em;
  font-weight: 900;
}

.hero h1 .gold,
.section-title .gold,
.banner .gold,
.results .accent,
.cta-dark h2 .gold {
  color: var(--gold-2);
}

.hero .subhead {
  margin: 0 0 6px;
  font-size: clamp(15px, 2vw, 20px);
  font-weight: 800;
  color: #ffffff;
}

.hero .subhead span {
  color: var(--gold-2);
}

.hero .small-text,
.hero .lead {
  margin-left: auto;
  margin-right: auto;
  color: rgba(255,255,255,0.78);
}

.hero .small-text {
  margin-bottom: 10px;
  font-size: clamp(12px, 1.4vw, 16px);
  line-height: 1.55;
  max-width: 760px;
}

.hero .lead {
  margin-bottom: 18px;
  max-width: 790px;
  font-size: clamp(13px, 1.6vw, 17px);
  line-height: 1.65;
}

.hero-actions,
.cta-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  min-height: 48px;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: -0.01em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  cursor: pointer;
  transition: 0.2s ease;
}

.btn-primary {
  background: var(--gold);
  color: #101d31;
  box-shadow: 0 8px 16px rgba(217,166,46,0.2);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.28);
}

.btn-whatsapp {
  background: var(--green);
  color: #fff;
}

.btn:hover,
.call-chip:hover {
  filter: brightness(1.04);
}

.section {
  padding: 64px 0 0;
}

.section-dark {
  background: var(--navy);
  color: #fff;
  padding: 70px 0;
  margin-top: 70px;
}

.section-title {
  margin: 0 0 8px;
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.15;
  font-weight: 900;
  text-align: center;
  letter-spacing: -0.04em;
  color: var(--text);
}

.section-dark .section-title {
  color: #fff;
}

.section-subtitle {
  margin: 0 auto 28px;
  max-width: 760px;
  text-align: center;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.mini-gap {
  margin-top: -8px;
  margin-bottom: 18px;
}

.problem-grid,
.implement-grid,
.fit-grid {
  display: grid;
  gap: 14px;
}

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

.problem-card {
  min-height: 72px;
  border: 1px solid #eddada;
  background: var(--soft-pink);
  border-radius: 8px;
  padding: 18px 16px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: #39404d;
}

.problem-icon,
.pill-icon,
.mini-icon,
.fit-icon,
.tick {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
}

.problem-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1px solid #f0c7c7;
  color: #ef5c5c;
  font-size: 12px;
  margin-top: 1px;
}

.callout {
  margin-top: 20px;
  background: #f7f7f7;
  border: 1px solid #e4e4e4;
  border-radius: 8px;
  text-align: center;
  padding: 26px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.6);
}

.callout .tiny {
  display: block;
  font-size: 12px;
  color: #9da4af;
  margin-bottom: 4px;
}

.callout strong {
  display: block;
  font-size: 17px;
  line-height: 1.55;
}

.callout .red {
  color: #ee5b5b;
}

.callout p {
  margin: 4px 0 0;
  font-size: 14px;
  line-height: 1.55;
  color: #949ba4;
}

.center-stack {
  display: grid;
  gap: 12px;
  max-width: 660px;
  margin: 0 auto;
}

.pill {
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 10px;
  min-height: 52px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 22px;
  box-shadow: 0 5px 10px rgba(10, 28, 58, 0.04);
  font-size: 14px;
  font-weight: 600;
  color: #3c4655;
}

.pill-icon,
.mini-icon,
.fit-icon,
.tick {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #fff9eb;
  color: var(--gold);
  border: 1px solid #f6e4b4;
  font-size: 12px;
}

.banner {
  background: var(--navy);
  color: #fff;
  border-radius: 8px;
  text-align: center;
  padding: 22px 30px;
  margin-top: 20px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.55;
  box-shadow: var(--shadow);
}

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

.implement-card,
.fit-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px 18px;
  min-height: 160px;
  box-shadow: 0 2px 5px rgba(10, 28, 58, 0.03);
}

.mini-icon,
.fit-icon {
  margin-bottom: 12px;
  width: 28px;
  height: 28px;
  font-size: 16px;
}

.implement-card h3,
.fit-card h3 {
  margin: 0 0 6px;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.35;
  color: var(--text);
}

.implement-card p,
.fit-card p {
  margin: 0;
  font-size: 13px;
  line-height: 1.6;
  color: #8a929d;
}

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

.fit-card {
  min-height: 110px;
  padding: 16px 12px;
  text-align: center;
}

.fit-card .fit-icon {
  margin: 0 auto 10px;
}

.fit-note {
  text-align: center;
  font-size: 13px;
  line-height: 1.7;
  color: #7c8490;
  margin: 20px auto 0;
  max-width: 780px;
}

.fit-note strong {
  color: var(--text);
}

.plan-wrap {
  max-width: 760px;
  margin: 0 auto;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(10, 28, 58, 0.12);
  border: 1px solid #d9dde5;
  background: #fff;
}

.plan-top {
  background: var(--navy);
  color: #fff;
  text-align: center;
  padding: 26px 20px 22px;
}

.plan-kicker {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.16em;
  font-weight: 800;
  color: var(--gold-2);
  margin-bottom: 4px;
}

.plan-top h3 {
  margin: 0;
  font-size: clamp(36px, 5vw, 54px);
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.plan-top p {
  margin: 4px 0 0;
  font-size: 12px;
  color: rgba(255,255,255,0.8);
}

.plan-body {
  background: #fff;
  padding: 22px 22px 24px;
}

.plan-label {
  display: block;
  font-size: 11px;
  font-weight: 900;
  color: #8e97a5;
  letter-spacing: 0.14em;
  margin-bottom: 14px;
}

.plan-list {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
  display: grid;
  gap: 10px;
}

.plan-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 14px;
  line-height: 1.5;
  color: #313b4a;
}

.tick {
  margin-top: 1px;
  font-size: 11px;
}

.plan-btn {
  width: 100%;
  min-height: 44px;
  border: 0;
  border-radius: 8px;
  background: var(--gold);
  color: #12233f;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
}

.results {
  text-align: center;
}

.results .small {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255,255,255,0.74);
  margin-bottom: 6px;
}

.results .big {
  font-size: clamp(24px, 3vw, 32px);
  line-height: 1.5;
  font-weight: 800;
  margin: 0 auto 10px;
  max-width: 900px;
}

.results .body {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,0.76);
  margin: 0 auto;
  max-width: 760px;
}

.shield {
  width: 34px;
  height: 42px;
  margin: 0 auto 18px;
  border: 1.5px solid var(--gold);
  border-radius: 8px 8px 12px 12px;
  position: relative;
  background: transparent;
}

.shield::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 7px;
  transform: translateX(-50%);
  width: 12px;
  height: 14px;
  border: 1.5px solid var(--gold);
  border-bottom: 0;
  border-radius: 6px 6px 0 0;
}

.limited-text {
  text-align: center;
  font-size: 14px;
  color: #6f7783;
  line-height: 1.8;
  max-width: 760px;
  margin: 0 auto;
}

.limited-text strong {
  color: var(--text);
  font-weight: 800;
}

.line-break {
  display: block;
  margin-top: 8px;
}

.cta-buttons {
  margin-top: 24px;
}

.cta-dark {
  background: var(--navy);
  color: #fff;
  padding: 70px 0 64px;
  margin-top: 60px;
}

.cta-dark h2 {
  margin: 0 0 8px;
  text-align: center;
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.18;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: #fff;
}

.cta-dark p {
  margin: 0 auto 14px;
  max-width: 760px;
  text-align: center;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,0.72);
}

.cta-dark .question {
  margin: 0 0 18px;
  text-align: center;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
}

.final-cta-wrap {
  display: flex;
  justify-content: center;
}

.footer-brand {
  margin-top: 34px;
  text-align: center;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
}

.footer-tagline {
  text-align: center;
  font-size: 11px;
  color: rgba(255,255,255,0.52);
  margin-top: 4px;
}

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: 0.55s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 991px) {
  .problem-grid,
  .implement-grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .implement-card,
  .fit-card {
    min-height: auto;
  }
}

@media (max-width: 767px) {
  .container {
    width: min(calc(100% - 14px), 274px);
  }

  .hero {
    padding: 8px 0 28px;
  }

  .topbar {
    padding-bottom: 18px;
  }

  .brand {
    font-size: 9px;
  }

  .call-chip {
    font-size: 7px;
    padding: 5px 8px;
    border-radius: 4px;
    gap: 5px;
  }

  .call-chip .dot {
    width: 7px;
    height: 7px;
    font-size: 5px;
  }

  .hero h1 {
    margin: 8px auto 12px;
    max-width: 250px;
    font-size: 14px;
  }

  .hero .subhead {
    font-size: 8px;
    margin-bottom: 4px;
  }

  .hero .small-text,
  .hero .lead {
    max-width: 220px;
    font-size: 6px;
    line-height: 1.55;
  }

  .hero .small-text {
    max-width: 188px;
    margin-bottom: 10px;
  }

  .hero .lead {
    margin-bottom: 12px;
  }

  .hero-actions,
  .cta-buttons {
    gap: 6px;
  }

  .btn {
    min-height: 24px;
    border-radius: 6px;
    padding: 0 11px;
    font-size: 6px;
  }

  .section {
    padding-top: 38px;
  }

  .section-dark {
    padding: 38px 0;
    margin-top: 38px;
  }

  .section-title,
  .cta-dark h2 {
    font-size: 12px;
    margin-bottom: 7px;
  }

  .section-subtitle,
  .cta-dark p,
  .cta-dark .question,
  .results .small,
  .results .body,
  .limited-text,
  .fit-note {
    font-size: 6px;
    line-height: 1.65;
  }

  .section-subtitle {
    max-width: 206px;
    margin-bottom: 18px;
  }

  .mini-gap {
    margin-top: -8px;
    margin-bottom: 14px;
  }

  .problem-grid,
  .implement-grid {
    grid-template-columns: 1fr 1fr;
    gap: 7px;
  }

  .problem-card {
    min-height: 30px;
    border-radius: 4px;
    padding: 8px 7px;
    gap: 6px;
    font-size: 5.6px;
  }

  .problem-icon {
    width: 10px;
    height: 10px;
    font-size: 6px;
  }

  .callout {
    margin-top: 10px;
    border-radius: 4px;
    padding: 12px 14px;
  }

  .callout .tiny {
    font-size: 5px;
    margin-bottom: 3px;
  }

  .callout strong {
    font-size: 6.2px;
  }

  .callout p {
    font-size: 5.6px;
    margin-top: 3px;
  }

  .center-stack {
    gap: 6px;
    max-width: 190px;
  }

  .pill {
    min-height: 24px;
    gap: 7px;
    padding: 0 11px;
    border-radius: 6px;
    font-size: 5.8px;
  }

  .pill-icon,
  .mini-icon,
  .fit-icon,
  .tick {
    width: 11px;
    height: 11px;
    font-size: 6px;
  }

  .banner {
    margin-top: 11px;
    border-radius: 4px;
    padding: 12px 14px;
    font-size: 6.2px;
  }

  .implement-card,
  .fit-card {
    border-radius: 4px;
    padding: 11px 9px;
  }

  .implement-card {
    min-height: 68px;
  }

  .mini-icon,
  .fit-icon {
    width: 13px;
    height: 13px;
    font-size: 7px;
    margin-bottom: 7px;
  }

  .implement-card h3,
  .fit-card h3 {
    font-size: 5.9px;
    margin-bottom: 4px;
  }

  .implement-card p,
  .fit-card p {
    font-size: 5.3px;
  }

  .fit-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 7px;
  }

  .fit-card {
    min-height: 48px;
    padding: 8px 5px;
  }

  .fit-card .fit-icon {
    margin: 0 auto 6px;
  }

  .fit-card h3 {
    font-size: 5.2px;
  }

  .fit-note {
    max-width: 242px;
    margin-top: 10px;
    font-size: 5.5px;
  }

  .plan-wrap {
    max-width: 214px;
    border-radius: 5px;
  }

  .plan-top {
    padding: 13px 12px 11px;
  }

  .plan-kicker {
    font-size: 4.2px;
    margin-bottom: 3px;
  }

  .plan-top h3 {
    font-size: 14px;
  }

  .plan-top p {
    font-size: 4.8px;
    margin-top: 3px;
  }

  .plan-body {
    padding: 10px 11px 12px;
  }

  .plan-label {
    font-size: 4.4px;
    margin-bottom: 8px;
  }

  .plan-list {
    gap: 5px;
    margin-bottom: 11px;
  }

  .plan-list li {
    gap: 6px;
    font-size: 5.7px;
  }

  .plan-btn {
    min-height: 18px;
    border-radius: 4px;
    font-size: 6px;
  }

  .results .big {
    font-size: 9px;
    max-width: 235px;
    margin-bottom: 8px;
  }

  .shield {
    width: 13px;
    height: 16px;
    margin-bottom: 10px;
    border-radius: 7px 7px 9px 9px;
  }

  .shield::after {
    width: 5px;
    height: 6px;
    top: 3px;
    border-radius: 4px 4px 0 0;
  }

  .limited-text {
    max-width: 227px;
    font-size: 5.8px;
  }

  .line-break {
    margin-top: 8px;
  }

  .cta-buttons {
    margin-top: 16px;
  }

  .cta-dark {
    padding: 36px 0 34px;
    margin-top: 32px;
  }

  .cta-dark p {
    max-width: 180px;
    margin-bottom: 12px;
  }

  .cta-dark .question {
    margin-bottom: 14px;
    font-size: 6.2px;
  }

  .footer-brand {
    margin-top: 24px;
    font-size: 6.5px;
  }

  .footer-tagline {
    font-size: 4.7px;
  }
}
