/* Offer & Form Section */
.offer-form-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #0b0c15 0%, #0f0f1a 100%);
    color: var(--color-white);
    text-align: center;
}

/* Centralized Title */
.offer-title {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
    background: linear-gradient(to right, #fff, #00ffff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.offer-subtitle {
    font-size: 1.1rem;
    color: #a0a0b0;
    margin-bottom: 60px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* Cards Container */
.offer-cards-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 60px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

/* Offer Card with Glowing Border */
.offer-card {
    background: #151525;
    border: 2px solid #00F0FF;
    border-radius: 20px;
    padding: 40px;
    text-align: left;
    position: relative;
    animation: borderGlow 3s ease-in-out infinite;
}

@keyframes borderGlow {

    0%,
    100% {
        box-shadow: 0 0 10px rgba(0, 240, 255, 0.3), 0 0 20px rgba(0, 240, 255, 0.2);
    }

    50% {
        box-shadow: 0 0 20px rgba(0, 240, 255, 0.6), 0 0 40px rgba(0, 240, 255, 0.4);
    }
}

.offer-card h3 {
    font-size: 1.4rem;
    margin-bottom: 25px;
    color: #00ffff;
    text-align: center;
}

.benefit-list,
.steps-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 1.05rem;
    line-height: 1.6;
}

.benefit-item .check {
    color: #00ff88;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.investment-box {
    background: rgba(0, 255, 136, 0.05);
    border: 1px solid rgba(0, 255, 136, 0.2);
    border-radius: 12px;
    padding: 20px;
    margin-top: 25px;
    text-align: center;
}

.investment-box strong {
    font-size: 1.5rem;
    color: #00ff88;
}

.investment-box .strikethrough {
    text-decoration: line-through;
    color: #666;
    margin-right: 10px;
}

/* Steps List */
.steps-list {
    counter-reset: step-counter;
    margin-bottom: 25px;
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 1.05rem;
    line-height: 1.6;
    counter-increment: step-counter;
}

.step-item::before {
    content: counter(step-counter);
    background: linear-gradient(135deg, #00ffff, #0080ff);
    color: #000;
    font-weight: 700;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.9rem;
}

.scarcity-box {
    background: rgba(255, 100, 0, 0.1);
    border: 2px solid rgba(255, 100, 0, 0.4);
    border-radius: 12px;
    padding: 20px;
    margin-top: 25px;
}

.scarcity-box p {
    margin: 0 0 10px 0;
    font-size: 1rem;
    line-height: 1.6;
}

.scarcity-box p:last-child {
    margin-bottom: 0;
}

.scarcity-box strong {
    color: #ff6400;
}

/* Form Card - Centralized */
.form-card-centered {
    background: #151525;
    border: 2px solid #00F0FF;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    max-width: 700px;
    margin: 0 auto;
    animation: borderGlow 3s ease-in-out infinite;
}

.form-title {
    font-size: 1.5rem;
    margin-bottom: 30px;
    text-align: center;
    color: #fff;
}

.form-group {
    margin-bottom: 25px;
}

.form-label {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #e0e0e0;
    text-align: left;
}

.form-label .required {
    color: #ff6400;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 14px 16px;
    background: #0f0f1a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #fff;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: #00ffff;
    box-shadow: 0 0 0 3px rgba(0, 255, 255, 0.1);
}

.form-textarea {
    resize: vertical;
    min-height: 100px;
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: #666;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 30px;
}

.checkbox-group input[type="checkbox"] {
    margin-top: 4px;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.checkbox-group label {
    font-size: 0.9rem;
    color: #ccc;
    line-height: 1.5;
    cursor: pointer;
    text-align: left;
}

.checkbox-group a {
    color: #00ffff;
    text-decoration: underline;
}

.submit-button {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, #00ffff, #0080ff);
    border: none;
    border-radius: 10px;
    color: #000;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-transform: uppercase;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.3);
}

.submit-button:disabled {
    background: #333;
    color: #666;
    cursor: not-allowed;
    transform: none;
}

.form-footer {
    text-align: center;
    margin-top: 20px;
    font-size: 0.85rem;
    color: #888;
}

.error-message {
    color: #ff6400;
    font-size: 0.85rem;
    margin-top: 5px;
    display: none;
    text-align: left;
}

.form-group.error .error-message {
    display: block;
}

.form-group.error .form-input,
.form-group.error .form-select,
.form-group.error .form-textarea {
    border-color: #ff6400;
}

/* Responsive */
@media (max-width: 968px) {
    .offer-cards-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .offer-title {
        font-size: 2.2rem;
    }

    .form-card-centered {
        padding: 30px 20px;
    }
}