/* ============================================
   MyAlpha.World LLC — Black & Gold Theme
   Professional, Exclusive Design
   Bootstrap 5.3
   ============================================ */

/* === CSS Variables === */
:root {
    --gold: #C9A84C;
    --gold-light: #D4AF37;
    --gold-dark: #A68A3E;
    --gold-pale: #F5E6B8;
    --black: #0A0A0A;
    --black-light: #141414;
    --black-card: #1A1A1A;
    --black-border: #2A2A2A;
    --white: #FFFFFF;
    --gray: #888888;
    --gray-light: #CCCCCC;
}

/* === Reset & Base === */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: var(--black);
    color: var(--white);
    line-height: 1.7;
    font-weight: 400;
    overflow-x: hidden;
}

::selection {
    background: var(--gold);
    color: var(--black);
}

/* === Typography === */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.gold {
    color: var(--gold);
}

/* === Section Base === */
.section {
    padding: 100px 0;
    position: relative;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
}

.section-subtitle {
    color: var(--gold);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* === Navbar === */
.navbar {
    background: transparent;
    padding: 20px 0;
    transition: all 0.4s ease;
    border-bottom: 1px solid transparent;
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 12px 0;
    border-bottom: 1px solid var(--black-border);
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    color: var(--white) !important;
    text-transform: uppercase;
}

.nav-link {
    color: var(--gray-light) !important;
    font-weight: 500;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 8px 16px !important;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--gold) !important;
}

.btn-cta-nav {
    background: var(--gold);
    color: var(--black) !important;
    border-radius: 4px;
    font-weight: 700 !important;
    padding: 10px 24px !important;
    margin-left: 10px;
    transition: all 0.3s ease;
}

.btn-cta-nav:hover {
    background: var(--gold-light);
    color: var(--black) !important;
    transform: translateY(-1px);
}

/* === Hero Section === */
.hero-section {
    position: relative;
    background: linear-gradient(135deg, var(--black) 0%, var(--black-light) 50%, #1a1510 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(201, 168, 76, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(201, 168, 76, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero-subtitle {
    font-size: 0.85rem;
    letter-spacing: 0.3em;
    color: var(--gold);
    font-weight: 600;
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.hero-divider {
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin-left: auto;
    margin-right: auto;
}

.hero-tagline {
    font-size: 1.8rem;
    font-weight: 300;
    line-height: 1.4;
    color: var(--gray-light);
}

/* === Buttons === */
.btn-gold {
    display: inline-block;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--black);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 16px 48px;
    border: none;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-gold:hover {
    background: linear-gradient(135deg, var(--gold-light), var(--gold-pale));
    color: var(--black);
    transform: translateY(-2px);
    box-shadow: 0 10px 40px rgba(201, 168, 76, 0.3);
    text-decoration: none;
}

/* === Guarantee Section === */
.guarantee-section {
    background: var(--black);
}

.guarantee-content {
    border-left: 2px solid var(--gold);
    padding-left: 30px;
    margin: 0 auto;
    max-width: 800px;
}

.guarantee-content p {
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--gray-light);
}

/* Guarantee Cards */
.guarantee-card {
    background: var(--black-card);
    border: 1px solid var(--black-border);
    border-radius: 8px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

.guarantee-card:hover {
    border-color: rgba(201, 168, 76, 0.4);
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.guarantee-card-icon {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 20px;
}

.guarantee-card-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 15px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.guarantee-card p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--gray-light);
    margin: 0;
}

/* Guarantee Badge */
.badge-inner {
    background: linear-gradient(135deg, rgba(201, 168, 76, 0.1), rgba(201, 168, 76, 0.05));
    border: 1px solid rgba(201, 168, 76, 0.3);
    padding: 40px 30px;
    border-radius: 8px;
    max-width: 600px;
    margin: 0 auto;
}

.badge-label {
    font-size: 0.85rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gray);
    margin-bottom: 10px;
}

.badge-title {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--gold);
    letter-spacing: 0.05em;
    line-height: 1.4;
}

/* Goals Achieved */
.goals-title {
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    color: var(--gold);
}

.goals-subtitle {
    font-size: 1rem;
    color: var(--gray);
    letter-spacing: 0.05em;
}

.goals-guarantee {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.05em;
}

.goals-counter {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gray-light);
}

/* === Science Section === */
.science-section {
    background: linear-gradient(180deg, var(--black) 0%, var(--black-light) 100%);
}

/* === Science Section === */
.science-section {
    padding-top: 50px;
}

.science-card {
    padding: 35px 25px;
    background: var(--black-card);
    border: 1px solid var(--black-border);
    border-radius: 8px;
    position: relative;
}

.science-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: var(--gold);
}

.science-main-title {
    font-size: 1.4rem;
    font-weight: 300;
    color: var(--white);
    margin-bottom: 20px;
    letter-spacing: 0.02em;
    line-height: 1.4;
}

.science-title {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--gold);
    margin-bottom: 12px;
}

.science-text {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--gray-light);
    margin-bottom: 18px;
}

.science-divider {
    width: 30px;
    height: 2px;
    background: var(--gold);
    margin: 0 auto 18px;
}

.science-reference {
    font-size: 0.75rem;
    color: var(--gray);
    letter-spacing: 0.05em;
    line-height: 1.8;
}

/* === Program Section === */
.program-section {
    background: var(--black);
}

.program-card {
    background: var(--black-card);
    border: 1px solid var(--black-border);
    padding: 40px 30px;
    border-radius: 8px;
    transition: all 0.3s ease;
    height: 100%;
}

.program-card:hover {
    border-color: rgba(201, 168, 76, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.program-icon {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 20px;
}

.program-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--white);
}

.program-card p {
    color: var(--gray-light);
    font-size: 0.95rem;
    line-height: 1.7;
}

.program-card-gold {
    background: linear-gradient(135deg, rgba(201, 168, 76, 0.12), rgba(201, 168, 76, 0.05));
    border-color: rgba(201, 168, 76, 0.4);
}

.program-card-gold h3 {
    color: var(--gold);
}

/* === Why Section === */
.why-section {
    background: linear-gradient(135deg, var(--black-light) 0%, #1a1510 100%);
}

.why-text {
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--gray-light);
    margin-top: 20px;
}

.opportunity-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    padding: 20px 30px;
    border-radius: 4px;
    margin-top: 30px;
}

.opportunity-text {
    color: var(--black);
    font-weight: 800;
    font-size: 1.2rem;
    letter-spacing: 0.05em;
    margin: 0;
    line-height: 1.4;
}

/* Founder Card */
.founder-card {
    background: var(--black-card);
    border: 1px solid var(--black-border);
    padding: 40px;
    border-radius: 8px;
    max-width: 400px;
    margin: 0 auto;
}

.founder-initial {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--black);
    font-size: 2rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.founder-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 20px;
    display: block;
    filter: brightness(0.7);
}

.founder-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
}

.founder-quote {
    font-size: 0.95rem;
    color: var(--gold);
    font-style: italic;
    margin: 0;
}

/* === Testimonials Section === */
.testimonials-section {
    background: var(--black);
}

/* === Testimonials Section === */
.testimonials-section {
    background: var(--black);
}

.testimonial-card {
    background: var(--black-card);
    border: 1px solid var(--black-border);
    padding: 30px 25px;
    border-radius: 10px;
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 15px;
    right: 25px;
    font-size: 4rem;
    color: rgba(201, 168, 76, 0.15);
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonials-section .testimonial-card::before {
    display: none;
}

.testimonial-card:hover {
    border-color: rgba(201, 168, 76, 0.3);
    transform: translateY(-2px);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 18px;
}

.author-initial {
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--black);
    font-size: 1.2rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
}

.author-img {
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: 50%;
    object-fit: cover;
    filter: brightness(0.7);
    border: 2px solid var(--gold);
}

.testimonial-author h5 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 4px;
}

.testimonial-handle {
    font-size: 0.88rem;
    color: var(--gray-light);
    line-height: 1.7;
    margin: 0;
    position: relative;
    padding-left: 15px;
    border-left: 2px solid rgba(201, 168, 76, 0.3);
}

.testimonial-quote {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--gray-light);
    font-style: italic;
    margin: 0;
}

.testimonial-quote.large {
    font-size: 1.15rem;
    color: var(--white);
    font-weight: 500;
}

.ig-link {
    color: var(--gold);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 0.05em;
    transition: color 0.3s ease;
}

.ig-link:hover {
    color: var(--gold-light);
}

.ig-link i {
    font-size: 1.2rem;
    margin-right: 5px;
}

/* === Assistant Section === */
.assistant-section {
    background: linear-gradient(180deg, var(--black) 0%, var(--black-light) 100%);
}

.assistant-card {
    background: var(--black-card);
    border: 1px solid var(--black-border);
    padding: 40px 30px;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

.assistant-card:hover {
    border-color: rgba(201, 168, 76, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.assistant-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(201, 168, 76, 0.15), rgba(201, 168, 76, 0.05));
    border: 1px solid rgba(201, 168, 76, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    color: var(--gold);
}

.assistant-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 15px;
    line-height: 1.4;
}

.assistant-card p {
    font-size: 0.9rem;
    color: var(--gray-light);
    line-height: 1.7;
}

/* === Instructor Section === */
.instructor-section {
    background: linear-gradient(135deg, var(--black-light) 0%, #1a1510 100%);
}

.instructor-stats {
    font-size: 1rem;
    color: var(--gray-light);
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

.instructor-quote {
    font-size: 1.05rem;
    font-style: italic;
    color: var(--gold);
    line-height: 1.8;
    max-width: 800px;
    margin: 24px auto;
    padding: 20px 0 20px 25px;
    border-left: 3px solid var(--gold);
}

.experience-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(201, 168, 76, 0.15), rgba(201, 168, 76, 0.05));
    border: 1px solid rgba(201, 168, 76, 0.3);
    padding: 25px 35px;
    border-radius: 8px;
    margin-top: 30px;
}

.experience-number {
    display: block;
    font-size: 3rem;
    font-weight: 900;
    color: var(--gold);
    line-height: 1;
}

.experience-text {
    display: block;
    font-size: 0.8rem;
    color: var(--gray);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-top: 5px;
}

.instructor-profile {
    padding: 40px;
    background: var(--black-card);
    border: 1px solid var(--black-border);
    border-radius: 8px;
    max-width: 500px;
    margin: 0 auto;
}

.instructor-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--black);
    font-size: 2rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.instructor-role {
    font-size: 0.85rem;
    color: var(--gold);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 8px;
    text-align: left;
}

.instructor-name {
    font-size: 2rem;
    font-weight: 900;
    color: var(--white);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-align: left;
    margin-bottom: 0;
}

.instructor-image-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
}

.instructor-photo {
    width: 100%;
    max-width: 450px;
    border-radius: 8px;
    object-fit: cover;
}

.instructor-image-placeholder {
    width: 100%;
    max-width: 450px;
    aspect-ratio: 3/4;
    background: var(--black-card);
    border: 2px dashed rgba(201, 168, 76, 0.3);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.instructor-image-placeholder:hover {
    border-color: var(--gold);
    background: rgba(201, 168, 76, 0.03);
}

.instructor-image-placeholder i {
    font-size: 4rem;
    color: var(--gold);
    margin-bottom: 15px;
}

.instructor-image-label {
    font-size: 0.85rem;
    color: var(--gray);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin: 0;
}

/* === Book Section === */
.book-section {
    background: var(--black);
}

.book-card {
    background: var(--black-card);
    border: 1px solid var(--black-border);
    padding: 50px 40px;
    border-radius: 8px;
    text-align: center;
}

.book-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--gold);
    margin-bottom: 10px;
}

.book-subtitle {
    font-size: 1.1rem;
    color: var(--gray-light);
    margin-bottom: 25px;
    font-style: italic;
}

.book-text {
    font-size: 0.95rem;
    color: var(--gray-light);
    line-height: 1.8;
    margin-bottom: 15px;
}

.book-price {
    margin-top: 30px;
    padding: 20px;
    border-top: 1px solid rgba(201, 168, 76, 0.3);
    background: rgba(201, 168, 76, 0.05);
    border-radius: 8px;
}

.book-price-label {
    font-size: 0.85rem;
    color: var(--gray);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.book-price-value {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--gold);
    margin-top: 5px;
}

/* === Pricing Section === */
.pricing-section {
    background: linear-gradient(180deg, var(--black) 0%, var(--black-light) 100%);
}

/* Pricing Cards */
.pricing-card {
    background: var(--black-card);
    border: 1px solid var(--black-border);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}

.pricing-card.premium {
    border-color: rgba(201, 168, 76, 0.5);
    box-shadow: 0 0 40px rgba(201, 168, 76, 0.1);
}

.pricing-card.premium:hover {
    box-shadow: 0 30px 80px rgba(201, 168, 76, 0.15);
}

.pricing-card.exclusive {
    border-color: rgba(201, 168, 76, 0.4);
}

.pricing-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--gold);
    color: var(--black);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 3px;
}

.exclusive-badge {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
}

.pricing-header {
    padding: 30px 30px 0;
    text-align: center;
}

.pricing-header h3 {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.pricing-type {
    font-size: 0.8rem;
    color: var(--gray);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-top: 5px;
}

.pricing-body {
    padding: 20px 25px 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.price-wrapper {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 0;
}

.price-wrapper .amount {
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--gold);
    line-height: 1;
}

.price-wrapper .currency {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold);
    vertical-align: top;
    line-height: 1.2;
    margin-right: 2px;
}

.price-wrapper .price-range {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--gold);
    line-height: 1;
}

.price-divider {
    height: 1px;
    background: var(--black-border);
    margin: 20px 0;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}

.pricing-features li {
    font-size: 0.9rem;
    color: var(--gray-light);
    padding: 8px 0;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.5;
}

.pricing-features li i {
    color: var(--gold);
    font-size: 1rem;
    margin-top: 2px;
    min-width: 16px;
}

.pricing-note {
    font-size: 0.8rem;
    color: var(--gold);
    font-weight: 600;
    text-align: center;
    margin-bottom: 15px;
}

.pricing-disclaimer {
    font-size: 0.82rem;
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 25px;
    flex-grow: 1;
}

.pricing-note-small {
    font-size: 0.78rem !important;
    color: var(--gray) !important;
    font-style: italic;
    padding-top: 4px !important;
    border-top: 1px solid rgba(42, 42, 42, 0.5);
    margin-top: 4px !important;
}

.btn-pricing {
    display: block;
    text-align: center;
    background: transparent;
    border: 2px solid var(--gold);
    color: var(--gold);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 14px 30px;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-pricing:hover {
    background: var(--gold);
    color: var(--black);
    text-decoration: none;
}

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

.btn-pricing-exclusive:hover {
    background: var(--gold);
    color: var(--black);
}

.learn-more-link {
    display: inline-block;
    text-align: center;
    color: var(--gold);
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    margin-top: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 12px 35px;
    border: 2px solid var(--gold);
    border-radius: 4px;
    transition: all 0.3s ease;
    position: relative;
    min-width: 160px;
}

.learn-more-link:hover {
    background: var(--gold);
    color: var(--black);
}

.motivational-heading {
    font-size: 1.2rem;
    font-weight: 300;
    color: var(--gold);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
    letter-spacing: 0.04em;
    text-transform: none;
    position: relative;
    padding: 20px 0;
}

.motivational-heading::before,
.motivational-heading::after {
    content: '';
    display: block;
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 0 auto 20px;
}

.motivational-heading::after {
    margin: 20px auto 0;
}

/* Annual pricing price override */
.annual-price .amount {
    font-size: 2.8rem;
}

/* Consultation CTA */
.consultation-text {
    font-size: 1.1rem;
    color: var(--gray-light);
    margin-bottom: 15px;
}

.btn-consult {
    padding: 18px 50px;
    font-size: 0.95rem;
}

/* === Footer === */
.footer {
    background: var(--black);
    border-top: 1px solid var(--black-border);
    padding: 30px 0;
}

.footer-brand {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.05em;
    margin: 0;
}

.footer-copy {
    font-size: 0.8rem;
    color: var(--gray);
    margin: 0;
}

/* === Billing Toggle === */
.billing-toggle-wrapper {
    margin-bottom: 50px;
}

.billing-toggle {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: var(--black-card);
    border: 1px solid var(--black-border);
    padding: 8px 12px;
    border-radius: 50px;
}

.toggle-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gray);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    cursor: pointer;
    padding: 8px 16px;
    border-radius: 50px;
    transition: all 0.3s ease;
    user-select: none;
}

.toggle-label.active {
    color: var(--black);
    background: var(--gold);
}

.toggle-switch {
    width: 52px;
    height: 28px;
    background: var(--black-border);
    border-radius: 14px;
    position: relative;
    cursor: pointer;
    transition: background 0.3s ease;
}

.toggle-switch.active {
    background: var(--gold);
}

.toggle-slider {
    width: 22px;
    height: 22px;
    background: var(--white);
    border-radius: 50%;
    position: absolute;
    top: 3px;
    left: 3px;
    transition: left 0.3s ease;
}

.toggle-switch.active .toggle-slider {
    left: 27px;
}

.billing-save-note {
    font-size: 0.8rem;
    color: var(--gray);
    margin-top: 12px;
    letter-spacing: 0.05em;
}

/* === Video / Image Placeholders === */
.video-placeholder {
    background: var(--black-card);
    border: 2px dashed rgba(201, 168, 76, 0.3);
    border-radius: 8px;
    padding: 60px 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.video-placeholder.large {
    padding: 100px 30px;
}

.video-placeholder:hover {
    border-color: var(--gold);
    background: rgba(201, 168, 76, 0.03);
}

.video-placeholder i {
    font-size: 4rem;
    color: var(--gold);
    margin-bottom: 15px;
}

.video-placeholder.large i {
    font-size: 5rem;
}

.video-label {
    font-size: 0.85rem;
    color: var(--gray);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin: 0;
}

.book-image {
    max-width: 450px;
    width: 100%;
    border-radius: 8px;
    object-fit: cover;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(201, 168, 76, 0.15);
    transition: transform 0.4s ease;
}

.book-image:hover {
    transform: scale(1.02);
}

.book-image-placeholder {
    background: var(--black-card);
    border: 2px dashed rgba(201, 168, 76, 0.3);
    border-radius: 8px;
    padding: 80px 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.book-image-placeholder:hover {
    border-color: var(--gold);
    background: rgba(201, 168, 76, 0.03);
}

.book-image-placeholder i {
    font-size: 3.5rem;
    color: var(--gold);
    margin-bottom: 15px;
}

.book-image-label {
    font-size: 0.85rem;
    color: var(--gray);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin: 0;
}

.book-text-card {
    background: var(--black-card);
    border: 1px solid rgba(201, 168, 76, 0.3);
    padding: 40px 35px;
    border-radius: 8px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(201, 168, 76, 0.1);
}

.book-text-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--gold);
    margin-bottom: 20px;
    letter-spacing: 0.08em;
    text-shadow: 0 0 30px rgba(201, 168, 76, 0.4), 0 2px 10px rgba(0, 0, 0, 0.5);
    animation: goldPulse 3s ease-in-out infinite;
}

@keyframes goldPulse {
    0%, 100% {
        text-shadow: 0 0 30px rgba(201, 168, 76, 0.4), 0 2px 10px rgba(0, 0, 0, 0.5);
    }
    50% {
        text-shadow: 0 0 50px rgba(201, 168, 76, 0.7), 0 2px 15px rgba(0, 0, 0, 0.6);
    }
}

.book-text-content {
    font-size: 1rem;
    color: var(--gray-light);
    line-height: 1.9;
    margin-bottom: 18px;
}

/* === Scroll Indicator === */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-indicator span {
    display: block;
    width: 24px;
    height: 40px;
    border: 2px solid var(--gold);
    border-radius: 12px;
    position: relative;
}

.scroll-indicator span::before {
    content: '';
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--gold);
    border-radius: 2px;
    animation: scrollDown 2s infinite;
}

@keyframes scrollDown {
    0% { opacity: 1; top: 6px; }
    100% { opacity: 0; top: 20px; }
}

/* === Responsive === */
@media (max-width: 991.98px) {
    .section {
        padding: 70px 0;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .hero-tagline {
        font-size: 1.4rem;
    }

    .guarantee-content {
        padding-left: 20px;
    }

    .pricing-card {
        margin-bottom: 20px;
    }
}

@media (max-width: 767.98px) {
    .section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-tagline {
        font-size: 1.2rem;
    }

    .hero-subtitle {
        font-size: 0.75rem;
    }

    .badge-title {
        font-size: 1.1rem;
    }

    .goals-title {
        font-size: 1.3rem;
    }

    .price-wrapper .amount {
        font-size: 2.8rem;
    }

    .annual-price .amount {
        font-size: 2.2rem;
    }

    .pricing-header {
        padding: 25px 20px 0;
    }

    .pricing-body {
        padding: 20px 20px 30px;
    }

    .instructor-avatar {
        width: 80px;
        height: 80px;
        font-size: 1.5rem;
    }

    .instructor-name {
        font-size: 1.5rem;
    }

    .book-card {
        padding: 35px 25px;
    }

    .scroll-indicator {
        display: none;
    }
}

/* Consultation CTA */
.consultation-cta {
    padding-top: 20px;
}

.alex-photo-wrapper {
    display: flex;
    justify-content: center;
}

.alex-photo {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--gold);
}

.alex-photo-placeholder {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: var(--black-card);
    border: 2px dashed rgba(201, 168, 76, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.alex-photo-placeholder:hover {
    border-color: var(--gold);
    background: rgba(201, 168, 76, 0.03);
}

.alex-photo-placeholder i {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 4px;
}

.alex-photo-label {
    font-size: 0.6rem;
    color: var(--gray);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin: 0;
    text-align: center;
    line-height: 1.2;
}

.pricing-video-wrapper {
    max-width: 700px;
    margin: 0 auto;
}

@media (max-width: 575.98px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .section-title {
        font-size: 1.3rem;
    }

    .btn-gold {
        padding: 14px 32px;
        font-size: 0.8rem;
    }
}

/* Testimonials & CTA Section */
.testimonials-section {
    text-align: center;
}

.testimonials-carousel {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 20px 0;
}

.testimonials-carousel::-webkit-scrollbar {
    display: none;
}

.testimonials-track {
    display: flex;
    gap: 30px;
    justify-content: center;
    min-width: max-content;
}

.testimonial-card {
    background: var(--black-card);
    border: 1px solid rgba(201, 168, 76, 0.2);
    border-radius: 12px;
    padding: 30px 25px;
    max-width: 350px;
    min-width: 300px;
    scroll-snap-align: center;
    text-align: center;
}

.testimonial-title {
    color: var(--gold);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.testimonial-photo {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--gold);
}

.testimonial-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
}

.testimonial-name {
    color: var(--gold);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.testimonial-role {
    color: var(--gray);
    font-size: 1rem;
    font-style: italic;
    line-height: 1.5;
    margin: 0;
}

.video-holder {
    max-width: 700px;
    margin: 30px auto;
    background: var(--black-card);
    border: none;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
}

.video-holder video {
    width: 100%;
    display: block;
}

/* === Goals Achieved Section === */
.goals-achieved {
    padding: 60px 0;
}

.goals-title {
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    color: var(--gold);
    text-shadow: 0 0 40px rgba(201, 168, 76, 0.25);
    margin-bottom: 16px;
}

.goals-subtitle {
    font-size: 1.15rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--gold-light);
    opacity: 0.85;
    margin-bottom: 12px;
}

.goals-guarantee {
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    color: var(--white);
    text-shadow: 0 0 30px rgba(201, 168, 76, 0.15);
}

.goals-counter {
    font-size: 4rem;
    font-weight: 800;
    color: var(--gold);
    text-shadow: 0 0 50px rgba(201, 168, 76, 0.3);
    letter-spacing: 0.05em;
}

.goals-counter span {
    font-size: 4.5rem;
}

/* === Goals Video Wrapper === */
.goals-video-wrapper {
    border-radius: 40px;
    overflow: hidden;
    border: 1px solid rgba(201, 168, 76, 0.15);
}

.goals-video-wrapper video,
.goals-video-wrapper video.rounded {
    border-radius: 40px !important;
    display: block;
}

/* === Sneak Peek Video Wrapper === */
.sneak-peek-instruction {
    font-size: 0.82rem;
    color: var(--gray);
    margin-top: 12px;
    margin-bottom: 0;
    font-style: italic;
    text-align: center;
}

.sneak-peek-instruction::before {
    content: '★';
    color: var(--gold);
    margin-right: 4px;
}

.sneak-peek-video-wrapper {
    border-radius: 40px;
    overflow: hidden;
    border: 1px solid rgba(201, 168, 76, 0.15);
}

.sneak-peek-video-wrapper video,
.sneak-peek-video-wrapper video.rounded {
    border-radius: 40px !important;
    display: block;
}

/* === Science & Program Section === */
.science-program-section {
    background: var(--black);
    padding-top: 20px;
}

.science-intro {
    padding: 0 0 20px;
}

.science-main-title {
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--gold);
    margin-bottom: 30px;
    letter-spacing: 0.05em;
}

.science-card {
    background: var(--black-card);
    border: 1px solid rgba(201, 168, 76, 0.15);
    border-radius: 12px;
    padding: 40px 35px;
    max-width: 750px;
    margin: 0 auto;
}

.science-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--gold-light);
    margin-bottom: 16px;
    letter-spacing: 0.05em;
}

.science-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--gray-light);
    margin-bottom: 24px;
}

.science-divider {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 0 auto 24px;
}

.science-reference {
    font-size: 0.9rem;
    color: var(--gray);
    line-height: 1.8;
}

.science-reference strong {
    color: var(--gold);
    font-weight: 700;
    letter-spacing: 0.05em;
}

/* Science Program Cards */
.science-program-card {
    background: var(--black-card);
    border: 1px solid var(--black-border);
    border-radius: 12px;
    padding: 40px 28px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

.science-program-card:hover {
    border-color: rgba(201, 168, 76, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.science-program-card-gold {
    border-color: rgba(201, 168, 76, 0.3);
    background: linear-gradient(180deg, rgba(201, 168, 76, 0.06) 0%, var(--black-card) 100%);
}

.science-program-card-gold:hover {
    border-color: var(--gold);
    box-shadow: 0 20px 60px rgba(201, 168, 76, 0.15);
}

.science-program-icon {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 20px;
}

.science-program-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 16px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.science-program-card-text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--gray-light);
    margin: 0;
}

/* === Why Join Section === */
.why-join-section {
    background: var(--black-card);
    border: 1px solid rgba(201, 168, 76, 0.2);
    border-radius: 16px;
    padding: 50px 45px;
    position: relative;
    overflow: hidden;
}

.why-join-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.why-join-inner {
    display: flex;
    gap: 50px;
    align-items: center;
    justify-content: center;
}

.why-join-left {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.why-join-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--black);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 10px 24px;
    border-radius: 4px;
    margin-bottom: 24px;
}

.why-join-heading {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--gold);
    margin-bottom: 20px;
    letter-spacing: 0.05em;
}

.why-join-desc {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--gray-light);
    margin-bottom: 30px;
}

.why-join-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 16px 30px;
    justify-content: center;
}

.why-join-benefit {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    color: var(--gray-light);
    font-weight: 500;
    justify-content: center;
}

.why-join-benefit i {
    color: var(--gold);
    font-size: 1.2rem;
    flex-shrink: 0;
}

/* === New Testimonial Cards === */
.testimonial-card-new {
    background: var(--black-card);
    border: 1px solid rgba(201, 168, 76, 0.15);
    border-radius: 16px;
    padding: 40px 30px 35px;
    position: relative;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.testimonial-card-new:hover {
    border-color: rgba(201, 168, 76, 0.4);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: translateY(-4px);
}

.testimonial-quote-mark {
    display: flex;
    justify-content: center;
    margin-bottom: 16px;
}

.testimonial-quote-mark::after {
    content: '';
    width: 50px;
    height: 2px;
    background: var(--gold);
    opacity: 0.4;
    border-radius: 1px;
}

.testimonial-photo-new {
    text-align: center;
    margin-bottom: 24px;
}

.testimonial-photo-new img {
    width: 90px;
    height: 90px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid var(--gold);
    filter: brightness(0.7);
    margin: 0 auto 12px;
    display: block;
}

.testimonial-photo-new h5 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gold);
    margin: 0 0 4px;
    letter-spacing: 0.03em;
}

.testimonial-subtitle {
    display: block;
    font-size: 0.82rem;
    font-style: italic;
    color: var(--gold);
    opacity: 0.7;
    letter-spacing: 0.02em;
}

.testimonial-text-new {
    font-size: 0.95rem;
    line-height: 1.85;
    color: var(--gray-light);
    margin: 0;
    flex-grow: 1;
    text-align: left;
}
