* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
    color: #fff;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

/* Particles Background */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: radial-gradient(circle, #00d4ff 0%, #0099cc 100%);
    border-radius: 50%;
    animation: particleFloat linear infinite;
    opacity: 0;
}

@keyframes particleFloat {
    0% {
        opacity: 0;
        transform: translateY(100vh) rotate(0deg);
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: translateY(-100px) rotate(360deg);
    }
}

.main-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    position: relative;
    z-index: 2;
}

.content-wrapper {
    max-width: 1400px;
    width: 100%;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.left-content {
    padding: 20px;
}

.expert-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    color: #000;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.badge-icon {
    font-size: 14px;
}

.brand {
    margin-bottom: 40px;
}

.expert-name {
    font-size: 4.5rem;
    font-weight: 900;
    letter-spacing: 8px;
    background: linear-gradient(135deg, #ffffff 0%, #00d4ff 50%, #0099cc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
    text-shadow: 0 0 30px rgba(0, 212, 255, 0.3);
}

.expert-title {
    font-size: 1.1rem;
    color: #00d4ff;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.main-content {
    space-y: 40px;
}

.highlight-section {
    margin-bottom: 40px;
}

.main-headline {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.highlight {
    color: #ffd700;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.subtitle {
    font-size: 1.2rem;
    color: #b8b8b8;
    line-height: 1.6;
    font-weight: 300;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 40px 0;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 15px;
    border: 1px solid rgba(0, 212, 255, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 212, 255, 0.4);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.2);
}

.benefit-icon {
    font-size: 2rem;
    min-width: 50px;
}

.benefit-text strong {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
}

.benefit-text span {
    font-size: 0.9rem;
    color: #00d4ff;
}

.proof-section {
    background: linear-gradient(45deg, rgba(0, 212, 255, 0.1), rgba(0, 153, 204, 0.1));
    padding: 30px;
    border-radius: 20px;
    border-left: 4px solid #00d4ff;
    margin: 40px 0;
}

.proof-text {
    font-size: 1rem;
    line-height: 1.8;
    color: #e0e0e0;
}

.cta-section {
    text-align: center;
    margin-top: 50px;
}

.urgency-text {
    font-size: 1.1rem;
    color: #ffd700;
    margin-bottom: 25px;
    font-weight: 600;
}

.urgency-text span {
    color: #ff6b6b;
    font-weight: 700;
}

.main-cta {
    background: linear-gradient(45deg, #00d4ff, #0099cc);
    color: white;
    border: none;
    padding: 20px 50px;
    font-size: 1.3rem;
    font-weight: 700;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.4);
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: center;
    margin: 0 auto 20px;
    min-width: 350px;
}

.main-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 212, 255, 0.6);
    background: linear-gradient(45deg, #0099cc, #00d4ff);
}

.cta-icon {
    font-size: 1.5rem;
}

.guarantee {
    font-size: 0.9rem;
    color: #b8b8b8;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.guarantee-icon {
    color: #4ade80;
    font-size: 1.1rem;
}

.right-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.hero-image-container {
    width: 100%;
    max-width: 450px;
}

.image-frame {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
}

.hero-image {
    width: 100%;
    height: auto;
    display: block;
}

.image-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
}

.achievement-badge {
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    color: #000;
    padding: 15px 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

.achievement-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 900;
    line-height: 1;
}

.achievement-text {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    padding: 25px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    width: 100%;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 15px;
    font-style: italic;
    color: #e0e0e0;
}

.testimonial-author strong {
    color: #00d4ff;
    font-weight: 600;
}

.testimonial-author span {
    color: #b8b8b8;
    font-size: 0.9rem;
    display: block;
    margin-top: 5px;
}

/* 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.8);
    backdrop-filter: blur(8px);
    overflow-y: auto;
}

.modal-content {
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    margin: 3% auto;
    padding: 0;
    border-radius: 25px;
    width: 90%;
    max-width: 600px;
    position: relative;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.7);
    border: 1px solid rgba(0, 212, 255, 0.3);
    overflow: hidden;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
}

.close {
    color: #aaa;
    position: absolute;
    right: 25px;
    top: 20px;
    font-size: 30px;
    font-weight: bold;
    cursor: pointer;
    z-index: 1001;
    transition: color 0.3s ease;
}

.close:hover {
    color: #fff;
}

.modal-header {
    background: linear-gradient(45deg, #00d4ff, #0099cc);
    padding: 40px 40px 30px;
    text-align: center;
    color: white;
}

.modal-header h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.modal-header p {
    font-size: 1.1rem;
    opacity: 0.9;
    line-height: 1.5;
}

form {
    padding: 40px;
    overflow-y: auto;
    flex: 1;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: #00d4ff;
    margin-bottom: 8px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(0, 212, 255, 0.3);
    border-radius: 12px;
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.form-group select {
    background: rgba(26, 26, 46, 0.9);
    color: #fff;
}

.form-group select option {
    background: #1a1a2e;
    color: #fff;
    padding: 10px;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #00d4ff;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
}

.form-group input::placeholder {
    color: #888;
}

.submit-button {
    width: 100%;
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    color: #000;
    border: none;
    padding: 18px;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.4);
}

.submit-icon {
    font-size: 1.3rem;
}

.modal-footer {
    text-align: center;
}

.privacy-note {
    font-size: 0.8rem;
    color: #888;
    margin-bottom: 10px;
}

.bonus-note {
    font-size: 0.9rem;
    color: #ffd700;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
        display: flex;
        flex-direction: column;
    }
    
    .left-content {
        order: 2;
    }
    
    .right-content {
        order: 1;
    }
    
    .expert-name {
        font-size: 3.5rem;
        letter-spacing: 6px;
    }
    
    .main-headline {
        font-size: 2rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .main-container {
        padding: 20px 10px;
    }
    
    .expert-name {
        font-size: 2.8rem;
        letter-spacing: 4px;
    }
    
    .main-headline {
        font-size: 1.8rem;
    }
    
    .main-cta {
        min-width: 280px;
        font-size: 1.1rem;
        padding: 16px 30px;
    }
    
    .modal-content {
        margin: 2% auto;
        width: 95%;
        max-height: 95vh;
    }
    
    .modal-header,
    form {
        padding: 30px 25px;
    }
}

@media (max-width: 480px) {
    .expert-name {
        font-size: 2.2rem;
        letter-spacing: 3px;
    }
    
    .main-headline {
        font-size: 1.5rem;
    }
    
    .benefit-item {
        padding: 15px;
    }
    
    .benefit-icon {
        font-size: 1.5rem;
        min-width: 40px;
    }
}