/* ================================================================
   PHARMATECH PRO — Creative Redesign v2.0
   Bold, modern, SaaS-grade design system
   ================================================================ */

/* ── 0. DESIGN TOKENS ─────────────────────────────────────────── */
:root {
    /* Brand */
    --p:        #0e3d52;      /* deep navy-teal  */
    --p2:       #1a5c79;      /* mid teal        */
    --p3:       #2580a6;      /* bright teal     */
    --g:        #00c896;      /* emerald green   */
    --g2:       #00a87e;      /* deeper green    */
    --g-fade:   rgba(0,200,150,.12);
    --gold:     #f59e0b;

    /* Surfaces */
    --bg-dark:  #060f1a;      /* deep night      */
    --bg-card:  #0d1e2d;      /* card dark       */
    --bg-glass: rgba(255,255,255,.06);
    --bg-light: #f3f8fb;
    --bg-white: #ffffff;

    /* Text */
    --txt-dark:  #0d1b2a;
    --txt-mid:   #344054;
    --txt-light: #637381;
    --txt-muted: #98a2b3;

    /* Borders */
    --bdr:       rgba(255,255,255,.10);
    --bdr-light: #dde8ef;

    /* Gradients */
    --grad-hero:   linear-gradient(135deg, #060f1a 0%, #0e3d52 50%, #0a2a3a 100%);
    --grad-brand:  linear-gradient(135deg, var(--p) 0%, var(--p3) 100%);
    --grad-green:  linear-gradient(135deg, var(--g) 0%, var(--g2) 100%);
    --grad-card:   linear-gradient(145deg, rgba(255,255,255,.04) 0%, rgba(255,255,255,.01) 100%);

    /* Shadows */
    --sh-xs:  0 1px 3px rgba(0,0,0,.06);
    --sh-sm:  0 2px 10px rgba(14,61,82,.08);
    --sh-md:  0 6px 24px rgba(14,61,82,.12);
    --sh-lg:  0 16px 48px rgba(14,61,82,.18);
    --sh-xl:  0 24px 64px rgba(14,61,82,.24);
    --sh-g:   0 8px 28px rgba(0,200,150,.35);

    /* Radius */
    --r-sm: 8px; --r-md: 12px; --r-lg: 16px; --r-xl: 24px; --r-2xl: 32px; --r-full: 9999px;

    /* Transitions */
    --t: 0.22s cubic-bezier(.4,0,.2,1);
    --t-slow: 0.4s cubic-bezier(.4,0,.2,1);

    --title-font: "Instrument Sans", serif;
}

/* ── 1. BASE ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--title-font);
    color: var(--txt-dark);
    background: var(--bg-white);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
a, a:hover { transition: var(--t) !important; }
section { padding: 88px 0; }

/* ── 2. TYPOGRAPHY ────────────────────────────────────────────── */
.langing-section-title {
    font-size: 44px;
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -.025em;
    color: var(--txt-dark);
    font-family: var(--title-font);
}
.langing-section-title .title-span-color {
    background: linear-gradient(90deg, var(--g) 0%, #00e5b0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.section-description {
    font-size: 17px !important;
    line-height: 1.7;
    color: var(--txt-light);
    padding-top: 14px;
    margin-bottom: 0;
}

/* Section badge */
.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 14px;
    background: var(--g-fade);
    color: var(--g2);
    border: 1px solid rgba(0,200,150,.25);
    border-radius: var(--r-full);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .07em;
    text-transform: uppercase;
    margin-bottom: 14px;
}
.section-badge::before {
    content: "";
    width: 6px; height: 6px;
    background: var(--g);
    border-radius: 50%;
    display: inline-block;
}

/* ── 3. HEADER ────────────────────────────────────────────────── */
.header-section.home-header {
    background: rgba(6,15,26,.75) !important;
    border-bottom: 1px solid var(--bdr);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    padding: 12px 0;
    transition: background var(--t), box-shadow var(--t);
}
.header-scrolled {
    background: rgba(6,15,26,.92) !important;
    box-shadow: 0 4px 24px rgba(0,0,0,.3) !important;
}
.header-section.home-header a {
    color: rgba(255,255,255,.85) !important;
}
.header-section .nav-link {
    font-size: 14.5px;
    font-weight: 500;
    color: rgba(255,255,255,.80) !important;
    padding: 7px 14px !important;
    border-radius: var(--r-sm);
    transition: color var(--t), background var(--t) !important;
}
.header-section .nav-link:hover {
    color: #fff !important;
    background: rgba(255,255,255,.08);
}
/* Active nav link */
.header-section .nav-link.active { color: var(--g) !important; }

/* Logo */
.nav-logo { height: 52px; width: auto; object-fit: contain; }

/* CTA button in header */
.header-section .get-app-btn,
.header-section .get-app-btn:hover {
    background: var(--grad-green) !important;
    color: #fff !important;
    border: none !important;
    font-size: 14px;
    font-weight: 700;
    border-radius: var(--r-md);
    padding: 10px 22px !important;
    box-shadow: var(--sh-g);
    transition: transform var(--t), box-shadow var(--t) !important;
}
.header-section .get-app-btn:hover {
    transform: translateY(-2px) scale(1.02) !important;
    box-shadow: 0 12px 32px rgba(0,200,150,.45) !important;
}

/* Language pill */
.lang-pill {
    background: rgba(255,255,255,.08) !important;
    color: rgba(255,255,255,.8) !important;
    border: 1px solid rgba(255,255,255,.15) !important;
    border-radius: var(--r-full) !important;
    padding: 5px 12px !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    transition: all var(--t) !important;
}
.lang-pill:hover {
    background: var(--g) !important;
    color: #fff !important;
    border-color: var(--g) !important;
}
.lang-switcher-menu {
    background: var(--bg-card) !important;
    border: 1px solid rgba(255,255,255,.12) !important;
    border-radius: var(--r-lg) !important;
    box-shadow: 0 12px 40px rgba(0,0,0,.4) !important;
    padding: 6px !important;
}
.lang-switcher-menu .dropdown-item {
    color: rgba(255,255,255,.75) !important;
    border-radius: var(--r-sm);
    padding: 9px 14px;
    font-size: 14px;
    transition: all var(--t) !important;
}
.lang-switcher-menu .dropdown-item:hover,
.lang-switcher-menu .dropdown-item.lang-active {
    background: var(--g) !important;
    color: #fff !important;
}

/* Mobile menu */
.header-section .mobile-menu {
    background: var(--bg-card) !important;
    border-right: 1px solid rgba(255,255,255,.08) !important;
}
.header-section .mobile-menu .offcanvas-header {
    border-bottom: 1px solid rgba(255,255,255,.08);
}
.header-section .accordion-button {
    font-size: 15px; font-weight: 500;
    color: rgba(255,255,255,.8) !important;
    padding: 14px 0 !important;
    background: transparent !important;
}
.header-section .accordion-item {
    border-bottom: 1px solid rgba(255,255,255,.06) !important;
    background: transparent;
}
.header-section .accordion-button:not(.collapsed) { color: var(--g) !important; }
.header-section .accordion-button::after { filter: invert(1) opacity(.6); }

/* ── 4. BUTTONS ───────────────────────────────────────────────── */
.ps-custom-btn {
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    background: var(--grad-green) !important;
    color: #fff !important;
    border: none !important;
    border-radius: var(--r-md) !important;
    padding: 14px 28px !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    letter-spacing: .01em !important;
    box-shadow: var(--sh-g) !important;
    transition: transform var(--t), box-shadow var(--t) !important;
    cursor: pointer;
}
.ps-custom-btn:hover {
    transform: translateY(-3px) scale(1.02) !important;
    box-shadow: 0 16px 40px rgba(0,200,150,.45) !important;
}
.ps-custom-btn .btn-icon { transition: transform var(--t); }
.ps-custom-btn:hover .btn-icon { transform: translateX(5px); }

/* Outline btn */
.custom-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1.5px solid rgba(255,255,255,.30) !important;
    border-radius: var(--r-md) !important;
    padding: 12px 24px !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    color: #fff !important;
    background: rgba(255,255,255,.07) !important;
    backdrop-filter: blur(8px);
    transition: all var(--t) !important;
}
.custom-btn:hover {
    background: rgba(255,255,255,.15) !important;
    border-color: rgba(255,255,255,.5) !important;
    transform: translateY(-2px) !important;
}
.custom-btn.custom-primary-btn {
    background: var(--grad-green) !important;
    border-color: transparent !important;
    box-shadow: var(--sh-g);
}
.custom-btn.custom-primary-btn:hover {
    box-shadow: 0 16px 40px rgba(0,200,150,.45) !important;
    border-color: transparent !important;
}

/* ── 5. HERO ──────────────────────────────────────────────────── */
.home-banner-section {
    background: var(--grad-hero);
    padding-top: 88px;
    padding-bottom: 0;
    position: relative;
    overflow: hidden;
}
/* Animated mesh orbs */
.home-banner-section::before {
    content: "";
    position: absolute;
    top: -20%; left: -15%;
    width: 700px; height: 700px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0,200,150,.12) 0%, transparent 65%);
    animation: orbFloat 12s ease-in-out infinite alternate;
    pointer-events: none; z-index: 0;
}
.home-banner-section::after {
    content: "";
    position: absolute;
    top: 10%; right: -10%;
    width: 600px; height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(37,128,166,.14) 0%, transparent 65%);
    animation: orbFloat 15s ease-in-out 3s infinite alternate-reverse;
    pointer-events: none; z-index: 0;
}
@keyframes orbFloat {
    0%   { transform: translate(0,0) scale(1); }
    100% { transform: translate(40px, 30px) scale(1.15); }
}

/* hero-bg rounded card wrapper */
.home-banner-section .hero-bg {
    background: transparent !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    border: none !important;
    padding: 0 !important;
    position: relative;
    z-index: 2;
}
/* Override any fixed heights */
.home-banner-section .hero-bg { height: auto !important; min-height: unset !important; }

/* Banner content inner wrapper */
.home-banner-section .banner-content {
    position: relative;
    z-index: 8;
    text-align: center;
    padding-top: 0 !important;
}

/* Headline */
.home-banner-section .banner-content h1 {
    font-size: 72px !important;
    font-weight: 900 !important;
    line-height: 1.05 !important;
    letter-spacing: -.035em !important;
    color: #ffffff !important;
    max-width: 920px !important;
    margin: 0 auto !important;
    padding-top: 0 !important;
    text-shadow: 0 4px 32px rgba(0,0,0,.2);
    font-family: var(--title-font) !important;
}
.home-banner-section .banner-content h1 span,
.home-banner-section .banner-content h1 .typed-text {
    background: linear-gradient(90deg, var(--g) 0%, #00e8b5 50%, #00d4ff 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
}

/* Sub-headline */
.home-banner-section .banner-content p {
    color: rgba(255,255,255,.65) !important;
    font-size: 18px !important;
    font-weight: 400 !important;
    line-height: 1.7 !important;
    max-width: 580px !important;
    margin: 0 auto !important;
    padding-top: 20px !important;
}

/* Button group */
.home-banner-section .banner-content .demo-btn-group {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 16px !important;
    margin-top: 36px !important;
}

/* Watch video link inside hero */
.watch-text { color: rgba(255,255,255,.80) !important; font-weight: 500 !important; font-size: 15px !important; }
.home-banner-section .banner-content a.d-flex { color: rgba(255,255,255,.80) !important; }

/* Play button */
.video-play-button, .play-button {
    width: 52px !important; height: 52px !important;
    background: rgba(0,200,150,.15) !important;
    border: 2px solid rgba(0,200,150,.45) !important;
    border-radius: 50% !important;
    backdrop-filter: blur(8px) !important;
    display: flex !important; align-items: center !important; justify-content: center !important;
    transition: all var(--t) !important;
}
.video-play-button:hover, .play-button:hover {
    background: var(--g) !important;
    border-color: var(--g) !important;
    transform: scale(1.1) !important;
}
.play-button::before {
    background-color: transparent !important;
    border: 3px solid rgba(0,200,150,.35) !important;
    top: -12px !important; left: -12px !important;
    animation: pulsate1 2.5s infinite !important;
}
.play-button::after {
    background-image: url("data:image/svg+xml,%3Csvg%20width%3D%2213%22%20height%3D%2216%22%20viewBox%3D%220%200%2013%2016%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M0.316406%201.58167C0.316406%200.790499%201.19165%200.312658%201.85716%200.740487L11.8412%207.15882C12.4536%207.55246%2012.4536%208.44754%2011.8412%208.84118L1.85716%2015.2595C1.19165%2015.6873%200.316406%2015.2095%200.316406%2014.4183V1.58167Z%22%20fill%3D%22%2300c896%22%2F%3E%3C%2Fsvg%3E") !important;
}

/* Hero stats bar */
.hero-stats-bar {
    display: inline-flex !important;
    background: rgba(255,255,255,.06) !important;
    backdrop-filter: blur(16px) !important;
    border: 1px solid rgba(255,255,255,.12) !important;
    border-radius: var(--r-xl) !important;
    padding: 16px 32px !important;
    gap: 0 !important;
    margin-top: 48px !important;
}
.hero-stat-item {
    text-align: center;
    padding: 4px 28px;
    border-right: 1px solid rgba(255,255,255,.12);
}
.hero-stat-item:last-child { border-right: none; }
.hero-stat-item h3 {
    font-size: 28px;
    font-weight: 800;
    color: #fff;
    margin: 0;
    line-height: 1;
    font-family: var(--title-font);
}
.hero-stat-item h3 span { color: var(--g); }
.hero-stat-item p {
    font-size: 12.5px;
    color: rgba(255,255,255,.55);
    margin: 5px 0 0;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .05em;
}

/* Hero image container — browser mock */
.hero-img-container {
    height: 460px !important;
    margin: 48px auto 0 !important;
    position: relative;
    z-index: 8;
}
.hero-img-container img {
    width: 1100px !important;
    height: 440px !important;
    object-fit: cover !important;
    border-radius: 16px 16px 0 0 !important;
    border: 1px solid rgba(255,255,255,.12) !important;
    border-bottom: none !important;
    box-shadow: 0 -12px 60px rgba(0,0,0,.35), 0 0 0 1px rgba(255,255,255,.06) !important;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}
/* Glow under the screenshot */
.hero-img-container::after {
    content: "";
    position: absolute;
    bottom: 0; left: 50%;
    transform: translateX(-50%);
    width: 80%; height: 80px;
    background: radial-gradient(ellipse at center, rgba(0,200,150,.2) 0%, transparent 70%);
    z-index: 9;
    pointer-events: none;
}

/* Floating decorative elements */
.home-banner-section .element1,
.home-banner-section .element2 {
    filter: drop-shadow(0 4px 16px rgba(0,200,150,.2)) !important;
    opacity: .7;
}

/* Wave divider after hero */
.hero-wave-divider {
    background: var(--grad-hero);
    line-height: 0;
    overflow: hidden;
    margin-bottom: -2px;
}
.hero-wave-divider svg { display: block; }

/* ── 6. TRUST STRIP (logos of global companies) ───────────────── */
.trust-strip-section {
    background: var(--bg-light);
    padding: 36px 0;
    border-top: 1px solid var(--bdr-light);
    border-bottom: 1px solid var(--bdr-light);
}
.trust-strip-label {
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--txt-muted);
    margin-bottom: 20px;
}
.trust-strip-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    opacity: .55;
    filter: grayscale(1);
    transition: opacity var(--t);
}
.trust-strip-logos:hover { opacity: .75; }
.trust-strip-logos img {
    height: 32px; width: auto;
    object-fit: contain;
}

/* ── 7. FEATURES SECTION ──────────────────────────────────────── */
.service-section {
    background: var(--bg-light);
    padding: 88px 0;
    position: relative;
}
.service-section::before {
    content: "";
    position: absolute;
    top: -1px; left: 0; right: 0;
    height: 80px;
    background: linear-gradient(to bottom, var(--bg-white) 0%, transparent 100%);
    pointer-events: none;
}

/* Feature card — glass + border reveal on hover */
.service-section .service-card {
    background: var(--bg-white) !important;
    border: 1px solid var(--bdr-light) !important;
    border-radius: var(--r-xl) !important;
    padding: 32px 24px !important;
    box-shadow: var(--sh-xs) !important;
    transition: transform var(--t-slow), box-shadow var(--t-slow), border-color var(--t-slow) !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 16px !important;
    height: 100% !important;
    position: relative;
    overflow: hidden;
}
/* Bottom gradient reveal line */
.service-section .service-card::after {
    content: "";
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: var(--grad-green);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--t-slow);
    border-radius: 0 0 var(--r-xl) var(--r-xl);
}
.service-section .service-card:hover {
    transform: translateY(-8px) !important;
    box-shadow: var(--sh-lg) !important;
    border-color: rgba(0,200,150,.3) !important;
}
.service-section .service-card:hover::after { transform: scaleX(1); }

/* Icon wrapper */
.service-section .image {
    width: 72px !important; height: 72px !important;
    background: linear-gradient(135deg, rgba(0,200,150,.10) 0%, rgba(14,61,82,.08) 100%) !important;
    border: 1px solid rgba(0,200,150,.18) !important;
    border-radius: var(--r-lg) !important;
    display: flex !important;
    align-items: center !important; justify-content: center !important;
    transition: background var(--t-slow), transform var(--t-slow) !important;
}
.service-section .service-card:hover .image {
    background: linear-gradient(135deg, rgba(0,200,150,.18) 0%, rgba(14,61,82,.14) 100%) !important;
    transform: scale(1.08) rotate(-3deg);
}
.service-section .image img {
    width: 38px !important; height: 38px !important;
    object-fit: contain;
}
.service-section .service-content h6 {
    font-size: 14.5px !important;
    font-weight: 700 !important;
    color: var(--txt-dark) !important;
    margin: 0 !important;
    line-height: 1.4 !important;
    text-align: center;
}
.feature-header { margin-top: 0 !important; }

/* ── 8. INTERFACE SLIDER SECTION ──────────────────────────────── */
.slick-slider-section {
    background: var(--bg-white);
    padding: 88px 0;
    overflow: hidden;
}
.slick-slider-section .slick-prev,
.slick-slider-section .slick-next {
    background: var(--p) !important;
    border-radius: 50% !important;
    width: 40px !important; height: 40px !important;
    box-shadow: var(--sh-md) !important;
    transition: background var(--t) !important;
}
.slick-slider-section .slick-prev:hover,
.slick-slider-section .slick-next:hover {
    background: var(--g) !important;
}

/* ── 9. GET APP SECTION ───────────────────────────────────────── */
.get-app-container {
    background: linear-gradient(135deg, var(--p) 0%, var(--bg-dark) 100%);
    padding: 88px 0;
    position: relative;
    overflow: hidden;
}
.get-app-container::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 80% at 10% 50%, rgba(0,200,150,.12) 0%, transparent 60%),
        radial-gradient(ellipse 50% 60% at 90% 30%, rgba(37,128,166,.12) 0%, transparent 60%);
    pointer-events: none;
}
.get-app-content { position: relative; z-index: 2; text-align: center; }
.get-app-content .langing-section-title,
.get-app-content h4 { color: #fff !important; -webkit-text-fill-color: #fff; }
.get-app-content .title-span-color {
    background: linear-gradient(90deg, var(--g), #00e8b5) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
}
.get-app-content .section-description { color: rgba(255,255,255,.60) !important; }

.get-app-container .download-on {
    height: 50px;
    width: auto;
    border-radius: var(--r-md);
    transition: transform var(--t), filter var(--t) !important;
    filter: brightness(.95);
}
.get-app-container .download-on:hover {
    transform: translateY(-3px) scale(1.04) !important;
    filter: brightness(1.05);
}
.get-app-logo {
    height: 60px; width: auto;
    margin-bottom: 20px;
    filter: brightness(10) opacity(.9);
}

/* ── 10. WATCH DEMO SECTION ───────────────────────────────────── */
.watch-demo-section {
    background: var(--bg-light) !important;
    padding: 88px 0;
}
.watch-video-container {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 64px !important;
    align-items: center !important;
}
.video-wrapper {
    border-radius: var(--r-2xl) !important;
    overflow: hidden !important;
    box-shadow: var(--sh-xl) !important;
    border: none !important;
    position: relative;
}
.video-wrapper::before {
    content: "";
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(14,61,82,.35) 0%, rgba(6,15,26,.2) 100%);
    z-index: 1;
    pointer-events: none;
    border-radius: var(--r-2xl);
}
.video-wrapper img {
    width: 100% !important;
    height: 360px !important;
    object-fit: cover !important;
    display: block !important;
    border: none !important;
    border-radius: 0 !important;
}
.play-btn {
    width: 72px !important; height: 72px !important;
    background: rgba(255,255,255,.18) !important;
    border: 2px solid rgba(255,255,255,.50) !important;
    backdrop-filter: blur(12px) !important;
    border-radius: 50% !important;
    z-index: 5 !important;
    transition: all var(--t) !important;
}
.play-btn:hover {
    background: var(--g) !important;
    border-color: var(--g) !important;
    transform: translate(-50%, -50%) scale(1.12) !important;
}

.watch-video-content .langing-section-title { color: var(--txt-dark) !important; -webkit-text-fill-color: unset; }
.watch-video-content .section-description { color: var(--txt-light) !important; }
.download-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--grad-green) !important;
    color: #fff !important;
    border-radius: var(--r-md) !important;
    padding: 14px 28px !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    border: none !important;
    box-shadow: var(--sh-g) !important;
    margin-top: 28px !important;
    transition: transform var(--t), box-shadow var(--t) !important;
}
.download-btn:hover {
    transform: translateY(-3px) scale(1.02) !important;
    box-shadow: 0 16px 40px rgba(0,200,150,.45) !important;
}

/* ── 11. PRICING PLANS ────────────────────────────────────────── */
.pricing-plan-section {
    background: var(--bg-white);
    padding: 88px 0;
    position: relative;
}
.pricing-plan-section::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 400px;
    background: linear-gradient(180deg, var(--bg-light) 0%, transparent 100%);
    pointer-events: none;
}
.plans-list .card {
    background: var(--bg-white) !important;
    border: 1.5px solid var(--bdr-light) !important;
    border-radius: var(--r-2xl) !important;
    overflow: hidden !important;
    box-shadow: var(--sh-xs) !important;
    height: 100% !important;
    transition: transform var(--t-slow), box-shadow var(--t-slow), border-color var(--t-slow) !important;
    position: relative;
}
.plans-list .card:hover {
    transform: translateY(-6px) !important;
    box-shadow: var(--sh-lg) !important;
    border-color: rgba(0,200,150,.35) !important;
    margin-top: 0 !important;
}

/* Featured card */
.featured-plan-card {
    border: 2px solid var(--g) !important;
    box-shadow: 0 0 0 4px rgba(0,200,150,.10), var(--sh-lg) !important;
    transform: translateY(-10px) !important;
    background: var(--bg-white) !important;
    overflow: visible !important;
}
.featured-plan-card:hover {
    transform: translateY(-16px) !important;
    box-shadow: 0 0 0 4px rgba(0,200,150,.15), var(--sh-xl) !important;
}
.featured-plan-badge {
    position: absolute;
    top: -16px; left: 50%;
    transform: translateX(-50%);
    background: var(--grad-green);
    color: #fff;
    font-size: 11.5px;
    font-weight: 800;
    letter-spacing: .07em;
    text-transform: uppercase;
    padding: 6px 20px;
    border-radius: var(--r-full);
    white-space: nowrap;
    box-shadow: var(--sh-g);
    z-index: 20;
}

/* Plan card header */
.plans-list .card .card-header {
    border-radius: 0 !important;
    background: var(--bg-light) !important;
    padding: 28px 28px 20px !important;
    border-bottom: 1px solid var(--bdr-light) !important;
    text-align: center !important;
}
.featured-plan-card .card-header {
    background: linear-gradient(160deg, rgba(0,200,150,.07) 0%, rgba(14,61,82,.05) 100%) !important;
    border-bottom: 1px solid rgba(0,200,150,.15) !important;
}
.plan-name-label {
    font-size: 11px !important;
    font-weight: 800 !important;
    letter-spacing: .1em !important;
    text-transform: uppercase !important;
    color: var(--txt-muted) !important;
    margin-bottom: 12px !important;
    margin-top: 0 !important;
    line-height: 1 !important;
}
.featured-plan-card .plan-name-label { color: var(--g2) !important; }
.plan-price {
    font-size: 42px !important;
    font-weight: 900 !important;
    color: var(--p) !important;
    margin: 4px 0 !important;
    line-height: 1 !important;
    font-family: var(--title-font) !important;
    letter-spacing: -.02em;
}
.featured-plan-card .plan-price { color: var(--g2) !important; }
.plans-list .card-header .price-span {
    font-size: 14px !important;
    font-weight: 500 !important;
    color: var(--txt-muted) !important;
}

/* Card body */
.plans-list .card .card-body { padding: 24px 28px 28px !important; }
.plans-list .card .features-list { gap: 10px !important; }
.plans-list .card .feature-item {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
}
.single-features { font-size: 14px !important; color: var(--txt-mid) !important; line-height: 1.5 !important; }
.plan-icon { width: 18px !important; height: 18px !important; flex-shrink: 0 !important; }
.see-more-btn, .see-less-btn {
    color: var(--p3) !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    padding: 0 !important;
}

/* Subscribe button */
.subscribe-plan {
    width: 100% !important;
    border: 2px solid var(--p) !important;
    color: var(--p) !important;
    border-radius: var(--r-md) !important;
    padding: 13px 20px !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    transition: all var(--t) !important;
    background: transparent !important;
}
.subscribe-plan:hover,
.plans-list .subscribe-plan:hover,
.plans-list .card .subscribe-plan:hover {
    background: var(--p) !important;
    color: #fff !important;
    border-color: var(--p) !important;
    box-shadow: var(--sh-md) !important;
    transform: translateY(-1px) !important;
}
.featured-plan-card .subscribe-plan {
    background: var(--grad-green) !important;
    color: #fff !important;
    border: none !important;
    box-shadow: var(--sh-g) !important;
}
.featured-plan-card .subscribe-plan:hover {
    background: var(--grad-green) !important;
    box-shadow: 0 12px 36px rgba(0,200,150,.45) !important;
    transform: translateY(-2px) !important;
}

/* ── 12. PAYMENT SECTION ──────────────────────────────────────── */
.payment-method-container {
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--p) 100%) !important;
    padding: 80px 0 !important;
    position: relative;
    overflow: hidden;
}
.payment-method-container::before {
    content: "";
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse 60% 70% at 15% 60%, rgba(0,200,150,.10) 0%, transparent 55%),
        radial-gradient(ellipse 50% 50% at 85% 30%, rgba(37,128,166,.10) 0%, transparent 55%);
    pointer-events: none;
}
.payment-title {
    color: #fff !important;
    font-size: 36px !important;
    font-weight: 800 !important;
    line-height: 1.2 !important;
}
.payment-color-span {
    background: linear-gradient(90deg, var(--g), #00e8b5) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
}
.payment-pera { color: rgba(255,255,255,.60) !important; font-size: 16px !important; }
.payment-img img {
    border-radius: var(--r-lg) !important;
    box-shadow: 0 24px 64px rgba(0,0,0,.4) !important;
}

/* ── 13. TESTIMONIALS ─────────────────────────────────────────── */
.customer-section {
    background: var(--bg-light) !important;
    padding: 88px 0 !important;
    position: relative;
    overflow: hidden;
}
.customer-section::after {
    content: "";
    position: absolute;
    bottom: -80px; right: -80px;
    width: 400px; height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0,200,150,.07) 0%, transparent 70%);
    pointer-events: none;
}
.customer-section .customer-card {
    background: var(--bg-white) !important;
    border: 1px solid var(--bdr-light) !important;
    border-radius: var(--r-xl) !important;
    padding: 36px 24px 28px !important;
    box-shadow: var(--sh-sm) !important;
    margin: 44px 10px 12px !important;
    position: relative;
    transition: transform var(--t-slow), box-shadow var(--t-slow) !important;
}
.customer-section .customer-card::before {
    content: "\201C";
    position: absolute;
    top: 18px; left: 22px;
    font-size: 64px;
    line-height: 1;
    color: var(--g);
    opacity: .18;
    font-family: Georgia, serif;
    pointer-events: none;
}
.customer-section .customer-card:hover {
    transform: translateY(-6px) !important;
    box-shadow: var(--sh-lg) !important;
}
.customer-section .customer-card img {
    width: 72px !important; height: 72px !important;
    border-radius: 50% !important;
    border: 3px solid var(--bg-white) !important;
    box-shadow: 0 4px 16px rgba(0,0,0,.12) !important;
    top: -36px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    object-fit: cover !important;
}
.customer-section .customer-slider-section p {
    color: var(--txt-mid) !important;
    font-size: 15px !important;
    line-height: 1.7 !important;
    text-align: center !important;
    margin-top: 28px !important;
}
.customer-section .customer-card h5 {
    font-size: 16px !important;
    font-weight: 700 !important;
    color: var(--txt-dark) !important;
    line-height: 1.3 !important;
}
.customer-section .customer-card small {
    color: var(--txt-muted) !important;
    font-size: 13px !important;
}
.customer-section .customer-star {
    color: var(--gold) !important;
    font-size: 15px !important;
    letter-spacing: 2px !important;
    margin-top: 8px !important;
}

/* ── 14. BLOG CARDS ───────────────────────────────────────────── */
.blog-shadow {
    border-radius: var(--r-xl) !important;
    overflow: hidden !important;
    border: 1px solid var(--bdr-light) !important;
    box-shadow: var(--sh-xs) !important;
    background: var(--bg-white) !important;
    transition: transform var(--t-slow), box-shadow var(--t-slow) !important;
}
.blog-shadow:hover {
    transform: translateY(-8px) !important;
    box-shadow: var(--sh-lg) !important;
}
.blog-title {
    font-size: 16px !important;
    font-weight: 700 !important;
    color: var(--txt-dark) !important;
    line-height: 1.45 !important;
    transition: color var(--t) !important;
}
.blog-shadow:hover .blog-title { color: var(--p3) !important; }
.blog-img-1 {
    transition: transform var(--t-slow) !important;
}
.blog-shadow:hover .blog-img-1 { transform: scale(1.06) !important; }

/* ── 15. FOOTER ───────────────────────────────────────────────── */
.footer-section {
    background: linear-gradient(160deg, #06101a 0%, #091824 100%) !important;
    position: relative;
    overflow: hidden;
}
.footer-section::before {
    content: "";
    position: absolute;
    top: -60px; left: 50%;
    transform: translateX(-50%);
    width: 800px; height: 300px;
    background: radial-gradient(ellipse at center, rgba(0,200,150,.06) 0%, transparent 70%);
    pointer-events: none;
}
.footer-section p, .footer-section li, .footer-section li a {
    color: rgba(255,255,255,.50) !important;
    font-size: 14px !important;
    line-height: 2 !important;
    transition: color var(--t) !important;
}
.footer-section li a:hover { color: var(--g) !important; opacity: 1 !important; }
.footer-section .footer-title {
    color: rgba(255,255,255,.90) !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    letter-spacing: .02em !important;
    margin-bottom: 20px !important;
}
.footer-section .footer-logo {
    height: 44px !important; width: auto !important;
    object-fit: contain !important;
    opacity: .9;
}
.footer-section hr { border-color: rgba(255,255,255,.08) !important; margin: 32px 0 18px !important; }
.footer-section .text-white { color: rgba(255,255,255,.35) !important; font-size: 13px !important; }
.footer-section .social-icon a {
    background: rgba(255,255,255,.06) !important;
    border: 1px solid rgba(255,255,255,.10) !important;
    border-radius: 50% !important;
    width: 40px !important; height: 40px !important;
    transition: all var(--t) !important;
}
.footer-section .social-icon a:hover {
    background: var(--g) !important;
    border-color: var(--g) !important;
    transform: translateY(-2px);
}
.footer-section .social-icon img {
    filter: brightness(10) !important;
    height: 15px !important; width: 15px !important;
    object-fit: contain !important;
    padding: 0 !important;
}
.footer-shape1, .footer-shape2 { opacity: .04 !important; }

/* ── 16. FAQ ──────────────────────────────────────────────────── */
.faqs-section .accordion-item {
    border-radius: var(--r-md) !important;
    border: 1px solid var(--bdr-light) !important;
    box-shadow: var(--sh-xs) !important;
    margin-bottom: 10px !important;
    overflow: hidden !important;
    transition: box-shadow var(--t-slow) !important;
    background: var(--bg-white) !important;
}
.faqs-section .accordion-item:hover { box-shadow: var(--sh-sm) !important; }
.faqs-section .accordion-button {
    font-size: 16px !important;
    font-weight: 600 !important;
    color: var(--txt-dark) !important;
    padding: 20px 18px !important;
    background: transparent !important;
}
.faqs-section .accordion-button:not(.collapsed) { color: var(--p3) !important; }

/* ── 17. CONTACT ──────────────────────────────────────────────── */
.contact-section form input,
.contact-section form textarea {
    border-radius: var(--r-md) !important;
    border: 1.5px solid var(--bdr-light) !important;
    padding: 13px 16px !important;
    font-size: 14.5px !important;
    transition: border-color var(--t), box-shadow var(--t) !important;
    background: var(--bg-white) !important;
}
.contact-section form input:focus,
.contact-section form textarea:focus {
    border-color: var(--g) !important;
    box-shadow: 0 0 0 4px rgba(0,200,150,.10) !important;
    outline: none !important;
}

/* ── 18. MODALS ───────────────────────────────────────────────── */
.modal-custom-design .modal-content {
    border-radius: var(--r-xl) !important;
    border: 1px solid var(--bdr-light) !important;
    box-shadow: var(--sh-xl) !important;
    overflow: hidden;
}
.modal-custom-design .modal-header {
    border-bottom: 1px solid var(--bdr-light) !important;
    padding: 16px 20px !important;
}

/* ── 19. PAGE BANNER (inner pages) ───────────────────────────── */
.banner-bg {
    background: linear-gradient(135deg, var(--bg-light) 0%, rgba(0,200,150,.06) 100%) !important;
    border-radius: var(--r-xl) !important;
    height: 130px !important;
    border: 1px solid var(--bdr-light) !important;
}
.banner-bg p {
    font-size: 22px !important;
    font-weight: 700 !important;
    color: var(--txt-dark) !important;
}

/* ── 20. SCROLLBAR ────────────────────────────────────────────── */
::-webkit-scrollbar { width: 5px; height: 5px; }
::-webkit-scrollbar-track { background: var(--bg-dark); }
::-webkit-scrollbar-thumb { background: var(--p); border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: var(--g); }

/* ── 21. SECTION DIVIDER WAVE ─────────────────────────────────── */
.wave-divider-down {
    position: relative;
    z-index: 1;
}
.wave-divider-down::after {
    content: "";
    position: absolute;
    bottom: -2px; left: 0; right: 0;
    height: 64px;
    background: inherit;
    clip-path: ellipse(56% 100% at 50% 0%);
    z-index: 2;
}

/* ── 21a. INNER-PAGE HEADER (non-home pages) ──────────────────── */
.header-section:not(.home-header) {
    background: var(--bg-dark) !important;
    border-bottom: 1px solid rgba(255,255,255,.07) !important;
}
.header-section:not(.home-header) a {
    color: rgba(255,255,255,.80) !important;
}
.header-section:not(.home-header) .nav-link:hover {
    color: var(--g) !important;
    background: rgba(255,255,255,.07) !important;
}

/* ── 21b. HERO PILL BADGE ─────────────────────────────────────── */
.hero-pill-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0,200,150,.14);
    color: #7fffcf;
    border: 1px solid rgba(0,200,150,.30);
    border-radius: var(--r-full);
    padding: 7px 18px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .04em;
    backdrop-filter: blur(8px);
    margin-bottom: 28px;
    animation: pilseGlow 3s ease-in-out infinite;
}
.hero-pill-dot {
    width: 8px; height: 8px;
    background: var(--g);
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 0 6px var(--g), 0 0 12px rgba(0,200,150,.5);
    animation: dotPulse 2s ease-in-out infinite;
}
@keyframes pilseGlow {
    0%, 100% { box-shadow: 0 0 0 0 rgba(0,200,150,0); }
    50%       { box-shadow: 0 0 20px rgba(0,200,150,.15); }
}
@keyframes dotPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50%       { transform: scale(1.4); opacity: .7; }
}

/* ── 22. RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 1536px) {
    .home-banner-section .banner-content h1 { font-size: 60px !important; }
    .hero-img-container { height: 420px !important; }
    .hero-img-container img { width: 900px !important; height: 400px !important; }
    .langing-section-title { font-size: 38px !important; }
}
@media (max-width: 1380px) {
    .home-banner-section .banner-content h1 { font-size: 52px !important; padding-top: 0 !important; }
    .hero-img-container { height: 380px !important; }
    .hero-img-container img { width: 750px !important; height: 360px !important; }
}
@media (max-width: 1200px) {
    .home-banner-section .banner-content h1 { font-size: 46px !important; }
    .langing-section-title { font-size: 34px !important; }
    .watch-video-container { grid-template-columns: 1fr !important; gap: 40px !important; }
    .watch-video-content { text-align: center !important; }
    .featured-plan-card { transform: translateY(0) !important; }
    .featured-plan-card:hover { transform: translateY(-8px) !important; }
}
@media (max-width: 1024px) {
    .hero-img-container { height: 300px !important; }
    .hero-img-container img { width: 600px !important; height: 280px !important; }
}
@media (max-width: 991px) {
    section { padding: 64px 0; }
    .home-banner-section .banner-content h1 { font-size: 40px !important; }
    .hero-img-container { height: 240px !important; }
    .hero-img-container img { width: 100% !important; max-width: 520px !important; height: 220px !important; }
    .langing-section-title { font-size: 30px !important; }
    .home-banner-section::before, .home-banner-section::after { display: none; }
}
@media (max-width: 768px) {
    .home-banner-section .banner-content h1 { font-size: 34px !important; }
    .home-banner-section .banner-content p { font-size: 16px !important; }
    .home-banner-section .banner-content .demo-btn-group { flex-direction: column !important; gap: 14px !important; }
    .ps-custom-btn { width: 100%; justify-content: center !important; }
    .hero-stats-bar { flex-direction: row; flex-wrap: wrap; justify-content: center !important; padding: 16px 20px !important; }
    .hero-stat-item { border-right: none !important; border-bottom: 1px solid rgba(255,255,255,.10); width: 50%; padding: 10px 12px !important; }
    .hero-stat-item:nth-child(2n) { border-right: none !important; }
    .hero-stat-item:last-child { border-bottom: none; }
    .hero-img-container { height: 180px !important; }
    .hero-img-container img { max-width: 380px !important; height: 180px !important; }
    .video-wrapper img { height: 240px !important; }
}
@media (max-width: 576px) {
    section { padding: 52px 0; }
    .home-banner-section .banner-content h1 { font-size: 28px !important; line-height: 1.15 !important; }
    .langing-section-title { font-size: 26px !important; line-height: 1.2 !important; }
    .hero-img-container { height: 150px !important; }
    .hero-img-container img { max-width: 300px !important; height: 150px !important; }
    .hero-stats-bar { margin-top: 28px !important; }
    .hero-stat-item h3 { font-size: 22px !important; }
    .plans-list .card .card-body { padding: 20px 18px !important; }
    .plans-list .card .card-header { padding: 22px 18px 16px !important; }
}
@media (max-width: 400px) {
    .home-banner-section .banner-content h1 { font-size: 24px !important; }
    .hero-stats-bar { margin-top: 20px !important; }
    .hero-stat-item { width: 100% !important; border-bottom: 1px solid rgba(255,255,255,.10) !important; border-right: none !important; }
}

/* ── 23. RTL ──────────────────────────────────────────────────── */
[dir="rtl"] .hero-stat-item { border-right: none; border-left: 1px solid rgba(255,255,255,.12); }
[dir="rtl"] .hero-stat-item:last-child { border-left: none; }
[dir="rtl"] .ps-custom-btn .btn-icon { transform: scaleX(-1); }
[dir="rtl"] .ps-custom-btn:hover .btn-icon { transform: scaleX(-1) translateX(-5px); }
[dir="rtl"] .featured-plan-badge { direction: rtl; }
[dir="rtl"] .section-badge { direction: rtl; }

/* ════════════════════════════════════════════════════════════
   STOREFRONT SHOWCASE SECTION
═══════════════════════════════════════════════════════════ */
.sf-section {
    padding: 100px 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.sf-bg-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}
.sf-orb-1 {
    width: 600px; height: 600px;
    top: -220px; right: -180px;
    background: radial-gradient(circle, rgba(0,200,150,.07) 0%, transparent 65%);
}
.sf-orb-2 {
    width: 400px; height: 400px;
    bottom: -150px; left: -100px;
    background: radial-gradient(circle, rgba(14,61,82,.06) 0%, transparent 65%);
}

.sf-header { margin-bottom: 60px; }
.sf-header .section-badge { display: inline-flex; margin-bottom: 16px; }
.sf-desc-max { max-width: 600px; }

/* ── Main grid ── */
.sf-main-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}

/* ── Feature column ── */
.sf-features-col {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.sf-feature-item {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 18px;
    border-radius: var(--r-lg);
    border: 1px solid var(--bdr-light);
    background: var(--bg-light);
    transition: var(--t);
    cursor: default;
    overflow: hidden;
}

.sf-feature-item::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--g), var(--g2));
    border-radius: 0 2px 2px 0;
    opacity: 0;
    transition: var(--t);
}

.sf-feature-item:hover { transform: translateX(6px); border-color: rgba(0,200,150,.4); box-shadow: 0 4px 20px rgba(0,200,150,.10); }
.sf-feature-item:hover::before { opacity: 1; }

.sf-feat-highlight {
    border-color: rgba(0,200,150,.35) !important;
    background: rgba(0,200,150,.04) !important;
}
.sf-feat-highlight::before { opacity: 1 !important; }

.sf-feat-icon {
    width: 42px; height: 42px;
    border-radius: var(--r-md);
    background: var(--g-fade);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--g2);
}
.sf-feat-icon svg { width: 19px; height: 19px; }

.sf-feat-body h5 { font-size: 14px; font-weight: 700; color: var(--txt-dark); margin: 0 0 4px; }
.sf-feat-body p  { font-size: 13px; color: var(--txt-light); margin: 0; line-height: 1.65; }

.sf-feat-badge {
    position: absolute;
    top: 10px; right: 12px;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--g2);
    background: var(--g-fade);
    border: 1px solid rgba(0,200,150,.25);
    padding: 2px 8px;
    border-radius: var(--r-full);
}

/* CTA row */
.sf-cta-row {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-top: 10px;
    flex-wrap: wrap;
}

.sf-social-proof {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: var(--txt-light);
    font-weight: 500;
}

.sf-avatars { display: flex; }
.sf-av {
    width: 28px; height: 28px;
    border-radius: 50%;
    border: 2px solid #fff;
    display: flex; align-items: center; justify-content: center;
    font-size: 11px; font-weight: 700; color: #fff;
    margin-left: -8px; flex-shrink: 0;
}
.sf-av:first-child { margin-left: 0; }

/* ── Mockup column ── */
.sf-mockup-col { position: relative; }

/* Floating cards */
.sf-float-card {
    position: absolute;
    background: #fff;
    border-radius: var(--r-lg);
    padding: 10px 14px;
    box-shadow: 0 8px 32px rgba(6,15,26,.12), 0 0 0 1px rgba(0,0,0,.05);
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 10;
}
.sf-fc-brand { top: -18px; right: -16px; animation: sfFloat 4s ease-in-out infinite; }
.sf-fc-zone  { bottom: 56px; left: -22px; animation: sfFloat 5.5s ease-in-out infinite reverse; }

@keyframes sfFloat {
    0%,100% { transform: translateY(0); }
    50%      { transform: translateY(-9px); }
}

.sf-fc-logo {
    width: 34px; height: 34px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--g), var(--g2));
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.sf-fc-icon-wrap {
    width: 34px; height: 34px;
    border-radius: 8px;
    background: var(--g-fade);
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
    color: var(--g2);
}
.sf-fc-name  { font-size: 12.5px; font-weight: 700; color: var(--txt-dark); white-space: nowrap; }
.sf-fc-stat  { font-size: 15px; font-weight: 800; color: var(--txt-dark); line-height: 1; }
.sf-fc-sub   { font-size: 10.5px; color: var(--txt-muted); margin-top: 2px; }

.sf-fc-live-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--g);
    box-shadow: 0 0 0 3px rgba(0,200,150,.2);
    flex-shrink: 0;
    animation: sfPulse 2s ease-in-out infinite;
}
@keyframes sfPulse {
    0%,100% { box-shadow: 0 0 0 3px rgba(0,200,150,.2); }
    50%      { box-shadow: 0 0 0 6px rgba(0,200,150,.08); }
}

/* ── Browser frame ── */
.sf-browser {
    background: #0d1e2d;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 32px 80px rgba(6,15,26,.22), 0 0 0 1px rgba(255,255,255,.06);
}

.sf-browser-bar {
    background: #152435;
    padding: 10px 14px;
    display: flex; align-items: center; gap: 10px;
    border-bottom: 1px solid rgba(255,255,255,.06);
}
.sf-dots { display: flex; gap: 5px; }
.sf-dot  { width: 9px; height: 9px; border-radius: 50%; display: block; }

.sf-url-bar {
    flex: 1;
    background: rgba(255,255,255,.07);
    border-radius: 5px;
    padding: 4px 10px;
    font-size: 10px;
    color: rgba(255,255,255,.4);
    text-align: center;
    font-family: 'Courier New', monospace;
    display: flex; align-items: center; justify-content: center; gap: 4px;
}

.sf-store-body {
    padding: 12px;
    display: flex; flex-direction: column; gap: 9px;
}

/* Store nav */
.sf-store-nav {
    display: flex; align-items: center; justify-content: space-between;
    padding: 9px 12px;
    background: var(--p);
    border-radius: 9px;
}
.sf-nav-brand { display: flex; align-items: center; gap: 8px; }
.sf-nav-logo {
    width: 26px; height: 26px;
    border-radius: 6px;
    background: linear-gradient(135deg, var(--g), var(--g2));
    display: flex; align-items: center; justify-content: center;
}
.sf-nav-brand span { font-size: 11.5px; font-weight: 700; color: #fff; white-space: nowrap; }
.sf-nav-links { display: flex; gap: 12px; font-size: 9.5px; color: rgba(255,255,255,.5); }
.sf-nav-active { color: var(--g) !important; font-weight: 700 !important; }

/* Store banner */
.sf-store-banner {
    display: flex; align-items: center; justify-content: space-between;
    padding: 11px 14px;
    background: linear-gradient(135deg, rgba(14,61,82,.9) 0%, rgba(37,128,166,.55) 100%);
    border-radius: 9px;
    border: 1px solid rgba(0,200,150,.14);
}
.sf-banner-tag   { font-size: 8.5px; font-weight: 700; color: var(--g); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 4px; }
.sf-banner-title { font-size: 12.5px; font-weight: 700; color: #fff; margin-bottom: 7px; }
.sf-banner-cta   {
    display: inline-block; font-size: 9.5px; font-weight: 700; color: var(--g);
    background: rgba(0,200,150,.14); border: 1px solid rgba(0,200,150,.3);
    padding: 3px 9px; border-radius: 5px;
}
.sf-banner-deco { opacity: .45; }

/* Map section */
.sf-map-header {
    display: flex; align-items: center; gap: 5px;
    font-size: 9.5px; font-weight: 700; color: rgba(255,255,255,.55);
    text-transform: uppercase; letter-spacing: .05em;
    padding: 0 2px;
}

.sf-map-viz {
    position: relative;
    height: 160px;
    background: linear-gradient(145deg, #0f2437 0%, #12304a 100%);
    border-radius: 9px;
    overflow: hidden;
}

.sf-map-grid-bg {
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,.032) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.032) 1px, transparent 1px);
    background-size: 22px 22px;
}

.sf-road-h, .sf-road-h2 { position: absolute; height: 2px; left: 0; right: 0; background: rgba(255,255,255,.07); }
.sf-road-h  { top: 52%; }
.sf-road-h2 { top: 28%; }

.sf-road-v, .sf-road-v2 { position: absolute; width: 2px; top: 0; bottom: 0; background: rgba(255,255,255,.07); }
.sf-road-v  { left: 44%; }
.sf-road-v2 { left: 68%; }

/* Delivery zones */
.sf-zone {
    position: absolute;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    left: 44%; top: 52%;
}
.sf-zone-3 { width: 210px; height: 210px; border: 1.5px dashed rgba(0,200,150,.18); background: rgba(0,200,150,.025); }
.sf-zone-2 { width: 125px; height: 125px; border: 1.5px solid rgba(0,200,150,.32);  background: rgba(0,200,150,.055); }
.sf-zone-1 { width: 52px;  height: 52px;  border: 2px solid rgba(0,200,150,.65);   background: rgba(0,200,150,.16); }

/* Map pin */
.sf-map-pin {
    position: absolute;
    left: 44%; top: 52%;
    transform: translate(-50%, -100%);
    filter: drop-shadow(0 2px 6px rgba(0,200,150,.6));
    z-index: 2;
}

/* Pulse ring under pin */
.sf-map-pulse {
    position: absolute;
    left: 44%; top: 52%;
    transform: translate(-50%, -50%);
    width: 20px; height: 20px;
    border-radius: 50%;
    background: rgba(0,200,150,.25);
    animation: sfMapPulse 2s ease-out infinite;
}
@keyframes sfMapPulse {
    0%   { transform: translate(-50%,-50%) scale(1);   opacity: .6; }
    100% { transform: translate(-50%,-50%) scale(3.5); opacity: 0; }
}

/* Zone labels */
.sf-zlabel {
    position: absolute;
    font-size: 8px; font-weight: 700;
    letter-spacing: .04em; padding: 2px 7px;
    border-radius: 4px; white-space: nowrap; z-index: 3;
}
.sf-zlabel-1 { background: rgba(0,200,150,.28); color: #00c896; left: 50%; top: 30%; transform: translateX(-50%); }
.sf-zlabel-2 { background: rgba(0,200,150,.12); color: rgba(0,200,150,.8); right: 7%;  top: 16%; }
.sf-zlabel-3 { background: rgba(255,255,255,.05); color: rgba(255,255,255,.32); left: 3%; bottom: 10%; }

/* Street labels */
.sf-street {
    position: absolute;
    font-size: 7.5px; color: rgba(255,255,255,.22);
    font-weight: 600; letter-spacing: .04em; white-space: nowrap;
}
.sf-street-h { top: 44%; left: 55%; }
.sf-street-v { left: 45%; top: 10%; transform: rotate(90deg); transform-origin: left center; }

/* ── RTL ── */
[dir="rtl"] .sf-feature-item:hover  { transform: translateX(-6px); }
[dir="rtl"] .sf-feature-item::before { left: auto; right: 0; border-radius: 2px 0 0 2px; }
[dir="rtl"] .sf-main-grid            { direction: rtl; }
[dir="rtl"] .sf-fc-brand             { right: auto; left: -16px; }
[dir="rtl"] .sf-fc-zone              { left: auto;  right: -22px; }
[dir="rtl"] .sf-av                   { margin-left: 0; margin-right: -8px; }
[dir="rtl"] .sf-av:first-child       { margin-right: 0; }
[dir="rtl"] .sf-feat-badge           { right: auto; left: 12px; }

/* ── Responsive ── */
@media (max-width: 1199px) {
    .sf-main-grid { gap: 36px; }
}
@media (max-width: 991px) {
    .sf-main-grid { grid-template-columns: 1fr; gap: 40px; }
    .sf-mockup-col { order: -1; }
    .sf-fc-brand  { top: -12px; right: -8px; }
    .sf-fc-zone   { bottom: 40px; left: -10px; }
}
@media (max-width: 576px) {
    .sf-section   { padding: 60px 0; }
    .sf-fc-brand, .sf-fc-zone { display: none; }
    .sf-cta-row   { flex-direction: column; align-items: flex-start; gap: 14px; }
    .sf-map-viz   { height: 130px; }
    .sf-zone-3    { width: 160px; height: 160px; }
    .sf-zone-2    { width: 95px; height: 95px; }
}

/* ════════════════════════════════════════════════════════════
   EGYPTIAN PAYMENT METHODS GRID
═══════════════════════════════════════════════════════════ */
.pay-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 52px;
    max-width: 860px;
    margin-left: auto;
    margin-right: auto;
}

.pay-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    padding: 28px 20px 22px;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.07);
    border-radius: 18px;
    text-align: center;
    transition: var(--t);
    overflow: hidden;
}

.pay-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 18px;
    opacity: 0;
    background: rgba(255,255,255,.03);
    transition: var(--t);
}

.pay-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255,255,255,.14);
    box-shadow: 0 16px 48px rgba(0,0,0,.35);
}
.pay-card:hover::before { opacity: 1; }

/* Logo circle */
.pay-logo-wrap {
    width: 72px; height: 72px;
    border-radius: 20px;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 8px 24px rgba(0,0,0,.25);
    flex-shrink: 0;
    transition: var(--t);
}
.pay-card:hover .pay-logo-wrap {
    transform: scale(1.06);
    box-shadow: 0 12px 32px rgba(0,0,0,.35);
}

/* Text info */
.pay-info {
    display: flex; flex-direction: column; gap: 4px;
}
.pay-name {
    display: block;
    font-size: 15px; font-weight: 700;
    color: rgba(255,255,255,.92);
    letter-spacing: -.01em;
}
.pay-sub {
    display: block;
    font-size: 11.5px;
    color: rgba(255,255,255,.38);
    line-height: 1.5;
}

/* Active badge */
.pay-badge {
    font-size: 10px; font-weight: 700;
    letter-spacing: .06em; text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 9999px;
    border: 1px solid;
}

/* RTL */
[dir="rtl"] .pay-grid { direction: rtl; }

/* Responsive */
@media (max-width: 767px) {
    .pay-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
}
@media (max-width: 480px) {
    .pay-grid { grid-template-columns: 1fr; max-width: 320px; }
    .pay-card  { flex-direction: row; text-align: start; padding: 18px 20px; gap: 16px; }
    .pay-logo-wrap { width: 52px; height: 52px; border-radius: 14px; flex-shrink: 0; }
    .pay-badge { align-self: center; }
    [dir="rtl"] .pay-card { flex-direction: row-reverse; text-align: end; }
}
[dir="rtl"] .service-section .service-card::after { transform-origin: right; }

/* ════════════════════════════════════════════════════════════
   GAHAR ACCREDITATION SECTION
═══════════════════════════════════════════════════════════ */
.gh-section {
    padding: 100px 0;
    background: #060f1a;
    position: relative;
    overflow: hidden;
}

/* Background decorations */
.gh-bg-grid {
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(245,158,11,.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(245,158,11,.035) 1px, transparent 1px);
    background-size: 44px 44px;
    pointer-events: none;
}
.gh-bg-glow { position: absolute; border-radius: 50%; pointer-events: none; }
.gh-glow-1 {
    width: 700px; height: 700px;
    top: -250px; right: -150px;
    background: radial-gradient(circle, rgba(245,158,11,.09) 0%, transparent 60%);
}
.gh-glow-2 {
    width: 500px; height: 500px;
    bottom: -180px; left: -100px;
    background: radial-gradient(circle, rgba(0,200,150,.07) 0%, transparent 60%);
}

/* ── GAHAR Seal ── */
.gh-seal-wrap { display: flex; justify-content: center; margin-bottom: 36px; }

.gh-seal {
    position: relative;
    width: 112px; height: 112px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
}

.gh-seal-ring {
    position: absolute; inset: 0;
    border-radius: 50%;
    border: 1.5px dashed rgba(245,158,11,.38);
    animation: ghSpin 22s linear infinite;
}
.gh-seal-ring::before {
    content: '';
    position: absolute; inset: 9px;
    border-radius: 50%;
    border: 1px solid rgba(245,158,11,.18);
}
@keyframes ghSpin { to { transform: rotate(360deg); } }

.gh-seal-inner {
    width: 88px; height: 88px;
    border-radius: 50%;
    background: linear-gradient(145deg, rgba(245,158,11,.14) 0%, rgba(245,158,11,.05) 100%);
    border: 1.5px solid rgba(245,158,11,.32);
    display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2px;
    color: #f59e0b;
    box-shadow: 0 0 44px rgba(245,158,11,.16), inset 0 0 24px rgba(245,158,11,.05);
}
.gh-seal-text { font-size: 11px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; color: #f59e0b; }
.gh-seal-sub  { font-size: 7px; color: rgba(245,158,11,.6); letter-spacing: .07em; text-transform: uppercase; font-weight: 600; }

/* ── Section header ── */
.gh-header { margin-bottom: 52px; }

.gh-badge {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 5px 14px;
    background: rgba(245,158,11,.1);
    border: 1px solid rgba(245,158,11,.25);
    border-radius: 9999px;
    font-size: 12px; font-weight: 700;
    letter-spacing: .07em; text-transform: uppercase;
    color: #f59e0b;
}
.gh-badge::before {
    content: ''; width: 6px; height: 6px;
    border-radius: 50%; background: #f59e0b; flex-shrink: 0;
}

.gh-title         { color: #ffffff !important; }
.gh-title-gold    { background: linear-gradient(90deg, #f59e0b 0%, #fbbf24 55%, #f59e0b 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.gh-description   { font-size: 17px; line-height: 1.72; color: rgba(255,255,255,.52); padding-top: 14px; max-width: 650px; }

/* ── Stats bar ── */
.gh-stats-bar {
    display: flex;
    border: 1px solid rgba(245,158,11,.18);
    border-radius: 16px; overflow: hidden;
    background: rgba(255,255,255,.025);
    margin-bottom: 56px;
}
.gh-stat-item {
    flex: 1; padding: 28px 20px;
    text-align: center;
    border-right: 1px solid rgba(245,158,11,.12);
    display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px;
}
.gh-stat-item:last-child { border-right: none; }
.gh-stat-num       { font-size: 40px; font-weight: 800; color: #f59e0b; line-height: 1; font-family: "Instrument Sans", sans-serif; }
.gh-stat-icon-wrap { color: #f59e0b; }
.gh-stat-label     { font-size: 13px; color: rgba(255,255,255,.48); font-weight: 500; }

/* ── Standards grid ── */
.gh-standards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 52px;
}

.gh-card {
    position: relative;
    background: rgba(255,255,255,.033);
    border: 1px solid rgba(245,158,11,.1);
    border-left: 3px solid rgba(245,158,11,.4);
    border-radius: var(--r-lg);
    padding: 24px;
    transition: var(--t);
}
.gh-card:hover {
    background: rgba(245,158,11,.055);
    border-color: rgba(245,158,11,.38);
    border-left-color: #f59e0b;
    box-shadow: 0 8px 32px rgba(245,158,11,.12);
    transform: translateY(-3px);
}
.gh-card-featured {
    border-color: rgba(245,158,11,.22) !important;
    border-left-color: #f59e0b !important;
    background: rgba(245,158,11,.06) !important;
}

.gh-card-icon {
    width: 44px; height: 44px;
    border-radius: 10px;
    background: rgba(245,158,11,.1);
    border: 1px solid rgba(245,158,11,.18);
    display: flex; align-items: center; justify-content: center;
    color: #f59e0b; margin-bottom: 14px;
}
.gh-card-icon svg { width: 20px; height: 20px; }

.gh-card-check {
    position: absolute; top: 14px; right: 14px;
    width: 20px; height: 20px; border-radius: 50%;
    background: rgba(0,200,150,.14);
    border: 1px solid rgba(0,200,150,.32);
    display: flex; align-items: center; justify-content: center;
    color: #00c896;
}

.gh-card h5 { font-size: 14px; font-weight: 700; color: rgba(255,255,255,.9); margin: 0 0 8px; }
.gh-card p  { font-size: 13px; color: rgba(255,255,255,.43); margin: 0; line-height: 1.65; }

/* ── Accreditation path ── */
.gh-path-label {
    text-align: center;
    font-size: 11px; font-weight: 700;
    text-transform: uppercase; letter-spacing: .09em;
    color: rgba(245,158,11,.55);
    margin-bottom: 20px;
}

.gh-path {
    display: flex; align-items: stretch;
    border: 1px solid rgba(245,158,11,.16);
    border-radius: 16px; overflow: hidden;
    background: rgba(255,255,255,.022);
}
.gh-step { flex: 1; padding: 28px 22px; text-align: center; }
.gh-step-arrow {
    display: flex; align-items: center; justify-content: center;
    padding: 0 4px; flex-shrink: 0;
    color: rgba(245,158,11,.38);
}
.gh-step-num {
    width: 40px; height: 40px; border-radius: 50%;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: #fff; font-weight: 800; font-size: 17px;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 14px;
    box-shadow: 0 4px 18px rgba(245,158,11,.38);
}
.gh-step h6 { font-size: 14px; font-weight: 700; color: rgba(255,255,255,.88); margin: 0 0 6px; }
.gh-step p  { font-size: 12.5px; color: rgba(255,255,255,.4); margin: 0; line-height: 1.55; }

/* ── CTA button ── */
.gh-cta-btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 14px 34px;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: #fff !important; font-weight: 700; font-size: 15px;
    border-radius: var(--r-full); text-decoration: none;
    transition: var(--t);
    box-shadow: 0 8px 28px rgba(245,158,11,.36);
}
.gh-cta-btn:hover { transform: translateY(-2px); box-shadow: 0 14px 40px rgba(245,158,11,.52); color: #fff !important; }
.gh-cta-btn:hover .btn-icon { transform: translateX(4px); }

/* ── RTL ── */
[dir="rtl"] .gh-card            { border-left: 1px solid rgba(245,158,11,.1); border-right: 3px solid rgba(245,158,11,.4); }
[dir="rtl"] .gh-card:hover      { border-right-color: #f59e0b; }
[dir="rtl"] .gh-card-featured   { border-right-color: #f59e0b !important; }
[dir="rtl"] .gh-card-check      { right: auto; left: 14px; }
[dir="rtl"] .gh-step-arrow svg  { transform: scaleX(-1); }
[dir="rtl"] .gh-cta-btn:hover .btn-icon { transform: scaleX(-1) translateX(-4px); }
[dir="rtl"] .gh-stat-item       { border-right: none; border-left: 1px solid rgba(245,158,11,.12); }
[dir="rtl"] .gh-stat-item:last-child { border-left: none; }

/* ── Responsive ── */
@media (max-width: 991px) {
    .gh-standards-grid { grid-template-columns: repeat(2, 1fr); }
    .gh-path            { flex-direction: column; }
    .gh-step-arrow      { padding: 4px 0; transform: rotate(90deg); }
    [dir="rtl"] .gh-step-arrow { transform: rotate(90deg); }
}
@media (max-width: 576px) {
    .gh-section          { padding: 60px 0; }
    .gh-standards-grid   { grid-template-columns: 1fr; }
    .gh-stats-bar        { flex-direction: column; }
    .gh-stat-item        { border-right: none; border-bottom: 1px solid rgba(245,158,11,.12); }
    .gh-stat-item:last-child { border-bottom: none; }
    .gh-stat-num         { font-size: 30px; }
}

/* ════════════════════════════════════════════════════════════
   BLOG DETAIL PAGE — PREMIUM TYPOGRAPHY
═══════════════════════════════════════════════════════════ */

/* ── Meta bar (date · reading time) ── */
.blog-detail-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 18px;
}
.bm-tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 13px;
    color: var(--txt-light);
    font-weight: 500;
}
.bm-sep { color: var(--txt-muted); font-size: 14px; }

/* ── Article title ── */
.blog-detail-title {
    font-size: 30px;
    font-weight: 800;
    color: var(--txt-dark);
    line-height: 1.28;
    letter-spacing: -.025em;
    margin: 0 0 32px;
    font-family: "Instrument Sans", sans-serif;
    padding-bottom: 22px;
    border-bottom: 2px solid var(--bdr-light);
}

/* ── Body content wrapper ── */
.blog-body-content {
    font-size: 17.5px;
    line-height: 1.88;
    color: #344054;
    font-family: "Instrument Sans", sans-serif;
}

/* Lead paragraph */
.blog-body-content .blog-lead {
    font-size: 19px;
    line-height: 1.75;
    color: #1d2939;
    font-weight: 450;
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--bdr-light);
}

/* ── Headings inside article ── */
.blog-body-content h2 {
    font-size: 23px;
    font-weight: 800;
    color: var(--p);
    margin: 44px 0 16px;
    padding-bottom: 10px;
    line-height: 1.3;
    font-family: "Instrument Sans", sans-serif;
    position: relative;
}
.blog-body-content h2::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 100%; height: 1px;
    background: linear-gradient(90deg, rgba(0,200,150,.35), transparent 70%);
}
.blog-body-content h2::before {
    content: '';
    position: absolute;
    bottom: -1px; left: 0;
    width: 52px; height: 3px;
    background: var(--g);
    border-radius: 2px;
}

.blog-body-content h3 {
    font-size: 19px;
    font-weight: 700;
    color: var(--txt-dark);
    margin: 32px 0 12px;
    line-height: 1.4;
    font-family: "Instrument Sans", sans-serif;
}

.blog-body-content h4 {
    font-size: 17px;
    font-weight: 700;
    color: var(--p2);
    margin: 24px 0 10px;
}

/* ── Paragraphs ── */
.blog-body-content p {
    margin-bottom: 20px;
    color: #344054;
}
.blog-body-content p:last-of-type { margin-bottom: 0; }

/* ── Lists ── */
.blog-body-content ul,
.blog-body-content ol {
    padding-left: 26px;
    margin: 0 0 24px;
}
.blog-body-content li {
    margin-bottom: 10px;
    line-height: 1.75;
    color: #344054;
    padding-left: 4px;
}
.blog-body-content ul li::marker {
    color: var(--g2);
}
.blog-body-content ol li::marker {
    color: var(--p3);
    font-weight: 700;
}

/* ── Bold / emphasis ── */
.blog-body-content strong {
    font-weight: 700;
    color: var(--txt-dark);
}
.blog-body-content em { font-style: italic; color: var(--txt-mid); }

/* ── Info / highlight box ── */
.blog-body-content .blog-info-box {
    background: linear-gradient(135deg, rgba(0,200,150,.07) 0%, rgba(0,168,126,.04) 100%);
    border-left: 4px solid var(--g);
    border-radius: 0 12px 12px 0;
    padding: 18px 22px;
    margin: 28px 0;
}
.blog-body-content .blog-info-box p {
    margin: 0;
    font-size: 16px;
    color: #1d2939;
    line-height: 1.7;
}

/* ── Warning / note box ── */
.blog-body-content .blog-note-box {
    background: rgba(245,158,11,.07);
    border-left: 4px solid #f59e0b;
    border-radius: 0 12px 12px 0;
    padding: 16px 20px;
    margin: 24px 0;
}

/* ── Numbers stat box ── */
.blog-body-content .blog-stat-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin: 28px 0;
}
.blog-body-content .blog-stat-box {
    background: var(--bg-light);
    border: 1px solid var(--bdr-light);
    border-radius: var(--r-lg);
    padding: 20px 16px;
    text-align: center;
}
.blog-body-content .blog-stat-box strong {
    display: block;
    font-size: 26px;
    font-weight: 800;
    color: var(--p);
    line-height: 1;
    margin-bottom: 6px;
}
.blog-body-content .blog-stat-box span {
    font-size: 12px;
    color: var(--txt-light);
    font-weight: 500;
}

/* ── Section divider ── */
.blog-body-content hr.blog-divider {
    border: none;
    height: 1px;
    background: linear-gradient(90deg, var(--g-fade), transparent);
    margin: 36px 0;
}

/* ── Keywords footer ── */
.blog-body-content .blog-keywords {
    font-size: 12.5px;
    color: var(--txt-muted);
    margin-top: 40px;
    padding: 16px 18px;
    border-top: 1px solid var(--bdr-light);
    background: var(--bg-light);
    border-radius: var(--r-md);
    line-height: 1.7;
}
.blog-body-content .blog-keywords strong {
    color: var(--txt-light);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .06em;
}

/* ── RTL ── */
[dir="rtl"] .blog-body-content { direction: rtl; text-align: right; }
[dir="rtl"] .blog-body-content ul,
[dir="rtl"] .blog-body-content ol { padding-left: 0; padding-right: 26px; }
[dir="rtl"] .blog-body-content li { padding-left: 0; padding-right: 4px; }
[dir="rtl"] .blog-body-content .blog-info-box,
[dir="rtl"] .blog-body-content .blog-note-box { border-left: none; border-right: 4px solid var(--g); border-radius: 12px 0 0 12px; }
[dir="rtl"] .blog-body-content h2::before { left: auto; right: 0; }
[dir="rtl"] .blog-body-content h2::after  { background: linear-gradient(270deg, rgba(0,200,150,.35), transparent 70%); }
[dir="rtl"] .blog-detail-meta             { direction: rtl; }

/* ── Responsive ── */
@media (max-width: 767px) {
    .blog-detail-title       { font-size: 22px; }
    .blog-body-content       { font-size: 16px; line-height: 1.8; }
    .blog-body-content h2    { font-size: 19px; }
    .blog-body-content h3    { font-size: 17px; }
    .blog-body-content .blog-stat-row { grid-template-columns: 1fr; }
    .blog-body-content .blog-lead { font-size: 17px; }
}
