:root {
    --gradient-primary: linear-gradient(135deg, #0a192f 0%, #112240 100%);
    --gradient-secondary: linear-gradient(45deg, #00e5ff 0%, #378add 100%);
    --gradient-accent: linear-gradient(135deg, #64ffda 0%, #00e5ff 100%);
    --main-bg: #0a192f;
    --panel-bg: rgba(17, 34, 64, 0.85);
    --accent-cyan: #00e5ff;
    --accent-blue: #378add;
    --accent-green: #0cc178;
    --accent-red: #d34e4e;
    --text-primary: #e2eaf4;
    --text-muted: #8fa3b8;
    --hover-glow: 0 0 24px rgba(0, 229, 255, 0.45);
    --card-glow: 0 0 40px rgba(0, 229, 255, 0.18), 0 8px 40px rgba(0,0,0,0.4);
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--gradient-primary);
    color: var(--text-primary);
    background-attachment: fixed;
}

/* ─── Wrapper ─── */
#pricing-page-wrapper {
    background: linear-gradient(135deg, #060e1c 0%, #0a192f 40%, #0d2040 100%) !important;
    background-attachment: fixed !important;
    min-height: 100vh;
    width: 100%;
    position: relative;
    z-index: 1;
    margin: -1.5rem -1.5rem 0 -1.5rem;
    padding-bottom: 5rem;
    overflow: hidden;
}

/* ─── Floating Orbs (background atmosphere) ─── */
.pricing-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    z-index: 0;
    opacity: 0.22;
}
/* GOV-SEC-83: reemplaza gsap.to(repeat:-1, yoyo:true) -- CSS puro,
   alternate reproduce el vaiven del yoyo original. */
@keyframes pricingOrbFloat1 { to { transform: translate(30px, -50px); } }
@keyframes pricingOrbFloat2 { to { transform: translate(-20px, 40px); } }
@keyframes pricingOrbFloat3 { to { transform: scale(1.2); } }
.pricing-orb-float-1 { animation: pricingOrbFloat1 15s ease-in-out infinite alternate; }
.pricing-orb-float-2 { animation: pricingOrbFloat2 18s ease-in-out infinite alternate 1s; }
.pricing-orb-float-3 { animation: pricingOrbFloat3 10s ease-in-out infinite alternate 2s; }
.pricing-orb-1 {
    width: 480px; height: 480px;
    background: radial-gradient(circle, #00e5ff 0%, transparent 70%);
    top: -120px; right: -100px;
}
.pricing-orb-2 {
    width: 360px; height: 360px;
    background: radial-gradient(circle, #378add 0%, transparent 70%);
    bottom: 80px; left: -80px;
}
.pricing-orb-3 {
    width: 260px; height: 260px;
    background: radial-gradient(circle, #64ffda 0%, transparent 70%);
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
}

/* ─── Back button ─── */
.back-btn {
    position: absolute;
    top: 24px; left: 24px;
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s;
    z-index: 100;
    backdrop-filter: blur(8px);
    background: rgba(255,255,255,0.05);
    padding: 8px 14px;
    border-radius: 50px;
    border: 1px solid rgba(255,255,255,0.1);
}
.back-btn:hover {
    color: var(--accent-cyan);
    border-color: rgba(0,229,255,0.4);
    background: rgba(0,229,255,0.08);
}

/* ─── Header ─── */
.pricing-header {
    padding: 7rem 0 3.5rem;
    text-align: center;
    position: relative;
    z-index: 2;
}

.pricing-eyebrow {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--accent-cyan);
    background: rgba(0,229,255,0.1);
    border: 1px solid rgba(0,229,255,0.25);
    padding: 6px 18px;
    border-radius: 50px;
    margin-bottom: 1.4rem;
    opacity: 0;
}

.pricing-header h1 {
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    font-weight: 800;
    line-height: 1.15;
    color: var(--text-primary);
    opacity: 0;
}

.pricing-header h1 .gradient-text {
    background: linear-gradient(90deg, #00e5ff 0%, #378add 50%, #64ffda 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pricing-inline-icon {
    vertical-align: -2px;
    margin-right: 6px;
}

.pricing-inline-icon-sm {
    vertical-align: -2px;
    margin-right: 4px;
}

.pricing-header p {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 560px;
    margin: 1rem auto 2.5rem;
    line-height: 1.7;
    opacity: 0;
}

/* ─── Social proof strip ─── */
.pricing-social-proof {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
    opacity: 0;
}
.proof-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--text-muted);
}
.proof-badge iconify-icon {
    color: var(--accent-cyan);
    font-size: 1.1rem;
}
.proof-badge strong {
    color: var(--text-primary);
    font-weight: 600;
}

/* ─── Billing toggle ─── */
.pricing-switch {
    display: inline-flex;
    align-items: center;
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(0,229,255,0.22);
    padding: 6px;
    border-radius: 50px;
    opacity: 0;
}
.pricing-switch label {
    padding: 10px 28px;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--text-muted);
    transition: all 0.3s;
    position: relative;
    z-index: 1;
}
.pricing-switch input[type="radio"] { display: none; }
.pricing-switch input[type="radio"]:checked + label {
    background: var(--gradient-secondary);
    color: #fff;
    box-shadow: 0 0 18px rgba(0,229,255,0.4);
}
.annual-saving {
    font-weight: 700;
    color: var(--accent-green);
}

/* ─── Cards grid ─── */
.pricing-grid {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 2rem;
    flex-wrap: wrap;
    padding: 3rem 0 4rem;
    position: relative;
    z-index: 2;
}

.glass-card {
    background: rgba(17, 34, 64, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 229, 255, 0.15);
    color: var(--text-primary);
    border-radius: 28px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    width: 320px;
    padding: 2.2rem 2.2rem;
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    overflow: hidden;
}

.pricing-enterprise-title {
    font-size: 2.2rem;
    letter-spacing: -0.02em;
}

.pricing-card-actions {
    position: relative;
    z-index: 1;
}

.pricing-empty-icon {
    color: #00e5ff;
    opacity: 0.5;
}

.pricing-trust-kicker {
    font-size: 0.85rem;
}

.pricing-modal-content {
    background: #0d1f3a;
    border: 1px solid rgba(0,229,255,0.25);
    border-radius: 20px;
}

.pricing-modal-header {
    border-bottom: 1px solid rgba(0,229,255,0.15);
}
