/* ============================================
   PRICING PAGE — Clean White Professional v3
   White background, rich animations, premium feel
   ============================================ */

/* === HERO SLIDESHOW === */
.pricing-hero-slideshow {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.pricing-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.pricing-slide.active {
    opacity: 1;
}

.pricing-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            rgba(255, 255, 255, 0.92) 0%,
            rgba(248, 249, 255, 0.88) 40%,
            rgba(240, 242, 255, 0.92) 100%);
    z-index: 1;
}

/* === PRICE TICKER === */
.price-ticker {
    position: relative;
    height: 4rem;
    overflow: hidden;
    width: 100%;
    text-align: center;
}

.price-tick {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    font-size: 2.75rem;
    line-height: 4rem;
    font-weight: 800;
    color: #1a1a2e;
    font-family: var(--font-body, 'Inter', sans-serif);
    opacity: 0;
    transform: translateY(100%);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.price-tick.active {
    opacity: 1;
    transform: translateY(0);
}

.price-tick.exit {
    opacity: 0;
    transform: translateY(-100%);
}

/* === BADGE TICKER === */
.badge-ticker {
    position: relative;
    height: 1.2em;
    overflow: hidden;
    min-width: 155px;
    line-height: 1.2;
}

.badge-slide {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    white-space: nowrap;
    opacity: 0;
    transform: translateY(100%);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.badge-slide.active {
    opacity: 1;
    transform: translateY(0);
}

.badge-slide.exit {
    opacity: 0;
    transform: translateY(-100%);
}

/* === CUSTOM ANIMATIONS === */
@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.92);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% center;
    }

    100% {
        background-position: 200% center;
    }
}

@keyframes pulseGlow {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(255, 193, 7, 0.4);
    }

    50% {
        box-shadow: 0 0 20px 6px rgba(255, 193, 7, 0.15);
    }
}

@keyframes floatSmooth {

    0%,
    100% {
        transform: rotateY(-12deg) rotateX(8deg) translateY(0);
    }

    50% {
        transform: rotateY(-12deg) rotateX(8deg) translateY(-18px);
    }
}

@keyframes floatBadge {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes driftShape {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    25% {
        transform: translate(15px, -20px) rotate(3deg);
    }

    50% {
        transform: translate(-10px, -10px) rotate(-2deg);
    }

    75% {
        transform: translate(8px, -25px) rotate(1deg);
    }
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

@keyframes countUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes softBounce {

    0%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-6px);
    }

    60% {
        transform: translateY(-3px);
    }
}

/* === BODY SCOPE FOR PRICING PAGE === */
body.pricing-page {
    background: #ffffff;
    color: #1a1a2e;
}

/* ============================================
   PRICING HERO — White with Decorative Shapes
   ============================================ */
.pricing-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9ff 60%, #f0f2ff 100%);
    overflow: hidden;
    padding: 10rem 0 6rem;
}

.pricing-hero::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 193, 7, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
    animation: driftShape 15s ease-in-out infinite;
}

.pricing-hero::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(124, 77, 255, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
    animation: driftShape 18s ease-in-out infinite reverse;
}

/* Decorative shapes */
.pricing-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

/* Subtle dot grid background */
.pricing-hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(26, 35, 126, 0.04) 1px, transparent 1px);
    background-size: 30px 30px;
    z-index: 0;
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
    z-index: 0;
}

.hero-shape-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    right: 5%;
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.06), rgba(255, 152, 0, 0.03));
    animation: driftShape 20s ease-in-out infinite;
}

.hero-shape-2 {
    width: 200px;
    height: 200px;
    bottom: 15%;
    left: 8%;
    background: linear-gradient(135deg, rgba(124, 77, 255, 0.05), rgba(57, 73, 171, 0.03));
    animation: driftShape 16s ease-in-out infinite reverse;
}

.hero-shape-3 {
    width: 150px;
    height: 150px;
    top: 40%;
    left: 50%;
    background: linear-gradient(135deg, rgba(0, 172, 193, 0.04), rgba(0, 230, 118, 0.03));
    animation: driftShape 22s ease-in-out infinite;
}

/* hide old particles on white bg */
.particles,
.particle {
    display: none;
}

/* Hero Layout */
.pricing-hero .container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.pricing-hero-text {
    text-align: left;
    position: relative;
    z-index: 5;
    animation: slideUp 0.8s ease-out;
}

.pricing-hero-tagline {
    display: inline-block;
    padding: 0.6rem 1.75rem;
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.1), rgba(255, 152, 0, 0.05));
    border: 1px solid rgba(255, 193, 7, 0.25);
    border-radius: 50px;
    color: #d4940a;
    font-family: var(--font-accent, 'Poppins', sans-serif);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    margin-bottom: 2rem;
    text-transform: uppercase;
    animation: fadeInScale 0.8s ease-out 0.2s both;
}

.pricing-hero-title {
    font-size: clamp(2.75rem, 5.5vw, 4.5rem);
    font-weight: 800;
    color: #1a1a2e;
    line-height: 1.08;
    margin-bottom: 1.5rem;
    font-family: var(--font-heading, 'Playfair Display', serif);
    animation: slideUp 0.8s ease-out 0.1s both;
}

.pricing-hero-title .text-gradient {
    display: block;
    margin-top: 0.25rem;
    background: linear-gradient(135deg, #d4940a 0%, #ff9800 50%, #ffc107 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pricing-hero-subtitle {
    font-size: 1.15rem;
    line-height: 1.75;
    color: #5a5a6e;
    margin-bottom: 3rem;
    max-width: 520px;
    animation: slideUp 0.8s ease-out 0.2s both;
}

.pricing-hero-buttons {
    display: flex;
    gap: 1.25rem;
    flex-wrap: wrap;
    animation: slideUp 0.8s ease-out 0.3s both;
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.1rem 2.25rem;
    background: linear-gradient(135deg, #ffc107, #ff9800);
    color: #1a1a2e;
    border-radius: 14px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 4px 20px rgba(255, 193, 7, 0.25);
    position: relative;
    overflow: hidden;
}

.btn-hero-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.btn-hero-primary:hover::before {
    left: 100%;
}

.btn-hero-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(255, 193, 7, 0.35);
}

.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    padding: 1.1rem 2.25rem;
    background: #ffffff;
    color: #1a1a2e;
    border: 2px solid #e2e4ea;
    border-radius: 14px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.btn-hero-secondary:hover {
    border-color: #ffc107;
    color: #d4940a;
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

/* === 3D Floating Cards Visual (Light Theme) === */
.pricing-hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1200px;
    animation: fadeInScale 1s ease-out 0.4s both;
}

.hero-3d-container {
    position: relative;
    width: 340px;
    height: 450px;
    transform-style: preserve-3d;
    animation: floatSmooth 6s ease-in-out infinite;
}

.hero-card {
    position: absolute;
    border-radius: 24px;
    transition: all 0.5s ease;
}

.hero-card.back {
    width: 290px;
    height: 400px;
    background: rgba(255, 193, 7, 0.06);
    border: 1px solid rgba(255, 193, 7, 0.15);
    top: 50px;
    left: 50px;
    transform: translateZ(-60px);
}

.hero-card.middle {
    width: 310px;
    height: 420px;
    background: rgba(124, 77, 255, 0.04);
    border: 1px solid rgba(124, 77, 255, 0.1);
    top: 25px;
    left: 25px;
    transform: translateZ(-30px);
}

.hero-card.front {
    width: 340px;
    height: 450px;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08), 0 4px 20px rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    gap: 1.25rem;
}

.card-content-icon {
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, #ffc107, #ff9800);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: #fff;
    box-shadow: 0 8px 25px rgba(255, 193, 7, 0.3);
}

.card-content-price {
    position: relative;
    width: 100%;
    height: 4rem;
    overflow: hidden;
}

.card-content-lines {
    width: 80%;
    height: 8px;
    background: #f0f1f5;
    border-radius: 4px;
}

.card-content-lines.short {
    width: 50%;
}

.hero-floating-badge {
    position: absolute;
    bottom: -20px;
    right: -30px;
    background: #ffffff;
    border: 1px solid rgba(255, 193, 7, 0.3);
    padding: 0.75rem 1.25rem;
    border-radius: 14px;
    color: #1a1a2e;
    font-size: 0.82rem;
    font-weight: 600;
    animation: floatBadge 3s ease-in-out infinite, pulseGlow 3s ease-in-out infinite;
    z-index: 10;
    display: flex;
    align-items: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    min-width: 200px;
    overflow: hidden;
}

/* Card Image Slideshow */
.card-content-img {
    width: 90%;
    height: 110px;
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 0.25rem;
    position: relative;
}

.card-content-img img,
.card-img-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 14px;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.card-img-slide.active {
    opacity: 1;
}

.hero-card.front:hover .card-img-slide.active {
    transform: scale(1.08);
}

.hero-floating-badge i {
    color: #ffc107 !important;
}

/* ============================================
   PRICING CATEGORIES — White / Light Alternating
   ============================================ */
.pricing-category {
    padding: 5.5rem 0;
    background: #ffffff;
    position: relative;
}

.pricing-category:nth-child(even) {
    background: #f8f9fc;
}

/* Stagger animation for cards */
.pricing-category .pricing-glass-card {
    animation: slideUp 0.6s ease-out both;
}

.pricing-category .pricing-glass-card:nth-child(1) {
    animation-delay: 0.1s;
}

.pricing-category .pricing-glass-card:nth-child(2) {
    animation-delay: 0.25s;
}

.pricing-category .pricing-glass-card:nth-child(3) {
    animation-delay: 0.4s;
}

/* Category Header */
.pricing-category-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.pricing-category-header h2 {
    font-size: 2.25rem;
    color: #1a1a2e;
    font-family: var(--font-heading, 'Playfair Display', serif);
    margin-bottom: 0.75rem;
}

.pricing-category-header p {
    color: #6c757d;
    font-size: 1.05rem;
}

/* Category Icon */
.pricing-category-icon {
    width: 68px;
    height: 68px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.pricing-category-icon:hover {
    transform: scale(1.08) rotate(-3deg);
}

.pricing-category-icon.career {
    background: linear-gradient(135deg, #e8eaf6, #c5cae9);
    color: #1a237e;
    box-shadow: 0 4px 15px rgba(26, 35, 126, 0.12);
}

.pricing-category-icon.digital {
    background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
    color: #1b5e20;
    box-shadow: 0 4px 15px rgba(0, 230, 118, 0.12);
}

.pricing-category-icon.wellbeing {
    background: linear-gradient(135deg, #fce4ec, #f8bbd0);
    color: #c2185b;
    box-shadow: 0 4px 15px rgba(255, 64, 129, 0.12);
}

.pricing-category-icon.spiritual {
    background: linear-gradient(135deg, #ede7f6, #d1c4e9);
    color: #4a148c;
    box-shadow: 0 4px 15px rgba(124, 77, 255, 0.12);
}

/* ============================================
   PRICING CARDS — White Elevated Style
   ============================================ */

/* Grid */
.pricing-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

/* === White Card === */
.pricing-glass-card {
    background: #ffffff;
    border: 1px solid #e8eaef;
    border-radius: 24px;
    padding: 0;
    text-align: left;
    position: relative;
    transition: all 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.pricing-glass-card:hover {
    border-color: #d0d3db;
    transform: translateY(-12px);
    box-shadow:
        0 25px 60px rgba(0, 0, 0, 0.08),
        0 8px 25px rgba(0, 0, 0, 0.04);
}

/* === Featured Card === */
.pricing-glass-card.featured {
    border-color: rgba(255, 193, 7, 0.4);
    background: linear-gradient(180deg, #fffcf0 0%, #ffffff 30%);
    transform: scale(1.04);
    box-shadow:
        0 4px 20px rgba(255, 193, 7, 0.1),
        0 2px 12px rgba(0, 0, 0, 0.04);
}

.pricing-glass-card.featured:hover {
    transform: scale(1.04) translateY(-12px);
    box-shadow:
        0 30px 70px rgba(255, 193, 7, 0.12),
        0 12px 30px rgba(0, 0, 0, 0.06);
    border-color: rgba(255, 193, 7, 0.6);
}

/* Shimmer effect on featured card */
.pricing-glass-card.featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 193, 7, 0.05), transparent);
    z-index: 1;
    pointer-events: none;
    animation: shimmer 4s ease-in-out infinite;
    background-size: 200% 100%;
}

/* === Art Header === */
.pricing-card-art {
    width: 100%;
    height: 170px;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
}

.pricing-card-art::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
}

.pricing-card-art.art-blue::after {
    background: linear-gradient(180deg, rgba(41, 98, 255, 0.15) 0%, rgba(255, 255, 255, 0.95) 100%);
}

.pricing-card-art.art-purple::after {
    background: linear-gradient(180deg, rgba(124, 77, 255, 0.15) 0%, rgba(255, 255, 255, 0.95) 100%);
}

.pricing-card-art.art-teal::after {
    background: linear-gradient(180deg, rgba(0, 172, 193, 0.15) 0%, rgba(255, 255, 255, 0.95) 100%);
}

.pricing-card-art.art-green::after {
    background: linear-gradient(180deg, rgba(0, 230, 118, 0.15) 0%, rgba(255, 255, 255, 0.95) 100%);
}

.pricing-card-art img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.pricing-glass-card:hover .pricing-card-art img {
    transform: scale(1.1);
}

/* === Card Inner Content === */
.pricing-card-inner {
    padding: 1.75rem 1.75rem 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

/* === Badge === */
.pricing-glass-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 5;
    background: linear-gradient(135deg, #ffc107, #ff9800);
    color: #fff;
    padding: 0.4rem 1.1rem;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3);
    animation: softBounce 3s ease-in-out infinite;
}

/* === Card Title === */
.pricing-glass-card h3 {
    font-size: 1.35rem;
    color: #1a1a2e;
    font-weight: 700;
    margin-bottom: 0.4rem;
    font-family: var(--font-body, 'Inter', sans-serif);
    transition: color 0.3s ease;
}

.pricing-glass-card:hover h3 {
    color: #d4940a;
}

/* === Card Tagline === */
.pricing-card-tagline {
    font-size: 0.88rem;
    color: #6c757d;
    line-height: 1.55;
    margin-bottom: 1rem;
}

/* === Price === */
.pricing-glass-price {
    font-size: 2.75rem;
    font-weight: 800;
    color: #1a1a2e;
    margin: 0.25rem 0 1.25rem;
    line-height: 1.1;
    font-family: var(--font-body, 'Inter', sans-serif);
    letter-spacing: -0.02em;
}

.pricing-glass-price span {
    font-size: 0.88rem;
    color: #9a9aad;
    font-weight: 400;
    letter-spacing: 0;
}

/* === CTA Buttons === */
.pricing-card-cta {
    display: block;
    width: 100%;
    padding: 0.95rem 1.5rem;
    border-radius: 14px;
    font-size: 0.92rem;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    margin-bottom: 1.5rem;
    border: none;
    cursor: pointer;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
}

/* Outline ghost button */
.pricing-card-cta.cta-outline {
    background: #f8f9fc;
    color: #1a1a2e;
    border: 2px solid #e2e4ea;
}

.pricing-card-cta.cta-outline:hover {
    background: #1a1a2e;
    color: #ffffff;
    border-color: #1a1a2e;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(26, 26, 46, 0.15);
}

/* Gradient button */
.pricing-card-cta.cta-gradient {
    background: linear-gradient(135deg, #ffc107, #ff9800);
    color: #1a1a2e;
    box-shadow: 0 4px 18px rgba(255, 193, 7, 0.2);
}

.pricing-card-cta.cta-gradient::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.pricing-card-cta.cta-gradient:hover::before {
    left: 100%;
}

.pricing-card-cta.cta-gradient:hover {
    box-shadow: 0 12px 35px rgba(255, 193, 7, 0.3);
    transform: translateY(-3px);
}

/* Gold variant */
.pricing-card-cta.cta-gradient.gold {
    background: linear-gradient(135deg, #c69f3c 0%, #ffc107 50%, #ffca28 100%);
    box-shadow: 0 4px 18px rgba(255, 193, 7, 0.2);
}

.pricing-card-cta.cta-gradient.gold:hover {
    box-shadow: 0 12px 35px rgba(255, 193, 7, 0.35);
}

/* Purple gradient variant */
.pricing-card-cta.cta-gradient.purple {
    background: linear-gradient(135deg, #7c4dff 0%, #b388ff 100%);
    color: #fff;
    box-shadow: 0 4px 18px rgba(124, 77, 255, 0.2);
}

.pricing-card-cta.cta-gradient.purple:hover {
    box-shadow: 0 12px 35px rgba(124, 77, 255, 0.3);
}

/* === Plan Section Labels === */
.plan-section-label {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: #9a9aad;
    margin-bottom: 0.6rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #f0f1f5;
}

/* === Features List === */
.pricing-card-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.25rem;
}

.pricing-card-features li {
    padding: 0.45rem 0;
    color: #4a4a5a;
    display: flex;
    align-items: center;
    gap: 0.65rem;
    font-size: 0.9rem;
    line-height: 1.45;
    transition: color 0.3s ease;
}

.pricing-card-features li:hover {
    color: #1a1a2e;
}

.pricing-card-features li i {
    color: #ffc107;
    font-size: 0.55rem;
    flex-shrink: 0;
    width: 14px;
    text-align: center;
}

/* Legacy icon (hidden) */
.pricing-glass-icon {
    display: none !important;
}

/* Legacy features list */
.pricing-glass-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
    text-align: left;
    flex-grow: 1;
}

.pricing-glass-features li {
    padding: 0.55rem 0;
    color: #4a4a5a;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.92rem;
    border-bottom: 1px solid #f0f1f5;
}

.pricing-glass-features li:last-child {
    border-bottom: none;
}

.pricing-glass-features li i {
    color: #ffc107;
    font-size: 0.75rem;
    width: 16px;
    text-align: center;
    flex-shrink: 0;
}

/* Legacy btn classes */
.pricing-glass-card .btn {
    display: block;
    width: 100%;
    padding: 0.85rem 1.5rem;
    border-radius: 14px;
    font-size: 0.95rem;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    transition: all 0.4s ease;
    margin-top: auto;
    border: none;
    cursor: pointer;
}

.pricing-glass-card .btn.btn-primary {
    background: #f8f9fc;
    color: #1a1a2e;
    border: 2px solid #e2e4ea;
}

.pricing-glass-card .btn.btn-primary:hover {
    background: #1a1a2e;
    color: #fff;
    border-color: #1a1a2e;
    transform: translateY(-2px);
}

.pricing-glass-card .btn.btn-secondary {
    background: linear-gradient(135deg, #ffc107, #ff9800);
    color: #1a1a2e;
    box-shadow: 0 4px 18px rgba(255, 193, 7, 0.2);
}

.pricing-glass-card .btn.btn-secondary:hover {
    box-shadow: 0 10px 30px rgba(255, 193, 7, 0.35);
    transform: translateY(-2px);
}

.pricing-glass-card .btn.btn-spiritual {
    background: #ede7f6;
    color: #4a148c;
    border: 2px solid #d1c4e9;
}

.pricing-glass-card .btn.btn-spiritual:hover {
    background: #7c4dff;
    color: #fff;
    border-color: #7c4dff;
    transform: translateY(-2px);
}

/* ============================================
   FAQ SECTION — Clean White
   ============================================ */
.pricing-faq-section {
    padding: 5.5rem 0;
    background: #f8f9fc;
    position: relative;
}

.pricing-faq-section .section-title h2 {
    color: #1a1a2e;
    font-family: var(--font-heading, 'Playfair Display', serif);
}

.pricing-faq-section .section-title h2::after {
    background: linear-gradient(135deg, #ffc107, #ff9800);
}

.pricing-faq-section .section-title p {
    color: #6c757d;
}

.faq-grid {
    max-width: 750px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.faq-item {
    background: #ffffff;
    border: 1px solid #e8eaef;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.02);
}

.faq-item:hover {
    border-color: #d0d3db;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transform: translateY(-2px);
}

.faq-item.faq-active {
    border-color: rgba(255, 193, 7, 0.4);
    box-shadow: 0 6px 20px rgba(255, 193, 7, 0.08);
}

.faq-question {
    padding: 1.3rem 1.6rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    color: #1a1a2e;
    font-size: 1rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: #d4940a;
}

.faq-question i {
    font-size: 0.75rem;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    color: #ffc107;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 193, 7, 0.1);
    border-radius: 50%;
    flex-shrink: 0;
}

.faq-item.faq-active .faq-question i {
    transform: rotate(180deg);
    background: rgba(255, 193, 7, 0.2);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), padding 0.4s ease;
}

.faq-item.faq-active .faq-answer {
    max-height: 200px;
    padding: 0 1.6rem 1.3rem;
}

.faq-answer p {
    color: #5a5a6e;
    font-size: 0.95rem;
    line-height: 1.75;
    margin: 0;
}

/* ============================================
   CTA SECTION — Soft Gradient
   ============================================ */
.cta-section {
    position: relative;
    padding: 5.5rem 0;
    background: linear-gradient(180deg, #ffffff 0%, #fdf9f0 50%, #fff8e1 100%);
    overflow: hidden;
}

.cta-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 193, 7, 0.06) 0%, transparent 60%);
    pointer-events: none;
    animation: driftShape 20s ease-in-out infinite;
}

.glass-cta-card {
    background: #ffffff;
    border: 1px solid #e8eaef;
    border-radius: 28px;
    padding: 3.5rem;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3rem;
    align-items: center;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
}

.glass-cta-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 60px rgba(0, 0, 0, 0.08);
}

.cta-left h2 {
    font-size: 2.25rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 1rem;
    font-family: var(--font-heading, 'Playfair Display', serif);
}

.cta-left p {
    color: #5a5a6e;
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.cta-stats {
    display: flex;
    gap: 2.5rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 1.75rem;
    font-weight: 800;
    color: #d4940a;
    animation: countUp 0.8s ease-out both;
}

.stat-label {
    font-size: 0.85rem;
    color: #6c757d;
    margin-top: 0.25rem;
}

.cta-right {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.btn-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: 14px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    width: 100%;
    max-width: 280px;
    position: relative;
    overflow: hidden;
}

.btn-cta.primary {
    background: linear-gradient(135deg, #ffc107, #ff9800);
    color: #1a1a2e;
    box-shadow: 0 4px 20px rgba(255, 193, 7, 0.25);
}

.btn-cta.primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.btn-cta.primary:hover::before {
    left: 100%;
}

.btn-cta.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 193, 7, 0.35);
}

.btn-cta.secondary {
    background: #ffffff;
    color: #1a1a2e;
    border: 2px solid #e2e4ea;
}

.btn-cta.secondary:hover {
    background: #1a1a2e;
    color: #fff;
    border-color: #1a1a2e;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(26, 26, 46, 0.15);
}

.cta-note {
    font-size: 0.8rem;
    color: #9a9aad;
    text-align: center;
    margin-top: 0.5rem;
}

/* ============================================
   NAVBAR OVERRIDE — Dark Text on White
   ============================================ */
body.pricing-page .navbar {
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

body.pricing-page .navbar::before {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.4), transparent);
}

body.pricing-page .nav-link {
    color: #1a1a2e;
}

body.pricing-page .nav-link::after {
    background: #ffc107;
}

body.pricing-page .nav-link:hover {
    color: #d4940a;
}

body.pricing-page .nav-link.active {
    color: #d4940a;
}

body.pricing-page .menu-toggle span {
    background: #1a1a2e;
}

body.pricing-page .navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.06);
}

body.pricing-page .navbar.scrolled .nav-link {
    color: #1a1a2e;
}

body.pricing-page .navbar.scrolled .nav-link:hover {
    color: #d4940a;
}

/* ============================================
   FOOTER OVERRIDE — Keep Dark Footer
   ============================================ */
/* Footer stays dark — no overrides needed */

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 992px) {
    .pricing-hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .pricing-hero-text {
        text-align: center;
    }

    .pricing-hero-subtitle {
        margin: 0 auto 3rem;
    }

    .pricing-hero-buttons {
        justify-content: center;
    }

    .pricing-hero-visual {
        display: none;
    }

    .pricing-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .glass-cta-card {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .cta-stats {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .pricing-hero {
        min-height: auto;
        padding: 8rem 0 4rem;
    }

    .pricing-hero-title {
        font-size: 2.5rem;
    }

    .pricing-cards-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
    }

    .pricing-glass-card.featured {
        transform: none;
    }

    .pricing-glass-card.featured:hover {
        transform: translateY(-12px);
    }

    .pricing-category-header h2 {
        font-size: 1.75rem;
    }

    .pricing-hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .glass-cta-card {
        padding: 2rem 1.5rem;
    }

    .cta-left h2 {
        font-size: 1.75rem;
    }
}

@media (max-width: 480px) {
    .pricing-hero-title {
        font-size: 2rem;
    }

    .pricing-category {
        padding: 3.5rem 0;
    }

    .pricing-card-art {
        height: 130px;
    }

    .pricing-card-inner {
        padding: 1.25rem 1.25rem 1.5rem;
    }

    .pricing-hero-tagline {
        font-size: 0.75rem;
        padding: 0.5rem 1.25rem;
    }

    .faq-question {
        font-size: 0.92rem;
        padding: 1.1rem 1.25rem;
    }
}