/* =============================================
   NUCONT ONBOARDING — VERSÃO B (Compacta/Acordeon)
   ============================================= */

/* ---- RESET & BASE ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --purple:     #7C3AED;
  --purple-light: #EDE9FE;
  --purple-mid: #6D28D9;
  --cyan:       #16CFE0;
  --cyan-dark:  #0fb5c7;
  --cyan-light: #e0f9fb;
  --gold:       #FFB400;
  --gold-dark:  #e5a200;
  --gold-light: #FFF8E1;
  --navy:       #0B3F6F;
  --green:      #16a34a;
  --green-light:#dcfce7;
  --body-text:  #374151;
  --muted:      #6B7280;
  --white:      #FFFFFF;
  --light-bg:   #f9fafb;
  --border:     #e5e7eb;
  --shadow-sm:  0 1px 4px rgba(0,0,0,0.06);
  --shadow-md:  0 4px 16px rgba(0,0,0,0.09);
  --radius-sm:  8px;
  --radius-md:  14px;
  --radius-lg:  20px;
  --font:       'Inter', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--body-text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 20px;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; }
ul { list-style: none; }

/* ---- UTILITIES ---- */
.text-cyan { color: var(--cyan); }
.text-gold { color: var(--gold); }
.text-gradient {
  background: linear-gradient(90deg, var(--purple), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.text-green-code {
  color: var(--green);
  font-weight: 600;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: 50px;
  font-family: var(--font);
  font-weight: 600;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 2px solid transparent;
  text-decoration: none;
  white-space: nowrap;
}
.btn--lg { padding: 14px 28px; font-size: 0.95rem; }
.btn--sm { padding: 9px 18px; font-size: 0.82rem; }
.btn--cyan { background: var(--cyan); color: var(--white); }
.btn--cyan:hover { background: var(--cyan-dark); transform: translateY(-1px); box-shadow: 0 6px 16px rgba(22,207,224,0.3); }
.btn--purple { background: var(--purple); color: var(--white); }
.btn--purple:hover { background: var(--purple-mid); transform: translateY(-1px); box-shadow: 0 6px 16px rgba(124,58,237,0.3); }
.btn--gold { background: var(--gold); color: var(--navy); }
.btn--gold:hover { background: var(--gold-dark); transform: translateY(-1px); }
.btn--green { background: var(--green); color: var(--white); }
.btn--green:hover { background: #15803d; transform: translateY(-1px); }
.btn--outline { border-color: var(--cyan); color: var(--cyan); background: transparent; }
.btn--outline:hover { background: var(--cyan); color: var(--white); }
.btn--outline-white { border-color: rgba(255,255,255,0.65); color: var(--white); background: rgba(255,255,255,0.08); }
.btn--outline-white:hover { background: rgba(255,255,255,0.18); }
.btn--outline-gold { border-color: var(--gold); color: var(--gold); background: transparent; }
.btn--outline-gold:hover { background: var(--gold); color: var(--navy); }
.btn--outline-green { border-color: var(--green); color: var(--green); background: transparent; }
.btn--outline-green:hover { background: var(--green); color: var(--white); }
.btn--ghost { border-color: var(--border); color: var(--muted); background: transparent; }
.btn--ghost:hover { border-color: var(--cyan); color: var(--cyan); }
.btn--whatsapp { background: #25D366; color: white; }
.btn--whatsapp:hover { background: #1ebe5d; }

/* ---- TAGS ---- */
.tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 50px;
  white-space: nowrap;
}
.tag--time { background: #EFF6FF; color: #2563EB; }
.tag--result { background: #F0FDF4; color: #16a34a; }
.tag--important { background: var(--purple-light); color: var(--purple); }
.tag--gold { background: #FFF8E1; color: #B45309; border: 1px solid rgba(255,180,0,0.3); }
.tag--green-bold { background: var(--green-light); color: var(--green); }

/* ---- SECTION HEADERS ---- */
.section-header { text-align: center; margin-bottom: 40px; }
.section-badge {
  display: inline-block;
  background: var(--purple-light);
  color: var(--purple);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 4px 14px;
  border-radius: 50px;
  margin-bottom: 12px;
}
.section-badge--light { background: #FEF3C7; color: #92400E; }
.section-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.25;
}
.section-subtitle {
  color: var(--muted);
  font-size: 0.95rem;
  max-width: 560px;
  margin: 0 auto;
}

/* ======================== HEADER ======================== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: linear-gradient(135deg, #1a0533 0%, #0a1e3d 100%);
  box-shadow: 0 2px 20px rgba(0,0,0,0.18);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.header__logo-img { height: 32px; width: auto; }
.header__nav { display: flex; align-items: center; gap: 24px; }
.header__link { color: rgba(255,255,255,0.8); font-size: 0.9rem; font-weight: 500; transition: color 0.2s; }
.header__link:hover { color: var(--cyan); }
.header__menu-btn { display: none; background: none; border: none; color: white; font-size: 1.3rem; cursor: pointer; padding: 8px; }
.mobile-nav { display: none; flex-direction: column; gap: 8px; padding: 16px 20px; background: #12052a; }
.mobile-nav.open { display: flex; }
.mobile-nav__link { color: rgba(255,255,255,0.85); padding: 8px 0; font-weight: 500; border-bottom: 1px solid rgba(255,255,255,0.08); }

/* ======================== HERO ======================== */
.hero {
  position: relative;
  background: linear-gradient(135deg, #1a0533 0%, #0e1f3d 60%, #0a1628 100%);
  overflow: hidden;
  padding: 72px 0 64px;
}
.hero__bg-shapes { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.hero__shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.08;
}
.hero__shape--1 { width: 480px; height: 480px; background: var(--purple); top: -120px; right: -100px; }
.hero__shape--2 { width: 300px; height: 300px; background: var(--cyan); bottom: -80px; left: -60px; }
.hero__inner { position: relative; text-align: center; }
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.85);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 20px;
  letter-spacing: 0.04em;
}
.hero__title {
  font-size: clamp(1.9rem, 4.5vw, 3rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 20px;
}
.hero__highlight { color: var(--cyan); }
.hero__highlight--yellow { color: var(--gold); }
.hero__subtitle {
  color: rgba(255,255,255,0.75);
  font-size: clamp(0.95rem, 2vw, 1.05rem);
  margin-bottom: 32px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.hero__wave { position: absolute; bottom: -1px; left: 0; right: 0; line-height: 0; }
.hero__wave svg { width: 100%; height: 48px; }

/* ======================== STEPS SECTION ======================== */
.steps {
  background: var(--light-bg);
  padding: 72px 0 80px;
}

/* ======================== PRESENT BOX ======================== */
.gift-section {
  background: linear-gradient(135deg, #1a0533 0%, #0e1f40 100%);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  margin-bottom: 32px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.gift-section::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 220px; height: 220px;
  background: radial-gradient(circle, rgba(255,180,0,0.12), transparent 70%);
  border-radius: 50%;
}
.gift-section__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,180,0,0.15);
  border: 1px solid rgba(255,180,0,0.35);
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 16px;
}
.gift-section__inner {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}
.gift-section__icon {
  font-size: 2.2rem;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 4px;
  animation: pulse-gift 2.5s infinite;
}
@keyframes pulse-gift {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.08); opacity: 0.85; }
}
.gift-section__title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 8px;
}
.gift-section__desc {
  color: rgba(255,255,255,0.78);
  font-size: 0.9rem;
  margin-bottom: 16px;
  line-height: 1.55;
}
.gift-section__actions { display: flex; flex-wrap: wrap; gap: 10px; }

/* ======================== PHASE BANNERS ======================== */
.phase-banner {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  border-radius: var(--radius-md);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 16px;
  margin-top: 32px;
}
.phase-banner:first-of-type { margin-top: 0; }
.phase-banner--1 { background: var(--purple-light); color: var(--purple); border-left: 4px solid var(--purple); }
.phase-banner--2 { background: #FFF8E1; color: #92400E; border-left: 4px solid var(--gold); }
.phase-banner--3 { background: var(--cyan-light); color: #0e7490; border-left: 4px solid var(--cyan); }
.phase-banner__steps {
  margin-left: auto;
  font-size: 0.7rem;
  opacity: 0.75;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
}

/* ======================== ACCORDION STEPS ======================== */
.accordion-step {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  margin-bottom: 10px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.25s;
  position: relative;
}
.accordion-step:hover { box-shadow: var(--shadow-md); }

/* Phase color accents on left border */
.accordion-step--phase1 { border-left: 4px solid var(--purple); }
.accordion-step--phase3 { border-left: 4px solid var(--cyan); }
.accordion-step--highlight {
  border-left: 4px solid var(--gold);
  background: linear-gradient(135deg, #fffbf0, #fff);
  box-shadow: 0 4px 20px rgba(255,180,0,0.12);
}
.accordion-step--final {
  border-left: 4px solid var(--green);
  background: linear-gradient(135deg, #f0fdf4, #fff);
}

/* Milestone badge (top-right) */
.accordion-step__milestone-badge {
  position: absolute;
  top: 12px;
  right: 14px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 3px 10px;
  border-radius: 50px;
  z-index: 1;
}
.accordion-step__milestone-badge--green {
  background: var(--green);
  color: var(--white);
}
.accordion-step__milestone-badge--cyan {
  background: var(--cyan);
  color: var(--navy);
}

/* ---- HEADER (clickable row) ---- */
.accordion-step__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 16px 20px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  gap: 12px;
  transition: background 0.2s;
}
.accordion-step__header:hover { background: rgba(0,0,0,0.02); }
.accordion-step--highlight .accordion-step__header:hover { background: rgba(255,180,0,0.04); }
.accordion-step--final .accordion-step__header:hover { background: rgba(22,163,74,0.04); }

.accordion-step__left {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1;
  min-width: 0;
}

/* Step number */
.accordion-step__num {
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
  flex-shrink: 0;
  color: rgba(124,58,237,0.18);
  width: 44px;
  text-align: right;
}
.accordion-step__num--gold  { color: rgba(255,180,0,0.35); }
.accordion-step__num--cyan  { color: rgba(22,207,224,0.35); }
.accordion-step__num--green { color: rgba(22,163,74,0.35); }

/* Step icon bubble */
.accordion-step__icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.accordion-step__icon--purple { background: var(--purple-light); color: var(--purple); }
.accordion-step__icon--gold   { background: #FFF8E1;            color: #B45309; }
.accordion-step__icon--trophy { background: rgba(255,180,0,0.18); color: var(--gold); font-size: 1.5rem; width: 52px; height: 52px; }
.accordion-step__icon--cyan   { background: var(--cyan-light);  color: #0891b2; }
.accordion-step__icon--green  { background: var(--green-light); color: var(--green); }

/* Title area */
.accordion-step__title-wrap { flex: 1; min-width: 0; }
.accordion-step__title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
  line-height: 1.3;
}
.accordion-step__meta { display: flex; flex-wrap: wrap; gap: 5px; }

/* Chevron arrow */
.accordion-step__arrow {
  font-size: 0.85rem;
  color: var(--muted);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}
.accordion-step__arrow.open { transform: rotate(180deg); }

/* ---- BODY (collapsible content) ---- */
.accordion-step__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.3s ease;
  opacity: 0;
}
.accordion-step__body.open {
  max-height: 2000px;
  opacity: 1;
}

.accordion-step__content {
  padding: 4px 20px 24px 20px;
  border-top: 1px solid var(--border);
}

/* ======================== STEP CONTENT ELEMENTS ======================== */
.step-desc {
  color: var(--body-text);
  font-size: 0.9rem;
  margin-bottom: 16px;
  line-height: 1.6;
}
.step-col-title {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.step-two-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 20px;
}
.step-list {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 16px;
}
.step-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.86rem;
  color: var(--body-text);
  line-height: 1.5;
}
.step-list li i { color: var(--purple); margin-top: 2px; flex-shrink: 0; font-size: 0.8rem; }
.accordion-step--highlight .step-list li i { color: var(--gold); }
.accordion-step--final .step-list li i { color: var(--green); }
.accordion-step--phase3 .step-list li i { color: var(--cyan-dark); }

.step-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

/* Gold tip box */
.gold-tip {
  background: var(--gold-light);
  border: 1px solid rgba(255,180,0,0.3);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  font-size: 0.83rem;
}
.gold-tip__header {
  font-weight: 700;
  color: #92400E;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.gold-tip p { color: #78350F; margin-bottom: 8px; }
.gold-tip ul { display: flex; flex-direction: column; gap: 4px; }
.gold-tip ul li { display: flex; align-items: center; gap: 6px; color: #78350F; }
.gold-tip ul li i { color: var(--gold); font-size: 0.7rem; }

/* Milestone box */
.step-milestone {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: var(--gold-light);
  border: 1px solid rgba(255,180,0,0.25);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: 0.85rem;
  color: #78350F;
  margin: 16px 0;
}
.step-milestone i { color: var(--gold); margin-top: 2px; flex-shrink: 0; }
.step-milestone--green {
  background: var(--green-light);
  border-color: rgba(22,163,74,0.25);
  color: #166534;
}
.step-milestone--green i { color: var(--green); }
.step-milestone--cyan {
  background: var(--cyan-light);
  border-color: rgba(22,207,224,0.3);
  color: #0e7490;
}
.step-milestone--cyan i { color: var(--cyan-dark); }

/* ======================== PRÉ-REQUISITOS ======================== */
.prereq-section {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  margin: 0 0 24px 0;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: box-shadow 0.2s;
}
.prereq-section:hover { box-shadow: var(--shadow-md); }

/* Clickable header button */
.prereq-section__header {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: background 0.2s;
}
.prereq-section__header:hover { background: rgba(124,58,237,0.03); }
.prereq-section__header-text { flex: 1; min-width: 0; }

/* Arrow for the section toggle */
.prereq-section__arrow {
  font-size: 0.85rem;
  color: var(--muted);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}
.prereq-section__arrow.open { transform: rotate(180deg); }

/* Collapsible body */
.prereq-section__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s ease, opacity 0.3s ease;
  opacity: 0;
}
.prereq-section__body.open {
  max-height: 4000px;
  opacity: 1;
}

/* Inner padding only when open */
.prereq-cards-grid {
  padding: 0 24px 24px;
}

.prereq-section__icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--purple-light);
  color: var(--purple);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.prereq-section__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 3px;
}
.prereq-section__subtitle {
  font-size: 0.82rem;
  color: var(--muted);
}
.prereq-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.prereq-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.prereq-card:hover { border-color: var(--purple); box-shadow: 0 2px 10px rgba(124,58,237,0.1); }
.prereq-card__header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  background: #FAFAFA;
}
.prereq-card__icon { color: var(--purple); font-size: 1rem; flex-shrink: 0; }
.prereq-card__name { flex: 1; font-size: 0.82rem; font-weight: 700; color: var(--navy); }
.prereq-card__arrow { font-size: 0.72rem; color: var(--muted); transition: transform 0.3s; }
.prereq-card__arrow.open { transform: rotate(180deg); }
.prereq-card__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.prereq-card__body.open { max-height: 900px; }
.prereq-group {
  padding: 12px 14px 4px;
  border-top: 1px solid var(--border);
}
.prereq-group__title {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--purple);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.prereq-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 10px;
}
.prereq-list li {
  font-size: 0.82rem;
  color: var(--body-text);
  display: flex;
  align-items: flex-start;
  gap: 7px;
  line-height: 1.5;
}
.prereq-list li i { color: var(--purple); flex-shrink: 0; font-size: 0.75rem; margin-top: 3px; }
.prereq-list li.prereq-inline { flex-wrap: nowrap; }
.prereq-text { display: inline; white-space: normal; }
.prereq-obs {
  display: flex;
  gap: 8px;
  background: #F0F4FF;
  border-radius: var(--radius-sm);
  padding: 10px 12px;
  font-size: 0.78rem;
  color: #374151;
  margin-top: 8px;
}
.prereq-obs > i { color: #3B82F6; flex-shrink: 0; margin-top: 2px; }
.prereq-obs p { margin-bottom: 4px; }
.prereq-obs p:last-child { margin-bottom: 0; }
.prereq-obs code {
  background: rgba(0,0,0,0.06);
  padding: 1px 6px;
  border-radius: 4px;
  font-size: 0.75rem;
}
.inline-link { color: var(--purple); font-weight: 600; text-decoration: underline; }
.inline-link:hover { color: var(--purple-mid); }
.prereq-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--purple);
  font-size: 0.8rem;
  font-weight: 600;
  text-decoration: underline;
}

/* ======================== TIPS ======================== */
.tips {
  background: var(--white);
  padding: 64px 0;
}
.tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
}
.tip-card {
  background: var(--light-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 22px 20px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.tip-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.tip-card__icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--purple-light);
  color: var(--purple);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  margin-bottom: 12px;
}
.tip-card h4 { font-size: 0.9rem; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.tip-card p  { font-size: 0.82rem; color: var(--muted); line-height: 1.5; }

/* ======================== CTA FINAL ======================== */
.final-cta {
  background: linear-gradient(135deg, #1a0533 0%, #0e1f3d 100%);
  padding: 64px 0;
  text-align: center;
}
.final-cta__inner { position: relative; }
.final-cta__content { max-width: 560px; margin: 0 auto; }
.final-cta__icon { font-size: 2.5rem; color: var(--gold); margin-bottom: 16px; }
.final-cta__title { font-size: clamp(1.6rem,3.5vw,2.2rem); font-weight: 900; color: var(--white); margin-bottom: 14px; line-height: 1.2; }
.final-cta__subtitle { color: rgba(255,255,255,0.72); font-size: 0.95rem; margin-bottom: 28px; }
.final-cta__actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }

/* ======================== FOOTER ======================== */
.footer { background: #0a0f1e; padding: 48px 0 0; }
.footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 40px;
}
.footer__logo-img { height: 28px; margin-bottom: 12px; }
.footer__brand p { font-size: 0.82rem; color: rgba(255,255,255,0.5); line-height: 1.55; }
.footer__links h5, .footer__contact h5 {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.45);
  margin-bottom: 14px;
}
.footer__links { display: flex; flex-direction: column; gap: 8px; }
.footer__links a { color: rgba(255,255,255,0.65); font-size: 0.83rem; transition: color 0.2s; }
.footer__links a:hover { color: var(--cyan); }
.footer__contact p { color: rgba(255,255,255,0.5); font-size: 0.82rem; margin-bottom: 10px; }
.footer__bottom { border-top: 1px solid rgba(255,255,255,0.07); text-align: center; padding: 16px; }
.footer__bottom p { color: rgba(255,255,255,0.3); font-size: 0.78rem; }

/* ======================== PROGRESS BAR ======================== */
#progress-bar-b {
  position: fixed;
  top: 64px;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--purple), var(--cyan));
  z-index: 9999;
  transition: width 0.1s;
  width: 0%;
}

/* ======================== RESPONSIVE ======================== */
@media (max-width: 700px) {
  .header__nav { display: none; }
  .header__menu-btn { display: block; }
  .hero { padding: 56px 0 52px; }
  .hero__actions { flex-direction: column; align-items: center; }
  .accordion-step__num { display: none; }
  .accordion-step__header { padding: 14px 16px; }
  .step-two-cols { grid-template-columns: 1fr; gap: 16px; }
  .prereq-cards-grid { grid-template-columns: 1fr; }
  .tips-grid { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .gift-section__inner { flex-direction: column; }
  .phase-banner { flex-wrap: wrap; }
  .phase-banner__steps { margin-left: 0; width: 100%; }
}
@media (max-width: 480px) {
  .footer__inner { grid-template-columns: 1fr; }
  .accordion-step__title { font-size: 0.88rem; }
}
