/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #00FF00;
    --secondary-color: #0A0A0A;
    --accent-color: #FFD700;
    --text-light: #FFFFFF;
    --text-dark: #1A1A1A;
    --bg-dark: #0D0D0D;
    --bg-light: #F5F5F5;
    --gradient-primary: linear-gradient(135deg, #00FF00 0%, #00CC00 100%);
    --gradient-dark: linear-gradient(135deg, #1A1A1A 0%, #0D0D0D 100%);
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

/* Section Indicator - Floating Icon */
.section-indicator {
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 1000;
    pointer-events: none;
}

.indicator-icon {
    font-size: 5rem;
    background: linear-gradient(135deg, rgba(0, 255, 0, 0.25), rgba(255, 215, 0, 0.25));
    backdrop-filter: blur(15px);
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 15px 50px rgba(0, 255, 0, 0.4),
        inset 0 0 30px rgba(255, 255, 255, 0.15),
        0 0 0 4px rgba(0, 255, 0, 0.1);
    border: 3px solid rgba(0, 255, 0, 0.4);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-10px) rotate(5deg);
    }
}

.indicator-icon.changing {
    opacity: 0;
    transform: scale(0.5) rotate(180deg);
}

/* Adjust indicator on tablet */
@media (max-width: 968px) {
    .section-indicator {
        top: 15px;
        left: 15px;
    }
    
    .indicator-icon {
        width: 90px;
        height: 90px;
        font-size: 3.5rem;
    }
}

/* Adjust indicator on mobile */
@media (max-width: 768px) {
    .section-indicator {
        top: 12px;
        left: 12px;
    }
    
    .indicator-icon {
        width: 70px;
        height: 70px;
        font-size: 2.5rem;
        border-width: 2px;
    }
}

/* Extra small mobile */
@media (max-width: 480px) {
    .section-indicator {
        top: 10px;
        left: 10px;
    }
    
    .indicator-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
        border-width: 2px;
        box-shadow: 
            0 8px 30px rgba(0, 255, 0, 0.35),
            inset 0 0 15px rgba(255, 255, 255, 0.1),
            0 0 0 3px rgba(0, 255, 0, 0.1);
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.hero {
    background: var(--gradient-dark);
    color: var(--text-light);
    padding: 80px 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    will-change: transform;
}

.hero-background-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(0, 255, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 215, 0, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 60px;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.hero-text {
    width: 100%;
    text-align: left;
    position: relative;
    z-index: 2;
}

/* Desktop image */
.hero-image-desktop {
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0.7;
    position: relative;
    z-index: 1;
}

/* Mobile image - hidden by default */
.hero-image-mobile {
    display: none;
    justify-content: center;
    align-items: center;
    margin: 20px 0;
}

.hero-img-subtle {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 255, 0, 0.2);
    object-fit: cover;
    transition: all 0.3s ease;
}

.hero-img-mobile {
    width: 100%;
    max-width: 200px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 255, 0, 0.2);
    object-fit: cover;
    opacity: 0.6;
}

.hero-img-subtle:hover {
    opacity: 1;
    transform: scale(1.05);
    box-shadow: 0 15px 50px rgba(0, 255, 0, 0.3);
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.animated-title {
    position: relative;
}

.title-line {
    font-size: 2rem;
    color: var(--primary-color);
    letter-spacing: 5px;
    text-transform: uppercase;
}

.title-main {
    font-size: 4.5rem;
    position: relative;
    display: inline-block;
}

.fire-wrapper {
    position: relative;
    display: inline-block;
    color: var(--primary-color);
    text-shadow: 
        0 0 10px rgba(0, 255, 0, 0.8),
        0 0 20px rgba(0, 255, 0, 0.6),
        0 0 30px rgba(0, 255, 0, 0.4);
    animation: glow-pulse 2s ease-in-out infinite;
}

.fire {
    position: absolute;
    font-size: 2rem;
    animation: fire-flicker 1.5s ease-in-out infinite;
    pointer-events: none;
}

.fire-1 {
    top: -20px;
    left: -30px;
    animation-delay: 0s;
}

.fire-2 {
    top: -15px;
    right: -35px;
    animation-delay: 0.5s;
}

.fire-3 {
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 1s;
}

@keyframes fire-flicker {
    0%, 100% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
    25% {
        opacity: 0.8;
        transform: scale(1.1) rotate(-5deg);
    }
    50% {
        opacity: 0.9;
        transform: scale(0.95) rotate(5deg);
    }
    75% {
        opacity: 0.85;
        transform: scale(1.05) rotate(-3deg);
    }
}

@keyframes glow-pulse {
    0%, 100% {
        text-shadow: 
            0 0 10px rgba(0, 255, 0, 0.8),
            0 0 20px rgba(0, 255, 0, 0.6),
            0 0 30px rgba(0, 255, 0, 0.4);
    }
    50% {
        text-shadow: 
            0 0 20px rgba(0, 255, 0, 1),
            0 0 30px rgba(0, 255, 0, 0.8),
            0 0 40px rgba(0, 255, 0, 0.6),
            0 0 50px rgba(255, 215, 0, 0.4);
    }
}

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

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 20px;
    line-height: 1.6;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #00FF00 0%, #00DD00 50%, #00FF00 100%);
    background-size: 200% 100%;
    color: #000000;
    padding: 22px 45px;
    border-radius: 15px;
    font-size: 1.15rem;
    font-weight: 800;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border: 3px solid #00FF00;
    cursor: pointer;
    box-shadow: 
        0 8px 25px rgba(0, 255, 0, 0.4),
        0 0 20px rgba(0, 255, 0, 0.2),
        inset 0 -3px 0 rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    z-index: 10;
    margin: 25px 0;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    transition: left 0.6s ease;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button::after {
    content: '→';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%) translateX(0);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    font-size: 1.5rem;
}

.cta-button:hover::after {
    opacity: 1;
    transform: translateY(-50%) translateX(5px);
}

.cta-button:hover {
    background-position: 100% 0;
    transform: translateY(-3px) scale(1.02);
    padding-right: 55px;
    box-shadow: 
        0 15px 40px rgba(0, 255, 0, 0.6),
        0 0 40px rgba(0, 255, 0, 0.4),
        inset 0 -3px 0 rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border-color: #00FF88;
}

.cta-button:active {
    transform: translateY(-1px) scale(1);
    box-shadow: 
        0 5px 15px rgba(0, 255, 0, 0.5),
        0 0 20px rgba(0, 255, 0, 0.3),
        inset 0 -2px 0 rgba(0, 0, 0, 0.2);
}

.cta-button.pulse {
    animation: pulse-glow 2s ease-in-out infinite;
}

.cta-button.large {
    padding: 28px 55px;
    font-size: 1.4rem;
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 
            0 8px 25px rgba(0, 255, 0, 0.4),
            0 0 20px rgba(0, 255, 0, 0.2),
            inset 0 -3px 0 rgba(0, 0, 0, 0.2);
    }
    50% {
        box-shadow: 
            0 12px 35px rgba(0, 255, 0, 0.6),
            0 0 35px rgba(0, 255, 0, 0.4),
            inset 0 -3px 0 rgba(0, 0, 0, 0.2),
            0 0 0 4px rgba(0, 255, 0, 0.2);
    }
}

.hero-badge {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.hero-badge span {
    background: rgba(0, 255, 0, 0.1);
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    border: 1px solid var(--primary-color);
}

/* Fade in animations */
.fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
}

.fade-in-up-delay {
    animation: fadeInUp 0.8s ease-out 0.2s forwards;
    opacity: 0;
}

.fade-in-up-delay-2 {
    animation: fadeInUp 0.8s ease-out 0.4s forwards;
    opacity: 0;
}

.fade-in-up-delay-3 {
    animation: fadeInUp 0.8s ease-out 0.6s forwards;
    opacity: 0;
}

.fade-in-up-delay-4 {
    animation: fadeInUp 0.8s ease-out 0.8s forwards;
    opacity: 0;
}

.fade-in-up-delay-5 {
    animation: fadeInUp 0.8s ease-out 1s forwards;
    opacity: 0;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.image-placeholder {
    background: linear-gradient(135deg, #2A2A2A 0%, #1A1A1A 100%);
    border: 3px dashed var(--primary-color);
    border-radius: 20px;
    width: 100%;
    max-width: 500px;
    aspect-ratio: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--primary-color);
    font-weight: 600;
}

.image-placeholder.small {
    max-width: 250px;
    aspect-ratio: 3/4;
}

.placeholder-text {
    text-align: center;
    padding: 20px;
}

/* Stats Section */
.stats {
    background: var(--accent-color);
    padding: 60px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.stats::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: stats-shine 10s linear infinite;
}

@keyframes stats-shine {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.section-subtitle {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 40px;
    color: var(--text-dark);
    position: relative;
    z-index: 1;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.stat-card {
    text-align: center;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: default;
    position: relative;
    z-index: 1;
}

.stat-card:hover {
    transform: translateY(-10px) scale(1.1);
}

.stat-card:hover .stat-number {
    animation: number-bounce 0.6s ease;
}

@keyframes number-bounce {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
}

.stat-number {
    font-size: 4rem;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1;
}

.stat-label {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    text-transform: uppercase;
    margin-top: 10px;
}

/* About Section */
.about {
    padding: 100px 0;
    background: var(--bg-light);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
    object-fit: cover;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 30px;
    line-height: 1.2;
}

.about-description p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.8;
}

.about-highlight {
    background: var(--gradient-dark);
    color: var(--text-light);
    padding: 30px;
    border-radius: 15px;
    margin-top: 30px;
    font-style: italic;
    font-size: 1.2rem;
    border-left: 5px solid var(--primary-color);
}

/* Benefits Section */
.benefits {
    padding: 100px 0;
    background: var(--bg-dark);
    color: var(--text-light);
    text-align: center;
}

.benefits-intro {
    max-width: 800px;
    margin: 0 auto 60px;
    font-size: 1.2rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px 30px;
    border-radius: 15px;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    border: 2px solid transparent;
    will-change: transform;
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 255, 0, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.benefit-card:hover::before {
    opacity: 1;
    animation: rotate-gradient 3s linear infinite;
}

.benefit-card:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: var(--primary-color);
    background: rgba(0, 255, 0, 0.15);
    box-shadow: 
        0 20px 40px rgba(0, 255, 0, 0.3),
        0 0 20px rgba(0, 255, 0, 0.2);
}

@keyframes rotate-gradient {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Scroll animations - Enhanced */
.scroll-animate {
    opacity: 0;
    transform: translateY(80px) scale(0.9) rotateX(10deg);
    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform, opacity;
    filter: blur(5px);
}

.scroll-animate.animated {
    opacity: 1;
    transform: translateY(0) scale(1) rotateX(0deg);
    filter: blur(0);
}

.scroll-animate:nth-child(1) { 
    transition-delay: 0.1s;
}
.scroll-animate:nth-child(2) { 
    transition-delay: 0.2s;
}
.scroll-animate:nth-child(3) { 
    transition-delay: 0.3s;
}
.scroll-animate:nth-child(4) { 
    transition-delay: 0.4s;
}
.scroll-animate:nth-child(5) { 
    transition-delay: 0.5s;
}
.scroll-animate:nth-child(6) { 
    transition-delay: 0.6s;
}

/* Alternative animations for variety */
.scroll-animate-left {
    opacity: 0;
    transform: translateX(-100px) rotate(-5deg);
    transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.scroll-animate-left.animated {
    opacity: 1;
    transform: translateX(0) rotate(0deg);
}

.scroll-animate-right {
    opacity: 0;
    transform: translateX(100px) rotate(5deg);
    transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.scroll-animate-right.animated {
    opacity: 1;
    transform: translateX(0) rotate(0deg);
}

.scroll-animate-zoom {
    opacity: 0;
    transform: scale(0.5);
    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.scroll-animate-zoom.animated {
    opacity: 1;
    transform: scale(1);
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    .scroll-animate,
    .fade-in-up,
    .fade-in-up-delay,
    .fade-in-up-delay-2,
    .fade-in-up-delay-3,
    .fade-in-up-delay-4,
    .fade-in-up-delay-5 {
        animation: none;
        transition: none;
        opacity: 1;
        transform: none;
    }
    
    .fire {
        animation: none;
    }
    
    .fire-wrapper {
        animation: none;
    }
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    display: inline-block;
}

.benefit-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.benefit-card p {
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.9;
}

/* For Who Section */
.for-who {
    padding: 100px 0;
    background: var(--bg-light);
    text-align: center;
}

.for-who-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.for-who-item {
    background: white;
    padding: 30px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 20px;
    text-align: left;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform;
    position: relative;
    overflow: hidden;
}

.for-who-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 0, 0.2), transparent);
    transition: left 0.6s ease;
}

.for-who-item:hover::after {
    left: 100%;
}

.for-who-item:hover {
    transform: translateX(20px) scale(1.05);
    box-shadow: 
        0 15px 40px rgba(0, 255, 0, 0.3),
        0 0 0 3px rgba(0, 255, 0, 0.2);
}

.for-who-item:hover .checkmark {
    transform: rotate(360deg) scale(1.2);
}

.checkmark {
    background: var(--gradient-primary);
    color: var(--text-dark);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 800;
    font-size: 1.5rem;
    flex-shrink: 0;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.for-who-item p {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}

/* Transformation Section */
.transformation {
    padding: 100px 0;
    background: white;
    text-align: center;
}

.transformation-subtitle {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 50px;
}

.transformation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.transformation-card {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}

.transformation-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 255, 0, 0.2), rgba(255, 215, 0, 0.2));
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
}

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

.transformation-card:hover {
    transform: translateY(-15px) scale(1.05);
    box-shadow: 0 20px 50px rgba(0, 255, 0, 0.3);
}

.transformation-cta {
    margin-top: 60px;
}

.transformation-cta p {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 30px;
}

/* Free Section */
.free-section {
    padding: 100px 0;
    background: var(--gradient-dark);
    color: var(--text-light);
}

.free-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.free-text p {
    font-size: 1.2rem;
    margin-bottom: 25px;
    line-height: 1.8;
}

.free-highlight {
    background: rgba(0, 255, 0, 0.1);
    border: 2px solid var(--primary-color);
    border-radius: 15px;
    padding: 40px;
    margin-top: 40px;
}

.free-highlight h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.free-highlight ul {
    list-style: none;
    text-align: left;
    max-width: 500px;
    margin: 0 auto;
}

.free-highlight li {
    font-size: 1.2rem;
    margin-bottom: 15px;
    padding-left: 10px;
}

/* Sign Up Section */
.signup {
    padding: 100px 0;
    background: var(--bg-light);
}

.signup-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.signup-subtitle {
    font-size: 1.2rem;
    margin-bottom: 50px;
    line-height: 1.6;
}

.signup-form {
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 30px;
    text-align: left;
}

.form-group label {
    display: block;
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.form-group input {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #ddd;
    border-radius: 10px;
    font-size: 1rem;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s ease;
}

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

.signup-form button {
    width: 100%;
    margin-top: 20px;
}

.form-footer {
    margin-top: 30px;
    font-size: 0.95rem;
    color: #666;
}

.form-footer p {
    margin: 10px 0;
}

.success-message {
    background: var(--gradient-primary);
    color: var(--text-dark);
    padding: 50px;
    border-radius: 20px;
    text-align: center;
}

.success-icon {
    background: white;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 3rem;
    margin: 0 auto 30px;
    font-weight: 800;
}

.success-message h3 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.success-message p {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

/* Guarantee Section */
.guarantee {
    padding: 100px 0;
    background: var(--accent-color);
    text-align: center;
}

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

.guarantee-text {
    font-size: 1.2rem;
    margin-bottom: 40px;
    line-height: 1.8;
}

.guarantee-box {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.guarantee-box h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
}

.guarantee-box ul {
    list-style: none;
    text-align: left;
    max-width: 600px;
    margin: 0 auto;
}

.guarantee-box li {
    font-size: 1.1rem;
    margin-bottom: 15px;
    padding-left: 10px;
}

/* FAQ Section */
.faq {
    padding: 100px 0;
    background: white;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.faq-item {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 15px;
    border-left: 5px solid var(--primary-color);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    position: relative;
}

.faq-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 0;
    background: var(--accent-color);
    transition: height 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item:hover::before {
    height: 100%;
}

.faq-item:hover {
    transform: translateX(10px);
    background: white;
    box-shadow: 0 10px 30px rgba(0, 255, 0, 0.2);
}

.faq-item h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.faq-item p {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
}

/* Final CTA */
.final-cta {
    padding: 100px 0;
    background: var(--gradient-dark);
    color: var(--text-light);
    text-align: center;
}

.final-cta-text {
    font-size: 1.5rem;
    margin-bottom: 40px;
    line-height: 1.6;
}

/* Footer */
.footer {
    background: var(--secondary-color);
    color: var(--text-light);
    padding: 40px 0;
    text-align: center;
}

.footer p {
    margin: 10px 0;
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .hero-text {
        text-align: center;
    }

    .hero-title {
        font-size: 3.5rem;
        align-items: center;
    }

    /* Hide desktop image on tablet */
    .hero-image-desktop {
        display: none;
    }
    
    /* Show mobile image on tablet */
    .hero-image-mobile {
        display: flex;
        order: 2;
        margin: 20px auto;
    }
    
    .hero-img-mobile {
        max-width: 180px;
        opacity: 0.5;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .title-main {
        font-size: 3.5rem;
    }

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

    .fire {
        font-size: 1.5rem;
    }

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

    .benefits-grid,
    .transformation-grid,
    .for-who-grid,
    .faq-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 60px 0;
        min-height: 100vh;
    }

    .hero-content {
        grid-template-columns: 1fr;
    }

    .hero-text {
        text-align: center;
    }

    .hero-title {
        font-size: 2.5rem;
        align-items: center;
    }

    /* Hide desktop image on mobile */
    .hero-image-desktop {
        display: none;
    }
    
    /* Show mobile image */
    .hero-image-mobile {
        display: flex;
        order: 2;
        margin: 15px auto;
    }
    
    .hero-img-mobile {
        max-width: 160px;
        opacity: 0.4;
    }

    .title-main {
        font-size: 2.5rem;
    }

    .title-line {
        font-size: 1.2rem;
        letter-spacing: 3px;
    }

    .fire {
        font-size: 1.2rem;
    }

    .fire-1 {
        top: -15px;
        left: -20px;
    }

    .fire-2 {
        top: -10px;
        right: -25px;
    }

    .fire-3 {
        bottom: -20px;
    }

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

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

    .cta-button {
        padding: 15px 30px;
        font-size: 1rem;
    }

    .cta-button.large {
        padding: 18px 35px;
        font-size: 1.1rem;
    }

    .signup-form {
        padding: 30px 20px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .benefits-grid,
    .for-who-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .hero-badge {
        flex-direction: column;
        gap: 10px;
        justify-content: center;
    }

    .hero-badge span {
        display: block;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 40px 0;
        min-height: 100vh;
    }

    .hero-content {
        grid-template-columns: 1fr;
    }

    .hero-text {
        text-align: center;
    }

    .hero-title {
        font-size: 2rem;
        align-items: center;
    }

    /* Hide desktop image on small mobile */
    .hero-image-desktop {
        display: none;
    }
    
    /* Show mobile image */
    .hero-image-mobile {
        display: flex;
        order: 2;
        margin: 15px auto;
    }
    
    .hero-img-mobile {
        max-width: 140px;
        opacity: 0.35;
    }

    .title-main {
        font-size: 2rem;
    }

    .title-line {
        font-size: 1rem;
        letter-spacing: 2px;
    }

    .fire {
        font-size: 1rem;
    }

    .fire-1 {
        top: -10px;
        left: -15px;
    }

    .fire-2 {
        top: -8px;
        right: -18px;
    }

    .fire-3 {
        bottom: -15px;
    }

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

    .hero-description {
        font-size: 0.95rem;
    }

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

    .benefit-card,
    .for-who-item {
        padding: 25px 20px;
    }

    .for-who-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .for-who-item {
        min-width: auto;
    }

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

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

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Section animations */
section {
    position: relative;
}

