/* Probiz Premium Numbers — v5 */

:root {
    --navy: #0F1D4A;
    --navy-light: #1A2E6B;
    --navy-dark: #060B1E;
    --primary: #2563EB;
    --accent: #38BDF8;
    --gold: #D4AF37;
    --gold-light: #FCE181;
    --purple: #4C1D95;
    --teal: #0F766E;
    --eand-red: #E00800;
    --bg: #FFFFFF;
    --surface: #F8FAFC;
    --surface-2: #EEF2FF;
    --text: #111827;
    --muted: #4B5563;
    --font: 'Inter', system-ui, sans-serif;
    --serif: 'Playfair Display', Georgia, serif;
    --r-sm: 10px;
    --r-md: 16px;
    --r-lg: 24px;
    --r-xl: 32px;
    --shadow: 0 12px 40px rgba(15, 29, 74, 0.1);
    --shadow-lg: 0 24px 60px rgba(15, 29, 74, 0.16);
    --ease: cubic-bezier(0.25, 1, 0.5, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body.pb-page {
    font-family: var(--font);
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
.font-serif { font-family: var(--serif) !important; }
h1, h2, h3 { font-weight: 700; line-height: 1.15; letter-spacing: -0.02em; color: var(--navy); }
p { color: var(--muted); margin-bottom: 0; }
img { max-width: 100%; height: auto; }
/* Brand logos — fixed sizes (global img rule must not stretch these) */
.pb-logo-eand {
    height: 36px !important;
    width: auto !important;
    max-width: 110px !important;
    object-fit: contain;
}
.pb-logo-probiz {
    height: 32px !important;
    width: auto !important;
    max-width: 120px !important;
    object-fit: contain;
}
body.pb-page.has-site-header .header .logo img {
    height: 30px !important;
    width: auto !important;
    max-width: 140px !important;
    object-fit: contain;
}
body.pb-page .footer.site-footer .footer-logo img {
    height: 48px !important;
    width: auto !important;
    max-width: 160px !important;
    object-fit: contain;
}
.section-pad { padding: 5rem 0; }

/* Animations */
@keyframes shimmer {
    to { background-position: 200% center; }
}
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(28px); }
    to { opacity: 1; transform: translateY(0); }
}
.anim-up { animation: fadeUp 0.7s var(--ease) both; }
.anim-up.d1 { animation-delay: 0.1s; }
.anim-up.d2 { animation-delay: 0.2s; }
.anim-up.d3 { animation-delay: 0.3s; }

.text-shimmer {
    background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmer 3s linear infinite;
}

.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.6s var(--ease), transform 0.6s var(--ease); }
.reveal.visible { opacity: 1; transform: none; }

/* Buttons */
.btn-pb-primary {
    display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, var(--primary), #1d4ed8);
    color: #fff; font-weight: 600; font-size: 0.95rem;
    border: none; border-radius: 999px;
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.35);
    transition: transform 0.2s, box-shadow 0.2s;
    text-decoration: none; cursor: pointer;
}
.btn-pb-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(37, 99, 235, 0.45);
    color: #fff;
}
.btn-pb-ghost {
    display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(255,255,255,0.12);
    color: #fff; font-weight: 600; font-size: 0.95rem;
    border: 1.5px solid rgba(255,255,255,0.35);
    border-radius: 999px;
    backdrop-filter: blur(8px);
    transition: background 0.2s, border-color 0.2s;
    text-decoration: none;
}
.btn-pb-ghost:hover { background: rgba(255,255,255,0.2); border-color: rgba(255,255,255,0.6); color: #fff; }

/* WhatsApp float */
.wa-float {
    position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 1050;
    display: flex; align-items: center; gap: 0.6rem;
    padding: 0.85rem 1.25rem;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: #fff; font-weight: 600; font-size: 0.9rem;
    border-radius: 999px;
    box-shadow: 0 8px 28px rgba(37, 211, 102, 0.45);
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
}
.wa-float i { font-size: 1.35rem; }
.wa-float:hover { transform: scale(1.04); color: #fff; box-shadow: 0 12px 36px rgba(37, 211, 102, 0.55); }
@media (max-width: 576px) {
    .wa-float span { display: none; }
    .wa-float { padding: 0.9rem; border-radius: 50%; }
}

/* HERO */
.pb-hero {
    position: relative;
    background: linear-gradient(145deg, var(--navy-dark) 0%, var(--navy) 45%, var(--navy-light) 100%);
    color: #fff;
    padding: 4.5rem 0 6rem;
    overflow: hidden;
}
.pb-hero-mesh {
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 10% 20%, rgba(37, 99, 235, 0.35) 0%, transparent 60%),
        radial-gradient(ellipse 60% 50% at 90% 80%, rgba(212, 175, 55, 0.2) 0%, transparent 55%),
        radial-gradient(ellipse 50% 40% at 70% 10%, rgba(56, 189, 248, 0.25) 0%, transparent 50%);
    pointer-events: none;
}
.pb-hero-inner { position: relative; z-index: 2; }
.pb-pill {
    display: inline-flex; align-items: center; gap: 0.45rem;
    padding: 0.4rem 1rem;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 999px;
    font-size: 0.8rem; font-weight: 600;
    color: var(--gold-light);
    margin-bottom: 1.25rem;
    backdrop-filter: blur(6px);
}
.pb-hero-title {
    font-family: var(--serif);
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 1rem;
    line-height: 1.1;
}
.pb-hero-desc {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.82);
    max-width: 540px;
    margin-bottom: 1.75rem;
    font-weight: 400;
    line-height: 1.65;
}

.pb-hero-search {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: var(--r-lg);
    padding: 1rem;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(12px);
}
.search-mode-row {
    display: flex; flex-wrap: wrap; gap: 0.5rem;
    margin-bottom: 0.75rem;
}
.search-mode-opt {
    cursor: pointer; margin: 0;
}
.search-mode-opt input { display: none; }
.search-mode-opt span {
    display: block;
    padding: 0.35rem 0.85rem;
    font-size: 0.78rem; font-weight: 600;
    border-radius: 999px;
    background: rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.7);
    border: 1px solid transparent;
    transition: all 0.2s;
}
.search-mode-opt input:checked + span {
    background: rgba(37, 99, 235, 0.5);
    color: #fff;
    border-color: rgba(56, 189, 248, 0.5);
}
.search-input-row {
    display: flex; align-items: center; gap: 0.5rem;
    background: rgba(255,255,255,0.95);
    border-radius: 999px;
    padding: 0.35rem 0.35rem 0.35rem 1rem;
}
.search-input-row i { color: var(--muted); font-size: 1rem; }
.search-input-row input {
    flex: 1; border: none; outline: none;
    font-size: 0.95rem; font-weight: 500;
    background: transparent; color: var(--text);
    min-width: 0;
}
.search-input-row .btn-pb-primary { padding: 0.6rem 1.25rem; font-size: 0.85rem; flex-shrink: 0; }

.pb-hero-btns { display: flex; flex-wrap: wrap; gap: 0.75rem; }

.pb-stats-panel {
    display: flex; flex-direction: column; gap: 1rem;
}
.pb-stat-card {
    display: flex; align-items: center; gap: 1rem;
    padding: 1.1rem 1.25rem;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: var(--r-md);
    backdrop-filter: blur(10px);
    transition: transform 0.25s, background 0.25s;
}
.pb-stat-card:hover { transform: translateX(4px); background: rgba(255,255,255,0.11); }
.pb-stat-icon {
    width: 48px; height: 48px; border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, var(--ic, var(--primary)), rgba(255,255,255,0.2));
    font-size: 1.25rem; color: #fff;
    flex-shrink: 0;
}
.pb-stat-num {
    font-size: 1.75rem; font-weight: 800; color: #fff;
    line-height: 1; font-variant-numeric: tabular-nums;
}
.pb-stat-lbl { font-size: 0.8rem; color: rgba(255,255,255,0.65); font-weight: 500; margin-top: 0.15rem; }

.pb-hero-wave {
    position: absolute; bottom: -1px; left: 0; right: 0; height: 60px;
    background: var(--bg);
    clip-path: ellipse(55% 100% at 50% 100%);
}

/* TRUST */
.pb-trust {
    background: var(--surface);
    padding: 2rem 0;
    border-bottom: 1px solid rgba(15, 29, 74, 0.06);
}
.pb-trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}
@media (max-width: 992px) { .pb-trust-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .pb-trust-grid { grid-template-columns: 1fr; } }
.pb-trust-item {
    display: flex; align-items: center; gap: 1rem;
    padding: 1rem;
    background: #fff;
    border-radius: var(--r-md);
    box-shadow: var(--shadow);
}
.pb-trust-ic {
    width: 48px; height: 48px; border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 1.2rem; flex-shrink: 0;
}
.pb-trust-item strong { display: block; font-size: 0.9rem; color: var(--navy); }
.pb-trust-item span { font-size: 0.78rem; color: var(--muted); }

/* Section heads */
.pb-section-head { margin-bottom: 2.5rem; }
.pb-eyebrow {
    display: inline-block;
    font-size: 0.75rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.12em;
    color: var(--primary);
    background: var(--surface-2);
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
    margin-bottom: 0.75rem;
}
.pb-section-head h2 {
    font-family: var(--serif);
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    margin-bottom: 0.5rem;
}
.pb-section-sub { font-size: 1rem; color: var(--muted); max-width: 560px; }

/* TIERS */
.pb-tiers { background: linear-gradient(180deg, var(--bg) 0%, var(--surface) 100%); }
.pb-tier-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
}
@media (max-width: 1100px) { .pb-tier-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 768px) { .pb-tier-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .pb-tier-grid { grid-template-columns: 1fr; } }
.tier-silverplus {
    background: linear-gradient(160deg, #f0fdfa 0%, #b6f0e6 55%, #5eead4 100%);
    border: 1px solid #5eead4;
    color: #0f5750;
}
.tier-silverplus .tier-flash-icon { background: linear-gradient(135deg, #14b8a6, #2dd4bf); color: #fff; }
.tier-silverplus h3 { color: #0f5750; }
.tier-goldplus {
    background: linear-gradient(160deg, #fff7ed 0%, #fdba74 55%, #f97316 100%);
    border: 1px solid rgba(234, 88, 12, 0.5);
    color: #6e2c08;
}
.tier-goldplus .tier-flash-icon { background: linear-gradient(135deg, #ea580c, #fb923c); color: #fff; }
.tier-goldplus h3 { color: #6e2c08; }
.tier-flash {
    position: relative;
    padding: 2rem 1.75rem;
    border-radius: var(--r-lg);
    text-align: center;
    overflow: hidden;
    transition: transform 0.3s var(--ease), box-shadow 0.3s;
    height: 100%;
}
.tier-flash::before {
    content: '';
    position: absolute; inset: 0;
    opacity: 0.06;
    background: radial-gradient(circle at 50% 0%, currentColor 0%, transparent 70%);
}
.tier-flash:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.tier-flash-icon {
    width: 64px; height: 64px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.6rem;
}
.tier-flash h3 { font-family: var(--serif); font-size: 1.4rem; margin-bottom: 0.5rem; }
.tier-flash p { font-size: 0.9rem; margin-bottom: 1rem; }
.tier-flash code {
    display: inline-block;
    padding: 0.35rem 0.85rem;
    background: rgba(0,0,0,0.06);
    border-radius: 999px;
    font-size: 0.8rem; font-weight: 600;
}
.tier-silver {
    background: linear-gradient(160deg, #f5fbff 0%, #d6eafc 55%, #aed4f5 100%);
    border: 1px solid #a9cdf0;
    color: #1d4877;
}
.tier-silver .tier-flash-icon { background: linear-gradient(135deg, #3b82f6, #60a5fa); color: #fff; }
.tier-silver h3 { color: #143a63; }
.tier-gold {
    background: linear-gradient(160deg, #fff8df 0%, #ffe08a 55%, #f6b32b 100%);
    border: 1px solid rgba(245, 158, 11, 0.55);
}
.tier-gold .tier-flash-icon { background: linear-gradient(135deg, #f59e0b, var(--gold-light)); color: var(--navy); }
.tier-gold h3 { color: #6e3a00; }
.tier-vip {
    background: linear-gradient(160deg, #1e1b4b, var(--purple));
    border: 1px solid rgba(124, 58, 237, 0.4);
    color: rgba(255,255,255,0.85);
}
.tier-vip h3 { color: var(--gold-light); }
.tier-vip p { color: rgba(255,255,255,0.7); }
.tier-vip .tier-flash-icon { background: linear-gradient(135deg, var(--gold), #f59e0b); color: var(--navy); }
.tier-vip code { background: rgba(255,255,255,0.12); color: var(--gold-light); }

/* PLANS */
.pb-plans {
    background: linear-gradient(180deg, var(--surface) 0%, #fff 40%, var(--surface-2) 100%);
}
.pb-partner-strip {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem 2rem;
    background: #fff;
    border-radius: var(--r-md);
    box-shadow: var(--shadow);
    margin-bottom: 2rem;
}
.pb-partner-strip .pb-lockup-logo {
    width: min(480px, 94%) !important;
    max-width: none !important;
    max-height: 110px !important;
    height: auto !important;
    object-fit: contain;
    display: block;
}
@media (max-width: 767px) {
    .pb-partner-strip {
        padding: 1.25rem 1rem;
    }
    .pb-partner-strip .pb-lockup-logo {
        width: min(340px, 92vw) !important;
        max-height: 88px !important;
    }
}
.pb-partner-strip .pb-logo-eand {
    height: 36px !important;
    width: auto !important;
    max-width: 110px !important;
    flex-shrink: 0;
}
.pb-partner-strip .pb-logo-probiz {
    height: 32px !important;
    width: auto !important;
    max-width: 120px !important;
    flex-shrink: 0;
}
.pb-partner-text { font-size: 0.85rem; color: var(--muted); font-weight: 500; }

.pb-plan-tabs {
    display: flex; flex-wrap: wrap; gap: 0.5rem;
    margin-bottom: 1.75rem;
    justify-content: center;
}
.pb-plan-tab {
    padding: 0.55rem 1.15rem;
    font-size: 0.82rem; font-weight: 600;
    border: 1.5px solid rgba(15, 29, 74, 0.12);
    border-radius: 999px;
    background: #fff;
    color: var(--muted);
    cursor: pointer;
    transition: all 0.2s;
}
.pb-plan-tab:hover { border-color: var(--primary); color: var(--primary); }
.pb-plan-tab.on {
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    color: #fff;
    border-color: transparent;
    box-shadow: 0 6px 20px rgba(15, 29, 74, 0.25);
}
.pb-plan-panel { display: none; }
.pb-plan-panel.on { display: block; }

/* Plan carousel — single row, up to 4 visible, arrows for overflow */
.pb-plan-carousel {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 0.65rem;
}
.pb-plan-carousel:not(.has-overflow) .pb-plan-nav {
    visibility: hidden;
    pointer-events: none;
}
.pb-plan-viewport {
    overflow: hidden;
    min-width: 0;
    width: 100%;
}
.pb-plan-grid {
    display: flex;
    flex-wrap: nowrap;
    gap: 1.25rem;
    transition: transform 0.4s var(--ease);
    will-change: transform;
}
.pb-plan-nav {
    flex-shrink: 0;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    border: 1.5px solid rgba(15, 29, 74, 0.12);
    background: #fff;
    color: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow);
    transition: background 0.2s, border-color 0.2s, transform 0.2s, opacity 0.2s;
}
.pb-plan-nav:hover:not(:disabled) {
    background: var(--navy);
    border-color: var(--navy);
    color: #fff;
    transform: scale(1.05);
}
.pb-plan-nav:disabled {
    opacity: 0.35;
    cursor: default;
}
.pb-plan-nav i { font-size: 1.15rem; line-height: 1; }

/* Plan flash cards */
.plan-flash {
    flex: 0 0 var(--plan-card-w, 280px);
    width: var(--plan-card-w, 280px);
    min-width: 0;
    max-width: none;
    position: relative;
    background: #fff;
    border-radius: var(--r-lg);
    padding: 1.5rem;
    box-shadow: var(--shadow);
    border: 1px solid rgba(15, 29, 74, 0.06);
    overflow: hidden;
    display: flex; flex-direction: column;
    transition: transform 0.3s var(--ease), box-shadow 0.3s;
}
.plan-flash:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.plan-flash-accent {
    position: absolute; top: 0; left: 0; right: 0; height: 4px;
}
.accent-freedom .plan-flash-accent { background: linear-gradient(90deg, var(--primary), var(--accent)); }
.accent-gold .plan-flash-accent { background: linear-gradient(90deg, var(--gold), var(--gold-light)); }
.accent-emirati .plan-flash-accent { background: linear-gradient(90deg, var(--teal), #14b8a6); }
.accent-business .plan-flash-accent { background: linear-gradient(90deg, var(--navy), var(--primary)); }
.accent-entertainment .plan-flash-accent { background: linear-gradient(90deg, var(--purple), #a855f7); }
.accent-endless .plan-flash-accent { background: linear-gradient(90deg, #0ea5e9, var(--accent)); }

.plan-flash-badge {
    position: absolute; top: 1rem; right: 1rem;
    padding: 0.25rem 0.65rem;
    background: linear-gradient(135deg, var(--eand-red), #ff4444);
    color: #fff;
    font-size: 0.68rem; font-weight: 700;
    border-radius: 999px;
    text-transform: uppercase; letter-spacing: 0.04em;
}
.plan-flash-group {
    font-size: 0.72rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.08em;
    color: var(--primary);
}
.plan-flash-name {
    font-size: 1.05rem; font-weight: 700;
    color: var(--navy);
    margin: 0.25rem 0 1rem;
    line-height: 1.3;
}
.plan-flash-pricing { margin-bottom: 0.75rem; }
.plan-price-strike {
    font-size: 0.85rem; color: var(--muted);
    text-decoration: line-through;
}
.plan-price-strike span { font-size: 0.75rem; }
.plan-price-main { display: flex; align-items: flex-start; gap: 0.5rem; }
.plan-price-num {
    font-size: 2.25rem; font-weight: 800;
    color: var(--navy);
    line-height: 1;
    font-variant-numeric: tabular-nums;
}
.plan-price-meta { font-size: 0.78rem; color: var(--muted); line-height: 1.3; }
.plan-promo-dur {
    font-size: 0.78rem; color: var(--eand-red); font-weight: 600;
    margin-top: 0.35rem;
}
.plan-flash-contract {
    font-size: 0.8rem; color: var(--muted);
    margin-bottom: 1rem;
    display: flex; align-items: center; gap: 0.4rem;
}
.plan-flash-specs {
    list-style: none; padding: 0; margin: 0 0 1.25rem;
    flex: 1;
}
.plan-flash-specs li {
    display: flex; align-items: flex-start; gap: 0.6rem;
    font-size: 0.82rem; color: var(--text);
    padding: 0.35rem 0;
    border-bottom: 1px solid rgba(15, 29, 74, 0.05);
}
.plan-flash-specs li:last-child { border-bottom: none; }
.spec-icon {
    width: 24px; height: 24px; border-radius: 6px;
    background: var(--surface-2);
    display: flex; align-items: center; justify-content: center;
    color: var(--primary); font-size: 0.75rem; flex-shrink: 0;
}
.plan-flash-cta {
    display: flex; align-items: center; justify-content: center; gap: 0.5rem;
    padding: 0.7rem;
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    color: #fff; font-weight: 600; font-size: 0.88rem;
    border-radius: var(--r-sm);
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
    margin-top: auto;
}
.plan-flash-cta:hover { background: linear-gradient(135deg, var(--primary), #1d4ed8); color: #fff; transform: translateY(-1px); }

/* NUMBERS */
.pb-numbers { background: var(--bg); }
.pb-filter {
    background: linear-gradient(135deg, var(--surface), #fff);
    border: 1px solid rgba(15, 29, 74, 0.08);
    border-radius: var(--r-lg);
    padding: 1.5rem;
    margin-bottom: 2rem;
    box-shadow: var(--shadow);
}
.pb-filter .form-label {
    font-size: 0.75rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.06em;
    color: var(--muted);
}
.pb-filter .form-control,
.pb-filter .form-select {
    border-radius: var(--r-sm);
    border-color: rgba(15, 29, 74, 0.12);
    font-size: 0.9rem;
    font-weight: 500;
}
.pb-filter .form-control:focus,
.pb-filter .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

.pb-chips-row {
    display: flex; flex-wrap: wrap; align-items: center; gap: 0.45rem;
    margin-top: 1rem;
}
.pb-chips-label {
    font-size: 0.72rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.06em;
    color: var(--muted);
    min-width: 52px;
}
.pb-chip {
    padding: 0.35rem 0.85rem;
    font-size: 0.78rem; font-weight: 600;
    border: 1.5px solid rgba(15, 29, 74, 0.1);
    border-radius: 999px;
    background: #fff;
    color: var(--muted);
    cursor: pointer;
    transition: all 0.2s;
}
.pb-chip:hover { border-color: var(--primary); color: var(--primary); }
.pb-chip.on {
    background: linear-gradient(135deg, var(--primary), #1d4ed8);
    color: #fff;
    border-color: transparent;
}

.pb-num-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.25rem;
}
.pb-result-count {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 0.88rem; font-weight: 600;
    color: var(--muted);
}

/* Premium number cards */
.pb-num-card {
    position: relative;
    border-radius: var(--r-lg);
    padding: 1.35rem;
    cursor: pointer;
    overflow: hidden;
    transition: transform 0.3s var(--ease), box-shadow 0.3s;
    animation: fadeUp 0.5s var(--ease) both;
    border: 1px solid rgba(255,255,255,0.2);
}
.pb-num-card::before {
    content: '';
    position: absolute; top: -40%; right: -20%;
    width: 120px; height: 120px;
    border-radius: 50%;
    background: rgba(255,255,255,0.12);
    pointer-events: none;
}
.pb-num-card:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow: var(--shadow-lg);
}
.pb-num-card.tier-silver {
    background: linear-gradient(145deg, #f5fbff 0%, #c8e3fb 45%, #7eb8f0 100%);
    color: #133a63;
}
.pb-num-card.tier-gold {
    background: linear-gradient(145deg, #fff7df 0%, #ffce4d 42%, #f59e0b 100%);
    color: #5c2e00;
}
.pb-num-card.tier-vip {
    background: linear-gradient(145deg, #312e81 0%, var(--purple) 50%, #6d28d9 100%);
    color: #fff;
}
.pb-num-card.tier-silverplus {
    background: linear-gradient(145deg, #f0fdfa 0%, #99f6e4 45%, #2dd4bf 100%);
    color: #0f4c47;
}
.pb-num-card.tier-silverplus:hover { box-shadow: 0 20px 50px rgba(20, 184, 166, 0.35); }
.pb-num-card.tier-goldplus {
    background: linear-gradient(145deg, #fff7ed 0%, #fdba74 40%, #ea580c 100%);
    color: #5a2208;
}
.pb-num-card.tier-goldplus:hover { box-shadow: 0 20px 50px rgba(234, 88, 12, 0.4); }
.pb-num-card.tier-default {
    background: linear-gradient(145deg, #eff6ff 0%, #dbeafe 100%);
    color: var(--navy);
}

.pb-num-top {
    display: flex; justify-content: space-between; align-items: flex-start;
    margin-bottom: 0.75rem;
}
.pb-num-tier {
    display: inline-flex; align-items: center; gap: 0.35rem;
    padding: 0.3rem 0.7rem;
    font-size: 0.7rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.06em;
    border-radius: 999px;
    background: rgba(0,0,0,0.08);
}
.tier-vip .pb-num-tier { background: rgba(212, 175, 55, 0.25); color: var(--gold-light); }
.tier-gold .pb-num-tier { background: rgba(120, 53, 15, 0.12); }
.pb-num-status {
    font-size: 0.68rem; font-weight: 700;
    padding: 0.25rem 0.6rem;
    border-radius: 999px;
    text-transform: uppercase; letter-spacing: 0.04em;
}
.st-available { background: rgba(16, 185, 129, 0.2); color: #047857; }
.st-reserved { background: rgba(245, 158, 11, 0.25); color: #b45309; }
.st-pending { background: rgba(59, 130, 246, 0.2); color: #1d4ed8; }
.tier-vip .st-available { background: rgba(16, 185, 129, 0.3); color: #6ee7b7; }
.tier-vip .st-reserved { background: rgba(245, 158, 11, 0.3); color: #fcd34d; }
.tier-vip .st-pending { background: rgba(147, 197, 253, 0.25); color: #bfdbfe; }

.pb-num-display {
    font-family: var(--serif);
    font-size: 1.65rem; font-weight: 800;
    letter-spacing: 0.04em;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}
.pb-num-hint {
    font-size: 0.78rem;
    opacity: 0.75;
    margin-bottom: 0.85rem;
    line-height: 1.4;
}
.pb-num-tags { display: flex; flex-wrap: wrap; gap: 0.3rem; margin-bottom: 0.65rem; }
.pb-num-tag {
    display: inline-flex; align-items: center; gap: 0.25rem;
    font-size: 0.64rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.03em;
    padding: 0.18rem 0.5rem;
    border-radius: 999px;
    background: rgba(255,255,255,0.55);
    border: 1px solid rgba(0,0,0,0.06);
    backdrop-filter: blur(4px);
}
.pb-num-tag i { font-size: 0.68rem; }
.tier-vip .pb-num-tag { background: rgba(255,255,255,0.16); border-color: rgba(255,255,255,0.2); color: var(--gold-light); }
.tier-goldplus .pb-num-tag { background: rgba(255,255,255,0.35); }

.pb-num-chips { display: flex; flex-wrap: wrap; gap: 0.35rem; margin-bottom: 1rem; }
.pb-num-chip {
    font-size: 0.68rem; font-weight: 600;
    padding: 0.2rem 0.55rem;
    border-radius: 999px;
    background: rgba(0,0,0,0.07);
}
.tier-vip .pb-num-chip { background: rgba(255,255,255,0.12); }
.pb-num-chip s { opacity: 0.65; margin-right: 0.2rem; }

.pb-num-actions {
    display: flex; gap: 0.5rem;
}
.btn-pb-outline {
    flex: 1;
    padding: 0.55rem;
    font-size: 0.8rem; font-weight: 600;
    border: 1.5px solid rgba(0,0,0,0.15);
    border-radius: var(--r-sm);
    background: rgba(255,255,255,0.5);
    color: inherit;
    cursor: pointer;
    transition: background 0.2s;
}
.tier-vip .btn-pb-outline { border-color: rgba(255,255,255,0.25); background: rgba(255,255,255,0.08); color: #fff; }
.btn-pb-outline:hover { background: rgba(255,255,255,0.8); }
.btn-pb-wa {
    flex: 1.2;
    display: inline-flex; align-items: center; justify-content: center; gap: 0.35rem;
    padding: 0.55rem;
    font-size: 0.8rem; font-weight: 600;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: #fff;
    border-radius: var(--r-sm);
    text-decoration: none;
    transition: transform 0.2s;
}
.btn-pb-wa:hover { color: #fff; transform: scale(1.02); }

/* Skeleton */
.skel {
    height: 200px;
    border-radius: var(--r-lg);
    background: linear-gradient(90deg, #f1f5f9 25%, #e2e8f0 50%, #f1f5f9 75%);
    background-size: 200% 100%;
    animation: skelPulse 1.2s ease infinite;
}
@keyframes skelPulse {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* Empty */
.pb-empty {
    text-align: center;
    padding: 3rem 1.5rem;
    background: var(--surface);
    border-radius: var(--r-lg);
}
.pb-empty-icon {
    width: 72px; height: 72px; border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.75rem; color: #fff;
}
.pb-empty h3 { font-family: var(--serif); margin-bottom: 0.5rem; }
.pb-empty p { margin-bottom: 1.25rem; }

/* FAQ */
.pb-faq { background: linear-gradient(180deg, var(--surface) 0%, var(--bg) 100%); }
.pb-accordion .accordion-item {
    border: none;
    margin-bottom: 0.75rem;
    border-radius: var(--r-md) !important;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(15, 29, 74, 0.06);
}
.pb-accordion .accordion-button {
    font-weight: 600; font-size: 0.95rem;
    color: var(--navy);
    background: #fff;
    padding: 1.1rem 1.25rem;
    box-shadow: none;
}
.pb-accordion .accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, var(--surface-2), #fff);
    color: var(--primary);
}
.pb-accordion .accordion-body {
    font-size: 0.9rem;
    color: var(--muted);
    line-height: 1.65;
    padding: 0 1.25rem 1.1rem;
}

/* Hero tagline */
.pb-hero-tagline {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--gold-light);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

/* Modal */
.pb-modal {
    border: none;
    border-radius: var(--r-lg);
    overflow: hidden;
}
.pb-modal .modal-header {
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    color: #fff;
    border: none;
    padding: 1.25rem 1.5rem;
}
.pb-modal .modal-title { color: #fff; }
.pb-modal .btn-close { filter: invert(1); }
.modal-num-heroline {
    display: flex; align-items: center; gap: 0.75rem;
}
.modal-num-hero {
    font-family: var(--serif);
    font-size: 2rem; font-weight: 800;
    color: var(--navy);
    letter-spacing: 0.04em;
}
.modal-copy-btn {
    width: 42px; height: 42px; flex-shrink: 0;
    border-radius: 12px;
    border: 1.5px solid rgba(37, 99, 235, 0.25);
    background: var(--surface-2);
    color: var(--primary);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.05rem; cursor: pointer;
    transition: all 0.2s;
}
.modal-copy-btn:hover { background: var(--primary); color: #fff; }
.modal-copy-btn.copied { background: #10b981; border-color: #10b981; color: #fff; }

/* Back to top */
.pb-back-top {
    position: fixed; bottom: 1.5rem; left: 1.5rem; z-index: 1045;
    width: 46px; height: 46px;
    border-radius: 50%;
    border: none;
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    color: #fff; font-size: 1.15rem;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 8px 24px rgba(15, 29, 74, 0.35);
    opacity: 0; visibility: hidden; transform: translateY(12px);
    transition: all 0.3s var(--ease);
    cursor: pointer;
}
.pb-back-top.show { opacity: 1; visibility: visible; transform: none; }
.pb-back-top:hover { transform: translateY(-3px); }
.modal-plan-mini {
    padding: 1rem;
    background: var(--surface);
    border-radius: var(--r-sm);
    margin-bottom: 0.75rem;
    border-left: 3px solid var(--primary);
}
.modal-price-was {
    font-size: 0.85rem; color: var(--muted);
    text-decoration: line-through;
}
.modal-price-now {
    font-size: 1.25rem; font-weight: 800;
    color: var(--navy);
}
.btn-pb-modal-wa {
    display: flex; align-items: center; justify-content: center; gap: 0.5rem;
    padding: 0.85rem;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: #fff; font-weight: 600;
    border-radius: var(--r-sm);
    text-decoration: none;
}
.btn-pb-modal-wa:hover { color: #fff; }

/* Premium subnav — visible below main header; scrolls away with page */
body.pb-page.has-site-header {
    padding-top: 0;
}

body.pb-page.has-site-header .header .container {
    max-width: 1400px;
    padding-left: 40px;
    padding-right: 40px;
}

.pb-subnav {
    position: relative;
    z-index: 900;
    background: rgba(6, 11, 30, 0.96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.pb-subnav-inner {
    display: flex; align-items: center; gap: 0.35rem;
    padding: 0.65rem 0;
    min-height: 54px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}
.pb-subnav-link {
    display: inline-flex; align-items: center; gap: 0.4rem;
    padding: 0.55rem 1.05rem;
    font-size: 0.9rem; font-weight: 600;
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    border-radius: 999px;
    white-space: nowrap;
    transition: all 0.2s;
}
.pb-subnav-link:hover { color: #fff; background: rgba(255,255,255,0.08); }
.pb-subnav-link.on { color: #fff; background: linear-gradient(135deg, var(--primary), #1d4ed8); }
.pb-subnav-wa {
    margin-left: auto;
    display: inline-flex; align-items: center; gap: 0.4rem;
    padding: 0.55rem 1.05rem;
    font-size: 0.9rem; font-weight: 600;
    color: #fff;
    background: linear-gradient(135deg, #25D366, #128C7E);
    border-radius: 999px;
    text-decoration: none;
    white-space: nowrap;
}

/* Why section */
.pb-why { background: var(--surface); }
.pb-why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}
@media (max-width: 992px) { .pb-why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 576px) { .pb-why-grid { grid-template-columns: 1fr; } }
.pb-why-card {
    background: #fff;
    border-radius: var(--r-lg);
    padding: 1.5rem;
    box-shadow: var(--shadow);
    border: 1px solid rgba(15, 29, 74, 0.05);
    transition: transform 0.3s var(--ease);
    height: 100%;
}
.pb-why-card:hover { transform: translateY(-4px); }
.pb-why-ic {
    width: 48px; height: 48px; border-radius: 14px;
    background: linear-gradient(135deg, var(--surface-2), #fff);
    display: flex; align-items: center; justify-content: center;
    color: var(--primary); font-size: 1.25rem;
    margin-bottom: 1rem;
    border: 1px solid rgba(37, 99, 235, 0.15);
}
.pb-why-card h3 { font-size: 1rem; margin-bottom: 0.5rem; }
.pb-why-card p { font-size: 0.88rem; line-height: 1.55; }

/* Tier pricing */
.tier-price-block {
    display: flex; align-items: baseline; justify-content: center; gap: 0.25rem;
    margin: 0.75rem 0 0.35rem;
}
.tier-from { font-size: 0.75rem; font-weight: 600; color: var(--muted); text-transform: uppercase; }
.tier-amount { font-size: 1.75rem; font-weight: 800; font-family: var(--serif); }
.tier-period { font-size: 0.85rem; font-weight: 600; color: var(--muted); }
.tier-price-note { font-size: 0.78rem; font-weight: 600; margin-bottom: 0.85rem !important; opacity: 0.85; }
.tier-vip .tier-price-note { color: rgba(255,255,255,0.75); }

/* Shine effect */
.tier-shine, .pb-num-shine { position: relative; overflow: hidden; }
.tier-shine::after, .pb-shine-sweep {
    content: '';
    position: absolute;
    top: 0; left: -120%;
    width: 55%; height: 100%;
    background: linear-gradient(105deg, transparent 0%, rgba(255,255,255,0.22) 45%, rgba(255,255,255,0.45) 50%, rgba(255,255,255,0.22) 55%, transparent 100%);
    transform: skewX(-18deg);
    pointer-events: none;
    animation: cardShine 5s ease-in-out infinite;
}
.pb-shine-sweep { animation-delay: calc(var(--shine-delay, 0) * 0.3s); }
@keyframes cardShine {
    0%, 75%, 100% { left: -120%; opacity: 0; }
    40% { opacity: 1; }
    55% { left: 140%; opacity: 0; }
}
.pb-num-card:hover { box-shadow: 0 20px 50px rgba(15, 29, 74, 0.22), 0 0 0 1px rgba(255,255,255,0.15); }
.pb-num-card.tier-silver:hover { box-shadow: 0 20px 50px rgba(59, 130, 246, 0.3); }
.pb-num-card.tier-gold:hover { box-shadow: 0 20px 50px rgba(245, 158, 11, 0.35); }
.pb-num-card.tier-vip:hover { box-shadow: 0 20px 50px rgba(76, 29, 149, 0.35); }

/* Premium pagination */
.pb-pagination {
    display: flex; align-items: center; justify-content: center; gap: 0.5rem;
    margin-top: 2rem;
    padding: 0.75rem 1rem;
    background: linear-gradient(135deg, var(--surface), #fff);
    border-radius: 999px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(15, 29, 74, 0.08);
    max-width: 480px;
    margin-left: auto; margin-right: auto;
}
.pb-page-list {
    display: flex; align-items: center; gap: 0.35rem;
    list-style: none; padding: 0; margin: 0;
}
.pb-page-btn {
    width: 40px; height: 40px;
    border-radius: 50%;
    border: 1.5px solid rgba(15, 29, 74, 0.12);
    background: #fff;
    color: var(--navy);
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
}
.pb-page-btn:hover:not(:disabled) { border-color: var(--primary); color: var(--primary); }
.pb-page-btn:disabled { opacity: 0.35; cursor: not-allowed; }
.pb-page-num {
    min-width: 40px; height: 40px;
    padding: 0 0.5rem;
    border-radius: 999px;
    border: 1.5px solid transparent;
    background: transparent;
    color: var(--muted);
    font-weight: 700; font-size: 0.88rem;
    cursor: pointer;
    transition: all 0.2s;
}
.pb-page-num:hover { color: var(--primary); background: var(--surface-2); }
.pb-page-num.on {
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    color: #fff;
    box-shadow: 0 6px 16px rgba(15, 29, 74, 0.25);
}
.pb-page-ellipsis { padding: 0 0.25rem; color: var(--muted); font-weight: 700; }

/* Contact */
html[dir="rtl"] .pb-subnav-inner { direction: rtl; }
html[dir="rtl"] .pb-subnav-wa { margin-left: 0; margin-right: auto; }
html[dir="rtl"] .pb-hero-copy,
html[dir="rtl"] .pb-section-head,
html[dir="rtl"] .pb-contact-lead { text-align: right; }
#contact { scroll-margin-top: 88px; }
.pb-contact { background: linear-gradient(180deg, #fff 0%, var(--surface) 100%); }
.pb-contact-lead { font-size: 1rem; margin-bottom: 1.5rem; max-width: 420px; }
.pb-contact-cards { display: flex; flex-direction: column; gap: 0.75rem; }
.pb-contact-card {
    display: flex; align-items: center; gap: 1rem;
    padding: 1rem;
    background: #fff;
    border-radius: var(--r-md);
    box-shadow: var(--shadow);
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s;
    border: 1px solid rgba(15, 29, 74, 0.06);
}
.pb-contact-card:hover { transform: translateX(4px); color: inherit; }
.pb-contact-card-ic {
    width: 44px; height: 44px; border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 1.1rem; flex-shrink: 0;
}
.pb-contact-card strong { display: block; font-size: 0.9rem; color: var(--navy); }
.pb-contact-card span { font-size: 0.78rem; color: var(--muted); }
.pb-contact-form {
    background: #fff;
    border-radius: var(--r-lg);
    padding: 1.75rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(15, 29, 74, 0.06);
}
.pb-contact-feedback.success { color: #047857; font-weight: 600; }
.pb-contact-feedback.error { color: #dc2626; font-weight: 600; }

/* Probiz footer (matches probizsms.com) */
.footer.pb-site-footer {
    background: var(--navy-dark);
    padding: 5rem 0 2.5rem;
    color: rgba(255,255,255,0.75);
    border-top: 5px solid var(--gold);
    margin-top: 0;
}
.footer.pb-site-footer .footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
}
.footer.pb-site-footer .footer-logo img {
    height: 48px; width: auto; object-fit: contain;
    margin-bottom: 1.25rem;
    filter: brightness(0) invert(1);
}
.footer.pb-site-footer p { font-size: 0.95rem; line-height: 1.7; color: rgba(255,255,255,0.7); margin-bottom: 0; }
.footer.pb-site-footer h4 { color: #fff; font-size: 1rem; margin-bottom: 1.25rem; letter-spacing: 0.04em; }
.footer.pb-site-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.75rem; }
.footer.pb-site-footer a { color: rgba(255,255,255,0.7); text-decoration: none; font-size: 0.9rem; display: inline-flex; align-items: center; gap: 0.5rem; }
.footer.pb-site-footer a:hover { color: var(--gold); }
.footer.pb-site-footer .social-links { display: flex; gap: 0.75rem; margin-top: 1.5rem; }
.footer.pb-site-footer .social-links a {
    width: 42px; height: 42px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(255,255,255,0.06);
    border-radius: 50%;
    font-size: 1rem;
}
.footer.pb-site-footer .social-links a:hover { background: var(--gold); color: var(--navy); transform: translateY(-3px); }
.footer-copy { padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.08); text-align: center; }
.footer-copy p { font-size: 0.85rem; color: rgba(255,255,255,0.4); margin: 0; }
@media (max-width: 992px) {
    .footer.pb-site-footer .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 576px) {
    .footer.pb-site-footer .footer-grid { grid-template-columns: 1fr; }
}

/* FAQ page */
.pb-hero-faq { padding-bottom: 5rem; }
.pb-faq-search-wrap {
    position: relative; max-width: 540px; margin: 2rem auto 0;
}
.pb-faq-search-wrap i {
    position: absolute; left: 1.1rem; top: 50%; transform: translateY(-50%);
    color: var(--muted); font-size: 1.1rem;
}
.pb-faq-search-wrap input {
    width: 100%;
    padding: 0.95rem 1.25rem 0.95rem 3rem;
    border-radius: 999px; border: none;
    font-size: 0.98rem; font-weight: 500;
    background: rgba(255,255,255,0.96);
    color: var(--text);
    box-shadow: 0 12px 30px rgba(6, 11, 30, 0.3);
}
.pb-faq-search-wrap input:focus { outline: 3px solid rgba(56, 189, 248, 0.4); }
.pb-faqpage { background: var(--surface); }
.pb-faq-layout { display: grid; grid-template-columns: 260px 1fr; gap: 2.5rem; align-items: start; }
@media (max-width: 900px) { .pb-faq-layout { grid-template-columns: 1fr; } }
.pb-faq-nav { position: sticky; top: 1rem; }
@media (max-width: 900px) { .pb-faq-nav { position: static; } }
.pb-faq-nav h3 { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); margin-bottom: 1rem; }
.pb-faq-nav ul { list-style: none; padding: 0; margin: 0 0 1.5rem; display: grid; gap: 0.25rem; }
.pb-faq-nav a {
    display: block; padding: 0.6rem 0.9rem;
    border-radius: 10px; font-size: 0.88rem; font-weight: 600;
    color: var(--muted); text-decoration: none;
    border-left: 3px solid transparent;
    transition: all 0.2s;
}
.pb-faq-nav a:hover { background: #fff; color: var(--primary); }
.pb-faq-nav a.on { background: #fff; color: var(--navy); border-left-color: var(--primary); box-shadow: var(--shadow); }
.pb-faq-help {
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    border-radius: var(--r-md); padding: 1.5rem; color: #fff;
    box-shadow: 0 12px 32px rgba(15, 29, 74, 0.25);
    border: 1px solid rgba(255,255,255,0.12);
}
.pb-faq-help p { color: rgba(255,255,255,0.9); font-size: 0.9rem; margin-bottom: 1rem; line-height: 1.5; }
.pb-faq-ask-btn {
    display: flex; align-items: center; justify-content: center; gap: 0.5rem;
    width: 100%;
    padding: 0.85rem 1.25rem;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: #fff !important;
    font-weight: 700; font-size: 0.95rem;
    border-radius: 999px;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
    transition: transform 0.2s, box-shadow 0.2s;
    margin-bottom: 0.75rem;
}
.pb-faq-ask-btn:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(37, 211, 102, 0.55); color: #fff; }
.pb-faq-call-link {
    display: flex; align-items: center; justify-content: center; gap: 0.4rem;
    font-size: 0.85rem; font-weight: 600;
    color: rgba(255,255,255,0.85) !important;
    text-decoration: none;
}
.pb-faq-call-link:hover { color: var(--gold-light) !important; }

/* Emirati Family benefits strip */
.pb-family-benefits {
    background: linear-gradient(135deg, #ecfdf5, #d1fae5);
    border: 1px solid #6ee7b7;
    border-radius: var(--r-lg);
    padding: 1.5rem 1.75rem;
    margin-bottom: 1.5rem;
}
.pb-family-benefits h3 {
    font-size: 1.15rem; color: #065f46; margin-bottom: 1rem;
    display: flex; align-items: center; gap: 0.5rem;
}
.pb-family-benefits ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.65rem; }
.pb-family-benefits li {
    display: flex; align-items: center; gap: 0.65rem;
    font-size: 0.95rem; font-weight: 600; color: #047857;
}
.pb-family-benefits li i { color: #059669; font-size: 1.1rem; }
.accent-family .plan-flash-accent { background: linear-gradient(90deg, #059669, #34d399); }

.pb-faq-group { margin-bottom: 2.5rem; scroll-margin-top: 90px; }
.pb-faq-group-title { font-size: 1.4rem; margin-bottom: 1rem; color: var(--navy); }

/* Home Wireless */
.pb-hero-wireless { padding-bottom: 5rem; }
.pb-hw-badges {
    display: flex; flex-wrap: wrap; justify-content: center; gap: 0.75rem;
    margin-top: 2rem;
}
.pb-hw-badges span {
    display: inline-flex; align-items: center; gap: 0.4rem;
    padding: 0.45rem 1rem;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 999px;
    font-size: 0.8rem; font-weight: 600;
    color: rgba(255,255,255,0.9);
}
.hw-plan-card {
    background: #fff;
    border-radius: var(--r-lg);
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(15, 29, 74, 0.06);
    height: 100%;
    position: relative;
}
.hw-plan-premium { border-color: rgba(212, 175, 55, 0.35); background: linear-gradient(160deg, #fff 0%, #fffbeb 100%); }
.hw-plan-badge {
    position: absolute; top: 1.25rem; right: 1.25rem;
    padding: 0.3rem 0.75rem;
    background: linear-gradient(135deg, var(--eand-red), #ff4444);
    color: #fff; font-size: 0.68rem; font-weight: 700;
    border-radius: 999px; text-transform: uppercase;
}
.hw-plan-card h3 { font-family: var(--serif); font-size: 1.5rem; margin-bottom: 0.35rem; }
.hw-plan-sub { font-size: 0.88rem; margin-bottom: 1.25rem; }
.hw-plan-price { margin-bottom: 1.25rem; }
.hw-plan-price .plan-promo-dur { margin-top: 0.35rem; margin-bottom: 0; }
.hw-price-was { font-size: 0.9rem; color: var(--muted); text-decoration: line-through; margin-right: 0.5rem; }
.hw-price-now { font-size: 2.25rem; font-weight: 800; color: var(--navy); }
.hw-price-meta { font-size: 0.85rem; color: var(--muted); }
.hw-plan-specs { list-style: none; padding: 0; margin: 0 0 1.5rem; }
.hw-plan-specs li { display: flex; align-items: center; gap: 0.6rem; padding: 0.4rem 0; font-size: 0.9rem; border-bottom: 1px solid rgba(15,29,74,0.05); }
.hw-plan-specs li i { color: var(--primary); }
.pb-hw-step-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
@media (max-width: 768px) { .pb-hw-step-grid { grid-template-columns: 1fr; } }
.pb-hw-step {
    text-align: center; padding: 1.5rem;
    background: #fff; border-radius: var(--r-lg); box-shadow: var(--shadow);
}
.pb-hw-step-num {
    width: 48px; height: 48px; border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #fff; font-weight: 800; font-size: 1.25rem;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 1rem;
}
.hw-compare-table { width: 100%; background: #fff; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow); }
.hw-compare-table th, .hw-compare-table td { padding: 1rem 1.25rem; border-bottom: 1px solid rgba(15,29,74,0.06); }
.hw-compare-table th { background: var(--navy); color: #fff; font-weight: 600; }
.hw-compare-table s { color: var(--muted); font-size: 0.85rem; margin-left: 0.35rem; }
.pb-cta-band {
    background: linear-gradient(135deg, var(--navy-dark), var(--purple));
    padding: 4rem 0;
}
.pb-cta-band .text-white-muted { color: rgba(255,255,255,0.8); max-width: 560px; margin: 0 auto 1.5rem; }
