/* ==========================================================================
   WAVVY PUBLIC PRICING - PREMIUM MOBILE-FIRST STYLESHEET
   ========================================================================== */

:root {
    --wa-green: #25D366;
    --wa-green-dark: #128C7E;
    --wa-green-deep: #075E54;
    --wa-green-light: #dcf8c6;
    --wa-emerald: #10b981;
    --wa-emerald-dark: #059669;
    --card-shadow: 0 4px 20px -2px rgba(15, 23, 42, 0.05), 0 2px 6px -1px rgba(15, 23, 42, 0.03);
    --safe-bottom: max(0.75rem, env(safe-area-inset-bottom));
}

/* Reset & Base Smoothness */
*, *::before, *::after {
    box-sizing: border-box;
}

::selection {
    background-color: #10b981;
    color: #ffffff;
}

::-moz-selection {
    background-color: #10b981;
    color: #ffffff;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
    color: #0f172a;
    background-color: #f8fafc;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* ==========================================================================
   HERO SECTION (COMPACT & MODERN MOBILE)
   ========================================================================== */
.pricing-hero-wrap {
    position: relative;
    background: radial-gradient(circle at 50% 0%, rgba(16, 185, 129, 0.12) 0%, rgba(248, 250, 252, 0.6) 65%, #f8fafc 100%);
    padding: 5rem 1rem 1.5rem;
    text-align: center;
    overflow: hidden;
}

.pricing-hero-wrap::before {
    content: '';
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 300px;
    background: radial-gradient(ellipse, rgba(16, 185, 129, 0.18) 0%, rgba(18, 140, 126, 0.05) 50%, transparent 70%);
    filter: blur(40px);
    z-index: 0;
    pointer-events: none;
}

.hero-trust-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 9999px;
    padding: 0.3rem 0.85rem;
    box-shadow: 0 2px 10px rgba(16, 185, 129, 0.1);
    margin-bottom: 0.75rem;
}

.hero-main-title {
    font-size: 1.65rem;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.025em;
    color: #0f172a;
    margin: 0 auto 0.6rem;
    max-width: 650px;
}

.hero-main-title .gradient-text {
    background: linear-gradient(135deg, #059669 0%, #0d9488 50%, #10b981 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtext {
    font-size: 0.85rem;
    line-height: 1.45;
    color: #475569;
    max-width: 520px;
    margin: 0 auto 1rem;
}

/* Trust Highlight Chips */
.hero-highlights-grid {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.35rem 0.5rem;
    max-width: 640px;
    margin: 0 auto;
}

.hero-highlight-item {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid #e2e8f0;
    border-radius: 9999px;
    padding: 0.25rem 0.65rem;
    font-size: 0.725rem;
    font-weight: 700;
    color: #334155;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.03);
}

.hero-highlight-item i {
    color: #10b981;
    font-size: 0.75rem;
    flex-shrink: 0;
}

/* ==========================================================================
   MAIN PRICING CONTAINER
   ========================================================================== */
.pricing-main-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0.5rem 1rem 2.5rem;
}

/* ==========================================================================
   MOBILE STICKY TABS SWITCHER (< 1024px)
   ========================================================================== */
.mobile-plan-nav-container {
    display: block;
    margin: 0 auto 0.75rem;
    position: sticky;
    top: 56px;
    z-index: 45;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid #e2e8f0;
    border-radius: 1.15rem;
    padding: 0.35rem;
    box-shadow: 0 4px 18px -2px rgba(15, 23, 42, 0.08);
    max-width: 520px;
    width: 100%;
}

/* 5-Equal Column Grid - Perfect fit on any mobile screen */
.mobile-plan-nav {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0.2rem;
    width: 100%;
    background: #f1f5f9;
    padding: 0.2rem;
    border-radius: 0.85rem;
}

.mobile-plan-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.15rem;
    min-height: 42px;
    padding: 0.35rem 0.15rem;
    font-size: 0.6875rem;
    font-weight: 700;
    color: #64748b;
    background: transparent;
    border: none;
    border-radius: 0.65rem;
    white-space: nowrap;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.mobile-plan-btn i {
    font-size: 0.85rem;
    transition: transform 0.2s ease;
}

.mobile-plan-btn:hover {
    color: #0f172a;
}

.mobile-plan-btn.active {
    color: #ffffff;
    font-weight: 800;
}

.mobile-plan-btn.active i {
    transform: scale(1.15);
}

.mobile-plan-btn.active[data-plan-target="free"] {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.4);
}

.mobile-plan-btn.active[data-plan-target="starter"] {
    background: linear-gradient(135deg, #10b981 0%, #047857 100%);
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.4);
}

.mobile-plan-btn.active[data-plan-target="professional"] {
    background: linear-gradient(135deg, #8b5cf6 0%, #6d28d9 100%);
    box-shadow: 0 2px 8px rgba(139, 92, 246, 0.4);
}

.mobile-plan-btn.active[data-plan-target="business"] {
    background: linear-gradient(135deg, #f97316 0%, #c2410c 100%);
    box-shadow: 0 2px 8px rgba(249, 115, 22, 0.4);
}

.mobile-plan-btn.active[data-plan-target="enterprise"] {
    background: linear-gradient(135deg, #f59e0b 0%, #b45309 100%);
    box-shadow: 0 2px 8px rgba(245, 158, 11, 0.4);
}

.plan-btn-text {
    font-size: 0.65rem;
    letter-spacing: -0.01em;
    line-height: 1;
}

@media (min-width: 480px) {
    .mobile-plan-btn {
        flex-direction: row;
        gap: 0.35rem;
        font-size: 0.775rem;
    }
    .plan-btn-text {
        font-size: 0.75rem;
    }
}

/* Swipe Navigation Sub-bar */
.mobile-swipe-subbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.35rem 0.4rem 0.1rem;
    margin-top: 0.2rem;
}

.mobile-swipe-nav-btn {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    color: #475569;
    font-size: 0.65rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    -webkit-tap-highlight-color: transparent;
}

.mobile-swipe-nav-btn:active {
    background: #0f172a;
    color: #ffffff;
    transform: scale(0.92);
}

.mobile-swipe-indicator-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.15rem;
}

.mobile-swipe-dots {
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.mobile-dot {
    width: 6px;
    height: 6px;
    border-radius: 9999px;
    background: #cbd5e1;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-dot.active {
    width: 20px;
    background: #10b981;
    box-shadow: 0 1px 4px rgba(16, 185, 129, 0.4);
}

.mobile-swipe-hint-text {
    font-size: 0.625rem;
    color: #94a3b8;
    font-weight: 600;
    letter-spacing: 0.01em;
}

/* ==========================================================================
   DEDICATED MOBILE PLAN CARDS STAGE (< 1024px)
   ========================================================================== */
.mobile-active-card-container {
    display: block;
    width: 100%;
    max-width: 520px;
    margin: 0 auto;
}

.mobile-card-panel {
    display: none;
    background: #ffffff;
    border-radius: 1.25rem;
    border: 1.5px solid #e2e8f0;
    padding: 1.15rem 1rem 1rem;
    box-shadow: 0 4px 20px -2px rgba(15, 23, 42, 0.06);
    position: relative;
    overflow: hidden;
    animation: mobileFadeIn 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-card-panel.active {
    display: block;
}

.mobile-card-panel.is-popular {
    border: 2px solid #8b5cf6;
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.18);
    background: linear-gradient(180deg, #faf5ff 0%, #ffffff 22%);
}

@keyframes mobileFadeIn {
    from {
        opacity: 0;
        transform: translateY(5px) scale(0.985);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.mobile-card-panel .popular-ribbon {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #8b5cf6 0%, #6d28d9 100%);
    color: #ffffff;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 0.25rem 1rem 0.3rem;
    border-radius: 0 0 0.75rem 0.75rem;
    box-shadow: 0 3px 10px rgba(139, 92, 246, 0.35);
    display: flex;
    align-items: center;
    gap: 0.3rem;
    white-space: nowrap;
    z-index: 5;
}

.mobile-plan-header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    padding-top: 0.15rem;
}

.mobile-card-panel.is-popular .mobile-plan-header-row {
    padding-top: 0.85rem;
}

.mobile-plan-badge-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.mobile-plan-badge-icon.free { background: #eff6ff; color: #2563eb; }
.mobile-plan-badge-icon.starter { background: #ecfdf5; color: #059669; }
.mobile-plan-badge-icon.professional { background: #f5f3ff; color: #7c3aed; }
.mobile-plan-badge-icon.business { background: #fff7ed; color: #ea580c; }
.mobile-plan-badge-icon.enterprise { background: #fffbeb; color: #d97706; }

.mobile-metrics-bento {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.35rem;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 0.85rem;
    padding: 0.5rem 0.35rem;
    margin-bottom: 0.75rem;
    text-align: center;
}

.mobile-metric-cell {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.mobile-metric-num {
    font-size: 0.875rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.15;
    white-space: nowrap;
}

.mobile-metric-lbl {
    font-size: 0.625rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #64748b;
    letter-spacing: 0.02em;
    margin-top: 0.15rem;
}

.mobile-features-compact {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    margin-bottom: 0.75rem;
    font-size: 0.8125rem;
}

.mobile-feat-item {
    display: flex;
    align-items: flex-start;
    gap: 0.45rem;
    color: #334155;
    font-weight: 600;
    line-height: 1.35;
}

.mobile-feat-item i {
    margin-top: 0.15rem;
    flex-shrink: 0;
    font-size: 0.85rem;
}

.mobile-feat-item i.fa-check-circle { color: #10b981; }
.mobile-feat-item i.fa-times-circle { color: #cbd5e1; }

.mobile-specs-details {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 0.75rem;
    margin-bottom: 0.85rem;
    overflow: hidden;
}

.mobile-specs-details summary {
    padding: 0.55rem 0.75rem;
    font-size: 0.775rem;
    font-weight: 700;
    color: #047857;
    background: #f0fdf4;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    list-style: none;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
}

.mobile-specs-details summary::-webkit-details-marker {
    display: none;
}

.mobile-specs-content {
    padding: 0.5rem 0.75rem 0.6rem;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    font-size: 0.775rem;
    background: #ffffff;
}

.mobile-spec-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.2rem 0;
    border-bottom: 1px dashed #f1f5f9;
    color: #475569;
}

.mobile-spec-row:last-child {
    border-bottom: none;
}

.mobile-spec-row strong {
    color: #0f172a;
    font-weight: 700;
}

.card-action-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    width: 100%;
    min-height: 44px;
    padding: 0.75rem 1.15rem;
    font-size: 0.875rem;
    font-weight: 700;
    border-radius: 0.85rem;
    text-decoration: none;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: none;
    -webkit-tap-highlight-color: transparent;
}

.card-action-btn:active {
    transform: scale(0.98);
}

.btn-plan-free {
    background: #f1f5f9;
    color: #0f172a;
    border: 1px solid #cbd5e1;
}

.btn-plan-starter {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #ffffff;
    box-shadow: 0 4px 14px rgba(16, 185, 129, 0.3);
}

.btn-plan-popular {
    background: linear-gradient(135deg, #8b5cf6 0%, #6d28d9 100%);
    color: #ffffff;
    box-shadow: 0 4px 14px rgba(139, 92, 246, 0.35);
}

.btn-plan-business {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    color: #ffffff;
    box-shadow: 0 4px 14px rgba(249, 115, 22, 0.3);
}

.btn-plan-enterprise {
    background: #0f172a;
    color: #ffffff;
    border: 1px solid #334155;
}

.mobile-quick-compare-box {
    margin: 0.85rem auto 0;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 1rem;
    overflow: hidden;
    max-width: 520px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.mobile-quick-compare-box summary {
    padding: 0.75rem 1rem;
    font-size: 0.8125rem;
    font-weight: 800;
    color: #0f172a;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #f8fafc;
    list-style: none;
    -webkit-tap-highlight-color: transparent;
}

.mobile-quick-compare-box summary::-webkit-details-marker {
    display: none;
}

.mobile-plan-row-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    padding: 0.65rem 1rem;
    border-top: 1px solid #f1f5f9;
    font-size: 0.775rem;
}

.mobile-plan-row-item:active {
    background: #f8fafc;
}

.feature-pill-badge {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 0.1rem 0.35rem;
    border-radius: 0.35rem;
    background: #e0e7ff;
    color: #3730a3;
    margin-left: 0.25rem;
    vertical-align: middle;
}

.feature-pill-badge.green {
    background: #dcfce7;
    color: #166534;
}

.feature-pill-badge.purple {
    background: #f3e8ff;
    color: #6b21a8;
}

/* ==========================================================================
   DESKTOP PRICING GRID (PC >= 1024px)
   ========================================================================== */
.desktop-4-grid {
    display: none;
}

.enterprise-showcase-card {
    display: none;
}

@media (min-width: 1024px) {
    .pricing-hero-wrap {
        padding: 7rem 1.5rem 3.5rem;
    }

    .pricing-hero-wrap::before {
        width: 800px;
        height: 400px;
        top: -150px;
        filter: blur(50px);
    }

    .hero-main-title {
        font-size: 3.25rem;
        max-width: 900px;
        margin-bottom: 1rem;
    }

    .hero-subtext {
        font-size: 1.15rem;
        max-width: 700px;
        margin-bottom: 2rem;
    }

    .mobile-plan-nav-container,
    .mobile-active-card-container,
    .mobile-quick-compare-box {
        display: none !important;
    }

    .desktop-4-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 1.25rem;
        align-items: stretch;
        margin-bottom: 2rem;
    }

    .modern-pricing-card {
        position: relative;
        background: #ffffff;
        border-radius: 1.5rem;
        border: 1px solid #e2e8f0;
        padding: 2rem 1.35rem 1.75rem;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 10px 30px -5px rgba(15, 23, 42, 0.05), 0 4px 6px -2px rgba(15, 23, 42, 0.02);
        overflow: hidden;
    }

    .modern-pricing-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 25px 45px -10px rgba(15, 23, 42, 0.12), 0 10px 15px -3px rgba(15, 23, 42, 0.05);
        border-color: #cbd5e1;
    }

    .modern-pricing-card.is-popular {
        border: 2px solid #8b5cf6;
        box-shadow: 0 25px 50px -10px rgba(139, 92, 246, 0.25), 0 10px 20px -5px rgba(139, 92, 246, 0.12);
        transform: scale(1.03);
        z-index: 10;
        background: linear-gradient(180deg, #faf5ff 0%, #ffffff 25%);
    }

    .modern-pricing-card.is-popular:hover {
        transform: scale(1.03) translateY(-8px);
        box-shadow: 0 30px 60px -10px rgba(139, 92, 246, 0.35), 0 15px 25px -5px rgba(139, 92, 246, 0.18);
    }

    .modern-pricing-card .popular-ribbon {
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        background: linear-gradient(135deg, #8b5cf6 0%, #6d28d9 100%);
        color: #ffffff;
        font-size: 0.75rem;
        font-weight: 800;
        letter-spacing: 0.06em;
        text-transform: uppercase;
        padding: 0.4rem 1.5rem 0.45rem;
        border-radius: 0 0 1rem 1rem;
        box-shadow: 0 4px 14px rgba(139, 92, 246, 0.4);
        display: flex;
        align-items: center;
        gap: 0.35rem;
        white-space: nowrap;
    }

    .card-header-block {
        text-align: left;
        margin-bottom: 1.25rem;
    }

    .plan-icon-wrapper {
        width: 3.25rem;
        height: 3.25rem;
        border-radius: 1rem;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.35rem;
        margin-bottom: 1rem;
        transition: transform 0.3s ease;
    }

    .plan-icon-wrapper.plan-icon-free { background-color: #eff6ff; color: #2563eb; }
    .plan-icon-wrapper.plan-icon-starter { background-color: #ecfdf5; color: #059669; }
    .plan-icon-wrapper.plan-icon-professional { background-color: #f5f3ff; color: #7c3aed; }
    .plan-icon-wrapper.plan-icon-business { background-color: #fff7ed; color: #ea580c; }
    .plan-icon-wrapper.plan-icon-enterprise { background-color: #fffbeb; color: #d97706; }

    .plan-title {
        font-size: 1.35rem;
        font-weight: 800;
        color: #0f172a;
        line-height: 1.2;
        margin-bottom: 0.35rem;
    }

    .plan-tagline {
        font-size: 0.8125rem;
        color: #64748b;
        line-height: 1.45;
        min-height: 2.6rem;
    }

    .price-display-box {
        margin: 1rem 0 1.25rem;
        padding: 1rem;
        background: #f8fafc;
        border-radius: 1rem;
        border: 1px solid #f1f5f9;
        min-height: 5.5rem;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .modern-pricing-card.is-popular .price-display-box {
        background: #f5f3ff;
        border-color: #ede9fe;
    }

    .price-currency {
        font-size: 0.875rem;
        font-weight: 700;
        color: #64748b;
        margin-right: 0.25rem;
    }

    .price-value {
        font-size: 2.15rem;
        font-weight: 900;
        color: #0f172a;
        letter-spacing: -0.03em;
        line-height: 1;
    }

    .price-cycle {
        font-size: 0.775rem;
        font-weight: 600;
        color: #64748b;
        margin-top: 0.35rem;
    }

    .key-metrics-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.5rem;
        margin-bottom: 1.25rem;
    }

    .metric-pill {
        background: #f8fafc;
        border: 1px solid #e2e8f0;
        border-radius: 0.75rem;
        padding: 0.5rem;
        text-align: center;
    }

    .metric-pill-val {
        font-size: 0.9375rem;
        font-weight: 800;
        color: #0f172a;
        line-height: 1.2;
    }

    .metric-pill-lbl {
        font-size: 0.6875rem;
        color: #64748b;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.02em;
        margin-top: 0.15rem;
    }

    .card-features-list {
        display: flex;
        flex-direction: column;
        gap: 0.625rem;
        margin-bottom: 1.75rem;
        flex-grow: 1;
    }

    .card-feature-row {
        display: flex;
        align-items: flex-start;
        gap: 0.5rem;
        font-size: 0.8125rem;
        color: #334155;
        line-height: 1.35;
    }

    .card-feature-row i.fa-check-circle {
        color: #10b981;
        font-size: 0.95rem;
        margin-top: 0.1rem;
        flex-shrink: 0;
    }

    .card-feature-row i.fa-times-circle {
        color: #cbd5e1;
        font-size: 0.95rem;
        margin-top: 0.1rem;
        flex-shrink: 0;
    }

    .card-feature-row.disabled {
        color: #94a3b8;
        text-decoration: line-through;
        opacity: 0.7;
    }
}

/* ==========================================================================
   ENTERPRISE & CUSTOM SCALE VIP SHOWCASE (RESPONSIVE & CLEAN)
   ========================================================================== */
.enterprise-vip-card {
    position: relative;
    background: linear-gradient(135deg, #090e18 0%, #0f172a 65%, #181538 100%);
    border: 1px solid rgba(245, 158, 11, 0.35);
    border-radius: 1.15rem;
    padding: 1.15rem 1.15rem;
    color: #ffffff;
    box-shadow: 0 10px 30px -5px rgba(15, 23, 42, 0.45), 0 0 20px -3px rgba(245, 158, 11, 0.1);
    overflow: hidden;
    margin: 1.25rem auto 0.75rem;
    max-width: 1280px;
    transition: all 0.3s ease;
}

@media (min-width: 1024px) {
    .enterprise-vip-card {
        border-radius: 1.35rem;
        padding: 1.5rem 2rem;
        border-width: 1.5px;
    }
}

.enterprise-vip-card:hover {
    border-color: rgba(245, 158, 11, 0.6);
    box-shadow: 0 14px 40px -5px rgba(15, 23, 42, 0.55), 0 0 30px -3px rgba(245, 158, 11, 0.18);
}

.enterprise-vip-card-glow {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.14) 0%, rgba(124, 58, 237, 0.08) 50%, transparent 70%);
    pointer-events: none;
    filter: blur(30px);
}

.enterprise-vip-card-layout {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 1024px) {
    .enterprise-vip-card-layout {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 2rem;
    }
}

.enterprise-vip-card-info {
    flex: 1;
    min-width: 0;
}

.enterprise-vip-card-header {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.enterprise-vip-card-icon {
    width: 2.35rem;
    height: 2.35rem;
    border-radius: 0.75rem;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.25) 0%, rgba(217, 119, 6, 0.12) 100%);
    border: 1px solid rgba(245, 158, 11, 0.45);
    color: #fbbf24;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

@media (min-width: 1024px) {
    .enterprise-vip-card-icon {
        width: 2.75rem;
        height: 2.75rem;
        border-radius: 0.85rem;
        font-size: 1.25rem;
    }
}

.enterprise-vip-card-title {
    font-size: 1.05rem;
    font-weight: 900;
    color: #ffffff;
    letter-spacing: -0.01em;
    margin: 0;
}

@media (min-width: 1024px) {
    .enterprise-vip-card-title {
        font-size: 1.35rem;
    }
}

.enterprise-vip-card-tag {
    display: inline-flex;
    align-items: center;
    font-size: 0.5875rem;
    font-weight: 900;
    background: rgba(245, 158, 11, 0.18);
    color: #fcd34d;
    border: 1px solid rgba(245, 158, 11, 0.38);
    padding: 0.1rem 0.5rem;
    border-radius: 9999px;
    letter-spacing: 0.04em;
}

.enterprise-vip-card-sub {
    font-size: 0.75rem;
    color: #94a3b8;
    line-height: 1.4;
    margin: 0.2rem 0 0;
    max-width: 600px;
}

@media (min-width: 1024px) {
    .enterprise-vip-card-sub {
        font-size: 0.8125rem;
    }
}

/* Chips Grid */
.enterprise-vip-card-chips {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.35rem;
    margin-top: 0.75rem;
}

@media (min-width: 640px) {
    .enterprise-vip-card-chips {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.45rem 0.75rem;
    }
}

.ent-vip-chip {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.725rem;
    font-weight: 600;
    color: #e2e8f0;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.07);
    padding: 0.35rem 0.65rem;
    border-radius: 0.5rem;
    transition: all 0.15s ease;
}

.ent-vip-chip:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
}

.ent-vip-chip i {
    font-size: 0.75rem;
    flex-shrink: 0;
}

/* Action Area */
.enterprise-vip-card-action {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    width: 100%;
}

@media (min-width: 640px) {
    .enterprise-vip-card-action {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}

@media (min-width: 1024px) {
    .enterprise-vip-card-action {
        flex-direction: column;
        align-items: flex-end;
        width: auto;
        flex-shrink: 0;
        min-width: 230px;
        gap: 0.55rem;
    }
}

.enterprise-vip-price-tag {
    display: flex;
    flex-direction: column;
}

@media (min-width: 1024px) {
    .enterprise-vip-price-tag {
        text-align: right;
    }
}

.enterprise-vip-cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    width: 100%;
    padding: 0.7rem 1.25rem;
    font-size: 0.8125rem;
    font-weight: 800;
    color: #022c22;
    background: linear-gradient(135deg, #10b981 0%, #34d399 50%, #059669 100%);
    border-radius: 0.75rem;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.35);
    transition: all 0.2s ease;
    white-space: nowrap;
}

@media (min-width: 640px) {
    .enterprise-vip-cta-btn {
        width: auto;
    }
}

.enterprise-vip-cta-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.5);
    color: #000000;
}

/* ==========================================================================
   COURIER INTEGRATION SHOWCASE
   ========================================================================== */
.courier-partners-section {
    max-width: 1200px;
    margin: 3.5rem auto 2rem;
    text-align: center;
    padding: 0 1rem;
}

/* Endless Marquee for Courier Partners */
.courier-marquee-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 1.25rem 0;
    margin-top: 1.75rem;
    mask-image: linear-gradient(to right, transparent 0%, black 7%, black 93%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 7%, black 93%, transparent 100%);
}

.courier-marquee-track {
    display: flex;
    width: max-content;
    user-select: none;
}

.courier-marquee-group {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    gap: 1.25rem;
    padding-right: 1.25rem;
    animation: courierMarqueeScroll 28s linear infinite;
    will-change: transform;
}

@keyframes courierMarqueeScroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-100%);
    }
}

/* Pause marquee seamlessly on hover */
.courier-marquee-wrapper:hover .courier-marquee-group {
    animation-play-state: paused;
}

/* ==========================================================================
   HYPNOTIC BORDER BEAM (MagicUI / Modern Linear Style)
   ========================================================================== */
@keyframes courierBorderBeamSpin {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.courier-badge-card {
    position: relative;
    height: 76px;
    width: 196px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 1.4rem;
    cursor: pointer;
    background: #e2e8f0;
    border-radius: 1.25rem;
    overflow: hidden;
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.05), 0 1px 3px rgba(15, 23, 42, 0.02);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    user-select: none;
}

/* Circulating Neon Energy Beam */
.courier-badge-card::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 320px;
    height: 320px;
    transform: translate(-50%, -50%) rotate(0deg);
    background: conic-gradient(
        from 0deg,
        transparent 0deg,
        transparent 250deg,
        rgba(99, 102, 241, 0.4) 280deg,
        #06b6d4 315deg,
        #10b981 345deg,
        #34d399 360deg
    );
    animation: courierBorderBeamSpin 4s linear infinite;
    will-change: transform;
    z-index: 1;
}

/* Stagger beam rotations across sibling cards for dynamic asynchronous flow */
.courier-badge-card:nth-child(2n)::before {
    animation-delay: -1s;
}
.courier-badge-card:nth-child(3n)::before {
    animation-delay: -2s;
}
.courier-badge-card:nth-child(4n)::before {
    animation-delay: -3s;
}

/* Center Crisp White Island */
.courier-badge-card::after {
    content: '';
    position: absolute;
    inset: 1.5px;
    background: linear-gradient(180deg, #ffffff 0%, #fbfcfe 100%);
    border-radius: calc(1.25rem - 1.5px);
    box-shadow: inset 0 1px 1.5px rgba(255, 255, 255, 0.9);
    transition: background 0.35s ease;
    z-index: 2;
}

/* Hover Interaction: Elevation, Radiance & Subtle Beam Surge */
.courier-badge-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 14px 30px rgba(16, 185, 129, 0.22), 0 4px 10px rgba(15, 23, 42, 0.06);
}

.courier-badge-card:hover::before {
    animation-duration: 2.2s;
}

.courier-badge-card:hover::after {
    background: linear-gradient(180deg, #ffffff 0%, #f0fdf4 100%);
}

.courier-logo-img {
    position: relative;
    z-index: 3;
    max-height: 40px;
    max-width: 130px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.courier-badge-card:hover .courier-logo-img {
    transform: scale(1.08);
}

@media (max-width: 1023.98px) {
    .courier-marquee-wrapper {
        padding: 1rem 0;
        margin-top: 1.25rem;
    }

    .courier-marquee-group {
        gap: 0.9rem;
        padding-right: 0.9rem;
        animation-duration: 24s;
    }

    .courier-badge-card {
        height: 62px;
        width: 156px;
        padding: 0.65rem 1rem;
        border-radius: 1rem;
        box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
    }

    .courier-badge-card::before {
        width: 250px;
        height: 250px;
    }

    .courier-badge-card::after {
        border-radius: calc(1rem - 1.5px);
    }

    .courier-logo-img {
        max-height: 34px;
        max-width: 110px;
    }
}

@media (max-width: 639.98px) {
    .courier-marquee-wrapper {
        margin-left: -1rem;
        margin-right: -1rem;
        width: calc(100% + 2rem);
        padding: 0.75rem 0;
        margin-top: 1rem;
        mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
        -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
    }

    .courier-marquee-group {
        gap: 0.65rem;
        padding-right: 0.65rem;
        animation-duration: 18s;
    }

    .courier-badge-card {
        height: 54px;
        width: 135px;
        padding: 0.5rem 0.75rem;
        border-radius: 0.75rem;
    }

    .courier-logo-img {
        max-height: 26px;
        max-width: 90px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .courier-marquee-group {
        animation: none;
    }
    .courier-marquee-wrapper {
        overflow-x: auto;
    }
}

/* ==========================================================================
   FAQ ACCORDION COMPONENT (MODERN SAAS DESIGN)
   ========================================================================== */
.faq-section-container {
    max-width: 860px;
    margin: 4.5rem auto 2.5rem;
    padding: 0 1rem;
}

/* ==========================================================================
   SECTION PILL BADGES (MODERN MICRO-ICONS & GRADIENT BORDERS)
   ========================================================================== */
.faq-section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.35rem 1rem 0.35rem 0.45rem;
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.08) 0%, rgba(124, 58, 237, 0.03) 100%);
    border: 1px solid rgba(147, 51, 234, 0.22);
    color: #7e22ce;
    font-size: 0.75rem;
    font-weight: 800;
    border-radius: 9999px;
    margin-bottom: 0.85rem;
    box-shadow: 0 2px 8px rgba(147, 51, 234, 0.06);
    letter-spacing: 0.02em;
}

.faq-badge-dot {
    width: 1.35rem;
    height: 1.35rem;
    border-radius: 50%;
    background: linear-gradient(135deg, #9333ea 0%, #7c3aed 100%);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    box-shadow: 0 2px 6px rgba(147, 51, 234, 0.35);
    flex-shrink: 0;
}

.courier-section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.35rem 1rem 0.35rem 0.45rem;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.08) 0%, rgba(5, 150, 105, 0.03) 100%);
    border: 1px solid rgba(16, 185, 129, 0.22);
    color: #065f46;
    font-size: 0.75rem;
    font-weight: 800;
    border-radius: 9999px;
    margin-bottom: 0.85rem;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.06);
    letter-spacing: 0.02em;
}

.courier-badge-dot {
    width: 1.35rem;
    height: 1.35rem;
    border-radius: 50%;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    box-shadow: 0 2px 6px rgba(16, 185, 129, 0.35);
    flex-shrink: 0;
}

.faq-accordion-stack {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    margin-bottom: 2rem;
}

.faq-accordion-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 1.15rem;
    overflow: hidden;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px -2px rgba(15, 23, 42, 0.03);
}

.faq-accordion-card:hover {
    border-color: #cbd5e1;
    box-shadow: 0 6px 20px -4px rgba(15, 23, 42, 0.06);
}

.faq-accordion-card details[open] {
    border-color: #cbd5e1;
}

.faq-summary {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 1.1rem 1.25rem !important;
    cursor: pointer !important;
    user-select: none !important;
    list-style: none !important;
    background: #ffffff;
    transition: background-color 0.15s ease;
    -webkit-tap-highlight-color: transparent;
}

.faq-summary::-webkit-details-marker,
.faq-summary::marker {
    display: none !important;
    content: "" !important;
}

.faq-summary:hover {
    background: #f8fafc;
}

.faq-summary-left {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    flex-grow: 1;
    padding-right: 0.75rem;
}

.faq-icon-pill {
    width: 32px;
    height: 32px;
    border-radius: 0.65rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    flex-shrink: 0;
}

.faq-question-text {
    font-size: 0.875rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.35;
    text-align: left;
}

@media (min-width: 1024px) {
    .faq-question-text {
        font-size: 0.975rem;
    }
}

.faq-chevron-bubble {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #f1f5f9;
    color: #64748b;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    flex-shrink: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-accordion-card details[open] .faq-chevron-bubble {
    transform: rotate(180deg);
    background: #0f172a;
    color: #ffffff;
}

.faq-body-content {
    padding: 0 1.25rem 1.25rem 3.45rem;
    color: #475569;
    font-size: 0.8125rem;
    line-height: 1.6;
    animation: faqFadeIn 0.25s ease forwards;
}

@media (min-width: 1024px) {
    .faq-body-content {
        padding: 0 1.5rem 1.35rem 3.75rem;
        font-size: 0.875rem;
    }
}

.faq-body-content p {
    margin: 0;
}

@keyframes faqFadeIn {
    from {
        opacity: 0;
        transform: translateY(-4px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* FAQ Bottom Help Box */
.faq-live-connect-card {
    background: linear-gradient(135deg, #ffffff 0%, #f0fdf4 100%);
    border: 1.5px solid #bbf7d0;
    border-radius: 1.25rem;
    padding: 1.25rem 1.5rem;
    margin-top: 2rem;
    box-shadow: 0 10px 25px -5px rgba(16, 185, 129, 0.1), 0 0 0 1px rgba(16, 185, 129, 0.05);
}

.faq-live-connect-layout {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 640px) {
    .faq-live-connect-layout {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 1.5rem;
    }
}

.faq-live-connect-left {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.faq-live-connect-icon {
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 0.85rem;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.35);
}

.faq-live-connect-info {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.faq-live-connect-title {
    font-size: 1rem;
    font-weight: 800;
    color: #0f172a;
    margin: 0;
}

.faq-live-connect-desc {
    font-size: 0.75rem;
    color: #475569;
    margin: 0;
    line-height: 1.4;
}

.faq-live-connect-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.75rem 1.35rem;
    font-size: 0.8125rem;
    font-weight: 800;
    color: #ffffff;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    border-radius: 0.75rem;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(15, 23, 42, 0.2);
    transition: all 0.2s ease;
    white-space: nowrap;
}

@media (min-width: 640px) {
    .faq-live-connect-btn {
        width: auto;
    }
}

.faq-live-connect-btn:hover {
    background: #020617;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(15, 23, 42, 0.3);
}

/* ==========================================================================
   CALL TO ACTION BANNER (BOTTOM)
   ========================================================================== */
.pricing-bottom-cta {
    max-width: 1200px;
    margin: 3.5rem auto 2.5rem;
    padding: 2.25rem 1.25rem;
    background: radial-gradient(circle at 10% 20%, #064e3b 0%, #065f46 40%, #047857 100%);
    border-radius: 1.5rem;
    color: #ffffff;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px -10px rgba(6, 95, 70, 0.4);
}

@media (min-width: 1024px) {
    .pricing-bottom-cta {
        padding: 4rem 2rem;
        border-radius: 2rem;
        margin: 5rem auto 3rem;
    }
}

.pricing-bottom-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(37, 211, 102, 0.25) 0%, transparent 60%);
    pointer-events: none;
}

/* ==========================================================================
   FLOATING STICKY QUICK ACTION BAR (MOBILE ONLY < 1024px)
   ========================================================================== */
.mobile-sticky-bottom-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-top: 1px solid #e2e8f0;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
    padding: 0.5rem 1rem var(--safe-bottom);
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    transform: translateY(120%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-sticky-bottom-bar.is-visible {
    transform: translateY(0);
}

@media (min-width: 1024px) {
    .mobile-sticky-bottom-bar {
        display: none !important;
    }
}

.mobile-bar-info {
    display: flex;
    flex-direction: column;
}

.mobile-bar-plan-name {
    font-size: 0.75rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.2;
}

.mobile-bar-price {
    font-size: 0.875rem;
    font-weight: 900;
    color: #059669;
}

.mobile-bar-btn {
    padding: 0.55rem 1.15rem;
    font-size: 0.8125rem;
    font-weight: 700;
    color: #ffffff;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: 0.75rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    box-shadow: 0 3px 10px rgba(16, 185, 129, 0.35);
    white-space: nowrap;
    transition: all 0.2s ease;
}

.mobile-bar-btn:active {
    transform: scale(0.96);
}
