:root {
    --bg-dark: #07050d;
    --bg-2: #0e0a1a;
    --bg-card: #110d1f;
    --gold: #FFD700;
    --gold-dark: #b8930a;
    --gold-light: #fff3a3;
    --purple: #7000FF;
    --purple-deep: #3a0085;
    --text: #f1ecf9;
    --muted: #7d6e9a;
    --border-soft: rgba(255, 215, 0, 0.15);
}

* { box-sizing: border-box; }

body {
    margin: 0;
    padding: 0;
    font-family: 'Fredoka', sans-serif;
    background: var(--bg-dark);
    background-image:
        radial-gradient(circle at 50% 0%, rgba(255, 215, 0, 0.08), transparent 60%),
        radial-gradient(circle at 80% 100%, rgba(112, 0, 255, 0.12), transparent 60%),
        linear-gradient(180deg, var(--bg-2) 0%, var(--bg-dark) 100%);
    color: var(--text);
    min-height: 100dvh;
    overflow-x: hidden;
}

#app {
    display: flex;
    flex-direction: column;
    min-height: 100dvh;
}

.gold { color: var(--gold); text-shadow: 0 0 15px rgba(255, 215, 0, 0.5); }

/* ============================================================
   HEADER
   ============================================================ */
.prem-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    border-bottom: 1px solid var(--border-soft);
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(8px);
    position: sticky;
    top: 0;
    z-index: 10;
}
.back-link {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: rgba(255, 215, 0, 0.08);
    border: 1px solid var(--border-soft);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 700;
    transition: 0.15s;
}
.back-link:active { background: rgba(255, 215, 0, 0.15); transform: scale(0.95); }

.brand-tag {
    font-size: 0.7rem;
    letter-spacing: 3px;
    color: var(--gold);
    font-weight: 700;
    text-transform: uppercase;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.4);
}
.brand-spacer { width: 42px; }

/* ============================================================
   MAIN
   ============================================================ */
.prem-main {
    flex: 1;
    padding: 20px 18px 40px;
    max-width: 540px;
    margin: 0 auto;
    width: 100%;
}

.section-h2 {
    font-family: 'Playfair Display', 'Georgia', serif;
    font-size: 1.6rem;
    color: #fff;
    margin: 30px 0 16px;
    font-weight: 900;
    letter-spacing: 0.5px;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
    text-align: center;
    padding: 40px 10px 30px;
    position: relative;
}
.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #000;
    padding: 6px 16px;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 2px;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
    margin-bottom: 18px;
    animation: badgeShine 2.5s ease-in-out infinite;
}
@keyframes badgeShine {
    0%, 100% { box-shadow: 0 0 20px rgba(255, 215, 0, 0.5); }
    50% { box-shadow: 0 0 35px rgba(255, 215, 0, 0.9); }
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.2rem;
    margin: 0;
    line-height: 1;
    font-weight: 900;
    letter-spacing: -1px;
}
.hero-title em {
    font-style: italic;
    color: var(--gold);
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.4);
    font-weight: 700;
}

.hero-tagline {
    color: #cab5e6;
    font-size: 1.05rem;
    line-height: 1.5;
    margin: 18px 0 24px;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 14px 20px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(112, 0, 255, 0.08));
    border: 1px solid var(--border-soft);
    border-radius: 18px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
    display: inline-block;
}
.hero-price-strike {
    color: var(--muted);
    text-decoration: line-through;
    font-size: 0.95rem;
    display: block;
}
.hero-price {
    color: var(--gold);
    font-size: 2.2rem;
    font-weight: 900;
    text-shadow: 0 0 18px rgba(255, 215, 0, 0.5);
    display: block;
    line-height: 1.1;
    font-family: 'Playfair Display', serif;
}
.hero-price-sub {
    color: var(--muted);
    font-size: 0.78rem;
    letter-spacing: 0.5px;
    display: block;
    margin-top: 2px;
}

/* ============================================================
   FEATURES
   ============================================================ */
.features-section {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.feature-card {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: var(--bg-card);
    border: 1px solid var(--border-soft);
    border-radius: 16px;
    padding: 16px;
    transition: transform 0.15s, border-color 0.15s;
}
.feature-card:active {
    transform: scale(0.99);
    border-color: rgba(255, 215, 0, 0.4);
}
.feat-icon {
    font-size: 2rem;
    line-height: 1;
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 215, 0, 0.08);
    border-radius: 12px;
    border: 1px solid rgba(255, 215, 0, 0.2);
}
.feat-content h3 {
    margin: 0 0 4px;
    color: #fff;
    font-size: 1.05rem;
    font-weight: 700;
}
.feat-content p {
    margin: 0;
    color: #b8a8d6;
    font-size: 0.9rem;
    line-height: 1.4;
}

/* ============================================================
   NOTIFY SECTION
   ============================================================ */
.notify-section {
    margin-top: 40px;
    padding: 24px 20px;
    background: linear-gradient(135deg, rgba(112, 0, 255, 0.1), rgba(255, 215, 0, 0.06));
    border: 1px solid rgba(112, 0, 255, 0.3);
    border-radius: 20px;
    text-align: center;
}
.notify-section .section-h2 { margin: 0 0 8px; }
.notify-text {
    color: #cab5e6;
    font-size: 0.95rem;
    margin: 0 0 16px;
    line-height: 1.5;
}
.notify-btn {
    display: inline-block;
    background: linear-gradient(135deg, #833AB4, #FD1D1D, #FCB045);
    color: #fff;
    padding: 14px 20px;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 800;
    font-size: 0.95rem;
    box-shadow: 0 8px 24px rgba(253, 29, 29, 0.35);
    transition: transform 0.1s;
    letter-spacing: 0.5px;
}
.notify-btn:active { transform: scale(0.96); }
.notify-sub {
    color: var(--muted);
    font-size: 0.8rem;
    margin: 14px 0 0;
    line-height: 1.4;
}
.notify-sub strong { color: var(--gold); }

/* ============================================================
   COMPANY / TEAM
   ============================================================ */
.company-section { margin-top: 40px; }

.company-banner {
    text-align: center;
    padding: 28px 20px;
    background: linear-gradient(135deg, #000 0%, #15102a 50%, #000 100%);
    border: 1px solid rgba(255, 215, 0, 0.25);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
}
.company-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 30%, rgba(255, 215, 0, 0.08) 50%, transparent 70%);
    transform: translateX(-100%);
    animation: shimmer 4s ease-in-out infinite;
}
@keyframes shimmer {
    0%, 100% { transform: translateX(-100%); }
    50% { transform: translateX(100%); }
}
.company-tag {
    display: block;
    color: var(--gold);
    font-size: 0.7rem;
    letter-spacing: 3px;
    font-weight: 700;
    margin-bottom: 8px;
    text-transform: uppercase;
}
.company-name {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    margin: 0;
    color: #fff;
    font-weight: 900;
    letter-spacing: -0.5px;
}
.company-mission {
    color: #b8a8d6;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 14px 0 0;
}

.team-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: var(--gold);
    margin: 28px 0 14px;
    text-align: center;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.team-grid {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.team-card {
    display: flex;
    gap: 16px;
    background: var(--bg-card);
    border: 1px solid var(--border-soft);
    border-radius: 16px;
    padding: 18px;
    align-items: flex-start;
}
.team-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 900;
    flex-shrink: 0;
    box-shadow: 0 6px 18px rgba(255, 215, 0, 0.4);
}
.team-info { flex: 1; }
.team-role {
    margin: 0 0 2px;
    color: var(--gold);
    font-size: 0.72rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 700;
}
.team-name {
    margin: 0 0 8px;
    color: #fff;
    font-size: 1.25rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
}
.team-bio {
    margin: 0 0 8px;
    color: #b8a8d6;
    font-size: 0.85rem;
    line-height: 1.4;
}
.team-social {
    color: var(--gold);
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 600;
    border-bottom: 1px dashed rgba(255, 215, 0, 0.4);
    padding-bottom: 2px;
}

/* ============================================================
   LEGAL
   ============================================================ */
.legal-section {
    margin-top: 36px;
    padding: 20px;
    background: var(--bg-card);
    border: 1px solid var(--border-soft);
    border-radius: 18px;
}
.legal-title {
    margin: 0 0 14px;
    color: var(--gold);
    font-size: 0.78rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 700;
}
.legal-grid {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.legal-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 8px 0;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.05);
    gap: 12px;
    font-size: 0.88rem;
}
.legal-row:last-child { border-bottom: none; }
.legal-label {
    color: var(--muted);
    flex-shrink: 0;
    font-weight: 500;
}
.legal-value {
    color: #fff;
    text-align: right;
    font-weight: 600;
}

/* ============================================================
   FOOTER
   ============================================================ */
.prem-footer {
    margin-top: 40px;
    padding: 24px 0;
    text-align: center;
    border-top: 1px solid var(--border-soft);
}
.prem-footer p {
    margin: 4px 0;
    color: var(--muted);
    font-size: 0.8rem;
    letter-spacing: 0.5px;
}
.prem-version {
    color: var(--gold) !important;
    font-weight: 600;
}
.footer-back {
    display: inline-block;
    margin-top: 12px;
    color: var(--gold);
    text-decoration: none;
    font-size: 0.85rem;
    padding: 8px 16px;
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 999px;
    transition: 0.15s;
}
.footer-back:active { background: rgba(255, 215, 0, 0.1); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 380px) {
    .hero-title { font-size: 2.6rem; }
    .company-name { font-size: 2rem; }
    .feat-icon { width: 44px; height: 44px; font-size: 1.7rem; }
}

/* ============================================================
   COUNTDOWN HERO
   ============================================================ */
.hero-countdown {
    margin: 16px 0 0;
    color: #ffd87a;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}
.hero-countdown strong { color: var(--gold); }

/* ============================================================
   COMPARATIF GRATUIT vs PREMIUM
   ============================================================ */
.compare-section { margin-top: 30px; }
.compare-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    align-items: stretch;
}
.compare-col {
    background: var(--bg-card);
    border: 2px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    padding: 18px 14px;
    position: relative;
    display: flex;
    flex-direction: column;
}
.compare-free { opacity: 0.92; }
.compare-prem {
    border-color: var(--gold);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
    background: linear-gradient(160deg, rgba(255, 215, 0, 0.06), var(--bg-card));
}
.compare-ribbon {
    position: absolute;
    top: -11px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #000;
    font-size: 0.62rem;
    font-weight: 900;
    letter-spacing: 1.5px;
    padding: 4px 12px;
    border-radius: 999px;
    border: 2px solid #fff;
    white-space: nowrap;
    box-shadow: 0 0 14px rgba(255, 215, 0, 0.5);
}
.compare-head {
    text-align: center;
    margin-bottom: 14px;
    padding-bottom: 12px;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.12);
}
.compare-plan {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 900;
    color: #fff;
}
.compare-prem .compare-plan { color: var(--gold); text-shadow: 0 0 12px rgba(255, 215, 0, 0.4); }
.compare-plan-sub {
    display: block;
    font-size: 0.72rem;
    color: var(--muted);
    margin-top: 2px;
    letter-spacing: 0.5px;
}
.compare-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}
.compare-list li {
    font-size: 0.82rem;
    line-height: 1.35;
    color: #d8cfe8;
}
.compare-list li strong { color: #fff; }
.compare-list li.ko { color: #9a8aa8; }
.compare-list li.ok { color: #e8f5e8; }
.compare-list li.ok strong { color: var(--gold); }

@media (max-width: 360px) {
    .compare-grid { gap: 8px; }
    .compare-col { padding: 14px 10px; }
    .compare-list li { font-size: 0.76rem; }
    .compare-plan { font-size: 1.1rem; }
}

/* ============ ABONNEMENT (CTA) ============ */
.hero-actions {
    margin-top: 22px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}
.subscribe-btn {
    width: 100%;
    max-width: 320px;
    padding: 16px 24px;
    border: none;
    border-radius: 16px;
    font-family: inherit;
    font-weight: 900;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #1a0e00;
    background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
    box-shadow: 0 6px 24px rgba(255, 215, 0, 0.35);
    cursor: pointer;
    transition: transform 0.1s, box-shadow 0.1s, filter 0.2s;
}
.subscribe-btn:active { transform: translateY(3px); box-shadow: 0 2px 12px rgba(255, 215, 0, 0.3); }
.subscribe-btn:disabled, .subscribe-btn.is-active {
    cursor: default;
    background: rgba(255, 255, 255, 0.08);
    color: #cdeccd;
    box-shadow: none;
    border: 1px solid rgba(120, 230, 120, 0.4);
}
.premium-status { font-size: 0.88rem; color: var(--muted); min-height: 1.2em; text-align: center; line-height: 1.4; }
.premium-status.ok { color: #7be07b; }
.premium-status.error { color: #ff7a93; }
.premium-status.info { color: var(--gold-light); }

/* ============ SÉLECTEUR DE PLANS ============ */
.plans-selector {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin: 24px 0 18px;
}
.plan-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 16px 10px 14px;
    background: rgba(255, 255, 255, 0.04);
    border: 2px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    color: #fff;
    font-family: inherit;
    cursor: pointer;
    transition: transform 0.1s, border-color 0.15s, background 0.15s;
}
.plan-card:active { transform: scale(0.98); }
.plan-card.is-selected {
    border-color: var(--gold);
    background: linear-gradient(160deg, rgba(255, 215, 0, 0.14), rgba(255, 255, 255, 0.04));
    box-shadow: 0 0 18px rgba(255, 215, 0, 0.25);
}
.plan-name { font-size: 0.78rem; font-weight: 700; color: #cab5e6; text-transform: uppercase; letter-spacing: 0.5px; }
.plan-price { font-size: 1.25rem; font-weight: 900; }
.plan-sub { font-size: 0.7rem; color: var(--muted); text-align: center; line-height: 1.2; }
.plan-card.is-selected .plan-name { color: var(--gold); }
.plan-ribbon {
    position: absolute;
    top: -8px; left: 50%; transform: translateX(-50%);
    padding: 2px 8px;
    background: linear-gradient(135deg, #FF7A00, #FF004D);
    color: #fff; font-size: 0.6rem; font-weight: 900; letter-spacing: 1px;
    border-radius: 999px; white-space: nowrap;
    box-shadow: 0 2px 8px rgba(255, 0, 77, 0.4);
}
.legal-cta {
    font-size: 0.75rem; color: var(--muted); text-align: center; margin-top: 8px;
}
.promo-hint {
    font-size: 0.78rem; text-align: center; margin-top: 6px;
    color: var(--gold-light);
    display: flex; align-items: center; justify-content: center; gap: 6px;
}
.legal-consent {
    margin-top: 10px;
    font-size: 0.78rem;
    color: var(--muted);
    text-align: center;
    line-height: 1.5;
}
.legal-consent a {
    color: var(--gold-light);
    text-decoration: underline;
}
.prem-legal-links {
    display: flex; flex-wrap: wrap; gap: 14px; justify-content: center;
    margin: 14px 0 10px;
}
.prem-legal-links a {
    color: var(--muted);
    text-decoration: none;
    font-size: 0.82rem;
}
.prem-legal-links a:hover { color: #fff; }

@media (max-width: 380px) {
    .plan-price { font-size: 1.05rem; }
    .plan-card { padding: 14px 6px 12px; }
}

/* ============ HERO GLOW (halo derrière le titre) ============ */
.hero { position: relative; overflow: visible; }
.hero-glow {
    position: absolute;
    top: -40px; left: 50%;
    width: 320px; height: 320px;
    transform: translateX(-50%);
    background: radial-gradient(circle, rgba(255, 215, 0, 0.20), transparent 60%);
    pointer-events: none;
    z-index: -1;
}

/* ============ TRUST STRIP (paiement sécurisé...) ============ */
.trust-strip {
    margin-top: 12px;
    display: flex; flex-wrap: wrap; justify-content: center; gap: 6px 14px;
    font-size: 0.78rem; color: var(--muted);
}
.trust-item {
    display: inline-flex; align-items: center; gap: 6px;
    white-space: nowrap;
}
.trust-item i { color: var(--gold-light); }

/* ============ BENEFITS GRID ============ */
.benefits-section { margin-top: 32px; }
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}
.benefit-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 16px;
    padding: 16px 14px;
    transition: transform 0.15s, border-color 0.15s, background 0.15s;
}
.benefit-card:hover {
    border-color: rgba(255, 215, 0, 0.4);
    background: rgba(255, 215, 0, 0.04);
    transform: translateY(-2px);
}
.benefit-icon {
    font-size: 1.5rem;
    margin-bottom: 8px;
    display: block;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.4));
}
.benefit-card h3 {
    font-size: 0.98rem; font-weight: 800;
    color: #fff; margin-bottom: 4px;
}
.benefit-card p {
    font-size: 0.82rem; color: var(--muted); line-height: 1.4;
}

/* ============ FAQ ============ */
.faq-section { margin-top: 32px; }
.faq-item {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 14px;
    padding: 0;
    margin-bottom: 8px;
    transition: border-color 0.15s, background 0.15s;
}
.faq-item[open] {
    border-color: rgba(255, 215, 0, 0.4);
    background: rgba(255, 215, 0, 0.03);
}
.faq-item summary {
    cursor: pointer;
    list-style: none;
    padding: 14px 16px;
    font-size: 0.95rem; font-weight: 700;
    color: #fff;
    display: flex; align-items: center; gap: 10px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: "\f078"; /* fa-chevron-down */
    font-family: "Font Awesome 6 Free"; font-weight: 900;
    margin-left: auto; font-size: 0.8rem;
    color: var(--muted);
    transition: transform 0.2s;
}
.faq-item[open] summary::after { transform: rotate(180deg); }
.faq-item p {
    padding: 0 16px 14px;
    color: #d8cfe8; line-height: 1.5; font-size: 0.9rem;
}

/* ============ STRIPE TRUST BANNER ============ */
.stripe-trust {
    margin-top: 32px;
    background: linear-gradient(135deg, rgba(99, 91, 255, 0.10), rgba(124, 123, 255, 0.04));
    border: 1px solid rgba(124, 123, 255, 0.35);
    border-radius: 16px;
    padding: 14px 16px;
}
.stripe-trust-inner {
    display: flex; align-items: center; gap: 14px;
}
.stripe-logo {
    font-size: 2.4rem; color: #635BFF;
    flex-shrink: 0;
}
.stripe-trust-title {
    font-size: 0.95rem; font-weight: 800; color: #fff;
}
.stripe-trust-sub {
    font-size: 0.8rem; color: var(--muted); margin-top: 2px; line-height: 1.4;
}

/* ============ TEAM (mini) ============ */
.team-section { margin-top: 32px; }
.team-intro {
    color: #cdc1e6; font-size: 0.92rem; line-height: 1.5;
    text-align: center; margin-bottom: 16px;
}
.team-intro strong { color: var(--gold-light); }
.team-section .team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}
.team-section .team-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 16px;
    padding: 16px 14px;
    text-align: center;
}
.team-section .team-avatar {
    width: 52px; height: 52px;
    margin: 0 auto 10px;
    border-radius: 50%;
    background: linear-gradient(135deg, #FFD700, #FF8A00);
    color: #1a0e00;
    display: flex; align-items: center; justify-content: center;
    font-weight: 900; font-size: 1.1rem;
}
.team-section .team-name {
    font-size: 0.98rem; font-weight: 800; color: #fff;
}
.team-section .team-role {
    font-size: 0.78rem; color: var(--muted); margin: 2px 0 6px; line-height: 1.3;
}
.team-section .team-social {
    display: inline-flex; align-items: center; gap: 5px;
    font-size: 0.82rem; color: var(--gold-light); text-decoration: none;
}
.team-section .team-social:hover { color: #fff; }

/* ============ FINAL CTA ============ */
.final-cta {
    margin-top: 32px;
    padding: 28px 20px;
    background: linear-gradient(160deg, rgba(255, 215, 0, 0.10), rgba(255, 138, 0, 0.04));
    border: 1px solid rgba(255, 215, 0, 0.35);
    border-radius: 22px;
    text-align: center;
}
.final-cta-title {
    font-size: 1.4rem; font-weight: 900; color: #fff; margin-bottom: 6px;
}
.final-cta-sub { font-size: 0.92rem; color: #cdc1e6; margin-bottom: 16px; }
.final-cta-sub strong { color: var(--gold); }
.final-subscribe { max-width: 320px; margin: 0 auto; }

/* Responsive */
@media (max-width: 380px) {
    .benefits-grid { grid-template-columns: 1fr; }
    .team-section .team-grid { grid-template-columns: 1fr; }
    .hero-glow { width: 240px; height: 240px; }
    .stripe-trust-inner { gap: 10px; }
    .stripe-logo { font-size: 2rem; }
}
