:root {
    --navy-900: #081A33;
    --navy-800: #0A2647;
    --navy-700: #12345A;
    --blue-600: #2F6FED;
    --blue-500: #4A84FF;
    --blue-100: #EAF1FF;
    --teal-500: #00B8A9;
    --teal-100: #E3FBF8;
    --orange-500: #FF6B35;
    --orange-100: #FFEDE4;
    --ink-900: #0F1B2D;
    --ink-700: #33445C;
    --slate-500: #5B6B82;
    --slate-300: #93A2B8;
    --border-200: #E4E9F2;
    --bg-100: #F7F9FC;
    --bg-000: #FFFFFF;
    --gradient-hero: linear-gradient(135deg,#081A33 0%,#0A2647 38%,#12345A 68%,#2F6FED 130%);
    --gradient-accent: linear-gradient(120deg,#2F6FED 0%,#00B8A9 100%);
    --gradient-orange: linear-gradient(120deg,#FF6B35 0%,#FF9466 100%);
    --font-head: 'Plus Jakarta Sans', 'Segoe UI', system-ui, sans-serif;
    --font-body: 'Inter', 'Segoe UI', system-ui, sans-serif;
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 22px;
    --shadow-sm: 0 2px 10px rgba(10,38,71,.06);
    --shadow-md: 0 12px 32px rgba(10,38,71,.10);
    --shadow-lg: 0 24px 60px rgba(10,38,71,.16);
    --container-w: 1200px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--ink-900);
    background: var(--bg-000);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-head);
    color: var(--navy-800);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: .75rem;
}

h1 {
    font-size: clamp(2.1rem,4vw,3.4rem);
    font-weight: 800;
    letter-spacing: -.02em;
}

h2 {
    font-size: clamp(1.7rem,3vw,2.5rem);
    letter-spacing: -.01em;
}

h3 {
    font-size: 1.35rem;
}

p {
    color: var(--slate-500);
}

a {
    text-decoration: none;
    color: var(--blue-600);
}

img {
    max-width: 100%;
    display: block;
}

.container-xl {
    max-width: var(--container-w);
    margin: 0 auto;
    padding: 0 1.25rem;
}

section {
    position: relative;
}

.section-pad {
    padding: 5.5rem 0;
}

@media (max-width:768px) {
    .section-pad {
        padding: 3.25rem 0;
    }
}

.bg-soft {
    background: var(--bg-100);
}

.bg-navy {
    background: var(--navy-800);
    color: #fff;
}

    .bg-navy h2, .bg-navy h3, .bg-navy p {
        color: #fff;
    }

    .bg-navy p {
        color: rgba(255,255,255,.72);
    }

.kicker {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-family: var(--font-head);
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--blue-600);
    background: var(--blue-100);
    padding: .4rem .9rem;
    border-radius: 50px;
    margin-bottom: 1rem;
}

    .kicker.on-dark {
        background: rgba(255,255,255,.1);
        color: #8FB3FF;
    }

    .kicker.teal {
        background: var(--teal-100);
        color: #00877B;
    }

    .kicker.orange {
        background: var(--orange-100);
        color: #C2450F;
    }

.btn {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: .94rem;
    padding: .85rem 1.6rem;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    border: 2px solid transparent;
    transition: all .2s ease;
    cursor: pointer;
}

.btn-primary {
    background: var(--orange-500);
    color: #fff;
    box-shadow: 0 10px 24px rgba(255,107,53,.28);
}

    .btn-primary:hover {
        background: #e85a26;
        color: #fff;
        transform: translateY(-2px);
    }

.btn-outline-light {
    border-color: rgba(255,255,255,.4);
    color: #fff;
    background: transparent;
}

    .btn-outline-light:hover {
        background: rgba(255,255,255,.12);
        color: #fff;
    }

.btn-navy {
    background: var(--navy-800);
    color: #fff;
}

    .btn-navy:hover {
        background: var(--navy-900);
        color: #fff;
        transform: translateY(-2px);
    }

.btn-outline-navy {
    border-color: var(--navy-800);
    color: var(--navy-800);
    background: transparent;
}

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

.btn-sm {
    padding: .6rem 1.2rem;
    font-size: .85rem;
}

.btn-block {
    width: 100%;
    justify-content: center;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255,255,255,.92);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-200);
}

.topbar {
    background: var(--navy-900);
    color: rgba(255,255,255,.85);
    font-size: .82rem;
}

    .topbar .container-xl {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding-top: .45rem;
        padding-bottom: .45rem;
        flex-wrap: wrap;
        gap: .4rem;
    }

    .topbar a {
        color: rgba(255,255,255,.85);
    }

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

.topbar-item {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    margin-right: 1.1rem;
}

.navbar-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: .85rem 0;
}

.brand {
    display: flex;
    align-items: center;
    gap: .6rem;
    font-family: var(--font-head);
}

.brand-mark {
    width: 42px;
    height: 42px;
    border-radius: 11px;
    background: var(--gradient-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 800;
    font-size: 1.1rem;
    box-shadow: var(--shadow-sm);
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.05;
}

    .brand-text strong {
        font-size: 1.32rem;
        color: var(--navy-800);
        font-weight: 800;
        letter-spacing: -.01em;
    }

    .brand-text span {
        font-size: .68rem;
        color: var(--slate-500);
        letter-spacing: .05em;
        text-transform: uppercase;
        font-weight: 600;
    }

.nav-menu {
    display: flex;
    align-items: center;
    gap: 1.9rem;
}

    .nav-menu > li {
        position: relative;
        list-style: none;
    }

        .nav-menu > li > a {
            font-family: var(--font-head);
            font-weight: 600;
            font-size: .94rem;
            color: var(--ink-900);
            display: flex;
            align-items: center;
            gap: .3rem;
            padding: .5rem 0;
        }

            .nav-menu > li > a:hover, .nav-menu > li.active > a {
                color: var(--blue-600);
            }

        .nav-menu > li.has-mega {
            position: static;
        }

.mega {
    position: absolute;
    left: 0;
    top: 100%;
    width: 100%;
    background: #fff;
    border-top: 1px solid var(--border-200);
    box-shadow: var(--shadow-lg);
    border-radius: 0 0 var(--radius-md) var(--radius-md);
    padding: 2rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all .18s ease;
}

.has-mega:hover .mega {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mega-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 1.75rem;
    max-width: var(--container-w);
    margin: 0 auto;
    padding: 0 1.25rem;
}

.mega-col h6 {
    font-family: var(--font-head);
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .07em;
    text-transform: uppercase;
    color: var(--slate-300);
    margin-bottom: .85rem;
}

.mega-col a {
    display: flex;
    align-items: center;
    gap: .55rem;
    color: var(--ink-900);
    font-size: .9rem;
    font-weight: 500;
    padding: .4rem 0;
}

    .mega-col a:hover {
        color: var(--blue-600);
    }

    .mega-col a i {
        color: var(--blue-600);
        font-size: 1rem;
        width: 20px;
        text-align: center;
    }

.dropdown-simple {
    position: absolute;
    left: 0;
    top: 100%;
    min-width: 230px;
    background: #fff;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-lg);
    padding: .6rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all .18s ease;
}

.has-dropdown:hover .dropdown-simple {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-simple a {
    display: block;
    padding: .55rem .8rem;
    border-radius: 8px;
    color: var(--ink-900);
    font-size: .9rem;
    font-weight: 500;
}

    .dropdown-simple a:hover {
        background: var(--blue-100);
        color: var(--blue-600);
    }

.nav-cta {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--navy-800);
}

@media (max-width:991px) {
    .nav-menu {
        position: fixed;
        left: 0;
        right: 0;
        top: 100%;
        background: #fff;
        flex-direction: column;
        align-items: stretch;
        max-height: 0;
        overflow: auto;
        box-shadow: var(--shadow-md);
        transition: max-height .25s ease;
        gap: 0;
    }

        .nav-menu.open {
            max-height: 80vh;
            padding: .5rem 1.25rem 1.5rem;
        }

        .nav-menu > li {
            border-bottom: 1px solid var(--border-200);
        }

    .mega, .dropdown-simple {
        position: static;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        max-height: 0;
        overflow: hidden;
        padding: 0;
    }

    .has-mega.open .mega, .has-dropdown.open .dropdown-simple {
        display: block;
        max-height: 1000px;
        padding: .5rem 0 1rem;
    }

    .mega-grid {
        grid-template-columns: repeat(2,1fr);
        gap: 1rem;
        padding: 0;
    }

    .nav-toggle {
        display: block;
    }

    .nav-cta .btn-navy-phone {
        display: none;
    }
}

.hero {
    background: var(--gradient-hero);
    color: #fff;
    padding: 6rem 0 7rem;
    position: relative;
    overflow: hidden;
}

    .hero::before {
        content: "";
        position: absolute;
        inset: 0;
        background-image: radial-gradient(circle at 85% 20%, rgba(255,255,255,.08) 0, transparent 45%), radial-gradient(circle at 10% 90%, rgba(0,184,169,.18) 0, transparent 45%);
        pointer-events: none;
    }

    .hero .container-xl {
        position: relative;
        z-index: 1;
    }

    .hero h1 {
        color: #fff;
    }

    .hero p.lead {
        color: rgba(255,255,255,.78);
        font-size: 1.15rem;
        max-width: 640px;
    }

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: .6rem;
    margin-bottom: 1.4rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.18);
    padding: .4rem .85rem;
    border-radius: 50px;
    font-size: .78rem;
    font-weight: 600;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .9rem;
    margin-top: 1.8rem;
}

.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 2.2rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,.14);
}

    .hero-stats .num {
        font-family: var(--font-head);
        font-size: 1.9rem;
        font-weight: 800;
        color: #fff;
    }

    .hero-stats .lbl {
        font-size: .8rem;
        color: rgba(255,255,255,.65);
    }

.hero-visual {
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.14);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    backdrop-filter: blur(6px);
}

    .hero-visual .mini-card {
        background: rgba(255,255,255,.07);
        border: 1px solid rgba(255,255,255,.12);
        border-radius: var(--radius-md);
        padding: 1.1rem 1.3rem;
        margin-bottom: .8rem;
        display: flex;
        align-items: center;
        gap: .9rem;
    }

        .hero-visual .mini-card i {
            font-size: 1.35rem;
            color: #00E0CC;
        }

        .hero-visual .mini-card strong {
            display: block;
            font-size: .92rem;
            color: #fff;
        }

        .hero-visual .mini-card span {
            font-size: .76rem;
            color: rgba(255,255,255,.6);
        }

.page-hero {
    background: var(--gradient-hero);
    color: #fff;
    padding: 3.6rem 0 3.4rem;
}

    .page-hero .breadcrumb-row {
        font-size: .85rem;
        color: rgba(255,255,255,.6);
        margin-bottom: .9rem;
    }

        .page-hero .breadcrumb-row a {
            color: rgba(255,255,255,.75);
        }

    .page-hero h1 {
        color: #fff;
        margin-bottom: .6rem;
    }

    .page-hero p {
        color: rgba(255,255,255,.78);
        max-width: 680px;
        margin-bottom: 0;
    }

.trust-bar {
    padding: 1.6rem 0;
    border-bottom: 1px solid var(--border-200);
}

    .trust-bar .trust-label {
        font-size: .78rem;
        font-weight: 700;
        letter-spacing: .06em;
        text-transform: uppercase;
        color: var(--slate-300);
    }

.trust-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 2.4rem;
    margin-top: .9rem;
}

    .trust-row .pill {
        display: flex;
        align-items: center;
        gap: .5rem;
        font-weight: 700;
        color: var(--navy-700);
        font-family: var(--font-head);
        font-size: .95rem;
    }

        .trust-row .pill i {
            color: var(--blue-600);
            font-size: 1.2rem;
        }

.card-soft {
    background: #fff;
    border: 1px solid var(--border-200);
    border-radius: var(--radius-md);
    padding: 1.9rem;
    transition: all .2s ease;
    height: 100%;
}

    .card-soft:hover {
        box-shadow: var(--shadow-md);
        transform: translateY(-4px);
        border-color: transparent;
    }

.card-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--blue-100);
    color: var(--blue-600);
    font-size: 1.4rem;
    margin-bottom: 1.1rem;
}

    .card-icon.teal {
        background: var(--teal-100);
        color: #00877B;
    }

    .card-icon.orange {
        background: var(--orange-100);
        color: #C2450F;
    }

.card-soft h3 {
    font-size: 1.12rem;
    margin-bottom: .5rem;
}

.card-soft p {
    font-size: .92rem;
    margin-bottom: 0;
}

.product-tile {
    background: #fff;
    border: 1px solid var(--border-200);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    display: flex;
    gap: 1rem;
    height: 100%;
    transition: all .2s ease;
}

    .product-tile:hover {
        box-shadow: var(--shadow-md);
        transform: translateY(-3px);
        border-color: transparent;
    }

    .product-tile .p-icon {
        flex: none;
        width: 46px;
        height: 46px;
        border-radius: 12px;
        background: var(--gradient-accent);
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        font-size: 1.2rem;
    }

    .product-tile h4 {
        font-size: 1rem;
        margin-bottom: .3rem;
        color: var(--navy-800);
        font-family: var(--font-head);
        font-weight: 700;
    }

    .product-tile p {
        font-size: .85rem;
        margin-bottom: .5rem;
    }

    .product-tile .tile-link {
        font-size: .8rem;
        font-weight: 700;
        color: var(--blue-600);
    }

    .product-tile.soon {
        opacity: .75;
    }

    .product-tile .soon-tag {
        font-size: .65rem;
        background: var(--bg-100);
        color: var(--slate-500);
        padding: .15rem .5rem;
        border-radius: 50px;
        font-weight: 700;
        margin-left: .4rem;
    }

.stat-block {
    text-align: center;
    padding: 1.5rem 1rem;
}

    .stat-block .num {
        font-family: var(--font-head);
        font-size: 2.4rem;
        font-weight: 800;
        color: var(--navy-800);
    }

    .stat-block .lbl {
        font-size: .88rem;
        color: var(--slate-500);
        font-weight: 600;
    }

.process-step {
    position: relative;
    padding-left: 0;
}

.process-num {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--navy-800);
    color: #fff;
    font-family: var(--font-head);
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.process-line {
    position: absolute;
    top: 24px;
    left: 48px;
    right: -24px;
    height: 2px;
    background: var(--border-200);
}

/* Inline numbered step rows used in card-soft "Implementation Process" blocks (industry pages) */
.card-soft .process-step {
    display: flex;
    gap: .85rem;
    align-items: flex-start;
    margin-bottom: 1.1rem;
}

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

.step-num {
    width: 34px;
    height: 34px;
    min-width: 34px;
    border-radius: 50%;
    background: var(--navy-800);
    color: #fff;
    font-family: var(--font-head);
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .85rem;
}

.faq-item {
    border-bottom: 1px solid var(--border-200);
}

.faq-q {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 1.25rem 0;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 1.02rem;
    color: var(--navy-800);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
}

    .faq-q i {
        transition: transform .2s ease;
        color: var(--blue-600);
        flex: none;
    }

.faq-item.open .faq-q i {
    transform: rotate(180deg);
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .25s ease;
}

    .faq-a p {
        padding-bottom: 1.25rem;
        margin: 0;
    }

.testi-card {
    background: #fff;
    border: 1px solid var(--border-200);
    border-radius: var(--radius-md);
    padding: 1.9rem;
    height: 100%;
}

.testi-stars {
    color: #FFB800;
    font-size: .9rem;
    margin-bottom: .8rem;
}

.testi-card p.quote {
    color: var(--ink-700);
    font-style: italic;
    font-size: .96rem;
}

.testi-person {
    display: flex;
    align-items: center;
    gap: .75rem;
    margin-top: 1.2rem;
}

.testi-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--gradient-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-family: var(--font-head);
}

.testi-person strong {
    display: block;
    font-size: .9rem;
    color: var(--navy-800);
}

.testi-person span {
    font-size: .78rem;
    color: var(--slate-500);
}

.cta-band {
    background: var(--gradient-hero);
    color: #fff;
    border-radius: var(--radius-lg);
    padding: 3.2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    position: relative;
    overflow: hidden;
}

    .cta-band::after {
        content: "";
        position: absolute;
        right: -60px;
        top: -60px;
        width: 220px;
        height: 220px;
        border-radius: 50%;
        background: rgba(0,184,169,.18);
    }

    .cta-band h2 {
        color: #fff;
        margin-bottom: .5rem;
    }

    .cta-band p {
        color: rgba(255,255,255,.75);
        margin-bottom: 0;
    }

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

    .check-list li {
        display: flex;
        align-items: flex-start;
        gap: .6rem;
        margin-bottom: .7rem;
        font-size: .95rem;
        color: var(--ink-700);
    }

        .check-list li i {
            color: var(--teal-500);
            margin-top: .2rem;
            flex: none;
        }

.badge-soft {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    background: var(--blue-100);
    color: var(--blue-600);
    padding: .3rem .75rem;
    border-radius: 50px;
    font-size: .76rem;
    font-weight: 700;
}

.site-footer {
    background: var(--navy-900);
    color: rgba(255,255,255,.65);
    padding: 4.5rem 0 0;
}

    .site-footer h6 {
        color: #fff;
        font-family: var(--font-head);
        font-size: .85rem;
        font-weight: 800;
        letter-spacing: .04em;
        text-transform: uppercase;
        margin-bottom: 1.2rem;
    }

    .site-footer a {
        color: rgba(255,255,255,.6);
        font-size: .9rem;
    }

        .site-footer a:hover {
            color: #fff;
        }

.footer-links li {
    margin-bottom: .65rem;
    list-style: none;
}

.footer-brand p {
    color: rgba(255,255,255,.55);
    font-size: .9rem;
    max-width: 320px;
}

.footer-social {
    display: flex;
    gap: .7rem;
    margin-top: 1.2rem;
}

    .footer-social a {
        width: 38px;
        height: 38px;
        border-radius: 50%;
        background: rgba(255,255,255,.08);
        display: flex;
        align-items: center;
        justify-content: center;
    }

        .footer-social a:hover {
            background: var(--blue-600);
        }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.1);
    margin-top: 3rem;
    padding: 1.4rem 0;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: .8rem;
    font-size: .82rem;
}

.footer-newsletter input {
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 50px;
    padding: .75rem 1.1rem;
    color: #fff;
    width: 100%;
    margin-bottom: .7rem;
    font-size: .88rem;
}

    .footer-newsletter input::placeholder {
        color: rgba(255,255,255,.45);
    }

.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 999;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.7rem;
    box-shadow: 0 10px 30px rgba(37,211,102,.4);
    animation: pulse 2.4s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37,211,102,.5);
    }

    70% {
        box-shadow: 0 0 0 14px rgba(37,211,102,0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37,211,102,0);
    }
}

.back-to-top {
    position: fixed;
    bottom: 24px;
    right: 92px;
    z-index: 999;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--navy-800);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all .2s ease;
}

    .back-to-top.show {
        opacity: 1;
        visibility: visible;
    }

.breadcrumb-pills {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
}

    .breadcrumb-pills a, .breadcrumb-pills span {
        font-size: .8rem;
        color: rgba(255,255,255,.65);
    }

/* ---------- HubSpot-style mega nav enhancements ---------- */
.mega-wrap {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 0;
    max-width: var(--container-w);
    margin: 0 auto;
}

.mega-intro {
    background: var(--bg-100);
    border-right: 1px solid var(--border-200);
    padding: 1.75rem 1.75rem 1.5rem;
    border-radius: var(--radius-md) 0 0 var(--radius-md);
}

    .mega-intro h5 {
        font-family: var(--font-head);
        font-size: 1rem;
        font-weight: 800;
        color: var(--navy-800);
        margin-bottom: .5rem;
    }

    .mega-intro p {
        font-size: .84rem;
        color: var(--slate-500);
        margin-bottom: 1.1rem;
    }

    .mega-intro .btn {
        width: 100%;
        justify-content: center;
    }

    .mega-intro .mega-stats {
        display: flex;
        gap: 1.2rem;
        margin-top: 1.3rem;
        padding-top: 1.1rem;
        border-top: 1px solid var(--border-200);
    }

        .mega-intro .mega-stats div {
            font-family: var(--font-head);
        }

        .mega-intro .mega-stats strong {
            display: block;
            font-size: 1.15rem;
            color: var(--navy-800);
        }

        .mega-intro .mega-stats span {
            font-size: .68rem;
            color: var(--slate-500);
        }

.mega-body {
    padding: 1.75rem 2rem;
}

    .mega-body .mega-grid {
        grid-template-columns: repeat(4,1fr);
        gap: 1.75rem;
        max-width: none;
        margin: 0;
        padding: 0;
    }

.mega-col a small {
    display: block;
    font-size: .72rem;
    color: var(--slate-500);
    font-weight: 400;
    margin-top: -.15rem;
    margin-bottom: .15rem;
}

.mega-col a {
    align-items: flex-start;
}

    .mega-col a i {
        margin-top: .15rem;
    }

/* Mega-grid links used WITHOUT a .mega-col wrapper (e.g. Services flat 2-col grid) */
.mega-body .mega-grid > a {
    display: flex;
    align-items: flex-start;
    gap: .6rem;
    padding: .55rem .6rem;
    border-radius: 8px;
    color: var(--ink-900);
    text-decoration: none;
}

    .mega-body .mega-grid > a:hover {
        background: var(--blue-100);
    }

        .mega-body .mega-grid > a:hover strong {
            color: var(--blue-600);
        }

    .mega-body .mega-grid > a i {
        color: var(--blue-600);
        font-size: 1.05rem;
        width: 20px;
        text-align: center;
        margin-top: .15rem;
        flex: none;
    }

    .mega-body .mega-grid > a span {
        display: flex;
        flex-direction: column;
    }

    .mega-body .mega-grid > a strong {
        font-size: .9rem;
        font-weight: 700;
        color: var(--ink-900);
    }

    .mega-body .mega-grid > a small {
        display: block;
        font-size: .76rem;
        color: var(--slate-500);
        font-weight: 400;
        margin-top: .1rem;
    }

.dropdown-rich {
    min-width: 300px;
    padding: .75rem;
}

    .dropdown-rich a {
        display: flex;
        align-items: flex-start;
        gap: .65rem;
        padding: .6rem .7rem;
        border-radius: 8px;
    }

        .dropdown-rich a:hover {
            background: var(--blue-100);
        }

        .dropdown-rich a i {
            color: var(--blue-600);
            font-size: 1.05rem;
            margin-top: .2rem;
            flex: none;
            width: 20px;
            text-align: center;
        }

        .dropdown-rich a strong {
            display: block;
            font-size: .9rem;
            color: var(--ink-900);
            font-weight: 700;
        }

        .dropdown-rich a span {
            display: block;
            font-size: .76rem;
            color: var(--slate-500);
            margin-top: .1rem;
        }

.util-bar {
    background: var(--bg-100);
    border-bottom: 1px solid var(--border-200);
    font-size: .78rem;
    color: var(--slate-500);
}

    .util-bar .container-xl {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding-top: .5rem;
        padding-bottom: .5rem;
        flex-wrap: wrap;
        gap: .4rem;
    }

    .util-bar a {
        color: var(--slate-500);
        font-weight: 500;
    }

        .util-bar a:hover {
            color: var(--blue-600);
        }

    .util-bar .util-item {
        display: inline-flex;
        align-items: center;
        gap: .35rem;
        margin-right: 1.1rem;
    }

    .util-bar .util-cta {
        color: var(--navy-800);
        font-weight: 700;
    }

.nav-cta-group {
    display: flex;
    align-items: center;
    gap: .7rem;
}

.btn-text-phone {
    color: var(--navy-800);
    font-weight: 700;
    font-size: .88rem;
    display: inline-flex;
    align-items: center;
    gap: .4rem;
}

.nav-contact-link {
    color: var(--navy-800);
    font-weight: 700;
    font-size: .88rem;
    display: inline-flex;
    align-items: center;
    gap: .4rem;
}

    .nav-contact-link:hover {
        color: var(--blue-600);
    }

@media (max-width:991px) {
    .mega-wrap {
        grid-template-columns: 1fr;
    }

    .mega-intro {
        border-right: none;
        border-bottom: 1px solid var(--border-200);
        border-radius: 0;
    }

    .mega-body {
        padding: 1rem 0;
    }

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

.text-teal {
    color: var(--teal-500) !important;
}

.text-orange {
    color: var(--orange-500) !important;
}

.text-blue {
    color: var(--blue-600) !important;
}

.fw-800 {
    font-weight: 800;
}

.divider-sm {
    width: 56px;
    height: 4px;
    background: var(--gradient-accent);
    border-radius: 4px;
    margin-bottom: 1.2rem;
}

.narrow-lead {
    max-width: 640px;
    color: var(--slate-500);
}

.gap-lg {
    gap: 2.5rem;
}

/* =========================================================================
   Lead-capture widget (hero, top-right desktop / top mobile)
   ========================================================================= */
.lead-widget {
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 50px rgba(6,20,40,.35);
    padding: 1.5rem 1.5rem 1.1rem;
    position: relative;
    overflow: hidden;
}

    .lead-widget::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 5px;
        background: var(--gradient-accent);
    }

    .lead-widget .lw-icon {
        width: 46px;
        height: 46px;
        border-radius: 12px;
        background: var(--gradient-accent);
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        font-size: 1.3rem;
        margin-bottom: .85rem;
    }

    .lead-widget h3 {
        font-family: var(--font-head);
        font-size: 1.05rem;
        font-weight: 800;
        color: var(--navy-800);
        margin-bottom: .3rem;
    }

    .lead-widget p {
        font-size: .82rem;
        color: var(--slate-500);
        margin-bottom: 1rem;
    }

    .lead-widget iframe {
        border-radius: 8px;
    }

    .lead-widget .lw-trust {
        display: flex;
        align-items: center;
        gap: .4rem;
        font-size: .72rem;
        color: var(--slate-500);
        margin-top: .85rem;
        padding-top: .85rem;
        border-top: 1px solid var(--border-200);
    }

        .lead-widget .lw-trust i {
            color: #16a34a;
        }

@media (max-width:991px) {
    .lead-widget {
        margin-bottom: 1.75rem;
    }
}

/* =========================================================================
   Book Free Consultation — popup modal (built by main.js)
   ========================================================================= */
.lead-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(8,20,40,.62);
    backdrop-filter: blur(3px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.25rem;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: opacity .25s ease;
}

    .lead-modal-overlay.open {
        opacity: 1;
        visibility: visible;
    }

.lead-modal {
    background: #fff;
    border-radius: var(--radius-lg);
    max-width: 480px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 1.9rem 1.75rem 1.25rem;
    position: relative;
    transform: translateY(16px);
    transition: transform .25s ease;
    box-shadow: var(--shadow-lg);
}

.lead-modal-overlay.open .lead-modal {
    transform: translateY(0);
}

.lead-modal-close {
    position: absolute;
    top: .9rem;
    right: .9rem;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: none;
    background: var(--bg-100);
    color: var(--navy-800);
    font-size: 1.4rem;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .lead-modal-close:hover {
        background: var(--blue-100);
        color: var(--blue-600);
    }

.lead-modal-head {
    text-align: center;
    margin-bottom: 1rem;
}

.lead-modal-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: var(--gradient-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
    margin: 0 auto .9rem;
}

.lead-modal-head h3 {
    font-family: var(--font-head);
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--navy-800);
    margin-bottom: .4rem;
}

.lead-modal-head p {
    font-size: .86rem;
    color: var(--slate-500);
    margin-bottom: 0;
}

body.lead-modal-lock {
    overflow: hidden;
}

/* =========================================================================
   Brand logo image (replaces text mark) + dark-background variant
   ========================================================================= */
.brand-logo {
    height: 70px;
    width: auto;
    display: block;
    object-fit: contain;
}

.brand-logo-dark {
    display: none;
}

.footer-brand .brand-logo-light {
    display: none;
}

.footer-brand .brand-logo-dark {
    display: block;
}


.footer-logo {
    display: block;
    width: 200px; /* apne hisab se 240-300 kar sakta hai */
    height: auto;
    object-fit: contain;
}

/* =========================================================================
   Blog
   ========================================================================= */
.blog-filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: .6rem;
    margin-bottom: 2.2rem;
}

    .blog-filter-bar button {
        border: 1px solid var(--border-200);
        background: #fff;
        color: var(--navy-700);
        font-family: var(--font-head);
        font-weight: 700;
        font-size: .82rem;
        padding: .5rem 1.1rem;
        border-radius: 50px;
        cursor: pointer;
        transition: all .18s ease;
    }

        .blog-filter-bar button:hover {
            border-color: var(--blue-600);
            color: var(--blue-600);
        }

        .blog-filter-bar button.active {
            background: var(--navy-800);
            border-color: var(--navy-800);
            color: #fff;
        }

.blog-card {
    background: #fff;
    border: 1px solid var(--border-200);
    border-radius: var(--radius-md);
    overflow: hidden;
    height: 100%;
    transition: all .2s ease;
    display: flex;
    flex-direction: column;
}

    .blog-card:hover {
        box-shadow: var(--shadow-md);
        transform: translateY(-4px);
        border-color: transparent;
    }

.blog-card-img {
    height: 170px;
    background: var(--gradient-hero);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 2.2rem;
}

.blog-card-body {
    padding: 1.4rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.blog-card-meta {
    display: flex;
    align-items: center;
    gap: .6rem;
    font-size: .72rem;
    color: var(--slate-500);
    margin-bottom: .6rem;
    text-transform: uppercase;
    letter-spacing: .04em;
    font-weight: 700;
}

    .blog-card-meta .cat-pill {
        background: var(--blue-100);
        color: var(--blue-600);
        padding: .2rem .6rem;
        border-radius: 50px;
    }

.blog-card h3 {
    font-size: 1.02rem;
    margin-bottom: .5rem;
}

.blog-card p {
    font-size: .86rem;
    color: var(--slate-500);
    margin-bottom: 1rem;
    flex: 1;
}

.blog-card .tile-link {
    font-size: .8rem;
    font-weight: 700;
    color: var(--blue-600);
}

.blog-post-body {
    max-width: 760px;
    margin: 0 auto;
    font-size: 1.02rem;
    line-height: 1.75;
}

    .blog-post-body h2 {
        margin-top: 2.2rem;
        margin-bottom: .8rem;
        font-size: 1.4rem;
    }

    .blog-post-body h3 {
        margin-top: 1.6rem;
        margin-bottom: .6rem;
        font-size: 1.15rem;
    }

    .blog-post-body p {
        margin-bottom: 1.1rem;
        color: var(--ink-900);
    }

    .blog-post-body ul {
        margin-bottom: 1.1rem;
        padding-left: 1.3rem;
    }

    .blog-post-body li {
        margin-bottom: .4rem;
    }

.blog-post-hero-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .9rem;
    font-size: .82rem;
    color: rgba(255,255,255,.75);
    margin-top: .6rem;
}

/* Blog post layout: share rail (left) + article + related/CTA rail (right) */
.blog-post-layout {
    display: grid;
    grid-template-columns: 64px minmax(0,760px) 280px;
    gap: 2.75rem;
    max-width: 1180px;
    margin: 0 auto;
    align-items: start;
    justify-content: center;
}

    .blog-post-layout .blog-post-body {
        max-width: none;
        margin: 0;
    }

.blog-share-rail {
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .65rem;
}

    .blog-share-rail .bsr-label {
        font-size: .64rem;
        font-weight: 800;
        letter-spacing: .08em;
        text-transform: uppercase;
        color: var(--slate-300);
        margin-bottom: .25rem;
        text-align: center;
    }

.bsr-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-100);
    border: 1px solid var(--border-200);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy-800);
    font-size: 1.05rem;
    transition: all .2s ease;
    flex: none;
}

    .bsr-btn:hover {
        background: var(--blue-600);
        border-color: var(--blue-600);
        color: #fff;
        transform: translateY(-2px);
    }

    .bsr-btn.copied {
        background: var(--teal-500);
        border-color: var(--teal-500);
        color: #fff;
    }

.blog-side-rail {
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    gap: 1.6rem;
}

.bsr-card {
    background: var(--bg-100);
    border: 1px solid var(--border-200);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    text-align: center;
}

.bsr-card-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--gradient-accent);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto .8rem;
    font-size: 1.2rem;
}

.bsr-card h4 {
    font-size: .96rem;
    margin-bottom: .4rem;
}

.bsr-card p {
    font-size: .82rem;
    color: var(--slate-500);
    margin-bottom: 1.1rem;
}

.bsr-related h6 {
    font-family: var(--font-head);
    font-size: .7rem;
    font-weight: 800;
    letter-spacing: .07em;
    text-transform: uppercase;
    color: var(--slate-300);
    margin-bottom: .9rem;
}

.bsr-related-link {
    display: flex;
    flex-direction: column;
    gap: .3rem;
    padding: .85rem 0;
    border-bottom: 1px solid var(--border-200);
    font-size: .86rem;
    color: var(--ink-900);
    font-weight: 600;
    line-height: 1.35;
}

    .bsr-related-link:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }

    .bsr-related-link:hover {
        color: var(--blue-600);
    }

.cat-pill-sm {
    font-size: .65rem;
    font-weight: 700;
    color: var(--blue-600);
    text-transform: uppercase;
    letter-spacing: .04em;
}

@media (max-width:1199px) {
    .blog-post-layout {
        grid-template-columns: 56px minmax(0,1fr);
        max-width: 820px;
    }

    .blog-side-rail {
        display: none;
    }
}

@media (max-width:767px) {
    .blog-post-layout {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .blog-share-rail {
        position: static;
        flex-direction: row;
        justify-content: center;
    }

        .blog-share-rail .bsr-label {
            display: none;
        }
}


.site-header .brand img.brand-logo {
    height: 70px !important;
    width: auto !important;
    max-width: none !important;
    display: block !important;
    object-fit: contain !important;
}
