/* AARP Offer Page Specific Styles */

/* Sponsored Banner */
.sponsored-banner {
    background: #f8f9fa;
    color: #666;
    text-align: center;
    padding: 8px 20px;
    font-size: 0.85rem;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 999;
}

/* Scroll Progress Bar */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 4px;
    background: linear-gradient(90deg, #2c5282 0%, #4299e1 100%);
    width: 0%;
    z-index: 1001;
    transition: width 0.1s ease;
}

/* Offer Navigation */
.offer-nav {
    display: flex;
    gap: 30px;
    align-items: center;
}

.offer-nav a {
    color: #2d3748;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.2s ease;
}

.offer-nav a:hover {
    color: #2c5282;
}

@media (max-width: 768px) {
    .offer-nav {
        display: none;
    }
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
    padding: 60px 20px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-text h1 {
    font-size: 2.25rem;
    line-height: 1.2;
    color: #1a202c;
    margin-bottom: 30px;
}

.hero-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

.intro-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #2d3748;
}

.intro-text .lead {
    font-size: 1.2rem;
    font-weight: 500;
    color: #1a202c;
    margin-bottom: 15px;
}

@media (max-width: 968px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .intro-text {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .hero-text h1 {
        font-size: 1.75rem;
    }

    .intro-text .lead {
        font-size: 1.1rem;
    }
}

/* CTA Sections */
.cta-section {
    padding: 60px 20px;
}

.primary-cta {
    background: linear-gradient(135deg, #2c5282 0%, #2b6cb0 100%);
    color: white;
}

.secondary-cta {
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
    color: white;
}

.cta-box {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta-box h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: inherit;
}

.cta-box p {
    font-size: 1.15rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

.btn-large {
    font-size: 1.25rem;
    padding: 18px 40px;
    min-width: 280px;
}

.btn-xl {
    font-size: 1.35rem;
    padding: 22px 50px;
    min-width: 320px;
}

.offer-note {
    margin-top: 15px;
    font-size: 0.9rem;
    opacity: 0.85;
}

@media (max-width: 768px) {
    .cta-box h2 {
        font-size: 1.5rem;
    }

    .btn-large,
    .btn-xl {
        font-size: 1.1rem;
        padding: 16px 30px;
        min-width: 100%;
    }
}

/* Benefits Section */
.benefits-section {
    padding: 80px 20px;
    background: white;
}

.benefits-section h2 {
    text-align: center;
    font-size: 2.25rem;
    margin-bottom: 20px;
    color: #1a202c;
}

.section-intro {
    text-align: center;
    font-size: 1.15rem;
    max-width: 700px;
    margin: 0 auto 50px;
    color: #4a5568;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.benefit-card {
    background: #f7fafc;
    padding: 35px;
    border-radius: 12px;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    border-color: #2c5282;
    box-shadow: 0 8px 24px rgba(44, 82, 130, 0.1);
    transform: translateY(-4px);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.benefit-card h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: #1a202c;
}

.benefit-card > p {
    font-size: 1rem;
    line-height: 1.6;
    color: #4a5568;
    margin-bottom: 15px;
}

.benefit-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.benefit-card li {
    padding: 8px 0 8px 25px;
    position: relative;
    color: #2d3748;
    line-height: 1.5;
}

.benefit-card li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2c5282;
    font-weight: bold;
}

@media (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .benefit-card {
        padding: 25px;
    }
}

/* Savings Section */
.savings-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #edf2f7 0%, #e6fffa 100%);
}

.savings-section h2 {
    text-align: center;
    font-size: 2.25rem;
    margin-bottom: 40px;
    color: #1a202c;
}

.savings-example {
    max-width: 700px;
    margin: 0 auto;
}

.savings-intro {
    font-size: 1.15rem;
    margin-bottom: 30px;
    color: #2d3748;
    text-align: center;
}

.savings-table {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
}

.savings-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #e2e8f0;
}

.savings-row:last-child {
    border-bottom: none;
}

.savings-row.total {
    margin-top: 10px;
    padding-top: 20px;
    border-top: 2px solid #2c5282;
    font-size: 1.2rem;
}

.savings-item {
    flex: 1;
    color: #2d3748;
}

.savings-amount {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c5282;
    min-width: 80px;
    text-align: right;
}

.savings-note {
    background: white;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #2c5282;
    margin-bottom: 15px;
    font-size: 1.1rem;
    color: #2d3748;
}

.savings-highlight {
    font-size: 1.05rem;
    color: #1a202c;
    font-weight: 500;
    text-align: center;
}

@media (max-width: 768px) {
    .savings-table {
        padding: 20px;
    }

    .savings-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }

    .savings-amount {
        font-size: 1.3rem;
    }
}

/* How It Works Section */
.how-it-works-section {
    padding: 80px 20px;
    background: white;
}

.how-it-works-section h2 {
    text-align: center;
    font-size: 2.25rem;
    margin-bottom: 60px;
    color: #1a202c;
}

.steps-container {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    gap: 40px;
}

.step {
    display: flex;
    gap: 25px;
    align-items: flex-start;
}

.step-number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2c5282 0%, #4299e1 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
}

.step h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: #1a202c;
}

.step p {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #4a5568;
}

@media (max-width: 768px) {
    .step {
        flex-direction: column;
        gap: 15px;
    }

    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
}

/* Testimonial Section */
.testimonial-section {
    padding: 80px 20px;
    background: #f7fafc;
}

.testimonial-section h2 {
    text-align: center;
    font-size: 2.25rem;
    margin-bottom: 50px;
    color: #1a202c;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.testimonial {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.testimonial-text {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #2d3748;
    margin-bottom: 15px;
    font-style: italic;
}

.testimonial-author {
    font-size: 0.95rem;
    color: #4a5568;
    font-weight: 500;
}

/* FAQ Section */
.faq-section {
    padding: 80px 20px;
    background: white;
}

.faq-section h2 {
    text-align: center;
    font-size: 2.25rem;
    margin-bottom: 50px;
    color: #1a202c;
}

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

.faq-item {
    border-bottom: 1px solid #e2e8f0;
    margin-bottom: 10px;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 20px 0;
    text-align: left;
    font-size: 1.15rem;
    font-weight: 600;
    color: #1a202c;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.2s ease;
}

.faq-question:hover {
    color: #2c5282;
}

.faq-icon {
    font-size: 1.5rem;
    color: #2c5282;
    transition: transform 0.3s ease;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding-bottom: 20px;
}

.faq-answer p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #4a5568;
    margin: 0;
}

/* Final CTA Section */
.final-cta-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, #1a365d 0%, #2c5282 100%);
    color: white;
}

.final-cta-box {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.final-cta-box h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: white;
}

.cta-subheading {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.95;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.badge {
    font-size: 0.95rem;
    font-weight: 500;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .final-cta-box h2 {
        font-size: 1.75rem;
    }

    .trust-badges {
        flex-direction: column;
        gap: 15px;
    }
}

/* Sticky CTA Bar */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #1a365d 0%, #2c5282 100%);
    color: white;
    padding: 15px 20px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    transform: translateY(100%);
    transition: transform 0.3s ease;
    z-index: 998;
}

.sticky-cta.visible {
    transform: translateY(0);
}

.sticky-cta-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.sticky-cta-text {
    font-size: 1.1rem;
    font-weight: 600;
}

.sticky-cta .btn {
    padding: 12px 30px;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .sticky-cta-content {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .sticky-cta-text {
        font-size: 1rem;
    }

    .sticky-cta .btn {
        width: 100%;
    }
}

/* Footer Disclaimer */
.footer-disclaimer {
    max-width: 900px;
    margin: 30px auto;
    padding: 20px;
    background: #2d3748;
    border-radius: 8px;
    font-size: 0.85rem;
    line-height: 1.6;
    color: #a0aec0;
}

.footer-disclaimer strong {
    color: #cbd5e0;
}
