/* ═══════════════════════════════════════════════════════════════
   HOMEPAGE V2 — Substack Brand Inspired Design
   Pure custom CSS — NO Tailwind, NO Bootstrap
   All classes scoped under .hp2 to avoid global conflicts
   ═══════════════════════════════════════════════════════════════ */

/* Smooth scrolling for in-page anchor jumps (e.g. CTA → #pricing) */
html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
}

/* ── CSS Custom Properties ────────────────────────────────────── */
.hp2 {
    --hp2-navy: #0f1b2d;
    --hp2-navy-light: #1a2942;
    --hp2-gold: #FF6719;
    --hp2-gold-hover: #E55A15;
    --hp2-gold-light: #FFF0E8;
    --hp2-cream: #F9F9F9;
    --hp2-cream-dark: #EEEEEE;
    --hp2-blush: #FFF5F0;
    --hp2-coral: #d4736e;
    --hp2-text: #1e1e1e;
    --hp2-text-muted: #5a5a5a;
    --hp2-text-light: #8a8a8a;
    --hp2-white: #ffffff;
    --hp2-border: #e5e1d8;
    --hp2-success: #2d8a4e;
    --hp2-urgency: #c0392b;

    --hp2-font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --hp2-font-body: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    --hp2-max-width: 1200px;
    --hp2-section-padding: 5rem 1.5rem;
    --hp2-section-padding-sm: 3rem 1.25rem;
    --hp2-radius: 12px;
    --hp2-radius-sm: 8px;
    --hp2-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    --hp2-shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.12);
    --hp2-shadow-card: 0 2px 16px rgba(0, 0, 0, 0.06);
    --hp2-transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Base Reset (scoped) ──────────────────────────────────────── */
.hp2 {
    font-family: var(--hp2-font-body);
    color: var(--hp2-text);
    line-height: 1.7;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

.hp2 img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

.hp2 a.hp2-btn,
.hp2 a.hp2-btn:visited,
.hp2 a.hp2-btn:hover,
.hp2 a.hp2-btn:active {
    text-decoration: none;
}

.hp2 a.hp2-btn-navy,
.hp2 a.hp2-btn-navy:visited {
    color: var(--hp2-white);
}

.hp2 a.hp2-btn-gold,
.hp2 a.hp2-btn-gold:visited {
    color: var(--hp2-white);
}

/* ── Typography ───────────────────────────────────────────────── */
.hp2-heading-xl {
    font-family: var(--hp2-font-heading);
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.hp2-heading-lg {
    font-family: var(--hp2-font-heading);
    font-size: 2.75rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.01em;
}

.hp2-heading-md {
    font-family: var(--hp2-font-heading);
    font-size: 2rem;
    font-weight: 600;
    line-height: 1.25;
}

.hp2-heading-sm {
    font-family: var(--hp2-font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.3;
}

.hp2-subheading {
    font-family: var(--hp2-font-body);
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.6;
    color: var(--hp2-text-muted);
}

.hp2-body {
    font-size: 1.0625rem;
    line-height: 1.7;
}

.hp2-body-sm {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--hp2-text-muted);
}

.hp2-label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--hp2-gold);
}

.hp2-text-white { color: var(--hp2-white); }
.hp2-text-muted { color: var(--hp2-text-muted); }
.hp2-text-gold { color: var(--hp2-gold); }
.hp2-text-center { text-align: center; }
.hp2-text-urgency { color: var(--hp2-urgency); font-weight: 600; }

/* ── Layout ───────────────────────────────────────────────────── */
.hp2-container {
    max-width: var(--hp2-max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
    width: 100%;
}

.hp2-container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1.5rem;
    width: 100%;
}

.hp2-section {
    padding: var(--hp2-section-padding);
}

.hp2-section-cream {
    background-color: var(--hp2-cream);
}

.hp2-section-blush {
    background-color: var(--hp2-blush);
}

.hp2-section-navy {
    background-color: var(--hp2-navy);
    color: var(--hp2-white);
}

.hp2-section-navy-light {
    background-color: var(--hp2-navy-light);
    color: var(--hp2-white);
}

.hp2-section-gold-light {
    background-color: var(--hp2-gold-light);
}

.hp2-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
}

.hp2-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.hp2-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.hp2-flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hp2-flex-col-center {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hp2-gap-1 { gap: 0.5rem; }
.hp2-gap-2 { gap: 1rem; }
.hp2-gap-3 { gap: 1.5rem; }
.hp2-gap-4 { gap: 2rem; }

.hp2-mb-1 { margin-bottom: 0.5rem; }
.hp2-mb-2 { margin-bottom: 1rem; }
.hp2-mb-3 { margin-bottom: 1.5rem; }
.hp2-mb-4 { margin-bottom: 2rem; }
.hp2-mb-5 { margin-bottom: 3rem; }

.hp2-mt-2 { margin-top: 1rem; }
.hp2-mt-3 { margin-top: 1.5rem; }
.hp2-mt-4 { margin-top: 2rem; }

/* ── Buttons ──────────────────────────────────────────────────── */
.hp2-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    font-family: var(--hp2-font-body);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all var(--hp2-transition);
    text-decoration: none;
    line-height: 1;
    white-space: nowrap;
}

.hp2-btn-gold {
    background-color: var(--hp2-gold);
    color: var(--hp2-white);
}

.hp2-btn-gold:hover,
.hp2-btn-gold:focus,
.hp2-btn-gold:active {
    background-color: var(--hp2-gold-hover);
    color: var(--hp2-white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 103, 25, 0.4);
}

.hp2-btn-navy {
    background-color: var(--hp2-navy);
    color: var(--hp2-white);
}

.hp2-btn-navy:hover,
.hp2-btn-navy:focus,
.hp2-btn-navy:active {
    background-color: var(--hp2-navy-light);
    color: var(--hp2-white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(15, 27, 45, 0.3);
}

.hp2-btn-outline {
    background: transparent;
    color: var(--hp2-gold);
    border: 2px solid var(--hp2-gold);
}

.hp2-btn-outline:hover {
    background-color: var(--hp2-gold);
    color: var(--hp2-white);
    transform: translateY(-2px);
}

.hp2-btn-lg {
    padding: 1.25rem 3rem;
    font-size: 1.0625rem;
}

.hp2-btn-sm {
    padding: 0.75rem 1.75rem;
    font-size: 0.875rem;
}

/* ═══════════════════════════════════════════════════════════════
   SECTION: HERO
   ═══════════════════════════════════════════════════════════════ */
.hp2-hero {
    position: relative;
    background:
        radial-gradient(ellipse at 5% 10%, rgba(255, 103, 25, 0.18) 0%, transparent 60%),
        linear-gradient(160deg, var(--hp2-navy) 0%, #152238 50%, var(--hp2-navy-light) 100%);
    padding: 5rem 1.5rem 0;
    overflow: hidden;
}

.hp2-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 103, 25, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.hp2-hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 103, 25, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.hp2-hero-inner {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: end;
}

.hp2-hero-text {
    padding-bottom: 5rem;
}

.hp2-hero-photo-wrap {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    position: relative;
}

.hp2-hero-photo-wrap::before {
    content: '';
    position: absolute;
    bottom: 5%;
    left: 50%;
    transform: translateX(-50%);
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 103, 25, 0.08) 0%, rgba(255, 103, 25, 0.04) 40%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.hp2-hero-photo {
    position: relative;
    z-index: 1;
    max-height: 520px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 8px 30px rgba(0, 0, 0, 0.3));
}

.hp2-hero-eyebrow {
    display: inline-block;
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--hp2-gold);
    margin-bottom: 1.5rem;
    padding: 0.5rem 1.5rem;
    border: 1px solid rgba(255, 103, 25, 0.3);
    border-radius: 50px;
}

.hp2-hero-title {
    font-family: var(--hp2-font-heading);
    font-size: 3.75rem;
    font-weight: 700;
    line-height: 1.1;
    color: var(--hp2-white);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.hp2-hero-title em {
    font-style: italic;
    color: var(--hp2-gold);
}

.hp2-hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2.5rem;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.hp2-hero-cta-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.hp2-hero-note {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 0.5rem;
}

/* ═══════════════════════════════════════════════════════════════
   SECTION: STATS BAR
   ═══════════════════════════════════════════════════════════════ */
.hp2-stats-bar {
    background-color: var(--hp2-cream);
    padding: 2.5rem 1.5rem;
    border-bottom: 1px solid var(--hp2-border);
}

.hp2-stats-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 3rem;
}

.hp2-stat-item {
    text-align: center;
}

.hp2-stat-number {
    font-family: var(--hp2-font-heading);
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--hp2-navy);
    line-height: 1;
    margin-bottom: 0.35rem;
}

.hp2-stat-label {
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--hp2-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.hp2-stat-divider {
    width: 1px;
    height: 40px;
    background-color: var(--hp2-border);
}

/* ═══════════════════════════════════════════════════════════════
   SECTION: VALUE PILLARS
   ═══════════════════════════════════════════════════════════════ */
.hp2-pillars {
    padding: var(--hp2-section-padding);
    background-color: var(--hp2-white);
}

.hp2-pillar-card {
    text-align: center;
    padding: 2.5rem 2rem;
    border-radius: var(--hp2-radius);
    transition: all var(--hp2-transition);
}

.hp2-pillar-card:hover {
    background-color: var(--hp2-cream);
    transform: translateY(-4px);
}

.hp2-pillar-icon {
    font-size: 3rem;
    margin-bottom: 1.25rem;
    display: block;
}

.hp2-pillar-title {
    font-family: var(--hp2-font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--hp2-navy);
}

.hp2-pillar-desc {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--hp2-text-muted);
}

/* ═══════════════════════════════════════════════════════════════
   SECTION: FEATURED PRODUCT (Flagship)
   ═══════════════════════════════════════════════════════════════ */
.hp2-flagship {
    padding: var(--hp2-section-padding);
    background-color: var(--hp2-cream);
}

.hp2-flagship-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    background-color: var(--hp2-white);
    border-radius: var(--hp2-radius);
    box-shadow: var(--hp2-shadow-lg);
    overflow: hidden;
    max-width: 1000px;
    margin: 0 auto;
}

.hp2-flagship-image {
    position: relative;
    min-height: 400px;
    background: linear-gradient(135deg, var(--hp2-navy) 0%, #1e3050 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.hp2-flagship-image img {
    max-width: 280px;
    border-radius: var(--hp2-radius-sm);
    box-shadow: var(--hp2-shadow);
}

.hp2-flagship-badge {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    background-color: var(--hp2-urgency);
    color: var(--hp2-white);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.4rem 1rem;
    border-radius: 50px;
}

.hp2-flagship-content {
    padding: 3rem 3rem 3rem 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hp2-flagship-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.hp2-flagship-tag {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.3rem 0.75rem;
    border-radius: 50px;
    background-color: var(--hp2-gold-light);
    color: var(--hp2-gold-hover);
}

.hp2-flagship-date {
    font-size: 0.875rem;
    color: var(--hp2-text-muted);
    font-weight: 500;
}

.hp2-flagship-title {
    font-family: var(--hp2-font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--hp2-navy);
    margin-bottom: 0.75rem;
    line-height: 1.25;
}

.hp2-flagship-desc {
    font-size: 1rem;
    color: var(--hp2-text-muted);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.hp2-flagship-highlights {
    list-style: none;
    margin-bottom: 1.5rem;
}

.hp2-flagship-highlights li {
    position: relative;
    padding-left: 1.75rem;
    margin-bottom: 0.5rem;
    font-size: 0.9375rem;
    color: var(--hp2-text);
}

.hp2-flagship-highlights li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--hp2-success);
    font-weight: 700;
}

.hp2-flagship-price {
    display: flex;
    align-items: baseline;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.hp2-flagship-price-amount {
    font-family: var(--hp2-font-heading);
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--hp2-navy);
}

.hp2-flagship-price-note {
    font-size: 0.875rem;
    color: var(--hp2-text-muted);
}

.hp2-flagship-spots {
    font-size: 0.875rem;
    color: var(--hp2-urgency);
    font-weight: 600;
    margin-bottom: 1rem;
}

/* ═══════════════════════════════════════════════════════════════
   SECTION: COURSE CARDS
   ═══════════════════════════════════════════════════════════════ */
.hp2-courses {
    padding: var(--hp2-section-padding);
    background-color: var(--hp2-white);
}

.hp2-course-card {
    background-color: var(--hp2-white);
    border: 1px solid var(--hp2-border);
    border-radius: var(--hp2-radius);
    overflow: hidden;
    transition: all var(--hp2-transition);
}

.hp2-course-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--hp2-shadow);
    border-color: transparent;
}

.hp2-course-card-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.hp2-course-card-body {
    padding: 1.5rem;
}

.hp2-course-card-format {
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--hp2-gold);
    margin-bottom: 0.5rem;
}

.hp2-course-card-title {
    font-family: var(--hp2-font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--hp2-navy);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.hp2-course-card-desc {
    font-size: 0.875rem;
    color: var(--hp2-text-muted);
    line-height: 1.5;
    margin-bottom: 1rem;
}

.hp2-course-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hp2-course-card-price {
    font-family: var(--hp2-font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--hp2-navy);
}

.hp2-course-card-link {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--hp2-gold);
    transition: color var(--hp2-transition);
}

.hp2-course-card-link:hover {
    color: var(--hp2-gold-hover);
}

/* Schools row — smaller cards */
.hp2-schools-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.hp2-school-card {
    text-align: center;
    padding: 2rem 1.5rem;
    background-color: var(--hp2-cream);
    border-radius: var(--hp2-radius);
    transition: all var(--hp2-transition);
}

.hp2-school-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--hp2-shadow-card);
}

.hp2-school-card-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1rem;
}

.hp2-school-card-title {
    font-family: var(--hp2-font-heading);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--hp2-navy);
    margin-bottom: 0.35rem;
}

.hp2-school-card-meta {
    font-size: 0.8125rem;
    color: var(--hp2-text-muted);
}

.hp2-school-card-badge {
    display: inline-block;
    margin-top: 0.75rem;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    background-color: var(--hp2-success);
    color: var(--hp2-white);
}

/* ═══════════════════════════════════════════════════════════════
   SECTION: MEET YOUR INSTRUCTOR
   ═══════════════════════════════════════════════════════════════ */
.hp2-instructor {
    padding: var(--hp2-section-padding);
    background-color: var(--hp2-cream);
}

.hp2-instructor-grid {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1050px;
    margin: 0 auto;
}

.hp2-instructor-photo-wrap {
    position: relative;
}

.hp2-instructor-photo-wrap::before {
    content: '';
    position: absolute;
    top: -12px;
    left: -12px;
    right: 12px;
    bottom: 12px;
    border: 2px solid var(--hp2-gold);
    border-radius: var(--hp2-radius);
    z-index: 0;
}

.hp2-instructor-photo {
    position: relative;
    z-index: 1;
    width: 100%;
    border-radius: var(--hp2-radius);
    box-shadow: var(--hp2-shadow-lg);
    object-fit: cover;
}

.hp2-instructor-name {
    font-family: var(--hp2-font-heading);
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--hp2-navy);
    margin-bottom: 0.5rem;
}

.hp2-instructor-title {
    font-size: 1.0625rem;
    color: var(--hp2-gold);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.hp2-instructor-bio {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--hp2-text-muted);
    margin-bottom: 1.5rem;
}

.hp2-instructor-achievements {
    list-style: none;
    margin-bottom: 2rem;
}

.hp2-instructor-achievements li {
    position: relative;
    padding-left: 1.75rem;
    margin-bottom: 0.6rem;
    font-size: 0.9375rem;
    color: var(--hp2-text);
    font-weight: 500;
}

.hp2-instructor-achievements li::before {
    content: '★';
    position: absolute;
    left: 0;
    color: var(--hp2-gold);
    font-size: 0.875rem;
}

.hp2-as-seen-on {
    margin-top: 2rem;
}

.hp2-as-seen-on-label {
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--hp2-text-light);
    margin-bottom: 1rem;
}

.hp2-as-seen-on-logos {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.hp2-as-seen-on-logo {
    font-family: var(--hp2-font-heading);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--hp2-text-light);
    opacity: 0.6;
    transition: opacity var(--hp2-transition);
}

.hp2-as-seen-on-logo:hover {
    opacity: 1;
}

/* ═══════════════════════════════════════════════════════════════
   SECTION: TESTIMONIALS
   ═══════════════════════════════════════════════════════════════ */
.hp2-testimonials {
    padding: var(--hp2-section-padding);
    background-color: var(--hp2-white);
}

.hp2-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.hp2-testimonial-card {
    background-color: var(--hp2-cream);
    border-radius: var(--hp2-radius);
    padding: 2rem;
    transition: all var(--hp2-transition);
    border: 1px solid transparent;
}

.hp2-testimonial-card:hover {
    border-color: var(--hp2-gold);
    box-shadow: var(--hp2-shadow-card);
    transform: translateY(-2px);
}

.hp2-testimonial-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.hp2-testimonial-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--hp2-gold-light);
}

.hp2-testimonial-name {
    font-family: var(--hp2-font-heading);
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--hp2-navy);
}

.hp2-testimonial-role {
    font-size: 0.8125rem;
    color: var(--hp2-text-muted);
}

.hp2-testimonial-metric {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--hp2-gold);
    background-color: var(--hp2-gold-light);
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    margin-bottom: 0.75rem;
}

.hp2-testimonial-quote {
    font-size: 1rem;
    line-height: 1.65;
    color: var(--hp2-text);
    font-style: italic;
    position: relative;
}

.hp2-testimonial-quote::before {
    content: '"';
    font-family: var(--hp2-font-heading);
    font-size: 3rem;
    color: var(--hp2-gold);
    opacity: 0.3;
    position: absolute;
    top: -1rem;
    left: -0.25rem;
    line-height: 1;
}

/* ═══════════════════════════════════════════════════════════════
   SECTION: FAQ ACCORDION
   ═══════════════════════════════════════════════════════════════ */
.hp2-faq {
    padding: var(--hp2-section-padding);
    background-color: var(--hp2-cream);
}

.hp2-faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.hp2-faq-item {
    border-bottom: 1px solid var(--hp2-border);
}

.hp2-faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 0;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--hp2-font-body);
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--hp2-navy);
    text-align: left;
    transition: color var(--hp2-transition);
    list-style: none;
}

.hp2-faq-question::-webkit-details-marker,
.hp2-faq-question::marker {
    display: none;
    content: '';
}

.hp2-faq-question:hover {
    color: var(--hp2-gold);
}

.hp2-faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--hp2-gold);
    transition: transform var(--hp2-transition);
    flex-shrink: 0;
    margin-left: 1rem;
}

.hp2-faq-item[open] .hp2-faq-icon {
    transform: rotate(45deg);
}

.hp2-faq-answer {
    padding-bottom: 1.5rem;
}

.hp2-faq-answer-text {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--hp2-text-muted);
}

/* ═══════════════════════════════════════════════════════════════
   SECTION: CTA (repeated)
   ═══════════════════════════════════════════════════════════════ */
.hp2-cta {
    padding: 4rem 1.5rem;
    background: linear-gradient(160deg, var(--hp2-navy) 0%, #152238 100%);
    text-align: center;
}

.hp2-cta-inner {
    max-width: 700px;
    margin: 0 auto;
}

.hp2-cta-title {
    font-family: var(--hp2-font-heading);
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--hp2-white);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hp2-cta-subtitle {
    font-size: 1.0625rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hp2-cta-guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.hp2-cta-guarantee-img {
    width: 48px;
    height: 48px;
}

.hp2-cta-guarantee-text {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
}

/* ═══════════════════════════════════════════════════════════════
   SECTION: MINI CTA BAND (mid-page)
   ═══════════════════════════════════════════════════════════════ */
.hp2-band {
    padding: 3rem 1.5rem;
    background-color: var(--hp2-gold-light);
    text-align: center;
}

.hp2-band-text {
    font-family: var(--hp2-font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--hp2-navy);
    margin-bottom: 1.25rem;
}

/* ═══════════════════════════════════════════════════════════════
   SECTION: DIVIDER
   ═══════════════════════════════════════════════════════════════ */
.hp2-divider {
    width: 60px;
    height: 3px;
    background-color: var(--hp2-gold);
    border: none;
    margin: 0 auto 2rem;
    border-radius: 2px;
}

.hp2-section-header {
    text-align: center;
    margin-bottom: 3rem;
}

/* ═══════════════════════════════════════════════════════════════
   SECTION: FOOTER
   ═══════════════════════════════════════════════════════════════ */
.hp2-footer {
    padding: 2rem 1.5rem;
    background-color: var(--hp2-navy);
    text-align: center;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.8125rem;
}

.hp2-footer a {
    color: rgba(255, 255, 255, 0.6);
    transition: color var(--hp2-transition);
}

.hp2-footer a:hover {
    color: var(--hp2-gold);
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE DESIGN
   ═══════════════════════════════════════════════════════════════ */

/* Tablet */
@media (max-width: 1024px) {
    .hp2-hero-title {
        font-size: 2.75rem;
    }

    .hp2-hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hp2-hero-text {
        padding-bottom: 3rem;
    }

    .hp2-hero-photo-wrap {
        justify-content: center;
    }

    .hp2-hero-photo {
        max-height: 400px;
    }

    .hp2-heading-xl {
        font-size: 2.75rem;
    }

    .hp2-heading-lg {
        font-size: 2.25rem;
    }

    .hp2-instructor-grid {
        grid-template-columns: 320px 1fr;
        gap: 2.5rem;
    }

    .hp2-flagship-card {
        grid-template-columns: 1fr;
    }

    .hp2-flagship-image {
        min-height: 280px;
    }

    .hp2-flagship-content {
        padding: 2rem;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .hp2 {
        --hp2-section-padding: var(--hp2-section-padding-sm);
    }

    .hp2-hero {
        padding: 4rem 1.25rem 3.5rem;
    }

    .hp2-hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hp2-hero-text {
        padding-bottom: 2.5rem;
    }

    .hp2-hero-subtitle {
        font-size: 1.0625rem;
        margin-left: auto;
        margin-right: auto;
    }

    .hp2-hero-cta-group {
        align-items: center;
    }

    .hp2-hero-photo {
        max-height: 340px;
    }

    .hp2-hero-title {
        font-size: 2.25rem;
    }

    .hp2-heading-xl {
        font-size: 2.25rem;
    }

    .hp2-heading-lg {
        font-size: 1.75rem;
    }

    .hp2-heading-md {
        font-size: 1.5rem;
    }

    .hp2-heading-sm {
        font-size: 1.25rem;
    }

    .hp2-grid-2,
    .hp2-grid-3,
    .hp2-grid-4 {
        grid-template-columns: 1fr;
    }

    .hp2-schools-grid {
        grid-template-columns: 1fr;
    }

    .hp2-testimonials-grid {
        grid-template-columns: 1fr;
    }

    .hp2-stats-grid {
        gap: 1.5rem;
    }

    .hp2-stat-divider {
        display: none;
    }

    .hp2-stat-number {
        font-size: 1.75rem;
    }

    .hp2-instructor-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hp2-instructor-photo-wrap {
        max-width: 320px;
        margin: 0 auto;
    }

    .hp2-flagship-card {
        grid-template-columns: 1fr;
    }

    .hp2-flagship-image {
        min-height: 240px;
    }

    .hp2-flagship-content {
        padding: 1.5rem;
    }

    .hp2-flagship-price-amount {
        font-size: 1.75rem;
    }

    .hp2-cta-title {
        font-size: 1.75rem;
    }

    .hp2-btn-lg {
        padding: 1rem 2rem;
        font-size: 0.9375rem;
    }

    .hp2-as-seen-on-logos {
        gap: 1.25rem;
    }
}

/* Small mobile */
@media (max-width: 480px) {
    .hp2-hero-title {
        font-size: 1.875rem;
    }

    .hp2-stats-grid {
        flex-direction: column;
        gap: 1rem;
    }

    .hp2-pillar-card {
        padding: 1.5rem 1rem;
    }

    .hp2-nav-logo-img {
        max-width: 180px;
    }
}

/* ═══════════════════════════════════════════════════════════════
   NAVIGATION (V2 custom layout)
   ═══════════════════════════════════════════════════════════════ */
.hp2-nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background-color: #0f1b2d;
    border-bottom: 1px solid rgba(255, 103, 25, 0.15);
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.hp2-nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.hp2-nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.hp2-nav-logo-img {
    max-width: 220px;
    height: auto;
}

.hp2-nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.hp2-nav-link {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.9375rem;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
    letter-spacing: 0.02em;
}

.hp2-nav-link:hover {
    color: #FF6719;
}

.hp2-nav-cta {
    display: inline-flex;
    align-items: center;
    padding: 0.6rem 1.5rem;
    background-color: #FF6719;
    color: #ffffff;
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.hp2-nav-cta:hover {
    background-color: #E55A15;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 103, 25, 0.3);
}

/* Hamburger */
.hp2-nav-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 28px;
    height: 28px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.hp2-nav-hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Mobile menu */
.hp2-mobile-menu {
    display: none;
    flex-direction: column;
    padding: 1rem 1.5rem 1.5rem;
    background-color: #0f1b2d;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.hp2-mobile-menu.hp2-mobile-open {
    display: flex;
}

.hp2-mobile-link {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition: color 0.3s ease;
}

.hp2-mobile-link:hover {
    color: #FF6719;
}

.hp2-mobile-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 0.75rem;
    padding: 0.75rem 1.5rem;
    background-color: #FF6719;
    color: #ffffff;
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    border-radius: 50px;
    text-decoration: none;
}

/* Countdown timer — desktop (inline in nav) */
.hp2-nav-countdown {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.85rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.03em;
}

.hp2-countdown-label {
    color: #FF6719;
    font-size: 0.7rem;
    font-weight: 700;
    margin-right: 0.4rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.hp2-countdown-unit {
    background: linear-gradient(135deg, rgba(255, 133, 52, 0.25) 0%, rgba(255, 103, 25, 0.2) 100%);
    border: 1px solid rgba(255, 103, 25, 0.5);
    border-radius: 5px;
    padding: 0.25rem 0.45rem;
    min-width: 2.3rem;
    text-align: center;
    font-variant-numeric: tabular-nums;
    color: #FF8534;
    text-shadow: 0 0 8px rgba(255, 103, 25, 0.3);
}

.hp2-countdown-sep {
    color: #FF6719;
    font-weight: 700;
    opacity: 0.6;
}

@keyframes hp2CountdownPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.hp2-countdown-sep {
    animation: hp2CountdownPulse 1.5s ease-in-out infinite;
}

/* Countdown timer — mobile */
.hp2-mobile-countdown {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 0;
    border-bottom: 1px solid rgba(255, 103, 25, 0.15);
}

.hp2-mobile-countdown .hp2-countdown-label {
    font-size: 0.7rem;
}

.hp2-countdown-row {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.hp2-countdown-row .hp2-countdown-unit {
    font-size: 0.95rem;
    font-weight: 700;
    padding: 0.3rem 0.55rem;
}

@media (max-width: 768px) {
    .hp2-nav-links {
        display: none;
    }

    .hp2-nav-hamburger {
        display: flex;
    }
}

/* ═══════════════════════════════════════════════════════════════
   SECTION: FREE NEWSLETTER (hub low-friction signup)
   ═══════════════════════════════════════════════════════════════ */
.hp2-newsletter {
    padding: var(--hp2-section-padding);
    background-color: var(--hp2-cream);
}

.hp2-newsletter-embed {
    max-width: 480px;
    margin: 0 auto;
    background: var(--hp2-white);
    border-radius: var(--hp2-radius);
    overflow: hidden;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
}

.hp2-newsletter-embed iframe {
    display: block;
    width: 100%;
    border: 0;
}

/* ═══════════════════════════════════════════════════════════════
   LEGAL PAGES (Legal Notice, Terms, Privacy)
   ═══════════════════════════════════════════════════════════════ */
.hp2-legal-hero {
    position: relative;
    padding: 5rem 1.5rem 3.5rem;
    background: linear-gradient(180deg, var(--hp2-navy) 0%, var(--hp2-navy-light) 100%);
    color: var(--hp2-white);
    text-align: center;
}

.hp2-legal-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center top, rgba(255, 103, 25, 0.12) 0%, transparent 60%);
    pointer-events: none;
}

.hp2-legal-hero-inner {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.hp2-legal-chip {
    display: inline-block;
    padding: 0.4rem 1rem;
    background-color: rgba(255, 103, 25, 0.15);
    color: var(--hp2-gold);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    border-radius: 50px;
    border: 1px solid rgba(255, 103, 25, 0.35);
    margin-bottom: 1.25rem;
}

.hp2-legal-title {
    font-family: var(--hp2-font-heading);
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.15;
    margin: 0 0 1rem;
    letter-spacing: -0.01em;
}

.hp2-legal-subtitle {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.75);
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.6;
}

.hp2-legal-section {
    padding: 4rem 1.5rem 5rem;
    background-color: var(--hp2-cream);
}

.hp2-prose {
    max-width: 760px;
    margin: 0 auto;
    background-color: var(--hp2-white);
    padding: 3rem 2.5rem;
    border-radius: var(--hp2-radius);
    box-shadow: var(--hp2-shadow-card);
    font-size: 1.0625rem;
    line-height: 1.75;
    color: var(--hp2-text);
}

.hp2-prose h2 {
    font-family: var(--hp2-font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.3;
    color: var(--hp2-navy);
    margin: 2.25rem 0 0.75rem;
    letter-spacing: -0.005em;
}

.hp2-prose h2:first-child {
    margin-top: 0;
}

.hp2-prose p {
    margin: 0 0 1.1rem;
}

.hp2-prose ul,
.hp2-prose ol {
    margin: 0 0 1.1rem;
    padding-left: 1.5rem;
}

.hp2-prose li {
    margin-bottom: 0.5rem;
}

.hp2-prose ol ol {
    margin-top: 0.5rem;
}

.hp2-prose a {
    color: var(--hp2-gold);
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
    transition: color var(--hp2-transition);
}

.hp2-prose a:hover {
    color: var(--hp2-gold-hover);
}

.hp2-prose strong {
    color: var(--hp2-navy);
    font-weight: 700;
}

.hp2-back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 2rem;
    color: var(--hp2-text-muted);
    font-size: 0.9375rem;
    font-weight: 600;
    text-decoration: none;
    transition: color var(--hp2-transition);
}

.hp2-back-link:hover {
    color: var(--hp2-gold);
}

/* ═══════════════════════════════════════════════════════════════
   THANK YOU PAGE
   ═══════════════════════════════════════════════════════════════ */
.hp2-thanks-hero {
    position: relative;
    padding: 6rem 1.5rem 4rem;
    background: linear-gradient(180deg, var(--hp2-navy) 0%, var(--hp2-navy-light) 100%);
    color: var(--hp2-white);
    text-align: center;
    overflow: hidden;
}

.hp2-thanks-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 25%, rgba(255, 103, 25, 0.20) 0%, transparent 50%),
        radial-gradient(circle at 80% 30%, rgba(255, 140, 66, 0.15) 0%, transparent 55%),
        radial-gradient(circle at 50% 80%, rgba(255, 103, 25, 0.12) 0%, transparent 60%);
    pointer-events: none;
}

.hp2-thanks-hero-inner {
    position: relative;
    max-width: 760px;
    margin: 0 auto;
}

.hp2-thanks-title-emoji {
    display: inline-block;
    transform-origin: 70% 70%;
    animation: hp2-thanks-wave 1.8s ease-in-out infinite;
}

@keyframes hp2-thanks-wave {
    0%, 100% { transform: rotate(0deg); }
    20%      { transform: rotate(-14deg); }
    40%      { transform: rotate(12deg); }
    60%      { transform: rotate(-8deg); }
    80%      { transform: rotate(6deg); }
}

.hp2-thanks-title {
    font-family: var(--hp2-font-heading);
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin: 0 0 1.25rem;
}

.hp2-thanks-title-gold {
    color: var(--hp2-gold);
}

.hp2-thanks-tagline {
    font-size: 1.25rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    margin: 0 auto 2.25rem;
    max-width: 640px;
}

.hp2-thanks-cta-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
}

.hp2-thanks-cta-note {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.55);
}

.hp2-thanks-cta-note a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: underline;
}

.hp2-thanks-cta-note a:hover {
    color: var(--hp2-gold);
}

.hp2-thanks-steps {
    padding: 5rem 1.5rem;
    background-color: var(--hp2-cream);
}

.hp2-thanks-steps-inner {
    max-width: 900px;
    margin: 0 auto;
}

.hp2-thanks-steps-heading {
    text-align: center;
    margin-bottom: 3rem;
}

.hp2-thanks-steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.hp2-thanks-step {
    position: relative;
    background-color: var(--hp2-white);
    padding: 2rem 1.5rem;
    border-radius: var(--hp2-radius);
    box-shadow: var(--hp2-shadow-card);
    text-align: center;
    border-top: 3px solid var(--hp2-gold);
}

.hp2-thanks-step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background-color: var(--hp2-gold-light);
    color: var(--hp2-gold);
    font-family: var(--hp2-font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.hp2-thanks-step-title {
    font-family: var(--hp2-font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--hp2-navy);
    margin: 0 0 0.5rem;
}

.hp2-thanks-step-text {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--hp2-text-muted);
    margin: 0;
}

.hp2-thanks-encourage {
    padding: 4rem 1.5rem 5rem;
    background-color: var(--hp2-white);
}

.hp2-thanks-encourage-inner {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}

.hp2-thanks-encourage-heading {
    font-family: var(--hp2-font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--hp2-navy);
    margin: 0 0 1rem;
    line-height: 1.25;
}

.hp2-thanks-encourage-text {
    font-size: 1.0625rem;
    line-height: 1.75;
    color: var(--hp2-text-muted);
    margin: 0 0 2rem;
}

.hp2-thanks-encourage-signature {
    margin-top: 1.5rem;
    font-style: italic;
    color: var(--hp2-text-muted);
}

.hp2-thanks-encourage-signature strong {
    color: var(--hp2-navy);
    font-style: normal;
}

/* Responsive */
@media (max-width: 768px) {
    .hp2-legal-title {
        font-size: 2.25rem;
    }

    .hp2-legal-section {
        padding: 2.5rem 1rem 4rem;
    }

    .hp2-prose {
        padding: 2rem 1.5rem;
        font-size: 1rem;
    }

    .hp2-prose h2 {
        font-size: 1.3rem;
        margin-top: 1.75rem;
    }

    .hp2-thanks-title {
        font-size: 2.25rem;
    }

    .hp2-thanks-tagline {
        font-size: 1.0625rem;
    }

    .hp2-thanks-steps-grid {
        grid-template-columns: 1fr;
    }

    .hp2-thanks-encourage-heading {
        font-size: 1.6rem;
    }
}

/* ═══════════════════════════════════════════════════════════════
   HERO — trust microline above the H1
   ═══════════════════════════════════════════════════════════════ */
.hp2 .sfb-min-trust-microline {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.45rem 1rem;
    background-color: var(--hp2-white);
    border: 1px solid var(--hp2-border);
    border-radius: 50px;
    box-shadow: 0 4px 14px rgba(15, 27, 45, 0.06);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--hp2-text-muted);
    margin: 0 auto 1.5rem;
    letter-spacing: 0.01em;
    opacity: 0;
    transform: translateY(-6px);
    animation: hp2-microline-in 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.15s forwards;
}

.hp2 .sfb-min-trust-microline strong {
    color: var(--hp2-navy);
    font-weight: 800;
}

.hp2 .sfb-min-trust-stars {
    color: var(--hp2-gold);
    letter-spacing: 0.15em;
    font-size: 0.875rem;
    line-height: 1;
}

@keyframes hp2-microline-in {
    to { opacity: 1; transform: translateY(0); }
}

/* ═══════════════════════════════════════════════════════════════
   HERO — cursor-followed gradient blob (subtle depth)
   ═══════════════════════════════════════════════════════════════ */
.hp2 .sfb-min-hero {
    position: relative;
    overflow: hidden;
}

.hp2 .sfb-min-hero > .hp2-container {
    position: relative;
    z-index: 1;
}

.hp2 .sfb-min-hero-blob {
    position: absolute;
    width: 620px;
    height: 620px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 103, 25, 0.18) 0%, rgba(255, 140, 66, 0.08) 35%, transparent 65%);
    pointer-events: none;
    z-index: 0;
    top: 0;
    left: 0;
    opacity: 0;
    filter: blur(40px);
    transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                opacity 0.45s ease-out;
    will-change: transform, opacity;
}

/* ═══════════════════════════════════════════════════════════════
   HERO — animated underline draw on tagline value-verbs
   ═══════════════════════════════════════════════════════════════ */
.hp2 .sfb-min-tagline strong {
    position: relative;
    display: inline-block;
}

.hp2 .sfb-min-tagline strong::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 2px;
    background-color: var(--hp2-gold);
    border-radius: 1px;
    animation: hp2-tagline-underline 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.hp2 .sfb-min-tagline strong:nth-of-type(1)::after { animation-delay: 0.7s; }
.hp2 .sfb-min-tagline strong:nth-of-type(2)::after { animation-delay: 1.05s; }
.hp2 .sfb-min-tagline strong:nth-of-type(3)::after { animation-delay: 1.4s; }

@keyframes hp2-tagline-underline {
    from { width: 0; }
    to   { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
    .hp2 .sfb-min-hero-blob {
        display: none;
    }
    .hp2 .sfb-min-trust-microline,
    .hp2 .sfb-min-tagline strong::after {
        animation: none;
        opacity: 1;
        transform: none;
        width: 100%;
    }
}

/* ═══════════════════════════════════════════════════════════════
   HERO CTA — primary call-to-action below the thumbnail
   ═══════════════════════════════════════════════════════════════ */
.hp2 .sfb-min-hero-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
    margin: 0 auto 2.5rem;
}

.hp2 .sfb-min-hero-cta-btn {
    position: relative;
    padding: 1.15rem 2.75rem;
    font-size: 1.0625rem;
    box-shadow: 0 12px 28px rgba(255, 103, 25, 0.4);
}

.hp2 .sfb-min-hero-cta-arrow {
    display: inline-block;
    margin-left: 0.5rem;
    animation: hp2-cta-arrow-bob 1.4s ease-in-out infinite;
}

@keyframes hp2-cta-arrow-bob {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(4px); }
}

.hp2 .sfb-min-hero-cta-hint {
    font-size: 0.8125rem;
    color: var(--hp2-text-muted);
    letter-spacing: 0.04em;
}

/* Subtle, slow float on the hero thumbnail so the static product image breathes */
.hp2 .sfb-min-thumb {
    animation: hp2-thumb-float 6s ease-in-out infinite;
}

@keyframes hp2-thumb-float {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-8px); }
}

@media (prefers-reduced-motion: reduce) {
    .hp2 .sfb-min-thumb,
    .hp2 .sfb-min-hero-cta-arrow {
        animation: none;
    }
}

/* ═══════════════════════════════════════════════════════════════
   SCROLL REVEAL — fade-up sections as they enter the viewport
   Only active once JS has loaded (body.js-ready), so no-JS clients
   see content immediately.
   ═══════════════════════════════════════════════════════════════ */
body.js-ready .hp2-reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.7s ease-out, transform 0.7s ease-out;
    will-change: opacity, transform;
}

body.js-ready .hp2-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Container that staggers its direct children's reveal */
body.js-ready .hp2-reveal-stagger > * {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.55s ease-out, transform 0.55s ease-out;
}

body.js-ready .hp2-reveal-stagger.is-visible > * {
    opacity: 1;
    transform: translateY(0);
}

body.js-ready .hp2-reveal-stagger.is-visible > *:nth-child(1) { transition-delay: 0s; }
body.js-ready .hp2-reveal-stagger.is-visible > *:nth-child(2) { transition-delay: 0.09s; }
body.js-ready .hp2-reveal-stagger.is-visible > *:nth-child(3) { transition-delay: 0.18s; }
body.js-ready .hp2-reveal-stagger.is-visible > *:nth-child(4) { transition-delay: 0.27s; }
body.js-ready .hp2-reveal-stagger.is-visible > *:nth-child(5) { transition-delay: 0.36s; }
body.js-ready .hp2-reveal-stagger.is-visible > *:nth-child(6) { transition-delay: 0.45s; }

@media (prefers-reduced-motion: reduce) {
    body.js-ready .hp2-reveal,
    body.js-ready .hp2-reveal-stagger > * {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}

/* ═══════════════════════════════════════════════════════════════
   STICKY CTA BAR — slides up after the hero scrolls out of view
   ═══════════════════════════════════════════════════════════════ */
.hp2-sticky-cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 100;
    background: linear-gradient(180deg, #1a2942 0%, var(--hp2-navy) 100%);
    border-top: 1px solid rgba(255, 103, 25, 0.28);
    box-shadow: 0 -10px 28px rgba(15, 27, 45, 0.22);
    color: var(--hp2-white);
    transform: translateY(110%);
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.hp2-sticky-cta[data-state="visible"] {
    transform: translateY(0);
}

.hp2-sticky-cta-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.85rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: nowrap;
}

.hp2-sticky-cta-text {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.35;
    min-width: 0;
    flex: 1 1 auto;
}

.hp2-sticky-cta-text strong {
    color: var(--hp2-white);
    font-weight: 700;
}

.hp2-sticky-cta-text .hp2-sticky-cta-meta {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8125rem;
    margin-left: 0.4rem;
}

.hp2-sticky-cta-buttons {
    display: flex;
    gap: 0.6rem;
    flex-shrink: 0;
}

.hp2-sticky-cta-buttons .hp2-btn {
    padding: 0.7rem 1.2rem;
    font-size: 0.8125rem;
    letter-spacing: 0.04em;
    white-space: nowrap;
}

.hp2-sticky-cta-secondary {
    color: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: transparent;
}

.hp2-sticky-cta-secondary:hover,
.hp2-sticky-cta-secondary:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 103, 25, 0.55);
    color: var(--hp2-white);
}

@media (max-width: 768px) {
    .hp2-sticky-cta-inner {
        padding: 0.7rem 1rem;
        gap: 0.6rem;
    }

    .hp2-sticky-cta-text {
        font-size: 0.8125rem;
    }

    .hp2-sticky-cta-text .hp2-sticky-cta-meta {
        display: none;
    }
}

@media (max-width: 520px) {
    .hp2-sticky-cta-text {
        display: none;
    }

    .hp2-sticky-cta-inner {
        justify-content: stretch;
    }

    .hp2-sticky-cta-buttons {
        width: 100%;
    }

    .hp2-sticky-cta-buttons .hp2-btn {
        flex: 1;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hp2-sticky-cta {
        transition: none;
    }
}

/* ═══════════════════════════════════════════════════════════════
   PRICING — rotating glow on the "Most Popular" card
   Reuses --snb-glow-angle and @keyframes snb-glow-spin from snb2026.css.
   ═══════════════════════════════════════════════════════════════ */
.hp2 .snb-pricing-card--alt {
    /* outer soft halo so the card is unmistakably the headline option */
    box-shadow:
        var(--hp2-shadow-lg),
        0 0 36px rgba(255, 103, 25, 0.28);
}

.hp2 .snb-pricing-card--alt::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: calc(var(--hp2-radius) + 4px);
    padding: 4px;
    background: conic-gradient(
        from var(--snb-glow-angle, 0deg),
        transparent 22%,
        rgba(255, 103, 25, 0.95) 42%,
        rgba(255, 210, 140, 0.95) 50%,
        rgba(255, 103, 25, 0.95) 58%,
        transparent 78%
    );
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    animation: snb-glow-spin 4s linear infinite;
    pointer-events: none;
    z-index: 1;
}

/* Keep the badge on top of the rotating glow */
.hp2 .snb-pricing-card--alt .snb-pricing-badge {
    z-index: 2;
}

@media (prefers-reduced-motion: reduce) {
    .hp2 .snb-pricing-card--alt::after {
        animation: none;
        background: linear-gradient(135deg,
            rgba(255, 103, 25, 0.65),
            rgba(255, 210, 140, 0.45));
    }
}

/* ═══════════════════════════════════════════════════════════════
   CURRICULUM — staggered chapter reveal when a week card opens
   ═══════════════════════════════════════════════════════════════ */
.hp2 details.snb-day-card[open] .snb-day-topics li {
    animation: hp2-curriculum-stagger 0.42s ease-out backwards;
}

.hp2 details.snb-day-card[open] .snb-day-topics li:nth-child(1) { animation-delay: 0.05s; }
.hp2 details.snb-day-card[open] .snb-day-topics li:nth-child(2) { animation-delay: 0.12s; }
.hp2 details.snb-day-card[open] .snb-day-topics li:nth-child(3) { animation-delay: 0.19s; }
.hp2 details.snb-day-card[open] .snb-day-topics li:nth-child(4) { animation-delay: 0.26s; }
.hp2 details.snb-day-card[open] .snb-day-topics li:nth-child(5) { animation-delay: 0.33s; }

@keyframes hp2-curriculum-stagger {
    from { opacity: 0; transform: translateX(-10px); }
    to   { opacity: 1; transform: translateX(0); }
}

@media (prefers-reduced-motion: reduce) {
    .hp2 details.snb-day-card[open] .snb-day-topics li {
        animation: none;
    }
}

/* ═══════════════════════════════════════════════════════════════
   FOOTER — LEGAL ROW (small links under copyright)
   ═══════════════════════════════════════════════════════════════ */
.hp2-footer-legal {
    margin-top: 0.75rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.5rem 1.25rem;
    font-size: 0.8125rem;
}

.hp2-footer-legal a {
    color: rgba(255, 255, 255, 0.55);
}

.hp2-footer-legal a:hover {
    color: var(--hp2-gold);
}

.hp2-footer-legal-sep {
    color: rgba(255, 255, 255, 0.2);
}
