:root {
  --text: #16191f;
  --muted: #5f6672;
  --line: #e5e7eb;
  --yellow: #ffdd00;
  --red: #d20a11;
  --blue: #075aa6;
  --pink: #e93b55;
  --bg: #f7f8fb;
  --white: #ffffff;
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--white);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
}

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

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

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

.section {
  padding: 72px 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, .94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.header-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 18px 0 16px;
}

.logo img {
  width: min(100%, 960px);
  margin: 0 auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  font-weight: 600;
}

.nav a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 8px 16px;
  border: 2px solid transparent;
  border-radius: 999px;
}

.nav a:hover {
  border-color: var(--yellow);
}

.hero {
  padding-top: 52px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(360px, 46%) minmax(0, 1fr);
  align-items: center;
  width: min(1908px, calc(100% - 96px));
  min-height: clamp(360px, 27.5vw, 562px);
  gap: clamp(24px, 3vw, 58px);
  overflow: hidden;
  padding: clamp(32px, 4vw, 70px) clamp(44px, 6vw, 120px) clamp(32px, 4vw, 70px) 0;
  border-radius: clamp(28px, 2.8vw, 54px);
  background: linear-gradient(90deg, var(--blue) 0%, #7b4d7c 45%, var(--pink) 100%);
  box-shadow: 0 24px 48px rgba(233, 59, 85, .2);
}

.hero-copy {
  grid-column: 2;
  text-align: center;
  color: var(--white);
}

.hero-copy .eyebrow {
  margin-bottom: clamp(24px, 3vw, 46px);
  color: rgba(255, 255, 255, .88);
  font-size: clamp(18px, 1.65vw, 34px);
  font-style: italic;
  font-weight: 400;
  line-height: 1.2;
  text-transform: none;
}

.hero-copy h1 {
  margin: 0 auto;
  max-width: 900px;
  color: var(--white);
  font-size: clamp(42px, 4.6vw, 88px);
  line-height: 1.04;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-copy .lead {
  max-width: 850px;
  margin: 12px auto 0;
  color: rgba(255, 255, 255, .75);
  font-size: clamp(22px, 2vw, 38px);
  font-weight: 300;
  line-height: 1.32;
}

.lead {
  max-width: 650px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 22px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--red);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: clamp(34px, 4vw, 70px);
}

.hero-actions .button-secondary {
  display: none;
}

.hero-actions .button-primary {
  min-width: clamp(300px, 25vw, 490px);
  min-height: clamp(72px, 6.8vw, 138px);
  padding: 20px 46px;
  border-radius: 999px;
  color: var(--white);
  background: linear-gradient(100deg, var(--pink) 0%, var(--pink) 34%, var(--blue) 100%);
  font-size: clamp(20px, 1.45vw, 30px);
  letter-spacing: 0;
  box-shadow: 0 14px 30px rgba(6, 71, 132, .18);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 13px 22px;
  border: 0;
  border-radius: 999px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.button-primary {
  color: var(--white);
  background: var(--red);
}

.button-secondary {
  background: var(--yellow);
}

.hero-card {
  grid-column: 1;
  grid-row: 1;
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  overflow: visible;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.hero-image {
  width: min(112%, 760px);
  height: 100%;
  max-width: none;
  object-fit: contain;
  object-position: left center;
  padding: 0;
}

.hero-card .facts-grid {
  display: none;
}

.facts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, .18);
}

.fact {
  min-height: 116px;
  padding: 18px;
  color: var(--white);
  background: rgba(0, 0, 0, .12);
}

.fact span {
  display: block;
  margin-bottom: 8px;
  font-size: 13px;
  opacity: .82;
}

.fact strong {
  display: block;
  font-size: 16px;
  line-height: 1.35;
}

.intro {
  background: var(--bg);
}

.split {
  display: grid;
  grid-template-columns: minmax(260px, 460px) minmax(0, 1fr);
  gap: 40px;
  align-items: start;
}

h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1.08;
}

h3 {
  margin: 0;
  font-size: 25px;
  line-height: 1.2;
}

.section-head {
  max-width: 720px;
  margin-bottom: 36px;
}

.module-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.module-card {
  display: flex;
  flex-direction: column;
  min-height: 420px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.module-number {
  width: fit-content;
  margin-bottom: 22px;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--yellow);
  font-weight: 800;
}

.period {
  margin: 12px 0 18px;
  color: var(--red);
  font-weight: 800;
}

.module-card p:last-child {
  margin-bottom: 0;
  color: var(--muted);
}

.benefits {
  background: var(--bg);
}

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.benefit-panel {
  padding: 34px;
  border-radius: var(--radius);
  background: var(--white);
}

.benefit-panel.accent {
  color: var(--white);
  background: linear-gradient(120deg, var(--blue), var(--pink));
}

.check-list {
  display: grid;
  gap: 16px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
}

.check-list li::before {
  content: "";
  position: absolute;
  top: .55em;
  left: 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--yellow);
}

.faq {
  background: var(--bg);
}

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

.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 68px;
  padding: 18px 22px;
  font-size: 20px;
  font-weight: 800;
  cursor: pointer;
}

.faq-list summary::after {
  content: "+";
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--yellow);
  text-align: center;
  line-height: 30px;
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--muted);
}

.footer {
  padding: 32px 0;
  background: var(--text);
  color: var(--white);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
}

.footer img {
  width: min(100%, 960px);
  filter: brightness(0) invert(1);
  margin: 0 auto;
}

.footer a {
  display: block;
  text-align: center;
  font-weight: 700;
}

@media (max-width: 1020px) {
  .split {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    width: min(720px, calc(100% - 32px));
    padding: 34px 28px 42px;
  }

  .hero-copy {
    grid-column: 1;
    grid-row: 2;
  }

  .hero-card {
    grid-column: 1;
    grid-row: 1;
    justify-content: center;
    min-height: 260px;
  }

  .hero-image {
    width: min(100%, 440px);
  }

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

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

  .header-inner,
  .footer-inner {
    align-items: center;
    flex-direction: column;
  }

  .nav {
    justify-content: center;
  }

  .nav a {
    min-height: 38px;
    padding: 7px 12px;
    font-size: 14px;
  }

  .hero {
    padding-top: 32px;
  }

  .hero-grid {
    gap: 28px;
    border-radius: 28px;
  }

  .lead {
    font-size: 18px;
  }

  .facts-grid,
  .module-grid,
  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .fact {
    min-height: auto;
  }

  .module-card {
    min-height: auto;
  }

  .faq-list summary {
    font-size: 17px;
  }

  .footer a {
    text-align: center;
  }
}

.nav-cta {
    color: var(--white);
    background: var(--red);
}



.nav-cta:hover {
    border-color: transparent!important;
}

.module-card h3 {
  min-height: calc(1.2em * 3);
  text-align: center;
    font-size: 23px;
}

.module-card .period {
  text-align: center;

}

.module-card .module-number {
  text-align: center;

}

@media (max-width: 720px){
.module-card h3 {
  min-height: auto;
}
}

.sup-lead{
	    color: rgba(255, 255, 255, .75);
}