:root {
  --purple-dark: #1a0a3d;
  --purple-mid: #2d1b6e;
  --purple-bright: #5b3fd4;
  --gold: #f5a623;
  --gold-light: #ffc94d;
  --white: #ffffff;
  --off-white: #f0ecff;
  --text-muted: #a89ec9;
  --red-cta: #e8302a;
  --red-hover: #c72420;
  --green-cta: #1a9e5c;
  --green-hover: #15834c;
}

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

body {
  font-family: 'Manrope', sans-serif;
  background-color: var(--purple-dark);
  color: var(--white);
}

/* URGENCY BAR */

.gcc-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.gcc-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

@media (max-width: 600px) {
  .gcc-row {
    grid-template-columns: 1fr;
  }
}

.urgency-bar {
  background: var(--gold);
  color: var(--purple-dark);
  text-align: center;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 800;
}

/* HEADER */
.header {
  text-align: center;
  padding: 24px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.logo-area {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.logo-icon {
  width: 38px;
  height: 38px;
  background: var(--gold);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 24px;
  color: var(--purple-dark);
}

.logo-text {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 26px;
  letter-spacing: 1px;
}

.logo-tag {
  font-size: 9px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  display: block;
  margin-top: -3px;
}

/* HERO */
.hero {
  max-width: 860px;
  margin: 0 auto;
  padding: 48px 20px 16px;
  text-align: center;
}

.pre-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold);
  border: 1px solid rgba(245, 166, 35, 0.3);
  border-radius: 4px;
  padding: 5px 14px;
  background: rgba(245, 166, 35, 0.08);
  margin-bottom: 20px;
}

h1 {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(22px, 4.5vw, 38px);
  font-weight: 800;
  line-height: 1.2;
  max-width: 760px;
  margin: 0 auto 16px;
}

h1 em {
  font-style: normal;
  color: var(--gold);
}

.hero-sub {
  font-size: 17px;
  font-weight: 600;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 12px;
  line-height: 1.55;
}

.hero-sub strong {
  color: var(--white);
}

.guarantee-line {
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  background: rgba(91, 63, 212, 0.3);
  border: 1px solid rgba(91, 63, 212, 0.5);
  border-radius: 6px;
  padding: 10px 20px;
  display: inline-block;
  margin-bottom: 32px;
}

/* VIDEO SECTION */
.video-section {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 20px 40px;
}

.video-wrapper {
  position: relative;
  background: #000;
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid rgba(245, 166, 35, 0.3);
  box-shadow: 0 0 60px rgba(91, 63, 212, 0.4);
}

.video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}

/* Placeholder for actual video embed */
.video-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1a0a3d 0%, #2d1b6e 50%, #1a0a3d 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.play-btn {
  width: 80px;
  height: 80px;
  background: rgba(245, 166, 35, 0.15);
  border: 3px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 16px;
  transition: all 0.2s;
}

.play-btn:hover {
  background: var(--gold);
  color: var(--purple-dark);
}

.video-title-text {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  text-align: center;
  padding: 0 20px;
}

.video-sub-text {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 6px;
  text-align: center;
}

.play-pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.video-caption {
  background: rgba(0, 0, 0, 0.4);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.vc-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--purple-bright);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 14px;
  color: var(--gold);
  flex-shrink: 0;
}

.vc-name {
  font-size: 13px;
  font-weight: 700;
}

.vc-title {
  font-size: 11px;
  color: var(--text-muted);
}

/* WATCH PROMPT */
.watch-prompt {
  text-align: center;
  font-size: 18px;
  font-weight: 800;
  color: var(--white);
  margin: 20px 0 8px;
}

.watch-prompt-sub {
  text-align: center;
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 28px;
}

/* INITIAL CTA (before video watched) */
.initial-cta {
  text-align: center;
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cta-btn-primary {
  display: inline-block;
  padding: 18px 40px;
  background: var(--red-cta);
  color: var(--white);
  border: none;
  border-radius: 8px;
  font-family: 'Manrope', sans-serif;
  font-size: 20px;
  font-weight: 800;
  text-align: center;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s, box-shadow 0.2s, color 0.3s;
  text-decoration: none;
  letter-spacing: 0.2px;
  width: 100%;
  max-width: 420px;
}

.cta-btn-primary:hover {
  background: var(--red-hover);
  transform: translateY(-2px);
}

/* LOCKED STATE */
.btn-activate-msg {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 12px;
  letter-spacing: 0.2px;
}

.btn-activate-msg span {
  color: var(--gold);
  font-weight: 800;
  font-variant-numeric: tabular-nums;
}

.cta-btn-locked {
  background: linear-gradient(135deg, #2e4a8a, #4a2d8a) !important;
  color: rgba(255, 255, 255, 0.4) !important;
  cursor: not-allowed !important;
  box-shadow: none !important;
  pointer-events: none;
  border: none;
}

.cta-btn-locked.cta-btn-active {
  background: var(--red-cta) !important;
  color: var(--white) !important;
  cursor: pointer !important;
  pointer-events: auto;
  box-shadow: 0 8px 28px rgba(232, 48, 42, 0.4) !important;
  animation: btnActivate 0.45s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.cta-btn-locked.cta-btn-active:hover {
  background: var(--red-hover) !important;
  transform: translateY(-2px) !important;
}

@keyframes btnActivate {
  0% {
    transform: scale(0.97);
    box-shadow: none;
  }

  60% {
    transform: scale(1.03);
  }

  100% {
    transform: scale(1);
    box-shadow: 0 8px 28px rgba(232, 48, 42, 0.4);
  }
}

/* DUAL CTA (hidden, reveals after 5 min) */
.dual-cta {
  display: none;
  max-width: 860px;
  margin: 0 auto;
  padding: 0 20px 48px;
}

.dual-cta.visible {
  display: block;
}

.dual-cta-header {
  text-align: center;
  margin-bottom: 28px;
}

.dual-cta-header h2 {
  font-size: clamp(22px, 4vw, 32px);
  font-weight: 800;
  margin-bottom: 8px;
}

.dual-cta-header p {
  font-size: 15px;
  color: var(--text-muted);
}

.cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.cta-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 28px 24px;
  text-align: center;
  transition: border-color 0.2s;
}

.cta-card:hover {
  border-color: rgba(245, 166, 35, 0.4);
}

.cta-card.primary {
  border-color: rgba(245, 166, 35, 0.3);
}

.cta-icon {
  font-size: 32px;
  margin-bottom: 14px;
  display: block;
}

.cta-card h3 {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 10px;
}

.cta-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 18px;
}

.cta-card ul {
  list-style: none;
  text-align: left;
  margin-bottom: 20px;
}

.cta-card ul li {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 8px;
  padding-left: 20px;
  position: relative;
}

.cta-card ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 800;
}

.btn-gold {
  display: block;
  width: 100%;
  padding: 16px;
  background: var(--gold);
  color: var(--purple-dark);
  border: none;
  border-radius: 8px;
  font-family: 'Manrope', sans-serif;
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
  transition: background 0.2s;
  text-decoration: none;
}

.btn-gold:hover {
  background: var(--gold-light);
}

.btn-outline {
  display: block;
  width: 100%;
  padding: 16px;
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.25);
  border-radius: 8px;
  font-family: 'Manrope', sans-serif;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  text-decoration: none;
}

.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.06);
}

.btn-note {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 10px;
  text-align: center;
}

/* DIVIDER */
.divider {
  max-width: 860px;
  margin: 0 auto 48px;
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

/* WHAT YOU GET */
.section {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 20px 56px;
}

.section-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 10px;
}

.section-title {
  font-size: clamp(22px, 4vw, 32px);
  font-weight: 800;
  margin-bottom: 32px;
}

/* STARTER KIT */
.kit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-bottom: 32px;
}

.kit-item {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 20px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.kit-num {
  width: 32px;
  height: 32px;
  background: var(--gold);
  color: var(--purple-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 14px;
  flex-shrink: 0;
}

.kit-text h4 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 4px;
}

.kit-text p {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* TRIMESTERS */
.trimester-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}

.trimester-table th {
  background: rgba(91, 63, 212, 0.3);
  padding: 12px 16px;
  text-align: left;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.trimester-table td {
  padding: 14px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  vertical-align: top;
  color: rgba(255, 255, 255, 0.85);
}

.trimester-table tr:last-child td {
  border-bottom: none;
}

.tri-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  background: var(--purple-bright);
  color: var(--white);
  border-radius: 4px;
  padding: 3px 8px;
  margin-bottom: 4px;
}

.tri-date {
  font-size: 12px;
  font-weight: 700;
}

.onboard-banner {
  background: linear-gradient(135deg, var(--purple-bright), var(--purple-mid));
  border-radius: 10px;
  padding: 20px 24px;
  text-align: center;
  margin-top: 16px;
}

.onboard-banner strong {
  color: var(--gold);
  font-size: 20px;
}

.onboard-banner p {
  font-size: 14px;
  font-weight: 700;
  margin-top: 4px;
}

/* ── COMPANIES SLIDER ── */
.slider-wrapper {
  position: relative;
  overflow: hidden;
  margin-top: 24px;
  /* fade edges */
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

/* pause on hover */
.slider-wrapper:hover .slider-track {
  animation-play-state: paused;
}

.slider-track {
  display: flex;
  gap: 0;
  width: max-content;
  animation: marquee 30s linear infinite;
}

.slider-set {
  display: flex;
  flex-shrink: 0;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* ── EACH LOGO SLOT ──
       To add logos: replace the <span> text with an <img> tag.
       Example:
         <div class="logo-slot">
           <img src="your-logo.png" alt="Company Name">
         </div>
    ── */
.logo-slot {
  flex-shrink: 0;
  width: 160px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 10px;
  padding: 0 20px;
  transition: background 0.2s, border-color 0.2s;
}

.logo-slot:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(245, 166, 35, 0.3);
}

/* Text fallback (shown until you swap in real logos) */
.logo-slot span {
  font-size: 13px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.65);
  white-space: nowrap;
  letter-spacing: 0.3px;
  text-align: center;
}

/* Image logos */
.logo-slot img {
  max-width: 120px;
  max-height: 44px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.65;
  transition: opacity 0.2s;
}

.logo-slot:hover img {
  opacity: 0.9;
}

/* ELIGIBILITY */
.elig-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
}

.elig-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 14px 16px;
  font-size: 13px;
  font-weight: 600;
}

.elig-item .check {
  width: 22px;
  height: 22px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: var(--purple-dark);
  font-weight: 800;
  flex-shrink: 0;
}

/* FAQ — ACCORDION */
.faq-list {}

.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.faq-q {
  font-size: 15px;
  font-weight: 700;
  padding: 18px 40px 18px 0;
  cursor: pointer;
  position: relative;
  user-select: none;
  margin: 0;
}

.faq-q::after {
  content: '+';
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
  font-weight: 300;
  color: var(--gold);
  transition: transform 0.25s;
  line-height: 1;
}

.faq-item.open .faq-q::after {
  transform: translateY(-50%) rotate(45deg);
}

.faq-a {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.25s ease;
  padding: 0;
  margin: 0;
}

.faq-item.open .faq-a {
  max-height: 300px;
  padding-bottom: 18px;
}

/* REPEATING INLINE CTA */
.inline-cta {
  text-align: center;
  padding: 32px 20px;
}

.inline-cta a {
  display: inline-block;
  padding: 16px 40px;
  background: var(--red-cta);
  color: var(--white);
  border: none;
  border-radius: 8px;
  font-family: 'Manrope', sans-serif;
  font-size: 18px;
  font-weight: 800;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  box-shadow: 0 6px 24px rgba(232, 48, 42, 0.35);
  max-width: 420px;
  width: 100%;
}

.inline-cta a:hover {
  background: var(--red-hover);
  transform: translateY(-2px);
}

.inline-cta-sub {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 10px;
  font-weight: 600;
}

/* PROOF CARDS */
.proof-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 16px;
}

.proof-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 20px;
}

.stars {
  color: var(--gold);
  font-size: 14px;
  margin-bottom: 10px;
}

.proof-text {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 12px;
  font-style: italic;
}

.proof-name {
  font-size: 12px;
  font-weight: 700;
  color: var(--gold);
}

.proof-role {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 2px;
}

/* FINAL CTA */
.final-cta-section {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 20px 64px;
  text-align: center;
}

.final-cta-box {
  background: linear-gradient(135deg, rgba(91, 63, 212, 0.25) 0%, rgba(45, 27, 110, 0.4) 100%);
  border: 1px solid rgba(245, 166, 35, 0.25);
  border-radius: 16px;
  padding: 40px 32px;
}

.final-cta-box h2 {
  font-size: clamp(20px, 4vw, 30px);
  font-weight: 800;
  margin-bottom: 10px;
}

.final-cta-box p {
  font-size: 15px;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto 28px;
  line-height: 1.6;
}

.final-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-cta-large {
  padding: 18px 36px;
  background: var(--red-cta);
  color: var(--white);
  border: none;
  border-radius: 8px;
  font-family: 'Manrope', sans-serif;
  font-size: 18px;
  font-weight: 800;
  cursor: pointer;
  transition: background 0.2s;
  text-decoration: none;
  display: inline-block;
}

.btn-cta-large:hover {
  background: var(--red-hover);
}

.btn-cta-secondary {
  padding: 18px 36px;
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  font-family: 'Manrope', sans-serif;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  display: inline-block;
}

.btn-cta-secondary:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.06);
}

.final-deadline {
  font-size: 13px;
  color: var(--gold);
  font-weight: 700;
  margin-top: 16px;
}

/* TRUST FOOTER ROW */
.trust-row {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 20px 40px;
  text-align: center;
}

.trust-row p {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  margin-bottom: 14px;
  font-weight: 700;
}

.trust-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.trust-tags span {
  font-size: 12px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 5px 12px;
  border-radius: 4px;
}

/* FOOTER */
.footer {
  text-align: center;
  padding: 24px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 11px;
  color: rgba(255, 255, 255, 0.25);
  line-height: 1.9;
}

.footer a {
  color: rgba(255, 255, 255, 0.35);
}

/* ══════════════════════════════════
       MOBILE — comprehensive
    ══════════════════════════════════ */
@media (max-width: 768px) {

  /* Sections */
  .hero {
    padding: 28px 16px 12px;
  }

  .video-section {
    padding: 0 12px 28px;
  }

  .section {
    padding: 0 16px 40px;
  }

  .dual-cta {
    padding: 0 16px 36px;
  }

  .final-cta-section {
    padding: 0 16px 48px;
  }

  .trust-row {
    padding: 0 16px 32px;
  }

  hr.divider {
    margin-bottom: 32px;
  }

  /* Hero text */
  h1 {
    font-size: clamp(22px, 6vw, 32px);
  }

  .hero-sub {
    font-size: 15px;
  }

  .guarantee-line {
    font-size: 13px;
    padding: 8px 14px;
  }

  /* Logo */
  .logo-text {
    font-size: 22px;
  }

  .logo-tag {
    font-size: 9px;
  }

  .logo-icon {
    width: 34px;
    height: 34px;
    font-size: 20px;
  }

  /* Video */
  .video-caption {
    flex-direction: column;
    gap: 6px;
    text-align: center;
  }

  .vc-name {
    font-size: 12px;
  }

  .vc-title {
    font-size: 10px;
  }

  .watch-prompt {
    font-size: 16px;
  }

  .cta-btn-primary {
    font-size: 16px;
    padding: 16px 24px;
    width: 100%;
    display: block;
  }

  /* Dual CTA */
  .cta-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .dual-cta-header h2 {
    font-size: 22px;
  }

  .cta-card {
    padding: 22px 18px;
  }

  .btn-gold,
  .btn-outline {
    font-size: 15px;
    padding: 15px;
  }

  /* Tables */
  .trimester-table {
    font-size: 12px;
  }

  .trimester-table th,
  .trimester-table td {
    padding: 10px 10px;
  }

  .tri-date {
    font-size: 11px;
  }

  /* Kit grid */
  .kit-grid {
    grid-template-columns: 1fr;
  }

  /* Elig grid */
  .elig-grid {
    grid-template-columns: 1fr;
  }

  .elig-item {
    font-size: 13px;
  }

  /* Proof */
  .proof-grid {
    grid-template-columns: 1fr;
  }

  /* Companies slider */
  .logo-slot {
    width: 130px;
    height: 60px;
    margin: 0 8px;
  }

  .logo-slot span {
    font-size: 11px;
  }

  /* Onboard banner */
  .onboard-banner strong {
    font-size: 17px;
  }

  .onboard-banner p {
    font-size: 12px;
  }

  /* Final CTA */
  .final-cta-box {
    padding: 28px 18px;
  }

  .final-btns {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-cta-large,
  .btn-cta-secondary {
    width: 100%;
    text-align: center;
    font-size: 16px;
    padding: 16px 20px;
  }

  /* Trust tags */
  .trust-tags {
    gap: 8px;
  }

  .trust-tags span {
    font-size: 11px;
    padding: 4px 10px;
  }

  /* FAQ */
  .faq-q {
    font-size: 14px;
  }

  .faq-a {
    font-size: 13px;
  }

  /* Section titles */
  .section-title {
    font-size: clamp(18px, 5vw, 26px);
  }
}

@media (max-width: 480px) {
  .urgency-bar {
    font-size: 12px;
    padding: 8px 12px;
  }

  .header {
    padding: 18px 12px 0;
  }

  h1 {
    font-size: 22px;
  }

  .hero-sub {
    font-size: 14px;
  }

  .pre-label {
    font-size: 10px;
    letter-spacing: 1.2px;
    padding: 4px 10px;
  }

  .trimester-table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .video-wrapper {
    border-radius: 8px;
  }
}

@media (max-width: 360px) {
  .logo-text {
    font-size: 19px;
  }

  h1 {
    font-size: 20px;
  }

  .btn-cta-large {
    font-size: 15px;
  }
}