/* ==========================================================================
   OFFER DETAILS STYLES
   ========================================================================== */

/* Page Header */
.page-header {
    padding: 80px 0 40px;
    background: linear-gradient(135deg, #6f64db 0%, #5a52c7 50%, #7c3aed 100%);
    color: white;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.page-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .page-header {
        padding: 60px 0 30px;
    }
    
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .page-subtitle {
        font-size: 1.1rem;
    }
}

/* Offer Hero Section */
.offer-hero {
    background: linear-gradient(135deg, #6f64db 0%, #5a52c7 50%, #7c3aed 100%);
    color: white;
    padding: 8rem 0 6rem;
    position: relative;
    overflow: hidden;
}

.offer-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>') repeat;
    opacity: 0.3;
}

.offer-hero__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.offer-hero__content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.offer-hero__badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.offer-hero__title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.offer-hero__subtitle {
    font-size: 1.25rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    line-height: 1.6;
}

.offer-hero__price {
    margin-bottom: 3rem;
}

.offer-hero__price-amount {
    font-size: 4rem;
    font-weight: 700;
    color: var(--accent-color);
    display: inline-block;
}

.offer-hero__price-period {
    font-size: 1.5rem;
    opacity: 0.8;
    margin-left: 0.5rem;
}

.offer-hero__price-note {
    display: block;
    font-size: 1rem;
    margin-top: 0.5rem;
    opacity: 0.8;
}

.offer-hero__cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Offer Overview Section */
.offer-overview {
    padding: 6rem 0;
    background: var(--light-bg);
}

.offer-overview__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.offer-overview__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.overview-item {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.overview-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.overview-item__icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #6f64db 0%, #5a52c7 50%, #7c3aed 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
}

.overview-item__icon svg {
    width: 28px;
    height: 28px;
}

.overview-item h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #000000;
}

.overview-item p {
    color: #333333;
    font-size: 0.95rem;
}

/* Offer Details Section */
.offer-details {
    padding: 6rem 0;
}

.offer-details__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.offer-details__content {
    margin-top: 4rem;
}

.detail-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 6rem;
    padding: 3rem 0;
}

.detail-section--reverse {
    direction: rtl;
}

.detail-section--reverse > * {
    direction: ltr;
}

.detail-section__content {
    padding: 2rem;
}

.detail-section__text h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #000000;
}

.detail-section__text p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: #333333;
}

.detail-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.detail-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 1rem;
    line-height: 1.6;
    color: #333333;
    position: relative;
    padding-left: 2rem;
}

.detail-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
    font-size: 1.1rem;
}

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

.detail-list strong {
    color: #000000;
    font-weight: 600;
}

.detail-highlight {
    background: linear-gradient(135deg, #6f64db 0%, #5a52c7 50%, #7c3aed 100%);
    color: white;
    padding: 1.5rem;
    border-radius: 12px;
    font-weight: 500;
    margin-top: 2rem;
    text-align: center;
}

.detail-section__visual {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.feature-showcase {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    width: 100%;
    max-width: 300px;
}

.showcase-item {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.showcase-item:hover {
    transform: scale(1.05);
}

.showcase-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 0.5rem;
}

.showcase-item span:last-child {
    font-weight: 600;
    color: #000000;
    font-size: 0.9rem;
}

/* Benefits Section */
.offer-benefits {
    padding: 6rem 0;
    background: var(--light-bg);
}

.offer-benefits__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.benefit-item {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
}

.benefit-item__icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #6f64db 0%, #5a52c7 50%, #7c3aed 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
}

.benefit-item__icon svg {
    width: 32px;
    height: 32px;
}

.benefit-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #000000;
}

.benefit-item p {
    color: #333333;
    line-height: 1.6;
}

/* FAQ Section */
.offer-faq {
    padding: 6rem 0;
}

.offer-faq__container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.faq-list {
    margin-top: 4rem;
}

.faq-item {
    border-bottom: 1px solid var(--border-color);
    padding: 2rem 0;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #000000;
    cursor: pointer;
    position: relative;
    padding-right: 2rem;
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 0;
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    color: #333333;
    line-height: 1.7;
    font-size: 1rem;
}

/* CTA Section */
.offer-cta {
    padding: 6rem 0;
    background: linear-gradient(135deg, #6f64db 0%, #5a52c7 50%, #7c3aed 100%);
    color: white;
    text-align: center;
}

.offer-cta__container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.offer-cta__content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.offer-cta__content p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.offer-cta__price {
    margin-bottom: 3rem;
}

.cta-price-amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    display: inline-block;
}

.cta-price-period {
    font-size: 1.2rem;
    opacity: 0.8;
    margin-left: 0.5rem;
}

.cta-price-note {
    display: block;
    font-size: 0.9rem;
    margin-top: 0.5rem;
    opacity: 0.8;
}

.offer-cta__buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.offer-cta__guarantees {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.guarantee-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.guarantee-icon {
    color: var(--accent-color);
    font-weight: bold;
}

/* Contact Section */
.contact-section {
    padding: 6rem 0;
    background: var(--light-bg);
}

.contact-section__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 4rem;
}

.contact-info h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #000000;
}

.contact-info p {
    color: #333333;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.contact-method svg {
    width: 20px;
    height: 20px;
    color: var(--primary-color);
}

.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #000000;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .offer-hero {
        padding: 6rem 0 4rem;
    }
    
    .offer-hero__title {
        font-size: 2.5rem;
    }
    
    .offer-hero__price-amount {
        font-size: 3rem;
    }
    
    .offer-hero__cta {
        flex-direction: column;
        align-items: center;
    }
    
    .detail-section {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .detail-section--reverse {
        direction: ltr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .offer-cta__buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .offer-cta__guarantees {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .offer-overview__grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .detail-section__content {
        padding: 1rem;
    }
    
    .offer-hero__container,
    .offer-details__container,
    .offer-benefits__container,
    .offer-faq__container,
    .offer-cta__container,
    .contact-section__container {
        padding: 0 1rem;
    }
}