/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Color Palette - Energetic and Motivational */
    --primary: #FF6B35; /* Vibrant Orange */
    --secondary: #6C5CE7; /* Rich Purple */
    --accent: #FDCB6E; /* Gold */
    --dark: #2D3436;
    --light: #FFFFFF;
    --gray-light: #F5F6FA;
    --gray: #B2BEC3;
    --success: #00B894;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #FF6B35 0%, #FDCB6E 100%);
    --gradient-secondary: linear-gradient(135deg, #6C5CE7 0%, #A29BFE 100%);
    --gradient-hero: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(108, 92, 231, 0.1) 100%);
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    
    /* Typography */
    --font-primary: 'Inter', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    padding: 1.5rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    font-size: 1.5rem;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 600;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.nav-links a:hover {
    color: var(--primary);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 100px;
    background: var(--gray-light);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-hero);
    opacity: 0.5;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--dark);
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #555;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.stat {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 160px; /* ensure consistent height across varying text lengths */
    text-align: center;
}

.stat:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--primary);
    font-size: 1rem;
    font-weight: 800;
}

.stat-text {
    text-align: center;
    line-height: 1.4;
}

.stat-text .stat-amount {
    font-size: 2.5rem;
    font-weight: 900;
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.stat-text .stat-description {
    color: var(--primary);
    font-size: 1rem;
    font-weight: 800;
    display: inline-block;
}

.intro-message {
    background: white;
}

.intro-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.intro-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    color: var(--dark);
    margin-bottom: 1.5rem;
}

.intro-content p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.intro-content p:last-child {
    margin-bottom: 0;
}

.intro-image-wrapper {
    margin-bottom: 2rem;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.intro-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.how-it-works-intro {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
}

.how-it-works-intro h3 {
    font-size: 1.75rem;
    font-weight: 900;
    color: var(--dark);
    margin-bottom: 1rem;
}

.how-it-works-intro p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
}

.how-it-works-image {
    margin-bottom: 2rem;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.how-it-works-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.investment-overview {
    max-width: 900px;
    margin: 0 auto 3rem;
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    text-align: left;
}

.investment-overview h3 {
    font-size: 1.85rem;
    font-weight: 900;
    color: var(--dark);
    margin-bottom: 1rem;
    text-align: center;
}

.investment-overview p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.8;
}

.investment-overview ul {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
    list-style: disc;
}

.investment-overview li {
    margin-bottom: 0.75rem;
    font-weight: 600;
    color: var(--dark);
}

.investment-overview li:last-child {
    margin-bottom: 0;
}

.training-image {
    margin-bottom: 2rem;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.training-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.realistic-outcomes {
    max-width: 960px;
    margin: 3.5rem auto 0;
    padding: 3.5rem;
    border-radius: 30px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.2), rgba(108, 92, 231, 0.18));
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.12);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.realistic-outcomes::before,
.realistic-outcomes::after {
    content: '';
    position: absolute;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    filter: blur(0px);
    opacity: 0.55;
    z-index: 0;
}

.realistic-outcomes::before {
    top: -90px;
    right: -70px;
    background: radial-gradient(circle at center, rgba(108, 92, 231, 0.6) 0%, transparent 70%);
}

.realistic-outcomes::after {
    bottom: -110px;
    left: -80px;
    background: radial-gradient(circle at center, rgba(255, 107, 53, 0.65) 0%, transparent 70%);
}

.realistic-outcomes > * {
    position: relative;
    z-index: 1;
}

.outcome-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.75rem;
}

.outcome-icon {
    font-size: 2.75rem;
    line-height: 1;
    background: rgba(255, 255, 255, 0.85);
    border-radius: 50%;
    padding: 0.9rem;
    box-shadow: 0 16px 35px rgba(0, 0, 0, 0.12);
}

.outcome-header h3 {
    font-size: clamp(2rem, 4vw, 2.6rem);
    font-weight: 900;
    color: var(--dark);
    margin: 0;
}

.outcome-text {
    max-width: 720px;
    margin: 0 auto 1.75rem;
    font-size: 1.1rem;
    color: #333;
    line-height: 1.9;
}

.outcome-stat {
    color: var(--secondary);
    font-weight: 900;
}

.outcome-highlight {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.75rem;
    max-width: 660px;
    margin: 0 auto 2.5rem;
    padding: 1.9rem 2.4rem;
    background: rgba(255, 255, 255, 0.92);
    border: 2px solid rgba(108, 92, 231, 0.32);
    border-radius: 24px;
    box-shadow: 0 22px 55px rgba(0, 0, 0, 0.1);
}

.highlight-icon {
    font-size: 2.5rem;
    line-height: 1;
    filter: drop-shadow(0 12px 18px rgba(108, 92, 231, 0.3));
}

.highlight-content {
    text-align: left;
}

.highlight-stat {
    display: block;
    font-size: 2.65rem;
    font-weight: 900;
    color: var(--secondary);
    line-height: 1;
}

.highlight-content p {
    margin-top: 0.5rem;
    font-size: 1.05rem;
    color: #444;
}

.outcome-footer {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.85);
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

.outcome-footer p {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 600;
    color: #2d2d2d;
}

.footer-icon {
    font-size: 1.6rem;
}

/* Buttons */
.btn-primary, .btn-secondary, .btn-large {
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    display: inline-block;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-large {
    padding: 1.25rem 3rem;
    font-size: 1.1rem;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.4);
}

.btn-secondary {
    background: white;
    color: var(--dark);
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background: var(--primary);
    color: white;
}

/* Section Styles */
section {
    padding: var(--spacing-xl) 0;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-label {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    margin-bottom: 1rem;
    color: var(--dark);
}

.section-description {
    font-size: 1.1rem;
    color: #666;
}

/* About Section */
.about {
    background: white;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-features {
    display: grid;
    gap: 1.5rem;
    margin-top: 2rem;
}

.feature-card {
    padding: 1.5rem;
    background: var(--gray-light);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateX(10px);
    background: var(--gradient-hero);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.feature-card p {
    color: #666;
}

.about-visual {
    display: grid;
    gap: 1rem;
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.image-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
}

.image-card.highlight {
    grid-column: span 2;
}

.image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.image-card:hover img {
    transform: scale(1.1);
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 1.5rem;
    color: white;
    font-weight: 700;
}

.about-image-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.about-image-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 1;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.about-image-card.highlight {
    grid-column: span 2;
}

.about-image-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.about-image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.about-image-card:hover img {
    transform: scale(1.1);
}

/* How It Works Section */
.how-it-works {
    background: var(--gray-light);
}

.video-container {
    max-width: 900px;
    margin: 0 auto 4rem;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.step-card {
    background: white;
    padding: 0;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    overflow: hidden;
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.step-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    margin-bottom: 0;
}

.step-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.step-card:hover .step-image img {
    transform: scale(1.1);
}

.step-card > h3,
.step-card > p {
    padding: 0 2.5rem;
}

.step-card > h3 {
    padding-top: 2.5rem;
    margin-bottom: 1rem;
}

.step-card > p {
    padding-bottom: 2.5rem;
}

.step-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

.step-card p {
    color: #666;
    line-height: 1.8;
}

.earning-projection {
    margin-top: 3rem;
    padding: 3.5rem;
    border-radius: 28px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.15), rgba(108, 92, 231, 0.12));
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.earning-projection::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.4));
    z-index: 0;
}

.earning-projection > * {
    position: relative;
    z-index: 1;
}

.earning-projection h3 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    margin-bottom: 2rem;
    color: var(--dark);
    font-weight: 900;
}

.commitment-quote {
    max-width: 720px;
    margin: 0 auto 2rem;
    padding: 1.75rem 2.25rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid rgba(255, 107, 53, 0.3);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

.commitment-quote p {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 1rem;
}

.quote-author {
    display: inline-block;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--primary);
}

.commitment-text {
    max-width: 720px;
    margin: 0 auto 1.5rem;
    font-size: 1.1rem;
    color: #444;
    line-height: 1.9;
}

.commitment-text:last-of-type {
    margin-bottom: 0;
}

/* Testimonials Section */
.testimonials {
    background: white;
}

.testimonial-intro {
    max-width: 820px;
    margin: 0 auto 3.5rem;
    padding: 3rem 3.5rem;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.08), rgba(108, 92, 231, 0.08));
    border-radius: 28px;
    text-align: center;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.testimonial-intro::before,
.testimonial-intro::after {
    content: '';
    position: absolute;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    z-index: 0;
    opacity: 0.5;
}

.testimonial-intro::before {
    top: -60px;
    left: -40px;
    background: radial-gradient(circle at center, rgba(255, 107, 53, 0.35) 0%, transparent 70%);
}

.testimonial-intro::after {
    bottom: -70px;
    right: -50px;
    background: radial-gradient(circle at center, rgba(108, 92, 231, 0.35) 0%, transparent 70%);
}

.testimonial-intro > * {
    position: relative;
    z-index: 1;
}

.testimonial-intro h3 {
    font-size: clamp(2rem, 4vw, 2.6rem);
    font-weight: 900;
    color: var(--dark);
    margin-bottom: 1.5rem;
}

.testimonial-intro p {
    font-size: 1.1rem;
    color: #2f2f2f;
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

.testimonial-intro-closing {
    font-weight: 800;
    color: var(--secondary);
    font-size: 1.2rem;
    margin-bottom: 0;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: var(--gray-light);
    padding: 2rem;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.testimonial-card.featured {
    background: var(--gradient-secondary);
    color: white;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary);
}

.testimonial-header h4 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.role {
    font-size: 0.85rem;
    opacity: 0.8;
}

.testimonial-content p {
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.earning-badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
}

.testimonial-card.featured .earning-badge {
    background: white;
    color: var(--secondary);
}

/* CTA Section */
.cta {
    background: var(--gradient-primary);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
}

.cta-content > p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.cta .btn-primary {
    background: white;
    color: var(--primary);
}

.cta .btn-primary:hover {
    background: var(--gray-light);
}

.cta .btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta .btn-secondary:hover {
    background: white;
    color: var(--primary);
}

.trust-indicators {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    font-weight: 600;
}

.trust-item {
    font-size: 1.1rem;
}

/* Footer */
.footer {
    background: var(--dark);
    color: white;
    padding: 3rem 0 1.5rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-brand h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.footer-brand p {
    opacity: 0.8;
}

.footer-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.7;
}

.footer-bottom p {
    margin-bottom: 0.5rem;
}

.footer-bottom p:last-child {
    margin-bottom: 0;
}

.footer-bottom a {
    color: white;
    text-decoration: none;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.footer-bottom a:hover {
    opacity: 1;
    text-decoration: underline;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content > * {
    animation: fadeInUp 0.8s ease-out;
}

.hero-stats .stat {
    animation: fadeInUp 1s ease-out;
}

.hero-stats .stat:nth-child(2) {
    animation-delay: 0.1s;
}

.hero-stats .stat:nth-child(3) {
    animation-delay: 0.2s;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links a:not(.btn-primary) {
        display: none;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .image-grid {
        grid-template-columns: 1fr;
    }
    
    .image-card.highlight {
        grid-column: span 1;
    }
    
    .about-image-grid {
        grid-template-columns: 1fr;
    }
    
    .about-image-card.highlight {
        grid-column: span 1;
    }
    
    .step-image {
        height: 180px;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: stretch;
    }
    
    .btn-large {
        width: 100%;
    }
    
    .outcome-highlight {
        flex-direction: column;
        text-align: center;
    }
    
    .highlight-content {
        text-align: center;
    }
    
    .outcome-footer {
        flex-direction: column;
        text-align: center;
    }
 
    .footer-content {
        flex-direction: column;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
    
    section {
        padding: var(--spacing-lg) 0;
    }

    .testimonial-intro {
        padding: 2.5rem;
    }
}

@media (max-width: 480px) {
    .hero-stats {
        grid-template-columns: 1fr;
    }
    
    .steps {
        grid-template-columns: 1fr;
    }
    
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .trust-indicators {
        flex-direction: column;
        gap: 1rem;
    }
    
    .realistic-outcomes {
        padding: 2.5rem;
    }
    
    .highlight-stat {
        font-size: 2.2rem;
    }

    .testimonial-intro {
        padding: 2rem;
    }
    
    .step-image {
        height: 150px;
    }
    
    .intro-image-wrapper,
    .how-it-works-image,
    .training-image {
        margin-bottom: 1.5rem;
    }
}

