/*
Theme Name: Orbit4K Premium
Theme URI: https://orbit4k.com
Description: High-performance, white-label, SEO-first theme for Orbit4K. Features programmatic SEO, Tailwind CSS, Sass, glassmorphism UI, and zero-bloat vanilla JS.
Version: 1.0.0
Author: Faraz Shaikh
Author URI: https://jixtv.com
Text Domain: Orbit4k
*/

/* Custom Animations for Premium UI */

/* Fade In Up */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    opacity: 0;
    /* Start hidden */
}

.delay-100 {
    animation-delay: 100ms;
}

.delay-200 {
    animation-delay: 200ms;
}

.delay-300 {
    animation-delay: 300ms;
}

/* Gradient X */
@keyframes gradientX {

    0%,
    100% {
        background-size: 200% 200%;
        background-position: left center;
    }

    50% {
        background-size: 200% 200%;
        background-position: right center;
    }
}

.animate-gradient-x {
    animation: gradientX 3s ease infinite;
}

/* Pulse Slow */
@keyframes pulseSlow {

    0%,
    100% {
        opacity: 0.2;
    }

    50% {
        opacity: 0.5;
    }
}

.animate-pulse-slow {
    animation: pulseSlow 6s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* Tilt Animation (for buttons) */
@keyframes tilt {

    0%,
    50%,
    100% {
        transform: rotate(0deg);
    }

    25% {
        transform: rotate(1deg);
    }

    75% {
        transform: rotate(-1deg);
    }
}

.animate-tilt {
    animation: tilt 5s infinite linear;
}

/* ========================================
   HERO SECTION STYLES (Extracted)
   ======================================== */

@keyframes shimmer {
    0% {
        left: -100%;
    }

    100% {
        left: 200%;
    }
}

.group:hover .group-hover\:animate-shimmer {
    animation: shimmer 1.5s ease-in-out infinite;
}

@keyframes fade-in-up {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Note: This might override global animate-fade-in-up if defined earlier */
.animate-fade-in-up {
    animation: fade-in-up 0.6s ease-out forwards;
}

/* ========================================
   MOBILE-ONLY HERO PREMIUM STYLES
   ======================================== */
@media (max-width: 768px) {
    #hero {
        height: auto !important;
        min-height: 80vh !important;
        padding-top: 100px !important;
    }

    #hero>.relative.z-10 {
        margin-top: 0 !important;
        padding-left: 20px !important;
        padding-right: 20px !important;
    }

    #hero .mb-8.animate-fade-in-up {
        margin-bottom: 24px !important;
    }

    #hero .mb-8.animate-fade-in-up span {
        padding: 10px 20px !important;
        font-size: 10px !important;
        letter-spacing: 2px !important;
        background: linear-gradient(135deg, rgba(238, 62, 250, 0.15) 0%, rgba(83, 51, 164, 0.1) 100%) !important;
        border-color: rgba(238, 62, 250, 0.3) !important;
        box-shadow: 0 0 30px rgba(238, 62, 250, 0.2) !important;
    }

    #hero h1 {
        font-size: 2.5rem !important;
        line-height: 1.1 !important;
        letter-spacing: -1px !important;
        margin-bottom: 20px !important;
        padding: 0 8px !important;
    }

    #hero h1 span {
        display: block !important;
    }

    #hero h1 br {
        display: none !important;
    }

    #hero>.relative.z-10>p {
        font-size: 18px !important;
        line-height: 1.6 !important;
        margin-bottom: 32px !important;
        padding: 0 8px !important;
        color: rgba(255, 255, 255, 0.75) !important;
    }

    #hero>.relative.z-10>p br {
        display: none !important;
    }

    #hero .flex.flex-col.md\:flex-row {
        gap: 14px !important;
        padding: 0 8px !important;
    }

    #hero .flex.flex-col.md\:flex-row>a:first-child {
        padding: 16px 32px !important;
        font-size: 13px !important;
        letter-spacing: 1.5px !important;
        border-radius: 16px !important;
        box-shadow:
            0 10px 40px rgba(214, 27, 255, 0.35),
            0 4px 15px rgba(214, 27, 255, 0.25) !important;
    }

    #hero .flex.flex-col.md\:flex-row>a:last-child {
        padding: 16px 32px !important;
        font-size: 13px !important;
        letter-spacing: 1.5px !important;
        border-radius: 16px !important;
        background: rgba(255, 255, 255, 0.05) !important;
        border: 1px solid rgba(255, 255, 255, 0.15) !important;
        backdrop-filter: blur(10px) !important;
        -webkit-backdrop-filter: blur(10px) !important;
    }

    #hero .w-full.mt-12 {
        margin-top: 40px !important;
    }

    #hero [class*="absolute"][class*="top-0"][class*="left-1/2"] {
        width: 90% !important;
        height: 40% !important;
    }
}

@media (max-width: 480px) {
    #hero {
        padding-top: 50px !important;
    }

    #hero h1 {
        font-size: 2rem !important;
    }

    #hero>.relative.z-10>p {
        font-size: 16px !important;
        line-height: 1.6 !important;
        max-width: 90% !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    #hero .flex.flex-col.md\:flex-row>a {
        padding: 14px 24px !important;
        font-size: 14px !important;
    }
}

@keyframes mobileHeroFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

@media (max-width: 768px) {
    #hero .mb-8.animate-fade-in-up span {
        animation: mobileHeroFloat 4s ease-in-out infinite;
    }
}

/* ========================================
   PRICING SECTION STYLES (Extracted)
   ======================================== */
/* ==========================================
       DESKTOP ANIMATIONS (KEEP AS-IS)
    ========================================== */
@keyframes glow-pulse {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(214, 27, 255, 0.3);
    }

    50% {
        box-shadow: 0 0 40px rgba(214, 27, 255, 0.6);
    }
}

@keyframes badge-bounce {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.popular-card {
    animation: glow-pulse 2s ease-in-out infinite;
}

.badge-pulse {
    animation: badge-bounce 2s ease-in-out infinite;
}

/* ==========================================
       PREMIUM MOBILE-ONLY STYLES  
       Best-in-class mobile design with perfect alignment
    ========================================== */
@media (max-width: 1023px) {

    /* === KEYFRAME ANIMATIONS === */
    @keyframes mobile-shimmer {
        0% {
            transform: translateX(-100%);
        }

        100% {
            transform: translateX(100%);
        }
    }

    @keyframes mobile-fade-in {
        from {
            opacity: 0;
            transform: translateY(15px) scale(0.98);
        }

        to {
            opacity: 1;
            transform: translateY(0) scale(1);
        }
    }

    @keyframes mobile-glow-breathe {

        0%,
        100% {
            box-shadow: 0 0 25px rgba(214, 27, 255, 0.25), inset 0 0 15px rgba(214, 27, 255, 0.05);
        }

        50% {
            box-shadow: 0 0 40px rgba(214, 27, 255, 0.4), inset 0 0 25px rgba(214, 27, 255, 0.08);
        }
    }

    @keyframes mobile-floating {

        0%,
        100% {
            transform: translateY(0) translateX(-50%);
        }

        50% {
            transform: translateY(-3px) translateX(-50%);
        }
    }

    @keyframes mobile-pulse {

        0%,
        100% {
            opacity: 1;
        }

        50% {
            opacity: 0.7;
        }
    }

    /* === SECTION BASE === */
    #pricing-section {
        padding: 16px 0 32px !important;
    }

    #pricing-section .container {
        padding: 0 12px !important;
        width: 100% !important;
        max-width: 100% !important;
    }

    /* === PAYMENT TOGGLE - COMPACT PREMIUM === */
    .flex.justify-center.md\:mb-14.mb-6 {
        margin-bottom: 16px !important;
        padding: 0 8px !important;
    }

    #payment-toggle {
        width: 100% !important;
        max-width: 340px !important;
        padding: 4px !important;
        border-radius: 16px !important;
        background: linear-gradient(145deg, rgba(20, 20, 35, 0.95), rgba(10, 10, 18, 0.98)) !important;
        border: 1px solid rgba(214, 27, 255, 0.12) !important;
        backdrop-filter: blur(12px) !important;
        -webkit-backdrop-filter: blur(12px) !important;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.03) !important;
    }

    #payment-toggle .payment-btn {
        flex: 1 !important;
        min-width: unset !important;
        padding: 10px 8px !important;
        font-size: 12px !important;
        font-weight: 600 !important;
        gap: 6px !important;
        border-radius: 12px !important;
        transition: all 0.25s ease !important;
    }

    #payment-toggle .payment-btn .flex.items-center.-space-x-1\.5 {
        margin-right: 4px !important;
    }

    #payment-toggle .payment-btn .flex.items-center.-space-x-1\.5>div {
        width: 18px !important;
        height: 18px !important;
        min-width: 18px !important;
    }

    #payment-toggle .payment-btn[data-method="crypto"] span:last-child {
        font-size: 11px !important;
        padding: 2px 5px !important;
        border-radius: 4px !important;
        background: linear-gradient(135deg, #10b981, #059669) !important;
        box-shadow: 0 2px 6px rgba(16, 185, 129, 0.4) !important;
        letter-spacing: 0.02em !important;
        position: absolute !important;
        top: -20px !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        pointer-events: none !important;
        z-index: 5 !important;
    }

    /* Ensure payment buttons are clickable */
    #payment-toggle .payment-btn {
        position: relative !important;
        z-index: 10 !important;
    }

    #toggle-slider {
        border-radius: 10px !important;
        background: linear-gradient(135deg, #d61bff 0%, #9333ea 60%, #7c3aed 100%) !important;
        box-shadow: 0 3px 15px rgba(214, 27, 255, 0.45) !important;
    }

    /* === CRYPTO DISCOUNT BANNER === */
    #pricing-section .text-center.mb-6.-mt-8,
    #pricing-section .text-center.mb-6.lg\:mb-10.-mt-8 {
        margin-top: 0 !important;
        margin-bottom: 16px !important;
        padding: 0 12px !important;
    }

    #pricing-section .text-center.mb-6.-mt-8 p,
    #pricing-section .text-center.mb-6.lg\:mb-10.-mt-8 p {
        font-size: 11px !important;
        padding: 8px 14px !important;
        background: linear-gradient(135deg, rgba(16, 185, 129, 0.08), rgba(5, 150, 105, 0.12)) !important;
        border: 1px solid rgba(74, 222, 128, 0.18) !important;
        border-radius: 10px !important;
        display: inline-flex !important;
        align-items: center !important;
        gap: 6px !important;
    }

    /* === DURATION TABS - EQUAL WIDTH PREMIUM === */
    .flex.lg\:hidden.justify-center.gap-3.mb-8.px-4 {
        gap: 8px !important;
        margin-bottom: 16px !important;
        padding: 0 12px !important;
    }

    .duration-tab {
        flex: 1 1 0 !important;
        min-width: 0 !important;
        max-width: calc(33.333% - 6px) !important;
        padding: 14px 6px 12px !important;
        border-radius: 16px !important;
        background: linear-gradient(160deg, rgba(25, 25, 40, 0.9), rgba(12, 12, 20, 0.95)) !important;
        border: 1px solid rgba(255, 255, 255, 0.06) !important;
        backdrop-filter: blur(10px) !important;
        -webkit-backdrop-filter: blur(10px) !important;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
        position: relative !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2) !important;
    }

    .duration-tab span:first-child {
        font-size: 26px !important;
        font-weight: 900 !important;
        line-height: 1 !important;
        background: linear-gradient(180deg, #fff 0%, rgba(255, 255, 255, 0.65) 100%) !important;
        -webkit-background-clip: text !important;
        -webkit-text-fill-color: transparent !important;
        background-clip: text !important;
        display: block !important;
    }

    .duration-tab span:nth-child(2) {
        font-size: 8px !important;
        letter-spacing: 0.12em !important;
        margin-top: 4px !important;
        opacity: 0.6 !important;
        text-transform: uppercase !important;
        font-weight: 600 !important;
    }

    /* Active Duration Tab */
    .duration-tab.bg-gradient-to-br,
    .duration-tab[class*="from-[#d61bff]"] {
        background: linear-gradient(160deg, rgba(214, 27, 255, 0.18) 0%, rgba(139, 44, 231, 0.22) 100%) !important;
        border: 1.5px solid rgba(214, 27, 255, 0.45) !important;
        box-shadow: 0 0 25px rgba(214, 27, 255, 0.25), 0 4px 20px rgba(0, 0, 0, 0.25), inset 0 0 15px rgba(214, 27, 255, 0.06) !important;
        animation: mobile-glow-breathe 2.5s ease-in-out infinite !important;
    }

    .duration-tab.bg-gradient-to-br span:first-child {
        background: linear-gradient(180deg, #fff 0%, #f0abfc 100%) !important;
        -webkit-background-clip: text !important;
        -webkit-text-fill-color: transparent !important;
        background-clip: text !important;
    }

    .duration-tab.bg-gradient-to-br span:nth-child(2) {
        opacity: 0.85 !important;
        color: #d8b4fe !important;
    }

    /* BEST Badge - Floating Above Tab */
    .duration-tab span:last-child[class*="bg-[#d61bff]"] {
        position: absolute !important;
        top: -15px !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        font-size: 12px !important;
        padding: 2px 8px !important;
        border-radius: 6px !important;
        background: linear-gradient(135deg, #d61bff, #9333ea) !important;
        box-shadow: 0 2px 10px rgba(214, 27, 255, 0.5) !important;
        animation: mobile-floating 2.5s ease-in-out infinite !important;
        white-space: nowrap !important;
        font-weight: 700 !important;
        letter-spacing: 0.05em !important;
        margin-top: 0 !important;
    }

    /* === MOBILE PRICING CARD - PREMIUM GLASSMORPHISM === */
    .lg\:hidden>.pricing-card-mobile {
        padding: 0 4px !important;
    }

    .pricing-card-mobile {
        animation: mobile-fade-in 0.4s ease-out forwards !important;
    }

    .pricing-card-mobile .pricing-card {
        margin: 0 !important;
    }

    .pricing-card-mobile .pricing-card>div {
        background: linear-gradient(168deg, rgba(18, 10, 28, 0.96) 0%, rgba(8, 8, 12, 0.98) 100%) !important;
        border-radius: 24px !important;
        border: 1px solid rgba(255, 255, 255, 0.06) !important;
        backdrop-filter: blur(20px) !important;
        -webkit-backdrop-filter: blur(20px) !important;
        position: relative !important;
    }

    /* Gradient Border Effect */
    .pricing-card-mobile .pricing-card>div::before {
        content: '';
        position: absolute;
        inset: 0;
        border-radius: 24px;
        padding: 1px;
        background: linear-gradient(145deg, rgba(214, 27, 255, 0.25) 0%, transparent 35%, transparent 65%, rgba(139, 44, 231, 0.2) 100%);
        -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
        mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
        -webkit-mask-composite: xor;
        mask-composite: exclude;
        pointer-events: none;
    }

    /* Inner Ambient Glow */
    .pricing-card-mobile .pricing-card>div::after {
        content: '';
        position: absolute;
        top: -30%;
        left: -30%;
        width: 160%;
        height: 160%;
        background: radial-gradient(ellipse at 25% 15%, rgba(214, 27, 255, 0.06) 0%, transparent 45%);
        pointer-events: none;
    }

    /* Card Content Padding */
    .pricing-card-mobile .pricing-card>div>.md\:p-6.p-4,
    .pricing-card-mobile .pricing-card>div>[class*="p-4"] {
        padding: 20px 16px 24px !important;
        position: relative;
        z-index: 1;
    }

    /* === MOBILE CARD HEADER - CENTERED PREMIUM === */
    .pricing-card-mobile .mobile-card-header {
        text-align: center !important;
        margin-bottom: 16px !important;
        padding-top: 4px !important;
    }

    .pricing-card-mobile .mobile-card-header h3 {
        font-size: 22px !important;
        font-weight: 800 !important;
        background: linear-gradient(180deg, #fff 0%, rgba(255, 255, 255, 0.88) 100%) !important;
        -webkit-background-clip: text !important;
        -webkit-text-fill-color: transparent !important;
        background-clip: text !important;
        margin-bottom: 4px !important;
        letter-spacing: -0.01em !important;
    }

    .pricing-card-mobile .mobile-card-header>p {
        font-size: 12px !important;
        color: rgba(156, 163, 175, 0.7) !important;
        margin-bottom: 0 !important;
    }

    /* Hide Duration Badge on Mobile (Already shown in tabs) */
    .pricing-card-mobile .mobile-card-header>div,
    .pricing-card-mobile .pricing-card>div>.md\:p-6.p-4>div:first-child>div:last-child {
        display: none !important;
    }

    /* === PRICE SECTION - CENTERED PREMIUM === */
    .pricing-card-mobile .pricing-card .relative.mb-6,
    .pricing-card-mobile .pricing-card [class*="relative"][class*="mb-6"][class*="p-4"] {
        padding: 20px 16px !important;
        margin-bottom: 16px !important;
        border-radius: 18px !important;
        background: linear-gradient(150deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.015)) !important;
        border: 1px solid rgba(255, 255, 255, 0.05) !important;
        text-align: center !important;
    }

    /* Price Display Row */
    .pricing-card-mobile .pricing-card .flex.items-baseline {
        justify-content: center !important;
        align-items: baseline !important;
        gap: 2px !important;
        margin-bottom: 10px !important;
    }

    /* Currency Symbol */
    .pricing-card-mobile .pricing-card .text-xl.font-medium {
        font-size: 22px !important;
        font-weight: 500 !important;
        color: rgba(156, 163, 175, 0.5) !important;
        margin-right: 0 !important;
    }

    /* Main Price */
    .pricing-card-mobile .pricing-card .price-display {
        font-size: 52px !important;
        font-weight: 900 !important;
        line-height: 1 !important;
        background: linear-gradient(180deg, #fff 0%, rgba(255, 255, 255, 0.82) 100%) !important;
        -webkit-background-clip: text !important;
        -webkit-text-fill-color: transparent !important;
        background-clip: text !important;
        letter-spacing: -0.02em !important;
    }

    /* Save & Original Price Row */
    .pricing-card-mobile .pricing-card .flex.items-center.gap-3 {
        justify-content: center !important;
        flex-wrap: nowrap !important;
        gap: 10px !important;
        margin-bottom: 8px !important;
    }

    /* Save Badge */
    .pricing-card-mobile .pricing-card .save-badge {
        padding: 6px 10px !important;
        border-radius: 8px !important;
        font-size: 11px !important;
        font-weight: 700 !important;
        background: linear-gradient(135deg, rgba(16, 185, 129, 0.15), rgba(5, 150, 105, 0.2)) !important;
        border: 1px solid rgba(74, 222, 128, 0.25) !important;
        color: #4ade80 !important;
        box-shadow: 0 2px 8px rgba(74, 222, 128, 0.15) !important;
        display: inline-flex !important;
        align-items: center !important;
        gap: 4px !important;
    }

    .pricing-card-mobile .pricing-card .save-badge svg {
        width: 12px !important;
        height: 12px !important;
    }

    /* Strikethrough Original Price */
    .pricing-card-mobile .pricing-card .line-through {
        font-size: 14px !important;
        color: rgba(107, 114, 128, 0.5) !important;
    }

    /* Per Month Display */
    .pricing-card-mobile .pricing-card .text-xs.mt-2,
    .pricing-card-mobile .pricing-card p[class*="text-gray-500"][class*="text-xs"] {
        margin-top: 10px !important;
        font-size: 12px !important;
        color: rgba(156, 163, 175, 0.6) !important;
        text-align: center !important;
    }

    .pricing-card-mobile .pricing-card .per-month {
        font-size: 14px !important;
        font-weight: 700 !important;
        color: #fff !important;
    }

    /* === FEATURES LIST - CLEAN GRID === */
    .pricing-card-mobile .pricing-card .space-y-2 {
        margin-bottom: 20px !important;
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 8px !important;
    }

    .pricing-card-mobile .pricing-card .space-y-2>div {
        padding: 10px 12px !important;
        background: rgba(255, 255, 255, 0.02) !important;
        border-radius: 10px !important;
        margin-bottom: 0 !important;
        border: 1px solid rgba(255, 255, 255, 0.04) !important;
        display: flex !important;
        align-items: center !important;
        gap: 8px !important;
    }

    .pricing-card-mobile .pricing-card .space-y-2>div span {
        font-size: 11px !important;
        font-weight: 500 !important;
        color: rgba(229, 231, 235, 0.85) !important;
        line-height: 1.3 !important;
    }

    .pricing-card-mobile .pricing-card .space-y-2 svg {
        width: 14px !important;
        height: 14px !important;
        min-width: 14px !important;
        color: #4ade80 !important;
        filter: drop-shadow(0 0 3px rgba(74, 222, 128, 0.35)) !important;
    }

    /* === CTA BUTTON - PREMIUM GLOW === */
    .pricing-card-mobile .pricing-card .buy-btn {
        padding: 16px 20px !important;
        border-radius: 14px !important;
        font-size: 14px !important;
        font-weight: 700 !important;
        letter-spacing: 0.02em !important;
        background: linear-gradient(135deg, #d61bff 0%, #9333ea 55%, #7c3aed 100%) !important;
        border: none !important;
        box-shadow: 0 6px 25px rgba(214, 27, 255, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.15) !important;
        position: relative !important;
        overflow: hidden !important;
        transition: all 0.25s ease !important;
        width: 100% !important;
        text-transform: uppercase !important;
    }

    .pricing-card-mobile .pricing-card .buy-btn::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
        animation: mobile-shimmer 2.5s ease-in-out infinite;
    }

    .pricing-card-mobile .pricing-card .buy-btn:active {
        transform: scale(0.98) !important;
        box-shadow: 0 3px 15px rgba(214, 27, 255, 0.3) !important;
    }

    /* === POPULAR CARD - ENHANCED GLOW === */
    .pricing-card-mobile .pricing-card>div.popular-card {
        border: 1.5px solid rgba(214, 27, 255, 0.5) !important;
        box-shadow: 0 0 40px rgba(214, 27, 255, 0.2), 0 0 80px rgba(139, 44, 231, 0.1), 0 8px 30px rgba(0, 0, 0, 0.3) !important;
    }

    /* Most Popular Badge */
    .pricing-card-mobile .pricing-card .badge-pulse {
        padding: 6px 12px !important;
        font-size: 10px !important;
        border-radius: 16px !important;
        background: linear-gradient(135deg, #d61bff, #9333ea) !important;
        box-shadow: 0 3px 15px rgba(214, 27, 255, 0.45) !important;
        letter-spacing: 0.03em !important;
    }

    .pricing-card-mobile .pricing-card .badge-pulse svg {
        width: 12px !important;
        height: 12px !important;
        min-width: 14px !important;
    }

    /* === TRUST SECTION - MOBILE OPTIMIZED === */
    #pricing-section .md\:mt-16.mt-10.md\:pt-12.pt-8,
    #pricing-section [class*="mt-10"][class*="pt-8"] {
        margin-top: 28px !important;
        padding-top: 24px !important;
        border-top: 1px solid rgba(255, 255, 255, 0.04) !important;
    }

    #pricing-section .md\:mt-16.mt-10 .flex.flex-wrap,
    #pricing-section [class*="mt-10"] .flex.flex-wrap {
        gap: 12px !important;
        justify-content: center !important;
        padding: 0 8px !important;
    }

    #pricing-section .md\:mt-16.mt-10 .flex.flex-wrap>div,
    #pricing-section [class*="mt-10"] .flex.flex-wrap>div {
        padding: 10px 14px !important;
        background: rgba(255, 255, 255, 0.025) !important;
        border-radius: 10px !important;
        border: 1px solid rgba(255, 255, 255, 0.04) !important;
        display: flex !important;
        align-items: center !important;
        gap: 6px !important;
    }

    #pricing-section .md\:mt-16.mt-10 .flex.flex-wrap>div svg,
    #pricing-section [class*="mt-10"] .flex.flex-wrap>div svg {
        width: 16px !important;
        height: 16px !important;
    }

    #pricing-section .md\:mt-16.mt-10 .flex.flex-wrap>div span,
    #pricing-section [class*="mt-10"] .flex.flex-wrap>div span {
        font-size: 11px !important;
        font-weight: 500 !important;
    }
}

/* ========================================
   FOOTER STYLES (Extracted)
   ======================================== */

/* Footer CTA - Mobile Optimization */
@media (max-width: 768px) {

    /* CTA Mobile Fixes (Existing) */
    footer .relative.mb-20 {
        margin-bottom: 32px !important;
        padding: 20px !important;
        border-radius: 20px !important;
    }

    footer .relative.mb-20>div:nth-child(1),
    footer .relative.mb-20>div:nth-child(2) {
        display: none !important;
    }

    footer .relative.mb-20 .grid {
        gap: 16px !important;
    }

    footer .relative.mb-20 .space-y-6 {
        gap: 12px !important;
    }

    footer .relative.mb-20 .inline-flex.items-center {
        padding: 4px 10px !important;
        font-size: 0.55rem !important;
        margin-bottom: 4px !important;
    }

    footer .relative.mb-20 .inline-flex.items-center span {
        width: 4px !important;
        height: 4px !important;
    }

    footer .relative.mb-20 h3 {
        font-size: 1.75rem !important;
        line-height: 1.2 !important;
        margin-bottom: 12px !important;
    }

    footer .relative.mb-20 h3+p {
        font-size: 0.95rem !important;
        line-height: 1.6 !important;
    }
}

footer .relative.mb-20 .group\/btn>div:last-child {
    padding: 16px 32px !important;
    border-radius: 14px !important;
    gap: 10px !important;
}

footer .relative.mb-20 .group\/btn span {
    font-size: 1rem !important;
}

footer .relative.mb-20 .group\/btn svg {
    width: 16px !important;
    height: 16px !important;
}

footer .relative.mb-20 .mt-4.text-xs {
    font-size: 0.8rem !important;
    margin-top: 16px !important;
}

footer .relative.mb-20 .mt-4.text-xs svg {
    width: 10px !important;
    height: 10px !important;
}

/* Main Footer Content - Mobile Optimization */
footer .grid {
    gap: 32px !important;
    /* Unified Gap */
}

/* Brand Section */
footer .lg\:col-span-4 p {
    font-size: 0.95rem !important;
    /* 15px */
    line-height: 1.6 !important;
    color: rgba(255, 255, 255, 0.6) !important;
    margin-bottom: 20px !important;
}

/* Links Columns */
footer .lg\:col-span-8 h4 {
    font-size: 1.1rem !important;
    /* 18px */
    margin-bottom: 16px !important;
    color: white !important;
}

footer .lg\:col-span-8 ul li a {
    font-size: 0.95rem !important;
    /* 15px Links */
    padding: 4px 0 !important;
    display: inline-block !important;
    color: rgba(255, 255, 255, 0.7) !important;
}

footer .lg\:col-span-8 ul {
    gap: 10px !important;
}

/* Copyright & Bottom Bar */
footer .text-sm {
    font-size: 13px !important;
}

footer .flex.flex-col-reverse.md\:flex-row {
    gap: 20px !important;
    padding-top: 20px !important;
}
}

@media (max-width: 480px) {
    footer .relative.mb-20 {
        padding: 16px !important;
        border-radius: 16px !important;
    }

    footer .relative.mb-20 h3 {
        font-size: 1.1rem !important;
    }

    footer .relative.mb-20 h3+p {
        font-size: 0.8rem !important;
    }

    footer .relative.mb-20 .group\/btn>div:last-child {
        padding: 10px 16px !important;
    }

    footer .relative.mb-20 .group\/btn span {
        font-size: 0.8rem !important;
    }
}