.hero-gradient {
    background: linear-gradient(135deg, #2a5a60 0%, #3b777e 50%, #4a8890 100%);
    position: relative;
    overflow: hidden;
}

.hero-gradient::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255,255,255,0.1) 0%, transparent 50%);
    pointer-events: none;
}

.counter-box {
    background: rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    border: 2px solid rgba(255, 255, 255, 0.25);
    padding: 2rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.form-section {
    background: #ffffff;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.1);
}

.urgency-banner {
    background: linear-gradient(135deg, rgba(255, 59, 48, 0.1) 0%, rgba(255, 149, 0, 0.1) 100%);
    border-left: 4px solid #ff3b30;
    border-radius: 8px;
    padding: 1rem 1.25rem;
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255, 59, 48, 0.4); }
    50% { box-shadow: 0 0 20px 0 rgba(255, 59, 48, 0.2); }
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
    padding: 0.75rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: rgba(59, 119, 126, 0.05);
    transform: translateX(5px);
}

.benefit-check {
    color: #3b777e;
    font-family: 'Nexa Bold', sans-serif;
    font-size: 1.25rem;
    margin-right: 0.75rem;
    min-width: 24px;
}

.benefit-text {
    font-family: 'Nexa Light', sans-serif;
    color: #4a4a4a;
    line-height: 1.6;
}

.cta-button {
    font-family: 'Nexa Bold', sans-serif;
    background: linear-gradient(135deg, #3b777e 0%, #2a5a60 100%);
    border: none;
    border-radius: 8px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 0;
    height: 60px;
    line-height: 60px;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(59, 119, 126, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(59, 119, 126, 0.4);
    background: linear-gradient(135deg, #2a5a60 0%, #3b777e 100%);
}

.cta-button:disabled {
    background: linear-gradient(135deg, #9ca3af 0%, #6b7280 100%);
    box-shadow: 0 2px 8px rgba(156, 163, 175, 0.3);
    transform: none;
    cursor: not-allowed;
    opacity: 0.7;
}

.cta-button:disabled:hover {
    transform: none;
    box-shadow: 0 2px 8px rgba(156, 163, 175, 0.3);
    background: linear-gradient(135deg, #9ca3af 0%, #6b7280 100%);
}

.form-input {
    font-family: 'Nexa Light', sans-serif;
    border-radius: 8px;
    border: 2px solid #e8e8e8;
    padding: 0.85rem 1rem;
    transition: all 0.3s ease;
}

.form-input:focus {
    border-color: #3b777e;
    box-shadow: 0 0 0 3px rgba(59, 119, 126, 0.1);
}

.form-input:disabled {
    background-color: #f5f5f5;
    border-color: #d1d5db;
    color: #9ca3af;
    cursor: not-allowed;
}

.form-label {
    font-family: 'Nexa Bold', sans-serif;
    color: #363636;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.success-message {
    background: linear-gradient(135deg, rgba(72, 187, 120, 0.1) 0%, rgba(34, 197, 94, 0.1) 100%);
    border: 2px solid #48bb78;
    border-radius: 12px;
    padding: 1.5rem;
    animation: slideInDown 0.5s ease;
}

@keyframes slideInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

.wip-graphic {
    animation: float 6s ease-in-out infinite;
}

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

/* Responsive Design */

/* Tablet and below (1024px and below) */
@media screen and (max-width: 1024px) {
    .hero-gradient {
        min-height: auto !important;
    }
    
    .columns {
        flex-direction: column !important;
    }
    
    .column.is-6 {
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .form-section {
        box-shadow: none;
    }
    
    .wip-graphic {
        max-width: 300px !important;
    }
}

/* Mobile (768px and below) */
@media screen and (max-width: 768px) {
    .hero-gradient h1 {
        font-size: 2.5rem !important;
    }
    
    .hero-gradient .subtitle {
        font-size: 1.1rem !important;
    }
    
    .counter-box {
        padding: 1.5rem !important;
    }
    
    .counter-box .title {
        font-size: 3rem !important;
    }
    
    .form-section {
        padding: 2rem !important;
    }
    
    .form-section h2 {
        font-size: 1.75rem !important;
    }
    
    .wip-graphic {
        max-width: 250px !important;
        margin-bottom: 1.5rem !important;
    }
    
    .columns.is-variable {
        flex-direction: column !important;
    }
    
    .columns.is-variable .column {
        width: 100% !important;
    }
}

/* Small Mobile (480px and below) */
@media screen and (max-width: 480px) {
    .hero-gradient h1 {
        font-size: 2rem !important;
    }
    
    .hero-gradient .subtitle {
        font-size: 1rem !important;
        padding: 0 1rem;
    }
    
    .counter-box {
        padding: 1rem !important;
    }
    
    .counter-box .title {
        font-size: 2.5rem !important;
    }
    
    .form-section {
        padding: 1.5rem !important;
    }
    
    .form-section h2 {
        font-size: 1.5rem !important;
    }
    
    .cta-button {
        padding: 1.25rem !important;
        font-size: 0.9rem !important;
        letter-spacing: 1px !important;
    }
    
    .benefit-text {
        font-size: 0.9rem;
    }
    
    .urgency-banner {
        font-size: 0.85rem !important;
    }
    
    .wip-graphic {
        max-width: 200px !important;
    }
    
    img[alt="Rejist"] {
        max-width: 200px !important;
    }
}

/* Ultra-wide screens (1920px and above) */
@media screen and (min-width: 1920px) {
    .container {
        max-width: 1920px;
    }
    
    .column.is-6 {
        padding: 4rem !important;
    }
    
    .form-section {
        padding: 4rem 5rem !important;
    }
    
    .hero-gradient h1 {
        font-size: 4rem !important;
    }
    
    .hero-gradient .subtitle {
        font-size: 1.5rem !important;
    }
    
    .wip-graphic {
        max-width: 450px !important;
    }
}
