/* ==========================================================================
   EXECUTIVE PRICING PAGE STYLING & CONVERSION UI
   ========================================================================== */

:root {
    --pr-emerald: #1d9e75;
    --pr-emerald-dark: #147a5a;
    --pr-emerald-light: #e1f5ee;
    --pr-blue: #e3362e;
    --pr-purple: #7c3aed;

    --pr-dark: #0f172a;
    --pr-heading: #1e293b;
    --pr-body: #334155;
    --pr-muted: #64748b;

    --pr-border-color: #e2e8f0;
    --pr-border-active: #cbd5e1;
    --pr-card-bg: #ffffff;
    --pr-surface-soft: #f8fafc;

    --pr-shadow-card: 0 4px 20px -2px rgba(15, 23, 42, 0.06), 0 2px 6px -1px rgba(15, 23, 42, 0.04);
    --pr-shadow-hover: 0 20px 35px -5px rgba(15, 23, 42, 0.12), 0 10px 15px -5px rgba(15, 23, 42, 0.04);
    --pr-shadow-featured: 0 20px 40px -8px rgba(5, 150, 105, 0.18), 0 8px 16px -4px rgba(5, 150, 105, 0.08);
}

/* Base Pricing Container */
.pricing-interactive-section {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--pr-body);
    padding: 0 1.25rem 6rem;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.pricing-content-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 15px;
}

/* ==========================================================================
   HERO SECTION (With extra top padding to clear fixed navbar)
   ========================================================================== */
.pricing-hero {
    padding: 140px 1.5rem 1.5rem;
    text-align: center;
    background: radial-gradient(ellipse at top, rgba(236, 253, 245, 0.6) 0%, rgba(255, 255, 255, 0) 70%);
    position: relative;
    z-index: 1;
}

.pricing-hero-container {
    max-width: 860px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--pr-emerald-light);
    color: var(--pr-emerald-dark);
    font-size: 13px;
    font-weight: 700;
    padding: 8px 20px;
    border-radius: 999px;
    border: 1px solid rgba(16, 185, 129, 0.2);
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.08);
    animation: fadeInDown 0.6s ease-out;
}

.hero-trust-badge i {
    font-size: 16px;
    color: var(--pr-emerald);
}

.pricing-main-title {
    font-family: 'Cabinet Grotesk', 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    color: var(--pr-dark);
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin: 0 0 1rem;
    animation: fadeInUp 0.6s ease-out 0.1s both;
}

.pricing-main-title .accent-gradient {
    color: var(--pr-emerald);
}

.pricing-main-sub {
    font-size: clamp(1.1rem, 2vw, 1.25rem);
    color: var(--pr-muted);
    line-height: 1.6;
    max-width: 720px;
    margin: 0 auto;
    font-weight: 500;
    animation: fadeInUp 0.6s ease-out 0.2s both;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==========================================================================
   UNIFIED FILTER BAR — Amazon / Flipkart style
   Always visible · Sticky on scroll · Fully responsive
   ========================================================================== */

.pf-bar {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(226, 232, 240, 0.9);
    border-radius: 16px;
    box-shadow: 0 16px 32px rgba(15, 23, 42, 0.08), 0 0 0 1px rgba(255, 255, 255, 0.6) inset, 0 4px 12px rgba(0, 0, 0, 0.06);
    margin-bottom: 2.5rem;
    position: sticky;
    top: var(--header-height, 82px);
    z-index: 40;
    width: 100%;
    box-sizing: border-box;
}

@media (max-width: 768px) {
    .pf-bar {
        top: calc(var(--header-height, 80px) - 2px) !important;
        border-radius: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .pf-bar.is-stuck {
        margin-left: 0 !important;
        margin-right: 0 !important;
        width: 100% !important;
        border-radius: 0 !important;
        top: calc(var(--header-height, 80px) - 2px) !important;
        box-shadow: 0 8px 24px rgba(15, 23, 42, 0.12) !important;
    }
}

/* ── Row 1: Controls ── */
.pf-controls-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 16px 24px;
    flex-wrap: wrap;
}

@media (max-width: 480px) {
    .pf-controls-row {
        flex-direction: column !important;
        align-items: stretch !important;
        padding: 10px 12px !important;
        gap: 10px !important;
    }

    .pf-billing-toggle {
        justify-content: center !important;
        width: 100% !important;
        margin: 0 auto !important;
    }

    .pf-controls-right {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        width: 100% !important;
        gap: 8px !important;
    }

    .pf-active-filter-label {
        display: none !important;
    }

    .pf-bill-label {
        font-size: 12px;
    }

    .pf-currency-seg {
        height: 34px !important;
        padding: 2px !important;
        background: #f1f5f9 !important;
        border: 1px solid #e2e8f0 !important;
        border-radius: 8px !important;
        gap: 2px !important;
        flex: 1 1 auto !important;
        min-width: 0 !important;
        max-width: 175px !important;
        display: inline-flex !important;
    }

    .pf-cur-slider {
        display: block !important;
    }

    .pf-cur {
        flex: 1 1 0% !important;
        min-width: 0 !important;
        padding: 0 4px !important;
        font-size: 11px !important;
        font-weight: 700 !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        white-space: nowrap !important;
        text-align: center !important;
    }

    .pf-filter-btn {
        height: 34px !important;
        padding: 0 12px !important;
        font-size: 12px !important;
        flex-shrink: 0 !important;
        display: inline-flex !important;
        align-items: center !important;
        gap: 4px !important;
        white-space: nowrap !important;
    }
}

.pf-billing-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
}

.pf-bill-label {
    font-size: 13.5px;
    font-weight: 700;
    color: #94a3b8;
    transition: color 0.18s ease;
    white-space: nowrap;
}

.pf-bill-label.active {
    color: #0f172a;
}

.pf-switch {
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    position: relative;
}

.pf-switch input {
    opacity: 0;
    width: 0;
    height: 0;
    position: absolute;
}

.pf-switch-track {
    display: block;
    width: 42px;
    height: 24px;
    background: #cbd5e1;
    border-radius: 999px;
    position: relative;
    transition: background 0.2s ease;
}

.pf-switch-track::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 18px;
    height: 18px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.18);
    transition: transform 0.2s ease;
}

.pf-switch input:checked+.pf-switch-track {
    background: #1d9e75;
}

.pf-switch input:checked+.pf-switch-track::after {
    transform: translateX(18px);
}

.pf-save-badge {
    display: inline-block;
    background: #e2e8f0;
    color: #64748b;
    font-size: 11px;
    font-weight: 800;
    padding: 2px 7px;
    border-radius: 999px;
    margin-left: 4px;
    opacity: 0.8;
    transform: scale(0.95);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    visibility: visible;
}

.pf-bill-label.active .pf-save-badge {
    background: #1d9e75;
    color: #fff;
    opacity: 1;
    transform: scale(1.05);
    box-shadow: 0 2px 6px rgba(29, 158, 117, 0.3);
}

.pf-controls-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.pf-currency-seg {
    display: inline-flex;
    position: relative;
    background: #f1f5f9;
    border-radius: 10px;
    padding: 4px;
    gap: 2px;
    border: 1px solid #e2e8f0;
    height: 40px;
    align-items: center;
}

.pf-cur-slider {
    position: absolute;
    top: 4px;
    left: 0;
    height: calc(100% - 8px);
    background: #0f172a;
    border-radius: 8px;
    transition: transform 0.25s cubic-bezier(0.25, 0.8, 0.25, 1), width 0.25s cubic-bezier(0.25, 0.8, 0.25, 1);
    z-index: 1;
    box-shadow: 0 2px 6px rgba(15, 23, 42, 0.15);
}

.pf-cur {
    position: relative;
    z-index: 2;
    padding: 0 14px;
    border-radius: 8px;
    border: none;
    background: transparent;
    font-size: 13.5px;
    font-weight: 700;
    color: #64748b;
    cursor: pointer;
    transition: color 0.25s ease;
    height: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.pf-cur.active {
    color: #ffffff;
}

.pf-cur:not(.active):hover {
    color: #0f172a;
}

/* ── Row 2: Category chips ── */
.pf-chips-row {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 0;
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    border-bottom: 1px solid #f1f5f9;
    flex-wrap: nowrap;
    scroll-snap-type: x proximity;
}

.pf-chips-row::before,
.pf-chips-row::after {
    content: "";
    flex: 0 0 16px;
}

.pf-chips-row::-webkit-scrollbar {
    display: none;
}

.pf-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 16px;
    border-radius: 999px;
    border: 1.5px solid #e2e8f0;
    background: #f8fafc;
    color: #475569;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
    flex-shrink: 0;
    transition: all 0.18s ease;
    scroll-snap-align: start;
}

.pf-chip i {
    font-size: 14px;
    color: #94a3b8;
    transition: color 0.18s ease;
}

.pf-chip:hover {
    border-color: var(--pr-emerald);
    background: var(--pr-emerald-light);
    color: var(--pr-emerald-dark);
}

.pf-chip:hover i {
    color: var(--pr-emerald);
}

.pf-chip.active {
    background: #0f172a;
    border-color: #0f172a;
    color: #ffffff;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.2);
}

.pf-chip.active i {
    color: #34d399;
}

/* ── Row 3: Sub-service pills ── */
.pf-sub-row {
    display: flex;
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    padding: 8px 0 10px;
    scroll-snap-type: x proximity;
}

.pf-sub-row::before,
.pf-sub-row::after {
    content: "";
    flex: 0 0 16px;
}

.pf-sub-row::-webkit-scrollbar {
    display: none;
}

.pf-sub-list {
    display: flex;
    list-style: none;
    gap: 7px;
    flex-wrap: nowrap;
    padding: 0;
    margin: 0;
    flex-shrink: 0;
}

.pf-sub-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 10px;
    border: 1.5px solid #e2e8f0;
    background: #f8fafc;
    color: #334155;
    font-size: 12.5px;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
    flex-shrink: 0;
    transition: all 0.16s ease;
    scroll-snap-align: start;
}

.pf-sub-pill i {
    font-size: 12px;
    color: var(--pr-emerald);
}

.pf-sub-pill:hover {
    background: var(--pr-emerald-light);
    border-color: var(--pr-emerald);
    color: var(--pr-emerald-dark);
}

.pf-sub-pill.active {
    background: var(--pr-emerald);
    border-color: var(--pr-emerald);
    color: #fff;
}

.pf-sub-pill.active i {
    color: #fff;
}

/* ── Mobile responsive ── */
@media (max-width: 768px) {
    .hp-view-all {
        margin-top: 25px;
        margin-bottom: 0px;
    }
}

@media (max-width: 640px) {
    .pf-bar {
        border-radius: 0;
        margin-bottom: 1.5rem;
        top: calc(var(--header-height, 80px) - 2px) !important;
    }

    .pf-bar--stuck {
        top: calc(var(--header-height, 80px) - 2px) !important;
        border-radius: 0;
    }

    .pf-controls-row {
        padding: 8px 12px 6px;
        gap: 8px;
    }

    .pf-bill-label {
        font-size: 12px;
    }

    .hp-category-scroll {
        gap: 6px;
    }

    .hp-chip {
        padding: 5px 12px;
        font-size: 12px;
        font-weight: 600;
        border-radius: 8px;
        color: #0f172a;
    }

    .pf-chips-row {
        padding: 6px 10px;
        gap: 5px;
    }

    .pf-chip {
        padding: 6px 12px;
        font-size: 12px;
    }

    .pf-sub-row {
        padding: 6px 10px 8px;
    }

    .pf-sub-pill {
        padding: 5px 11px;
        font-size: 12px;
    }
}

@media (max-width: 400px) {
    .pf-chip {
        padding: 5px 10px;
        font-size: 11.5px;
    }

    .pf-cur {
        padding: 4px 10px;
        font-size: 11.5px;
    }
}



/* ==========================================================================
   COMPACT ICON BAR — dark rounded pill, fully responsive
   ========================================================================== */
.sticky-icon-bar {
    background: rgba(15, 23, 42, 0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 20px;
    box-shadow: 0 6px 28px rgba(15, 23, 42, 0.32);
    position: relative;
    width: 100%;
    box-sizing: border-box;
}

.sticky-icon-bar-inner {
    display: flex;
    align-items: center;
    gap: 0;
    padding: 6px 10px;
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
    /* prevent bar itself from overflowing */
}

/* Scrollable pills area — takes all space except the currency block */
.sticky-icon-pills {
    display: flex;
    align-items: center;
    gap: 2px;
    flex: 1 1 auto;
    min-width: 0;
    /* critical — allows flex child to shrink */
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 2px 0;
}

.sticky-icon-pills::-webkit-scrollbar {
    display: none;
}

.sticky-icon-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 13px;
    border-radius: 14px;
    background: transparent;
    color: rgba(255, 255, 255, 0.6);
    border: none;
    cursor: pointer;
    transition: background 0.18s ease, color 0.18s ease;
    white-space: nowrap;
    flex-shrink: 0;
    /* never squish — scroll instead */
}

.sticky-icon-pill i {
    font-size: 15px;
    line-height: 1;
    color: rgba(255, 255, 255, 0.45);
    flex-shrink: 0;
    transition: color 0.18s ease;
}

.icon-pill-label {
    font-size: 12.5px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.6);
    white-space: nowrap;
    transition: color 0.18s ease;
}

.sticky-icon-pill:hover {
    background: rgba(255, 255, 255, 0.09);
    color: #fff;
}

.sticky-icon-pill:hover i,
.sticky-icon-pill:hover .icon-pill-label {
    color: #fff;
}

.sticky.pf-checkout-btn.primary {
    background: #1d9e75;
    color: #fff;
    border: none;
    box-shadow: 0 4px 12px rgba(29, 158, 117, 0.25);
}

.sticky-icon-pill.active {
    background: var(--pr-emerald);
    color: #fff;
    box-shadow: 0 2px 10px rgba(5, 150, 105, 0.4);
}

.sticky-icon-pill.active i,
.sticky-icon-pill.active .icon-pill-label {
    color: #fff;
}

/* Currency controls — always visible, never scrolled away */
.sticky-right-controls {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    padding-left: 8px;
    margin-left: 4px;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.sticky-right-controls .currency-segmented-pill {
    display: flex;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 3px;
    border-radius: 10px;
}

.sticky-right-controls .cur-btn {
    color: rgba(255, 255, 255, 0.55);
    padding: 5px 11px;
    font-size: 12px;
    font-weight: 800;
    border-radius: 8px;
    border: none;
    background: transparent;
    cursor: pointer;
    transition: all 0.18s ease;
    white-space: nowrap;
}

.sticky-right-controls .cur-btn.active {
    background: rgba(255, 255, 255, 0.14);
    color: #ffffff;
    box-shadow: none;
}

/* ==========================================================================
   DROPDOWN PANEL — opens below the icon bar when a pill is clicked
   ========================================================================== */
.sticky-dropdown-panel {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    background: #ffffff;
    border: 1.5px solid #e2e8f0;
    border-radius: 18px;
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.16);
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.22s ease, padding 0.22s ease;
    opacity: 0;
    z-index: 9999;
    pointer-events: none;
    box-sizing: border-box;
}

.sticky-dropdown-panel.open {
    max-height: 340px;
    padding: 18px 20px;
    opacity: 1;
    overflow-y: auto;
    pointer-events: all;
}

.sticky-dropdown-inner {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
}

.dropdown-svc-pill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 15px;
    border: 1.5px solid #e2e8f0;
    border-radius: 12px;
    background: #f8fafc;
    color: #334155;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.18s ease;
    white-space: nowrap;
}

.dropdown-svc-pill i {
    font-size: 13px;
    color: var(--pr-emerald);
}

.dropdown-svc-pill:hover {
    background: var(--pr-emerald-light);
    border-color: var(--pr-emerald);
    color: var(--pr-emerald-dark);
    transform: translateY(-1px);
    box-shadow: 0 3px 8px rgba(16, 185, 129, 0.14);
}

/* Responsive: On mobile, make drop-down full viewport width */
@media (max-width: 640px) {
    .sticky-nav-wrapper {
        top: 58px;
        padding: 0;
    }

    .sticky-icon-bar {
        border-radius: 14px;
    }

    .sticky-icon-bar-inner {
        padding: 5px 8px;
    }

    .sticky-icon-pill {
        padding: 7px 11px;
    }

    .icon-pill-label {
        font-size: 11.5px;
    }

    .sticky-icon-pill i {
        font-size: 14px;
    }

    .sticky-right-controls .cur-btn {
        padding: 4px 9px;
        font-size: 11px;
    }

    .sticky-dropdown-panel {
        border-radius: 14px;
    }
}




.sticky-nav-wrapper.is-sticky .category-filter-card {

    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.12);
    border-color: #cbd5e1;
    padding: 1rem 1.25rem;
}

.category-filter-card {
    background: #ffffff;
    border: 1.5px solid var(--pr-border-color);
    border-radius: 20px;
    box-shadow: var(--pr-shadow-card);
    padding: 1.4rem 1.5rem;
    transition: all 0.3s ease;
}

/* Top Row: Parent Group Tabs + Compact Billing & Currency Controls */
.filter-top-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding-bottom: 1.1rem;
    border-bottom: 1.5px solid #f1f5f9;
    flex-wrap: wrap;
}

.parent-groups-scroll {
    display: flex;
    align-items: center;
    gap: 8px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    flex: 1 1 auto;
    min-width: 0;
    padding: 2px 0;
}

.parent-groups-scroll::-webkit-scrollbar {
    display: none;
}

.group-tab-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: #f8fafc;
    color: var(--pr-heading);
    border: 1.5px solid var(--pr-border-color);
    border-radius: 999px;
    padding: 8px 18px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.2s ease;
}

.group-tab-btn i {
    font-size: 15px;
    color: var(--pr-muted);
}

.group-tab-btn:hover {
    background: #f1f5f9;
    border-color: #cbd5e1;
    color: var(--pr-dark);
}

.group-tab-btn.active {
    background: var(--pr-dark);
    color: #ffffff;
    border-color: var(--pr-dark);
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.18);
}

.group-tab-btn.active i {
    color: var(--pr-emerald);
}

/* Compact Controls Cluster (Billing + Currency) */
.compact-controls-cluster {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
}

.global-billing-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #f8fafc;
    padding: 4px 12px;
    border-radius: 999px;
    border: 1px solid var(--pr-border-color);
}

.billing-mode-label {
    font-size: 12.5px;
    font-weight: 700;
    color: var(--pr-muted);
    transition: color 0.2s ease;
    cursor: pointer;
}

.billing-mode-label.active {
    color: var(--pr-dark);
}

.savings-pill {
    background: #dcfce7;
    color: #15803d;
    font-size: 10.5px;
    font-weight: 800;
    padding: 1px 6px;
    border-radius: 999px;
}

.switch-control {
    position: relative;
    display: inline-block;
    width: 38px;
    height: 22px;
    cursor: pointer;
}

.switch-control input {
    opacity: 0;
    width: 0;
    height: 0;
}

.switch-track {
    position: absolute;
    inset: 0;
    background: #cbd5e1;
    border-radius: 22px;
    transition: background 0.25s ease;
}

.switch-track::before {
    content: "";
    position: absolute;
    width: 16px;
    height: 16px;
    left: 3px;
    top: 3px;
    background: #ffffff;
    border-radius: 50%;
    transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.switch-control input:checked+.switch-track {
    background: var(--pr-emerald);
}

.switch-control input:checked+.switch-track::before {
    transform: translateX(16px);
}

.currency-segmented-pill {
    display: flex;
    background: #f1f5f9;
    padding: 3px;
    border-radius: 999px;
    border: 1px solid var(--pr-border-color);
}

.cur-btn {
    border: none;
    background: transparent;
    padding: 5px 14px;
    border-radius: 999px;
    font-size: 12.5px;
    font-weight: 800;
    color: var(--pr-muted);
    cursor: pointer;
    transition: all 0.2s ease;
}

.cur-btn.active {
    background: #ffffff;
    color: var(--pr-dark);
    box-shadow: 0 2px 6px rgba(15, 23, 42, 0.1);
}

/* Sub-Services Carousel Row */
.subservices-carousel-box {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-top: 1.1rem;
    position: relative;
}

.nav-arrow-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #ffffff;
    border: 1.5px solid var(--pr-border-color);
    color: var(--pr-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
    transition: all 0.2s ease;
}

.nav-arrow-btn i {
    font-size: 16px;
    font-weight: 700;
}

.nav-arrow-btn:hover {
    background: var(--pr-emerald-light);
    border-color: var(--pr-emerald);
    color: var(--pr-emerald);
    transform: scale(1.06);
}

.subservices-track-scroll {
    flex: 1 1 auto;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    scroll-behavior: smooth;
    padding: 4px 2px;
    cursor: grab;
    user-select: none;
}

.subservices-track-scroll:active {
    cursor: grabbing;
}

.subservices-track-scroll::-webkit-scrollbar {
    display: none;
}

.subservices-pills-list {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
    white-space: nowrap;
}

.subservices-pills-list li {
    display: inline-block;
}

.service-pill-item {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 16px;
    border: 1.5px solid var(--pr-border-color);
    border-radius: 12px;
    background: #ffffff;
    color: var(--pr-heading);
    font-size: 13.5px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.22s ease;
    white-space: nowrap;
}

.service-pill-item i {
    font-size: 14px;
    color: var(--pr-emerald);
}

.service-pill-item:hover {
    background: #f8fafc;
    border-color: #94a3b8;
    color: var(--pr-dark);
    transform: translateY(-2px);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.05);
}

.service-pill-item.active {
    background: var(--pr-emerald-light);
    color: var(--pr-emerald-dark);
    border-color: var(--pr-emerald);
    font-weight: 800;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.18);
}

/* ==========================================================================
   SERVICE PRICING PANELS (RENDERED STACK)
   ========================================================================== */
.panels-render-space {
    position: relative;
    margin-bottom: 4rem;
    display: flex;
    flex-direction: column;
    gap: 5rem;
}

@media (max-width: 768px) {
    .panels-render-space {
        margin-top: 1.5rem;
        margin-bottom: 0.5rem;
        gap: 3rem;
    }
}

.service-pricing-panel {
    display: block;
    scroll-margin-top: 190px;
    animation: fadeInPanel 0.4s ease forwards;
}

@keyframes fadeInPanel {
    from {
        opacity: 0;
        transform: translateY(16px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.panel-service-header {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 2.5rem;
}

.service-ident-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: #e0f2fe;
    color: #0369a1;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    padding: 6px 18px;
    border-radius: 999px;
    border: 1px solid #bae6fd;
    margin-bottom: 12px;
}

.service-main-headline {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    color: var(--pr-dark);
    letter-spacing: -0.02em;
    line-height: 1.25;
    margin: 0;
}

.service-main-headline em {
    font-style: normal;
    color: var(--pr-emerald);
}

/* ==========================================================================
   EXECUTIVE PRICING CARDS TRIO
   ========================================================================== */
.pricing-cards-trio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    align-items: stretch;
}

.executive-pricing-card {
    background: var(--pr-card-bg);
    border: 1.5px solid var(--pr-border-color);
    border-radius: 24px;
    padding: 36px 32px 32px;
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow: var(--pr-shadow-card);
    transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.28s ease, border-color 0.28s ease;
    overflow: hidden;
}

.executive-pricing-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: #cbd5e1;
}

.executive-pricing-card[data-tier="Starter"]::before {
    background: var(--pr-blue);
}

.executive-pricing-card[data-tier="Growth"]::before {
    background: var(--pr-emerald);
}

.executive-pricing-card[data-tier="Pro"]::before {
    background: var(--pr-purple);
}

.executive-pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--pr-shadow-hover);
    border-color: #cbd5e1;
}

/* Featured Recommended Plan */
.executive-pricing-card.featured-plan {
    border-color: var(--pr-emerald);
    background: #ffffff;
    box-shadow: var(--pr-shadow-featured);
    transform: scale(1.02);
}

.executive-pricing-card.featured-plan:hover {
    transform: scale(1.02) translateY(-8px);
    box-shadow: 0 25px 50px -10px rgba(5, 150, 105, 0.25);
}

.recommended-badge {
    position: absolute;
    top: 20px;
    right: 22px;
    background: linear-gradient(135deg, var(--pr-emerald) 0%, var(--pr-emerald-dark) 100%);
    color: #ffffff;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    box-shadow: 0 3px 10px rgba(5, 150, 105, 0.35);
}

/* Card Header */
.card-header-block {
    margin-bottom: 1.25rem;
}

.tier-pill-badge {
    display: inline-block;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 4px 14px;
    border-radius: 999px;
    margin-bottom: 1.25rem;
}

.tier-pill-badge.tier-starter {
    background: #e0f2fe;
    color: #0369a1;
}

.tier-pill-badge.tier-growth {
    background: var(--pr-emerald-light);
    color: var(--pr-emerald-dark);
}

.tier-pill-badge.tier-pro {
    background: #f3e8ff;
    color: #6b21a8;
}

/* Pricing Display */
.price-value-container {
    display: flex;
    align-items: baseline;
    gap: 4px;
    line-height: 1;
    margin-bottom: 6px;
}

.price-value-container.has-discount {
    flex-direction: column;
    gap: 4px;
}

.old-price-tag {
    font-size: 1.15rem;
    font-weight: 700;
    color: #94a3b8;
    text-decoration: line-through;
}

.discounted-row {
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.currency-symbol,
.price-currency-symbol {
    font-size: 0.82em;
    font-weight: 800;
    margin-right: 5px;
    display: inline-block;
    vertical-align: 0.04em;
    color: inherit;
}

.numeric-amount {
    font-family: 'Cabinet Grotesk', 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(2.2rem, 3.2vw, 2.7rem);
    font-weight: 900;
    letter-spacing: -0.03em;
    color: var(--pr-dark);
}

.billing-frequency {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--pr-muted);
}

.currency-tag {
    font-size: 0.9rem;
    font-weight: 800;
    color: var(--pr-muted);
    margin-left: 2px;
}

.billing-note-space {
    font-size: 13px;
    font-weight: 600;
    color: var(--pr-muted);
    min-height: 24px;
    margin-bottom: 1rem;
}

.billing-note-space.savings-active {
    display: flex;
    align-items: center;
    gap: 6px;
}

.save-chip {
    background: #dcfce7;
    color: #15803d;
    font-size: 11px;
    font-weight: 800;
    padding: 2px 8px;
    border-radius: 4px;
}

.annual-summary {
    color: var(--pr-heading);
}

.plan-description-text {
    font-size: 14.5px;
    font-weight: 600;
    color: var(--pr-heading);
    line-height: 1.55;
    margin: 0;
    min-height: 44px;
}

.card-divider-line {
    height: 1px;
    background: #f1f5f9;
    margin: 0 0 1.5rem;
}

/* Features List & View More */
.card-features-wrapper {
    flex-grow: 1;
    margin-bottom: 2rem;
}

.features-included-label {
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--pr-muted);
    margin-bottom: 1rem;
}

.features-checklist {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 13px;
}

.plan-feature-row {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    line-height: 1.45;
}

.check-icon-circle {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--pr-emerald-light);
    color: var(--pr-emerald);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
    font-size: 14px;
    font-weight: 800;
}

.feature-text-block {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.feature-label-title {
    font-size: 14.5px;
    font-weight: 700;
    color: var(--pr-dark);
}

.feature-detail-sub {
    font-size: 13px;
    font-weight: 500;
    color: var(--pr-body);
}

.btn-toggle-more-features {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: none;
    border: none;
    color: var(--pr-emerald);
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    padding: 8px 0 0;
    transition: color 0.2s ease;
}

.btn-toggle-more-features:hover {
    color: var(--pr-emerald-dark);
    text-decoration: underline;
}

/* Card Action Footer */
.card-action-footer {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
}

.btn-checkout-trigger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: auto;
    min-width: 165px;
    max-width: 215px;
    padding: 12px 24px;
    border-radius: 10px;
    font-size: 14.5px;
    font-weight: 800;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    margin: 0 0 12px 0;
    align-self: flex-start;
}

.btn-checkout-trigger.btn-regular {
    background: var(--pr-dark);
    color: #ffffff;
}

.btn-checkout-trigger.btn-regular:hover {
    background: #1e293b;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(15, 23, 42, 0.22);
}

.btn-checkout-trigger.btn-featured {
    background: #1d9e75;
    color: #fff;
    border: none;
    box-shadow: 0 4px 12px rgba(29, 158, 117, 0.2);
}

.btn-checkout-trigger.btn-featured:hover {
    background: #147a5a;
    box-shadow: 0 6px 16px rgba(29, 158, 117, 0.3);
    transform: translateY(-2px);
}

.btn-checkout-trigger i {
    font-size: 18px;
    transition: transform 0.2s ease;
}

.btn-checkout-trigger:hover i {
    transform: translateX(4px);
}

.guarantee-micro-text {
    font-size: 12.5px;
    font-weight: 600;
    color: var(--pr-muted);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.guarantee-micro-text i {
    color: var(--pr-emerald);
}

/* ==========================================================================
   TRUST BAR & ENTERPRISE BANNER
   ========================================================================== */
.pricing-trust-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    background: #ffffff;
    border: 1.5px solid var(--pr-border-color);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--pr-shadow-card);
    margin-bottom: 3.5rem;
}

.trust-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.trust-icon-box {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--pr-emerald-light);
    color: var(--pr-emerald);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}

.trust-info h4 {
    font-size: 15px;
    font-weight: 800;
    color: var(--pr-dark);
    margin: 0 0 4px;
}

.trust-info p {
    font-size: 13px;
    color: var(--pr-muted);
    line-height: 1.5;
    margin: 0;
}

/* Enterprise Custom Quote Banner (WITH PURE WHITE TEXT) */
.custom-quote-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    border-radius: 24px;
    padding: 2.5rem 3rem;
    color: #ffffff !important;
    box-shadow: var(--pr-shadow-hover);
    flex-wrap: wrap;
}

.quote-banner-content {
    display: flex;
    align-items: center;
    gap: 20px;
    max-width: 720px;
}

.quote-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.1);
    color: #34d399;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    flex-shrink: 0;
}

.quote-banner-content h3 {
    font-size: 1.4rem;
    font-weight: 800;
    color: #ffffff !important;
    margin: 0 0 8px;
    line-height: 1.3;
}

.quote-banner-content p,
.custom-quote-banner p.quote-desc-text {
    font-size: 15px;
    color: #ffffff !important;
    line-height: 1.6;
    margin: 0;
    opacity: 0.95;
}

.btn-quote-action {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--pr-emerald);
    color: #ffffff !important;
    font-size: 15px;
    font-weight: 800;
    padding: 14px 28px;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.25s ease;
    white-space: nowrap;
}

.btn-quote-action:hover {
    background: var(--pr-emerald-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(5, 150, 105, 0.4);
    color: #ffffff !important;
}

.btn-quote-action i {
    font-size: 18px;
    transition: transform 0.2s ease;
}

.btn-quote-action:hover i {
    transform: translateX(4px);
}

/* ==========================================================================
   KEYFRAME ANIMATIONS
   ========================================================================== */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-12px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(12px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==========================================================================
   RESPONSIVE DESIGN BREAKPOINTS
   ========================================================================== */
@media (max-width: 1024px) {
    .pricing-cards-trio-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .executive-pricing-card.featured-plan {
        transform: none;
    }

    .executive-pricing-card.featured-plan:hover {
        transform: translateY(-8px);
    }

    .pricing-trust-bar {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Tablet scrollable chips */
    .pf-chips-row {
        overflow-x: auto;
        flex-wrap: nowrap;
        -webkit-overflow-scrolling: touch;
    }

    .pf-sub-row {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
}

/* ==========================================================================
   UNIFIED FILTER PANEL (Desktop Sidebar & Mobile Drawer)
   ========================================================================== */
.pf-active-filter-label {
    display: inline-flex;
    align-items: center;
    font-size: 13.5px;
    font-weight: 700;
    color: #475569;
    background: #f1f5f9;
    padding: 0 16px;
    height: 40px;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
}

.pf-active-filter-label:empty {
    display: none;
}

.pf-filter-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #0f172a;
    color: #ffffff;
    border: none;
    padding: 0 18px;
    height: 40px;
    border-radius: 10px;
    font-size: 13.5px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.15);
    transition: all 0.2s ease;
}

.pf-filter-btn:hover {
    background: #1e293b;
    box-shadow: 0 6px 16px rgba(15, 23, 42, 0.2);
}

.pf-filter-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(4px);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.pf-filter-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Default Desktop Sidebar Styles */
.pf-filter-panel {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 360px;
    max-width: 100%;
    background: #ffffff;
    z-index: 9999;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.25, 1, 0.5, 1);
    display: flex;
    flex-direction: column;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.15);
}

.pf-filter-panel.active {
    transform: translateX(0);
}

.pf-drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 1px solid #f1f5f9;
}

.pf-drawer-header h3 {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 800;
    color: #0f172a;
}

.pf-drawer-close {
    background: #f1f5f9;
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #475569;
    font-size: 18px;
    transition: all 0.2s ease;
}

.pf-drawer-close:hover {
    background: #e2e8f0;
    color: #ef4444;
}

.pf-drawer-body {
    overflow-y: auto;
    padding: 12px 24px 24px;
    -webkit-overflow-scrolling: touch;
}

.pf-filter-accordion {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pf-accordion-item {
    border-bottom: 1px solid #f1f5f9;
}

.pf-accordion-trigger {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    background: transparent;
    border: none;
    font-size: 15px;
    font-weight: 700;
    color: #1e293b;
    cursor: pointer;
    text-align: left;
}

.pf-accordion-trigger[aria-expanded="true"] .acc-chevron {
    transform: rotate(180deg);
}

.acc-title {
    display: flex;
    align-items: center;
    gap: 10px;
}

.acc-title i {
    color: #64748b;
    font-size: 18px;
    width: 22px;
    text-align: center;
}

.pf-accordion-trigger[aria-expanded="true"] .acc-title i {
    color: var(--pr-emerald);
}

.acc-chevron {
    color: #94a3b8;
    transition: transform 0.3s ease;
}

.pf-accordion-content {
    padding: 0 0 16px 32px;
}

.pf-drawer-sublist {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.pf-drawer-subitem {
    background: none;
    border: none;
    text-align: left;
    font-size: 14.5px;
    color: #475569;
    padding: 6px 0;
    font-weight: 500;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pf-drawer-subitem i {
    font-size: 6px;
    color: #cbd5e1;
}

.pf-drawer-subitem:hover,
.pf-drawer-subitem.active {
    color: var(--pr-emerald);
    font-weight: 700;
}

.pf-drawer-subitem.active i {
    color: var(--pr-emerald);
}

@media (max-width: 768px) {
    .pricing-hero {
        padding: 120px 1rem 2rem;
    }

    .pricing-main-title {
        font-size: 2.2rem;
    }

    /* Mobile Sticky Bar */
    .pf-bar {
        border-radius: 0;
        top: calc(var(--header-height, 80px) - 2px) !important;
    }

    .pf-bar--stuck {
        top: calc(var(--header-height, 80px) - 2px) !important;
        border-radius: 0;
    }

    .pf-chips-row,
    .pf-sub-row {
        display: none !important;
    }

    .pf-active-filter-label {
        display: none;
        /* Hide label on mobile to save space */
    }

    /* Full Screen Mobile Filter Panel (Drawer / Modal like mobile menu) */
    .pf-filter-panel {
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        width: 100vw !important;
        max-width: 100vw !important;
        height: 100% !important;
        height: 100dvh !important;
        max-height: 100dvh !important;
        border-radius: 0 !important;
        transform: translateX(100%) !important;
        box-shadow: none !important;
        background: #ffffff !important;
        z-index: 100000 !important;
        display: flex !important;
        flex-direction: column !important;
        transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
    }

    .pf-filter-panel.active {
        transform: translateX(0) !important;
    }

    .pf-drawer-header {
        padding: 18px 20px !important;
        border-bottom: 1px solid #f1f5f9 !important;
        background: #ffffff !important;
        flex-shrink: 0 !important;
    }

    .pf-drawer-header h3 {
        font-size: 1.25rem !important;
        font-weight: 800 !important;
        color: #0f172a !important;
    }

    .pf-drawer-close {
        width: 38px !important;
        height: 38px !important;
        background: #f1f5f9 !important;
        border-radius: 50% !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        font-size: 19px !important;
        color: #0f172a !important;
    }

    .pf-drawer-body {
        flex: 1 1 auto !important;
        padding: 16px 20px 90px !important;
        overflow-y: auto !important;
        -webkit-overflow-scrolling: touch !important;
    }

    .pf-controls-row {
        padding: 12px 14px;
    }

    .pf-billing-toggle {
        width: 100%;
        justify-content: center;
        margin-bottom: 8px;
    }

    .pf-controls-right {
        width: 100%;
        justify-content: space-between;
    }

    .pf-currency-seg {
        flex: 1 1 auto;
        max-width: 180px;
        min-width: 0;
        justify-content: center;
    }

    /* Stack cards cleanly and prevent overlap */
    .pricing-cards-trio-grid {
        grid-template-columns: 1fr !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 20px !important;
        width: 100% !important;
        box-sizing: border-box !important;
        overflow: visible !important;
    }

    .executive-pricing-card {
        width: 100% !important;
        padding: 24px 18px !important;
        box-sizing: border-box !important;
        border-radius: 18px !important;
        position: relative !important;
    }

    .executive-pricing-card.featured-plan {
        order: -1 !important;
        transform: none !important;
    }

    .executive-pricing-card.featured-plan:hover {
        transform: none !important;
    }

    /* BADGE OVERLAP FIX: Display recommended badge inline before tier badge on mobile */
    .recommended-badge {
        position: static !important;
        display: inline-flex !important;
        align-self: flex-start !important;
        margin-bottom: 12px !important;
        font-size: 10.5px !important;
        font-weight: 800 !important;
        letter-spacing: 0.5px !important;
        padding: 4px 12px !important;
        border-radius: 999px !important;
        box-shadow: 0 2px 8px rgba(5, 150, 105, 0.3) !important;
    }

    .card-header-block {
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        margin-bottom: 1rem !important;
        width: 100% !important;
    }

    .tier-pill-badge {
        font-size: 11px !important;
        padding: 4px 12px !important;
        margin-bottom: 10px !important;
        display: inline-block !important;
    }

    /* PRICE VALUE OVERFLOW FIX */
    .price-value-container {
        display: flex !important;
        align-items: baseline !important;
        flex-wrap: wrap !important;
        gap: 4px 6px !important;
        margin-bottom: 6px !important;
        width: 100% !important;
    }

    .numeric-amount {
        font-size: clamp(1.75rem, 6vw, 2.05rem) !important;
        line-height: 1 !important;
        letter-spacing: -0.02em !important;
    }

    .billing-frequency {
        font-size: 1rem !important;
        white-space: nowrap !important;
    }

    .currency-tag {
        font-size: 0.85rem !important;
        white-space: nowrap !important;
    }

    .billing-note-space {
        font-size: 11.5px !important;
        line-height: 1.4 !important;
        min-height: auto !important;
        margin-bottom: 0.75rem !important;
        word-break: break-word !important;
    }

    .plan-description-text {
        font-size: 13.5px !important;
        line-height: 1.5 !important;
        min-height: auto !important;
        margin-bottom: 0 !important;
    }

    .card-divider-line {
        margin: 1rem 0 !important;
    }

    .card-features-wrapper {
        margin-bottom: 1.5rem !important;
    }

    .plan-feature-row {
        gap: 10px !important;
        padding: 6px 0 !important;
    }

    .check-icon-circle {
        width: 18px !important;
        height: 18px !important;
        font-size: 11px !important;
    }

    .feature-label-title {
        font-size: 13px !important;
        line-height: 1.4 !important;
    }

    .feature-detail-sub {
        font-size: 11.5px !important;
    }

    .card-action-footer {
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        width: 100% !important;
    }

    .btn-checkout-trigger {
        width: auto !important;
        min-width: 160px !important;
        max-width: 210px !important;
        height: auto !important;
        padding: 11px 22px !important;
        font-size: 14px !important;
        font-weight: 700 !important;
        border-radius: 10px !important;
        margin: 0 0 10px 0 !important;
        align-self: flex-start !important;
    }

    .service-main-headline {
        font-size: 1.55rem !important;
        line-height: 1.3 !important;
    }

    .service-ident-badge {
        font-size: 11.5px !important;
        padding: 5px 14px !important;
        margin-bottom: 10px !important;
    }

    .pricing-trust-bar {
        grid-template-columns: 1fr;
        padding: 1.25rem;
        gap: 16px;
    }

    .custom-quote-banner {
        flex-direction: column;
        padding: 1.75rem 1.25rem;
        text-align: center;
    }

    .quote-banner-content {
        flex-direction: column;
        text-align: center;
    }

    .btn-quote-action {
        width: 100%;
        justify-content: center;
    }
}

/* ── Extreme Small Mobile Devices (<= 380px) ── */
@media (max-width: 380px) {
    .pricing-hero {
        padding: 95px 10px 20px !important;
    }

    .pricing-main-title {
        font-size: 1.75rem !important;
    }

    .pricing-content-container {
        padding: 0 8px !important;
    }

    .executive-pricing-card {
        padding: 20px 14px !important;
        border-radius: 16px !important;
    }

    .numeric-amount {
        font-size: 1.55rem !important;
    }

    .pf-controls-row {
        padding: 8px 10px !important;
    }

    .pf-cur {
        font-size: 10px !important;
        padding: 0 2px !important;
    }

    .pf-filter-btn {
        padding: 0 10px !important;
        font-size: 11.5px !important;
    }

    .service-main-headline {
        font-size: 1.35rem !important;
    }

    .service-ident-badge {
        font-size: 11px !important;
        padding: 4px 10px !important;
    }
}

/* ── Homepage Horizontal Category Scroll ── */
.hp-category-scroll-container {
    width: 100%;
    overflow: hidden;
    margin: 20px 0 20px 0;
    position: relative;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.hp-category-scroll-container::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 40px;
    background: linear-gradient(to right, transparent, #ffffff);
    pointer-events: none;
}

.hp-category-scroll {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 12px;
    padding-bottom: 12px;
    /* for scrollbar */
    scrollbar-width: none;
    /* firefox */
    scroll-behavior: smooth;
    -ms-overflow-style: none;
}

.hp-category-scroll::-webkit-scrollbar {
    display: none;
    /* Chrome/Safari */
}

.hp-chip {
    flex: 0 0 auto;
    padding: 8px 16px;
    border-radius: 8px;
    background: #f1f5f9;
    color: #0f172a;
    font-size: 14px;
    font-weight: 600;
    border: 1px solid #e2e8f0;
    cursor: pointer;
    transition: all 0.25s ease;
    white-space: nowrap;
    user-select: none;
    -webkit-user-select: none;
}

.hp-chip:hover {
    background: #e2e8f0;
    color: #0f172a;
}

.hp-chip.active {
    background: #0f172a;
    color: #ffffff;
    border-color: #0f172a;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.15);
}