/* ==============================================
   EL VALLE SERENITY — main.css
   v1.5 — Unified Glass Design System
   --------------------------------------------------
   • Sistema único .glass-premium con capas reales
   • Botones glass uniformes (Yappy, plan, newsletter)
   • PayPal SDK funcional dentro de wrapper glass
   • Cards 3-columnas premium consistentes
   ============================================== */

:root {
    --primary:        #10b981;
    --primary-light:  #34d399;
    --primary-glow:   rgba(52, 211, 153, 0.35);
    --secondary:      #f9a11b;
    --paypal-blue:    #009cde;
    --surface:        rgba(15, 23, 42, 0.55);
    --surface-strong: rgba(15, 23, 42, 0.78);
    --border-glass:   rgba(255, 255, 255, 0.08);
    --border-bright:  rgba(52, 211, 153, 0.28);
    --shadow-glass:   0 18px 50px -12px rgba(0, 0, 0, 0.55), 0 4px 16px -4px rgba(16, 185, 129, 0.08);
    --shadow-glass-h: 0 28px 70px -10px rgba(0, 0, 0, 0.7), 0 6px 24px -4px rgba(16, 185, 129, 0.18);
    --cubic-smart:    cubic-bezier(0.16, 1, 0.3, 1);
    --radius-glass:   24px;
    --radius-btn:     14px;
}

/* ── BASE ── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    background-color: #020617;
    color: #fff;
    font-family: ui-sans-serif, system-ui, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ============================================
   GLASS SYSTEM — single source of truth
   ============================================ */

.glass,
.glass-premium {
    position: relative;
    background:
        linear-gradient(135deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.01) 100%),
        var(--surface-strong);
    backdrop-filter: blur(22px) saturate(140%);
    -webkit-backdrop-filter: blur(22px) saturate(140%);
    border: 1px solid var(--border-glass);
    box-shadow: var(--shadow-glass);
    border-radius: var(--radius-glass);
    isolation: isolate;
    transition:
        transform 0.5s var(--cubic-smart),
        box-shadow 0.5s var(--cubic-smart),
        border-color 0.5s var(--cubic-smart),
        background 0.5s var(--cubic-smart);
}

.glass-premium::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(255,255,255,0.18) 20%,
        rgba(52,211,153,0.45) 50%,
        rgba(255,255,255,0.18) 80%,
        transparent 100%);
    border-radius: var(--radius-glass) var(--radius-glass) 0 0;
    z-index: 2;
    pointer-events: none;
}
.glass-premium::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(120% 80% at 50% -10%, rgba(52,211,153,0.10) 0%, transparent 55%);
    pointer-events: none;
    z-index: 1;
    opacity: 0.85;
    transition: opacity 0.5s var(--cubic-smart);
}
.glass-premium > * { position: relative; z-index: 2; }

.glass-premium:hover {
    transform: translateY(-6px);
    border-color: var(--border-bright);
    box-shadow: var(--shadow-glass-h);
}
.glass-premium:hover::after { opacity: 1; }

.glass-premium.is-featured {
    border-color: rgba(52, 211, 153, 0.45);
    box-shadow:
        var(--shadow-glass),
        0 0 0 1px rgba(52,211,153,0.18),
        0 0 60px -10px rgba(16, 185, 129, 0.30);
}
.glass-premium.is-featured::after {
    background: radial-gradient(120% 80% at 50% -10%, rgba(52,211,153,0.22) 0%, transparent 60%);
    opacity: 1;
}
.glass-premium.is-featured:hover {
    box-shadow:
        var(--shadow-glass-h),
        0 0 0 1px rgba(52,211,153,0.28),
        0 0 80px -8px rgba(16, 185, 129, 0.45);
}

/* ── PRICING / MAINTENANCE — fuerza 3 cols ── */
.evs-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2.25rem;
    max-width: 80rem;
    margin-left: auto;
    margin-right: auto;
    align-items: stretch;
}
.evs-cards-grid > * { display: flex; flex-direction: column; height: 100%; }

@media (max-width: 1024px) {
    .evs-cards-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px) {
    .evs-cards-grid { grid-template-columns: 1fr; gap: 1.5rem; }
}

/* ── HERO GRADIENT ── */
.hero-gradient {
    background:
        radial-gradient(ellipse at top, rgba(16,185,129,0.12) 0%, transparent 60%),
        radial-gradient(ellipse at bottom right, rgba(59,130,246,0.08) 0%, transparent 60%),
        #020617;
}
.hero-bg-layer {
    position: absolute;
    inset: -8%;
    background-size: cover;
    background-position: center;
    background-attachment: local;
    will-change: transform;
    transform-origin: center center;
    transition: transform 0.08s linear;
}

/* ── REVEAL ── */
.reveal-init {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s var(--cubic-smart), transform 0.7s var(--cubic-smart);
}
.reveal-init.is-visible { opacity: 1; transform: translateY(0); }

/* ============================================
   BUTTON SYSTEM — uniform glass
   ============================================ */
.btn-glass,
.btn-yappy-luxe,
.btn-plan,
.btn-confirm-signature,
.newsletter-submit-btn {
    --btn-tint: 16, 185, 129;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding: 16px 28px;
    border-radius: var(--radius-btn);
    border: 1px solid rgba(255, 255, 255, 0.10);
    background:
        linear-gradient(135deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.02) 100%),
        rgba(15, 23, 42, 0.65);
    backdrop-filter: blur(14px) saturate(130%);
    -webkit-backdrop-filter: blur(14px) saturate(130%);
    color: #fff;
    font-family: inherit;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    overflow: hidden;
    box-shadow:
        0 8px 24px -8px rgba(0, 0, 0, 0.6),
        inset 0 1px 0 0 rgba(255,255,255,0.08);
    transition:
        transform 0.4s var(--cubic-smart),
        border-color 0.4s var(--cubic-smart),
        box-shadow 0.4s var(--cubic-smart),
        background 0.4s var(--cubic-smart);
}
.btn-glass::before,
.btn-yappy-luxe::before,
.btn-plan::before,
.btn-confirm-signature::before,
.newsletter-submit-btn::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(var(--btn-tint), 0.7), transparent);
    z-index: 2;
}
.btn-glass::after,
.btn-yappy-luxe::after,
.btn-plan::after,
.btn-confirm-signature::after,
.newsletter-submit-btn::after {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.13), transparent);
    transition: left 0.6s var(--cubic-smart);
    pointer-events: none;
    z-index: 1;
}
.btn-glass:hover,
.btn-yappy-luxe:hover,
.btn-plan:hover,
.btn-confirm-signature:hover,
.newsletter-submit-btn:hover {
    transform: translateY(-2px);
    border-color: rgba(var(--btn-tint), 0.55);
    box-shadow:
        0 14px 36px -10px rgba(0, 0, 0, 0.7),
        0 0 0 1px rgba(var(--btn-tint), 0.25),
        0 0 28px -6px rgba(var(--btn-tint), 0.45),
        inset 0 1px 0 0 rgba(255,255,255,0.12);
}
.btn-glass:hover::after,
.btn-yappy-luxe:hover::after,
.btn-plan:hover::after,
.btn-confirm-signature:hover::after,
.newsletter-submit-btn:hover::after { left: 100%; }
.btn-glass:focus-visible,
.btn-yappy-luxe:focus-visible,
.btn-plan:focus-visible,
.btn-confirm-signature:focus-visible,
.newsletter-submit-btn:focus-visible {
    outline: 2px solid var(--primary-light);
    outline-offset: 3px;
}
.btn-glass:active,
.btn-yappy-luxe:active,
.btn-plan:active,
.btn-confirm-signature:active,
.newsletter-submit-btn:active { transform: translateY(0) scale(0.985); }
.btn-glass > *,
.btn-yappy-luxe > *,
.btn-plan > *,
.btn-confirm-signature > *,
.newsletter-submit-btn > * { position: relative; z-index: 2; }

.btn-glass:disabled,
.btn-yappy-luxe:disabled,
.btn-plan:disabled,
.btn-confirm-signature:disabled,
.newsletter-submit-btn:disabled {
    opacity: 0.55;
    cursor: not-allowed;
    transform: none;
}

/* ── YAPPY (mantiene identidad) ── */
.btn-yappy-luxe {
    --btn-tint: 0, 174, 239;
    background:
        linear-gradient(135deg, rgba(0,174,239,0.10) 0%, rgba(249,161,27,0.06) 100%),
        rgba(15, 23, 42, 0.72);
    border-color: rgba(0, 174, 239, 0.30);
}
.btn-yappy-luxe img {
    height: 24px;
    width: auto;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
    position: relative;
    z-index: 2;
}
.yappy-premium-pulse { animation: yappyPulse 2.4s infinite; }
@keyframes yappyPulse {
    0%   { box-shadow: 0 8px 24px -8px rgba(0,0,0,0.6), 0 0 0 0 rgba(249,161,27,0.45); }
    70%  { box-shadow: 0 8px 24px -8px rgba(0,0,0,0.6), 0 0 0 14px rgba(249,161,27,0); }
    100% { box-shadow: 0 8px 24px -8px rgba(0,0,0,0.6), 0 0 0 0 rgba(249,161,27,0); }
}

/* ── PLAN BUTTON ── */
.btn-plan {
    --btn-tint: 16, 185, 129;
    background:
        linear-gradient(135deg, rgba(16,185,129,0.18) 0%, rgba(5,150,105,0.08) 100%),
        rgba(15, 23, 42, 0.72);
    border-color: rgba(52, 211, 153, 0.32);
}

/* ── CONFIRM SIGNATURE BUTTON (post-pago) ── */
.btn-confirm-signature {
    --btn-tint: 16, 185, 129;
    background:
        linear-gradient(135deg, rgba(16,185,129,0.22) 0%, rgba(5,150,105,0.10) 100%),
        rgba(15, 23, 42, 0.78);
    border-color: rgba(52, 211, 153, 0.40);
    font-size: 15px;
    padding: 18px 28px;
}
.btn-confirm-signature i { color: var(--primary-light); font-size: 18px; }

/* ============================================
   PAYPAL GLASS WRAPPER (v1.5)
   --------------------------------------------
   El SDK de PayPal renderiza su botón nativo (color: black, height 48)
   DENTRO de este wrapper. El wrapper aporta el marco premium glass
   alrededor: borde luminoso, glow, hover lift.
   ============================================ */
.paypal-glass-shell {
    position: relative;
    padding: 10px 12px;
    border-radius: 18px;
    background:
        linear-gradient(135deg, rgba(0,156,222,0.18) 0%, rgba(0,72,138,0.08) 50%, rgba(52,211,153,0.06) 100%),
        rgba(15, 23, 42, 0.85);
    border: 1px solid rgba(0, 156, 222, 0.45);
    backdrop-filter: blur(16px) saturate(140%);
    -webkit-backdrop-filter: blur(16px) saturate(140%);
    box-shadow:
        0 10px 30px -8px rgba(0, 0, 0, 0.7),
        0 0 24px -6px rgba(0, 156, 222, 0.35),
        inset 0 1px 0 0 rgba(255, 255, 255, 0.12),
        inset 0 -1px 0 0 rgba(0, 0, 0, 0.3);
    transition:
        transform 0.4s var(--cubic-smart),
        border-color 0.4s var(--cubic-smart),
        box-shadow 0.4s var(--cubic-smart);
    margin-bottom: 12px;
    min-height: 68px;
    overflow: hidden;
    isolation: isolate;
}
/* Highlight superior tipo cristal — más visible que antes */
.paypal-glass-shell::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1.5px;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.25) 20%,
        rgba(0, 156, 222, 0.95) 50%,
        rgba(255, 255, 255, 0.25) 80%,
        transparent 100%);
    z-index: 3;
    pointer-events: none;
}
/* Reflejo radial detrás del SDK */
.paypal-glass-shell::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(120% 80% at 50% -10%, rgba(0, 156, 222, 0.18) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
    opacity: 0.9;
    transition: opacity 0.4s var(--cubic-smart);
}
.paypal-glass-shell:hover {
    transform: translateY(-2px);
    border-color: rgba(0, 156, 222, 0.7);
    box-shadow:
        0 16px 40px -10px rgba(0, 0, 0, 0.8),
        0 0 0 1px rgba(0, 156, 222, 0.35),
        0 0 36px -6px rgba(0, 156, 222, 0.6),
        inset 0 1px 0 0 rgba(255, 255, 255, 0.16),
        inset 0 -1px 0 0 rgba(0, 0, 0, 0.3);
}
.paypal-glass-shell:hover::after { opacity: 1; }

/* el iframe del SDK PayPal hereda border-radius del wrapper y queda elevado encima del ::after */
.paypal-glass-shell > div,
.paypal-glass-shell iframe {
    border-radius: 10px !important;
    overflow: hidden;
    position: relative;
    z-index: 2;
}

.paypal-glass-shell__loader,
.paypal-glass-shell__error {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 48px;
    padding: 12px;
    color: #94a3b8;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.04em;
    position: relative;
    z-index: 2;
}
.paypal-glass-shell__error { color: #f87171; }
.paypal-glass-shell__loader i {
    color: #67c4ff;
    font-size: 16px;
}

/* Banner "Payment received" en /contract/?paid=1 */
.paypal-paid-banner {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px 24px;
    margin-bottom: 28px;
    border-radius: 16px;
    background:
        linear-gradient(135deg, rgba(52,211,153,0.12) 0%, rgba(16,185,129,0.04) 100%),
        rgba(15, 23, 42, 0.7);
    border: 1px solid rgba(52, 211, 153, 0.40);
    backdrop-filter: blur(14px) saturate(140%);
    -webkit-backdrop-filter: blur(14px) saturate(140%);
    box-shadow: 0 0 30px -8px rgba(52, 211, 153, 0.30), inset 0 1px 0 rgba(255,255,255,0.08);
    color: #d1fae5;
}
.paypal-paid-banner > i {
    color: var(--primary-light);
    font-size: 28px;
    flex-shrink: 0;
    margin-top: 2px;
    filter: drop-shadow(0 0 8px rgba(52,211,153,0.6));
}
.paypal-paid-banner strong { color: #fff; font-size: 16px; display: block; margin-bottom: 4px; }
.paypal-paid-banner p { font-size: 13px; color: #cbd5e1; margin: 0; line-height: 1.5; }
.paypal-paid-banner code {
    background: rgba(0,0,0,0.3);
    padding: 2px 8px;
    border-radius: 4px;
    font-family: ui-monospace, monospace;
    color: var(--primary-light);
}
.paypal-paid-banner__hint { margin-top: 6px !important; color: #94a3b8 !important; font-size: 12px !important; }

/* ── HEADER CHAT BUTTON ── */
.btn-header-chat {
    --btn-tint: 52, 211, 153;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: rgba(255,255,255,0.92);
    text-decoration: none;
    position: relative;
    overflow: hidden;
    background: rgba(15, 23, 42, 0.55);
    border: 1px solid rgba(52,211,153,0.28);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    transition: all 0.3s var(--cubic-smart);
}
.btn-header-chat::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(52,211,153,0.6), transparent);
}
.btn-header-chat::after {
    content: '';
    position: absolute;
    top: 0; left: -100%; width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.08), transparent);
    transition: left 0.5s ease;
}
.btn-header-chat:hover::after { left: 100%; }
.btn-header-chat:hover {
    background: rgba(52,211,153,0.10);
    border-color: rgba(52,211,153,0.6);
    box-shadow: 0 0 24px rgba(52,211,153,0.22), inset 0 0 16px rgba(52,211,153,0.05);
    transform: translateY(-1px);
}
.btn-header-chat:active { transform: scale(0.97); }
.btn-header-chat__icon { font-size: 16px; color: #34d399; }
.btn-header-chat:hover .btn-header-chat__icon { color: #6ee7b7; }

/* ── BTN SHINY (legacy) ── */
.btn-shiny { position: relative; overflow: hidden; }
.btn-shiny::after {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    transition: left 0.5s ease;
}
.btn-shiny:hover::after { left: 100%; }

/* ── NEWSLETTER SUBMIT ── */
.newsletter-submit-btn {
    --btn-tint: 16, 185, 129;
    background:
        linear-gradient(135deg, rgba(16,185,129,0.22) 0%, rgba(5,150,105,0.10) 100%),
        rgba(15, 23, 42, 0.72);
    border-color: rgba(52, 211, 153, 0.32);
    font-size: 15px;
    padding: 16px 24px;
}

/* ============================================
   CARD INTERIORS — pricing / maintenance
   ============================================ */
.card-pad      { padding: 2.5rem; }
.card-image-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.18;
    border-radius: inherit;
    pointer-events: none;
    z-index: 0;
}

/* ── MAINTENANCE small UI ── */
.maint-icon-wrap {
    width: 52px; height: 52px; border-radius: 50%;
    background: rgba(16,185,129,0.15);
    border: 1px solid rgba(52,211,153,0.35);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 18px; color: #34d399; font-size: 22px;
    box-shadow: 0 0 24px -4px rgba(52,211,153,0.25), inset 0 1px 0 rgba(255,255,255,0.1);
}
.maint-hours {
    display: flex; align-items: center; justify-content: center;
    gap: 6px; font-size: 12px; color: #94a3b8; margin-bottom: 14px;
    letter-spacing: 0.04em;
}
.maint-hours i { color: #34d399; font-size: 11px; }

.maint-recommended-badge,
.plan-recommended-badge {
    display: inline-block;
    margin-bottom: 12px;
    padding: 5px 16px;
    background: rgba(52,211,153,0.14);
    border: 1px solid rgba(52,211,153,0.4);
    border-radius: 999px;
    color: #34d399;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    box-shadow: 0 0 16px -4px rgba(52,211,153,0.4);
}

/* ── NEWSLETTER ── */
.newsletter-benefit-icon {
    width: 42px; height: 42px; border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; font-size: 16px;
    border: 1px solid rgba(255,255,255,0.08);
}
.newsletter-benefit-icon--emerald { background: rgba(16,185,129,0.15); border-color: rgba(52,211,153,0.3); color: #34d399; }
.newsletter-benefit-icon--blue    { background: rgba(59,130,246,0.15); border-color: rgba(96,165,250,0.3); color: #60a5fa; }
.newsletter-benefit-icon--purple  { background: rgba(139,92,246,0.15); border-color: rgba(167,139,250,0.3); color: #a78bfa; }

.newsletter-header-icon {
    width: 56px; height: 56px; border-radius: 50%;
    background: rgba(16,185,129,0.15);
    border: 1px solid rgba(52,211,153,0.35);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 16px; color: #34d399; font-size: 22px;
}
.newsletter-field-label {
    display: block; font-size: 12px; font-weight: 600;
    color: #64748b; margin-bottom: 8px; letter-spacing: 0.05em;
}
.newsletter-select-wrap { position: relative; }
.newsletter-select-arrow {
    position: absolute; right: 16px; top: 50%;
    transform: translateY(-50%); pointer-events: none;
    color: #64748b; font-size: 12px;
}
.newsletter-agree-label {
    display: flex; align-items: flex-start; gap: 12px;
    font-size: 13px; color: #94a3b8; cursor: pointer;
}
.newsletter-checkbox {
    width: 18px; height: 18px; border-radius: 4px; flex-shrink: 0;
    border: 1px solid rgba(52,211,153,0.4); margin-top: 1px;
    accent-color: #10b981;
}
.newsletter-trust-row {
    display: flex; justify-content: center; gap: 24px;
    font-size: 12px; color: #64748b; font-weight: 600;
    letter-spacing: 0.05em;
}
.newsletter-trust-row i { color: #10b981; margin-right: 4px; }
.newsletter-feedback {
    padding: 16px; border-radius: 12px; font-weight: 700;
    display: flex; align-items: center; justify-content: center; gap: 8px;
    font-size: 14px; margin-top: 12px;
    animation: successSlide 0.3s ease-out;
}
.newsletter-feedback.hidden { display: none; }
.newsletter-feedback--success {
    background: rgba(52,211,153,0.07); border: 1px solid rgba(52,211,153,0.35); color: #34d399;
}
.newsletter-feedback--error {
    background: rgba(239,68,68,0.07); border: 1px solid rgba(239,68,68,0.35); color: #f87171;
}
@keyframes successSlide {
    from { opacity: 0; transform: translateY(-10px); }
    to   { opacity: 1; transform: translateY(0); }
}
.newsletter-signup:hover {
    border-color: rgba(16,185,129,0.5);
    box-shadow: 0 25px 50px -12px rgba(16,185,129,0.15);
}
.newsletter-trusted-label {
    font-size: 12px; color: #64748b; margin-bottom: 16px;
    display: flex; align-items: center; justify-content: center; gap: 8px;
}
.newsletter-trusted-label i { color: #10b981; font-size: 11px; }
.newsletter-region-badge {
    font-size: 11px; font-weight: 700; color: #64748b;
    display: inline-flex; align-items: center; gap: 6px;
}
.newsletter-region-badge i { color: #10b981; font-size: 10px; }

/* ── CONTACT ── */
.contact-icon-wrap {
    width: 44px; height: 44px; border-radius: 50%;
    background: rgba(16,185,129,0.15);
    border: 1px solid rgba(52,211,153,0.3);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 14px; color: #34d399; font-size: 16px;
    box-shadow: 0 0 20px -6px rgba(52,211,153,0.25);
}
.contact-success-msg {
    text-align: center; padding: 16px; color: #34d399; font-weight: 700;
    display: flex; align-items: center; justify-content: center; gap: 8px;
    border: 1px solid rgba(52,211,153,0.35); border-radius: 12px;
    background: rgba(52,211,153,0.07);
}
.contact-success-msg.hidden { display: none; }

/* ── PAYPAL SUCCESS ── */
.paypal-success-msg {
    padding: 14px 16px; border: 1px solid rgba(52,211,153,0.4);
    border-radius: 12px; background: rgba(52,211,153,0.08);
    color: #34d399; font-size: 13px; text-align: center;
    display: flex; align-items: center; justify-content: center; gap: 8px;
    margin-bottom: 12px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

/* ── COOKIE BANNER ── */
.cookie-banner {
    position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999;
    background: rgba(15,23,42,0.92); border-top: 1px solid rgba(52,211,153,0.25);
    backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
    padding: 20px 40px; display: flex; align-items: center;
    justify-content: space-between; gap: 24px;
    transform: translateY(100%); transition: transform 0.4s var(--cubic-smart);
}
.cookie-banner--visible { transform: translateY(0); }
.cookie-banner__text { font-size: 13px; color: #94a3b8; max-width: 640px; line-height: 1.6; }
.cookie-banner__icon { color: #34d399; margin-right: 8px; font-size: 11px; }
.cookie-banner__actions { display: flex; gap: 12px; flex-shrink: 0; }
.cookie-banner__accept {
    background: rgba(16,185,129,0.85); color: #fff; border: 1px solid rgba(52,211,153,0.45);
    padding: 10px 28px; font-size: 12px; letter-spacing: 0.12em;
    text-transform: uppercase; cursor: pointer; font-family: inherit;
    font-weight: 700; border-radius: 10px; transition: all 0.25s;
    backdrop-filter: blur(10px);
}
.cookie-banner__accept:hover { background: #10b981; box-shadow: 0 0 20px rgba(16,185,129,0.4); }
.cookie-banner__decline {
    background: transparent; color: #94a3b8;
    border: 1px solid rgba(100,116,139,0.4);
    padding: 10px 28px; font-size: 12px; letter-spacing: 0.12em;
    text-transform: uppercase; cursor: pointer; font-family: inherit;
    border-radius: 10px; transition: all 0.25s;
}
.cookie-banner__decline:hover { border-color: #94a3b8; color: #cbd5e1; }

/* ── SCROLLBAR ── */
.custom-scrollbar::-webkit-scrollbar { width: 6px; }
.custom-scrollbar::-webkit-scrollbar-thumb { background: #10b981; border-radius: 20px; }

/* ── ANIMATE PULSE ── */
@keyframes pulse-glow {
    0%   { opacity: 0.6; }
    50%  { opacity: 1; }
    100% { opacity: 0.6; }
}
.animate-pulse { animation: pulse-glow 4s cubic-bezier(0.4,0,0.6,1) infinite; }

/* ── REDUCED MOTION ── */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation: none !important;
        transition: none !important;
        scroll-behavior: auto !important;
    }
}

/* ── MOBILE ── */
@media (max-width: 640px) {
    .cookie-banner { flex-direction: column; align-items: flex-start; padding: 20px 24px; }
    .cookie-banner__actions { width: 100%; }
    .cookie-banner__accept, .cookie-banner__decline { flex: 1; text-align: center; }
    .card-pad { padding: 1.75rem; }
}

/* ── PLAN CARD legacy hooks ── */
.plan-card { background-size: cover; background-position: center; background-repeat: no-repeat; }
.plan-card img { width: 100%; height: 200px; object-fit: cover; }
