/* ============================================
   UNBOUND FREEDOM - CUSTOM STYLES
   Color Scheme: Black, Yellow (#FFD700), Gold (#FFA500)
   ============================================ */

/* ============================================
   ROOT VARIABLES & RESETS
   ============================================ */
:root {
    --color-black: #000000;
    --color-dark: #0a0a0a;
    --color-dark-gray: #1a1a1a;
    --color-medium-gray: #2a2a2a;
    --color-light-gray: #888888;
    --color-yellow: #FFD700;
    --color-gold: #FFA500;
    --color-white: #ffffff;
    --color-off-white: #f5f5f5;

    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-heading: 'Poppins', sans-serif;

    --transition-smooth: all 0.3s ease;
    --transition-fast: all 0.2s ease;

    --shadow-small: 0 2px 8px rgba(255, 215, 0, 0.1);
    --shadow-medium: 0 4px 16px rgba(255, 215, 0, 0.15);
    --shadow-large: 0 8px 32px rgba(255, 215, 0, 0.2);
    --shadow-glow: 0 0 20px rgba(255, 215, 0, 0.3);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    background-color: var(--color-black);
    color: var(--color-white);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.75rem;
}

h4 {
    font-size: 1.25rem;
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    h3 {
        font-size: 1.25rem;
    }
}

p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    line-height: 1.7;
}

strong {
    color: var(--color-yellow);
    font-weight: 600;
}

/* Highlight Text */
.highlight-gold {
    color: var(--color-gold);
    position: relative;
}

.highlight-yellow {
    color: var(--color-yellow);
    position: relative;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn-primary-gold {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 2.5rem;
    background: linear-gradient(135deg, var(--color-gold), var(--color-yellow));
    color: var(--color-black);
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-medium);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary-gold:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
    color: var(--color-black);
}

.btn-primary-gold i {
    width: 20px;
    height: 20px;
    stroke-width: 3;
}

.btn-secondary-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: transparent;
    color: var(--color-yellow);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid var(--color-yellow);
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-secondary-outline:hover {
    background: var(--color-yellow);
    color: var(--color-black);
    transform: translateY(-2px);
}

.btn-secondary-outline i {
    width: 18px;
    height: 18px;
}

/* ============================================
   SECTION STYLING
   ============================================ */
section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

@media (max-width: 768px) {
    section {
        padding: 30px 0;
    }
}

/* Section Headers */
.section-header {
    margin-bottom: 4rem;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--color-white);
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--color-light-gray);
    max-width: 700px;
    margin: 0 auto 2rem;
}

.title-underline {
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--color-gold), var(--color-yellow));
    margin: 1.5rem auto;
    border-radius: 2px;
}

@media (max-width: 768px) {
    .section-header {
        margin-bottom: 2rem;
    }

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

    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 2px;
    }
}

/* Alternating Section Backgrounds */
.problem-section,
.how-it-works-section,
.who-for-section,
.testimonials-section {
    background-color: var(--color-dark);
}

.solution-section,
.curriculum-section,
.why-works-section,
.faq-section {
    background-color: var(--color-black);
}

/* ============================================
   NAVIGATION
   ============================================ */
.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    padding: 1.25rem 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
    transition: var(--transition-smooth);
}

.main-nav.scrolled {
    padding: 0.75rem 0;
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.15);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-yellow);
    text-decoration: none;
    font-family: var(--font-heading);
}

.nav-logo img {
    height: 60px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    margin: 0;
}

.nav-menu a {
    color: var(--color-white);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: var(--transition-fast);
    position: relative;
}

.nav-menu a:hover {
    color: var(--color-yellow);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-yellow);
    transition: var(--transition-fast);
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--color-gold);
    color: var(--color-black);
    text-decoration: none;
    font-weight: 700;
    border-radius: 50px;
    transition: var(--transition-smooth);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
    color: var(--color-black);
}

/* Mobile Menu Toggle */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-toggle i {
    width: 28px;
    height: 28px;
    color: var(--color-yellow);
}

@media (max-width: 992px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        right: -100%;
        width: 300px;
        height: calc(100vh - 80px);
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        transition: var(--transition-smooth);
        border-left: 1px solid rgba(255, 215, 0, 0.1);
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-toggle {
        display: block;
    }
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 150px 0 100px;
    background: radial-gradient(ellipse at top, rgba(255, 165, 0, 0.1), transparent 50%),
        radial-gradient(ellipse at bottom, rgba(255, 215, 0, 0.05), transparent 50%),
        var(--color-black);
    position: relative;
}

.hero-headline {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-subheadline {
    font-size: 1.4rem;
    color: var(--color-light-gray);
    margin-bottom: 2.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-benefits {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.1rem;
    font-weight: 500;
}

.benefit-icon {
    width: 24px;
    height: 24px;
    color: var(--color-yellow);
    stroke-width: 2.5;
}

.hero-cta {
    margin-bottom: 2rem;
}

.hero-disclaimer {
    font-size: 0.95rem;
    color: var(--color-light-gray);
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1.5rem;
    background: rgba(255, 215, 0, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 215, 0, 0.1);
}

.hero-disclaimer i {
    width: 20px;
    height: 20px;
    color: var(--color-yellow);
    flex-shrink: 0;
    margin-top: 2px;
}

/* Hero Decorations */
.hero-decoration {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.15;
    pointer-events: none;
}

.hero-decoration-left {
    top: 10%;
    left: -200px;
    background: var(--color-gold);
}

.hero-decoration-right {
    bottom: 10%;
    right: -200px;
    background: var(--color-yellow);
}

@media (max-width: 768px) {
    .hero-headline {
        font-size: 1.6rem;
    }

    .hero-subheadline {
        font-size: 1rem;
    }

    .hero-benefits {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
}

/* ============================================
   PROBLEM SECTION
   ============================================ */
.problem-section {
    position: relative;
}

.pain-point-card {
    background: var(--color-dark-gray);
    border: 1px solid rgba(255, 215, 0, 0.1);
    border-radius: 16px;
    padding: 2rem;
    height: 100%;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.pain-point-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--color-gold), var(--color-yellow));
    transform: scaleX(0);
    transition: var(--transition-smooth);
}

.pain-point-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
    border-color: var(--color-yellow);
}

.pain-point-card:hover::before {
    transform: scaleX(1);
}

.pain-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.pain-icon i {
    width: 32px;
    height: 32px;
    color: var(--color-yellow);
    stroke-width: 2;
}

.pain-point-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--color-white);
}

.pain-point-card p {
    color: var(--color-light-gray);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 0;
}

/* Problem Transition */
.problem-transition {
    margin-top: 5rem;
    padding: 3rem 2rem;
    background: rgba(255, 165, 0, 0.05);
    border-radius: 20px;
    border: 2px solid var(--color-gold);
}

.transition-text {
    font-size: 1.3rem;
    color: var(--color-white);
    margin-bottom: 0.5rem;
}

.transition-text-emphasis {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.transition-arrow {
    animation: bounce 2s infinite;
}

.transition-arrow i {
    width: 40px;
    height: 40px;
    color: var(--color-yellow);
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(10px);
    }
}

/* ============================================
   SOLUTION SECTION
   ============================================ */
.solution-intro {
    max-width: 800px;
    margin: 0 auto 4rem;
    font-size: 1.15rem;
}

.solution-benefits {
    margin-bottom: 4rem;
}

.solution-benefit-card {
    background: var(--color-dark);
    border: 1px solid rgba(255, 215, 0, 0.15);
    border-radius: 16px;
    padding: 2rem;
    height: 100%;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    transition: var(--transition-smooth);
    position: relative;
}

.solution-benefit-card:hover {
    border-color: var(--color-yellow);
    box-shadow: var(--shadow-medium);
    transform: translateX(5px);
}

.benefit-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: rgba(255, 215, 0, 0.2);
    font-family: var(--font-heading);
    line-height: 1;
}

.benefit-content {
    flex: 1;
}

.benefit-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: var(--color-yellow);
}

.benefit-content p {
    color: var(--color-light-gray);
    margin-bottom: 0;
    font-size: 1rem;
}

.benefit-check {
    width: 40px;
    height: 40px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.benefit-check i {
    width: 24px;
    height: 24px;
    color: var(--color-gold);
    stroke-width: 3;
}

/* Transformation Box */
.transformation-box {
    padding: 3rem;
    background: linear-gradient(135deg, rgba(255, 165, 0, 0.1), rgba(255, 215, 0, 0.05));
    border: 2px solid var(--color-gold);
    border-radius: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.transformation-icon {
    width: 80px;
    height: 80px;
    background: var(--color-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.transformation-icon i {
    width: 40px;
    height: 40px;
    color: var(--color-black);
    stroke-width: 2.5;
}

.transformation-box h3 {
    font-size: 2rem;
    color: var(--color-yellow);
    margin-bottom: 1rem;
}

.transformation-box p {
    font-size: 1.15rem;
    color: var(--color-white);
    margin-bottom: 0;
}

/* ============================================
   HOW IT WORKS SECTION
   ============================================ */
.how-it-works-steps {
    max-width: 900px;
    margin: 0 auto 3rem;
}

.step-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
}

.step-item:last-child {
    margin-bottom: 0;
}

.step-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--color-gold), var(--color-yellow));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-black);
    font-family: var(--font-heading);
    box-shadow: var(--shadow-medium);
}

.step-connector {
    width: 3px;
    flex: 1;
    background: linear-gradient(180deg, var(--color-yellow), transparent);
    margin: 1rem 0;
    min-height: 80px;
}

.step-item:last-child .step-connector {
    display: none;
}

.step-content {
    flex: 1;
    background: var(--color-dark-gray);
    border: 1px solid rgba(255, 215, 0, 0.1);
    border-radius: 20px;
    padding: 2.5rem;
    position: relative;
}

.step-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.step-icon i {
    width: 32px;
    height: 32px;
    color: var(--color-yellow);
}

.step-content h3 {
    font-size: 1.8rem;
    color: var(--color-yellow);
    margin-bottom: 1rem;
}

.step-content p {
    color: var(--color-light-gray);
    margin-bottom: 1.5rem;
}

.step-highlights {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.step-highlights span {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: var(--color-white);
}

.step-highlights i {
    width: 18px;
    height: 18px;
    color: var(--color-gold);
    flex-shrink: 0;
}

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

.how-cta-text {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--color-white);
}

@media (max-width: 768px) {
    .step-item {
        flex-direction: column;
        gap: 1rem;
    }

    .step-visual {
        flex-direction: row;
        justify-content: flex-start;
    }

    .step-connector {
        width: 100px;
        height: 3px;
        min-height: auto;
        margin: 0 1rem;
        background: linear-gradient(90deg, var(--color-yellow), transparent);
    }
}

/* ============================================
   CURRICULUM SECTION
   ============================================ */
.curriculum-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.curriculum-card {
    background: var(--color-dark);
    border: 1px solid rgba(255, 215, 0, 0.1);
    border-radius: 16px;
    padding: 2.5rem;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.curriculum-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--color-gold), var(--color-yellow));
}

.curriculum-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-large);
    border-color: var(--color-yellow);
}

.curriculum-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.curriculum-icon i {
    width: 36px;
    height: 36px;
    color: var(--color-yellow);
}

.curriculum-content h3 {
    font-size: 1.4rem;
    color: var(--color-yellow);
    margin-bottom: 1rem;
}

.curriculum-content p {
    color: var(--color-light-gray);
    margin-bottom: 1.5rem;
}

.curriculum-topics {
    list-style: none;
    padding: 0;
}

.curriculum-topics li {
    padding: 0.5rem 0;
    color: var(--color-white);
    font-size: 0.95rem;
    position: relative;
    padding-left: 1.5rem;
}

.curriculum-topics li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--color-gold);
    font-weight: 700;
}

/* Curriculum Bonus */
.curriculum-bonus {
    max-width: 800px;
    margin: 0 auto;
    padding: 2.5rem;
    background: linear-gradient(135deg, rgba(255, 165, 0, 0.1), rgba(255, 215, 0, 0.05));
    border: 2px solid var(--color-gold);
    border-radius: 20px;
}

.bonus-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.5rem;
    background: var(--color-gold);
    color: var(--color-black);
    border-radius: 50px;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.bonus-badge i {
    width: 20px;
    height: 20px;
}

.curriculum-bonus h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

.curriculum-bonus p {
    font-size: 1.1rem;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .curriculum-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   WHO THIS IS FOR SECTION
   ============================================ */
.who-for-card {
    background: var(--color-dark-gray);
    border-radius: 20px;
    padding: 2.5rem;
    height: 100%;
}

.who-for-card.perfect-for {
    border: 2px solid var(--color-gold);
}

.who-for-card.not-for {
    border: 2px solid #ff4444;
}

.who-for-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.who-for-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.perfect-for .who-for-icon {
    background: rgba(255, 215, 0, 0.2);
}

.not-for .who-for-icon {
    background: rgba(255, 68, 68, 0.2);
}

.who-for-icon i {
    width: 32px;
    height: 32px;
}

.perfect-for .who-for-icon i {
    color: var(--color-yellow);
}

.not-for .who-for-icon i {
    color: #ff4444;
}

.who-for-header h3 {
    font-size: 1.6rem;
    margin-bottom: 0;
}

.who-for-list {
    list-style: none;
    padding: 0;
}

.who-for-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.who-for-list li:last-child {
    border-bottom: none;
}

.who-for-list i {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    margin-top: 2px;
    stroke-width: 2.5;
}

.perfect-for .who-for-list i {
    color: var(--color-yellow);
}

.not-for .who-for-list i {
    color: #ff4444;
}

.who-for-list span {
    color: var(--color-light-gray);
    line-height: 1.6;
}

/* Honesty Box */
.honesty-box {
    max-width: 800px;
    margin: 4rem auto 0;
    padding: 3rem;
    background: rgba(255, 215, 0, 0.05);
    border: 2px solid var(--color-yellow);
    border-radius: 20px;
}

.honesty-icon {
    width: 70px;
    height: 70px;
    background: var(--color-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.honesty-icon i {
    width: 36px;
    height: 36px;
    color: var(--color-black);
}

.honesty-box h3 {
    font-size: 1.8rem;
    color: var(--color-yellow);
    margin-bottom: 1rem;
}

.honesty-box p {
    font-size: 1.1rem;
    margin-bottom: 0;
}

/* ============================================
   WHY THIS WORKS SECTION
   ============================================ */
.why-works-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.why-works-card {
    background: var(--color-dark);
    border: 1px solid rgba(255, 215, 0, 0.15);
    border-radius: 20px;
    padding: 2.5rem;
    position: relative;
    transition: var(--transition-smooth);
}

.why-works-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-large);
    border-color: var(--color-gold);
}

.why-number {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 4rem;
    font-weight: 700;
    color: rgba(255, 215, 0, 0.1);
    font-family: var(--font-heading);
    line-height: 1;
}

.why-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.why-icon i {
    width: 36px;
    height: 36px;
    color: var(--color-gold);
}

.why-works-card h3 {
    font-size: 1.6rem;
    color: var(--color-yellow);
    margin-bottom: 1rem;
}

.why-works-card p {
    color: var(--color-light-gray);
    margin-bottom: 1.5rem;
}

.why-stat {
    display: flex;
    flex-direction: column;
    padding: 1.5rem;
    background: rgba(255, 215, 0, 0.05);
    border-radius: 12px;
    border-left: 4px solid var(--color-gold);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-yellow);
    font-family: var(--font-heading);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--color-light-gray);
    font-size: 0.95rem;
}

.why-highlight {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 215, 0, 0.05);
    border-radius: 12px;
}

.why-highlight i {
    width: 24px;
    height: 24px;
    color: var(--color-gold);
    flex-shrink: 0;
}

.why-highlight span {
    color: var(--color-white);
    font-weight: 600;
}

.why-works-cta {
    max-width: 700px;
    margin: 0 auto;
}

.why-cta-text {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.why-cta-emphasis {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--color-yellow);
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .why-works-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials-slider {
    max-width: 900px;
    margin: 0 auto 3rem;
}

.testimonial-card {
    background: var(--color-dark-gray);
    border: 1px solid rgba(255, 215, 0, 0.15);
    border-radius: 20px;
    padding: 1.5rem;
    margin: 0 1rem;
}

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

.testimonial-avatar {
    width: 60px;
    height: 60px;
    background: rgba(255, 215, 0, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.testimonial-avatar i {
    width: 32px;
    height: 32px;
    color: var(--color-yellow);
}

.testimonial-info h4 {
    font-size: 1.3rem;
    margin-bottom: 0.25rem;
    color: var(--color-white);
}

.testimonial-role {
    color: var(--color-gold);
    font-size: 0.95rem;
    margin-bottom: 0;
}

.testimonial-stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1.5rem;
}

.testimonial-stars i {
    width: 20px;
    height: 20px;
    color: var(--color-yellow);
    fill: var(--color-yellow);
}

.testimonial-content p {
    color: var(--color-light-gray);
    font-size: 1.05rem;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial-highlight {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 50px;
    border: 1px solid var(--color-gold);
}

.testimonial-highlight i {
    width: 20px;
    height: 20px;
    color: var(--color-gold);
}

.testimonial-highlight span {
    color: var(--color-yellow);
    font-weight: 600;
    font-size: 0.95rem;
}

.testimonials-footer {
    max-width: 800px;
    margin: 0 auto;
}

.disclaimer-text {
    font-size: 0.9rem;
    color: var(--color-light-gray);
    font-style: italic;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
}

/* Slick Slider Customization */
.slick-dots {
    bottom: -50px;
}

.slick-dots li button:before {
    color: var(--color-yellow);
    font-size: 12px;
}

.slick-dots li.slick-active button:before {
    color: var(--color-gold);
}

.slick-prev,
.slick-next {
    width: 50px;
    height: 50px;
    z-index: 1;
}

.slick-prev {
    left: -60px;
}

.slick-next {
    right: -60px;
}

.slick-prev:before,
.slick-next:before {
    font-size: 50px;
    color: var(--color-yellow);
}

@media (max-width: 992px) {
    .slick-prev {
        left: -30px;
    }

    .slick-next {
        right: -30px;
    }
}

@media (max-width: 768px) {

    .slick-prev,
    .slick-next {
        display: none !important;
    }
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-accordion {
    max-width: 900px;
    margin: 0 auto 3rem;
}

.faq-item {
    background: var(--color-dark);
    border: 1px solid rgba(255, 215, 0, 0.1);
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.faq-item:hover {
    border-color: var(--color-yellow);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.75rem 2rem;
    cursor: pointer;
    user-select: none;
}

.faq-question h3 {
    font-size: 1.2rem;
    margin-bottom: 0;
    color: var(--color-white);
    transition: var(--transition-fast);
}

.faq-toggle {
    width: 32px;
    height: 32px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition-smooth);
}

.faq-toggle i {
    width: 20px;
    height: 20px;
    color: var(--color-yellow);
    transition: var(--transition-smooth);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-answer p {
    padding: 0 2rem 1.75rem 2rem;
    color: var(--color-light-gray);
    line-height: 1.8;
    margin-bottom: 0;
}

/* Active State */
.faq-item.active {
    border-color: var(--color-gold);
    box-shadow: var(--shadow-small);
}

.faq-item.active .faq-question h3 {
    color: var(--color-yellow);
}

.faq-item.active .faq-toggle {
    background: var(--color-yellow);
    transform: rotate(45deg);
}

.faq-item.active .faq-toggle i {
    color: var(--color-black);
}

.faq-footer {
    max-width: 600px;
    margin: 0 auto;
}

.faq-footer-text {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

/* ============================================
   FINAL CTA SECTION
   ============================================ */
.final-cta-section {
    background: radial-gradient(ellipse at center, rgba(255, 165, 0, 0.15), transparent 70%),
        var(--color-black);
    padding: 120px 0;
}

.final-cta-box {
    max-width: 1000px;
    margin: 0 auto;
    padding: 4rem;
    background: var(--color-dark);
    border: 2px solid var(--color-gold);
    border-radius: 30px;
    text-align: center;
    box-shadow: var(--shadow-large);
}

.final-cta-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--color-gold), var(--color-yellow));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.final-cta-icon i {
    width: 48px;
    height: 48px;
    color: var(--color-black);
}

.final-cta-headline {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.final-cta-subheadline {
    font-size: 1.4rem;
    color: var(--color-light-gray);
    margin-bottom: 2.5rem;
}

.final-cta-copy {
    max-width: 800px;
    margin: 0 auto 3rem;
}

.final-cta-copy p {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
    .final-cta-box {
        padding: 2.5rem 1.5rem;
    }

    .final-cta-headline {
        font-size: 2rem;
    }

    .final-cta-subheadline {
        font-size: 1.1rem;
    }
}

/* ============================================
   FINAL CTA - ADDITIONAL STYLES
   ============================================ */
.final-cta-benefits {
    margin: 3rem 0;
}

.final-benefit-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 1.5rem;
    background: rgba(255, 215, 0, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 12px;
    text-align: center;
}

.final-benefit-item i {
    width: 40px;
    height: 40px;
    color: var(--color-yellow);
}

.final-benefit-item span {
    font-weight: 600;
    color: var(--color-white);
}

.final-cta-button {
    margin: 3rem 0;
}

.btn-large {
    padding: 1.5rem 3rem;
    font-size: 1.2rem;
}

.final-cta-urgency {
    margin: 2.5rem 0;
    text-align: center;
}

.urgency-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 2rem;
    background: rgba(255, 68, 68, 0.1);
    border: 2px solid #ff4444;
    border-radius: 50px;
    margin-bottom: 1rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 68, 68, 0.4);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 0 20px 10px rgba(255, 68, 68, 0);
    }
}

.urgency-badge i {
    width: 24px;
    height: 24px;
    color: #ff4444;
}

.urgency-badge span {
    font-weight: 700;
    color: #ff4444;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.95rem;
}

.urgency-text {
    color: var(--color-light-gray);
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

.final-cta-trust {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin: 2.5rem 0;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 215, 0, 0.1);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--color-light-gray);
}

.trust-item i {
    width: 20px;
    height: 20px;
    color: var(--color-yellow);
}

.trust-item span {
    font-size: 0.95rem;
}

.final-message {
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 215, 0, 0.1);
}

.final-message p {
    font-size: 1.4rem;
    color: var(--color-white);
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .final-cta-trust {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .btn-large {
        padding: 1.25rem 2rem;
        font-size: 1.1rem;
    }
}

/* ============================================
   FOOTER
   ============================================ */
.main-footer {
    background: var(--color-dark);
    border-top: 1px solid rgba(255, 215, 0, 0.1);
    padding: 60px 0 30px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto 3rem;
}

.footer-brand {
    margin-bottom: 1.5rem;
}

.footer-logo {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-yellow);
    text-decoration: none;
    font-family: var(--font-heading);
}

.footer-description {
    color: var(--color-light-gray);
    margin-bottom: 2rem;
    max-width: 400px;
}

.footer-links h4 {
    color: var(--color-yellow);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--color-light-gray);
    text-decoration: none;
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--color-yellow);
    padding-left: 5px;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
}

.footer-copyright {
    color: var(--color-light-gray);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.footer-disclaimer {
    color: var(--color-light-gray);
    font-size: 0.85rem;
    font-style: italic;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.text-gold {
    color: var(--color-gold) !important;
}

.text-yellow {
    color: var(--color-yellow) !important;
}

.bg-dark {
    background-color: var(--color-dark) !important;
}

.bg-black {
    background-color: var(--color-black) !important;
}


    .testimonials-slider {
        /* a grid of 2 */
        width: 100%;
        display: flex;
        gap: 5px;
        margin: 0;
        margin-bottom: 5px;
        /* auto smooth scroll */
        /* overflow-x: auto; */
        animation: scroll 10s linear infinite;
    }

    .testimonials-slider:hover {
        animation-play-state: paused;
    }

    .testimonials-slider.paused {
        animation-play-state: paused;
    }

    .testimonials-slider.speed{
        animation-duration: 10s;
    }

    .slider-options {
        display: flex;
        align-items: center;
        justify-content: end;
        margin-bottom: 10px;
    }

    .slider-options button{
        background: transparent;
        border: 1px solid var(--color-yellow);
        color: var(--color-yellow);
        border-radius: 50px;
        cursor: pointer;
        margin: 0 5px;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .slider-options button svg {
        width: 20px;
        height: 20px;
    }


  

    .testimonial-card {
        min-width: 200px;
        width: 100%;
        padding: 10px;
        margin: 0;
    }

    .testimonial-avatar {
        width: 30px;
        height: 30px;
    }

    .testimonial-avatar svg {
        width: 16px;
        height: 16px;
    }

    .testimonial-info h4 {
        font-size: 14px;
        margin: 0;
    }

    .testimonial-role {
        font-size: 12px;
        margin: 0;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .testimonial-header {
        gap: 5px;
        margin-bottom: 2px;
    }

    .testimonial-stars {
        display: none;
    }

    .testimonial-content p {
        font-size: 13px;
        margin-bottom: 2px;
    }

    .testimonial-highlight {
        padding: 2px 5px;
        gap: 5px;
        width: 100%;
    }

    .testimonial-highlight svg {
        width: 12px;
        height: 12px;
    }

    .testimonial-highlight span {
        font-size: 12px;
        /* only one line */
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

/* ============================================
   RESPONSIVE UTILITIES
   ============================================ */
@media (max-width: 576px) {
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    h1 {
        font-size: 1.75rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    h3 {
        font-size: 1.15rem;
    }

    p {
        font-size: 1rem;
    }

    .btn-primary-gold {
        padding: 10px 22px;
        font-size: 16px;
        font-weight: 500;
    }

    .hero-section {
        padding-bottom: 0;
    }

    .problem-section {
        padding-top: 20px;
    }

    .pain-point-card {
        padding: 10px;
    }

    .pain-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 10px;
    }

    .problem-transition {
        margin-top: 2rem;
        padding: 10px;
    }

    .transition-text {
        font-size: 1.1rem;
        margin-bottom: 5px;
    }

    .transition-text-emphasis {
        font-size: 1.4rem;
        margin-bottom: 0px;
        line-height: 1.4;
    }

    .title-underline {
        margin: 1rem auto;
    }

    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .step-content {
        padding: 10px;
    }

    .step-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 10px;
    }

    .step-content h3 {
        font-size: 1.5rem;
        margin-bottom: 5px;
    }


    .faq-question{
        padding: 10px;
    }
    .faq-question h3 {
        font-size: 14px;
    }
    .faq-answer p {
        padding: 0 10px 10px 10px;
        font-size: 13px;
    }

}

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

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

/* ============================================
   PRINT STYLES
   ============================================ */
@media print {

    .main-nav,
    .nav-toggle,
    .btn-primary-gold,
    .btn-secondary-outline,
    .hero-decoration {
        display: none !important;
    }
}