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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #0a1628;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Background images */
.background-images {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.85;
}

.bg-img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.5s ease;
}

.bg-img-1 {
    animation: fadeInOut 15s infinite;
}

.bg-img-2 {
    animation: fadeInOut 15s infinite 5s;
}

.bg-img-3 {
    animation: fadeInOut 15s infinite 10s;
}

@keyframes fadeInOut {
    0%, 33.33%, 100% { opacity: 0; }
    16.66%, 16.67% { opacity: 0.85; }
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

/* Header banner */
.header-banner {
    background: linear-gradient(135deg, #dc2626, #ef4444);
    color: white;
    text-align: center;
    padding: 12px 20px;
    font-weight: bold;
    font-size: 14px;
    letter-spacing: 1px;
    margin-bottom: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(220, 38, 38, 0.5);
    animation: pulse 2s infinite;
}

.warning-icon {
    margin-right: 8px;
    font-size: 16px;
}

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

/* Hero section */
.hero {
    text-align: center;
    margin-bottom: 80px;
}

.main-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.8);
    background: rgba(0, 0, 0, 0.3);
    padding: 20px;
    border-radius: 12px;
    backdrop-filter: blur(5px);
}

.highlight {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.subtitle {
    font-size: 1.2rem;
    color: #e2e8f0;
    margin-bottom: 15px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8);
    background: rgba(0, 0, 0, 0.4);
    padding: 15px;
    border-radius: 8px;
    backdrop-filter: blur(3px);
}

.key-message {
    font-size: 1.3rem;
    color: #fbbf24;
    font-weight: 600;
    margin-bottom: 40px;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8);
    background: rgba(0, 0, 0, 0.4);
    padding: 15px;
    border-radius: 8px;
    backdrop-filter: blur(3px);
    display: inline-block;
}

/* Pricing box */
.pricing-box {
    background: linear-gradient(135deg, #ea580c, #dc2626);
    padding: 30px;
    border-radius: 16px;
    max-width: 500px;
    margin: 0 auto;
    box-shadow: 0 10px 40px rgba(234, 88, 12, 0.3);
    transform: perspective(1000px) rotateX(5deg);
    transition: transform 0.3s ease;
}

.pricing-box:hover {
    transform: perspective(1000px) rotateX(0deg) scale(1.02);
}

.price-header {
    font-size: 1.1rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.price {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.payment-method {
    font-size: 1.1rem;
    margin-bottom: 15px;
    opacity: 0.9;
}

.regular-price {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 15px;
}

.limited-offer {
    background: #fbbf24;
    color: #0a1628;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.9rem;
    display: inline-block;
    animation: glow 2s infinite alternate;
}

@keyframes glow {
    from { box-shadow: 0 0 10px #fbbf24; }
    to { box-shadow: 0 0 20px #fbbf24, 0 0 30px #fbbf24; }
}

/* Features section */
.features {
    margin-bottom: 80px;
    text-align: center;
}

.features h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #ffffff;
    text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.8);
    background: rgba(0, 0, 0, 0.4);
    padding: 20px;
    border-radius: 12px;
    backdrop-filter: blur(5px);
    display: inline-block;
}

.features-subtitle {
    font-size: 1.2rem;
    color: #e2e8f0;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8);
    background: rgba(0, 0, 0, 0.4);
    padding: 15px;
    border-radius: 8px;
    backdrop-filter: blur(3px);
}

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

.feature-item {
    background: rgba(30, 41, 59, 0.9);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid rgba(59, 130, 246, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.3);
}

.feature-item h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #3b82f6;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

/* What's included */
.whats-included {
    background: rgba(15, 23, 42, 0.95);
    padding: 40px;
    border-radius: 16px;
    border: 1px solid rgba(34, 197, 94, 0.4);
    max-width: 600px;
    margin: 0 auto;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.whats-included h3 {
    font-size: 1.5rem;
    margin-bottom: 25px;
    color: #22c55e;
    text-align: center;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.checklist {
    list-style: none;
    text-align: left;
}

.checklist li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    font-size: 1.1rem;
}

.checkmark {
    color: #22c55e;
    font-weight: bold;
    margin-right: 12px;
    font-size: 1.2rem;
}

/* Why different section */
.why-different {
    margin-bottom: 80px;
    text-align: center;
}

.why-different h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.8);
    background: rgba(0, 0, 0, 0.4);
    padding: 20px;
    border-radius: 12px;
    backdrop-filter: blur(5px);
    display: inline-block;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #e2e8f0;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8);
    background: rgba(0, 0, 0, 0.4);
    padding: 15px;
    border-radius: 8px;
    backdrop-filter: blur(3px);
}

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

.feature-card {
    background: rgba(30, 41, 59, 0.9);
    padding: 30px;
    border-radius: 16px;
    border: 1px solid rgba(59, 130, 246, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(59, 130, 246, 0.4);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    display: block;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #3b82f6;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.feature-card p {
    color: #e2e8f0;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Form section */
.form-section {
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.95), rgba(30, 41, 59, 0.95));
    padding: 60px 40px;
    border-radius: 20px;
    margin-bottom: 60px;
    text-align: center;
    border: 1px solid rgba(59, 130, 246, 0.4);
    box-shadow: 0 20px 60px rgba(30, 58, 138, 0.4);
    backdrop-filter: blur(15px);
}

.form-section h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.8);
}

.form-subtitle {
    font-size: 1.2rem;
    color: #e2e8f0;
    margin-bottom: 10px;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8);
}

.urgency-message {
    color: #fbbf24;
    font-weight: 600;
    margin-bottom: 40px;
    font-size: 1.1rem;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8);
}

.form-container {
    max-width: 500px;
    margin: 0 auto;
}

.price-info {
    background: rgba(120, 53, 15, 0.8);
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 30px;
    border: 1px solid rgba(251, 191, 36, 0.3);
}

.price-info h3 {
    font-size: 1.5rem;
    color: #fbbf24;
    margin-bottom: 10px;
}

.price-info p {
    color: #fde68a;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Form styles */
.form-group {
    margin-bottom: 25px;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #fbbf24;
    font-size: 1.1rem;
}

.form-group input {
    width: 100%;
    padding: 15px;
    border: 2px solid rgba(59, 130, 246, 0.3);
    border-radius: 8px;
    background: rgba(15, 23, 42, 0.8);
    color: #ffffff;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

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

.submit-btn {
    width: 100%;
    background: linear-gradient(135deg, #ea580c, #dc2626);
    color: white;
    border: none;
    padding: 18px 30px;
    border-radius: 12px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(234, 88, 12, 0.4);
}

.submit-btn:active {
    transform: translateY(0);
}

.btn-icon {
    font-size: 1.1rem;
}

/* Footer */
.footer {
    text-align: center;
    padding: 40px 0;
    color: #64748b;
    border-top: 1px solid rgba(59, 130, 246, 0.2);
}

/* Responsive design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .main-title {
        font-size: 2.5rem;
    }
    
    .pricing-box {
        transform: none;
        margin: 20px;
    }
    
    .features-grid,
    .feature-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .form-section {
        padding: 40px 20px;
        margin: 20px 0;
    }
    
    .whats-included {
        margin: 20px;
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .main-title {
        font-size: 2rem;
    }
    
    .price {
        font-size: 2.5rem;
    }
    
    .features h2,
    .why-different h2,
    .form-section h2 {
        font-size: 2rem;
    }
}

