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

/* ── 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;
    }
}
