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

:root {
  --blue:   #3B7BC7;
  --pink:   #E9A5D1;
  --yellow: #FED006;
  --green:  #73CC79;
  --orange: #E84517;
}

html { scroll-behavior: smooth; scroll-padding-top: 110px; }

/* Keep the nav pinned to the top while scrolling */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: #fff;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--blue);
  background: #fff;
  font-size: 16px;
  line-height: 1.6;
}

/* Headings use Montserrat to match the project stylesheet */
h1, h2, h3, h4 { font-family: 'Montserrat', sans-serif; }

/* ── NAV ── */
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 2.5rem;
  border-bottom: 1px solid rgba(59,123,199,0.12);
}
.logo-wrap img { height: 64px; width: auto; display: block; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-link {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
  text-decoration: none;
  opacity: 0.7;
  transition: opacity 0.15s;
}
.nav-link:hover { opacity: 1; }
.nav-cta {
  display: inline-block;
  padding: 11px 26px;
  background: var(--yellow);
  color: var(--blue);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 3px;
  transition: filter 0.15s;
  white-space: nowrap;
}
.nav-cta:hover { filter: brightness(0.93); }
.nav-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  color: var(--blue);
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--blue);
  margin: 5px 0;
  transition: all 0.2s;
  border-radius: 2px;
}
.nav-mobile-menu {
  display: none;
  flex-direction: column;
  background: #fff;
  border-bottom: 1px solid rgba(59,123,199,0.12);
  padding: 0.5rem 1.5rem 1.25rem;
}
.nav-mobile-menu.open { display: flex; }
.nav-mobile-menu a {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
  text-decoration: none;
  opacity: 0.7;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(59,123,199,0.08);
}
.nav-mobile-menu a:last-child { border-bottom: none; }
.nav-mobile-menu a:hover { opacity: 1; }
@media (max-width: 780px) {
  nav { padding: 1rem 1.25rem; }
  .nav-links .nav-link { display: none; }
  .nav-hamburger { display: block; order: 1; }
  .nav-cta { order: 2; font-size: 11px; padding: 9px 16px; }
}

/* ── HERO — two column ── */
.hero {
  padding: 4rem 2.5rem 3.5rem;
  max-width: 1100px;
  margin: 0 auto;
}
.hero-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
@media (max-width: 780px) {
  .hero-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-image-col { order: -1; }
}

.hero-text-col {}
.eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 1rem;
  display: block;
}
.hero h1 {
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.05;
  margin-bottom: 1.25rem;
}
.hero h1 .hl {
  position: relative;
  display: inline-block;
}
.hero h1 .hl::after {
  content: '';
  position: absolute;
  left: -2px; right: -2px; bottom: 1px;
  height: 9px;
  background: var(--yellow);
  z-index: -1;
}
.hero-sub {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 0.85rem;
}
.hero-desc {
  font-size: 0.97rem;
  opacity: 0.8;
  line-height: 1.65;
  margin-bottom: 2rem;
}
.btn-primary {
  display: inline-block;
  padding: 16px 36px;
  background: var(--blue);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 3px;
  transition: background 0.15s, transform 0.1s;
}
.btn-primary:hover { background: #2d62a8; transform: translateY(-2px); }

/* Hero quote — sits under text column */
.hero-quote {
  margin-top: 2rem;
  background: #f4f8ff;
  border-left: 5px solid var(--pink);
  border-radius: 0 8px 8px 0;
  padding: 1.25rem 1.5rem;
}
.hero-quote blockquote {
  font-size: 0.95rem;
  font-style: italic;
  line-height: 1.65;
}
.hero-quote cite {
  display: block;
  margin-top: 0.6rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-style: normal;
  opacity: 0.55;
}

/* Hero image */
.hero-image-col {
  position: relative;
}
.hero-img-frame {
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(59,123,199,0.18);
}
.hero-img-frame img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Hero image carousel (ported from the original homepage, restyled v2) */
.car-wrap { position: relative; }
.car-main {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  aspect-ratio: 4/5;
  background: #f0f5fc;
  box-shadow: 0 16px 48px rgba(59,123,199,0.18);
}
.car-main img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.5s ease;
  display: block;
}
.car-main img.active { opacity: 1; }
.car-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  z-index: 2;
  border: none;
  cursor: pointer;
  background: rgba(255,255,255,0.85);
  color: var(--blue);
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.car-btn:hover { background: #fff; }
.car-btn.prev { left: 0; border-radius: 0 6px 6px 0; }
.car-btn.next { right: 0; border-radius: 6px 0 0 6px; }
.car-thumbs {
  display: flex;
  gap: 8px;
  margin-top: 10px;
  overflow-x: auto;
  padding-bottom: 2px;
}
.car-thumbs::-webkit-scrollbar { height: 3px; }
.car-thumbs::-webkit-scrollbar-thumb { background: rgba(59,123,199,0.3); }
.thumb {
  flex: 0 0 19%;
  aspect-ratio: 1;
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
  opacity: 0.5;
  transition: opacity 0.2s;
  border: 2px solid transparent;
}
.thumb.active { opacity: 1; border-color: var(--blue); }
.thumb:hover { opacity: 0.8; }
.thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ── EARLY SIGN-UP FORM ── */
.early-form-section {
  background: #f0f5fc;
  border-top: 3px solid var(--yellow);
  padding: 3.5rem 2rem;
}
.early-form-inner {
  max-width: 680px;
  margin: 0 auto;
}
.early-form-inner h2 {
  font-size: clamp(1.7rem, 4vw, 2.6rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--blue);
  text-align: center;
  margin-bottom: 0.4rem;
}
.early-form-inner .form-sub {
  text-align: center;
  color: var(--blue);
  opacity: 0.75;
  font-size: 0.95rem;
  line-height: 1.55;
  margin-bottom: 2rem;
}
.early-form-inner .signup-form {
  background: #fff;
  border-radius: 12px;
  padding: 2.25rem 2rem;
  border: 1.5px solid rgba(59,123,199,0.14);
}

/* ── NO COSTS STRIP ── */
.no-costs {
  padding: 3.5rem 2.5rem;
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  gap: 3.5rem;
  align-items: center;
  border-top: 1px solid rgba(59,123,199,0.1);
  border-bottom: 1px solid rgba(59,123,199,0.1);
}
@media (max-width: 720px) {
  .no-costs { grid-template-columns: 1fr; gap: 2rem; }
  .no-costs-divider { display: none; }
}
.no-costs-divider {
  background: rgba(59,123,199,0.15);
  align-self: stretch;
}
.no-costs-quote {
  background: #f0faf1;
  border-left: 4px solid var(--pink);
  border-radius: 0 8px 8px 0;
  padding: 1.25rem 1.5rem;
}
.no-costs-quote blockquote {
  font-size: 1.05rem;
  font-style: italic;
  line-height: 1.65;
  color: var(--blue);
}
.no-costs-quote cite {
  display: block;
  margin-top: 0.65rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-style: normal;
  color: var(--pink);
}
.no-costs-right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.55rem;
}
.check-item {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--green);
  line-height: 1.2;
}
.check-mark { color: #555; flex-shrink: 0; }
.btn-register {
  display: inline-block;
  margin-top: 0.75rem;
  padding: 14px 30px;
  background: var(--green);
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 3px;
  transition: filter 0.15s, transform 0.1s;
  white-space: nowrap;
}
.btn-register:hover { filter: brightness(0.9); transform: translateY(-1px); }

/* ── SHARED SECTION CHROME ── */
.section { padding: 5rem 2rem; }
.section-inner { max-width: 920px; margin: 0 auto; }
.section-label {
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 0.6rem;
}
.section-label-pink {
  color: var(--pink);
}
.section h2 {
  font-size: clamp(1.7rem, 3.8vw, 2.7rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  text-align: center;
  margin-bottom: 0.6rem;
  line-height: 1.15;
}
.section-desc {
  text-align: center;
  max-width: 580px;
  margin: 0 auto 2.75rem;
  font-size: 1rem;
  opacity: 0.8;
  line-height: 1.65;
}

/* ── EARNINGS CHART ── */
.chart-wrap {
  max-width: 800px;
  margin: 0 auto;
}

.chart-tabs {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
}
.chart-tab {
  padding: 8px 22px;
  border: 2px solid var(--blue);
  border-radius: 50px;
  background: transparent;
  color: var(--blue);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.18s;
}
.chart-tab.active { background: var(--blue); color: #fff; }

/* Fixed-height slot so swapping circles <-> bars doesn't reflow the page */
.chart-view { display: none; min-height: 320px; }
.chart-view.active { display: flex; flex-direction: column; justify-content: center; }

/* — BAR CHART — */
.bar-chart {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 12px;
  height: 280px;
}
.bar-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  flex: 1;
  max-width: 110px;
}
.bar-rate {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 6px;
  line-height: 1;
}
.bar-fill {
  width: 100%;
  border-radius: 6px 6px 0 0;
  transition: height 0.6s cubic-bezier(.22,.68,0,1.2);
}
.bar-col:nth-child(1) .bar-fill { background: var(--yellow); height: 105px; }
.bar-col:nth-child(2) .bar-fill { background: var(--yellow); height: 140px; }
.bar-col:nth-child(3) .bar-fill { background: var(--green);  height: 175px; }
.bar-col:nth-child(4) .bar-fill { background: var(--green);  height: 210px; }
.bar-col:nth-child(5) .bar-fill { background: var(--green);  height: 228px; }
.bar-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-align: center;
  color: var(--blue);
  margin-top: 8px;
  opacity: 0.7;
  line-height: 1.3;
}
.bar-divider {
  width: 100%;
  height: 2px;
  background: rgba(59,123,199,0.12);
  margin-top: 0;
}

/* — CIRCLES VIEW — */
.circles-view { padding: 1.5rem 0; }
.circles-row {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  padding: 1rem 0 0.5rem;
}
.circle-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
}
.circle-bubble {
  background: var(--pink);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}
.circle-bubble:hover { transform: scale(1.06); }
.circle-amount {
  font-weight: 700;
  color: var(--blue);
  line-height: 1;
}
.circle-sub {
  font-size: 10px;
  font-weight: 700;
  color: var(--blue);
  opacity: 0.7;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.circle-orders {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--blue);
  opacity: 0.6;
  text-align: center;
}

.earnings-note {
  text-align: center;
  max-width: 580px;
  margin: 1.75rem auto 0;
  font-size: 0.94rem;
  opacity: 0.75;
  line-height: 1.65;
}

/* ── LOGO CAROUSEL ── */
.logos-band {
  background: #f6f8fd;
  padding: 3.5rem 0;
}
.logos-label {
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.45;
  margin-bottom: 2rem;
  padding: 0 2rem;
}
.logos-overflow {
  overflow: hidden;
  position: relative;
}
.logos-overflow::before,
.logos-overflow::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}
.logos-overflow::before { left: 0;  background: linear-gradient(to right, #f6f8fd, transparent); }
.logos-overflow::after  { right: 0; background: linear-gradient(to left,  #f6f8fd, transparent); }
.logos-track {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  animation: scroll-logos 32s linear infinite;
  width: max-content;
}
.logo-item {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
}
.logo-name {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--blue);
  opacity: 0.6;
  text-align: center;
  line-height: 1.3;
  max-width: 150px;
}
.logos-track:hover { animation-play-state: paused; }
@keyframes scroll-logos {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.logo-tile {
  flex-shrink: 0;
  width: 150px;
  height: 88px;
  background: #fff;
  border-radius: 8px;
  border: 1.5px solid rgba(59,123,199,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem;
}
.logo-tile img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* ── QUOTES CAROUSEL ── */
.quotes-section { background: #f8f3fb; }
.quotes-wrap {
  max-width: 760px;
  margin: 0 auto;
  position: relative;
}
.q-card {
  display: none;
  background: #fff;
  border: 2px solid var(--blue);
  border-radius: 14px;
  padding: 2.75rem 2.25rem 2rem;
  text-align: center;
  position: relative;
}
.q-card.active { display: block; }
.q-card::before {
  content: '\201C';
  font-size: 6rem;
  line-height: 0.55;
  color: var(--pink);
  position: absolute;
  top: 1.5rem;
  left: 1.75rem;
  font-family: Georgia, serif;
  pointer-events: none;
}
.q-card blockquote {
  font-size: 1.1rem;
  font-style: italic;
  line-height: 1.7;
  padding: 0 0.5rem;
}
.q-card cite {
  display: block;
  margin-top: 1.25rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-style: normal;
  opacity: 0.55;
}
.q-pill {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px; height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  border: 1.5px solid rgba(59,123,199,0.3);
  color: var(--blue);
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.18s;
  z-index: 2;
  line-height: 1;
  box-shadow: 0 1px 6px rgba(59,123,199,0.12);
}
.q-pill:hover { background: var(--blue); color: #fff; border-color: var(--blue); }
.q-pill-prev { left: -21px; }
.q-pill-next { right: -21px; }
.q-nav {
  display: flex;
  justify-content: center;
  margin-top: 1.25rem;
}
.q-dots { display: flex; gap: 7px; }
.q-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: rgba(59,123,199,0.2);
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}
.q-dot.active { background: var(--blue); }

/* ── MID CTA ── */
.mid-cta {
  background: var(--yellow);
  text-align: center;
  padding: 3.25rem 2rem;
}
.mid-cta p {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 1.25rem;
}
.mid-cta a {
  display: inline-block;
  padding: 16px 44px;
  background: var(--blue);
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 3px;
  transition: background 0.15s;
}
.mid-cta a:hover { background: #2d62a8; }

/* ── HOW IT WORKS ── */
.hiw-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
@media (max-width: 680px) { .hiw-grid { grid-template-columns: 1fr; } }
.hiw-card {
  padding: 2.25rem 1.5rem;
  border-radius: 10px;
}
.hiw-card:nth-child(1) { border: 2px solid var(--pink); }
.hiw-card:nth-child(2) { border: 2px solid var(--yellow); }
.hiw-card:nth-child(3) { border: 2px solid var(--green); }
.hiw-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px; height: 46px;
  border-radius: 50%;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 1.1rem;
}
.hiw-card:nth-child(1) .hiw-num { background: var(--pink); }
.hiw-card:nth-child(2) .hiw-num { background: var(--yellow); }
.hiw-card:nth-child(3) .hiw-num { background: var(--green); }
.hiw-card h3 {
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}
.hiw-card p { font-size: 0.95rem; line-height: 1.7; opacity: 0.82; }

/* ── FAQ ACCORDION (ported from index.html, restyled v2) ── */
.faqs-section { background: #f6f8fd; }
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}
.faq-item {
  border-bottom: 1.5px solid rgba(59,123,199,0.18);
}
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 0.5rem;
  cursor: pointer;
  color: var(--blue);
  font-weight: 700;
  font-size: 1rem;
  user-select: none;
  transition: opacity 0.15s;
}
.faq-q:hover { opacity: 0.7; }
.faq-icon {
  font-size: 1.5rem;
  font-weight: 300;
  flex-shrink: 0;
  width: 20px;
  text-align: center;
  line-height: 1;
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  font-size: 0.95rem;
  line-height: 1.7;
  opacity: 0.85;
}
.faq-a-inner { padding: 0 0.5rem 1.4rem; }
.faq-item.open .faq-a { max-height: 600px; }

/* ── ABOUT / CONTACT ── */
.about-text {
  max-width: 680px;
  margin: 0 auto;
  text-align: left;
  font-size: 1.02rem;
  line-height: 1.8;
  opacity: 0.85;
}
.about-text p { margin-bottom: 1.1rem; }
.about-text p:last-child { margin-bottom: 0; }
.contact-card {
  max-width: 520px;
  margin: 0 auto;
  text-align: center;
  background: #f6f8fd;
  border: 2px solid var(--blue);
  border-radius: 14px;
  padding: 2.5rem 2rem;
}
.contact-card p { font-size: 1.05rem; line-height: 1.8; }
.contact-card a { color: var(--blue); font-weight: 700; text-decoration: none; }
.contact-card a:hover { text-decoration: underline; }

/* ── SHARED FORM FIELDS ── */
.f-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
@media (max-width: 520px) { .f-row { grid-template-columns: 1fr; } }
.f-group { margin-bottom: 1.25rem; }
.f-group label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--blue);
  margin-bottom: 0.4rem;
}
.f-group input,
.f-group select {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid rgba(59,123,199,0.28);
  border-radius: 5px;
  font-size: 15px;
  color: var(--blue);
  background: #fff;
  font-family: inherit;
  transition: border-color 0.18s;
  -webkit-appearance: none;
  appearance: none;
}
.f-group input:focus,
.f-group select:focus { outline: none; border-color: var(--blue); }
.f-group input::placeholder { color: rgba(59,123,199,0.35); }
.f-submit {
  width: 100%;
  padding: 17px;
  background: var(--yellow);
  color: var(--blue);
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  cursor: pointer;
  margin-top: 0.5rem;
  font-family: inherit;
  transition: filter 0.15s, transform 0.1s;
}
.f-submit:hover { filter: brightness(0.93); transform: translateY(-1px); }
.f-disclaimer {
  text-align: center;
  font-size: 11.5px;
  opacity: 0.55;
  margin-top: 1rem;
  line-height: 1.55;
}
.f-req { color: var(--orange); }

/* ── MAIN SIGN-UP FORM ── */
.form-section {
  background: var(--blue);
  padding: 5.5rem 2rem;
}
.form-inner {
  max-width: 620px;
  margin: 0 auto;
}
.form-inner h2 {
  font-size: clamp(1.7rem, 3.8vw, 2.6rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #fff;
  text-align: center;
  margin-bottom: 0.6rem;
}
.form-sub {
  text-align: center;
  color: rgba(255,255,255,0.78);
  font-size: 1rem;
  line-height: 1.55;
  margin-bottom: 2.5rem;
}
.form-inner .form-sub { color: rgba(255,255,255,0.78); }
.signup-form {
  background: #fff;
  border-radius: 12px;
  padding: 2.75rem 2.25rem;
}

/* ── FINAL CTA ── */
.final-cta {
  background: var(--yellow);
  text-align: center;
  padding: 5rem 2rem;
}
.final-cta h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--blue);
  margin-bottom: 1rem;
}
.final-cta p {
  max-width: 460px;
  margin: 0 auto 2rem;
  font-size: 1rem;
  color: var(--blue);
  opacity: 0.82;
  line-height: 1.65;
}

/* ── FOOTER ── */
footer {
  border-top: 1px solid rgba(59,123,199,0.1);
  padding: 2.25rem 2rem;
  text-align: center;
}
footer img { height: 48px; width: auto; margin: 0 auto 0.75rem; }
footer p {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.4;
}

@media (max-width: 768px) {
  nav { padding: 1rem 1.25rem; }
  .hero { padding: 2.5rem 1.25rem 2.5rem; }
  .section { padding: 3.5rem 1.25rem; }
}
