﻿/* =====================================================
   PACK DETAIL CSS
   Styles pour les pages de détail des packs DevLife
   ===================================================== */

/* ===== REALITY SECTION (Nouvelle section percutante) ===== */
.reality-section {
    background: linear-gradient(135deg, #F8F9FA 0%, #E9ECEF 100%);
}

[data-theme="dark"] .reality-section {
    background: linear-gradient(135deg, #161b22 0%, #0d1117 100%);
}

.reality-card {
    background: var(--bg-primary);
    border-radius: 16px;
    padding: 3rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

[data-theme="dark"] .reality-card {
    background: #161b22;
}

.reality-icon i {
    color: #7a9171;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.reality-item {
    background: var(--bg-primary);
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid transparent;
    transition: all 0.3s ease;
}

[data-theme="dark"] .reality-item {
    background: #21262d;
}

.reality-item:hover {
    border-left-color: #7a9171;
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.reality-item h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-primary);
}

.reality-item p {
    color: var(--text-secondary);
    margin-bottom: 0;
    line-height: 1.6;
}

.reality-solution {
    background: linear-gradient(135deg, rgba(122, 145, 113, 0.1) 0%, rgba(168, 196, 160, 0.1) 100%);
    border: 2px solid #7a9171;
    border-radius: 12px;
    padding: 2rem;
    margin-top: 2rem;
}

[data-theme="dark"] .reality-solution {
    background: linear-gradient(135deg, rgba(122, 145, 113, 0.2) 0%, rgba(168, 196, 160, 0.2) 100%);
    border-color: #5a7350;
}

/* ===== PERSONA & SOLUTION LISTS ===== */
.persona-list,
.solution-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.persona-list li,
.solution-list li {
    padding: 0.75rem 0;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    border-bottom: 1px solid var(--border-color);
}

.persona-list li:last-child,
.solution-list li:last-child {
    border-bottom: none;
}

.persona-list i {
    color: #7a9171;
    font-size: 1.3rem;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.solution-list strong {
    color: var(--text-primary);
}

/* ===== BONUS APPS SECTION ===== */
.bonus-apps-section {
    background: linear-gradient(135deg, rgba(40, 167, 69, 0.05) 0%, rgba(40, 167, 69, 0.1) 100%);
    border: 2px solid rgba(40, 167, 69, 0.2);
    border-radius: 16px;
    padding: 2rem;
}

[data-theme="dark"] .bonus-apps-section {
    background: linear-gradient(135deg, rgba(46, 160, 67, 0.1) 0%, rgba(46, 160, 67, 0.15) 100%);
    border-color: rgba(46, 160, 67, 0.3);
}

.bonus-app-item {
    background: var(--bg-primary);
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    height: 100%;
}

[data-theme="dark"] .bonus-app-item {
    background: #161b22;
}

.bonus-app-item:hover {
    border-color: #28A745;
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.2);
}

.bonus-app-item i {
    font-size: 2.5rem;
    color: #28A745;
    margin-bottom: 1rem;
}

[data-theme="dark"] .bonus-app-item i {
    color: #3fb950;
}

.bonus-app-item h5 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.bonus-app-item p {
    color: var(--text-secondary);
    margin-bottom: 0;
    font-size: 0.95rem;
}

/* ===== RESULTS SECTION (Avant/Après) ===== */
.results-section {
    background: var(--bg-secondary);
    border-radius: 16px;
    padding: 3rem;
}

[data-theme="dark"] .results-section {
    background: #21262d;
}

.result-item {
    background: var(--bg-primary);
    border-radius: 12px;
    padding: 1.5rem;
    height: 100%;
}

[data-theme="dark"] .result-item {
    background: #161b22;
}

.result-before,
.result-after {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.result-before i {
    font-size: 1.8rem;
    color: var(--danger-color);
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.result-after i {
    font-size: 1.8rem;
    color: var(--success-color);
    flex-shrink: 0;
    margin-top: 0.2rem;
}

[data-theme="dark"] .result-after i {
    color: #3fb950;
}

.result-before span,
.result-after span {
    color: var(--text-primary);
    font-weight: 500;
    line-height: 1.6;
}

/* ===== SOLUTION ICON ===== */
.solution-icon {
    color: #7a9171;
}

/* ===== EXISTING STYLES ===== */
.min-vh-75 {
    min-height: 75vh;
}

.pack-hero {
    padding: 8rem 0 4rem;
    color: white;
}

.pack-hero-icon {
    font-size: 6rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.pack-age-badge-large {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 30px;
    padding: 1rem 2.5rem;
    font-weight: 700;
    font-size: 1.3rem;
    backdrop-filter: blur(10px);
}

.detail-card {
    background: white;
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    height: 100%;
    transition: all 0.3s ease;
}

.detail-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.detail-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.persona-icon {
    color: #7a9171;
}

.problem-icon {
    color: #DC3545;
}

.app-detail-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    transition: all 0.3s ease;
    height: 100%;
}

.app-detail-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.app-detail-icon {
    font-size: 3rem;
    color: #7a9171;
    flex-shrink: 0;
}

.app-detail-content {
    flex-grow: 1;
}

.app-detail-content .badge {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 8px;
}

.app-detail-content .badge i {
    margin-right: 0.25rem;
}

/* Dark mode for app badges */
[data-theme="dark"] .app-detail-content .badge.bg-primary {
    background-color: #1f6feb !important;
    color: #ffffff;
}

/* Dark mode for app badges */
[data-theme="dark"] .app-detail-content .badge {
    background-color: #3fb950 !important;
    color: #ffffff;
}

[data-theme="dark"] .app-detail-content .badge i {
    color: #ffffff;
}

.benefit-item {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.benefit-item i {
    font-size: 1.5rem;
    color: #7a9171;
    flex-shrink: 0;
}

.benefit-item span {
    font-weight: 500;
    color: #212529;
}

.pricing-card {
    background: white;
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    text-align: center;
    border: 2px solid #DEE2E6;
    transition: all 0.3s ease;
    position: relative;
}

.pricing-card:hover {
    border-color: #7a9171;
    transform: translateY(-5px);
}

.pricing-card-popular {
    background: linear-gradient(135deg, #FFF9E6 0%, #FFE8B3 100%);
    border-color: #FFC107;
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #FFC107;
    color: #212529;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
}

.pricing-value {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-primary);
    margin: 1rem 0;
}

.cta-section {
    background: linear-gradient(135deg, #F8F9FA 0%, #E9ECEF 100%);
    border-radius: 16px;
    padding: 4rem 2rem;
}

.pack-cta-section {
    background: linear-gradient(135deg, #7a9171 0%, #5d7555 100%);
    border-radius: 16px;
    padding: 4rem 2rem;
    color: white;
}

.pack-cta-section h2,
.pack-cta-section .lead {
    color: white;
}

.pack-cta-section .btn-primary {
    background: white;
    color: #7a9171;
    border-color: white;
}

.pack-cta-section .btn-primary:hover {
    background: rgba(255, 255, 255, 0.9);
    color: #5d7555;
    border-color: white;
}

.pack-cta-section .btn-outline-primary {
    background: transparent;
    color: white;
    border-color: white;
}

.pack-cta-section .btn-outline-primary:hover {
    background: white;
    color: #7a9171;
    border-color: white;
}

/* ===== DARK THEME SUPPORT ===== */

/* Pricing cards in dark mode */
[data-theme="dark"] .pricing-card {
    background: #21262d;
    border-color: #30363d;
    color: #f0f6fc;
}

[data-theme="dark"] .pricing-card h4,
[data-theme="dark"] .pricing-card h3 {
    color: #f0f6fc;
}

[data-theme="dark"] .pricing-card small,
[data-theme="dark"] .pricing-card p {
    color: #c9d1d9;
}

[data-theme="dark"] .pricing-card .text-secondary {
    color: #8b949e !important;
}

/* Monthly subscription - Better contrast in dark mode */
[data-theme="dark"] .pricing-card:not(.bg-light) {
    background: #161b22;
    border-color: #30363d;
}

[data-theme="dark"] .pricing-card.bg-light {
    background: #21262d !important;
    border-color: #444c56;
}

[data-theme="dark"] .pricing-card:hover {
    border-color: #5a7350;
    background: #2d333b;
}

[data-theme="dark"] .pricing-card.bg-light:hover {
    background: #2d333b !important;
    border-color: #5a7350;
}

[data-theme="dark"] .pricing-card-popular {
    background: linear-gradient(135deg, #2d2410 0%, #3d3010 100%);
    border-color: #d29922;
}

/* Modal in dark mode */
[data-theme="dark"] .modal-content {
    background-color: #161b22;
    border-color: #30363d;
    color: #f0f6fc;
}

[data-theme="dark"] .modal-header {
    border-bottom-color: #30363d;
}

[data-theme="dark"] .modal-footer {
    border-top-color: #30363d;
}

[data-theme="dark"] .modal-body h3,
[data-theme="dark"] .modal-body h4,
[data-theme="dark"] .modal-body h5,
[data-theme="dark"] .modal-body h6 {
    color: #f0f6fc;
}

[data-theme="dark"] .modal-body p {
    color: #c9d1d9;
}

/* Order summary card in modal - dark mode */
[data-theme="dark"] .card.bg-light {
    background-color: #21262d !important;
    border-color: #30363d;
}

[data-theme="dark"] .card.bg-light .card-body {
    color: #f0f6fc;
}

[data-theme="dark"] .card.bg-light .card-title,
[data-theme="dark"] .card.bg-light h6 {
    color: #f0f6fc;
}

[data-theme="dark"] .card.bg-light span,
[data-theme="dark"] .card.bg-light strong {
    color: #c9d1d9;
}

[data-theme="dark"] .card.bg-light h5 {
    color: #58a6ff !important;
}

/* Alert boxes in modal - dark mode */
[data-theme="dark"] .alert-info {
    background-color: #1b2b33;
    border-color: #2a4a52;
    color: #85d1e7;
}

[data-theme="dark"] .alert-info strong {
    color: #ffffff;
}

[data-theme="dark"] .alert-success {
    background-color: #1a2e1a;
    border-color: #2a4a2a;
    color: #7dd87d;
}

/* Buttons in dark mode */
[data-theme="dark"] .btn-outline-secondary {
    color: #c9d1d9;
    border-color: #30363d;
}

[data-theme="dark"] .btn-outline-secondary:hover {
    background-color: #21262d;
    border-color: #444c56;
    color: #f0f6fc;
}

/* Cards in dark mode */
[data-theme="dark"] .card {
    background-color: #161b22;
    border-color: #30363d;
}

[data-theme="dark"] .card-header {
    border-bottom-color: #30363d;
}

[data-theme="dark"] .card-footer {
    border-top-color: #30363d;
    background-color: transparent;
}

/* Detail cards in dark mode */
[data-theme="dark"] .detail-card,
[data-theme="dark"] .app-detail-card,
[data-theme="dark"] .benefit-item {
    background: #161b22;
    color: #f0f6fc;
}

[data-theme="dark"] .detail-card h2,
[data-theme="dark"] .detail-card h3,
[data-theme="dark"] .app-detail-card h3,
[data-theme="dark"] .app-detail-card h4 {
    color: #f0f6fc;
}

[data-theme="dark"] .app-detail-content p {
    color: #c9d1d9;
}

[data-theme="dark"] .benefit-item span {
    color: #c9d1d9;
}

/* Accordion in dark mode */
[data-theme="dark"] .accordion-item {
    background-color: #161b22;
    border-color: #30363d;
}

[data-theme="dark"] .accordion-button {
    background-color: #21262d;
    color: #f0f6fc;
}

[data-theme="dark"] .accordion-button:not(.collapsed) {
    background-color: #2d333b;
    color: #58a6ff;
}

[data-theme="dark"] .accordion-body {
    background-color: #161b22;
    color: #c9d1d9;
}

/* Text colors in dark mode */
[data-theme="dark"] .text-primary {
    color: #58a6ff !important;
}

[data-theme="dark"] small.text-muted {
    color: #8b949e !important;
}

/* Responsive */
@media (max-width: 768px) {
    .pack-hero {
        padding: 6rem 0 3rem;
    }

    .pack-hero-icon {
        font-size: 4rem;
    }

    .pack-age-badge-large {
        font-size: 1.1rem;
        padding: 0.75rem 2rem;
    }

    .app-detail-card {
        flex-direction: column;
        text-align: center;
    }

    .app-detail-icon {
        margin: 0 auto 1rem;
    }
    
    .cta-section,
    .pack-cta-section {
        padding: 3rem 1.5rem;
    }
    
    .reality-card {
        padding: 2rem;
    }
    
    .reality-solution {
        padding: 1.5rem;
    }
    
    .bonus-apps-section {
        padding: 1.5rem;
    }
}

/* =====================================================
   SUBSCRIBE PAGE — Classes spécifiques à /DevLife/Subscribe
   ===================================================== */

/* ===== HERO ===== */
.subscribe-hero {
    padding: 7rem 0 4rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.subscribe-hero-icon {
    font-size: 5rem;
    display: block;
    margin-bottom: 1.25rem;
    opacity: 0.9;
}

.text-white-75 {
    color: rgba(255, 255, 255, 0.75);
}

/* ===== STATUS BADGES (hero) ===== */
.subscribe-status-badge {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.75rem;
    border-radius: 50px;
    backdrop-filter: blur(12px);
    font-size: 0.95rem;
    max-width: 520px;
    text-align: left;
}

.subscribe-status-active {
    background: rgba(40, 167, 69, 0.25);
    border: 1.5px solid rgba(40, 167, 69, 0.5);
    color: white;
}

.subscribe-status-trial {
    background: rgba(23, 162, 184, 0.25);
    border: 1.5px solid rgba(23, 162, 184, 0.5);
    color: white;
}

.subscribe-status-badge i {
    font-size: 1.5rem;
    flex-shrink: 0;
}

/* ===== TRIAL BANNER (hero) ===== */
.subscribe-trial-banner {
    display: inline-flex;
    align-items: center;
    gap: 1.25rem;
    flex-wrap: wrap;
    justify-content: center;
    background: rgba(255, 255, 255, 0.15);
    border: 1.5px solid rgba(255, 255, 255, 0.35);
    border-radius: 16px;
    padding: 1.25rem 2rem;
    backdrop-filter: blur(12px);
    max-width: 680px;
    margin: 0 auto;
}

.subscribe-trial-banner .subscribe-trial-icon {
    font-size: 2.25rem;
    flex-shrink: 0;
}

.subscribe-trial-text {
    text-align: left;
    color: white;
    flex: 1;
    min-width: 180px;
}

.subscribe-trial-text strong {
    display: block;
    font-size: 1.05rem;
    margin-bottom: 0.2rem;
}

.subscribe-trial-text span {
    font-size: 0.9rem;
    opacity: 0.85;
}

/* ===== TIP BAR ===== */
.subscribe-tip-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    background: rgba(255, 193, 7, 0.08);
    border-left: 4px solid #FFC107;
    border-radius: 12px;
    padding: 1rem 1.5rem;
}

[data-theme="dark"] .subscribe-tip-bar {
    background: rgba(255, 193, 7, 0.1);
    border-left-color: #d29922;
}

.subscribe-tip-icon {
    color: #FFC107;
    font-size: 1.4rem;
    flex-shrink: 0;
}

/* ===== PACK CARDS ===== */
.subscribe-pack-card {
    position: relative;
    background: var(--bg-primary, #ffffff);
    border-radius: 16px;
    box-shadow: var(--shadow-md, 0 4px 12px rgba(0,0,0,0.12));
    overflow: hidden;
    transition: var(--transition, all 0.3s ease);
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 2px solid transparent;
}

.subscribe-pack-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg, 0 8px 24px rgba(0,0,0,0.2));
}

.subscribe-pack-active {
    border-color: #28A745;
}

.subscribe-pack-trial {
    border-color: #17A2B8;
}

/* ===== PACK BADGE (top-right corner) ===== */
.subscribe-pack-badge {
    position: absolute;
    top: 0.85rem;
    right: 0.85rem;
    z-index: 10;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.3rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    color: white;
}

.subscribe-pack-badge-active {
    background: #28A745;
}

.subscribe-pack-badge-trial {
    background: #17A2B8;
}

/* ===== PACK HEADER ===== */
.subscribe-pack-header {
    text-align: center;
    padding: 2.5rem 2rem 2rem;
}

.subscribe-pack-header-icon {
    font-size: 3.5rem;
    color: white;
    display: block;
    margin-bottom: 1rem;
    filter: drop-shadow(0 2px 6px rgba(0,0,0,0.2));
}

/* ===== PACK BODY ===== */
.subscribe-pack-body {
    padding: 1.5rem 1.75rem;
    flex: 1;
}

.subscribe-section-label {
    display: block;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-secondary, #6C757D);
    margin-bottom: 0.65rem;
}

.subscribe-section-label i {
    margin-right: 0.3rem;
}

/* ===== APP LIST ===== */
.subscribe-app-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.subscribe-app-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    color: var(--text-primary, #212529);
}

/* ===== PRICING GRID ===== */
.subscribe-pricing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.subscribe-pricing-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1.5px solid var(--border-color, #DEE2E6);
    border-radius: 12px;
    padding: 1rem 0.75rem;
    text-align: center;
    transition: border-color 0.2s ease;
}

.subscribe-pricing-option:hover {
    border-color: var(--primary-color, #7a9171);
}

.subscribe-pricing-popular {
    background: rgba(255, 193, 7, 0.06);
    border-color: rgba(255, 193, 7, 0.5);
}

.subscribe-pricing-popular:hover {
    border-color: #FFC107;
}

.subscribe-pricing-badge {
    display: inline-block;
    background: #28A745;
    color: white;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 0.15rem 0.5rem;
    border-radius: 10px;
    margin-bottom: 0.35rem;
}

.subscribe-pricing-label {
    font-size: 0.78rem;
    color: var(--text-secondary, #6C757D);
    margin-bottom: 0.2rem;
}

.subscribe-pricing-amount {
    font-size: 1.45rem;
    font-weight: 800;
    color: var(--text-primary, #212529);
    line-height: 1.1;
}

.subscribe-pricing-period {
    font-size: 0.72rem;
    color: var(--text-secondary, #6C757D);
    margin-top: 0.15rem;
}

/* ===== PACK FOOTER ===== */
.subscribe-pack-footer {
    padding: 1rem 1.75rem 1.5rem;
    border-top: 1px solid var(--border-color, #DEE2E6);
}

.subscribe-cta-btn {
    background-color: var(--pack-color, #7a9171);
    color: white;
    border: none;
    transition: filter 0.2s ease, transform 0.2s ease;
}

.subscribe-cta-btn:hover {
    filter: brightness(0.9);
    color: white;
    transform: translateY(-2px);
}

/* ===== TRUST BAR ===== */
.subscribe-trust-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    padding: 1.5rem 2rem;
    background: var(--bg-secondary, #F8F9FA);
    border-radius: 12px;
}

[data-theme="dark"] .subscribe-trust-bar {
    background: #161b22;
}

.subscribe-trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary, #6C757D);
    font-size: 0.9rem;
    font-weight: 500;
}

.subscribe-trust-item i {
    font-size: 1.2rem;
    color: var(--primary-color, #7a9171);
}

/* ===== ACCORDION ===== */
.subscribe-accordion .accordion-item {
    border-color: var(--border-color, #DEE2E6);
    margin-bottom: 0.5rem;
    border-radius: 10px !important;
    overflow: hidden;
}

.subscribe-accordion .accordion-button {
    font-weight: 600;
    background-color: var(--bg-primary, #ffffff);
    color: var(--text-primary, #212529);
}

.subscribe-accordion .accordion-button:not(.collapsed) {
    background-color: rgba(122, 145, 113, 0.08);
    color: var(--primary-color, #7a9171);
    box-shadow: none;
}

.subscribe-accordion .accordion-body {
    background-color: var(--bg-primary, #ffffff);
    color: var(--text-secondary, #6C757D);
}

/* ===== MODAL ===== */
.subscribe-modal-header {
    min-height: 76px;
    transition: background 0.3s ease;
}

.subscribe-modal-pack-icon {
    font-size: 3rem;
    color: var(--primary-color, #7a9171);
    display: block;
}

.subscribe-modal-summary {
    background: var(--bg-secondary, #F8F9FA);
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
}

/* ===== DARK MODE — SUBSCRIBE ===== */
[data-theme="dark"] .subscribe-pack-card {
    background: #161b22;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.5);
}

[data-theme="dark"] .subscribe-pack-footer {
    border-top-color: #30363d;
}

[data-theme="dark"] .subscribe-pricing-option {
    border-color: #30363d;
    background: #0d1117;
}

[data-theme="dark"] .subscribe-pricing-option:hover {
    border-color: #5a7350;
}

[data-theme="dark"] .subscribe-pricing-popular {
    background: rgba(210, 153, 34, 0.1);
    border-color: rgba(210, 153, 34, 0.4);
}

[data-theme="dark"] .subscribe-pricing-amount {
    color: #f0f6fc;
}

[data-theme="dark"] .subscribe-app-list li {
    color: #c9d1d9;
}

[data-theme="dark"] .subscribe-modal-summary {
    background: #21262d;
}

[data-theme="dark"] .subscribe-accordion .accordion-button {
    background-color: #21262d;
    color: #f0f6fc;
}

[data-theme="dark"] .subscribe-accordion .accordion-button:not(.collapsed) {
    background-color: rgba(90, 115, 80, 0.2);
    color: #a8c4a0;
}

[data-theme="dark"] .subscribe-accordion .accordion-item {
    background-color: #161b22;
    border-color: #30363d;
}

[data-theme="dark"] .subscribe-accordion .accordion-body {
    background-color: #161b22;
    color: #c9d1d9;
}

/* ===== RESPONSIVE — SUBSCRIBE ===== */
@media (max-width: 768px) {
    .subscribe-hero {
        padding: 5rem 0 3rem;
    }

    .subscribe-hero-icon {
        font-size: 3.5rem;
    }

    .subscribe-trial-banner {
        flex-direction: column;
        text-align: center;
        padding: 1.25rem;
    }

    .subscribe-trial-text {
        text-align: center;
    }

    .subscribe-pricing-grid {
        grid-template-columns: 1fr;
    }

    .subscribe-trust-bar {
        gap: 1rem;
        padding: 1.25rem;
    }

    .subscribe-tip-bar {
        flex-direction: column;
        align-items: flex-start;
    }
}
