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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
    background: 
        linear-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px),
        #000;
    background-size: 25px 25px;
    color: #fff;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

.main-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: linear-gradient(135deg, #000 0%, #1a1a1a 100%);
    position: relative;
    z-index: 1;
}

.content-wrapper {
    max-width: 1400px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.left-content {
    padding: 40px;
}

.brand {
    margin-bottom: 40px;
}

.brand-title {
    font-size: 4rem;
    font-weight: 700;
    letter-spacing: 8px;
    background: linear-gradient(45deg, #fff, #ccc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.brand-subtitle {
    font-size: 1rem;
    color: #888;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.main-text {
    margin-bottom: 40px;
}

.highlight-text {
    font-size: 20px;
    line-height: 1.4;
    margin-bottom: 30px;
}

.accent {
    color: #4CAF50;
    font-weight: 700;
}

/* Sparks Animation */
.sparks {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.spark {
    position: absolute;
    width: 3px;
    height: 3px;
    background: radial-gradient(circle, #ff6b35 0%, #f7931e 50%, transparent 100%);
    border-radius: 50%;
    animation: sparkFly linear infinite;
    opacity: 0;
}

.spark:nth-child(odd) {
    background: radial-gradient(circle, #ff4757 0%, #ff6b35 50%, transparent 100%);
}

.spark:nth-child(3n) {
    background: radial-gradient(circle, #ffa502 0%, #ff6348 50%, transparent 100%);
}

@keyframes sparkFly {
    0% {
        opacity: 1;
        transform: translateY(100vh) translateX(0) scale(0.5);
    }
    10% {
        opacity: 1;
        transform: translateY(90vh) translateX(20px) scale(1);
    }
    50% {
        opacity: 0.8;
        transform: translateY(50vh) translateX(-30px) scale(0.8);
    }
    80% {
        opacity: 0.4;
        transform: translateY(20vh) translateX(40px) scale(0.5);
    }
    100% {
        opacity: 0;
        transform: translateY(-10vh) translateX(-20px) scale(0.2);
    }
}

.benefits p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 25px;
}

.benefits strong {
    color: #fff;
    font-weight: 600;
}

.obs {
    color: #4CAF50;
    background: rgba(76, 175, 80, 0.1);
    padding: 15px;
    border-radius: 8px;
    border-left: 3px solid #4CAF50;
}

.success-stories {
    color: #ffa502;
    font-size: 14px;
    text-align: center;
    background: rgba(255, 165, 2, 0.1);
    padding: 10px;
    border-radius: 8px;
    margin: 20px 0;
}

.cta-text {
    margin-top: 30px;
    text-align: center;
    background: rgba(255, 107, 53, 0.1);
    padding: 20px;
    border-radius: 10px;
    border: 1px solid rgba(255, 107, 53, 0.3);
}

.cta-text em {
    font-style: normal;
    color: #ff6b35;
    font-weight: 600;
}

.emoji {
    display: block;
    font-size: 28px;
    margin-top: 15px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

.privacy-note {
    font-size: 12px;
    color: #888;
    text-align: center;
    margin-top: 15px;
}

.main-button {
    background: linear-gradient(45deg, #4CAF50, #45a049);
    color: white;
    border: none;
    padding: 18px 40px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 20px rgba(76, 175, 80, 0.3);
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: center;
    min-width: 300px;
}

.main-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(76, 175, 80, 0.4);
    background: linear-gradient(45deg, #45a049, #4CAF50);
}

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

.right-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-container {
    position: relative;
    width: 100%;
    max-width: 500px;
}

.hero-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
}

/* 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(5px);
}

.modal-content {
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    margin: 5% auto;
    padding: 40px;
    border-radius: 20px;
    width: 90%;
    max-width: 500px;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7);
    border: 1px solid #333;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    position: absolute;
    right: 20px;
    top: 15px;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close:hover {
    color: #fff;
}

.modal-content h3 {
    color: #fff;
    margin-bottom: 10px;
    font-size: 24px;
    font-weight: 700;
}

.modal-content p {
    color: #ccc;
    margin-bottom: 30px;
    font-size: 16px;
}

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

.form-group input {
    width: 100%;
    padding: 15px;
    background: #333;
    border: 1px solid #444;
    border-radius: 8px;
    color: #fff;
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #4CAF50;
    box-shadow: 0 0 10px rgba(76, 175, 80, 0.3);
}

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

.submit-button {
    width: 100%;
    background: linear-gradient(45deg, #25D366, #22c55e);
    color: white;
    border: none;
    padding: 18px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

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

/* 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;
    }
    
    .brand-title {
        font-size: 3rem;
        letter-spacing: 6px;
    }
    
    .left-content {
        padding: 20px;
    }
}

@media (max-width: 768px) {
    .main-container {
        padding: 10px;
    }
    
    .brand-title {
        font-size: 2.5rem;
        letter-spacing: 4px;
    }
    
    .highlight-text {
        font-size: 18px;
    }
    
    .benefits p {
        font-size: 14px;
    }
    
    .main-button {
        font-size: 16px;
        padding: 15px 30px;
        min-width: 250px;
    }
    
    .modal-content {
        padding: 30px 20px;
        margin: 10% auto;
    }
}

@media (max-width: 480px) {
    .brand-title {
        font-size: 2rem;
        letter-spacing: 3px;
    }
    
    .highlight-text {
        font-size: 16px;
    }
    
    .main-button {
        font-size: 14px;
        padding: 12px 25px;
        min-width: 200px;
    }
    
    .modal-content {
        width: 95%;
        padding: 25px 15px;
    }
}