:root {
    /* Dark Theme (Default) */
    --primary-bg: #0D0D0D;
    --text-primary: #FFFFFF;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --accent-color: #FFB800;
    --button-hover: #FFD700;
    --highlight-text: #FFB800;
    --gradient-overlay: linear-gradient(45deg, rgba(13, 13, 13, 0.85), rgba(13, 13, 13, 0.75));
    --section-spacing: 3rem;
    --section-spacing-mobile: 4rem;
    --section-spacing-small-mobile: 3rem;
    --container-width: 1200px;
    --section-padding: 0 5%;
    --transition-standard: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    --card-bg: rgba(255, 255, 255, 0.03);
    --card-border: rgba(255, 184, 0, 0.1);
    --shadow-color: rgba(0, 0, 0, 0.3);
    --input-bg: rgba(255, 255, 255, 0.05);
    --input-border: rgba(255, 255, 255, 0.1);
}

/* Light Theme */
:root.light-theme {
    --primary-bg: #F5F9FC;
    --text-primary: #1A1A1A;
    --text-secondary: rgba(26, 26, 26, 0.7);
    --accent-color: #E09800;
    --button-hover: #D08700;
    --highlight-text: #D08700;
    --gradient-overlay: linear-gradient(45deg, rgba(245, 249, 252, 0.85), rgba(245, 249, 252, 0.75));
    --card-bg: rgba(26, 26, 26, 0.03);
    --card-border: rgba(224, 152, 0, 0.1);
    --shadow-color: rgba(0, 0, 0, 0.1);
    --input-bg: rgba(26, 26, 26, 0.05);
    --input-border: rgba(26, 26, 26, 0.1);
}

/* Theme Transition */
body, header, section, div, p, h1, h2, h3, h4, h5, h6, span, a, button, input, textarea, blockquote, .hero::before, .navbar, .nav-links a, .cta-primary, .cta-secondary, .spotlight-container, .card-style, .transformation-story, .proof-item, .offer-box, .quick-form, .comparison-wrapper, .client-photo, .photo-placeholder {
    transition: background-color 0.5s ease, color 0.5s ease, border-color 0.5s ease, box-shadow 0.5s ease !important;
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--primary-bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden; /* Prevent horizontal scroll */
}

/* Improve focus styles for accessibility */
:focus {
    outline: 2px solid var(--accent-color);
    outline-offset: 2px;
}

/* Scrollbar styling for better user experience */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
}

::-webkit-scrollbar-thumb {
    background: rgba(255, 184, 0, 0.3);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 184, 0, 0.5);
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 5%;
}

/* Consistent section spacing */
section {
    padding: var(--section-spacing) 0;
    position: relative;
    content-visibility: auto;
    contain-intrinsic-size: 1px 1000px;
}

.hero {
    min-height: 100vh;
    padding: 2rem 5%;
    display: flex;
    flex-direction: column;
    position: relative;
    background: var(--gradient-overlay);
    /* Animated gradient background */
    background-size: 200% 200%;
    animation: gradientAnimation 15s ease infinite;
    overflow: hidden; /* Ensure no overflow */
}

@keyframes gradientAnimation {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
    opacity: 0.3;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    position: relative;
    z-index: 2;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(to right, var(--text-primary), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

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

.hero-content {
    margin-top: 8rem;
    max-width: 900px;
    position: relative;
    z-index: 1;
    margin-bottom: 12rem; /* Added extra bottom margin */
}

.headline {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.headline span {
    color: var(--highlight-text);
    position: relative;
    display: inline-block;
}

.headline span::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--accent-color);
    opacity: 0.3;
}

.subheadline {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    max-width: 800px;
    letter-spacing: -0.3px;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
}

.cta-primary, .cta-secondary {
    padding: 1.2rem 2.5rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275),
                background-color 0.3s ease,
                box-shadow 0.4s ease;
    position: relative;
    overflow: hidden;
}

.cta-primary {
    background-color: var(--accent-color);
    color: var(--primary-bg);
    font-weight: 700;
    box-shadow: 0 4px 20px rgba(255, 184, 0, 0.2);
}

.cta-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 30px rgba(255, 184, 0, 0.3);
    background-color: var(--button-hover);
}

.cta-secondary {
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
    background-color: transparent;
}

.cta-secondary:hover {
    transform: translateY(-3px) scale(1.02);
    background-color: var(--accent-color);
    color: var(--primary-bg);
}

.social-proof {
    margin-top: 4rem;
    position: relative;
}

.social-proof::before {
    content: '';
    position: absolute;
    top: -2rem;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
    opacity: 0.1;
}

.social-proof h3 {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    letter-spacing: -0.3px;
}

.proof-carousel {
    display: flex;
    gap: 2rem;
    padding: 1rem 0;
}

.proof-item {
    text-align: center;
    min-width: 180px;
    padding: 2rem;
    border: 1px solid rgba(255, 184, 0, 0.15);
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    background: linear-gradient(145deg, rgba(255, 184, 0, 0.03), transparent);
    backdrop-filter: blur(10px);
}

.proof-item:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 184, 0, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.stat {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    background: linear-gradient(to right, var(--accent-color), var(--button-hover));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    font-size: 0.95rem;
    color: var(--text-secondary);
    letter-spacing: -0.3px;
}

@media (max-width: 768px) {
    .hero-content {
        margin-top: 2rem;
        margin-bottom: 4rem; /* Further reduced extra space for mobile */
        padding: 0 1rem;
    }

    .headline {
        font-size: 2.5rem;
        line-height: 1.2;
    }

    .subheadline {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .cta-primary, .cta-secondary {
        width: 100%;
        padding: 1rem 1.5rem;
        text-align: center;
    }

    .nav-links {
        display: none;
    }

    .hero-image {
        width: 100%;
        opacity: 0.5; /* Increase visibility further on small screens */
    }

    .hero-image::after {
        background: linear-gradient(180deg, rgba(13, 13, 13, 0.6) 0%, rgba(13, 13, 13, 0.7) 100%);
    }

    .proof-carousel {
        overflow-x: auto;
        padding-bottom: 1rem;
        margin: 0 -5%;
        padding-left: 5%;
        padding-right: 5%;
        scroll-snap-type: x mandatory;
    }

    .proof-item {
        scroll-snap-align: start;
        min-width: 160px;
    }

    /* Improve container padding on mobile */
    .container {
        padding: 0 1.5rem;
    }

    /* Adjust section spacing */
    section {
        padding: var(--section-spacing-mobile) 0;
    }

    /* Standardize headings for mobile */
    h2 {
        font-size: 2.2rem !important;
    }

    h3 {
        font-size: 1.3rem !important; 
    }

    p {
        font-size: 1rem !important;
    }
}

/* Extra Small Mobile Devices */
@media (max-width: 480px) {
    :root {
        --section-spacing-mobile: var(--section-spacing-small-mobile);
    }
    
    .hero-content {
        margin-top: 1.5rem;
        margin-bottom: 3rem;
    }
    
    .headline {
        font-size: 2rem;
    }
    
    .subheadline {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .client-photo {
        margin-bottom: 2rem;
    }
    
    .photo-placeholder {
        width: 150px;
        height: 150px;
    }
    
    .client-stats {
        gap: 1rem;
    }
    
    .stat-value {
        font-size: 1.5rem;
    }
    
    .journey-stage h4 {
        font-size: 1.1rem;
    }
    
    .journey-stage p {
        font-size: 0.9rem;
        padding-left: 2rem;
    }
    
    .program-options {
        margin-bottom: 1.5rem;
    }
    
    .workout-tag {
        padding: 0.7rem 1rem;
    }
    
    .tag-icon {
        font-size: 1.3rem;
        height: 25px;
        width: 25px;
        margin-right: 0.6rem;
    }
    
    .tag-title {
        font-size: 0.9rem;
    }
    
    .tag-desc {
        font-size: 0.75rem;
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
        min-width: 40px;
    }
    
    .step-content h3 {
        font-size: 1.1rem;
    }
    
    .step-content p {
        font-size: 0.9rem;
    }
    
    .floating-cta {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }
    
    .floating-cta span {
        max-width: 80px;
    }
    
    .instagram-icon {
        width: 14px;
        height: 14px;
    }
    
    .theme-toggle {
        top: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
    }
    
    .theme-icon {
        width: 18px;
        height: 18px;
    }
}

/* Target Audience Section */
.target-audience {
    padding: var(--section-spacing) 0;
    background: linear-gradient(180deg, var(--primary-bg), rgba(13, 13, 13, 0.95));
}

.target-audience h2 {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 4rem;
    letter-spacing: -0.5px;
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
    perspective: 1000px;
}

.audience-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: var(--transition-standard);
    position: relative;
    z-index: 1;
    overflow: hidden;
    transform-style: preserve-3d;
    transform: translateZ(0);
}

.audience-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 184, 0, 0.1), transparent);
    opacity: 0;
    z-index: -1;
    transition: var(--transition-standard);
}

.audience-card:hover::before {
    opacity: 1;
}

.audience-card:hover {
    transform: translateY(-8px) translateZ(10px);
    border-color: rgba(255, 184, 0, 0.3);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.audience-card .icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 1.5rem;
    color: var(--accent-color);
    padding: 1.25rem;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(255, 184, 0, 0.15), rgba(255, 184, 0, 0.05));
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
}

.audience-card .icon::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(255, 184, 0, 0.5), transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

.audience-card:hover .icon {
    background: linear-gradient(135deg, rgba(255, 184, 0, 0.2), rgba(255, 184, 0, 0.1));
    transform: scale(1.1) rotate(5deg);
}

.audience-card svg {
    width: 100%;
    height: 100%;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: all 0.3s ease;
}

.audience-card:hover svg {
    transform: scale(1.1);
}

.audience-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.audience-card p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.cta-container {
    text-align: center;
    margin-top: 4rem;
}

@media (max-width: 768px) {
    .target-audience {
        padding: 3rem 4%;
    }

    .target-audience h2 {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }

    .audience-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
        margin-bottom: 2rem;
    }
    
    .audience-card {
        padding: 1.2rem 0.8rem;
        border-radius: 10px;
    }
    
    .audience-card .icon {
        width: 42px;
        height: 42px;
        padding: 0.6rem;
        margin-bottom: 0.9rem;
        border-radius: 10px;
    }
    
    .audience-card h3 {
        font-size: 0.95rem;
        margin-bottom: 0.4rem;
        line-height: 1.2;
    }
}

@media (max-width: 480px) {
    .target-audience {
        padding: 2.5rem 3%;
    }
    
    .target-audience h2 {
        font-size: 1.6rem;
        margin-bottom: 1.5rem;
    }
    
    .audience-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.6rem;
        margin-bottom: 2rem;
    }
    
    .audience-card {
        padding: 0.8rem 0.5rem;
        border-radius: 8px;
    }
    
    .audience-card .icon {
        width: 32px;
        height: 32px;
        padding: 0.5rem;
        margin-bottom: 0.6rem;
        border-radius: 8px;
    }
    
    .audience-card h3 {
        font-size: 0.8rem;
        line-height: 1.2;
        margin-bottom: 0;
        font-weight: 500;
    }
    
    /* Hide paragraph text on mobile */
    .audience-card p {
        display: none;
    }
}

@media (max-width: 360px) {
    .audience-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }
    
    .audience-card {
        padding: 0.7rem 0.4rem;
    }
    
    .audience-card .icon {
        width: 28px;
        height: 28px;
        padding: 0.4rem;
        margin-bottom: 0.5rem;
    }
    
    .audience-card h3 {
        font-size: 0.75rem;
    }
}

/* Optimize tooltip for smaller screens */
@media (max-width: 480px) {
    .mobile-tooltip {
        font-size: 0.75rem;
        padding: 8px 12px;
        max-width: 85vw !important;
    }
}

/* Program Features Section */
.program-features {
    padding: var(--section-spacing) 0;
    background: linear-gradient(0deg, var(--primary-bg), rgba(13, 13, 13, 0.95));
    position: relative;
}

.features-header {
    max-width: 1200px;
    margin: 0 auto;
}

.program-features h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 4rem;
    letter-spacing: -1px;
    background: linear-gradient(to right, var(--text-primary), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.features-timeline {
    position: relative;
    padding-left: 2rem;
}

.timeline-track {
    position: absolute;
    left: 0;
    top: 2rem;
    bottom: 2rem;
    width: 2px;
    background: linear-gradient(to bottom, var(--accent-color), transparent);
}

.feature-block {
    display: flex;
    gap: 2rem;
    margin-bottom: 4rem;
    opacity: 0.8;
    transform: translateX(-20px);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.feature-block:hover {
    opacity: 1;
    transform: translateX(0);
}

.feature-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-color);
    min-width: 60px;
    height: 60px;
    border: 2px solid rgba(255, 184, 0, 0.2);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 184, 0, 0.05);
    transition: all 0.3s ease;
}

.feature-block:hover .feature-number {
    border-color: var(--accent-color);
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(255, 184, 0, 0.2);
}

.feature-details {
    flex: 1;
    padding-top: 0.5rem;
}

.feature-details h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.feature-details p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1rem;
    max-width: 600px;
}

.feature-badges {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.feature-badges span {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    background: rgba(255, 184, 0, 0.1);
    border: 1px solid rgba(255, 184, 0, 0.2);
    border-radius: 20px;
    font-size: 0.875rem;
    color: var(--accent-color);
    font-weight: 500;
    transition: all 0.3s ease;
}

.feature-badges span:hover {
    background: rgba(255, 184, 0, 0.15);
    transform: translateY(-2px);
}

.features-cta {
    text-align: center;
    margin-top: 6rem;
    position: relative;
}

.features-guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
    color: var(--text-secondary);
}

.guarantee-badge {
    width: 24px;
    height: 24px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-bg);
    font-weight: 700;
    font-size: 0.875rem;
}

@media (max-width: 768px) {
    .program-features {
        padding: 4rem 5%;
    }

    .program-features h2 {
        font-size: 2.5rem;
        margin-bottom: 3rem;
    }

    .features-timeline {
        padding-left: 1rem;
    }

    .feature-block {
        flex-direction: column;
        gap: 1rem;
        margin-bottom: 3rem;
        opacity: 0.9;
        transform: translateX(0);
    }
    
    .feature-block:hover {
        opacity: 1;
        transform: translateX(0);
    }

    .feature-number {
        min-width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
    
    .feature-block:hover .feature-number {
        transform: scale(1.05);
        box-shadow: 0 0 15px rgba(255, 184, 0, 0.15);
    }

    .feature-details h3 {
        font-size: 1.25rem;
    }

    .feature-badges {
        gap: 0.5rem;
    }

    .feature-badges span {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }
    
    .feature-badges span:hover {
        transform: translateY(-1px);
    }
}

/* Transformations Section */
.transformations {
    padding: var(--section-spacing) 0;
    background: linear-gradient(180deg, var(--primary-bg), rgba(13, 13, 13, 0.98));
    position: relative;
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
}

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

.section-header h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(to right, var(--text-primary), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -1px;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
}

.transformation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
    perspective: 1000px;
}

.transformation-story {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition-standard);
    position: relative;
    transform-style: preserve-3d;
    backface-visibility: hidden;
}

.transformation-story.featured {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, rgba(255, 184, 0, 0.05), rgba(255, 184, 0, 0.02));
}

.transformation-story:hover {
    transform: translateY(-5px) translateZ(10px);
    border-color: rgba(255, 184, 0, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.story-content {
    padding: 2.5rem;
}

.story-category {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(255, 184, 0, 0.1);
    border-radius: 20px;
    color: var(--accent-color);
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

blockquote {
    font-size: 1.25rem;
    line-height: 1.6;
    color: var(--text-primary);
    margin-bottom: 2rem;
    font-weight: 500;
    position: relative;
    padding-left: 1.5rem;
    border-left: 2px solid var(--accent-color);
}

.story-results {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
}

.result-item {
    text-align: center;
}

.result-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.result-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.client-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 184, 0, 0.1);
}

.client-name {
    font-weight: 600;
    color: var(--text-primary);
}

.program-duration {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.results-summary {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 4rem 0;
    text-align: center;
}

.results-stat {
    padding: 2rem;
    background: rgba(255, 184, 0, 0.03);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.results-stat:hover {
    background: rgba(255, 184, 0, 0.05);
    transform: translateY(-3px);
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-secondary);
}

.transformation-note {
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.875rem;
    opacity: 0.7;
}

@media (max-width: 768px) {
    .transformations {
        padding: 4rem 5%;
    }

    .section-header h2 {
        font-size: 2.5rem;
    }

    .transformation-grid {
        grid-template-columns: 1fr;
    }

    .story-results {
        grid-template-columns: 1fr 1fr;
        padding: 1rem;
    }

    .results-summary {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .results-stat {
        padding: 1.5rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }
}

/* Philosophy Section */
.philosophy {
    padding: var(--section-spacing) 0;
    background-color: var(--primary-bg);
    position: relative;
    overflow: hidden;
}

.philosophy::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 184, 0, 0.03) 0%, rgba(255, 184, 0, 0) 70%);
    top: -250px;
    right: -250px;
    border-radius: 50%;
}

.philosophy::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 184, 0, 0.02) 0%, rgba(255, 184, 0, 0) 70%);
    bottom: -200px;
    left: -200px;
    border-radius: 50%;
}

.philosophy-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 6rem;
}

.philosophy-intro {
    text-align: left;
}

.philosophy-intro h2 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: -1px;
    position: relative;
    display: inline-block;
}

.philosophy-intro h2::after {
    content: '';
    position: absolute;
    height: 4px;
    width: 60px;
    background: var(--accent-color);
    bottom: -10px;
    left: 0;
}

.philosophy-intro p {
    font-size: 1.5rem;
    color: var(--text-secondary);
    max-width: 600px;
}

.philosophy-principles {
    display: flex;
    flex-direction: column;
    gap: 3.5rem;
}

.principle {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    position: relative;
    padding-left: 2rem;
    transition: all 0.3s ease;
}

.principle:hover {
    transform: translateX(10px);
}

.principle-marker {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--accent-color);
    opacity: 0.8;
    min-width: 40px;
}

.principle-content {
    flex: 1;
    position: relative;
}

.principle-content h3 {
    font-size: 1.75rem;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.principle-line {
    height: 1px;
    width: 100%;
    background: linear-gradient(to right, var(--accent-color) 0%, rgba(255, 184, 0, 0.1) 100%);
    opacity: 0.3;
    position: relative;
}

.principle-line::after {
    content: '';
    position: absolute;
    height: 6px;
    width: 6px;
    border-radius: 50%;
    background: var(--accent-color);
    left: 0;
    top: -3px;
}

@media (max-width: 768px) {
    .philosophy {
        padding: 4rem 5%;
    }

    .philosophy-wrapper {
        gap: 3rem;
    }

    .philosophy-intro h2 {
        font-size: 2.5rem;
    }

    .philosophy-intro p {
        font-size: 1.25rem;
    }

    .principle {
        padding-left: 0;
        gap: 1rem;
    }

    .principle-content h3 {
        font-size: 1.25rem;
    }
}

/* Process Section */
.process {
    padding: var(--section-spacing) 0;
    background: var(--primary-bg);
    position: relative;
}

.process-header {
    text-align: center;
    margin-bottom: 5rem;
}

.process-header h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.process-header p {
    font-size: 1.25rem;
    color: var(--accent-color);
}

.steps-container {
    max-width: 900px;
    margin: 0 auto 5rem;
    position: relative;
    padding: 3rem 0;
}

.connector-line {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background: linear-gradient(to bottom, 
        rgba(255, 184, 0, 0.05), 
        rgba(255, 184, 0, 0.2) 30%, 
        rgba(255, 184, 0, 0.2) 70%, 
        rgba(255, 184, 0, 0.05));
    transform: translateX(-50%);
}

.step {
    display: flex;
    align-items: center;
    gap: 3rem;
    position: relative;
    margin-bottom: 4rem;
}

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

.step:nth-child(odd) {
    flex-direction: row-reverse;
    text-align: right;
}

.step-number {
    width: 60px;
    height: 60px;
    background: rgba(255, 184, 0, 0.1);
    border: 2px solid var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--accent-color);
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.step:hover .step-number {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(255, 184, 0, 0.2);
    background: rgba(255, 184, 0, 0.15);
}

.step-content {
    flex: 1;
    max-width: 400px;
}

.step-content h3 {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.step-content p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.process-cta {
    text-align: center;
}

@media (max-width: 768px) {
    .process {
        padding: 4rem 5%;
    }

    .process-header {
        margin-bottom: 3rem;
    }

    .process-header h2 {
        font-size: 2.5rem;
    }

    .connector-line {
        left: 30px;
    }

    .step, .step:nth-child(odd) {
        flex-direction: row;
        text-align: left;
        gap: 2rem;
    }

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

    .step-content h3 {
        font-size: 1.5rem;
    }

    .step-content p {
        font-size: 1rem;
    }
}

/* Daily Support Section */
.daily-support {
    padding: var(--section-spacing) 0;
    background: linear-gradient(180deg, var(--primary-bg), rgba(13, 13, 13, 0.98));
    position: relative;
}

.support-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.support-info h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    line-height: 1.2;
    color: var(--text-primary);
}

.support-quote {
    font-size: 1.25rem;
    line-height: 1.6;
    color: var(--text-primary);
    margin-bottom: 2rem;
    position: relative;
    padding-left: 1.5rem;
    border-left: 2px solid var(--accent-color);
}

.support-quote cite {
    display: block;
    margin-top: 1rem;
    font-size: 1rem;
    color: var(--accent-color);
    font-style: normal;
}

.support-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.support-banner {
    background: rgba(10, 10, 10, 0.8);
    border-radius: 12px;
    padding: 1.25rem 2rem;
    margin-top: 2rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 184, 0, 0.2);
}

.support-banner .banner-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.support-banner p {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-primary);
}

.support-banner .banner-cta {
    padding: 0.6rem 1.5rem;
    background-color: var(--accent-color);
    color: var(--primary-bg);
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.support-banner .banner-cta:hover {
    background-color: var(--button-hover);
    transform: translateY(-2px);
}

.support-mockup {
    position: relative;
}

.phone-frame {
    position: relative;
    width: 300px;
    height: 600px;
    background: #111;
    border-radius: 30px;
    margin: 0 auto;
    padding: 10px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
    transition: var(--transition-standard);
}

.phone-frame:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: #0a0a0a;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
}

.chat-header {
    background: rgba(255, 184, 0, 0.1);
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.chat-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--accent-color);
}

.chat-name {
    font-weight: 600;
    color: var(--text-primary);
}

.chat-messages {
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    height: calc(100% - 71px);
    overflow-y: auto;
}

.message {
    max-width: 80%;
    padding: 12px 15px;
    border-radius: 18px;
    position: relative;
}

.message p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.4;
}

.message.coach {
    background: rgba(255, 184, 0, 0.15);
    align-self: flex-start;
    border-bottom-left-radius: 5px;
}

.message.coach p {
    color: var(--text-primary);
}

.message.client {
    background: rgba(255, 255, 255, 0.07);
    align-self: flex-end;
    border-bottom-right-radius: 5px;
}

.message.client p {
    color: var(--text-primary);
}

@media (max-width: 992px) {
    .support-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .support-mockup {
        order: -1;
    }
}

@media (max-width: 768px) {
    .daily-support {
        padding: 4rem 5%;
    }

    .support-info h2 {
        font-size: 2rem;
    }

    .phone-frame {
        width: 280px;
        height: 550px;
    }

    .support-banner .banner-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .support-banner p {
        font-size: 1rem;
    }
}

/* Pricing Section */
.pricing {
    padding: var(--section-spacing) 0;
    background: linear-gradient(0deg, rgba(13, 13, 13, 0.98), var(--primary-bg));
    position: relative;
}

.pricing-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.program-name {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(255, 184, 0, 0.1);
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
    border: 1px solid rgba(255, 184, 0, 0.2);
}

.pricing-header h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
    line-height: 1.2;
}

.pricing-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
}

.offer-container {
    max-width: 900px;
    margin: 0 auto;
}

.offer-box {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.offer-content {
    padding: 3rem;
}

.offer-details {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
    text-align: center;
}

.value-label, .actual-label {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.value-price {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-decoration: line-through;
    opacity: 0.7;
}

.actual-price {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--accent-color);
}

.offer-separator {
    width: 2px;
    height: 60px;
    background: rgba(255, 184, 0, 0.2);
}

.offer-includes {
    margin-bottom: 3rem;
}

.offer-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.offer-features {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
}

.offer-features li {
    position: relative;
    padding-left: 2rem;
    font-size: 1.1rem;
    color: var(--text-primary);
    line-height: 1.6;
}

.offer-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--accent-color);
    font-weight: 700;
}

.offer-bonuses {
    background: rgba(255, 184, 0, 0.05);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 3rem;
    border: 1px solid rgba(255, 184, 0, 0.1);
}

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

.bonus-badge {
    padding: 0.35rem 1rem;
    background: var(--accent-color);
    color: var(--primary-bg);
    font-weight: 700;
    font-size: 0.875rem;
    border-radius: 50px;
    letter-spacing: 0.5px;
}

.bonus-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
}

.bonus-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.bonus-list li {
    display: flex;
    gap: 1.5rem;
}

.bonus-icon {
    font-size: 2rem;
    line-height: 1;
}

.bonus-info h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.bonus-info p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.offer-availability {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.availability-badge {
    padding: 0.35rem 1rem;
    background: rgba(255, 0, 0, 0.1);
    color: rgb(255, 80, 80);
    font-weight: 600;
    font-size: 0.875rem;
    border-radius: 50px;
    border: 1px solid rgba(255, 80, 80, 0.2);
}

.offer-availability p {
    font-size: 1rem;
    color: var(--text-secondary);
}

.offer-cta {
    text-align: center;
}

.offer-cta .cta-primary {
    padding: 1.25rem 3rem;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.satisfaction {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

@media (max-width: 768px) {
    .pricing {
        padding: 4rem 5%;
    }

    .pricing-header h2 {
        font-size: 2.25rem;
    }

    .offer-content {
        padding: 2rem;
    }

    .offer-details {
        flex-direction: column;
        gap: 1.5rem;
    }

    .offer-separator {
        width: 80%;
        height: 1px;
    }

    .offer-features {
        grid-template-columns: 1fr;
    }

    .bonus-list li {
        flex-direction: column;
        gap: 0.75rem;
    }

    .bonus-icon {
        font-size: 1.5rem;
    }

    .offer-availability {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }
}

/* Final CTA Section */
.final-cta {
    padding: var(--section-spacing) 0;
    background: linear-gradient(to right, rgba(13, 13, 13, 0.99), rgba(13, 13, 13, 0.95)), url('https://images.unsplash.com/photo-1581009146145-b5ef050c2e1e?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=1950&q=80') no-repeat center center/cover;
    position: relative;
    display: flex;
    align-items: center;
    min-height: 400px;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
    opacity: 0.3;
}

.cta-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.cta-content {
    max-width: 900px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: var(--text-primary);
    text-align: center;
}

.cta-content h2 span {
    color: var(--accent-color);
    display: inline;
}

.cta-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin: 0 auto;
    max-width: 600px;
    text-align: center;
}

.cta-benefits {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.benefit {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.benefit-icon {
    font-size: 1.5rem;
    min-width: 40px;
}

.benefit p {
    font-size: 1.1rem;
    color: var(--text-primary);
    line-height: 1.4;
}

.final-buttons {
    margin-top: 2rem;
}

.final-buttons .cta-primary {
    padding: 1.25rem 2.5rem;
    font-size: 1.25rem;
    display: inline-block;
    margin-bottom: 1rem;
}

.no-obligation {
    font-size: 0.9rem;
    color: var(--text-secondary);
    opacity: 0.8;
}

.quick-form {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    padding: 3rem;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.form-header {
    text-align: center;
    margin-bottom: 2rem;
}

.form-header h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.form-header p {
    font-size: 1rem;
    color: var(--text-secondary);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input {
    width: 100%;
    padding: 1rem 1.25rem;
    background: var(--input-bg);
    border: 1px solid var(--input-border);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: var(--accent-color);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(255, 184, 0, 0.1);
}

.form-group input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-submit {
    width: 100%;
    padding: 1.25rem;
    background: var(--accent-color);
    color: var(--primary-bg);
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-standard);
    position: relative;
    overflow: hidden;
}

.form-submit:hover {
    background: var(--button-hover);
    transform: translateY(-2px);
}

.form-submit::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 5px;
    height: 5px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 0;
    border-radius: 100%;
    transform: scale(1, 1) translate(-50%);
    transform-origin: 50% 50%;
}

.form-submit:active::after {
    opacity: 0.3;
    transform: scale(50, 50) translate(-50%);
    transition: transform 0.5s, opacity 1s;
}

@media (max-width: 992px) {
    .cta-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .final-cta {
        padding: 5rem 5%;
        min-height: 300px;
    }

    .cta-content h2 {
        font-size: 2.5rem;
    }

    .cta-subtitle {
        font-size: 1.1rem;
    }

    .cta-benefits {
        gap: 1rem;
    }

    .benefit-icon {
        font-size: 1.25rem;
    }

    .benefit p {
        font-size: 1rem;
    }

    .quick-form {
        padding: 2rem;
    }

    .form-header h3 {
        font-size: 1.5rem;
    }
}

/* Add more consistent spacing to mobile views */
@media (max-width: 768px) {
    :root {
        --section-spacing: var(--section-spacing-mobile);
    }

    section {
        padding: var(--section-spacing-mobile) 0;
    }

    h2 {
        font-size: 2.5rem !important;
    }

    h3 {
        font-size: 1.5rem !important; 
    }

    p {
        font-size: 1rem !important;
    }
    
    /* Existing responsive code... */
}

/* Section Title Standardization */
.section-title, 
.pricing-header h2,
.philosophy-intro h2,
.process-header h2,
.support-info h2,
.cta-content h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

/* Section Subtitle Standardization */
.section-subtitle,
.pricing-subtitle,
.cta-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
}

/* Consistent Card Styling */
.card-style, 
.audience-card, 
.transformation-story, 
.proof-item, 
.offer-box, 
.quick-form {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition-standard);
}

.card-style:hover,
.audience-card:hover,
.transformation-story:hover,
.proof-item:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 184, 0, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Fix target-audience section padding */
.target-audience {
    padding: 2rem 0 var(--section-spacing) 0;
}

/* Fix program-features section padding */
.program-features {
    padding: var(--section-spacing) 0;
}

/* Fix transformations section padding */
.transformations {
    padding: var(--section-spacing) 0;
}

/* Fix philosophy section padding */
.philosophy {
    padding: var(--section-spacing) 0;
}

/* Fix process section padding */
.process {
    padding: var(--section-spacing) 0;
}

/* Fix daily-support section padding */
.daily-support {
    padding: var(--section-spacing) 0;
}

/* Fix pricing section padding */
.pricing {
    padding: var(--section-spacing) 0;
}

/* Fix final-cta section padding */
.final-cta {
    padding: var(--section-spacing) 0;
}

/* Additional Mobile Adjustments */
@media (max-width: 768px) {
    .hero-content {
        margin-top: 2rem;
    }

    .target-audience,
    .program-features,
    .transformations,
    .philosophy,
    .process,
    .daily-support,
    .pricing,
    .final-cta {
        padding: var(--section-spacing-mobile) 0;
    }
    
    .section-title, 
    .pricing-header h2,
    .philosophy-intro h2,
    .process-header h2,
    .support-info h2,
    .cta-content h2 {
        margin-bottom: 1rem;
    }
    
    .section-subtitle,
    .pricing-subtitle,
    .cta-subtitle {
        margin-bottom: 2rem;
    }
}

/* Improve mobile navigation */
@media (max-width: 768px) {
    .navbar {
        position: relative;
    }
    
    .nav-links {
        position: absolute;
        top: 100%;
        right: 0;
        background: rgba(13, 13, 13, 0.95);
        border: 1px solid rgba(255, 184, 0, 0.1);
        border-radius: 8px;
        padding: 1rem;
        flex-direction: column;
        gap: 1rem;
        z-index: 100;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        transform: translateY(-20px);
        opacity: 0;
        pointer-events: none;
        transition: var(--transition-standard);
    }
    
    .nav-links.active {
        display: flex;
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }
    
    .mobile-menu-toggle {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 20px;
        cursor: pointer;
        z-index: 2000; /* Higher than menu to always be clickable */
        position: relative;
    }
    
    .mobile-menu-toggle span {
        display: block;
        width: 100%;
        height: 2px;
        background-color: var(--accent-color);
        transition: transform 0.3s ease, opacity 0.3s ease, background-color 0.3s ease;
    }
    
    /* Transform the menu toggle to an X when active */
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
        background-color: white;
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
        background-color: white;
    }
}

/* Improve form inputs */
.form-group input {
    width: 100%;
    padding: 1rem 1.25rem;
    background: var(--input-bg);
    border: 1px solid var(--input-border);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: var(--accent-color);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(255, 184, 0, 0.1);
}

/* Improve button interactions */
.cta-primary, .cta-secondary, .form-submit {
    transition: var(--transition-standard);
    position: relative;
    overflow: hidden;
}

.cta-primary::after, .cta-secondary::after, .form-submit::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 5px;
    height: 5px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 0;
    border-radius: 100%;
    transform: scale(1, 1) translate(-50%);
    transform-origin: 50% 50%;
}

.cta-primary:active::after, .cta-secondary:active::after, .form-submit:active::after {
    opacity: 0.3;
    transform: scale(50, 50) translate(-50%);
    transition: transform 0.5s, opacity 1s;
}

/* Improve image loading */
.phone-frame {
    position: relative;
    width: 300px;
    height: 600px;
    background: #111;
    border-radius: 30px;
    margin: 0 auto;
    padding: 10px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
    transition: var(--transition-standard);
}

.phone-frame:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

/* Add smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Add scroll to top button */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--accent-color);
    color: var(--primary-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition-standard);
    z-index: 100;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.scroll-top.visible {
    opacity: 0.8;
    transform: translateY(0);
}

.scroll-top:hover {
    opacity: 1;
    transform: translateY(-5px);
}

/* Add light pulsing effect to CTA buttons */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 184, 0, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(255, 184, 0, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 184, 0, 0);
    }
}

.process-cta .cta-primary,
.final-buttons .cta-primary,
.offer-cta .cta-primary {
    animation: pulse 2s infinite;
}

/* Add subtle hover effect to testimonial cards */
.transformation-story {
    transition: var(--transition-standard);
    position: relative;
}

.transformation-story::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 184, 0, 0.1), transparent 70%);
    opacity: 0;
    transition: var(--transition-standard);
    border-radius: 20px;
    pointer-events: none;
}

.transformation-story:hover::after {
    opacity: 1;
}

/* Improve print styles for better accessibility */
@media print {
    body {
        background: white;
        color: black;
    }
    
    .hero, section {
        padding: 1rem 0;
        page-break-inside: avoid;
    }
    
    .nav-links, .cta-buttons, .cta-container, .features-cta, .process-cta, .support-banner, .offer-cta, .quick-form {
        display: none;
    }
    
    .container {
        max-width: 100%;
    }
    
    a {
        color: #000;
        text-decoration: underline;
    }
    
    footer {
        display: none;
    }
}

/* Footer Styles */
footer {
    padding: 3rem 0;
    background: linear-gradient(0deg, rgba(10, 10, 10, 1), rgba(13, 13, 13, 0.95));
    border-top: 1px solid rgba(255, 184, 0, 0.1);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(to right, var(--text-primary), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.5px;
}

.footer-links {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition-standard);
    position: relative;
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-color);
}

.footer-links a:hover::after {
    width: 100%;
}

.footer-copyright {
    font-size: 0.9rem;
    color: var(--text-secondary);
    opacity: 0.7;
    text-align: center;
}

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

/* Client Spotlight Section */
.client-spotlight {
    padding: 5rem 0;
    background: var(--surface-color);
}

.client-spotlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(255, 184, 0, 0.3), transparent);
}

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

.spotlight-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(255, 184, 0, 0.1);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
    border: 1px solid rgba(255, 184, 0, 0.2);
    text-transform: uppercase;
}

.client-spotlight h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--text-primary);
    line-height: 1.3;
    max-width: 800px;
    margin: 0 auto;
}

.spotlight-container {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 24px;
    padding: 4rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.spotlight-container::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 184, 0, 0.05) 0%, rgba(255, 184, 0, 0) 70%);
    top: -150px;
    right: -150px;
    border-radius: 50%;
    z-index: 0;
}

.spotlight-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.client-photo {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.photo-wrapper {
    position: relative;
    margin-bottom: 1.5rem;
}

.photo-wrapper::before {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 184, 0, 0.1) 0%, rgba(255, 184, 0, 0) 70%);
    top: -10px;
    left: -10px;
    border-radius: 50%;
    z-index: -1;
}

.photo-placeholder {
    width: 180px;
    height: 180px;
    background: linear-gradient(145deg, rgba(255, 184, 0, 0.15), rgba(255, 184, 0, 0.05));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--accent-color);
    position: relative;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.photo-placeholder:hover {
    transform: scale(1.05);
}

.photo-placeholder svg {
    width: 80px;
    height: 80px;
    stroke: var(--accent-color);
}

.client-identity {
    margin-top: 0;
    padding-top: 1rem;
}

.client-identity h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
    color: var(--text-primary);
    background: linear-gradient(to right, var(--text-primary), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.client-role {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.client-stats {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 1.5rem;
}

.client-stat {
    text-align: center;
    min-width: 80px;
}

.stat-value {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.client-journey {
    display: flex;
    flex-direction: column;
    position: relative;
}

.journey-stage {
    position: relative;
    padding: 1.5rem 0;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.journey-stage:hover {
    transform: translateX(10px);
}

.journey-stage h4 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    margin-left: 3.5rem;
    color: var(--highlight-text);
    display: flex;
    align-items: center;
}

.journey-stage p {
    color: var(--text-primary);
    font-size: 1.15rem;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 1rem;
    padding-left: 2.5rem;
    position: relative;
    z-index: 1;
}

.journey-icon {
    position: absolute;
    left: 0;
    top: 1.5rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    z-index: 2;
}

.journey-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--accent-color);
}

.before-icon {
    background: rgba(255, 184, 0, 0.1);
}

.change-icon {
    background: rgba(255, 184, 0, 0.15);
}

.next-icon {
    background: rgba(255, 184, 0, 0.2);
}

.spotlight-quote {
    position: relative;
    padding: 2rem;
    background: var(--card-bg);
    border-radius: 16px;
    margin-bottom: 3rem;
    border-left: 3px solid var(--accent-color);
}

.quote-icon {
    position: absolute;
    width: 40px;
    height: 40px;
    stroke: var(--accent-color);
    opacity: 0.5;
    top: 1rem;
    left: 1.5rem;
}

.spotlight-quote p {
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 1.6;
    color: var(--text-primary);
    padding-left: 3rem;
}

.spotlight-cta {
    text-align: center;
}

.cta-note {
    margin-top: 1rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
    font-style: italic;
}

@media (max-width: 992px) {
    .spotlight-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .client-photo {
        margin-bottom: 1rem;
    }
    
    .journey-stage p {
        font-size: 1.1rem;
    }
    
    .spotlight-quote p {
        font-size: 1.25rem;
    }
}

@media (max-width: 768px) {
    .spotlight-container {
        padding: 2rem;
    }
    
    .client-spotlight h2 {
        font-size: 1.8rem;
    }
    
    .journey-stage {
        padding: 1rem 0;
    }
    
    .journey-stage h4 {
        font-size: 1.2rem;
    }
    
    .journey-stage p {
        font-size: 1rem;
    }
    
    .spotlight-quote p {
        font-size: 1.1rem;
        padding-left: 0;
    }
    
    .quote-icon {
        position: static;
        display: block;
        margin-bottom: 1rem;
    }
}

/* Before and After Section */
.before-after {
    padding: var(--section-spacing) 0;
    background: linear-gradient(180deg, var(--primary-bg), rgba(13, 13, 13, 0.98));
    position: relative;
    overflow: hidden;
}

.before-after::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(255, 184, 0, 0.3), transparent);
}

.before-after .section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.before-after-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(255, 184, 0, 0.1);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
    border: 1px solid rgba(255, 184, 0, 0.2);
    text-transform: uppercase;
}

.before-after h2 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
    letter-spacing: -1px;
}

.transformations-slider {
    max-width: 1000px;
    margin: 0 auto 4rem;
}

.transformation-case {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.comparison-wrapper {
    position: relative;
    width: 100%;
    height: 600px;
    border: 1px solid var(--card-border);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px var(--shadow-color);
}

.before-image,
.after-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.before-image {
    z-index: 1;
    width: 50%;
}

.before-image img,
.after-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.before-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 200%;
    max-width: none;
}

.image-tag {
    position: absolute;
    top: 20px;
    padding: 0.5rem 1.5rem;
    background: var(--accent-color);
    color: var(--primary-bg);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1px;
    border-radius: 4px;
    z-index: 3;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.before-image .image-tag {
    left: 20px;
}

.after-image .image-tag {
    right: 20px;
}

.slider-handle {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 4px;
    background: var(--accent-color);
    transform: translateX(-50%);
    z-index: 2;
    cursor: ew-resize;
}

.handle-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40px;
    height: 40px;
    background: var(--accent-color);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.handle-circle svg {
    width: 24px;
    height: 24px;
    stroke: var(--primary-bg);
}

.transformation-details {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.transformation-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
}

.stat-box {
    text-align: center;
    min-width: 100px;
    padding: 1.5rem 2rem;
    background: rgba(255, 184, 0, 0.05);
    border: 1px solid rgba(255, 184, 0, 0.1);
    border-radius: 16px;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.stat-box:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 184, 0, 0.3);
}

.stat-box .stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-box .stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.testimonial-quote {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    padding: 2rem;
}

.testimonial-quote::before {
    content: "\201C";
    position: absolute;
    top: -20px;
    left: 0;
    font-size: 6rem;
    color: var(--accent-color);
    opacity: 0.2;
    line-height: 1;
}

.testimonial-quote p {
    font-size: 1.5rem;
    color: var(--text-primary);
    line-height: 1.6;
    font-weight: 500;
    margin-bottom: 1rem;
}

.quote-author {
    font-size: 1.1rem;
    color: var(--accent-color);
}

.transformation-disclaimer {
    text-align: center;
    margin-bottom: 2rem;
    opacity: 0.7;
}

.transformation-disclaimer p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.before-after .cta-container {
    text-align: center;
}

/* Add interactive slider functionality */
.comparison-wrapper:hover .handle-circle {
    transform: translate(-50%, -50%) scale(1.1);
}

@media (max-width: 992px) {
    .comparison-wrapper {
        height: 500px;
    }
    
    .transformation-stats {
        gap: 1.5rem;
    }
    
    .stat-box {
        padding: 1.25rem 1.5rem;
    }
    
    .stat-box .stat-number {
        font-size: 2rem;
    }
    
    .testimonial-quote p {
        font-size: 1.25rem;
    }
}

@media (max-width: 768px) {
    .before-after h2 {
        font-size: 2.5rem;
    }
    
    .comparison-wrapper {
        height: 400px;
    }
    
    .transformation-stats {
        flex-direction: column;
        gap: 1rem;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .testimonial-quote p {
        font-size: 1.1rem;
    }
    
    .image-tag {
        padding: 0.3rem 1rem;
        font-size: 0.8rem;
    }
} 

/* Light Theme Specific Adjustments */
.light-theme .hero,
.light-theme .before-after,
.light-theme .transformations,
.light-theme .philosophy,
.light-theme .pricing,
.light-theme .daily-support,
.light-theme .final-cta,
.light-theme .target-audience,
.light-theme .program-features,
.light-theme .transformation-showcase {
    background: var(--primary-bg);
}

/* Fix gradient backgrounds for specific sections in light theme */
.light-theme .target-audience {
    background: var(--primary-bg);
    background: linear-gradient(180deg, var(--primary-bg), var(--primary-bg));
}

.light-theme .program-features {
    background: var(--primary-bg);
    background: linear-gradient(0deg, var(--primary-bg), var(--primary-bg));
}

.light-theme .daily-support {
    background: var(--primary-bg);
    background: linear-gradient(180deg, var(--primary-bg), var(--primary-bg));
}

/* Fix the support banner in light theme */
.light-theme .support-banner {
    background: rgba(224, 152, 0, 0.1);
    border: 1px solid rgba(224, 152, 0, 0.2);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.light-theme .support-banner p {
    color: var(--text-primary);
}

.light-theme .phone-frame {
    border-color: rgba(0, 0, 0, 0.1);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    background: #f5f5f5;
}

.light-theme .phone-screen {
    background: #f8f8f8;
    color: var(--text-primary);
}

.light-theme .chat-header {
    background: rgba(224, 152, 0, 0.1);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.light-theme .message.coach {
    background: rgba(224, 152, 0, 0.2);
}

.light-theme .message.client {
    background: rgba(0, 0, 0, 0.05);
}

.light-theme .navbar,
.light-theme .footer-content {
    background: var(--primary-bg);
}

.light-theme .section-header h2,
.light-theme .philosophy-intro h2,
.light-theme .process-header h2,
.light-theme .pricing-header h2,
.light-theme .client-spotlight h2 {
    background: linear-gradient(to right, var(--text-primary), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.light-theme .hero::before,
.light-theme .before-after::before,
.light-theme .client-spotlight::before {
    background: linear-gradient(to right, transparent, var(--accent-color), transparent);
}

.light-theme .proof-item:hover,
.light-theme .audience-card:hover,
.light-theme .transformation-story:hover {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.light-theme .nav-links a::after,
.light-theme .principle-line::after {
    background: var(--accent-color);
}

.light-theme .headline span::after {
    background: var(--accent-color);
}

.light-theme .hero-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, var(--primary-bg) 0%, rgba(13, 13, 13, 0.4) 100%);
    z-index: 1;
}

/* Light theme adjustment for hero image */
.light-theme .hero-image::after {
    background: linear-gradient(90deg, var(--primary-bg) 0%, rgba(245, 249, 252, 0.1) 100%);
}

/* Fix gradient overlays for light theme */
.light-theme .hero {
    background: transparent;
}

.light-theme .final-cta {
    background: linear-gradient(to right, rgba(245, 249, 252, 0.99), rgba(245, 249, 252, 0.95)), url('images/hero2.jpeg') no-repeat center center/cover;
}

/* Invert some elements for light theme */
.light-theme .photo-placeholder svg,
.light-theme .quote-icon,
.light-theme .journey-icon svg {
    stroke: var(--accent-color);
}

.light-theme .spotlight-container,
.light-theme .comparison-wrapper {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.light-theme .client-stat .stat-value,
.light-theme .stat-box .stat-number,
.light-theme .result-number {
    color: var(--accent-color);
}

/* Fix footer for light theme */
.light-theme footer {
    background: linear-gradient(0deg, rgba(245, 249, 252, 0.98), var(--primary-bg));
    border-top: 1px solid var(--card-border);
}

/* Theme Toggle Button */
.theme-toggle {
    position: fixed;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: var(--bg-secondary);
    border: 1px solid rgba(255, 184, 0, 0.2);
    border-radius: 50%;
    cursor: pointer;
    z-index: 1001;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
}

.theme-toggle.visible {
    opacity: 0.8;
    transform: translateY(0);
}

.theme-toggle:hover {
    opacity: 1;
    transform: translateY(-5px);
}

.theme-icon {
    width: 24px;
    height: 24px;
    stroke: currentColor;
}

.light-theme .dark-icon {
    display: none;
}

.dark-icon {
    display: block;
}

.light-theme .light-icon {
    display: block;
}

.light-icon {
    display: none;
}

/* Media queries for mobile */
@media (max-width: 768px) {
    .theme-toggle {
        top: 15px;
        right: 15px;
        width: 45px;
        height: 45px;
    }
    
    .theme-toggle.visible {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    
    .theme-icon {
        width: 18px;
        height: 18px;
    }
} 

/* Floating Instagram CTA Button */
.floating-cta {
    position: fixed;
    top: 20px;
    right: 20px;
    transform: translateX(200px);
    background: var(--accent-color);
    color: var(--primary-bg);
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.5rem;
    gap: 0.5rem;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 4px 15px var(--shadow-color);
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275), 
                opacity 0.5s ease, 
                background-color 0.3s ease;
    z-index: 1000;
    opacity: 0;
}

.floating-cta.visible {
    transform: translateX(0);
    opacity: 1;
}

.floating-cta:hover {
    background-color: var(--button-hover);
    transform: translateX(-5px);
}

.instagram-icon {
    width: 20px;
    height: 20px;
    stroke: currentColor;
}

@media (max-width: 768px) {
    .floating-cta {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
        right: 10px;
        top: 15px;
    }
    
    .floating-cta span {
        max-width: 100px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .instagram-icon {
        width: 16px;
        height: 16px;
    }
} 

/* Card Flip Transformation Showcase Section */
.transformation-showcase {
    padding: var(--section-spacing) 0;
    background-color: var(--primary-bg);
    position: relative;
    overflow: hidden;
}

.transformation-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(255, 184, 0, 0.3), transparent);
}

.showcase-badge {
    display: inline-block;
    padding: 0.6rem 1.2rem;
    background: rgba(255, 184, 0, 0.05);
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 184, 0, 0.1);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.flip-cards-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 3rem;
    margin: 5rem 0 4rem;
    perspective: 1000px;
}

.flip-card {
    width: 380px;
    height: 550px;
    perspective: 1500px;
    cursor: pointer;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-style: preserve-3d;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    border-radius: 20px;
}

.flip-card:hover .flip-card-inner,
.flip-card.flipped .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front, 
.flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 20px;
    overflow: hidden;
}

.flip-card-front img, 
.flip-card-back img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.flip-card-back {
    transform: rotateY(180deg);
}

.card-label {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 0.5rem 1.5rem;
    background: var(--accent-color);
    color: var(--primary-bg);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1px;
    border-radius: 4px;
    z-index: 2;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, 
                               rgba(0, 0, 0, 0.1) 0%, 
                               rgba(0, 0, 0, 0.3) 50%, 
                               rgba(0, 0, 0, 0.8) 100%);
    z-index: 1;
}

.transformation-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem;
    color: #ffffff;
    z-index: 2;
}

.transformation-info h3 {
    font-size: 1.6rem;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.testimony {
    font-size: 1rem;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

/* Fix card overlay in light theme */
.light-theme .card-overlay {
    background: linear-gradient(to bottom, 
                               rgba(0, 0, 0, 0.2) 0%, 
                               rgba(0, 0, 0, 0.4) 50%, 
                               rgba(0, 0, 0, 0.8) 100%);
}

/* Ensure text is visible in light theme */
.light-theme .transformation-info h3,
.light-theme .transformation-info .testimony,
.light-theme .transformation-info .stats-row,
.light-theme .transformation-info .stat-pill span {
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
}

/* Media queries for mobile */
@media (max-width: 768px) {
    .testimony {
        font-size: 0.9rem;
    }
}

/* Hero Image */
.hero-image {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top; /* Align to top to prevent cutoff */
}

.hero-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, var(--primary-bg) 0%, rgba(13, 13, 13, 0.4) 100%);
    z-index: 1;
}

/* Light theme adjustment for hero image */
.light-theme .hero-image::after {
    background: linear-gradient(90deg, var(--primary-bg) 0%, rgba(245, 249, 252, 0.1) 100%);
}

/* Fix gradient overlays for light theme */
.light-theme .hero {
    background: transparent;
}

.stats-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 1rem 0;
}

.stat-pill {
    background: rgba(255, 184, 0, 0.3);
    border: 1px solid rgba(255, 184, 0, 0.5);
    padding: 0.4rem 0.8rem;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
}

.stat-pill span {
    color: #ffffff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
}

.light-theme .stat-pill {
    background: rgba(255, 184, 0, 0.4);
    border: 1px solid rgba(255, 184, 0, 0.6);
}

.showcase-note {
    text-align: center;
    margin-top: 2rem;
    font-size: 0.9rem;
    opacity: 0.7;
    color: var(--text-secondary);
}

.light-theme .showcase-note {
    opacity: 0.8;
}

.light-theme .navbar,
.light-theme .logo-container {
    background: transparent;
}

/* Workout Tags */
.workout-tags {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.workout-tag {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1.2rem;
    background: rgba(255, 184, 0, 0.15);
    border: 1px solid rgba(255, 184, 0, 0.3);
    border-radius: 50px;
    font-size: 0.95rem;
    color: var(--accent-color);
    font-weight: 600;
    transition: all 0.3s ease;
}

.workout-tag:hover {
    background: rgba(255, 184, 0, 0.25);
    transform: translateY(-2px);
}

.light-theme .workout-tag {
    background: rgba(224, 152, 0, 0.15);
    border: 1px solid rgba(224, 152, 0, 0.3);
}

.light-theme .workout-tag:hover {
    background: rgba(224, 152, 0, 0.25);
}

@media (max-width: 768px) {
    .workout-tags {
        margin-bottom: 1.5rem;
    }
    
    .workout-tag {
        padding: 0.4rem 1rem;
        font-size: 0.85rem;
    }
}

/* Program Options */
.program-options {
    margin-bottom: 2.5rem;
}

.option-label {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    font-weight: 500;
}

.workout-tags {
    display: flex;
    gap: 1.2rem;
}

.workout-tag {
    display: flex;
    align-items: center;
    padding: 1rem 1.5rem;
    background: rgba(255, 184, 0, 0.08);
    border: 1px solid rgba(255, 184, 0, 0.2);
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    max-width: 220px;
    position: relative;
    overflow: hidden;
}

.workout-tag::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255, 184, 0, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.workout-tag:hover {
    transform: translateY(-5px);
    border-color: var(--accent-color);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.workout-tag:hover::before {
    opacity: 1;
}

.tag-icon {
    font-size: 1.8rem;
    margin-right: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    width: 40px;
}

.tag-content {
    display: flex;
    flex-direction: column;
}

.tag-title {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 1rem;
    margin-bottom: 0.2rem;
}

.tag-desc {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.light-theme .workout-tag {
    background: rgba(224, 152, 0, 0.08);
    border: 1px solid rgba(224, 152, 0, 0.2);
}

.light-theme .workout-tag:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Active state for workout tags */
.workout-tag.active {
    background: rgba(255, 184, 0, 0.15);
    border-color: var(--accent-color);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.light-theme .workout-tag.active {
    background: rgba(224, 152, 0, 0.15);
}

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

    .workout-tags {
        flex-direction: column;
        gap: 1rem;
    }

    .workout-tag {
        padding: 0.8rem 1.2rem;
        max-width: 100%;
    }

    .tag-icon {
        font-size: 1.5rem;
        height: 30px;
        width: 30px;
        margin-right: 0.8rem;
    }
}

/* Transform Grid Layout */
.transformations-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.transformation-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.transformation-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.light-theme .transformation-card {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.light-theme .transformation-card:hover {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.transformation-images {
    display: flex;
    width: 100%;
    height: 300px;
}

.image-container {
    position: relative;
    width: 50%;
    height: 100%;
    overflow: hidden;
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
}

.transformation-card:hover .image-container img {
    transform: scale(1.05);
}

.image-tag {
    position: absolute;
    top: 15px;
    background: var(--accent-color);
    color: var(--primary-bg);
    font-weight: 600;
    font-size: 0.8rem;
    padding: 0.3rem 1rem;
    border-radius: 4px;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.image-container:first-child .image-tag {
    left: 15px;
}

.image-container:last-child .image-tag {
    right: 15px;
}

.transformation-content {
    padding: 1.8rem;
}

.transformation-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    color: var(--text-primary);
}

.stats-container {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.stat-item {
    text-align: center;
    flex: 1;
}

.stat-value {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.3rem;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.testimonial {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-primary);
    font-style: italic;
    position: relative;
    padding-left: 1rem;
    border-left: 2px solid var(--accent-color);
}

@media (max-width: 992px) {
    .transformations-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .transformation-images {
        height: 250px;
    }
    
    .transformation-content {
        padding: 1.2rem;
    }
    
    .transformation-content h3 {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
    
    .stat-value {
        font-size: 1.3rem;
    }
    
    .stat-label {
        font-size: 0.7rem;
    }
    
    .testimonial {
        font-size: 0.9rem;
    }
}

/* Client Spotlight Section Styles */
.client-spotlight {
    padding: 5rem 0;
    background: var(--surface-color);
}

.client-transformation {
    margin-top: 1.5rem;
    width: 100%;
}

.transformation-slider {
    overflow: hidden;
    border-radius: 0.75rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.slider-images {
    display: flex;
    flex-direction: row;
}

.slider-images .image-container {
    position: relative;
    width: 50%;
    overflow: hidden;
}

.slider-images img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.slider-images img:hover {
    transform: scale(1.05);
}

.slider-images .image-tag {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: var(--accent-color);
    color: var(--dark-text);
    font-weight: 600;
    font-size: 0.75rem;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    z-index: 2;
}

/* Client Transformation Toggle */
.transformation-toggle {
    margin-top: 1.5rem;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
    position: relative;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.transformation-toggle:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.toggle-container {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.toggle-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.toggle-container img:hover {
    transform: scale(1.05);
}

.before-img, .after-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: opacity 0.5s ease;
}

.after-img.hidden {
    opacity: 0;
}

.img-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--accent-color);
    color: var(--primary-bg);
    font-weight: 600;
    padding: 0.4rem 1.2rem;
    border-radius: 4px;
    z-index: 2;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.toggle-prompt {
    text-align: center;
    padding: 0.8rem;
    background: rgba(255, 184, 0, 0.1);
    color: var(--accent-color);
    font-weight: 500;
    font-size: 0.9rem;
    border-top: 1px solid rgba(255, 184, 0, 0.2);
}

.light-theme .toggle-prompt {
    background: rgba(224, 152, 0, 0.1);
}

@media (max-width: 768px) {
    .toggle-container {
        height: 250px;
    }
    
    .img-tag {
        padding: 0.3rem 0.8rem;
        font-size: 0.8rem;
    }
    
    .toggle-prompt {
        padding: 0.6rem;
        font-size: 0.8rem;
    }
}

/* Mobile-First Responsive Layout - Major Improvements */

/* Mobile Responsive Improvements */
@media (max-width: 768px) {
    /* Hero section mobile improvements */
    .hero {
        min-height: auto;
        padding-bottom: 3rem;
    }
    
    .hero-content {
        margin-top: 2rem;
        margin-bottom: 3rem;
        padding: 0 1rem;
    }

    .headline {
        font-size: 2.3rem;
        line-height: 1.2;
    }

    .subheadline {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .cta-primary, .cta-secondary {
        width: 100%;
        padding: 1rem 1.5rem;
        text-align: center;
    }
    
    /* Hide navigation links on mobile */
    .nav-links {
        display: none;
    }

    /* Adjust hero image for mobile */
    .hero-image {
        width: 100%;
        opacity: 0.4;
    }

    .hero-image::after {
        background: linear-gradient(180deg, rgba(13, 13, 13, 0.7) 0%, rgba(13, 13, 13, 0.8) 100%);
    }
    
    /* Remove social proof section on mobile */
    .social-proof {
        display: none;
    }
    
    /* Improve container padding on mobile */
    .container {
        padding: 0 1.5rem;
    }

    /* Mobile navigation improvements */
    .mobile-menu-toggle {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 20px;
        cursor: pointer;
        z-index: 2000; /* Higher z-index than the nav menu to ensure it's always visible */
        position: relative; /* Ensure position context for z-index */
    }
    
    .mobile-menu-toggle span {
        display: block;
        width: 100%;
        height: 2px;
        background-color: var(--accent-color);
        transition: transform 0.3s ease, opacity 0.3s ease, background-color 0.3s ease;
    }
    
    /* Show navigation links when menu is active */
    .nav-links.active {
        display: flex;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--primary-bg);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        z-index: 100;
    }
    
    .nav-links a {
        font-size: 1.5rem;
    }

    /* Program options mobile improvements */
    .program-options {
        margin-bottom: 2rem;
    }
    
    .workout-tags {
        flex-direction: column;
        gap: 1rem;
    }
    
    .workout-tag {
        width: 100%;
        max-width: 100%;
    }
    
    /* Target audience section mobile improvements */
    .audience-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .audience-card:hover {
        transform: none;
    }
    
    /* Program features mobile improvements */
    .features-timeline {
        padding-left: 1rem;
    }
    
    .feature-block {
        flex-direction: column;
        gap: 1rem;
        margin-bottom: 2.5rem;
    }
    
    .feature-number {
        min-width: 50px;
        height: 50px;
        font-size: 1.25rem;
        margin-bottom: 0.5rem;
    }
    
    .feature-details h3 {
        font-size: 1.25rem;
    }
    
    .feature-badges {
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .feature-badges span {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }
    
    /* Process section mobile improvements */
    .connector-line {
        left: 25px;
    }
    
    .step, .step:nth-child(odd) {
        flex-direction: row;
        text-align: left;
        gap: 1.5rem;
        margin-bottom: 2.5rem;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
        min-width: 50px;
    }
    
    /* Client spotlight mobile improvements */
    .spotlight-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .client-photo {
        margin-bottom: 0;
    }
    
    .photo-placeholder {
        width: 150px;
        height: 150px;
    }
    
    /* Daily support section mobile improvements */
    .support-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .support-mockup {
        order: -1;
    }
    
    .phone-frame {
        width: 280px;
        height: 550px;
        transform: none !important;
    }
    
    .support-banner .banner-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    /* Transformation showcase mobile improvements */
    .transformations-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .transformation-card:hover {
        transform: none;
    }
    
    .transformation-images {
        height: 250px;
    }
    
    /* Optimize floating elements */
    .floating-cta {
        top: auto;
        right: 20px;
        bottom: 20px;
        border-radius: 50px;
        padding: 0.7rem 1.2rem;
    }
    
    .theme-toggle {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
    
    .scroll-top {
        bottom: 20px;
        right: auto;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .scroll-top.visible {
        opacity: 0.8;
        transform: translateX(-50%);
    }
}

/* Extra Small Mobile Devices */
@media (max-width: 480px) {
    /* Further adjustments for very small screens */
    .headline {
        font-size: 1.8rem;
    }
    
    .subheadline {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    /* Simplify section headers */
    h2 {
        font-size: 1.8rem !important;
    }
    
    h3 {
        font-size: 1.2rem !important;
    }
    
    /* Further simplify UI elements */
    .tag-icon {
        font-size: 1.2rem;
        height: 24px;
        width: 24px;
        margin-right: 0.5rem;
    }
    
    .tag-title {
        font-size: 0.9rem;
    }
    
    .tag-desc {
        font-size: 0.75rem;
    }
    
    /* Reduce the size of transformation toggle */
    .toggle-container {
        height: 200px;
    }
    
    .img-tag {
        padding: 0.3rem 0.7rem;
        font-size: 0.75rem;
    }
    
    .toggle-prompt {
        padding: 0.5rem;
        font-size: 0.8rem;
    }
    
    /* Optimize footer on small screens */
    .footer-links {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    /* Hide/show icons on small screens */
    .floating-cta span {
        display: none;
    }
    
    .floating-cta {
        width: 50px;
        height: 50px;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
    }
    
    .instagram-icon {
        width: 24px;
        height: 24px;
        margin: 0;
    }
}

/* Add styles for navigation CTA and fix mobile menu */

.nav-links a.nav-cta {
    background-color: var(--accent-color);
    color: var(--primary-bg);
    padding: 0.6rem 1.2rem;
    border-radius: 6px;
    font-weight: 600;
    margin-top: 1rem;
    display: none;
}

.nav-links a.nav-cta:hover {
    background-color: var(--button-hover);
    transform: translateY(-2px);
}

.nav-links a.nav-cta::after {
    display: none;
}

@media (max-width: 768px) {
    /* Show CTA in mobile menu */
    .nav-links a.nav-cta {
        display: block;
    }
    
    /* Improved mobile menu toggle */
    .mobile-menu-toggle {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 20px;
        cursor: pointer;
        z-index: 200;
    }
    
    .mobile-menu-toggle span {
        display: block;
        width: 100%;
        height: 2px;
        background-color: var(--accent-color);
        transition: transform 0.3s ease, opacity 0.3s ease, background-color 0.3s ease;
    }
    
    /* Transform the menu toggle to an X when active */
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
        background-color: white;
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
        background-color: white;
    }
    
    /* Fixed mobile navigation */
    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: var(--primary-bg); /* Fully opaque background */
        z-index: 1000; /* High z-index to be above all content */
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s ease;
    }
    
    .nav-links.active {
        display: flex;
        opacity: 1;
        pointer-events: auto;
    }
    
    .nav-links a {
        font-size: 1.5rem;
        opacity: 0.9;
        transform: translateY(10px);
        animation: fadeInUp 0.5s forwards;
        animation-delay: calc(0.1s * var(--i, 0));
    }
    
    @keyframes fadeInUp {
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
}

/* Optimize section spacing at mobile sizes */
@media (max-width: 768px) {
    section {
        padding: var(--section-spacing-mobile) 0;
    }

    .spotlight-container {
        padding: 2rem;
    }
    
    .philosophy-principles {
        gap: 2.5rem;
    }
    
    .principle {
        margin-bottom: 0;
    }
    
    .offer-content {
        padding: 2rem;
    }
    
    .quick-form {
        padding: 2rem;
    }
    
    .principle-content h3 {
        font-size: 1.25rem !important;
    }
    
    .client-spotlight h2,
    .features-header h2,
    .process-header h2,
    .section-header h2 {
        font-size: 2rem !important;
    }
    
    .results-summary {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    section {
        padding: var(--section-spacing-small-mobile) 0;
    }
    
    .spotlight-container {
        padding: 1.5rem;
    }
    
    .philosophy-principles {
        gap: 2rem;
    }
    
    .principle-marker {
        min-width: 30px;
    }
    
    .principle-content h3 {
        font-size: 1.1rem !important;
    }
    
    .results-summary {
        grid-template-columns: 1fr;
    }
    
    .client-spotlight h2,
    .features-header h2,
    .process-header h2,
    .section-header h2 {
        font-size: 1.8rem !important;
    }
}

/* Optimize for performance on mobile devices */

/* Fix phone frame transform that causes jank on mobile */
.phone-frame {
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    will-change: transform;
    transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
}

/* Remove animation on very small screens */
@media (max-width: 480px) {
    /* Disable intensive animations on mobile */
    .feature-block:hover,
    .audience-card:hover,
    .principle:hover,
    .phone-frame:hover,
    .transformation-card:hover .image-container img,
    .spotlight-quote:hover {
        transform: none !important;
    }
    
    /* Hide some elements on very small screens */
    .feature-badges {
        display: none;
    }
    
    .principle-line {
        display: none;
    }
    
    /* Simplify spotlight content */
    .journey-stage p {
        padding-left: 1.5rem;
    }
    
    .journey-icon {
        width: 35px;
        height: 35px;
    }
    
    /* Optimize image loading */
    .image-container img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        backface-visibility: hidden;
        transform: translateZ(0);
    }
    
    /* Reduce content size */
    .testimonial-quote p {
        font-size: 1rem;
    }
    
    .quote-author {
        font-size: 0.9rem;
    }
    
    /* Simplify cards */
    .stat-box {
        padding: 1rem;
    }
    
    .transformation-details {
        gap: 1.5rem;
    }
}

/* Remove timeline line in mobile layout */
@media (max-width: 768px) {
    /* Hide timeline line on mobile */
    .timeline-track {
        display: none;
    }
}

@media (max-width: 768px) {
    .journey-stage h4 {
        font-size: 1.2rem;
        margin-left: 3rem;
    }

    .journey-stage p {
        font-size: 1rem;
        margin-left: 3rem;
    }
    
    .journey-icon {
        width: 30px;
        height: 30px;
        top: 1.2rem;
    }
}

/* Add back the journey-line */
.journey-line {
    width: 1px;
    height: 3rem;
    background: linear-gradient(to bottom, var(--accent-color), transparent);
    margin-left: 1.25rem;
}

.audience-card.mobile-view {
    cursor: pointer;
}

.audience-card.mobile-view:active {
    transform: scale(0.97);
}

.audience-card.touch-active {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.mobile-tooltip {
    position: absolute;
    background: rgba(13, 13, 13, 0.95);
    color: #fff;
    padding: 12px 15px;
    border-radius: 8px;
    font-size: 0.85rem;
    line-height: 1.4;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.25s ease, transform 0.25s ease;
    pointer-events: none;
    border: 1px solid rgba(255, 184, 0, 0.2);
    text-align: left;
    cursor: pointer;
}

.mobile-tooltip strong {
    color: var(--accent-color);
    display: block;
    margin-bottom: 4px;
    font-weight: 600;
    padding-right: 20px; /* Make room for close hint */
}

.mobile-tooltip.show {
    opacity: 0.98;
    transform: translateY(0);
    pointer-events: auto; /* Make it clickable when visible */
}

.tooltip-close-hint {
    position: absolute;
    top: 8px;
    right: 10px;
    color: var(--accent-color);
    font-size: 18px;
    font-weight: bold;
    line-height: 1;
}

/* Styles for the selected card */
.audience-card.card-selected {
    transform: translateY(-4px);
    box-shadow: 0 6px 12px rgba(255, 184, 0, 0.2);
    border: 1px solid var(--accent-color);
    position: relative;
    z-index: 10;
}

.audience-card.card-selected .icon {
    background-color: var(--accent-color);
    color: var(--primary-bg);
}

/* Make the tooltip arrow color match */
.mobile-tooltip::after {
    content: '';
    position: absolute;
    top: -6px;
    left: 15px;
    width: 12px;
    height: 12px;
    background: rgba(13, 13, 13, 0.95);
    transform: rotate(45deg);
    border-left: 1px solid rgba(255, 184, 0, 0.2);
    border-top: 1px solid rgba(255, 184, 0, 0.2);
}

/* Remove the redundant before pseudo-element */
.mobile-tooltip::before {
    display: none;
}

.mobile-text {
    display: none;
}

.desktop-text {
    display: inline;
}

@media (max-width: 768px) {
    /* More optimized layout */
    .target-audience .container {
        max-width: 95%;
    }
}

@media (max-width: 480px) {
    .mobile-text {
        display: inline-block;
        font-weight: 600;
    }
    
    .desktop-text {
        display: none;
    }
    
    /* Further optimize with tighter spacing */
    .target-audience {
        padding: 2rem 2.5%;
    }
    
    .audience-grid {
        row-gap: 0.5rem;
        column-gap: 0.4rem;
    }
}

/* Super compact view for small phones */
@media (max-width: 350px) {
    .audience-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.3rem;
    }
    
    .audience-card {
        padding: 0.6rem 0.3rem;
    }
    
    .audience-card .icon {
        width: 24px;
        height: 24px;
        padding: 0.3rem;
        margin-bottom: 0.4rem;
    }
    
    .audience-card h3 {
        font-size: 0.7rem;
        letter-spacing: -0.01em;
    }
}

@media (max-width: 480px) {
    /* Make workout style section more compact on mobile */
    .program-options {
        margin-bottom: 1.5rem;
    }
    
    .option-label {
        margin-bottom: 0.5rem;
        font-size: 0.9rem;
    }
    
    .workout-tags {
        flex-direction: row;
        gap: 0.25rem;
        margin-bottom: 0;
    }
    
    .workout-tag {
        padding: 0.25rem 0.5rem;
        border: none;
        background: none;
        cursor: default;
        pointer-events: none;
        max-width: none;
        justify-content: center;
    }
    
    .workout-tag .tag-icon {
        font-size: 0.9rem;
        height: auto;
        width: auto;
        margin-right: 0.3rem;
    }
    
    .workout-tag .tag-content {
        flex-direction: row;
        align-items: center;
    }
    
    .workout-tag .tag-title {
        font-size: 0.8rem;
        font-weight: 500;
        margin-bottom: 0;
        margin-right: 0.25rem;
    }
    
    .workout-tag .tag-desc {
        display: none;
    }
    
    /* Remove hover effects */
    .workout-tag:hover, 
    .workout-tag:active,
    .workout-tag.active {
        transform: none;
        border: none;
        box-shadow: none;
        background: none;
    }
    
    .workout-tag::before {
        display: none;
    }
}

@media (max-width: 480px) {
    /* Mobile-specific styles for "What You Get" section */
    .program-features {
        padding: 3rem 5%;
    }
    
    .program-features h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .features-timeline {
        padding-left: 0.75rem;
    }
    
    .timeline-track {
        top: 1rem;
        bottom: 1rem;
    }
    
    .feature-block {
        margin-bottom: 2rem;
        gap: 0.75rem;
        opacity: 1;
        transform: translateX(0);
    }
    
    .feature-block:hover {
        opacity: 1;
        transform: translateX(0);
    }
    
    .feature-number {
        min-width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .feature-block:hover .feature-number {
        transform: none;
        box-shadow: none;
    }
    
    .feature-details {
        padding-top: 0;
    }
    
    .feature-details h3 {
        font-size: 1.1rem;
        margin-bottom: 0.25rem;
    }
    
    .feature-details p {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
        line-height: 1.4;
    }
    
    .feature-badges {
        gap: 0.4rem;
    }
    
    .feature-badges span {
        padding: 0.3rem 0.6rem;
        font-size: 0.75rem;
        border-radius: 15px;
    }
    
    .feature-badges span:hover {
        background: rgba(255, 184, 0, 0.1);
        transform: none;
    }
}

@media (max-width: 360px) {
    /* Extra small device optimization for "What You Get" section */
    .program-features h2 {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }
    
    .feature-block {
        margin-bottom: 1.5rem;
        gap: 0.5rem;
    }
    
    .feature-number {
        min-width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .feature-details h3 {
        font-size: 1rem;
    }
    
    .feature-details p {
        font-size: 0.85rem;
    }
    
    .feature-badges span {
        padding: 0.25rem 0.5rem;
        font-size: 0.7rem;
    }
}

/* Mobile-friendly Trusted By section for under Start Your Transformation button */
@media (max-width: 768px) {
    .mobile-trusted-section {
        display: flex;
        flex-direction: column;
        margin-top: 2rem;
        text-align: center;
    }
    
    .mobile-trusted-heading {
        font-size: 0.9rem;
        font-weight: 500;
        color: var(--text-secondary);
        margin-bottom: 0.8rem;
    }
    
    .mobile-trusted-stats {
        display: flex;
        justify-content: center;
        gap: 1.5rem;
    }
    
    .mobile-stat-item {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .mobile-stat-value {
        font-size: 1.6rem;
        font-weight: 700;
        color: var(--accent-color);
    }
    
    .mobile-stat-label {
        font-size: 0.8rem;
        color: var(--text-secondary);
        margin-top: 0.2rem;
    }
}

@media (max-width: 480px) {
    .mobile-trusted-section {
        margin-top: 1.5rem;
    }
    
    .mobile-trusted-heading {
        font-size: 0.85rem;
    }
    
    .mobile-stat-value {
        font-size: 1.4rem;
    }
    
    .mobile-stat-label {
        font-size: 0.75rem;
    }
}

@media (min-width: 769px) {
    .mobile-trusted-section {
        display: none;
    }
}

.nav-links.active a {
    color: white;
    font-size: 1.8rem;
    font-weight: 600;
    margin: 10px 0;
    padding: 12px 0;
    text-align: center;
    width: 80%;
    opacity: 1;
}

.nav-links.active a:hover {
    color: var(--accent-color);
}

/* Make the mobile CTA button stand out */
.nav-links.active a.nav-cta {
    background-color: var(--accent-color);
    color: var(--primary-bg);
    padding: 12px 24px;
    border-radius: 6px;
    margin-top: 20px;
    font-weight: 700;
}

.nav-links.active a.nav-cta:hover {
    background-color: var(--button-hover);
    color: var(--primary-bg);
}

/* Fix for mobile menu with content showing through */
body:has(.nav-links.active) section,
body:has(.nav-links.active) .hero-content,
body:has(.nav-links.active) .hero-image {
    visibility: hidden !important;
}

/* Enhanced mobile menu styling */
.nav-links.active {
    display: flex;
    opacity: 1;
    pointer-events: auto;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #0D0D0D;
    z-index: 9999;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

/* Mobile menu fixed styling */
body.menu-open .hero-content {
    display: none !important;
}

body.menu-open section {
    display: none !important;
}

body.menu-open .nav-links.active {
    background-color: #0D0D0D !important;
}

/* Always keep the mobile menu toggle visible */
.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    cursor: pointer;
    z-index: 10000; /* Ensure it's above everything, including the menu */
    position: relative;
}

/* Add a background to the toggle button when menu is open for better visibility */
body.menu-open .mobile-menu-toggle {
    background-color: transparent;
    padding: 10px;
    border-radius: 5px;
    margin: -10px;
}

/* Ensure mobile menu toggle is visible when menu is open */
body.menu-open .mobile-menu-toggle {
    position: fixed;
    top: 38px;
    right: 5%;
    z-index: 10000; /* Higher than the menu */
}

/* Update mobile menu styles */
@media (max-width: 768px) {
    /* Make mobile menu items smaller with hover effects */
    .nav-links.active a {
        font-size: 1.3rem !important;
        padding: 8px 0 !important;
        margin: 6px 0 !important;
        width: 70% !important;
        transition: color 0.2s ease, transform 0.2s ease !important;
    }

    .nav-links.active a:hover {
        color: var(--accent-color) !important;
        transform: translateY(-2px) !important;
    }

    /* Make CTA button smaller */
    .nav-links.active a.nav-cta {
        padding: 8px 16px !important;
        margin-top: 12px !important;
        font-size: 1.2rem !important;
    }
}

/* Further optimize mobile menu appearance */
@media (max-width: 768px) {
    /* Make navigation menu less overwhelming */
    .nav-links.active {
        gap: 0.5rem !important;
        padding: 1rem 0 !important;
    }
    
    /* Reduce the large section names */
    body.menu-open .hero-content h1,
    body.menu-open .hero-content p,
    body.menu-open section h2 {
        font-size: 0 !important; /* Hide completely when menu is open */
    }
}

/* Light theme support for mobile menu */
@media (max-width: 768px) {
    /* Light theme colors for mobile menu */
    .light-theme .nav-links.active {
        background-color: var(--primary-bg) !important;
    }
    
    .light-theme .nav-links.active a {
        color: var(--text-primary) !important;
    }
    
    .light-theme .nav-links.active a:hover {
        color: var(--accent-color) !important;
    }
    
    .light-theme .nav-links.active a.nav-cta {
        background-color: var(--accent-color) !important;
        color: var(--primary-bg) !important;
    }
    
    .light-theme .mobile-menu-toggle.active span {
        background-color: var(--text-primary) !important;
    }
    
    .light-theme body.menu-open .mobile-menu-toggle {
        background-color: transparent !important;
    }
}

/* Fix light theme mobile menu */
html.light-theme body.menu-open .nav-links.active {
    background-color: #F5F9FC !important;
}

html.light-theme .mobile-menu-toggle.active span {
    background-color: #1A1A1A !important;
}

/* Complete light theme mobile menu styles */
html.light-theme .nav-links.active a {
    color: #1A1A1A !important;
}

html.light-theme .nav-links.active a:hover {
    color: var(--accent-color) !important;
}

/* Fix CTA button in light theme */
html.light-theme .nav-links.active a.nav-cta {
    background-color: var(--accent-color) !important;
    color: #FFFFFF !important;
}

/* Light theme support for tooltips */
.light-theme .mobile-tooltip {
    background: rgba(245, 249, 252, 0.95);
    color: #1A1A1A;
    border: 1px solid rgba(224, 152, 0, 0.3);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.light-theme .mobile-tooltip::after {
    background: rgba(245, 249, 252, 0.95);
    border-left: 1px solid rgba(224, 152, 0, 0.3);
    border-top: 1px solid rgba(224, 152, 0, 0.3);
}

.light-theme .mobile-tooltip strong,
.light-theme .tooltip-close-hint {
    color: var(--accent-color);
}

.light-theme .audience-card.card-selected {
    box-shadow: 0 6px 12px rgba(224, 152, 0, 0.15);
    border: 1px solid var(--accent-color);
}

.light-theme .audience-card.card-selected .icon {
    background-color: var(--accent-color);
    color: #FFFFFF;
}

/* Hide scroll-to-top button on mobile and tablet */
@media (max-width: 768px) {
    .scroll-top {
        display: none !important;
    }
}

/* Hide client success story and daily support sections on mobile and tablet */
@media (max-width: 768px) {
    .client-spotlight,
    .daily-support {
        display: none !important;
    }
}

@media (max-width: 768px) {
    /* Compact What You Get section for mobile/tablet */
    .program-features {
        padding: 2rem 2%;
    }
    .features-timeline {
        padding-left: 0;
    }
    .feature-block {
        margin-bottom: 1.2rem;
        gap: 0.5rem;
        flex-direction: row;
        align-items: center;
    }
    .feature-number {
        min-width: 38px;
        height: 38px;
        font-size: 1rem;
        border-radius: 19px;
        padding: 0;
        margin-bottom: 0;
    }
    .feature-details {
        padding-top: 0;
    }
    .feature-details h3 {
        font-size: 1rem;
        margin-bottom: 0;
        font-weight: 600;
        line-height: 1.2;
    }
    .feature-details p,
    .feature-badges {
        display: none !important;
    }
}

@media (max-width: 480px) {
    /* Hide the original grid on mobile */
    .audience-grid {
        display: none !important;
    }
    /* Show the running band marquee */
    .audience-marquee {
        display: block;
        width: 100vw;
        overflow: hidden;
        margin: 1.5rem 0 2.5rem 0;
        padding: 0;
        background: none;
    }
    .marquee-track {
        display: flex;
        width: max-content;
        animation: marquee-scroll 18s linear infinite;
        align-items: center;
        gap: 1.2rem;
    }
    .marquee-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        min-width: 120px;
        padding: 0.7rem 1.2rem;
        background: rgba(255, 184, 0, 0.07);
        border: 1.5px solid rgba(255, 184, 0, 0.18);
        border-radius: 18px;
        box-shadow: 0 2px 10px rgba(255,184,0,0.04);
        margin: 0 0.2rem;
        transition: transform 0.2s;
    }
    .marquee-item:hover {
        transform: scale(1.07) rotate(-2deg);
        box-shadow: 0 4px 18px rgba(255,184,0,0.13);
        background: rgba(255, 184, 0, 0.13);
    }
    .marquee-icon {
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 0.5rem;
        color: var(--accent-color);
        background: rgba(255,184,0,0.08);
        border-radius: 10px;
        padding: 0.3rem;
        box-shadow: 0 1px 4px rgba(255,184,0,0.07);
    }
    .marquee-caption {
        font-size: 0.98rem;
        font-weight: 600;
        color: var(--text-primary);
        text-align: center;
        letter-spacing: 0.01em;
    }
    @keyframes marquee-scroll {
        0% { transform: translateX(0); }
        100% { transform: translateX(-50%); }
    }
    /* Hide the marquee on tablet/desktop */
    @media (min-width: 481px) {
        .audience-marquee { display: none !important; }
    }
}

@media (max-width: 480px) {
    .audience-marquee { display: block; }
    .audience-grid { display: none !important; }
}
@media (min-width: 481px) {
    .audience-marquee { display: none !important; }
    .audience-grid { display: grid; }
}