/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #000000;
    min-height: 100vh;
    padding: 20px;
    line-height: 1.6;
    color: #ffffff;
}

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

/* Hero Section */
.hero {
    text-align: center;
    color: #ffffff;
    margin-bottom: 40px;
    padding: 40px 20px;
}

.hero h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 15px;
    color: #FFD700;
}

.hero .subtitle {
    font-size: 1.2rem;
    color: #cccccc;
    font-weight: 400;
}

.success-badge {
    display: inline-block;
    background: #FFD700;
    color: #000000;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

/* Form Container */
.form-container {
    background: #1a1a1a;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.5);
    border: 1px solid #333333;
}

/* Progress Bar */
.progress-bar {
    width: 100%;
    height: 6px;
    background: #333333;
    border-radius: 10px;
    margin-bottom: 40px;
    overflow: hidden;
}

.progress {
    height: 100%;
    background: #FFD700;
    border-radius: 10px;
    width: 25%;
    transition: width 0.3s ease;
}

/* Question Groups */
.question-group {
    display: none;
}

.question-group.active {
    display: block;
    animation: fadeIn 0.4s ease;
}

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

.question-group h2 {
    color: #ffffff;
    font-size: 1.8rem;
    margin-bottom: 30px;
    font-weight: 700;
}

/* Input Groups */
.input-group {
    margin-bottom: 20px;
}

.input-group label {
    display: block;
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.input-group input {
    width: 100%;
    padding: 15px;
    border: 2px solid #333333;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #2a2a2a;
    color: #ffffff;
}

.input-group input:focus {
    outline: none;
    border-color: #FFD700;
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.2);
}

.input-group input::placeholder {
    color: #666666;
}

/* Option Cards */
.option-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-bottom: 30px;
}

.option-card {
    position: relative;
    cursor: pointer;
}

.option-card input[type="radio"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.option-card .card-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px 20px;
    border: 3px solid #333333;
    border-radius: 15px;
    background: #2a2a2a;
    transition: all 0.3s ease;
    min-height: 150px;
    color: #ffffff;
}

.option-card:hover .card-content {
    border-color: #FFD700;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.15);
}

.option-card input[type="radio"]:checked + .card-content {
    border-color: #FFD700;
    background: #FFD700;
    color: #000000;
}

.option-card .icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.option-card .label {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.option-card .description {
    font-size: 0.85rem;
    opacity: 0.8;
}

/* Buttons */
.btn {
    padding: 15px 30px;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-next, .btn-submit {
    background: #FFD700;
    color: #000000;
    width: 100%;
    font-weight: 700;
}

.btn-next:hover, .btn-submit:hover {
    background: #e6c200;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.3);
}

.btn-back {
    background: #333333;
    color: #ffffff;
}

.btn-back:hover {
    background: #444444;
}

.button-group {
    display: flex;
    gap: 15px;
}

.button-group .btn-back {
    flex: 0 0 120px;
}

.button-group .btn-next {
    flex: 1;
}

/* Loading State */
.loading-state {
    text-align: center;
    padding: 60px 20px;
}

.spinner {
    width: 60px;
    height: 60px;
    border: 4px solid #333333;
    border-top-color: #FFD700;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 30px;
}

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

.loading-state h2 {
    color: #FFD700;
    margin-bottom: 10px;
}

.loading-state p {
    color: #cccccc;
}

/* Video Page Styles */
.video-page {
    max-width: 1000px;
}

.video-container {
    background: #1a1a1a;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.5);
    border: 1px solid #333333;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 15px;
    margin-bottom: 20px;
}

.video-wrapper iframe,
.video-wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 15px;
}

.video-info {
    text-align: center;
}

.video-info h2 {
    color: #FFD700;
    margin-bottom: 10px;
}

.video-info p {
    color: #cccccc;
}

/* Offer Section */
.offer-section {
    background: #1a1a1a;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.5);
    border: 1px solid #333333;
    margin-bottom: 30px;
}

.offer-card h3 {
    color: #FFD700;
    font-size: 1.8rem;
    margin-bottom: 25px;
    text-align: center;
}

.benefits-list {
    list-style: none;
    margin-bottom: 30px;
}

.benefits-list li {
    padding: 12px 0;
    font-size: 1.1rem;
    color: #ffffff;
    border-bottom: 1px solid #333333;
}

.benefits-list li:last-child {
    border-bottom: none;
}

/* Countdown Timer */
.urgency-timer {
    background: #dc2626;
    color: white;
    padding: 25px;
    border-radius: 8px;
    text-align: center;
    margin-bottom: 25px;
}

.timer-label {
    font-size: 1rem;
    margin-bottom: 15px;
    opacity: 0.9;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.time-unit {
    display: flex;
    flex-direction: column;
}

.time-unit span:first-child {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
}

.time-unit .label {
    font-size: 0.9rem;
    opacity: 0.9;
    text-transform: uppercase;
}

.expired {
    color: white;
    font-weight: 600;
}

/* CTA Buttons */
.btn-cta {
    background: #FFD700;
    color: #000000;
    width: 100%;
    margin-bottom: 15px;
    font-size: 1.2rem;
    padding: 18px 30px;
    font-weight: 700;
}

.btn-cta:hover {
    background: #e6c200;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
    width: 100%;
    margin-bottom: 15px;
}

.btn-secondary:hover {
    background: #FFD700;
    color: #000000;
}

.guarantee {
    text-align: center;
    color: #cccccc;
    font-size: 0.9rem;
    margin-top: 15px;
}

/* Next Steps */
.next-steps {
    background: #1a1a1a;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.5);
    border: 1px solid #333333;
}

.next-steps h2 {
    color: #FFD700;
    font-size: 1.8rem;
    margin-bottom: 30px;
    text-align: center;
}

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

.step {
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background: #FFD700;
    color: #000000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0 auto 15px;
}

.step h3 {
    color: #ffffff;
    margin-bottom: 10px;
}

.step p {
    color: #cccccc;
    font-size: 0.95rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero .subtitle {
        font-size: 1rem;
    }

    .form-container,
    .video-container,
    .offer-section,
    .next-steps {
        padding: 25px;
    }

    .question-group h2 {
        font-size: 1.5rem;
    }

    .option-cards {
        grid-template-columns: 1fr;
    }

    .button-group {
        flex-direction: column;
    }

    .button-group .btn-back {
        flex: 1;
    }

    .time-unit span:first-child {
        font-size: 2.5rem;
    }

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