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

body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background: linear-gradient(135deg, #0d1b2a 0%, #1b263b 50%, #2d3748 100%);
    color: #fff;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

/* Animated Background */
.bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    background: 
        radial-gradient(circle at 25% 25%, rgba(34, 197, 94, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(251, 191, 36, 0.08) 0%, transparent 50%);
    animation: gradientShift 8s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

.main-container {
    min-height: 100vh;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 20px 20px 40px;
    position: relative;
    z-index: 2;
}

.content-wrapper {
    max-width: 1500px;
    width: 100%;
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 40px;
    align-items: flex-start;
    margin-top: 20px;
}

.left-content {
    padding: 10px;
}

.master-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(45deg, #fbbf24, #f59e0b);
    color: #000;
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
    box-shadow: 0 8px 25px rgba(251, 191, 36, 0.4);
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

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

.brand {
    margin-bottom: 25px;
    position: relative;
}

.expert-name {
    font-size: 3.8rem;
    font-weight: 900;
    letter-spacing: 4px;
    background: linear-gradient(135deg, #ffffff 0%, #22c55e 30%, #fbbf24 70%, #ffffff 100%);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
    animation: textGlow 4s ease-in-out infinite;
    text-shadow: 0 0 40px rgba(34, 197, 94, 0.3);
}

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

.expert-title {
    font-size: 1.1rem;
    color: #22c55e;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.success-line {
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, #22c55e, #fbbf24);
    border-radius: 2px;
    animation: lineGrow 2s ease-out;
}

@keyframes lineGrow {
    0% { width: 0; }
    100% { width: 100px; }
}

.main-content {
    space-y: 30px;
}

.headline-section {
    margin-bottom: 25px;
}

.main-headline {
    font-size: 2.3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 15px;
}

.highlight {
    color: #fbbf24;
    text-shadow: 0 0 25px rgba(251, 191, 36, 0.6);
}

.subtitle {
    font-size: 1.1rem;
    color: #cbd5e1;
    line-height: 1.6;
    font-weight: 400;
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin: 25px 0;
}

.achievement-card {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.1), rgba(251, 191, 36, 0.05));
    backdrop-filter: blur(15px);
    padding: 15px;
    border-radius: 15px;
    border: 2px solid rgba(34, 197, 94, 0.3);
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

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

.achievement-card:hover::before {
    left: 100%;
}

.achievement-card:hover {
    transform: translateY(-8px);
    border-color: rgba(251, 191, 36, 0.6);
    box-shadow: 0 20px 40px rgba(34, 197, 94, 0.3);
}

.achievement-icon {
    font-size: 2rem;
    min-width: 50px;
}

.achievement-number {
    display: block;
    font-size: 1.6rem;
    font-weight: 900;
    color: #22c55e;
    line-height: 1;
}

.achievement-label {
    font-size: 0.8rem;
    color: #fbbf24;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.results-section {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.1), rgba(34, 197, 94, 0.05));
    padding: 35px;
    border-radius: 25px;
    border-left: 6px solid #fbbf24;
    margin: 45px 0;
}

.results-title {
    font-size: 1.5rem;
    color: #fbbf24;
    font-weight: 700;
    margin-bottom: 25px;
    text-align: center;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.result-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
}

.result-emoji {
    font-size: 1.8rem;
}

.result-text {
    font-weight: 600;
    color: #e2e8f0;
}

.guarantee-section {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    padding: 30px;
    border-radius: 20px;
    margin: 45px 0;
    box-shadow: 0 15px 40px rgba(34, 197, 94, 0.3);
}

.guarantee-title {
    font-size: 1.4rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 15px;
    text-align: center;
}

.guarantee-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #f0fdf4;
    text-align: center;
}

.cta-section {
    text-align: center;
    margin-top: 50px;
}

.urgency-banner {
    background: linear-gradient(45deg, #dc2626, #ef4444);
    padding: 15px 30px;
    border-radius: 50px;
    margin-bottom: 30px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    animation: urgencyPulse 2s ease-in-out infinite;
}

@keyframes urgencyPulse {
    0%, 100% { box-shadow: 0 0 20px rgba(220, 38, 38, 0.4); }
    50% { box-shadow: 0 0 30px rgba(220, 38, 38, 0.8); }
}

.urgency-icon {
    font-size: 1.3rem;
}

#spotsLeft {
    color: #fbbf24;
    font-weight: 900;
    font-size: 1.2rem;
}

.main-cta {
    background: linear-gradient(45deg, #22c55e, #16a34a);
    color: white;
    border: none;
    padding: 25px 60px;
    font-size: 1.4rem;
    font-weight: 800;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.4s ease;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 0 15px 40px rgba(34, 197, 94, 0.4);
    display: inline-flex;
    align-items: center;
    gap: 15px;
    margin: 0 auto 25px;
    position: relative;
    overflow: hidden;
}

.main-cta::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.6s ease;
}

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

.main-cta:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(34, 197, 94, 0.6);
}

.cta-icon {
    font-size: 1.6rem;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 25px;
}

.trust-badge {
    font-size: 0.9rem;
    color: #94a3b8;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.right-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.hero-container {
    width: 100%;
    max-width: 500px;
}

.image-wrapper {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}

.hero-image {
    width: 100%;
    height: auto;
    display: block;
}

.floating-stats {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.stat-bubble {
    position: absolute;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: white;
    padding: 15px 20px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(34, 197, 94, 0.4);
    animation: float 3s ease-in-out infinite;
}

.stat-1 {
    top: 20px;
    right: 20px;
    animation-delay: 0s;
}

.stat-2 {
    bottom: 20px;
    left: 20px;
    animation-delay: 1.5s;
}

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

.stat-value {
    display: block;
    font-size: 1.3rem;
    font-weight: 900;
    line-height: 1;
}

.stat-label {
    font-size: 0.8rem;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.social-proof {
    width: 100%;
}

.testimonial-carousel {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    padding: 30px;
    border-radius: 25px;
    border: 1px solid rgba(34, 197, 94, 0.3);
    margin-bottom: 25px;
}

.testimonial {
    text-align: center;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #e2e8f0;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author strong {
    color: #22c55e;
    font-weight: 700;
}

.testimonial-author span {
    color: #fbbf24;
    font-size: 0.9rem;
    display: block;
    margin-top: 5px;
    font-weight: 600;
}

.success-counter {
    text-align: center;
    background: linear-gradient(45deg, #fbbf24, #f59e0b);
    color: #000;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(251, 191, 36, 0.3);
}

.counter-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 5px;
}

.counter-text {
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
}

.modal-content {
    background: linear-gradient(135deg, #1e293b, #334155);
    margin: 5vh auto;
    padding: 0;
    border-radius: 25px;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.8);
    border: 2px solid rgba(34, 197, 94, 0.3);
}

.close {
    color: #94a3b8;
    position: absolute;
    right: 30px;
    top: 25px;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
    z-index: 1001;
    transition: all 0.3s ease;
}

.close:hover {
    color: #fff;
    transform: scale(1.1);
}

.modal-header {
    background: linear-gradient(45deg, #22c55e, #16a34a);
    padding: 30px 30px 25px;
    text-align: center;
    color: white;
}

.modal-header h3 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.modal-header p {
    font-size: 1rem;
    opacity: 0.95;
    line-height: 1.5;
}

form {
    padding: 30px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

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

.form-group label {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    color: #22c55e;
    margin-bottom: 10px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(34, 197, 94, 0.3);
    border-radius: 12px;
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    font-weight: 500;
}

.form-group select {
    background: rgba(30, 41, 59, 0.95);
    color: #fff;
}

.form-group select option {
    background: #1e293b;
    color: #fff;
    padding: 15px;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #22c55e;
    box-shadow: 0 0 25px rgba(34, 197, 94, 0.4);
}

.form-group input::placeholder {
    color: #94a3b8;
}

.submit-button {
    width: 100%;
    background: linear-gradient(45deg, #fbbf24, #f59e0b);
    color: #000;
    border: none;
    padding: 18px;
    font-size: 1.1rem;
    font-weight: 800;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
    box-shadow: 0 10px 30px rgba(251, 191, 36, 0.4);
}

.submit-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(251, 191, 36, 0.6);
}

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

.modal-footer {
    text-align: center;
}

.security-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 15px;
    color: #94a3b8;
    font-size: 0.9rem;
}

.bonus-highlight {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #fbbf24;
    font-size: 1rem;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
        display: flex;
        flex-direction: column;
    }
    
    .left-content {
        order: 2;
    }
    
    .right-content {
        order: 1;
    }
    
    .expert-name {
        font-size: 3.8rem;
        letter-spacing: 4px;
    }
    
    .main-headline {
        font-size: 2.4rem;
    }
}

@media (max-width: 768px) {
    .main-container {
        padding: 20px 15px;
    }
    
    .content-wrapper {
        display: flex;
        flex-direction: column;
    }
    
    .left-content {
        order: 2;
    }
    
    .right-content {
        order: 1;
    }
    
    .expert-name {
        font-size: 3rem;
        letter-spacing: 3px;
    }
    
    .main-headline {
        font-size: 2rem;
    }
    
    .achievements-grid,
    .results-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .modal-content {
        margin: 2vh auto;
        width: 95%;
        max-height: 96vh;
    }
    
    .modal-header,
    form {
        padding: 25px 20px;
    }
    
    .trust-badges {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .content-wrapper {
        display: flex;
        flex-direction: column;
    }
    
    .left-content {
        order: 2;
    }
    
    .right-content {
        order: 1;
    }
    
    .expert-name {
        font-size: 2.2rem;
        letter-spacing: 2px;
    }
    
    .main-headline {
        font-size: 1.6rem;
    }
    
    .achievement-card {
        padding: 20px;
    }
    
    .main-cta {
        padding: 20px 40px;
        font-size: 1.1rem;
    }
}