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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    overflow-x: hidden;
}

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

/* Typography */
h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
    font-size: clamp(1.2rem, 2.5vw, 1.7rem);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, #FF6B35, #F7931E);
    color: white;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.4);
}

.btn-secondary {
    background: #2D3748;
    color: white;
}

.btn-secondary:hover {
    background: #4A5568;
    transform: translateY(-2px);
}

.btn-large {
    padding: 20px 40px;
    font-size: 18px;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

.btn-arrow {
    transition: transform 0.3s ease;
}

.btn:hover .btn-arrow {
    transform: translateX(4px);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.9), rgba(118, 75, 162, 0.9));
    z-index: 1;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: 25px;
    color: white;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-title {
    color: white;
    margin-bottom: 20px;
    font-weight: 900;
    letter-spacing: -0.02em;
}

.highlight {
    background: linear-gradient(135deg, #FF6B35, #F7931E);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    margin-bottom: 40px;
    line-height: 1.5;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    color: #FF6B35;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 900;
}

.stat-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.urgency-text {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    font-size: 14px;
    text-align: center;
}

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.floating-card {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
}

.card-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.card-icon {
    font-size: 24px;
}

.card-text {
    font-weight: 600;
    color: #2D3748;
}

/* Challenge Section */
.challenge-section {
    padding: 100px 0;
    background: #f8fafc;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-header h2 {
    color: #2D3748;
    margin-bottom: 20px;
}

.section-header p {
    color: #718096;
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
}

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

.benefit-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.benefit-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.benefit-card h3 {
    color: #2D3748;
    margin-bottom: 15px;
}

.benefit-card p {
    color: #718096;
    line-height: 1.6;
}

.transformation-highlight {
    background: linear-gradient(135deg, #667eea, #764ba2);
    padding: 60px 40px;
    border-radius: 25px;
    margin-bottom: 60px;
}

.transformation-highlight h3 {
    color: white;
    text-align: center;
    margin-bottom: 40px;
    font-size: clamp(1.5rem, 3vw, 2rem);
}

.before-after {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.before, .after {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.before h4, .after h4 {
    color: white;
    margin-bottom: 20px;
    font-size: 18px;
}

.before ul, .after ul {
    list-style: none;
}

.before li, .after li {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

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

/* Testimonials Section */
.testimonials-section {
    padding: 100px 0;
    background: white;
}

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

.testimonial-card {
    background: #f8fafc;
    padding: 30px;
    border-radius: 20px;
    border-left: 5px solid #FF6B35;
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

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

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-info h4 {
    color: #2D3748;
    margin-bottom: 5px;
}

.testimonial-role {
    color: #718096;
    font-size: 14px;
}

.stars {
    color: #FFD700;
    margin-bottom: 15px;
    font-size: 18px;
}

.testimonial-content p {
    color: #4A5568;
    font-style: italic;
    line-height: 1.6;
}

/* Registration Section */
.registration-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #2D3748, #4A5568);
}

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

.registration-info h2 {
    color: white;
    margin-bottom: 20px;
}

.registration-info > p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 18px;
    margin-bottom: 40px;
}

.urgency-box {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(255, 107, 53, 0.1);
    padding: 25px;
    border-radius: 15px;
    border: 1px solid rgba(255, 107, 53, 0.3);
    margin-bottom: 30px;
}

.urgency-icon {
    font-size: 32px;
}

.urgency-content h4 {
    color: #FF6B35;
    margin-bottom: 8px;
}

.urgency-content p {
    color: rgba(255, 255, 255, 0.9);
}

.guarantee-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(72, 187, 120, 0.1);
    padding: 15px 20px;
    border-radius: 10px;
    border: 1px solid rgba(72, 187, 120, 0.3);
}

.badge-icon {
    font-size: 20px;
}

.badge-text {
    color: #48BB78;
    font-weight: 600;
}

.registration-form-container {
    background: white;
    padding: 40px;
    border-radius: 25px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.registration-form h3 {
    color: #2D3748;
    margin-bottom: 10px;
}

.form-subtitle {
    color: #718096;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    color: #2D3748;
    font-weight: 600;
    margin-bottom: 8px;
}

.form-group input {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #E2E8F0;
    border-radius: 10px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #FF6B35;
}

.form-consent {
    margin-bottom: 30px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    color: #4A5568;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
}

.form-note {
    text-align: center;
    color: #718096;
    font-size: 14px;
    margin-top: 15px;
}

/* Success Message */
.success-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.success-content {
    background: white;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    max-width: 500px;
    margin: 20px;
}

.success-icon {
    font-size: 64px;
    margin-bottom: 20px;
}

.success-content h3 {
    color: #2D3748;
    margin-bottom: 15px;
}

.success-content p {
    color: #718096;
    margin-bottom: 15px;
}

/* Footer */
.footer {
    background: #1A202C;
    padding: 50px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.footer-brand h4 {
    color: white;
    margin-bottom: 10px;
}

.footer-brand p {
    color: #A0AEC0;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: #A0AEC0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #FF6B35;
}

.footer-bottom {
    border-top: 1px solid #2D3748;
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    color: #A0AEC0;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .hero-stats {
        justify-content: center;
        gap: 20px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .before-after {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .registration-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .registration-form-container {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 60px 0;
    }
    
    .challenge-section,
    .testimonials-section,
    .registration-section {
        padding: 60px 0;
    }
    
    .btn {
        padding: 14px 28px;
        font-size: 14px;
    }
    
    .btn-large {
        padding: 18px 32px;
        font-size: 16px;
    }
    
    .transformation-highlight {
        padding: 40px 20px;
    }
    
    .urgency-box {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
}