/* ============================================
   SHOP PAGE STYLES — RevvedUpCars Garage
   Matches site brand: dark theme, C5D631 accent
   ============================================ */

/* ---- Layout Container ---- */
.shop-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ============================================
   HERO SECTION
   ============================================ */
.shop-hero {
    position: relative;
    background: linear-gradient(135deg, #0d1117 0%, #1a2332 50%, #0d1117 100%);
    padding: 80px 0 60px;
    overflow: hidden;
    text-align: center;
}

.shop-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 20% 50%, rgba(197, 214, 49, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 50%, rgba(197, 214, 49, 0.05) 0%, transparent 60%);
    pointer-events: none;
}

.shop-hero-content {
    position: relative;
    z-index: 2;
}

.shop-hero-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(197, 214, 49, 0.12);
    color: #C5D631;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 8px 20px;
    border-radius: 50px;
    border: 1px solid rgba(197, 214, 49, 0.25);
    margin-bottom: 24px;
}

.shop-hero-title {
    font-family: 'Space Grotesk', 'Inter', sans-serif;
    font-size: 52px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.1;
    margin: 0 0 18px 0;
    letter-spacing: -1.5px;
}

.shop-hero-subtitle {
    font-size: 19px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0 auto 40px;
    max-width: 550px;
    line-height: 1.6;
}

.shop-hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
}

.hero-stat {
    text-align: center;
}

.hero-stat-number {
    display: block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 36px;
    font-weight: 800;
    color: #C5D631;
    line-height: 1;
    margin-bottom: 6px;
}

.hero-stat-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.hero-stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.15);
}

.shop-hero-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(to bottom, transparent, #111);
    pointer-events: none;
}

/* ============================================
   FREE LEAD MAGNET SPOTLIGHT
   ============================================ */
.shop-free-spotlight {
    background: #111;
    padding: 0 0 80px;
}

.free-spotlight-card {
    background: linear-gradient(135deg, #1a2a1a 0%, #1e2d1e 100%);
    border: 1px solid rgba(197, 214, 49, 0.2);
    border-radius: 24px;
    padding: 48px;
    position: relative;
    overflow: hidden;
}

.free-spotlight-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(197, 214, 49, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.free-spotlight-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #C5D631, #a8b82a);
    color: #1a1a1a;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 8px 18px;
    border-radius: 50px;
    margin-bottom: 28px;
}

.free-spotlight-grid {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 48px;
    align-items: center;
}

.free-spotlight-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 32px;
    font-weight: 800;
    color: #fff;
    margin: 0 0 16px 0;
    display: flex;
    align-items: center;
    gap: 14px;
}

.free-spotlight-title i {
    color: #C5D631;
    font-size: 28px;
}

.free-spotlight-desc {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.7;
    margin: 0 0 24px 0;
}

.free-spotlight-features {
    list-style: none;
    padding: 0;
    margin: 0 0 32px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.free-spotlight-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
}

.free-spotlight-features li i {
    color: #C5D631;
    margin-top: 3px;
    flex-shrink: 0;
}

.free-spotlight-note {
    display: block;
    margin-top: 12px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
}

/* Preview Mockup */
.free-spotlight-preview {
    position: relative;
}

.preview-mockup {
    position: relative;
    width: 240px;
    margin: 0 auto;
}

.preview-page {
    background: #fff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    position: relative;
    z-index: 2;
}

.preview-page-back {
    position: absolute;
    top: 12px;
    left: 12px;
    right: -12px;
    bottom: -12px;
    z-index: 1;
    opacity: 0.5;
    padding: 30px 20px;
}

.preview-header-bar {
    height: 4px;
    background: linear-gradient(to right, #C5D631, #a8b82a);
    border-radius: 2px;
    margin-bottom: 16px;
}

.preview-logo-placeholder {
    text-align: center;
    color: #ccc;
    font-size: 24px;
    margin-bottom: 8px;
}

.preview-title-bar {
    text-align: center;
    font-size: 11px;
    font-weight: 700;
    color: #333;
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 1px solid #eee;
}

.preview-lines {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 16px;
}

.preview-line {
    height: 4px;
    background: #e8e8e8;
    border-radius: 2px;
}

.preview-table {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.preview-table-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3px;
}

.preview-table-row div {
    height: 8px;
    background: #f0f0f0;
    border-radius: 1px;
}

.preview-table-row.header div {
    background: #C5D631;
    height: 6px;
}

.preview-badge-float {
    position: absolute;
    bottom: -10px;
    right: -10px;
    background: linear-gradient(135deg, #C5D631, #a8b82a);
    color: #1a1a1a;
    font-size: 12px;
    font-weight: 800;
    padding: 8px 16px;
    border-radius: 20px;
    z-index: 3;
    box-shadow: 0 4px 15px rgba(197, 214, 49, 0.4);
}

/* ============================================
   PAID PRODUCTS SECTION
   ============================================ */
.shop-products {
    background: #111;
    padding: 80px 0;
}

.shop-section-header {
    text-align: center;
    margin-bottom: 48px;
}

.shop-section-label {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #C5D631;
    margin-bottom: 12px;
}

.shop-section-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 36px;
    font-weight: 800;
    color: #fff;
    margin: 0 0 12px 0;
    letter-spacing: -0.5px;
}

.shop-section-subtitle {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.55);
    margin: 0;
}

.shop-products-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

/* Product Card */
.shop-product-card {
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-radius: 20px;
    padding: 40px 32px;
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.shop-product-card:hover {
    border-color: rgba(197, 214, 49, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.product-card-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 6px 14px;
    border-radius: 20px;
}

.badge-popular {
    background: rgba(255, 107, 53, 0.15);
    color: #FF6B35;
    border: 1px solid rgba(255, 107, 53, 0.3);
}

.badge-value {
    background: rgba(78, 205, 196, 0.15);
    color: #4ECDC4;
    border: 1px solid rgba(78, 205, 196, 0.3);
}

.badge-free {
    background: rgba(197, 214, 49, 0.15);
    color: #C5D631;
    border: 1px solid rgba(197, 214, 49, 0.3);
}

.product-card-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: rgba(197, 214, 49, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.product-card-icon i {
    font-size: 28px;
    color: var(--product-color, #C5D631);
}

.product-card-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 24px;
    font-weight: 800;
    color: #fff;
    margin: 0 0 6px 0;
}

.product-card-subtitle {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.5);
    margin: 0 0 20px 0;
}

.product-card-price {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid #2a2a2a;
}

.price-amount {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 36px;
    font-weight: 800;
    color: #C5D631;
}

.price-note {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 500;
}

.product-card-features {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
    flex-grow: 1;
}

.product-card-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.5;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.product-card-features li:last-child {
    border-bottom: none;
}

.product-card-features li i {
    color: #C5D631;
    margin-top: 3px;
    flex-shrink: 0;
    font-size: 13px;
}

.product-card-meta {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.product-card-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-card-meta span i {
    color: rgba(197, 214, 49, 0.5);
}

/* ============================================
   BUTTONS
   ============================================ */
.shop-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 28px;
    font-size: 15px;
    font-weight: 700;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-align: center;
}

.btn-free,
.btn-free-hero {
    background: linear-gradient(135deg, #C5D631, #a8b82a);
    color: #1a1a1a;
    box-shadow: 0 4px 20px rgba(197, 214, 49, 0.3);
}

.btn-free:hover,
.btn-free-hero:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(197, 214, 49, 0.45);
}

.btn-free-hero {
    padding: 18px 36px;
    font-size: 17px;
    border-radius: 14px;
}

.btn-buy {
    background: linear-gradient(135deg, #FF6B35, #e55a2b);
    color: #fff;
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.25);
    width: 100%;
}

.btn-buy:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.4);
    color: #fff;
}

.btn-buy-alt {
    background: linear-gradient(135deg, #4ECDC4, #3bb8b0);
    color: #1a1a1a;
    box-shadow: 0 4px 20px rgba(78, 205, 196, 0.25);
}

.btn-buy-alt:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(78, 205, 196, 0.4);
    color: #1a1a1a;
}

/* ============================================
   BUNDLE SECTION
   ============================================ */
.shop-bundle {
    background: #111;
    padding: 0 0 80px;
}

.bundle-card {
    background: linear-gradient(135deg, #1a1f2e 0%, #1e2538 100%);
    border: 1px solid rgba(197, 214, 49, 0.15);
    border-radius: 24px;
    padding: 56px;
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 48px;
    align-items: center;
}

.bundle-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
    color: #C5D631;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 16px;
}

.bundle-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 36px;
    font-weight: 800;
    color: #fff;
    margin: 0 0 12px 0;
}

.bundle-subtitle {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.55);
    margin: 0 0 28px 0;
    line-height: 1.6;
}

.bundle-items {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 28px;
}

.bundle-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.bundle-item i {
    color: #C5D631;
    font-size: 18px;
    flex-shrink: 0;
}

.bundle-item strong {
    color: #fff;
    font-size: 15px;
}

.bundle-item span {
    color: rgba(255, 255, 255, 0.45);
    font-size: 14px;
    margin-left: auto;
    font-weight: 600;
}

.bundle-total {
    display: flex;
    align-items: baseline;
    gap: 12px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.bundle-total-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 600;
}

.bundle-total-price {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 28px;
    font-weight: 800;
    color: #C5D631;
}

.bundle-total-savings {
    font-size: 13px;
    color: rgba(197, 214, 49, 0.6);
    font-weight: 600;
}

.bundle-cta {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.bundle-cta .shop-btn {
    width: 100%;
}

/* ============================================
   TRUST / HOW IT WORKS
   ============================================ */
.shop-trust {
    background: #0d0d0d;
    padding: 80px 0;
}

.trust-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.trust-step {
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-radius: 20px;
    padding: 36px 28px;
    text-align: center;
    flex: 1;
    max-width: 320px;
}

.trust-step-icon {
    position: relative;
    width: 64px;
    height: 64px;
    background: rgba(197, 214, 49, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.trust-step-icon i {
    font-size: 24px;
    color: #C5D631;
}

.trust-step-number {
    position: absolute;
    top: -6px;
    right: -6px;
    width: 24px;
    height: 24px;
    background: #C5D631;
    color: #1a1a1a;
    font-size: 12px;
    font-weight: 800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.trust-step h3 {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 10px 0;
}

.trust-step p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.55);
    margin: 0;
    line-height: 1.6;
}

.trust-step-arrow {
    color: rgba(255, 255, 255, 0.15);
    font-size: 20px;
    flex-shrink: 0;
}

/* ============================================
   FAQ SECTION
   ============================================ */
.shop-faq {
    background: #111;
    padding: 80px 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.faq-item-card {
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-radius: 16px;
    padding: 28px;
    transition: border-color 0.2s ease;
}

.faq-item-card:hover {
    border-color: rgba(197, 214, 49, 0.2);
}

.faq-item-card h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 10px 0;
}

.faq-item-card h4 i {
    color: #C5D631;
    font-size: 16px;
    flex-shrink: 0;
}

.faq-item-card p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.55);
    margin: 0;
    line-height: 1.7;
}

/* ============================================
   FINAL CTA
   ============================================ */
.shop-final-cta {
    background: #0d0d0d;
    padding: 0 0 80px;
}

.final-cta-card {
    background: linear-gradient(135deg, #1a2a1a 0%, #1e2d1e 50%, #1a2a1a 100%);
    border: 1px solid rgba(197, 214, 49, 0.2);
    border-radius: 24px;
    padding: 64px;
    text-align: center;
}

.final-cta-card h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 32px;
    font-weight: 800;
    color: #fff;
    margin: 0 0 16px 0;
}

.final-cta-card p {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.55);
    margin: 0 auto 32px;
    max-width: 600px;
    line-height: 1.7;
}

.final-cta-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* ============================================
   RESPONSIVE — TABLET
   ============================================ */
@media (max-width: 1024px) {
    .shop-hero-title {
        font-size: 40px;
    }

    .free-spotlight-grid {
        grid-template-columns: 1fr;
    }

    .free-spotlight-preview {
        display: flex;
        justify-content: center;
    }

    .bundle-card {
        grid-template-columns: 1fr;
        padding: 40px;
    }

    .bundle-cta {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .bundle-cta .shop-btn {
        width: auto;
        flex: 1;
        min-width: 200px;
    }
}

/* ============================================
   RESPONSIVE — MOBILE
   ============================================ */
@media (max-width: 768px) {
    .shop-hero {
        padding: 60px 0 40px;
    }

    .shop-hero-title {
        font-size: 32px;
        letter-spacing: -1px;
    }

    .shop-hero-title br {
        display: none;
    }

    .shop-hero-subtitle {
        font-size: 16px;
    }

    .shop-hero-stats {
        gap: 20px;
    }

    .hero-stat-number {
        font-size: 28px;
    }

    .hero-stat-label {
        font-size: 11px;
    }

    .free-spotlight-card {
        padding: 28px 20px;
    }

    .free-spotlight-title {
        font-size: 24px;
    }

    .free-spotlight-features {
        grid-template-columns: 1fr;
    }

    .shop-products {
        padding: 60px 0;
    }

    .shop-products-grid {
        grid-template-columns: 1fr;
    }

    .shop-section-title {
        font-size: 28px;
    }

    .shop-product-card {
        padding: 32px 24px;
    }

    .product-card-title {
        font-size: 22px;
    }

    .price-amount {
        font-size: 30px;
    }

    .bundle-card {
        padding: 28px 20px;
    }

    .bundle-title {
        font-size: 28px;
    }

    .bundle-cta {
        flex-direction: column;
    }

    .bundle-cta .shop-btn {
        width: 100%;
    }

    .trust-steps {
        flex-direction: column;
        gap: 16px;
    }

    .trust-step-arrow {
        transform: rotate(90deg);
    }

    .trust-step {
        max-width: 100%;
        width: 100%;
    }

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

    .final-cta-card {
        padding: 40px 24px;
    }

    .final-cta-card h2 {
        font-size: 26px;
    }

    .final-cta-buttons {
        flex-direction: column;
    }

    .final-cta-buttons .shop-btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .shop-hero-title {
        font-size: 26px;
    }

    .shop-hero-stats {
        flex-direction: column;
        gap: 16px;
    }

    .hero-stat-divider {
        width: 40px;
        height: 1px;
    }

    .free-spotlight-title {
        font-size: 20px;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .product-card-meta {
        flex-direction: column;
        gap: 8px;
    }

    .bundle-item {
        flex-wrap: wrap;
    }

    .bundle-item span {
        margin-left: 30px;
    }

    .bundle-total {
        flex-direction: column;
        gap: 4px;
    }
}

/* ============================================
   LIGHT THEME OVERRIDES (if applicable)
   ============================================ */
[data-theme="light"] .shop-hero,
[data-theme="light"] .shop-free-spotlight,
[data-theme="light"] .shop-products,
[data-theme="light"] .shop-bundle,
[data-theme="light"] .shop-trust,
[data-theme="light"] .shop-faq,
[data-theme="light"] .shop-final-cta {
    background: #f8f9fa;
}

[data-theme="light"] .shop-hero {
    background: linear-gradient(135deg, #1a2332 0%, #0d1117 100%);
}

[data-theme="light"] .free-spotlight-card {
    background: #ffffff;
    border-color: #e0e0e0;
}

[data-theme="light"] .free-spotlight-title,
[data-theme="light"] .free-spotlight-features li {
    color: #1a1a1a;
}

[data-theme="light"] .free-spotlight-desc {
    color: #666;
}

[data-theme="light"] .shop-section-title {
    color: #1a1a1a;
}

[data-theme="light"] .shop-section-subtitle {
    color: #666;
}

[data-theme="light"] .shop-product-card {
    background: #fff;
    border-color: #e0e0e0;
}

[data-theme="light"] .shop-product-card:hover {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

[data-theme="light"] .product-card-title {
    color: #1a1a1a;
}

[data-theme="light"] .product-card-subtitle {
    color: #666;
}

[data-theme="light"] .product-card-features li {
    color: #444;
    border-bottom-color: #f0f0f0;
}

[data-theme="light"] .product-card-price {
    border-bottom-color: #e8e8e8;
}

[data-theme="light"] .bundle-card {
    background: #fff;
    border-color: #e0e0e0;
}

[data-theme="light"] .bundle-title,
[data-theme="light"] .bundle-item strong {
    color: #1a1a1a;
}

[data-theme="light"] .bundle-subtitle {
    color: #666;
}

[data-theme="light"] .bundle-total {
    border-top-color: #e8e8e8;
}

[data-theme="light"] .trust-step {
    background: #fff;
    border-color: #e0e0e0;
}

[data-theme="light"] .trust-step h3 {
    color: #1a1a1a;
}

[data-theme="light"] .trust-step p {
    color: #666;
}

[data-theme="light"] .faq-item-card {
    background: #fff;
    border-color: #e0e0e0;
}

[data-theme="light"] .faq-item-card h4 {
    color: #1a1a1a;
}

[data-theme="light"] .faq-item-card p {
    color: #666;
}

[data-theme="light"] .final-cta-card {
    background: #fff;
    border-color: #e0e0e0;
}

[data-theme="light"] .final-cta-card h2 {
    color: #1a1a1a;
}

[data-theme="light"] .final-cta-card p {
    color: #666;
}
