:root {
    --red: #E3001B;
    --orange: #ff4f01;
    --yellow: #FFCC00;
    --green: #00A651;
    --dark: #111118;
    --mid: #1e1e2a;
    --muted: #49494b;
    --surface: #f6f5f2;
    --white: #ffffff;
    --grad-brand: linear-gradient(90deg, var(--red), var(--orange), var(--yellow), var(--green));
    --grad-warm: linear-gradient(135deg, var(--red) 0%, var(--orange) 50%, var(--yellow) 100%);
    --grad-hot: linear-gradient(135deg, #E3001B 0%, #F07800 100%);
    --grad-amber: linear-gradient(135deg, #F07800 0%, #FFCC00 100%);
    --light: #f8f8f6;
    --border: #e8e8e8;
    --radius: 16px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: "Bricolage Grotesque", sans-serif;
    background: #fff;
    color: var(--dark);
    overflow-x: hidden;
}

p,
.display {
    font-family: "Manrope", sans-serif;
    font-weight: 500;
}

/* ─── SCROLLBAR ─── */
::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--grad-hot);
    border-radius: 3px;
}

@media (min-width: 1280px) {
    .container {
        max-width: 1280px;
    }
}

/* ─── NAVBAR ─── */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all .4s cubic-bezier(.16, 1, .3, 1);
    padding: 0;
}

#navbar.scrolled {
    background: rgb(255 255 255);
    backdrop-filter: blur(24px);
    box-shadow: 0 1px 0 rgba(0, 0, 0, .08), 0 8px 32px rgba(0, 0, 0, .06);
}

#navbar.scrolled .nav-inner {
    margin-top: 0px;
    box-shadow: none;
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 19px;
    height: 70px;
    max-width: 1400px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 40px;
    margin-top: 16px;
    box-shadow: 0 2px 28px #0000001f;
}

/* LOGO */
.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    flex-shrink: 0;
}

.logo-icon {
    width: 48px;
    height: auto;
}

.logo-text {

    font-weight: 800;
    font-size: 1.4rem;
    color: var(--dark);
    letter-spacing: -.02em;
}

/* NAV LINKS */
.nav-links {
    display: flex;
    align-items: center;
    gap: 2px;
    list-style: none;
    margin-bottom: 0;
}

.nav-links>li {
    position: relative;
}

.nav-links>li>a {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 24px 14px;
    font-family: 'Instrument Sans', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: rgba(17, 17, 24, .75);
    text-decoration: none;
    border-radius: 0px;
    transition: all .2s;
    white-space: nowrap;
}

.nav-links>li>a:hover,
.nav-links>li.active>a {
    color: var(--dark);
    background: rgb(238 91 7 / 7%);
}

.nav-links>li>a .chevron {
    font-size: .6rem;
    transition: transform .25s;
    opacity: .5;
}

.nav-links>li:hover>a .chevron {
    transform: rotate(180deg);
}

/* CTA BUTTON */
.btn-cta {
    background: var(--grad-hot);
    color: #fff !important;
    padding: 9px 22px !important;
    border-radius: 50px;
    font-weight: 600 !important;
    box-shadow: 0 4px 16px rgba(227, 0, 27, .25);
    transition: all .25s !important;
}

.btn-cta:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 24px rgba(227, 0, 27, .35) !important;
    background: var(--grad-warm) !important;
}

/* From Uiverse.io by satyamchaudharydev */
button {
    --primary-color: #ee0014;
    --secondary-color: #fff;
    --hover-color: #111;
    --arrow-width: 10px;
    --arrow-stroke: 2px;
    box-sizing: border-box !important;
    border: 0 !important;
    border-radius: 45px !important;
    color: var(--secondary-color) !important;
    padding: 12px 25px !important;
    /* background: var(--primary-color); */
    background: var(--primary-color) !important;
    /* background: var(--grad-brand);  */
    display: flex;
    transition: 0.2s background ease-out, 0.2s color ease-out !important;
    align-items: center !important;
    gap: 0.6em !important;
    font-weight: bold !important;
}

button .arrow-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

button .arrow {
    margin-top: 1px;
    width: var(--arrow-width);
    background: var(--primary-color);
    height: var(--arrow-stroke);
    position: relative;
    transition: 0.2s;
}

button .arrow::before {
    content: "";
    box-sizing: border-box;
    position: absolute;
    border: solid var(--secondary-color);
    border-width: 0 var(--arrow-stroke) var(--arrow-stroke) 0;
    display: inline-block;
    top: -3px;
    right: 3px;
    transition: 0.2s;
    padding: 3px;
    transform: rotate(-45deg);
}

button:hover {
    background-color: var(--hover-color);
}

button:hover .arrow {
    background: var(--secondary-color);
}

button:hover .arrow:before {
    right: 0;
}
.btn-primary-green {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: var(--green) !important;
    color: #fff;
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 600;
    font-size: .85rem;
    letter-spacing: .03em;
    padding: 10px 22px !important;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    transition: opacity .2s, transform .2s;
    text-decoration: none;
    white-space: nowrap;
}

/* ─── MEGA MENU ─── */
.mega-menu {
    position: absolute;
    top: calc(100% + -2px);
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .14), 0 0 0 1px rgba(0, 0, 0, .06);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all .28s cubic-bezier(.16, 1, .3, 1);
    z-index: 999;
    min-width: 260px;
}

.nav-links>li:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    transform: translateX(-50%) translateY(0);
}

.mega-menu-inner {
    padding: 20px;
}

.mega-menu.wide {
    min-width: 820px;
}

.mega-menu-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.mega-menu-grid.cols3 {
    grid-template-columns: repeat(3, 1fr);
}

.mega-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    border-radius: 10px;
    text-decoration: none;
    color: var(--dark);
    font-size: .84rem;
    font-weight: 500;
    transition: all .18s;
    white-space: nowrap;
}

.mega-item:hover {
    background: var(--surface);
    color: var(--red);
}

.mega-item .mi-icon {
    width: 35px;
    height: 35px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .85rem;
    flex-shrink: 0;
    padding: 6px;
}

.mega-item .mi-label {
    font-size: 16px;
}

.mega-item .mi-desc {
    font-size: .72rem;
    color: var(--muted);
    line-height: 1.3;
}

.mega-heading {

    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--muted);
    padding: 4px 12px 10px;
}

.mega-divider {
    height: 1px;
    background: rgba(0, 0, 0, .06);
    margin: 12px 0;
}

/* PRICING SPECIFIC - tight grid */
.mega-menu.pricing-menu {
    min-width: 900px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
}

.pricing-item {
    padding: 9px 14px;
    border-radius: 8px;
    text-decoration: none;
    font-size: .8rem;
    font-weight: 600;
    color: rgba(17, 17, 24, .65);
    letter-spacing: .01em;
    transition: all .18s;
    white-space: nowrap;
}

.pricing-item:hover {
    background: var(--surface);
    color: var(--red);
}

/* ─── MOBILE MENU ─── */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px !important;
    cursor: pointer !important;
    padding: 8px !important;
    background: none !important;
}

.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--primary-color);
    border-radius: 2px;
    transition: .3s;
}

.hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

.hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
    position: fixed;
    inset: 0;
    background: #fff;
    z-index: 998;
    overflow-y: auto;
    padding: 90px 24px 40px;
    transform: translateX(100%);
    transition: transform .4s cubic-bezier(.16, 1, .3, 1);
}

.mobile-menu.open {
    transform: none;
}

.mob-link {
    display: block;
    padding: 14px 0;

    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark);
    text-decoration: none;
    border-bottom: 1px solid rgba(0, 0, 0, .07);
}

.mob-sub {
    padding: 8px 0 8px 16px;
    display: none;
}

.mob-sub a {
    display: block;
    padding: 7px 0;
    font-size: .88rem;
    color: var(--muted);
    text-decoration: none;
}

.mob-sub a:hover {
    color: var(--red);
}

.mob-acc-btn {
    background: none !important;
    /* border: none !important; */
    width: 100%;
    text-align: left;
    padding: 14px 0 !important;
    font-size: 1.4rem;
    font-weight: 700 !important;
    color: var(--dark) !important;
    display: flex;
    justify-content: space-between;
    align-items: center !important;
    border-bottom: 1px solid rgba(0, 0, 0, .07) !important;
    cursor: pointer !important;
    border-radius: 0 !important;
}

/* ─── BRAND STRIPE ─── */
/* .brand-stripe {
            height: 3px;
            background: var(--grad-brand);
            background-size: 200% 100%;
        } */

/* ─── HERO ─── */
#hero {
    min-height: calc(100svh - 54px);
    background: var(--white);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding-top: 70px;
}

.hero-section::before {
    /* content: '';
            position: absolute; */
    /* width: 50%;
            height: 109%;
            background: #ef6d03; */
    /* top: -23px;
            right: -17%;
            width: 500px; */
    /* border-radius: 50%; */
    /* background-image: url(/images/flying-laptop.png); */
}

.hero-bg-mesh {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 70% at 80% 20%, rgb(219 249 211) 0%, transparent 60%), radial-gradient(ellipse 50% 60% at 10% 80%, rgba(240, 120, 0, .15) 0%, transparent 60%), radial-gradient(ellipse 40% 50% at 50% 50%, rgba(255, 204, 0, .08) 0%, transparent 60%);
    ;
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, .04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .04) 1px, transparent 1px);
    background-size: 52px 52px;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border-radius: 50px;
    border: 1px solid rgb(17 150 16 / 63%);
    background: rgba(227, 0, 26, 0);
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: .07em;
    text-transform: uppercase;
    color: #0e980d;
    margin-bottom: 28px;
}

.hero-eyebrow-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--green);
    animation: pulse 2s infinite;
}

@keyframes pulse {

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

    50% {
        opacity: .4;
        transform: scale(1.5);
    }
}

.hero-title {
    font-size: clamp(2.8rem, 6.5vw, 75px);
    font-weight: 700;
    color: var(--dark);
    line-height: 72px;
    letter-spacing: -.03em;
    margin-bottom: 20px;
}

.hero-title .brand-word {
    background: var(--grad-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

.hero-desc {
    font-size: 18px;
    color: var(--muted);
    line-height: 28px;
    max-width: 500px;
    margin-bottom: 35px;
}

.hero-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--grad-hot);
    color: #fff;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 700;

    font-size: .95rem;
    text-decoration: none;
    box-shadow: 0 8px 28px rgba(227, 0, 27, .4);
    transition: all .3s;
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(227, 0, 27, .5);
    color: #fff;
}

.btn-hero-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1.5px solid rgba(255, 255, 255, .2);
    color: rgba(255, 255, 255, .8);
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: .95rem;
    text-decoration: none;
    backdrop-filter: blur(10px);
    transition: all .3s;
}

.btn-hero-ghost:hover {
    border-color: var(--orange);
    color: var(--orange);
    transform: translateY(-3px);
}

.hero-stats {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 44px;
}

.hstat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.hstat-n {

    font-size: 2.6rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}

.hstat-n em {
    font-style: normal;
    background: var(--grad-warm);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hstat-l {
    font-size: .75rem;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: rgba(255, 255, 255, .4);
}

/* HERO RIGHT - dashboard mockup */
.hero-mockup-wrap {
    position: relative;
    z-index: 2;
}

.hero-card {
    display: flex;
    justify-content: end;
    position: relative;
    margin-top: 25px;
}

.laptop {
    position: absolute;
    width: 500px;
}

/* .hero-card {
            background: rgba(255, 255, 255, .06);
            border: 1px solid rgba(255, 255, 255, .1);
            border-radius: 22px;
            padding: 28px;
            backdrop-filter: blur(20px);
            box-shadow: 0 40px 80px rgba(0, 0, 0, .5);
        } */
.hero-card img {
    width: 660px;
    margin-top: 10px;
}

.win-dots {
    display: flex;
    gap: 6px;
    margin-bottom: 22px;
}

.win-dot {
    width: 11px;
    height: 11px;
    border-radius: 50%;
}

.kpi-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 10px;
    margin-bottom: 16px;
}

.kpi {
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 12px;
    padding: 14px;
    text-align: center;
}

.kpi-v {

    font-size: 1.3rem;
    font-weight: 800;
}

.kpi-l {
    font-size: .65rem;
    color: rgba(255, 255, 255, .4);
    margin-top: 2px;
}

.kpi:nth-child(1) .kpi-v {
    background: var(--grad-hot);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.kpi:nth-child(2) .kpi-v {
    background: var(--grad-amber);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.kpi:nth-child(3) .kpi-v {
    color: #fff;
}

.mini-label {
    font-size: .7rem;
    color: rgba(255, 255, 255, .35);
    font-weight: 600;
    letter-spacing: .07em;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.bar-group {
    display: flex;
    align-items: flex-end;
    gap: 7px;
    height: 80px;
}

.mbar {
    flex: 1;
    border-radius: 6px 6px 0 0;
    position: relative;
    overflow: hidden;
}

.mbar::after {
    content: '';
    position: absolute;
    inset: 0;
    animation: bGrow 1.5s ease forwards;
    transform-origin: bottom;
    transform: scaleY(0);
}

@keyframes bGrow {
    to {
        transform: scaleY(1);
    }
}

.mbar:nth-child(1) {
    height: 35%;
}

.mbar:nth-child(1)::after {
    background: rgba(227, 0, 27, .6);
    animation-delay: .1s
}

.mbar:nth-child(2) {
    height: 60%;
}

.mbar:nth-child(2)::after {
    background: rgba(227, 0, 27, .7);
    animation-delay: .2s
}

.mbar:nth-child(3) {
    height: 50%;
}

.mbar:nth-child(3)::after {
    background: rgba(240, 120, 0, .7);
    animation-delay: .3s
}

.mbar:nth-child(4) {
    height: 80%;
}

.mbar:nth-child(4)::after {
    background: rgba(240, 120, 0, .8);
    animation-delay: .4s
}

.mbar:nth-child(5) {
    height: 65%;
}

.mbar:nth-child(5)::after {
    background: rgba(255, 204, 0, .7);
    animation-delay: .5s
}

.mbar:nth-child(6) {
    height: 92%;
}

.mbar:nth-child(6)::after {
    background: rgba(255, 204, 0, .8);
    animation-delay: .6s
}

.mbar:nth-child(7) {
    height: 75%;
}

.mbar:nth-child(7)::after {
    background: rgba(0, 166, 81, .7);
    animation-delay: .7s
}

.pill-row {
    display: flex;
    gap: 8px;
    margin-top: 14px;
    flex-wrap: wrap;
}

.pill {
    padding: 5px 12px;
    border-radius: 50px;
    font-size: .7rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
}

.pill-r {
    background: rgba(227, 0, 27, .15);
    color: #ff6b6b;
}

.pill-o {
    background: rgba(240, 120, 0, .15);
    color: #ff9f43;
}

.pill-y {
    background: rgba(255, 204, 0, .15);
    color: #ffcc00;
}

.pill-g {
    background: rgba(0, 166, 81, .15);
    color: #00c97a;
}

.pill-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
}

/* ─── MARQUEE ─── */
.marquee-section {
    overflow: hidden;
    padding: 10px 0;
    border-top: 1px solid rgb(254 154 0 / 34%);
    border-bottom: 1px solid rgb(254 154 0 / 34%);
    background: #ffffff;
    position: relative;
    z-index: 1;
}

.marquee-section::before {
    content: '';
    position: absolute;
    inset: 0;
    /* background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(240, 120, 0, .12), transparent 70%); */
    /* background-image: url(/images/dark-2.jpg); */
    height: 100%;
    width: 100%;
    bottom: 0px;
    left: 0px;
    z-index: -1;
    opacity: 0.8;
    background-size: contain;
    /* background-repeat: no-repeat; */
    background-position: center center;
}

.marquee-track {
    display: flex;
    gap: 48px;
    animation: marquee 22s linear infinite;
    align-items: center;
}

.m-item {
    font-weight: 600;
    font-size: 1rem;
    color: rgba(24, 24, 24, 0.955);
    white-space: nowrap;
    display: flex;
    justify-content: center;
    align-items: center;
}

.img-wrap {
    width: 42px;
    height: 36px;
    margin-right: 4px;
    background: #ffffff;
    padding: 4px;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.m-item img {
    width: 26px;
}

.m-sep {
    color: #ffaf00;
    opacity: 1;
}

@keyframes marquee {
    from {
        transform: translateX(0)
    }

    to {
        transform: translateX(-50%)
    }
}

/* ─── SECTIONS ─── */
section {
    position: relative;
}

.py-section {
    padding: 100px 0;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 5px 14px;
    border-radius: 50px;
    border: 1px solid rgba(0, 0, 0, .1);
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 18px;
}

.section-tag::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--green);
}

.sec-title {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 800;
    letter-spacing: -.03em;
    color: var(--dark);
    line-height: 50px;
}

.sec-sub {
    font-size: 17px;
    color: #434343;
    line-height: 28px;
    max-width: 580px;
}

.grad-text {
    background: var(--grad-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

/* ─── ABOUT ─── */
#about {
    background: #fff;
}

.about-left-vis {
    background: var(--white);
    border-radius: 24px;
    /* padding: 36px; */
    position: relative;
    /* overflow: hidden; */
    min-height: 420px;
    padding-right: 10px;
}

/* .about-left-vis::before {
            content: '';
            position: absolute;
            top: -140px;
            left: -122px;
            width: 430px;
            height: 430px;
               background: radial-gradient(circle, rgb(0 96 180 / 22%), rgb(0 96 180 / 13%), transparent 70%);
        } */

.float-card {
    background: rgb(255 210 173);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 14px;
    padding: 16px 20px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 14px;
    backdrop-filter: blur(10px);
    animation: floatY 5s ease-in-out infinite alternate;
}

.float-card:nth-child(2) {
    animation-delay: 1.5s;
}

.float-card:nth-child(3) {
    animation-delay: 3s;
}

@keyframes floatY {
    from {
        transform: translateY(0)
    }

    to {
        transform: translateY(-7px)
    }
}

.fc-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.fc-icon-r {
    background: rgba(227, 0, 27, .2);
    color: #ff6b6b;
}

.fc-icon-o {
    background: rgba(240, 120, 0, .2);
    color: #ff9f43;
}

.fc-icon-g {
    background: rgba(0, 166, 81, .2);
    color: #00c97a;
}

.float-card h6 {

    font-size: 17px;
    color: #242424;
    margin: 0 0 2px;
    font-weight: 600;
}

.float-card p {
    font-size: .75rem;
    color: rgba(53, 53, 53, 0.45);
    margin: 0;
}

.feat-list {
    display: flex;
    flex-direction: column;
    gap: 22px;
    margin-top: 34px;
}

.feat-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.feat-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
    border: 1px solid rgba(0, 0, 0, .08);
    background: #e2f1ff;
    color: #2d89df;
}

/* .feat-icon-r {
            background: rgba(227, 0, 27, .06);
            color: var(--red);
        }

        .feat-icon-o {
            background: rgba(240, 120, 0, .06);
            color: var(--orange);
        }

        .feat-icon-y {
            background: rgba(255, 204, 0, .1);
            color: #c49800;
        } */

.feat-item h6 {

    font-weight: 700;
    font-size: 18px;
    margin: 0 0 4px;
}

.feat-item p {
    font-size: .85rem;
    color: var(--muted);
    margin: 0;
    line-height: 1.6;
}

/* ─── SERVICES ─── */
#services {
    background: #02325e;
    position: relative;
    z-index: 1;
}

#services::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url(/images/banner-bg-pattern.svg);
    height: 100%;
    width: 100%;
    bottom: 0px;
    left: 0px;
    z-index: -1;
    opacity: 0.03;

}

.svc-card {
    /* background: #fff; */
    border-radius: 20px;
    padding: 34px 28px;
    height: 100%;
    border: 2px solid #3ea0f875;
    transition: all .3s cubic-bezier(.16, 1, .3, 1);
    position: relative;
    background: #023a6d;
    overflow: hidden;
}

.svc-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--grad-brand);
    opacity: 0;
    transition: opacity .3s;
}

.svc-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 24px 60px rgba(0, 0, 0, .1);
}

/* 

        .svc-card:hover::after {
            opacity: 1;
        } */

.svc-icon-wrap {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 25px;
    color: #0864b7;
    margin-bottom: 30px;
    background: #acd8ff;
}

/* 
        .svc-icon-r {
            background: rgba(227, 0, 27, .08);
            color: var(--red);
        }

        .svc-icon-o {
            background: rgba(240, 120, 0, .08);
            color: var(--orange);
        }

        .svc-icon-y {
            background: rgba(255, 204, 0, .12);
            color: #c49800;
        }

        .svc-icon-g {
            background: rgba(0, 166, 81, .08);
            color: var(--green);
        } */

.svc-card h5 {
    color: #ffffff;
    font-size: 21px;
    font-weight: 700;
    margin-bottom: 10px;
}

.svc-card p {
    font-size: 15px;
    color: #b7b7ba;
    line-height: 23px;
}

.svc-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    margin-top: 18px;
    transition: gap .2s;
    color: #fff;
}

/* .svc-link-r {
            color: var(--red);
        }

        .svc-link-o {
            color: var(--orange);
        }

        .svc-link-y {
            color: #c49800;
        }

        .svc-link-g {
            color: var(--green);
        } */

.svc-link:hover {
    gap: 10px;
}

/* ─── PRODUCTS ─── */
/* ─── PRODUCTS ─── */
#products {
    background: #fff;
}

.prod-card {
    background: #fbeaea;
    border-radius: 18px;
    padding: 28px;
    text-align: center;
    height: 100%;
    border: 1.5px solid transparent;
    transition: all .3s;
    cursor: pointer;
    box-shadow: 5px 5px 10px 0px rgba(0, 0, 0, 0.07);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 0;
}

.prod-card:hover {
    background: #fff;
    border-color: var(--red);
    transform: translateY(-6px);
    box-shadow: 0 16px 50px rgba(227, 0, 27, .1);
}

.prod-emoji {
    font-size: 2rem;
    margin-bottom: 16px;
    display: block;
    width: 140px;
    height: 140px;
    background: #ffffff;
    border-radius: 50%;
    box-shadow: rgb(84 81 81 / 11%) 0px 0px 25px 0px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    border: 3px solid #ee001466;
}

.prod-emoji img {
    width: 100%;
}

.prod-card h5 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}

.prod-card p {
    font-size: .82rem;
    color: var(--muted);
    line-height: 1.65;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.prod-card .case-logo {
    pointer-events: none;
    opacity: 0;
    transform: translate(-50%, -50%) scale(.75);
    transition: all .4s ease;
}

.prod-card .overlay-c {
    opacity: 0;
    transition: all .4s ease;
}

.prod-card:hover .overlay-c {
    opacity: 1;
}

.prod-card:hover .case-logo {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.case-logo {
    width: 100px !important;
}

/* ─── STATS ─── */
#stats {
    background: #022a5d;
    position: relative;
    overflow: hidden;
    padding: 90px 0;
    z-index: 1;
}

#stats::before {
    content: '';
    position: absolute;
    inset: 0;

    background-image: url(/images/footer-bg.jpg);
    height: 100%;
    width: 100%;
    bottom: 0px;
    left: 0px;
    z-index: -1;
    opacity: 0.4;
    background-size: contain;
    background-position: center center;
}

.stat-block {
    text-align: center;
    position: relative;
    z-index: 1;
}

/* .stat-block::before {
            content: '';
            position: absolute;
            right: 0;
            top: 0;
            height: 100%;
            width: 1px;
            background-color: #fab4453b;
        }

        .stat-block:last-child::before {
            display: none;
        } */
.row>div:not(:last-child) .stat-block::before {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 1px;
    background-color: #fffdfa3b;
}

.stat-n {

    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 700;
    color: #fff;
    line-height: 1;
}

.stat-n span {
    background: var(--white);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-l {
    font-size: .8rem;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: rgba(255, 255, 255, 0.67);
    margin-top: 10px;
}

/* ─── PROCESS ─── */
#process {
    /* background: var(--surface); */
}

.step {
    display: flex;
    gap: 20px;
    /* margin-bottom: 44px; */
    align-items: flex-start;
}

.step:last-child {
    margin-bottom: 0;
}

.step-num {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    flex-shrink: 0;

    font-weight: 800;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    position: relative;
}

.step-num::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 100%;
    width: 1px;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, .15), transparent);
}

.step:last-child .step-num::after {
    display: none;
}

.sn1 {
    background: var(--grad-hot);
}

.sn2 {
    background: var(--grad-amber);
}

.sn3 {
    background: linear-gradient(135deg, var(--yellow), var(--green));
}

.sn4 {
    background: linear-gradient(135deg, var(--green), #007a3d);
}

.step h5 {

    font-weight: 700;
    font-size: 18px;
    margin-bottom: 5px;
}

.step p {
    font-size: 15px;
    color: var(--muted);
    line-height: 1.65;
    margin-bottom: 20px;
}

.process-vis {
    /* background: var(--dark);
            border-radius: 24px;
            min-height: 400px; */
    display: flex;
    align-items: center;
    justify-content: center;
    /* padding: 40px; */
    position: relative;
    overflow: hidden;
}

.process-vis::before {
    /* content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse at 30% 70%, rgba(227, 0, 27, .2), rgba(240, 120, 0, .1), transparent 65%); */
}

.vis-inner {
    position: relative;
    z-index: 1;
    width: 100%;
}

.vis-card {
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 14px;
    padding: 18px 24px;
    margin-bottom: 12px;
    backdrop-filter: blur(10px);
}

.vis-card-title {

    font-size: .95rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
}

.vis-bar-wrap {
    height: 6px;
    background: rgba(255, 255, 255, .1);
    border-radius: 3px;
    overflow: hidden;
}

.vis-bar-fill {
    height: 100%;
    border-radius: 3px;
    animation: fillW 1.5s ease forwards;
    transform-origin: left;
    transform: scaleX(0);
}

@keyframes fillW {
    to {
        transform: scaleX(1);
    }
}

.vbf1 {
    background: var(--grad-hot);
    width: 90%;
    animation-delay: .2s;
}

.vbf2 {
    background: var(--grad-amber);
    width: 75%;
    animation-delay: .4s;
}

.vbf3 {
    background: linear-gradient(90deg, var(--yellow), var(--green));
    width: 85%;
    animation-delay: .6s;
}

/* ─── CONTACT ─── */
#contact {
    background: linear-gradient(180deg, #FFF 0%, #86b7fe57 100%);
}

.contact-box {
    /* background: var(--dark); */
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(0, 0, 0, .18);
}

.contact-left {
    padding: 60px 50px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    background-color: #041e4e;
}

.contact-left::before {
    content: '';
    position: absolute;
    inset: 0;
    /* background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(240, 120, 0, .12), transparent 70%); */
    /* background-image: url(/images/dark-2.jpg); */
    background-image: url(/images/banner-bg-pattern.svg);
    height: 100%;
    width: 100%;
    bottom: 0px;
    left: 0px;
    z-index: -1;
    opacity: 0.05;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

.contact-left>* {
    position: relative;
    z-index: 1;
}

.contact-left h2 {

    font-size: 2.2rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 16px;
    line-height: 1.1;
}

.contact-left p {
    color: rgba(255, 255, 255, .55);
    line-height: 1.75;
    margin-bottom: 40px;
    font-size: .95rem;
}

.c-info {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
}

.c-icon {
    width: 40px;
    height: 40px;
    border-radius: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .9rem;
    flex-shrink: 0;
}

.c-icon-r {
    background: rgba(227, 0, 27, .25);
    color: #ff6b6b;
}

.c-icon-o {
    background: rgba(240, 120, 0, .2);
    color: #ff9f43;
}

.c-icon-y {
    background: rgba(255, 204, 0, .2);
    color: #ffcc00;
}

.c-icon-g {
    background: rgba(0, 166, 81, .2);
    color: #00c97a;
}

.c-info span {
    color: rgba(255, 255, 255, .65);
    font-size: .88rem;
}

.contact-right {
    background: #fff;
    padding: 60px 50px;
}

.form-label {
    font-weight: 600;
    font-size: .82rem;
    color: var(--dark);
    margin-bottom: 7px;
    display: block;
}

.fc {
    width: 100%;
    border: 1.5px solid #e0ebff;
    border-radius: 12px;
    padding: 13px 16px;
    font-size: .9rem;
    background: #f8f8fa;
    transition: all .25s;
    outline: none;
}

.fc:focus {
    border-color: var(--red);
    box-shadow: 0 0 0 4px rgba(227, 0, 27, .08);
    background: #fff;
}

select.fc {
    cursor: pointer;
}

textarea.fc {
    resize: none;
    min-height: 120px;
}

.btn-submit {
    width: 100%;
    background: var(--grad-hot);
    color: #fff;
    border: none;
    padding: 12px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(227, 0, 27, .3);
    transition: all .3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 36px rgba(227, 0, 27, .4);
}

/* ─── BLOG ─── */
#blog {
    /* background: var(--surface); */
}

.blog-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgb(255 211 215);
    height: 100%;
    transition: all .3s;
    box-shadow: 0 5px 9px 0 rgb(0 0 0 / 6%);
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, .09);
}

.blog-thumb {
    height: 200px;
    overflow: hidden;
}

.blog-thumb-inner {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    transition: transform .5s;
}

.blog-card:hover .blog-thumb-inner {
    transform: scale(1.06);
}

.blog-thumb img {
    object-fit: cover;
    width: 100%;
}

.blog-body {
    padding: 26px;
    background: linear-gradient(180deg, #FFF 0%, #fff2f3 100%);
}

.blog-cat {
    display: inline-block;
    padding: 3px 11px;
    border-radius: 50px;
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .05em;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.bc-r {
    background: rgba(227, 0, 27, .1);
    color: var(--red);
}

.bc-o {
    background: rgba(240, 120, 0, .1);
    color: var(--orange);
}

.bc-g {
    background: rgba(0, 166, 81, .1);
    color: var(--green);
}

.blog-body h5 {

    font-size: 1rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 12px;
    color: var(--dark);
}

.blog-body p {
    font-size: .83rem;
    color: var(--muted);
    line-height: 1.65;
    margin-bottom: 16px;
}

.blog-meta {
    display: flex;
    gap: 16px;
    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px solid rgba(0, 0, 0, .07);
    font-size: 14px;
    color: #ed0014;
    opacity: .8;
    align-items: center;
    justify-content: space-between;
}

/* ─── FOOTER ─── */
footer {
    background: #021b47;
    padding: 80px 0 30px;
    position: relative;
    z-index: 1;

}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--grad-brand);
}

footer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-image: url(/images/footer-bg.jpg);
    background-size: contain;
    /* background-position: center;
            background-attachment: fixed;
            background-repeat: no-repeat; */
    z-index: -1;
    opacity: 0.4;
}

.footer-brand {
    font-size: 1.6rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 16px;
}

.footer-brand span {
    background: var(--grad-warm);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-desc {
    font-size: .86rem;
    color: rgba(255, 255, 255, .35);
    line-height: 1.75;
    max-width: 260px;
}

.footer-h {

    font-weight: 700;
    color: rgba(255, 255, 255, .9);
    font-size: .82rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.f-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.f-links li {
    margin-bottom: 9px;
}

.f-links a {
    color: rgb(255 255 255 / 40%);
    text-decoration: none;
    font-size: .86rem;
    transition: color .2s;
}

.f-links a:hover {
    color: var(--orange);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .07);
    margin-top: 60px;
    padding-top: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom p {
    font-size: .78rem;
    color: rgba(255, 255, 255, 0.689);
    margin: 0;
}

.socials {
    display: flex;
    gap: 8px;
}

.soc {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(255, 255, 255, .07);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.855);
    font-size: .85rem;
    text-decoration: none;
    transition: all .2s;
}

.soc:hover {
    background: var(--red);
    color: #fff;
    transform: translateY(-2px);
}

/* ─── REVEAL ANIMATIONS ─── */
.reveal {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity .7s ease, transform .7s ease;
}

.reveal.fl {
    transform: translateX(-48px);
    opacity: 1;
}

.reveal.fr {
    opacity: 1;
    transform: translateX(48px);
}

.reveal.in {
    opacity: 1;
    transform: none;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.wdt img {
    width: 31px;
}

.whatsapp {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 19px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    z-index: 100;
    display: flex;
    justify-content: center;
    align-items: center;
}

.whatsapp a {
    position: relative;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.whatsapp-icon {
    margin-top: 13px;
}

.whatsapp a::before {
    content: '';
    background: rgb(31 201 123);
    width: 78px;
    height: 78px;
    border-radius: 50%;
    position: absolute;
    left: -15%;
    top: -15%;
    opacity: 1;
    animation: robot-animation 1s linear infinite;
    z-index: -1;
}

.robo.whatsapp a::before {
    background: #0060b4a5;
}

.robo {
    bottom: 118px;
    background-color: #0060b4;
    right: 19px;
}

@keyframes robot-animation {
    0% {
        -webkit-transform: scale(0.48);
        transform: scale(0.48);
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 0;
    }
}

@media (min-width: 1536px) {
    .container {
        max-width: 1360px !important;
    }
}

/* Overlay fade */
#popup-overlay {
    animation: fadeIn 0.3s ease forwards;
}

#popup-card {
    animation: slideUp 0.35s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(32px) scale(0.97);
    }

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

/* Green radial glow — matches hero bg */
.popup-glow {
    background: radial-gradient(ellipse 80% 60% at 50% -10%, rgba(134, 239, 172, 0.35) 0%, transparent 70%),
        #ffffff;
}

/* Zoho-style gradient badge */
.badge-gradient {
    background: linear-gradient(135deg, #ef4444 0%, #f97316 35%, #eab308 65%, #22c55e 100%);
}

/* Input focus ring matching Zoho red */
input:focus,
textarea:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(239, 68, 68, 0.25);
    border-color: #ef4444;
}

/* Submit button hover lift */
#submit-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4);
}

#submit-btn {
    transition: all 0.2s ease;
}

/* Close btn hover */
#close-btn:hover {
    background: rgba(0, 0, 0, 0.08);
}

#close-btn:hover {
    background: #f75656;
    ;
}

.hero-card {
    position: relative;
    display: inline-block;
}

.hero-card img {
    width: 100%;
    display: block;
}

.floating-card {
    position: absolute;
    min-width: 242px;
    min-height: 90px;
    display: flex;
    padding: 0 20px;
    align-items: center;
    gap: 14px;
    background: #ffffff70;
    backdrop-filter: blur(10px);
    border-radius: 10px 10px 0 10px;
    box-shadow: 0 10px 30px rgb(120 120 120 / 24%);
}

.floating-card span {
    font-size: 26px;
    color: #ee0014;

}

.floating-card h4 {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    color: #2f2f2f;
}

.floating-card p {
    margin: 0px 0 0;
    font-size: 15px;
    color: #666666;
}

/* Position from laptop screen */

/* .card-1{
    left: 19%;
    top: 43%;
     animation: popup 12s infinite;
}

.card-2{
    left: 20%;
    top: 44%;
     animation: popup 12s infinite 4s;
}

.card-3{
      left: 19%;
    top: 43%;
    animation: popup 12s infinite 8s;
} */
.card-1,
.card-2,
.card-3 {
    left: -2%;
    top: 37%;
}

.card-1 {
    animation: popup1 12s infinite;
}

.card-2 {
    animation: popup2 12s infinite;
}

.card-3 {
    animation: popup3 12s infinite;
}

@keyframes popup1 {

    0%,
    30% {
        opacity: 1;
        transform: translateY(0);
    }

    33%,
    100% {
        opacity: 0;
        transform: translateY(-20px);
    }
}

@keyframes popup2 {

    0%,
    33% {
        opacity: 0;
        transform: translateY(20px);
    }

    34%,
    63% {
        opacity: 1;
        transform: translateY(0);
    }

    66%,
    100% {
        opacity: 0;
        transform: translateY(-20px);
    }
}

@keyframes popup3 {

    0%,
    66% {
        opacity: 0;
        transform: translateY(20px);
    }

    67%,
    96% {
        opacity: 1;
        transform: translateY(0);
    }

    100% {
        opacity: 0;
        transform: translateY(-20px);
    }
}

/* ─── RESPONSIVE ─── */
@media(max-width:1399px) {
    .nav-inner {
        margin: 14px 25px 0 25px;
    }
}

@media(max-width:1280px) {
    .hero-title {
        font-size: 50px;
        line-height: 56px;
    }

    .py-section {
        padding: 70px 0;
    }

    .sec-title {
        font-size: 42px;
        line-height: 42px;
        margin-bottom: 15px !important;
    }

    .feat-list {
        gap: 10px;
        margin-top: 18px;
    }
}

@media(max-width:1100px) {

    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .mega-menu {
        display: none;
    }

    .hero-card img {
        margin-top: 0px;
    }

    .container {
        max-width: 909px !important;
    }
}

@media(max-width:1024px) {
    .container {
        max-width: 1157px;
    }
}

@media(max-width:991px) {
    #stats {
        padding: 60px 0;
    }

    .svc-card {
        display: flex;
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .mega-menu.wide,
    .mega-menu.pricing-menu {
        min-width: 95vw;
        left: 0;
        transform: translateX(0);
    }

    .mega-menu-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-mockup-wrap {
        margin-top: 0;
    }

    .card-1,
    .card-2,
    .card-3 {
        left: 9%;
        top: 37%;
    }

    .hero-content {
        margin-top: 91px;
        display: flex;
        align-items: center;
        text-align: center;
        flex-direction: column;
    }

}

@media(max-width:767px) {
    .about-left-vis {
        min-height: auto;
    }

    .row>div:nth-of-type(2) .stat-block::before {
        display: none;
    }

    .text-\[30px\] {
        font-size: 26px !important;
    }

    #hero {
        padding-top: 80px;
        min-height: auto;
        padding-bottom: 60px;
    }

    .hero-stats {
        gap: 22px;
    }

    .contact-left,
    .contact-right {
        padding: 36px 28px;
    }

    .hero-mockup-wrap {
        margin-top: 40px;
    }

    .prod-card {
        padding: 13px;
    }
}

@media(max-width:480px) {
    .breadcrumb-bar {
        padding: 12px 12px;
    }

    .copy-link-btn {
        margin-left: 0 !important;
        margin-top: 10px;
    }

    .contact-left,
    .contact-right {
        padding: 32px 20px;
    }

    .row>div:not(:last-child) .stat-block::before {
        right: -7px;
    }

    .sec-title {
        font-size: 34px;
        line-height: 38px;
        margin-bottom: 20px !important;
    }

    .card-1,
    .card-2,
    .card-3 {
        left: 9%;
        top: -4%;
    }

    .hero-title {
        font-size: 43px;
        line-height: 47px;
    }

    .floating-card {
        min-width: 216px;
        min-height: 72px;
        padding: 0 15px;
    }

    .nav-inner {
        margin: 12px 12px 0 12px;
    }

    .nav-inner {
        height: 66px;
    }

    .marquee-track {
        display: flex;
        gap: 25px;
    }
}

.floating-offer {
    left: -45px;
    writing-mode: vertical-rl;
    /* transform: translateY(-50%) rotate(180deg); */
    animation: nudge 3s infinite;
}

@keyframes nudge {

    0%,
    80%,
    100% {
        left: -45px;
    }

    20%,
    60% {
        left: 0;
    }
}





/* Brand bar */
.brand-bar {
    height: 4px;
    background: var(--grad-brand);
}

/* Navbar */
.navbar {
    background: var(--dark);
}

.navbar a {
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
    font-weight: 500;
    transition: color .2s;
}

.navbar a:hover {
    color: #fff;
}

.btn-primary {
    background: var(--grad-hot);
    color: #fff;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    padding: 9px 20px;
    display: inline-block;
    transition: opacity .2s;
    white-space: nowrap;
}

.btn-primary:hover {
    opacity: .88;
}

.btn-outline {
    border: 1.5px solid var(--red);
    color: var(--red);
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    padding: 9px 20px;
    display: inline-block;
    transition: all .2s;
}

.btn-outline:hover {
    background: var(--red);
    color: #fff;
}

/* Hero */
.hero-section {
    background: var(--dark);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 50% at 80% 50%, rgba(227, 0, 27, .15) 0%, transparent 70%),
        radial-gradient(ellipse 40% 60% at 20% 80%, rgba(0, 166, 81, .08) 0%, transparent 70%);
}

/* Breadcrumb */
.breadcrumb-bar {
    background: var(--surface);
    background: #fff9f3;
    border: 1px solid rgba(0, 0, 0, .07);
    padding: 12px 0;
}

.breadcrumb-item {
    font-size: 13px;
    color: var(--muted);
}

.breadcrumb-item a {
    color: var(--muted);
    transition: color .2s;
}

a {
    text-decoration: none;
}

.breadcrumb-item a:hover {
    color: var(--red);
}

.breadcrumb-item.active {
    color: var(--red);
    font-weight: 600;
}

.breadcrumb-sep {
    color: #7b7b7b;
    margin: 0 6px;
}

/* Section label */
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 12px;
}

.section-label::before,
.section-label::after {
    content: '';
    display: block;
    width: 24px;
    height: 1.5px;
    background: var(--grad-hot);
}

/* Cards */
.feature-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 24px;
    transition: all .25s;
}

.feature-card:hover {
    border-color: transparent;
    box-shadow: 0 8px 32px rgba(227, 0, 27, .1);
    transform: translateY(-3px);
}

.icon-box {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 14px;
    flex-shrink: 0;
}

/* Process steps */
.step-line {
    position: absolute;
    top: 24px;
    left: 50%;
    width: calc(100% - 24px);
    height: 2px;
    background: linear-gradient(90deg, var(--red), var(--orange));
    z-index: 0;
}

/* Skill bar */
.skill-bar-track {
    background: #e8e8e8;
    border-radius: 99px;
    height: 8px;
    overflow: hidden;
}

.skill-bar-fill {
    height: 100%;
    border-radius: 99px;
    background: var(--grad-hot);
}

/* Pricing */
.pricing-card {
    border-radius: 16px;
    border: 1.5px solid #e5e5e5;
    background: #fff;
    transition: all .25s;
    position: relative;
    overflow: hidden;
}

.pricing-card:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, .1);
    transform: translateY(-4px);
}

.pricing-card.popular {
    border-color: var(--red);
    box-shadow: 0 8px 32px rgba(227, 0, 27, .15);
}

.popular-badge {
    background: var(--grad-hot);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 4px 16px;
    border-radius: 0 0 10px 10px;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.check-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: var(--muted);
    margin-bottom: 10px;
}

.check-icon {
    color: var(--green);
    font-size: 16px;
    margin-top: 1px;
    flex-shrink: 0;
}

/* FAQ */
.faq-item {
    border-bottom: 1px solid #eee;
}

.faq-q {
    width: 100%;
    text-align: left;
    padding: 18px 0;
    font-size: 15px;
    font-weight: 600;
    color: var(--dark);
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-a {
    padding-bottom: 16px;
    font-size: 14px;
    color: var(--muted);
    line-height: 1.7;
    display: none;
}

.faq-item.open .faq-a {
    display: block;
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
}

.faq-icon {
    transition: transform .2s;
    font-size: 20px;
    color: var(--red);
    font-weight: 300;
}

/* Stats */
.stat-card {
    text-align: center;
    padding: 32px 20px;
}

.stat-num {
    font-size: 48px;
    font-weight: 900;
    line-height: 1;
}

/* Dark section */
.dark-section {
    background: var(--dark);
    color: #fff;
}

.dark-section .section-label {
    color: rgba(255, 255, 255, .5);
}

.dark-section .section-label::before,
.dark-section .section-label::after {
    background: rgba(255, 255, 255, .3);
}

/* App grid */
.app-chip {
    background: var(--surface);
    border: 1px solid #e5e5e5;
    border-radius: 10px;
    padding: 10px 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--dark);
    transition: all .2s;
}

.app-chip:hover {
    background: #fff;
    box-shadow: 0 4px 16px rgba(0, 0, 0, .08);
    border-color: #ddd;
}

/* CTA section */
.cta-section {
    background: var(--dark);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 50% 80% at 50% 100%, rgba(227, 0, 27, .2), transparent 70%);
}

/* Why choose */
.why-card {
    background: var(--surface);
    border-radius: 12px;
    padding: 28px;
    transition: all .25s;
}

.why-card:hover {
    background: #fff;
    box-shadow: 0 6px 24px rgba(0, 0, 0, .08);
}

/* Responsive */
@media (max-width: 768px) {
    .stat-num {
        font-size: 36px;
    }
}





/* ── Blog Hero Banner ── */
.blog-hero {
    background: #fff;
    position: relative;
    overflow: hidden;
    padding: 64px 0 62px;
}

.blog-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 55% 70% at 95% 50%, rgba(227, 0, 27, .18) 0%, transparent 65%),
        radial-gradient(ellipse 40% 50% at 5% 80%, rgba(0, 166, 81, .08) 0%, transparent 60%);
    pointer-events: none;
}

.blog-hero-inner {
    position: relative;
    z-index: 1;
    position: relative;
    z-index: 1;
    margin-top: 82px;
}

.blog-cat-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    background: rgba(227, 0, 26, 0);
    color: #ff7070;
    border: 1px solid rgba(227, 0, 27, .3);
    border-radius: 99px;
    padding: 5px 14px;
    margin-bottom: 18px;
}

.blog-cat-pill span {
    width: 6px;
    height: 6px;
    background: var(--red);
    border-radius: 50%;
    display: block;
}

.blog-hero h1 {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: clamp(1.75rem, 4vw, 2.8rem);
    font-weight: 800;
    /* color: #fff; */
    line-height: 1.2;
    margin-bottom: 18px;
    max-width: 700px;
}

.blog-hero h1 em {
    font-style: normal;
    background: var(--grad-hot);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.blog-meta-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
    margin-bottom: 0;
}

.meta-author {
    display: flex;
    align-items: center;
    gap: 10px;
}

.meta-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--grad-hot);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 800;
    color: #fff;
    flex-shrink: 0;
}

.meta-author-name {
    font-size: 13px;
    font-weight: 700;
    /* color: rgba(255, 255, 255, .9); */
}

.meta-author-role {
    font-size: 11px;
    color: rgb(9 9 9 / 65%);
}

.meta-divider {
    width: 1px;
    height: 28px;
    background: rgb(50 50 50 / 35%);
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    /* color: rgba(255, 255, 255, .5); */
}

.meta-item i {
    font-size: 11px;
}

/* ── Featured Image ── */
.blog-featured-img {
    width: 100%;
    /* max-height: 460px; */
    object-fit: cover;
    border-radius: var(--radius);
    display: block;
}

.blog-featured-wrap {
    position: relative;
    margin-top: -28px;
}

.blog-featured-wrap::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: calc(var(--radius) + 1px);
    background: var(--grad-brand);
    z-index: 0;
    opacity: .5;
}

.blog-featured-wrap img {
    position: relative;
    z-index: 1;
    border-radius: var(--radius);
}

/* ── Layout: Article + Sidebar ── */
.blog-layout {
    padding-top: 52px;
}

/* ── Article Body ── */
.article-body {
    font-size: 16px;
    line-height: 1.85;
    color: #2a2a2a;
}

.article-body h2 {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 1.55rem;
    font-weight: 800;
    color: var(--dark);
    margin: 40px 0 14px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--surface);
}

.article-body h3 {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark);
    margin: 30px 0 10px;
}

.article-body p {
    margin-bottom: 20px;
}

.article-body a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
}

.article-body a:hover {
    text-decoration: underline;
}

.article-body ul,
.article-body ol {
    margin: 16px 0 24px 20px;
}

.article-body li {
    margin-bottom: 8px;
}

.article-body strong {
    font-weight: 700;
    color: var(--dark);
}

/* Pull quote */
.pull-quote {
    border-left: 4px solid var(--red);
    background: var(--surface);
    border-radius: 0 var(--radius) var(--radius) 0;
    padding: 20px 24px;
    margin: 32px 0;
    font-size: 1.05rem;
    font-style: italic;
    font-weight: 600;
    color: var(--dark);
    position: relative;
}

.pull-quote::before {
    content: '"';
    font-size: 4rem;
    color: var(--red);
    opacity: .15;
    position: absolute;
    top: -10px;
    left: 14px;
    font-family: Georgia, serif;
    line-height: 1;
}

/* Highlight box */
.highlight-box {
    background: linear-gradient(135deg, #fff8f8, #fff3ee);
    border: 1.5px solid rgba(227, 0, 27, .12);
    border-radius: var(--radius);
    padding: 24px 28px;
    margin: 32px 0;
}

.highlight-box h4 {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 1rem;
    font-weight: 800;
    color: var(--red);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.highlight-box ul {
    margin: 0;
    padding-left: 18px;
}

.highlight-box li {
    font-size: 14px;
    color: var(--muted);
    margin-bottom: 6px;
}

/* Stat cards inside article */
.article-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin: 32px 0;
}

.article-stat-card {
    background: #022a5d;
    border-radius: var(--radius);
    padding: 20px 16px;
    text-align: center;
}

.article-stat-card .num {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 1.8rem;
    font-weight: 900;
    color: #fff;
}

.article-stat-card .label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.571);
    margin-top: 0px;
}

/* Tags */
.article-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid #eee;
}

.tag-chip {
    background: var(--surface);
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 5px 14px;
    font-size: 12px;
    font-weight: 600;
    color: var(--muted);
    text-decoration: none;
    transition: all .18s;
}

.tag-chip:hover {
    background: var(--red);
    color: #fff;
    border-color: var(--red);
}

/* Author box */
.author-box {
    display: flex;
    gap: 20px;
    background: var(--surface);
    border-radius: var(--radius);
    padding: 28px;
    margin-top: 40px;
    border: 1px solid #e8e8e8;
}

.author-box-avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--grad-hot);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    font-weight: 900;
    color: #fff;
    flex-shrink: 0;
}

.author-box h5 {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 1.05rem;
    font-weight: 800;
    margin-bottom: 3px;
}

.author-box .role {
    font-size: 12px;
    color: var(--red);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-bottom: 8px;
}

.author-box p {
    font-size: 13.5px;
    color: var(--muted);
    line-height: 1.65;
    margin: 0;
}

/* Share bar */
.share-bar {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 18px 22px;
    background: #022a5d;
    border-radius: var(--radius);
    margin-top: 32px;
}

.share-bar .label {
    font-size: 12px;
    font-weight: 700;
    color: rgba(255, 255, 255, .5);
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-right: 4px;
}

.share-btn {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, .7);
    font-size: 13px;
    cursor: pointer;
    transition: all .18s;
    text-decoration: none;
}

.share-btn:hover {
    background: var(--red);
    border-color: var(--red);
    color: #fff;
}

.copy-link-btn {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 8px;
    padding: 7px 14px !important;
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, .7);
    cursor: pointer;
    transition: all .18s;
}

.copy-link-btn:hover {
    background: rgba(255, 255, 255, .15);
    color: #fff;
}

/* ── SIDEBAR ── */
.sidebar {
    position: sticky;
    top: 90px;
}

/* Search */
.sidebar-search-wrap {
    position: relative;
}

.sidebar-search {
    width: 100%;
    padding: 13px 48px 13px 16px;
    border: 1.5px solid #e0e0e0;
    border-radius: 10px;
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: var(--dark);
    background: #fff;
    outline: none;
    transition: border-color .2s, box-shadow .2s;
}

.sidebar-search:focus {
    border-color: var(--red);
    box-shadow: 0 0 0 3px rgba(227, 0, 27, .07);
}

.sidebar-search-btn {
    position: absolute;
    right: 7px;
    top: 50%;
    transform: translateY(-50%);
    width: 35px;
    height: 35px;
    background: var(--grad-hot);
    border: none;
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #fff;
    font-size: 12px;
    text-decoration: none;
}

/* Sidebar widget */
.sidebar-widget {
    background: #fff;
    border: 1.5px solid #ebebeb;
    border-radius: var(--radius);
    padding: 24px;
    margin-bottom: 24px;
}

.sidebar-widget-title {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: .85rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--muted);
    margin-bottom: 18px;
    padding-bottom: 12px;
    border-bottom: 1px solid #f0f0f0;
}

/* Latest post in sidebar */
.side-post {
    display: flex;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid #f3f3f3;
    text-decoration: none;
    color: inherit;
    transition: transform .18s;
}

.side-post:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.side-post:first-child {
    padding-top: 0;
}

.side-post:hover {
    transform: translateX(3px);
}

.side-post-thumb {
    width: 68px;
    height: 56px;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
    background: var(--surface);
}

.side-post-body {
    flex: 1;
    min-width: 0;
}

.side-post-cat {
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--red);
    margin-bottom: 4px;
}

.side-post-title {
    font-size: 13px;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.side-post-date {
    font-size: 11px;
    color: var(--muted);
    margin-top: 4px;
}

/* Category list */
.cat-list-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 9px 0;
    border-bottom: 1px solid #f3f3f3;
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
    text-decoration: none;
    transition: color .18s;
}

.cat-list-item:last-child {
    border-bottom: none;
}

.cat-list-item:hover {
    color: var(--red);
}

.cat-count {
    background: var(--surface);
    border-radius: 30px;
    padding: 4px 7px;
    font-size: 11px;
    font-weight: 700;
    color: var(--muted);
}

.cat-list-item:hover .cat-count {
    background: rgba(227, 0, 27, .1);
    color: var(--red);
}

/* CTA sidebar */
.sidebar-cta {
    background: var(--dark);
    border-radius: var(--radius);
    padding: 28px 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.sidebar-cta::before {
    content: '';
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(227, 0, 27, .25), transparent 65%);
    pointer-events: none;
}

.sidebar-cta h4 {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 1.15rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 8px;
    position: relative;
}

.sidebar-cta p {
    font-size: 13px;
    color: rgba(255, 255, 255, .5);
    margin-bottom: 18px;
    position: relative;
}

.btn-sidebar-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--grad-hot);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    padding: 10px 20px;
    border-radius: 9px;
    text-decoration: none;
    transition: opacity .2s;
    position: relative;
}

.btn-sidebar-cta:hover {
    opacity: .88;
    color: #fff;
}

/* ── Related Posts ── */
.related-section {
    padding: 60px 0;
    background: var(--surface);
}

.related-section .sec-title {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 1.7rem;
    font-weight: 800;
    margin-bottom: 6px;
}

/* ── Blog card (same as homepage) ── */
.blog-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #ebebeb;
    transition: transform .22s, box-shadow .22s;
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, .1);
}

.blog-thumb {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.blog-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s;
}

.blog-card:hover .blog-thumb img {
    transform: scale(1.04);
}

.blog-body {
    padding: 22px;
}

.blog-cat {
    display: inline-block;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
    border-radius: 6px;
    padding: 3px 10px;
    margin-bottom: 10px;
}

.bc-r {
    background: rgba(227, 0, 27, .1);
    color: var(--red);
}

.bc-o {
    background: rgba(255, 79, 1, .1);
    color: var(--orange);
}

.bc-g {
    background: rgba(0, 166, 81, .1);
    color: var(--green);
}

.bc-y {
    background: rgba(255, 204, 0, .15);
    color: #c49800;
}

.blog-card h5 {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: .95rem;
    font-weight: 800;
    line-height: 1.4;
    margin-bottom: 8px;
    color: var(--dark);
}

.blog-card p {
    font-size: 13.5px;
    color: var(--muted);
    line-height: 1.65;
    margin-bottom: 14px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* .blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: var(--muted);
    padding-top: 12px;
    border-top: 1px solid #f0f0f0;
} */

.blog-meta i {
    margin-right: 4px;
}

.blog-meta .fa-share-nodes {
    cursor: pointer;
    transition: color .18s;
}

.blog-meta .fa-share-nodes:hover {
    color: var(--red);
}

/* Read more link */
.read-more-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 700;
    color: var(--red);
    text-decoration: none;
    transition: gap .18s;
    margin-bottom: 14px;
}

.read-more-link:hover {
    gap: 10px;
    color: var(--red);
}

/* ── Progress bar ── */
.read-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: var(--grad-hot);
    z-index: 9999;
    width: 0%;
    transition: width .1s linear;
}

/* ── TOC ── */
.toc-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.toc-list li {
    margin-bottom: 6px;
}

.toc-list a {
    font-size: 13px;
    color: var(--muted);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 5px 0;
    border-left: 2px solid transparent;
    padding-left: 10px;
    transition: all .18s;
}

.toc-list a:hover,
.toc-list a.active {
    color: var(--red);
    border-left-color: var(--red);
    background: rgba(227, 0, 27, .04);
    border-radius: 0 6px 6px 0;
}

/* Search */
.search-wrap {
    position: relative;
    max-width: 620px;
    margin: 0 auto;
}

.search-input {
    width: 100%;
    padding: 16px 56px 16px 52px;
    border: 1.5px solid #e0e0e0;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 500;
    background: #fff;
    outline: none;
    transition: border-color .2s, box-shadow .2s;
    color: var(--dark);
}

.search-input:focus {
    border-color: var(--red);
    box-shadow: 0 0 0 3px rgba(227, 0, 27, .08);
}

.search-icon {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #aaa;
    font-size: 18px;
}

.search-clear {
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #aaa;
    cursor: pointer;
    font-size: 18px;
    display: none;
}

.search-input:not(:placeholder-shown)~.search-clear {
    display: block;
}

/* Category tabs */
.cat-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.cat-tab {
    padding: 8px 18px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    border: 1.5px solid #e0e0e0;
    background: #fff;
    color: var(--muted);
    cursor: pointer;
    transition: all .18s;
    white-space: nowrap;
}

.cat-tab:hover {
    border-color: var(--red);
    color: var(--red);
    background: #fff8f8;
}

.cat-tab.active {
    background: var(--grad-hot);
    border-color: transparent;
    color: #fff;
}

/* Product grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 14px;
}

/* Product card */
.product-card {
    background: #fff;
    border: 1.5px solid #ebebeb;
    border-radius: 14px;
    padding: 16px 12px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    cursor: pointer;
    transition: all .2s;
    text-decoration: none;
    color: inherit;
}

.product-card:hover {
    border-color: transparent;
    box-shadow: 0 6px 24px rgba(0, 0, 0, .09);
    transform: translateY(-2px);
}

.product-card:hover .arrow-icon {
    opacity: 1;
    transform: translateX(0);
}

/* Product icon box */
.p-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
    box-shadow: 3px 4px 4px 0px rgb(0 0 0 / 5%);
}

.product-card .arrow-icon {
    margin-left: auto;
    opacity: 0;
    transform: translateX(-4px);
    transition: all .2s;
    color: var(--red);
    font-size: 16px;
    flex-shrink: 0;
    align-self: center;
}

/* Section heading */
.section-head {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.section-head-line {
    flex: 1;
    height: 1.5px;
    background: #ebebeb;
}

/* No results */
.no-results {
    display: none;
    text-align: center;
    padding: 60px 20px;
}

/* Grad text */
.grad-text {
    background: var(--grad-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Category section */
.cat-section {
    display: block;
}

.cat-section.hidden {
    display: none;
}

/* Count badge */
.count-badge {
    background: var(--surface);
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
    padding: 2px 8px;
    color: var(--muted);
}

@media (max-width: 640px) {
    .products-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .product-card {
        padding: 14px;
        gap: 10px;
    }

    .p-icon {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }
}

@media (max-width: 400px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
}

/* ── Section tag (matches homepage) ── */
.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 10px;
}

/* 
.section-tag::before,
.section-tag::after {
    content: '';
    display: block;
    width: 20px;
    height: 1.5px;
    background: var(--grad-hot);
} */

/* ── GRADIENT UTILS ── */
.grad-text {
    background: var(--grad-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.grad-text-warm {
    background: var(--grad-warm);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* .grad-line {
            height: 2px;
            border-radius: 999px;
            background: var(--grad-brand);
            opacity: .18;
        } */

/* ── BADGE ── */
.badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 5px 13px;
    border-radius: 999px;
}

/* ── BUTTONS ── */
.btn-primary-hot {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: var(--grad-hot) !important;
    color: #fff;
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 600;
    font-size: .88rem;
    letter-spacing: .03em;
    padding: 11px 22px !important;
    border-radius: 9px;
    border: none;
    cursor: pointer;
    transition: opacity .2s, transform .2s;
    text-decoration: none;
    white-space: nowrap;
}

.btn-primary-hot:hover {
    opacity: .87;
    transform: translateY(-2px);
    color: #fff;
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: transparent;
    color: var(--dark);
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 600;
    font-size: .85rem;
    padding: 10px 20px;
    border-radius: 9px;
    border: 1.5px solid #e0e0e6;
    cursor: pointer;
    transition: border-color .2s, color .2s;
    text-decoration: none;
}

.btn-ghost:hover {
    border-color: var(--orange);
    color: var(--orange);
}

/* ── STAT PILL ── */
.stat-pill {
    background: #fff;
    border: 1.5px solid #e8e8ec;
    border-radius: 14px;
    padding: 18px 22px;
    transition: border-color .2s, box-shadow .2s;
}

.stat-pill:hover {
    border-color: rgba(255, 79, 1, .3);
    box-shadow: 0 4px 18px rgba(255, 79, 1, .07);
}

/* ── JOB CARDS ── */
.job-card {
    background: #fff;
    border: 1.5px solid #e8e8ec;
    border-radius: 18px;
    padding: 28px 26px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    transition: border-color .25s, box-shadow .25s, transform .25s;
    position: relative;
    overflow: hidden;
}

.job-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--grad-brand);
    opacity: 0;
    transition: opacity .25s;
}

.job-card:hover {
    /* border-color: transparent; */
    box-shadow: 0 10px 40px rgba(0, 0, 0, .09);
    transform: translateY(-4px);
}

/* ── ICON BUBBLE ── */
.icon-bbl {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* ── PERK CARD ── */
.perk-card {
    background: #fff5ed;
    border: 1.5px solid #ffb898;
    border-radius: 16px;
    padding: 28px 24px;
    transition: border-color .2s, box-shadow .2s;
}

.perk-card:hover {
    border-color: rgba(255, 79, 1, .3);
    box-shadow: 0 6px 24px rgba(255, 79, 1, .07);
}

/* ── TESTIMONIAL CARD ── */
.tcard {
    background: #fff;
    border: 1.5px solid #eaa77f;
    border-radius: 18px;
    padding: 26px 24px;
    break-inside: avoid;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
    transition: border-color .25s, box-shadow .25s, transform .25s;
    display: inline-block;
    width: 100%;
}

/* .tcard::before {
      content: '';
      position: absolute; top: 0; left: 0; right: 0; height: 3px;
      background: var(--grad-brand);
      opacity: 0; transition: opacity .25s;
    } */
.tcard:hover {
    border-color: transparent;
    box-shadow: 0 12px 40px rgba(0, 0, 0, .09);
    transform: translateY(-3px);
}

/* .tcard:hover::before { opacity: 1; } */

/* Quote icon */
.quote-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-bottom: 16px;
}

/* Stars */
.stars {
    display: flex;
    gap: 3px;
    margin-bottom: 14px;
}

.stars svg {
    flex-shrink: 0;
}

/* Card body text */
.tcard-text {
    font-size: .87rem;
    line-height: 1.75;
    color: var(--muted);
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.tcard.expanded .tcard-text {
    -webkit-line-clamp: unset;
}

.read-more {
    font-size: .75rem;
    font-weight: 700;
    color: var(--orange);
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    letter-spacing: .03em;
    margin-bottom: 18px;
    display: none;
}

.tcard.clipped .read-more {
    display: inline-block;
}

/* Divider */
.tcard-divider {
    height: 1px;
    background: #f0f0f4;
    margin-bottom: 18px;
}

/* Author row */
.author-row {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 2px solid #f0f0f4;
}

.author-avatar-fallback {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: .95rem;
    font-weight: 700;
    color: #fff;
}

.author-name {
    font-size: .88rem;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.3;
}

.author-role {
    font-size: .73rem;
    color: var(--muted);
    margin-top: 1px;
}

.company-logo {
    margin-left: auto;
    max-height: 26px;
    max-width: 80px;
    object-fit: contain;
    opacity: .7;
    flex-shrink: 0;
}

/* ── FEATURED CARD ── */
.tcard.featured {
    background: #fff3ee;
    border-color: #f76f36;
}

/* ── CTA STRIP ── */
.cta-strip {
    background: var(--surface);
    border-top: 1px solid #e8e8ec;
    border-bottom: 1px solid #e8e8ec;
    padding: 56px 0;
}

.btn-hot {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--grad-hot);
    color: #fff;
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 600;
    font-size: .9rem;
    padding: 13px 26px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: opacity .2s, transform .2s;
}

.btn-hot:hover {
    opacity: .87;
    transform: translateY(-2px);
    color: #fff;
}

/* ── MASONRY GRID ── */
.masonry-grid {
    columns: 3;
    column-gap: 20px;
    padding: 0;
}


.blog-pagination .page-numbers {
    display: inline-block;
    padding: 10px 15px;
    margin: 0 5px;
    border: 1px solid #ddd;
    color: #333;
    text-decoration: none;
    border-radius: 5px;
    line-height: 1.2
}

.blog-pagination .current {
    background: #ff5e14;
    color: #fff;
    border-color: #ff5e14;
}

.blog-pagination .page-numbers:hover {
    background: #ff5e14;
    color: #fff;
}

/* ─── MAP SECTION ─── */
.map-section {
    position: relative;
}

.map-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    border: 1.5px solid var(--border);
    box-shadow: 0 8px 40px rgba(0, 0, 0, .07);
    height: 480px;
    border: 2px solid #e6e3e4;
}

#map {
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* Leaflet popup custom */
.leaflet-popup-content-wrapper {
    border-radius: 14px !important;
    box-shadow: 0 12px 36px rgba(0, 0, 0, .14) !important;
    border: 1.5px solid var(--border) !important;
    padding: 0 !important;
    overflow: hidden;
}

.leaflet-popup-content {
    margin: 0 !important;
    width: 220px !important;
}

.leaflet-popup-tip-container {
    display: none;
}

.map-popup {
    padding: 16px 18px;
}

.map-popup .pop-flag {
    font-size: 1.3rem;
    margin-bottom: 6px;
}

.map-popup h6 {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: .92rem;
    font-weight: 800;
    color: var(--dark);
    margin: 0 0 4px;
}

.map-popup p {
    font-size: .75rem;
    color: var(--muted);
    margin: 0 0 10px;
    line-height: 1.5;
}

.map-popup a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: .72rem;
    font-weight: 700;
    color: #fff;
    background: var(--grad-hot);
    background: linear-gradient(135deg, #E3001B, #F07800);
    padding: 6px 14px;
    border-radius: 100px;
    text-decoration: none;
}

/* Office pill buttons on map */
.map-office-pills {
    position: absolute;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0px;
    flex-wrap: wrap;
    justify-content: center;
    z-index: 10;
    padding: 0 16px;
}

.map-pill {
    display: inline-flex !important;
    align-items: center !important;
    gap: 7px !important;
    padding: 10px 18px !important;
    border-radius: 0px !important;
    background: rgba(255, 255, 255, .95) !important;
    backdrop-filter: blur(8px) !important;
    border: 1.5px solid var(--border) !important;
    font-family: 'Manrope', sans-serif;
    font-size: 16px !important;
    font-weight: 700;
    color: var(--dark) !important;
    cursor: pointer;
    transition: all .2s;
    box-shadow: 0 4px 14px rgba(0, 0, 0, .1);
}

.map-pill:hover,
.map-pill.active {
    border-color: var(--orange);
    background: #fff;
    color: var(--orange);
}

.map-pill .flag {
    font-size: .9rem;
}

.map-pill .dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: linear-gradient(135deg, #E3001B, #F07800);
    flex-shrink: 0;
}

/* ─── OFFICE CARDS (replacing old Bootstrap cards) ─── */
.office-card {
    border: 1.5px solid #f6a200;
    border-radius: 18px;
    padding: 20px 26px 20px;
    background: #fffdf7;
    height: 100%;
    transition: box-shadow .22s, transform .22s, border-color .22s;
    position: relative;
    overflow: hidden;
}

.office-card:hover {
    box-shadow: 0 16px 44px rgba(0, 0, 0, .08);
    transform: translateY(-4px);
    border-color: transparent;
}

/* 
        .office-card:hover::before {
            opacity: 1;
        } */

.office-flag {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 14px;
    background: #ff4f01;
    color: #fff;
}

.office-city {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 1.05rem;
    font-weight: 800;
    color: #000000;
    margin-bottom: 10px;
}

.office-addr {
    font-size: .82rem;
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 14px;
}

.office-contact-row {
    display: flex;
    gap: 20px;
}

.office-contact-item .oc-label {
    font-size: .65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: #bbb;
    margin-bottom: 3px;
}

.office-contact-item a {
    font-size: .8rem;
    font-weight: 600;
    color: var(--dark);
    text-decoration: none;
}

.office-contact-item a:hover {
    color: var(--orange);
}

/* Case Study Details */
/* HERO META CARD */
.meta-card {
    border: 1.5px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
    background: var(--light);
    position: sticky;
    top: 90px;
}

.meta-row {
    padding: 16px 22px;
    border-bottom: 1.5px solid var(--border);
}

.meta-row:last-child {
    border-bottom: none;
}

.meta-label {
    font-size: .68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--muted);
    margin-bottom: 4px;
}

.meta-val {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: .92rem;
    font-weight: 700;
    color: var(--dark);
}

/* HERO IMAGE */
.hero-img-wrap {
    border-radius: 20px;
    overflow: hidden;
    border: 1.5px solid var(--border);
}

.hero-img-wrap img {
    width: 100%;
    display: block;
}

/* ARTICLE BODY */
.article-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 14px;
}

.article-tag::before {
    content: '';
    width: 22px;
    height: 1.5px;
    background: linear-gradient(90deg, #E3001B, #F07800);
}

.article-heading {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 23px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 12px;
    margin-top: 36px;
}

.article-text {
    font-size: .9rem;
    color: var(--muted);
    line-height: 1.78;
    margin-bottom: 14px;
}

.article-list {
    list-style: none;
    padding: 0;
    margin-bottom: 16px;
}

.article-list li {
    font-size: .9rem;
    color: var(--muted);
    line-height: 1.7;
    padding-left: 18px;
    position: relative;
    margin-bottom: 8px;
}

.article-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: .62rem;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: linear-gradient(135deg, #E3001B, #F07800);
}

.divider {
    height: 1.5px;
    background: var(--border);
    margin: 40px 0;
}

/* FEATURE TILES */
.feat-tile {
    border: 1.5px solid var(--border);
    border-radius: 14px;
    padding: 20px;
    background: #fff;
    height: 100%;
    transition: box-shadow .2s;
}

.feat-tile:hover {
    box-shadow: 0 8px 28px rgba(0, 0, 0, .07);
}

.feat-tile-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .88rem;
    margin-bottom: 12px;
}

.feat-tile h6 {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: .88rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.feat-tile p {
    font-size: .78rem;
    color: var(--muted);
    line-height: 1.6;
    margin: 0;
}

/* HIGHLIGHT BOX */
.highlight-box {
    border-left: 3px solid var(--orange);
    background: #fff8f2;
    border-radius: 0 12px 12px 0;
    padding: 18px 22px;
    margin: 20px 0;
}

.highlight-box .hl-label {
    font-size: .68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--orange);
    margin-bottom: 10px;
}

/* SCENARIO PILLS */
.scenario-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 10px;
    border: 1.5px solid #ffe0cc;
    background: #fff;
    font-size: .8rem;
    font-weight: 700;
    color: var(--dark);
}

.scenario-pill span {
    font-size: .7rem;
    font-weight: 800;
    color: var(--orange);
}

/* TEAM CARDS */
.team-mini {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 12px;
    border: 1.5px solid var(--border);
    background: #fff;
}

.team-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, #E3001B22, #F0780022);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: .75rem;
    font-weight: 800;
    color: var(--orange);
    flex-shrink: 0;
}

.team-mini h6 {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: .82rem;
    font-weight: 700;
    margin: 0;
}

.team-mini p {
    font-size: .7rem;
    color: var(--muted);
    margin: 0;
}

/* OUTCOME ITEMS */
.outcome-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 16px 18px;
    border-radius: 12px;
    border: 1.5px solid var(--border);
    background: #fff;
    margin-bottom: 10px;
}

.outcome-icon {
    font-size: 1rem;
    flex-shrink: 0;
    margin-top: 1px;
}

.outcome-item p {
    font-size: .88rem;
    color: var(--muted);
    margin: 0;
    line-height: 1.6;
}

/* CONCLUSION CARD */
.conclusion-card {
    background: #0f0f0f;
    border-radius: 18px;
    padding: 40px 40px;
}

.conclusion-card p {
    font-size: .9rem;
    color: rgba(255, 255, 255, .6);
    line-height: 1.8;
    margin: 0;
}

/* ZTAG */
.ztag {
    display: inline-block;
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .06em;
    padding: 4px 12px;
    border-radius: 100px;
    border: 1.5px solid #e2e2e2;
    color: #555;
    background: #fafafa;
}

/* SIDEBAR CTA */
.sidebar-cta {
    background: linear-gradient(135deg, #E3001B, #F07800);
    border-radius: 18px;
    padding: 28px 24px;
    color: #fff;
}

.sidebar-cta h5 {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 1rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.sidebar-cta p {
    font-size: .8rem;
    opacity: .8;
    line-height: 1.6;
    margin-bottom: 18px;
}

 /* ── ICON BUBBLE ── */
        .icon-bbl {
            width: 44px;
            height: 44px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        /* ── INDUSTRY CARD ── */
        .industry-card {
            background: #fff;
            border: 1.5px solid #e8e8ec;
            border-radius: 18px;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            transition: border-color .25s, box-shadow .25s, transform .25s;
        }

        .industry-card:hover {
            box-shadow: 0 10px 40px rgba(0, 0, 0, .09);
            transform: translateY(-4px);
        }

        .industry-card .industry-img {
            width: 100%;
            height: 190px;
            object-fit: cover;
            display: block;
        }

        .industry-card .industry-body {
            padding: 22px 24px 26px;
            display: flex;
            flex-direction: column;
            flex: 1;
            gap: 14px;
        }


@media (max-width:991px) {
    .contact-left {
        padding: 36px 28px;
    }

    .contact-right {
        padding: 32px 24px;
    }

    .map-wrapper {
        height: 380px;
    }
}

@media (max-width:575px) {
    .py-section {
        padding: 60px 0;
    }

    .office-contact-row {
        flex-direction: column;
        gap: 10px;
    }

    .map-office-pills {
        bottom: 12px;
    }
}

@media (max-width: 1024px) {
    .masonry-grid {
        columns: 2;
    }
}

@media (max-width: 640px) {
    .masonry-grid {
        columns: 1;
    }
}

/* ── Responsive ── */
@media (max-width: 991px) {
    .sidebar {
        position: static;
        margin-top: 48px;
    }

    .article-stats {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 576px) {
    .article-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .blog-hero h1 {
        font-size: 1.6rem;
    }

    .author-box {
        flex-direction: column;
        align-items: flex-start;
    }

    .share-bar {
        flex-wrap: wrap;
    }
}