* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 50%, #0a0e27 100%);
    color: #ffffff;
    min-height: 100vh;
    display: grid;
    justify-content: center;
    padding: 20px;
}

.container {
    max-width: 1400px;
    width: 100%;
    background: rgba(15, 20, 40, 0.8);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: center;
}

.hero-content {
    padding: 60px 50px;
    order: 1;
}

.hero-image-wrapper {
    order: 2;
}

.hero-image {
    width: 100%;
    height: 100%;
    min-height: 500px;
    object-fit: cover;
    display: block;
}

.logo {
    max-width: 200px;
    height: auto;
    margin-bottom: 30px;
}

.header {
    background: transparent;
    padding: 0;
    text-align: left;
    position: relative;
    overflow: visible;
}

    .header h1 {
        font-size: 2.8em;
        margin-bottom: 15px;
        position: relative;
        z-index: 1;
        font-weight: 700;
        letter-spacing: 1px;
        color: #ffffff;
    }

    .header p {
        font-size: 1.2em;
        opacity: 0.9;
        position: relative;
        z-index: 1;
        color: #cbd5e1;
    }

.content {
    padding: 50px 40px;
}

.features {
    margin-bottom: 40px;
}

    .features h2 {
        font-size: 1.8em;
        margin-bottom: 25px;
        color: #60a5fa;
        text-align: center;
    }

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.feature-item {
    background: rgba(30, 58, 138, 0.3);
    padding: 25px;
    border-radius: 12px;
    border: 1px solid rgba(96, 165, 250, 0.3);
    transition: all 0.3s ease;
}

    .feature-item:hover {
        background: rgba(30, 58, 138, 0.5);
        transform: translateY(-5px);
        border-color: rgba(96, 165, 250, 0.6);
    }

    .feature-item h3 {
        font-size: 1.2em;
        margin-bottom: 10px;
        color: #93c5fd;
    }

    .feature-item p {
        font-size: 0.95em;
        color: #cbd5e1;
        line-height: 1.6;
    }

    .feature-item ul {
        list-style: none;
        margin-top: 10px;
    }

    .feature-item li {
        padding: 5px 0;
        font-size: 0.9em;
        color: #cbd5e1;
        display: flex;
        align-items: flex-start;
    }

        .feature-item li::before {
            content: '→';
            margin-right: 8px;
            color: #60a5fa;
            flex-shrink: 0;
        }

.benefits {
    background: rgba(30, 58, 138, 0.2);
    padding: 30px;
    border-radius: 12px;
    border-left: 4px solid #3b82f6;
    margin-bottom: 30px;
}

    .benefits h3 {
        font-size: 1.3em;
        margin-bottom: 15px;
        color: #93c5fd;
    }

    .benefits ul {
        list-style: none;
    }

    .benefits li {
        padding: 12px 0;
        font-size: 1.05em;
        display: flex;
        align-items: center;
    }

        .benefits li::before {
            content: '✓';
            display: inline-block;
            width: 30px;
            height: 30px;
            background: linear-gradient(135deg, #3b82f6, #60a5fa);
            border-radius: 50%;
            margin-right: 15px;
            text-align: center;
            line-height: 30px;
            font-weight: bold;
            flex-shrink: 0;
        }

.important-notice {
    background: rgba(239, 68, 68, 0.1);
    border: 2px solid rgba(239, 68, 68, 0.5);
    border-radius: 12px;
    padding: 25px;
    margin: 30px 0;
}

    .important-notice h3 {
        color: #fca5a5;
        font-size: 1.3em;
        margin-bottom: 15px;
    }

    .important-notice p {
        color: #cbd5e1;
        line-height: 1.7;
        margin-bottom: 10px;
    }

    .important-notice strong {
        color: #fca5a5;
    }

.pricing {
    background: rgba(15, 20, 40, 0.9);
    padding: 40px;
    border-radius: 12px;
    margin-top: 40px;
    border: 1px solid rgba(96, 165, 250, 0.3);
}

    .pricing h2 {
        font-size: 1.8em;
        margin-bottom: 25px;
        color: #60a5fa;
        text-align: center;
    }

.form-group {
    margin-bottom: 20px;
}

    .form-group label {
        display: block;
        margin-bottom: 8px;
        font-size: 1em;
        color: #cbd5e1;
        font-weight: 500;
    }

    .form-group .required {
        color: #ef4444;
        margin-left: 2px;
    }

    .form-group input {
        width: 100%;
        padding: 12px 15px;
        background: rgba(30, 58, 138, 0.2);
        border: 1px solid rgba(96, 165, 250, 0.3);
        border-radius: 8px;
        color: #ffffff;
        font-size: 1em;
        transition: all 0.3s ease;
    }

        .form-group input:focus {
            outline: none;
            border-color: #60a5fa;
            background: rgba(30, 58, 138, 0.3);
            box-shadow: 0 0 0 3px rgba(96, 165, 250, 0.1);
        }

        .form-group input::placeholder {
            color: #64748b;
        }

        .form-group input.invalid {
            border-color: #ef4444;
        }

.error-message {
    display: block;
    color: #ef4444;
    font-size: 0.85em;
    margin-top: 5px;
    min-height: 18px;
}

.info-message {
    color: #93c5fd;
    font-size: 0.9em;
    margin-top: 8px;
    font-style: italic;
}

.price-breakdown {
    margin-bottom: 25px;
}

.price-row {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 1.05em;
}

    .price-row:last-child {
        border-bottom: none;
    }

    .price-row.total {
        font-size: 1.5em;
        font-weight: bold;
        color: #60a5fa;
        padding-top: 20px;
        border-top: 2px solid rgba(96, 165, 250, 0.5);
        margin-top: 10px;
    }

.cta-button {
    width: 100%;
    padding: 20px;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    border: none;
    border-radius: 12px;
    color: white;
    font-size: 1.3em;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

    .cta-button::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: linear-gradient( 45deg, transparent 30%, rgba(255, 215, 0, 0.8) 50%, transparent 70% );
        animation: goldGlitter 3s infinite;
    }

@keyframes goldGlitter {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }

    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

.cta-button span {
    position: relative;
    z-index: 1;
}

.cta-button:disabled {
    background: linear-gradient(135deg, #374151 0%, #4b5563 100%);
    cursor: not-allowed;
    opacity: 0.5;
}

    .cta-button:disabled::before {
        display: none;
    }

.cta-button:hover:not(:disabled) {
    background: linear-gradient(135deg, #2563eb 0%, #60a5fa 100%);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.4);
}

.checkbox-container {
    display: flex;
    align-items: flex-start;
    margin-top: 25px;
    padding: 20px;
    background: rgba(30, 58, 138, 0.2);
    border-radius: 8px;
    border: 1px solid rgba(96, 165, 250, 0.3);
}

    .checkbox-container input[type="checkbox"] {
        width: 20px;
        height: 20px;
        margin-right: 12px;
        margin-top: 2px;
        cursor: pointer;
        flex-shrink: 0;
    }

    .checkbox-container label {
        font-size: 0.95em;
        color: #cbd5e1;
        cursor: pointer;
        line-height: 1.6;
    }

.disclaimer {
    text-align: center;
    margin-top: 20px;
    font-size: 0.85em;
    color: #94a3b8;
}

    .disclaimer a {
        color: #60a5fa;
        text-decoration: none;
        transition: color 0.3s ease;
    }

        .disclaimer a:hover {
            color: #93c5fd;
            text-decoration: underline;
        }

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    overflow-y: auto;
    padding: 20px;
}

.modal-content {
    background: rgba(15, 20, 40, 0.95);
    max-width: 900px;
    margin: 50px auto;
    padding: 40px;
    border-radius: 15px;
    border: 1px solid rgba(96, 165, 250, 0.3);
    position: relative;
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 2em;
    color: #94a3b8;
    cursor: pointer;
    background: none;
    border: none;
    transition: color 0.3s ease;
}

    .close-btn:hover {
        color: #60a5fa;
    }

.modal-content h2 {
    color: #60a5fa;
    margin-bottom: 20px;
    font-size: 2em;
}

.modal-content h3 {
    color: #93c5fd;
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 1.3em;
}

.modal-content p, .modal-content ul {
    color: #cbd5e1;
    line-height: 1.8;
    margin-bottom: 15px;
}

.modal-content ul {
    list-style-position: inside;
    padding-left: 20px;
}

.modal-content strong {
    color: #93c5fd;
}

.modal-content em {
    color: #60a5fa;
}

.modal-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

    .modal-content table td {
        padding: 10px;
        border: 1px solid rgba(96, 165, 250, 0.3);
    }

        .modal-content table td:first-child {
            font-weight: 500;
            color: #93c5fd;
        }

.progress-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.progress-container {
    width: 100%;
    max-width: 420px;
    background: rgba(15, 20, 40, 0.95);
    border: 1px solid rgba(96, 165, 250, 0.3);
    border-radius: 14px;
    padding: 28px 22px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.progress-container p {
    color: #cbd5e1;
    margin-top: 14px;
    font-size: 1rem;
}

.progress-spinner {
    width: 56px;
    height: 56px;
    border: 4px solid rgba(96, 165, 250, 0.2);
    border-top-color: #60a5fa;
    border-radius: 50%;
    margin: 0 auto;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

@media (max-width: 768px) {
    .hero-section {
        grid-template-columns: 1fr;
    }

    .hero-content {
        padding: 40px 20px;
        order: 2;
    }

    .hero-image-wrapper {
        order: 1;
    }

    .logo {
        max-width: 150px;
    }

    .hero-image {
        height: 300px;
        min-height: 300px;
    }

    .header h1 {
        font-size: 2em;
    }

    .content {
        padding: 30px 20px;
    }

    .pricing {
        padding: 25px 20px;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }
}
