:root {
  --bg: #f7f4ee;
  --surface: rgba(255, 255, 255, 0.82);
  --surface-solid: #ffffff;
  --surface-dark: #102038;
  --ink: #182332;
  --muted: #607089;
  --line: rgba(24, 35, 50, 0.12);
  --brand: #1148d8;
  --brand-deep: #0b214c;
  --accent: #ffbf3b;
  --danger: #e0564a;
  --success: #1d7a5f;
  --shadow-lg: 0 28px 70px rgba(17, 31, 58, 0.14);
  --shadow-md: 0 18px 36px rgba(17, 31, 58, 0.1);
  --radius-xl: 30px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --container: min(1140px, 92vw);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Manrope", Arial, Helvetica, sans-serif;
  color: var(--ink);
  line-height: 1.6;
  background:
    radial-gradient(circle at top left, rgba(255, 191, 59, 0.26), transparent 28%),
    radial-gradient(circle at top right, rgba(17, 72, 216, 0.15), transparent 32%),
    linear-gradient(180deg, #fffaf3 0%, #f5f7fb 56%, #eef4ff 100%);
}

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

a {
  color: inherit;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(247, 244, 238, 0.84);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(11, 33, 76, 0.08);
}

.topbar-wrap {
  min-height: 74px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.brand {
  font-family: "DM Serif Text", serif;
  font-size: 1.5rem;
  color: var(--brand-deep);
  letter-spacing: 0.02em;
}

.brand small {
  display: block;
  margin-top: 3px;
  font-family: "Manrope", Arial, Helvetica, sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  cursor: pointer;
}

.btn-primary {
  padding: 14px 26px;
  background: linear-gradient(135deg, #ffca4d, #ffb21d);
  color: #17120a;
  box-shadow: 0 12px 30px rgba(255, 191, 59, 0.32);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 34px rgba(255, 191, 59, 0.4);
}

.btn-secondary {
  padding: 13px 22px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.24);
}

section {
  padding: 82px 0;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(224, 86, 74, 0.12);
  color: #9b2d22;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-label.light {
  background: rgba(255, 255, 255, 0.14);
  color: #ffe4aa;
}

.section-title {
  font-family: "DM Serif Text", serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.14;
  color: var(--brand-deep);
  margin-bottom: 18px;
}

.section-copy {
  color: var(--muted);
  font-size: 1.02rem;
  max-width: 720px;
}

header {
  padding: 34px 0 48px;
}

.hero-shell {
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  background:
    linear-gradient(140deg, rgba(9, 24, 58, 0.96), rgba(16, 56, 146, 0.92) 58%, rgba(64, 118, 255, 0.82)),
    #0f224b;
  color: #fff;
  box-shadow: var(--shadow-lg);
  padding: 52px;
}

.hero-shell::before,
.hero-shell::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.hero-shell::before {
  width: 360px;
  height: 360px;
  top: -160px;
  right: -100px;
  background: rgba(255, 255, 255, 0.08);
}

.hero-shell::after {
  width: 260px;
  height: 260px;
  bottom: -120px;
  left: -40px;
  background: rgba(255, 191, 59, 0.16);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 34px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  margin-bottom: 22px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ffe6a3;
}

.hero h1 {
  font-family: "DM Serif Text", serif;
  font-size: clamp(2.5rem, 5vw, 4.3rem);
  line-height: 1.02;
  margin-bottom: 20px;
  max-width: 12ch;
}

.hero p {
  max-width: 58ch;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.05rem;
  margin-bottom: 28px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 26px;
}

.hero-list {
  list-style: none;
  display: grid;
  gap: 12px;
  max-width: 560px;
}

.hero-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.92);
}

.hero-list strong {
  color: #fff0bf;
}

.hero-media {
  display: grid;
  gap: 18px;
}

.video-card,
.hero-proof {
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(10px);
}

.video-card {
  padding: 16px;
  max-width: 400px;
  width: 100%;
  justify-self: center;
}

.video-card video {
  border-radius: 18px;
  background: #081224;
  width: 100%;
  box-shadow: 0 16px 26px rgba(0, 0, 0, 0.2);
}

.video-caption {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.94rem;
}

.hero-proof {
  padding: 20px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.proof-item {
  padding: 14px;
  border-radius: 16px;
  background: rgba(5, 14, 31, 0.24);
}

.proof-item strong {
  display: block;
  font-size: 1.55rem;
  color: #fff;
  margin-bottom: 4px;
}

.proof-item span {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.78);
}

.risk-strip {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.risk-pill {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(15, 34, 75, 0.1);
  box-shadow: 0 8px 16px rgba(15, 34, 75, 0.05);
  color: var(--brand-deep);
  font-size: 0.92rem;
  font-weight: 700;
}

.grid-3,
.grid-4,
.grid-2 {
  display: grid;
  gap: 20px;
}

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

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

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

.card {
  background: var(--surface);
  border: 1px solid rgba(15, 34, 75, 0.08);
  border-radius: 22px;
  padding: 26px;
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(10px);
}

.card h3 {
  margin-bottom: 10px;
  font-size: 1.14rem;
  line-height: 1.3;
  color: var(--brand-deep);
}

.card p,
.card li {
  color: #4f5f76;
}

.alert-card {
  position: relative;
  padding-top: 54px;
}

.alert-badge {
  position: absolute;
  top: 10px;
  left: 24px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(224, 86, 74, 0.12);
  color: var(--danger);
  font-weight: 800;
  font-size: 1.15rem;
}

.bridge {
  background: linear-gradient(160deg, #fffef9, #edf4ff);
}

.bridge-box {
  padding: 34px;
  border-radius: 28px;
  border: 1px solid rgba(17, 72, 216, 0.1);
  background: rgba(255, 255, 255, 0.75);
  box-shadow: var(--shadow-lg);
}

.before-after {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-top: 28px;
}

.state-card {
  padding: 24px;
  border-radius: 22px;
  min-height: 100%;
}

.state-card h3 {
  margin-bottom: 14px;
  font-size: 1.16rem;
}

.state-card ul {
  list-style: none;
  display: grid;
  gap: 12px;
}

.state-card li {
  display: flex;
  gap: 10px;
  color: #425166;
}

.state-risk {
  background: rgba(224, 86, 74, 0.08);
  border: 1px solid rgba(224, 86, 74, 0.14);
}

.state-relief {
  background: rgba(29, 122, 95, 0.08);
  border: 1px solid rgba(29, 122, 95, 0.14);
}

.pillar-card {
  overflow: hidden;
  position: relative;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(239, 245, 255, 0.92));
}

.pillar-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  margin-bottom: 18px;
  background: #edf3ff;
  color: var(--brand);
  font-size: 1.1rem;
  font-weight: 800;
}

.modules {
  display: grid;
  gap: 18px;
  margin-top: 30px;
}

.module-row {
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  padding: 20px 22px;
  border-radius: 20px;
  border: 1px solid rgba(15, 34, 75, 0.08);
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 12px 24px rgba(15, 34, 75, 0.06);
}

.module-index {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #123cbb, #3f73ff);
  color: #fff;
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: 0.04em;
}

.module-row h3 {
  margin-bottom: 6px;
  color: var(--brand-deep);
}

.bonus-grid .card,
.trust-grid .card {
  background: var(--surface-solid);
}

.testimonial-section {
  background: linear-gradient(180deg, #0b2046 0%, #12346f 100%);
  color: #fff;
}

.testimonial-section .section-title,
.testimonial-section .section-copy {
  color: #fff;
}

.testimonial-card {
  position: relative;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  padding: 28px;
  box-shadow: none;
  backdrop-filter: blur(8px);
}

.stars {
  color: #ffcf57;
  letter-spacing: 0.18em;
  margin-bottom: 12px;
}

.quote {
  font-size: 1rem;
  line-height: 1.78;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 22px;
}

.author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.author img {
  width: 66px;
  height: 66px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, 0.18);
}

.author strong {
  display: block;
  color: #fff;
}

.author small {
  color: rgba(255, 255, 255, 0.72);
}

.trust-grid img {
  width: 82px;
  height: 82px;
  object-fit: contain;
  margin-bottom: 16px;
}

.support-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  color: var(--brand);
  font-weight: 800;
  text-decoration: none;
}

.author-panel {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 28px;
  align-items: center;
  padding: 30px;
}

.author-panel img {
  width: 220px;
  height: 220px;
  object-fit: cover;
  border-radius: 28px;
  border: 4px solid rgba(17, 72, 216, 0.12);
  box-shadow: 0 18px 34px rgba(17, 31, 58, 0.1);
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.social-links a {
  padding: 10px 14px;
  border-radius: 999px;
  background: #edf3ff;
  color: var(--brand);
  font-weight: 800;
  text-decoration: none;
}

.final-cta {
  background: linear-gradient(145deg, #0d1f44, #153d93 68%, #3e72ff);
  color: #fff;
}

.cta-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
  gap: 28px;
  align-items: center;
  padding: 38px;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-lg);
}

.cta-shell .section-title,
.cta-shell .section-copy {
  color: #fff;
}

.cta-points {
  list-style: none;
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.cta-points li {
  display: flex;
  gap: 12px;
  color: rgba(255, 255, 255, 0.88);
}

.cta-card {
  background: #fff;
  color: var(--ink);
  border-radius: 26px;
  padding: 28px;
  box-shadow: 0 22px 42px rgba(8, 22, 48, 0.24);
}

.price-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  padding: 8px 12px;
  border-radius: 999px;
  background: #fff5d7;
  color: #8d5a00;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.cta-card h3 {
  font-size: 1.45rem;
  color: var(--brand-deep);
  margin-bottom: 10px;
}

.cta-card p {
  color: #4f5f76;
}

.cta-stack {
  display: grid;
  gap: 14px;
  margin: 22px 0;
}

.cta-stack div {
  padding: 14px 16px;
  border-radius: 16px;
  background: #f4f7fd;
  border: 1px solid #e1e8f5;
}

.cta-stack strong {
  display: block;
  margin-bottom: 4px;
  color: var(--brand-deep);
}

.cta-note {
  margin-top: 16px;
  font-size: 0.93rem;
  color: #5a6780;
  text-align: center;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 40;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #25d366;
  border-radius: 50%;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.22);
  transition: transform 0.2s ease;
}

.whatsapp-float:hover {
  transform: translateY(-2px) scale(1.04);
}

.whatsapp-float img {
  width: 38px;
  height: 38px;
}

footer {
  padding: 26px 20px 32px;
  text-align: center;
  color: #56657c;
  font-size: 0.94rem;
  background: #edf3ff;
}

footer a {
  color: var(--brand);
  text-decoration: none;
  font-weight: 700;
  margin: 0 5px;
}

@media (max-width: 1024px) {
  .hero-grid,
  .grid-4,
  .grid-3,
  .grid-2,
  .cta-shell,
  .author-panel,
  .before-after {
    grid-template-columns: 1fr;
  }

  .hero-shell,
  .cta-shell,
  .bridge-box {
    padding: 30px;
  }

  .author-panel img {
    width: 180px;
    height: 180px;
  }
}

@media (max-width: 720px) {
  section {
    padding: 64px 0;
  }

  .topbar-wrap {
    min-height: 70px;
  }

  .topbar-wrap .btn {
    display: none;
  }

  .hero-shell {
    padding: 24px;
    border-radius: 26px;
  }

  .hero h1 {
    font-size: 2.3rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .hero-proof {
    grid-template-columns: 1fr;
  }

  .module-row {
    grid-template-columns: 1fr;
  }

  .author-panel {
    padding: 24px;
  }

  .author-panel img {
    width: 150px;
    height: 150px;
  }

  .whatsapp-float {
    width: 54px;
    height: 54px;
  }

  .whatsapp-float img {
    width: 34px;
    height: 34px;
  }
}