﻿/* =========================
   BASE TYPOGRAPHY
========================= */
@layer base {
    html {
        font-family: 'Inter', system-ui, sans-serif;
    }

    body {
        @apply text-slate-700 antialiased;
    }

    h1, h2, h3 {
        @apply text-slate-900;
    }
}
/* ✅ GLOBAL CLICKABLE CURSOR */
a, button, [role="button"], .btn, .link {
    cursor: pointer !important;
}

    /* ✅ Make all links look more interactive (optional but recommended) */
    a:hover {
        opacity: 0.95;
        text-decoration: none;
    }

a {
    transition: all .2s ease;
}

/* ✅ consistent nav styling */
.navItem {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    font-size: 14px;
    color: #334155;
    text-decoration: none;
    padding: 8px 2px;
    transition: .2s;
    cursor: pointer;
}

    .navItem:hover {
        color: #2563eb;
    }

/* NavLink active */
a.navItem.active {
    color: #2563eb;
}
/* Navbar logo enhancement (sharp + readable) */
.navbar-logo {
    /* boost readability */
    filter: contrast(1.25) saturate(1.15) brightness(1.05);
    /* make it sharper (important) */
    image-rendering: -webkit-optimize-contrast;
    /* avoid blur on scaling */
    transform: translateZ(0);
    backface-visibility: hidden;
    /* smooth resize */
    display: block;
}

/* ✅ make mega button same as others */
.solMegaBtn {
    border: none;
    background: transparent;
}

/* =========================
   GLOBAL SECTION SPACING
========================= */

.page-section {
    padding-top: 96px;
    padding-bottom: 96px;
}

/* Large hero / special sections */
.page-section-lg {
    padding-top: 120px;
    padding-bottom: 120px;
}

/* Compact sections (if ever needed) */
.page-section-sm {
    padding-top: 64px;
    padding-bottom: 64px;
}

/* Mobile tuning */
@media (max-width: 768px) {
    .page-section {
        padding-top: 72px;
        padding-bottom: 72px;
    }

    .page-section-lg {
        padding-top: 96px;
        padding-bottom: 96px;
    }
}

/* =========================
   HERO IMAGE BLEND
========================= */
.hero-blend-image {
    -webkit-mask-image: radial-gradient( circle at center, rgba(0,0,0,1) 60%, rgba(0,0,0,0.85) 70%, rgba(0,0,0,0.5) 80%, rgba(0,0,0,0) 100% );
    mask-image: radial-gradient( circle at center, rgba(0,0,0,1) 60%, rgba(0,0,0,0.85) 70%, rgba(0,0,0,0.5) 80%, rgba(0,0,0,0) 100% );
}
/* ===============================
   TALK TO EXPERT DROPDOWN
================================ */

/* ===============================
   TALK TO EXPERT DROPDOWN - PREMIUM
================================ */

.expert-dd {
    position: relative;
}

/* button */
.expert-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    height: 46px;
    padding: 0 22px;
    border-radius: 999px;
    background: linear-gradient(180deg,#2563eb,#1d4ed8);
    color: #fff;
    font-size: 14px;
    font-weight: 900;
    text-decoration: none;
    box-shadow: 0 18px 55px rgba(37,99,235,.35);
    transition: .25s ease;
    position: relative;
    overflow: hidden;
}

    .expert-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 30px 95px rgba(37,99,235,.45);
    }

    /* shine effect on button */
    .expert-btn::before {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at 30% 15%, rgba(255,255,255,.40), transparent 55%);
        opacity: .7;
        pointer-events: none;
    }

    .expert-btn::after {
        content: "▾";
        font-size: 13px;
        font-weight: 900;
        opacity: .95;
    }

/* dropdown panel */
.expert-menu {
    position: absolute;
    right: 0;
    top: calc(100% + 14px);
    width: 360px;
    padding: 14px;
    border-radius: 22px;
    /* glass bg */
    background: rgba(255,255,255,.80);
    border: 1px solid rgba(255,255,255,.85);
    box-shadow: 0 40px 120px rgba(15,23,42,.22), 0 20px 60px rgba(37,99,235,.12), inset 0 1px 0 rgba(255,255,255,.9);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    transform-origin: top right;
    transform: translateY(14px) scale(.96);
    opacity: 0;
    visibility: hidden;
    transition: .22s ease;
    z-index: 100;
    overflow: hidden;
}

    /* Premium glow overlay */
    .expert-menu::before {
        content: "";
        position: absolute;
        inset: 0;
        pointer-events: none;
        background: radial-gradient(circle at 15% 18%, rgba(59,130,246,.18), transparent 55%), radial-gradient(circle at 90% 22%, rgba(147,197,253,.24), transparent 55%), linear-gradient(180deg, rgba(255,255,255,.55), rgba(255,255,255,.05));
        opacity: .95;
    }

    /* little arrow pointer */
    .expert-menu::after {
        content: "";
        position: absolute;
        top: -8px;
        right: 28px;
        width: 16px;
        height: 16px;
        background: rgba(255,255,255,.82);
        transform: rotate(45deg);
        border-left: 1px solid rgba(255,255,255,.7);
        border-top: 1px solid rgba(255,255,255,.7);
        backdrop-filter: blur(14px);
    }

/* show on hover */
.expert-dd:hover .expert-menu {
    transform: translateY(0) scale(1);
    opacity: 1;
    visibility: visible;
}

.expert-btn.whatsapp {
    background: rgba(34,197,94,0.12);
    color: rgb(22,163,74);
    border-color: rgba(34,197,94,0.22);
}

.expert-btn.call {
    background: rgba(37,99,235,0.10);
    color: #2563eb;
    border-color: rgba(37,99,235,0.25);
}

.expert-btn.callback {
    background: rgba(248,250,252,1);
    color: #0f172a;
}

/* item rows */
.expert-item {
    position: relative;
    z-index: 2;
    display: flex;
    gap: 14px;
    align-items: center;
    padding: 13px 14px;
    border-radius: 16px;
    transition: .18s ease;
}

    /* hover row background */
    .expert-item:hover {
        transform: translateX(2px);
        background: rgba(37,99,235,.07);
    }

/* icon badge */
.expert-ico {
    width: 52px;
    height: 52px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    background: linear-gradient(180deg, rgba(59,130,246,.14), rgba(147,197,253,.08));
    border: 1px solid rgba(147,197,253,.35);
    box-shadow: 0 18px 55px rgba(15,23,42,.10), inset 0 1px 0 rgba(255,255,255,.9);
}

    .expert-ico img {
        width: 22px;
        height: 22px;
        display: block;
    }

/* title + value */
.expert-title {
    font-size: 12px;
    font-weight: 900;
    color: #64748b;
    margin: 0 0 4px;
}

.expert-link {
    font-size: 16px;
    font-weight: 1000;
    color: #0f172a;
    text-decoration: none;
    letter-spacing: -.01em;
}

    .expert-link:hover {
        color: #2563eb;
    }

/* divider like premium */
.expert-last {
    margin-top: 10px;
    padding-top: 14px;
    border-top: 1px solid rgba(226,232,240,.75);
}

/* PREMIUM HERO STATS ICONS */
.hero-stats {
    max-width: 560px; /* ✅ lock stats inside left column */
    gap: 20px !important;
    justify-content: flex-start;
    flex-wrap: nowrap;
}

.hero-section .max-w-7xl {
    padding-left: 50px; /* default tailwind px-6 = 24px. tune here */
}

.stat-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    font-weight: 500;
}

/* clean icon chip like PolicyBazaar */
.stat-icon {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    background: rgba(255,255,255,.80);
    border: 1px solid rgba(148,163,184,.25);
    box-shadow: 0 18px 50px rgba(15,23,42,.10);
    display: grid;
    place-items: center;
    flex: 0 0 auto;
}

    /* icon fit inside chip */
    .stat-icon img {
        width: 22px;
        height: 22px;
        object-fit: contain;
        display: block;
        filter: drop-shadow(0 8px 15px rgba(15,23,42,.12));
    }

/* label spacing + style */
.stat-label {
    margin-left: 2px;
    font-weight: 600;
    color: #475569;
}

/* responsive */
@media(max-width: 768px) {
    .hero-stats {
        flex-wrap: wrap !important;
        gap: 18px !important;
    }
}

/* =========================
   FOOTER
========================= */

.footer-title {
    font-size: 14px;
    font-weight: 700;
    color: #2563eb;
    padding-bottom: 8px;
    margin-bottom: 12px;
    border-bottom: 1px solid #e5e7eb;
}

/* LINK COLUMNS */
.footer-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 14px;
}

    .footer-list a {
        color: #475569;
        text-decoration: none;
        transition: color 0.2s ease;
    }

        .footer-list a:hover {
            color: #2563eb;
        }

/* CONTACT (TEXT ONLY) */
/* Contact list */
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 14px;
    font-size: 14px;
    color: #475569;
}

    .footer-contact li {
        display: flex;
        align-items: center;
        gap: 10px;
    }

/* ICON STYLE */
/* Icon circle (phone, mail, location) */
.footer-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #eef4ff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
/* SVG size */
.footer-social-row img {
    width: 18px;
    height: 18px;
}
/* Social row */
/* Social icons row – centered */
.footer-social-row {
    display: flex;
    justify-content: center; /* CENTER horizontally */
    gap: 18px; /* Equal spacing */
    margin-top: 10px; /* Space below email */
    padding-left: 0; /* REMOVE left offset */
}
    /* Social icon container */
    .footer-social-row a {
        width: 36px;
        height: 36px;
        border-radius: 50%;
        background: #eef4ff;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.25s ease;
    }
        /* Hover effect */
        .footer-social-row a:hover {
            background: #2563eb;
            transform: translateY(-2px);
        }

            .footer-social-row a:hover img {
                filter: brightness(0) invert(1);
            }
/* BOTTOM BAR */
.footer-bottom {
    margin-top: 28px;
    padding-top: 16px;
    border-top: 1px solid #e5e7eb;
    text-align: center;
    font-size: 13px;
    color: #64748b;
}

    .footer-bottom a {
        margin: 0 6px;
        color: inherit;
        text-decoration: none;
        transition: color 0.2s ease;
    }

        .footer-bottom a:hover {
            color: #2563eb;
        }
/* =========================
   ABOUT TEASER
========================= */

.about-eyebrow {
    font-size: 14px;
    font-weight: 600;
    color: #2563eb;
    letter-spacing: 0.3px;
    margin-bottom: 10px;
}

.about-heading {
    font-size: 42px;
    font-weight: 800;
    color: #dc4437; /* matches screenshot tone */
    line-height: 1.2;
}

.about-line {
    width: 64px;
    height: 3px;
    background: #2563eb;
    margin: 18px auto 24px;
    border-radius: 2px;
}

.about-text {
    font-size: 17px;
    color: #475569;
    line-height: 1.7;
    max-width: 720px;
    margin: 0 auto;
}

/* CTA button */
.about-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 34px;
    border-radius: 14px;
    background: #2563eb;
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 18px 45px rgba(37,99,235,0.35);
    transition: all 0.25s ease;
}

    .about-btn:hover {
        transform: translateY(-2px);
        background: #1d4ed8;
        box-shadow: 0 28px 60px rgba(37,99,235,0.45);
    }

/* Mobile */
@media (max-width: 768px) {
    .about-heading {
        font-size: 32px;
    }

    .about-text {
        font-size: 16px;
    }
}

/* =============== INDUSTRY CLEAN UI =============== */

/* =============== INDUSTRY CLEAN UI =============== */

.industry-card {
    position: relative;
    overflow: hidden;
    border-radius: 22px;
    border: 1px solid rgba(148,163,184,0.18);
    box-shadow: 0 35px 90px rgba(15,23,42,0.14);
    /* glass look */
    background: rgba(255,255,255,0.86);
    backdrop-filter: blur(10px);
}

    /* subtle premium glow */
    .industry-card::before {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at 20% 15%, rgba(37,99,235,0.12), transparent 55%), radial-gradient(circle at 80% 25%, rgba(147,197,253,0.18), transparent 60%);
        z-index: 0;
        pointer-events: none;
    }

    /* subtle dotted pattern */
    .industry-card::after {
        content: "";
        position: absolute;
        inset: 0;
        background-image: radial-gradient(rgba(37,99,235,0.08) 1px, transparent 1px);
        background-size: 18px 18px;
        opacity: 0.35;
        z-index: 0;
        pointer-events: none;
        /* fade pattern bottom */
        -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 0%, rgba(0,0,0,0.15) 70%, rgba(0,0,0,0) 100%);
        mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 0%, rgba(0,0,0,0.15) 70%, rgba(0,0,0,0) 100%);
    }

    /* make content appear above glow/pattern */
    .industry-card > * {
        position: relative;
        z-index: 2;
    }

.industry-head {
    padding: 34px 24px 18px;
    text-align: center;
}

    .industry-head h2 {
        font-size: 24px;
        font-weight: 800;
        color: #0f172a;
    }

/* Tabs wrapper */
.industry-tabs {
    width: fit-content;
    margin: 0 auto;
    background: #f1f5ff;
    border: 1px solid rgba(37,99,235,0.16);
    border-radius: 999px;
    padding: 6px;
    display: flex;
    gap: 6px;
}

.industry-tab {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    border-radius: 999px;
    border: none;
    background: transparent;
    color: #475569;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: 0.2s ease;
}

    .industry-tab img {
        width: 18px;
        height: 18px;
        opacity: 0.9;
    }

    /* Active tab */
    .industry-tab.active {
        background: #fff;
        color: #2563eb;
        box-shadow: 0 10px 24px rgba(37,99,235,0.18);
    }

/* Content */
.industry-content {
    padding: 28px 30px 34px;
}

.industry-row {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 28px;
}

/* Pills (sub categories) */
.industry-pill {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    border-radius: 14px;
    border: 1px solid rgba(148,163,184,0.18);
    background: #fff;
    font-size: 14px;
    font-weight: 700;
    color: #0f172a;
    cursor: pointer;
    transition: 0.2s ease;
    box-shadow: 0 10px 20px rgba(15,23,42,0.05);
}

    .industry-pill img {
        width: 20px;
        height: 20px;
        opacity: 0.95;
    }

    .industry-pill:hover {
        transform: translateY(-2px);
        border-color: rgba(37,99,235,0.25);
        box-shadow: 0 16px 30px rgba(37,99,235,0.14);
    }

/* CTA */
.industry-cta {
    display: flex;
    justify-content: center;
    margin-top: 34px;
}

.industry-cta-btn {
    background: #2563eb;
    color: #fff;
    padding: 14px 36px;
    border-radius: 12px;
    font-weight: 800;
    font-size: 14px;
    border: none;
    cursor: pointer;
    display: flex;
    gap: 12px;
    align-items: center;
    box-shadow: 0 20px 50px rgba(37,99,235,0.32);
    transition: 0.2s ease;
}

    .industry-cta-btn:hover {
        background: #1d4ed8;
        transform: translateY(-2px);
    }

/* Utility */
.hidden {
    display: none;
}

@media (max-width: 768px) {
    .industry-cta {
        margin-top: 22px;
        padding: 0 14px; /* ✅ prevent touching edges */
    }

    .industry-cta-btn {
        width: 100%; /* ✅ full width like modern CTA */
        max-width: 360px; /* ✅ still premium centered */
        justify-content: space-between;
        padding: 14px 18px;
        border-radius: 14px;
        font-size: 14px;
        line-height: 1.2;
        gap: 10px;
        box-shadow: 0 18px 45px rgba(37,99,235,0.28);
    }

        .industry-cta-btn span {
            font-size: 18px; /* ✅ arrow looks balanced */
            font-weight: 900;
            opacity: 0.95;
            margin-left: 10px;
        }
}

/* =========================================
   FULL PAGE BACKGROUND (FIGMA STYLE WAVES)
========================================= */
.site-bg {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    /* base background like figma */
    background: linear-gradient(180deg, #edf6ff 0%, #f6fbff 25%, #ffffff 55%, #ffffff 100%);
}

    /* waves svg overlay across full page */
    .site-bg::before {
        content: "";
        position: absolute;
        inset: 0;
        background: url("/images/bg-waves.svg") no-repeat top center;
        background-size: cover;
        opacity: 1;
        pointer-events: none;
        z-index: 0;
    }

    /* extra subtle blur glow like figma */
    .site-bg::after {
        content: "";
        position: absolute;
        top: -120px;
        left: -10%;
        width: 120%;
        height: 520px;
        background: radial-gradient(circle at 40% 70%, rgba(37,99,235,0.18), transparent 60%), radial-gradient(circle at 70% 40%, rgba(147,197,253,0.25), transparent 55%);
        opacity: 0.6;
        filter: blur(2px);
        pointer-events: none;
        z-index: 0;
    }

    /* make ALL page content above background */
    .site-bg > * {
        position: relative;
        z-index: 1;
    }
/* =========================
   HERO FULL-WIDTH FIGMA BG
========================= */
.hero-section {
    background: linear-gradient(90deg, #f4f9ff 0%, #eef6ff 35%, #dbeeff 70%, #c9e2ff 100%);
    position: relative;
}

    /* soft glowing curves like figma */
    .hero-section::before {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at 72% 35%, rgba(37,99,235,0.18), transparent 55%), radial-gradient(circle at 30% 30%, rgba(147,197,253,0.20), transparent 60%);
        pointer-events: none;
        z-index: 0;
    }

    /* wave layer (optional if you want EXACT figma feeling) */
    .hero-section::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: -1px;
        width: 100%;
        height: 280px;
        background: url("/images/hero-bg.svg") no-repeat bottom center;
        background-size: cover;
        opacity: 0.9;
        pointer-events: none;
        z-index: 0;
    }

    /* keep hero content above background */
    .hero-section > div {
        position: relative;
        z-index: 2;
    }

/* hero image more natural */
.hero-img {
    filter: drop-shadow(0 40px 80px rgba(15,23,42,0.18));
}
/* ---- HERO IMAGE: remove pasted-box feeling ---- */
/* ✅ HERO IMAGE - Smooth merge into hero background */
.hero-img {
    height: 480px;
    width: auto;
    display: block;
    /* ✅ Remove pasted box effect: fade RIGHT/LEFT/TOP/BOTTOM */
    -webkit-mask-image: linear-gradient(to right, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 18%, rgba(0,0,0,1) 72%, rgba(0,0,0,0) 100% ), linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 16%, rgba(0,0,0,1) 84%, rgba(0,0,0,0) 100% );
    -webkit-mask-composite: intersect;
    mask-composite: intersect;
    mask-image: linear-gradient(to right, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 18%, rgba(0,0,0,1) 72%, rgba(0,0,0,0) 100% ), linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 16%, rgba(0,0,0,1) 84%, rgba(0,0,0,0) 100% );
    /* ✅ natural premium shadow */
    filter: drop-shadow(0 40px 90px rgba(2, 8, 23, 0.18));
    opacity: 0.98;
}

/* ✅ Right-side placement */
.hero-illustration-wrap {
    position: relative;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

    /* ✅ Soft premium glow behind image */
    .hero-illustration-wrap::before {
        content: "";
        position: absolute;
        width: 720px;
        height: 520px;
        border-radius: 999px;
        background: radial-gradient(circle, rgba(37,99,235,0.20), rgba(37,99,235,0.10), rgba(255,255,255,0) 70% );
        top: 52%;
        left: 70%;
        transform: translate(-50%, -50%);
        z-index: 0;
        filter: blur(14px);
    }

    .hero-illustration-wrap img {
        position: relative;
        z-index: 2;
    }

/* =========================
   WHY CHOOSE (PREMIUM)
========================= */
.why-sec {
    padding: 80px 0 110px;
    position: relative;
}

.why-title {
    text-align: center;
    font-size: 28px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 46px;
    letter-spacing: -0.2px;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0,1fr));
    gap: 28px;
}

@media(max-width: 1100px) {
    .why-grid {
        grid-template-columns: repeat(2, minmax(0,1fr));
    }
}

@media(max-width: 640px) {
    .why-grid {
        grid-template-columns: 1fr;
    }
}

.why-card {
    background: rgba(255,255,255,0.92);
    border: 1px solid rgba(148,163,184,0.16);
    border-radius: 16px;
    padding: 26px 24px 24px;
    box-shadow: 0 18px 50px rgba(15,23,42,0.07), 0 6px 14px rgba(15,23,42,0.05);
    transition: 0.25s ease;
    min-height: 170px;
}

    .why-card:hover {
        transform: translateY(-6px);
        border-color: rgba(37,99,235,0.25);
        box-shadow: 0 28px 80px rgba(37,99,235,0.12), 0 10px 20px rgba(15,23,42,0.08);
    }

.why-icon {
    width: 62px;
    height: 62px;
    border-radius: 16px;
    background: linear-gradient(180deg,#f3f8ff,#e9f2ff);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 30px rgba(37,99,235,0.18);
    margin-bottom: 16px;
}

    .why-icon img {
        width: 42px;
        height: 42px;
        object-fit: contain;
    }

.why-card h3 {
    font-size: 16px;
    font-weight: 800;
    color: #0f172a;
    margin: 4px 0 10px;
}

.why-card p {
    font-size: 13px;
    line-height: 1.5;
    color: #475569;
}

.wave-section {
    position: relative;
}

    .wave-section::before {
        opacity: 0.35; /* reduce */
        filter: blur(1px);
    }

/* =========================
   OUR INSURANCE SOLUTIONS (FIGMA MATCH)
========================= */

.solutions-section {
    padding: 80px 0 100px;
}

.solutions-title {
    text-align: center;
    font-size: 22px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 26px;
}

.solutions-wrap {
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 20px;
    background: rgba(255,255,255,0.88);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(148,163,184,0.18);
    box-shadow: 0 40px 90px rgba(15,23,42,0.14);
    padding: 18px;
}

    .solutions-wrap::before {
        content: "";
        position: absolute;
        inset: 0;
        border-radius: 20px;
        background: linear-gradient( 180deg, rgba(255,255,255,0.6), rgba(255,255,255,0) );
        pointer-events: none;
    }

.solutions-card {
    display: grid;
    grid-template-columns: 1.25fr 1fr;
    gap: 0;
    border-radius: 14px;
    overflow: hidden;
    background: #fff;
}

.sol-box {
    position: relative;
    min-height: 140px;
    background: #fff;
    overflow-x: visible;
    overflow-y: hidden;
    background: linear-gradient( 180deg, #ffffff 0%, #fbfdff 100% );
}

    .sol-box:first-child {
        border-right: 1px solid rgba(148,163,184,0.08); /* was 0.10 */
    }

.solution-head {
    height: 72px;
    display: flex;
    align-items: center;
    padding: 0 24px;
    border-radius: 12px 12px 0 0;
    position: relative;
    z-index: 3;
}

.solution-head-left {
    background: linear-gradient(90deg, #66bcff 0%, #2f7ddf 100%);
}

.solution-head-right {
    background: linear-gradient(90deg, #4da4ff 0%, #2a63c9 100%);
}

.solution-head h3 {
    font-size: 16px;
    font-weight: 800;
    color: #fff;
}

.solution-head::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 70% 50%, rgba(255,255,255,0.35), transparent 65%);
}

.solution-links {
    padding: 30px 32px 36px;
    display: flex;
    gap: 14px;
    align-items: flex-start;
    font-size: 13.5px;
    line-height: 1.35;
    position: relative;
    z-index: 3;
    /* 🔥 FIX */
    flex-wrap: nowrap;
    row-gap: 12px;
}

    /* each item */
    .solution-links a {
        display: flex;
        flex-direction: column;
        max-width: 200px;
        flex-shrink: 0;
        font-weight: 700; /* 🔥 BOLD */
        color: #0f172a; /* 🔥 DARK */
        opacity: 1; /* 🔥 NO DIM */
    }

    .solution-links span {
        color: rgba(15,23,42,0.35);
    }

    .solution-links a {
        max-width: 200px; /* allows full 2-line names */
        flex-shrink: 0;
    }

        /* force exactly 2 lines */
        .solution-links a span {
            display: block;
            font-weight: 700; /* 🔥 BOTH LINES BOLD */
            color: #0f172a;
            opacity: 1;
        }

    /* separator */
    .solution-links > span {
        margin: 0 6px;
        white-space: nowrap;
    }

.solution-art {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 120px;
    height: auto;
    opacity: 0.28;
    pointer-events: none;
    filter: blur(0.2px);
    z-index: 1;
}

    .solution-art img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

.solutions-cta {
    display: flex;
    justify-content: center;
    margin-top: 14px; /* was 18px */
    padding-bottom: 6px;
}

.solutions-btn {
    background: #fff;
    border: 1px solid rgba(37,99,235,0.28);
    padding: 12px 32px;
    border-radius: 12px;
    font-weight: 800;
    font-size: 13px;
    color: #2563eb;
    display: flex;
    gap: 10px;
    align-items: center;
    box-shadow: 0 20px 40px rgba(37,99,235,0.18);
    transition: 0.2s ease;
}

    .solutions-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 30px 60px rgba(37,99,235,0.24);
    }

/* RESPONSIVE */
/* ✅ MOBILE RESPONSIVE FIX ONLY */
@media (max-width: 768px) {
    .solutions-section {
        padding: 55px 0 70px;
    }

    .solutions-title {
        font-size: 20px;
        margin-bottom: 18px;
    }

    .solutions-wrap {
        padding: 12px;
        border-radius: 22px;
    }

    .solutions-card {
        grid-template-columns: 1fr;
        gap: 18px;
        background: transparent;
        overflow: visible;
        border-radius: 0;
    }

    .sol-box {
        border-radius: 26px;
        overflow: hidden;
        min-height: unset;
        box-shadow: 0 22px 55px rgba(15,23,42,0.12);
        border: 1px solid rgba(148,163,184,0.18);
    }

        /* remove desktop divider line */
        .sol-box:first-child {
            border-right: none;
        }

    .solution-head {
        height: 66px;
        padding: 0 18px;
        border-radius: 22px 22px 0 0;
    }

        .solution-head h3 {
            font-size: 15px;
            font-weight: 900;
            letter-spacing: 0.2px;
        }

    /* ✅ Pills layout */
    .solution-links {
        padding: 18px 16px 18px;
        display: grid;
        grid-template-columns: 1fr;
        gap: 12px;
        flex-wrap: unset; /* override desktop */
    }

        /* ✅ make items look like premium rounded pills */
        .solution-links a {
            max-width: 100%;
            width: 100%;
            flex-shrink: unset;
            background: linear-gradient(180deg, rgba(59,130,246,0.07) 0%, rgba(59,130,246,0.03) 100%);
            border: 1px solid rgba(148,163,184,0.20);
            border-radius: 18px;
            padding: 14px 16px;
            text-align: center;
            box-shadow: 0 14px 30px rgba(15,23,42,0.08);
        }

            .solution-links a span {
                font-size: 14px;
                font-weight: 900;
                line-height: 1.15;
                color: #0f172a;
            }

        /* ✅ hide separators "|" in mobile */
        .solution-links > span {
            display: none;
        }

    /* ✅ hide arts in mobile (already in your code but keep) */
    .solution-art {
        display: none;
    }

    /* CTA button full width like premium */
    .solutions-cta {
        margin-top: 14px;
        padding-bottom: 0;
    }

    .solutions-btn {
        width: 100%;
        justify-content: center;
        border-radius: 18px;
        padding: 14px 18px;
        font-size: 14px;
    }
}

/* ===== TESTIMONIAL – FIGMA CARD STYLE ===== */
/* TESTIMONIAL SECTION BACKGROUND */
/* =========================
   TESTIMONIAL – FIGMA FINAL
========================= */

.testimonial-section {
    position: relative;
    padding: 200px 20px 170px;
    background: linear-gradient( 180deg, #eef6ff 0%, #f7fbff 55%, #ffffff 100% );
    text-align: center;
    overflow: hidden;
}

/* ===== WAVES ===== */

.testimonial-wave-top {
    position: absolute;
    top: 40px;
    left: 0;
    width: 100%;
    height: 240px;
    background: url("/images/testimonial-wave.svg") no-repeat center;
    background-size: cover;
    opacity: 0.95;
    z-index: 1;
}

.testimonial-wave-bottom {
    position: absolute;
    bottom: 120px;
    left: 0;
    width: 100%;
    height: 220px;
    background: url("/images/testimonial-wave.svg") no-repeat center;
    background-size: cover;
    opacity: 0.55;
    z-index: 1;
}

/* ===== CARD ===== */

.testimonial-card {
    position: relative;
    z-index: 3;
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 60px 54px;
    background: linear-gradient( 180deg, #ffffff 0%, #fbfdff 100% );
    border-radius: 28px;
    border: 1px solid rgba(148,163,184,0.16);
    box-shadow: 0 60px 140px rgba(15,23,42,0.18), 0 12px 30px rgba(37,99,235,0.10);
}

    /* soft glow */
    .testimonial-card::before {
        content: "";
        position: absolute;
        inset: -60px;
        background: radial-gradient( circle at top center, rgba(37,99,235,0.22), transparent 70% );
        z-index: -1;
        filter: blur(55px);
    }

/* ===== TITLE ===== */

.testimonial-title {
    font-size: 30px;
    font-weight: 900;
    color: #0f172a;
}

    .testimonial-title span {
        color: #3b82f6;
    }

.testimonial-line {
    width: 46px;
    height: 3px;
    background: #3b82f6;
    margin: 18px auto 36px;
}

/* ===== SLIDER ===== */

.testimonial-slider {
    min-height: 170px;
}

.testimonial-slide {
    display: none;
    animation: fade 0.45s ease;
}

    .testimonial-slide.active {
        display: block;
    }

@keyframes fade {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== TEXT ===== */

.testimonial-text {
    font-size: 19px;
    line-height: 1.65;
    color: #0f172a;
    max-width: 720px;
    margin: 0 auto 26px;
}

/* ===== AUTHOR ===== */

.testimonial-author {
    font-size: 15px;
    font-weight: 800;
    color: #2563eb;
}

    .testimonial-author .role {
        font-weight: 500;
    }

.testimonial-company {
    font-size: 13px;
    color: #475569;
    margin-top: 4px;
}

/* ===== DOTS ===== */

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 30px;
}

    .testimonial-dots button {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        border: none;
        background: rgba(15,23,42,0.25);
        cursor: pointer;
    }

        .testimonial-dots button.active {
            background: #2563eb;
        }

/* ===== CTA ===== */

.testimonial-cta {
    position: relative;
    z-index: 2;
    margin-top: 64px;
    display: flex;
    justify-content: center;
    gap: 18px;
}

.cta-primary {
    background: linear-gradient(180deg,#3b82f6,#2563eb);
    color: #fff;
    padding: 15px 38px;
    border-radius: 14px;
    font-weight: 800;
    border: none;
    cursor: pointer;
    box-shadow: 0 25px 55px rgba(37,99,235,0.45);
}

.cta-whatsapp {
    background: linear-gradient(180deg,#34d399,#22c55e);
    color: #fff;
    padding: 15px 34px;
    border-radius: 14px;
    font-weight: 800;
    display: flex;
    align-items: center;
    box-shadow: 0 22px 50px rgba(34,197,94,0.45);
}
/* Shared hover base */
.cta-primary,
.cta-whatsapp {
    transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}

    /* Primary button hover */
    .cta-primary:hover {
        transform: translateY(-3px);
        box-shadow: 0 35px 75px rgba(37,99,235,0.55);
        filter: brightness(1.08);
    }

    /* WhatsApp button hover */
    .cta-whatsapp:hover {
        transform: translateY(-3px);
        box-shadow: 0 32px 70px rgba(34,197,94,0.55);
        filter: brightness(1.08);
    }

    /* Optional: click (active) effect */
    .cta-primary:active,
    .cta-whatsapp:active {
        transform: translateY(-1px);
        box-shadow: 0 18px 40px rgba(0,0,0,0.25);
    }

/* =========================
   SOLUTIONS PAGE (FIGMA MATCH)
========================= */

/* HERO */
.solutions-hero {
    position: relative;
    overflow: hidden;
    padding-top: 10px;
    background: radial-gradient(circle at 20% 10%, rgba(59,130,246,0.20), transparent 55%), linear-gradient(180deg,#f8fbff,#eef6ff);
}

    .solutions-hero::before {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at 75% 35%, rgba(59,130,246,0.18), transparent 55%);
        pointer-events: none;
    }

.solutions-hero-title {
    font-size: 44px;
    font-weight: 900;
    color: #0f172a;
    letter-spacing: -0.02em;
    line-height: 1.15;
}

.solutions-hero-text {
    margin-top: 16px;
    font-size: 16px;
    color: #475569;
    max-width: 520px;
    line-height: 1.65;
}

.solutions-hero-illus {
    position: relative;
    z-index: 2;
}

    .solutions-hero-illus img {
        width: 100%;
        max-width: 620px;
        margin-left: auto;
        display: block;
        filter: drop-shadow(0 30px 80px rgba(15,23,42,0.15));
    }

/* OVERVIEW */
.solutions-overview {
    padding-top: 72px;
    padding-bottom: 90px;
}

.overview-title {
    text-align: center;
    font-size: 32px;
    font-weight: 900;
    color: #0f172a;
    letter-spacing: -0.02em;
}

.overview-subtitle {
    text-align: center;
    margin-top: 10px;
    font-size: 14px;
    color: #64748b;
}

/* GRID */
.overview-grid {
    margin-top: 44px;
    display: grid;
    gap: 26px;
    grid-template-columns: repeat(1, minmax(0, 1fr));
}

@media (min-width: 1024px) {
    .overview-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

/* CARD */
.solution-card {
    background: #ffffff;
    border: 1px solid rgba(226,232,240,0.95);
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 22px 55px rgba(15,23,42,0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

    .solution-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 35px 90px rgba(15,23,42,0.12);
    }

.solution-card-illus {
    padding: 18px 18px 0;
}

    .solution-card-illus img {
        width: 100%;
        height: 155px;
        object-fit: cover;
        border-radius: 16px;
        display: block;
        background: #f1f5f9;
    }

/* BODY */
.solution-card-body {
    padding: 18px 22px 22px;
    text-align: left;
}

.solution-card-heading {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
}

    .solution-card-heading h3 {
        font-size: 18px;
        font-weight: 800;
        color: #0f172a;
    }

.solution-mini-ico {
    width: 22px;
    height: 22px;
    flex: 0 0 auto;
}

/* BULLETS */
.solution-bullets {
    margin-top: 14px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    font-size: 14px;
    color: #475569;
    line-height: 1.6;
    padding-left: 18px;
}

    .solution-bullets li {
        list-style: disc;
    }

/* CTA inside card */
.solution-btn {
    margin-top: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 12px 14px;
    border-radius: 14px;
    background: linear-gradient(180deg,#3b82f6,#2563eb);
    color: #fff;
    font-weight: 800;
    font-size: 14px;
    text-decoration: none;
    box-shadow: 0 18px 40px rgba(37,99,235,0.28);
    transition: all 0.25s ease;
}

    .solution-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 28px 70px rgba(37,99,235,0.38);
    }

/* BIG CTA */
.overview-cta {
    margin-top: 52px;
    display: flex;
    justify-content: center;
}

.overview-big-btn {
    background: linear-gradient(180deg,#3b82f6,#2563eb);
    color: #fff;
    padding: 18px 44px;
    border-radius: 18px;
    font-weight: 900;
    font-size: 18px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 30px 80px rgba(37,99,235,0.35);
    transition: all 0.25s ease;
    text-decoration: none;
}

    .overview-big-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 40px 95px rgba(37,99,235,0.45);
    }

/* =========================
   SOLUTIONS PAGE (PREMIUM)
   Works for: Browse block + process steps + FAQ + closing paragraph
========================= */

.solutions-page {
    position: relative;
}

/* shared container section spacing */
.sol-sec {
    padding: 70px 0;
}

@media (max-width: 768px) {
    .sol-sec {
        padding: 46px 0;
    }
}

/* =========================
   SECTION HEADING
========================= */
.sol-head {
    text-align: center;
    margin-bottom: 28px;
}

.sol-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(37,99,235,0.10);
    color: #1d4ed8;
    font-weight: 900;
    letter-spacing: .01em;
    font-size: 12px;
    border: 1px solid rgba(37,99,235,0.16);
}

.sol-title {
    margin-top: 14px;
    font-size: 36px;
    line-height: 1.15;
    font-weight: 1000;
    color: #0f172a;
    letter-spacing: -0.03em;
}

.sol-sub {
    margin: 12px auto 0;
    max-width: 780px;
    font-size: 16px;
    line-height: 1.75;
    color: #475569;
    font-weight: 650;
}

/* =========================
   BROWSE ALL SOLUTIONS BLOCK
========================= */
.sol-browse {
    position: relative;
    overflow: hidden;
    border-radius: 26px;
    padding: 34px 34px 30px;
    background: rgba(255,255,255,0.72);
    border: 1px solid rgba(15,23,42,0.08);
    box-shadow: 0 24px 70px rgba(15,23,42,0.10);
    backdrop-filter: blur(12px);
}

    .sol-browse::before {
        content: "";
        position: absolute;
        inset: -40px;
        background: radial-gradient(circle at 20% 20%, rgba(59,130,246,.18), transparent 40%), radial-gradient(circle at 90% 10%, rgba(147,197,253,.35), transparent 45%), radial-gradient(circle at 70% 90%, rgba(59,130,246,.14), transparent 45%);
        pointer-events: none;
        opacity: .9;
    }

.sol-browse-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 26px;
    align-items: start;
}

@media (max-width: 1024px) {
    .sol-browse-inner {
        grid-template-columns: 1fr;
    }
}

.sol-browse-left h3 {
    font-size: 22px;
    font-weight: 1000;
    color: #0f172a;
    margin: 0;
    letter-spacing: -0.02em;
}

.sol-browse-left p {
    margin-top: 10px;
    font-size: 15px;
    line-height: 1.75;
    color: #475569;
    font-weight: 650;
    max-width: 820px;
}

/* Tag pills */
.sol-tags {
    margin-top: 18px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.sol-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255,255,255,0.95);
    border: 1px solid rgba(15,23,42,0.08);
    color: #0f172a;
    font-weight: 900;
    font-size: 13px;
    box-shadow: 0 10px 22px rgba(15,23,42,0.06);
    transition: .2s ease;
    cursor: pointer;
    text-decoration: none;
}

    .sol-tag:hover {
        transform: translateY(-2px);
        border-color: rgba(37,99,235,0.18);
        box-shadow: 0 18px 40px rgba(15,23,42,0.10);
    }

    .sol-tag span {
        width: 10px;
        height: 10px;
        border-radius: 99px;
        background: linear-gradient(180deg,#3b82f6,#2563eb);
        box-shadow: 0 10px 24px rgba(37,99,235,.3);
    }

/* Right CTA card */
.sol-browse-cta {
    position: relative;
    z-index: 2;
    border-radius: 22px;
    padding: 18px 18px;
    background: linear-gradient(180deg, rgba(37,99,235,0.10), rgba(255,255,255,0.96));
    border: 1px solid rgba(37,99,235,0.16);
    box-shadow: 0 22px 70px rgba(15,23,42,0.10);
}

    .sol-browse-cta h4 {
        margin: 0;
        font-size: 16px;
        font-weight: 1000;
        color: #0f172a;
    }

    .sol-browse-cta p {
        margin: 8px 0 14px;
        font-size: 13px;
        line-height: 1.6;
        color: #475569;
        font-weight: 700;
    }

.sol-link-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 48px;
    padding: 0 18px;
    border-radius: 999px;
    width: 100%;
    background: linear-gradient(180deg,#3b82f6,#2563eb);
    color: #fff;
    font-weight: 1000;
    font-size: 14px;
    text-decoration: none;
    box-shadow: 0 18px 55px rgba(37,99,235,.30);
    transition: .22s ease;
}

    .sol-link-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 28px 80px rgba(37,99,235,.44);
    }

/* =========================
   PROCESS / HOW WE HELP
========================= */
.sol-process {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

@media (max-width: 1024px) {
    .sol-process {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 520px) {
    .sol-process {
        grid-template-columns: 1fr;
    }
}

.sol-step {
    background: rgba(255,255,255,0.95);
    border: 1px solid rgba(15,23,42,0.08);
    border-radius: 22px;
    padding: 18px 18px;
    box-shadow: 0 18px 55px rgba(15,23,42,0.08);
    transition: .22s ease;
}

    .sol-step:hover {
        transform: translateY(-3px);
        box-shadow: 0 28px 85px rgba(15,23,42,0.12);
    }

.sol-step-top {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.sol-step-no {
    width: 38px;
    height: 38px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    font-weight: 1000;
    color: #fff;
    background: linear-gradient(180deg,#3b82f6,#2563eb);
    box-shadow: 0 16px 45px rgba(37,99,235,.32);
}

.sol-step h4 {
    margin: 0;
    font-weight: 1000;
    color: #0f172a;
    font-size: 15px;
}

.sol-step p {
    margin: 0;
    font-size: 13.5px;
    line-height: 1.7;
    color: #475569;
    font-weight: 700;
}

/* =========================
   FAQ PREMIUM ACCORDION
========================= */
.sol-faq {
    margin-top: 40px;
    background: rgba(255,255,255,0.85);
    border: 1px solid rgba(15,23,42,0.08);
    border-radius: 26px;
    padding: 16px;
    box-shadow: 0 24px 70px rgba(15,23,42,0.10);
    backdrop-filter: blur(12px);
}

    .sol-faq h3 {
        margin: 8px 8px 14px;
        font-size: 18px;
        font-weight: 1000;
        color: #0f172a;
    }

    .sol-faq details {
        background: rgba(255,255,255,0.96);
        border: 1px solid rgba(15,23,42,0.08);
        border-radius: 18px;
        padding: 14px 14px;
        margin: 10px 0;
        box-shadow: 0 14px 40px rgba(15,23,42,0.06);
    }

    .sol-faq summary {
        cursor: pointer;
        font-size: 14px;
        font-weight: 1000;
        color: #0f172a;
        list-style: none;
    }

        .sol-faq summary::-webkit-details-marker {
            display: none;
        }

        .sol-faq summary::after {
            content: "＋";
            float: right;
            font-weight: 1000;
            color: #2563eb;
        }

    .sol-faq details[open] summary::after {
        content: "—";
    }

    .sol-faq details p {
        margin: 10px 0 2px;
        font-size: 13.5px;
        line-height: 1.75;
        color: #475569;
        font-weight: 700;
    }

/* =========================
   FINAL LOCATION STRONG TEXT
========================= */
.sol-bottom-note {
    margin-top: 26px;
    border-radius: 22px;
    padding: 18px 18px;
    background: linear-gradient(90deg, rgba(37,99,235,0.06), rgba(255,255,255,0.92));
    border: 1px solid rgba(37,99,235,0.14);
    color: #0f172a;
    box-shadow: 0 18px 60px rgba(15,23,42,0.08);
}

    .sol-bottom-note b {
        font-weight: 1000;
    }

    .sol-bottom-note p {
        margin: 0;
        font-weight: 750;
        color: #334155;
        line-height: 1.75;
        font-size: 14px;
    }

/* =========================
   INDIVIDUAL PAGE (HEALTH)
========================= */

.individual-hero {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg,#f7fbff 0%, #eef6ff 100%);
}

    .individual-hero:before {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at 70% 38%, rgba(59,130,246,0.20), transparent 55%);
        pointer-events: none;
    }

.individual-hero-title {
    font-size: 44px;
    line-height: 1.15;
    font-weight: 900;
    color: #0f172a;
}

.individual-hero-sub {
    margin-top: 14px;
    font-size: 16px;
    line-height: 1.7;
    color: #475569;
    max-width: 520px;
}

.individual-hero-cta {
    margin-top: 26px;
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    align-items: center;
}
    /* Primary CTA should be WIDE (not tall) */
    .individual-hero-cta .btn-primary {
        min-width: 250px; /* ⬅ wider like figma */
        height: 48px; /* fixed height */
        padding: 0 26px; /* remove extra vertical padding */
        border-radius: 14px;
        font-size: 15px;
        font-weight: 900;
        justify-content: center;
    }
    /* Outline CTA */
    .individual-hero-cta .btn-outline {
        min-width: 220px; /* wide */
        height: 48px;
        padding: 0 22px;
        border-radius: 14px;
        font-size: 15px;
        font-weight: 900;
        justify-content: center;
    }

.btn-primary {
    background: linear-gradient(180deg,#3b82f6,#2563eb);
    color: #fff;
    padding: 12px 22px;
    border-radius: 12px;
    font-weight: 800;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 18px 45px rgba(37,99,235,0.35);
    transition: 0.25s ease;
    text-decoration: none;
}

    .btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 26px 65px rgba(37,99,235,0.45);
    }

    .btn-primary.big {
        padding: 14px 34px;
        border-radius: 16px;
        font-size: 15px;
    }

.btn-outline {
    background: rgba(255,255,255,0.78);
    border: 1px solid rgba(59,130,246,0.35);
    color: #1d4ed8;
    padding: 12px 22px;
    border-radius: 12px;
    font-weight: 800;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: 0.25s ease;
    text-decoration: none;
}

    .btn-outline:hover {
        transform: translateY(-2px);
        background: #ffffff;
        box-shadow: 0 18px 55px rgba(15,23,42,0.08);
    }

    .btn-outline.big {
        padding: 14px 34px;
        border-radius: 16px;
        font-size: 15px;
    }

    .btn-outline .phone {
        font-size: 16px;
    }

/* ===== MINI STATS FIX (FIGMA MATCH) ===== */
.individual-mini-stats {
    margin-top: 22px;
    display: flex;
    align-items: center;
    gap: 22px;
    flex-wrap: nowrap; /* ⬅ keep in one line */
    font-size: 14px;
    color: #334155;
    padding-top: 18px;
    border-top: 1px solid rgba(226,232,240,0.9); /* figma divider line */
}

/* each stat item */
.mini-stat {
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
    font-weight: 600;
}
    /* strong number like figma */
    .mini-stat strong {
        font-weight: 900;
        color: #0f172a;
    }
/* Icon circle */
.mini-icon {
    width: 34px;
    height: 34px;
    border-radius: 999px;
    background: rgba(59,130,246,0.12);
    display: grid;
    place-items: center;
    font-size: 15px;
    health-cta-row flex-shrink: 0;
}
    /* Specific icon colors */
    .mini-icon.ok {
        background: rgba(16,185,129,0.14);
        color: #059669;
    }

    .mini-icon.phone {
        background: rgba(59,130,246,0.14);
        color: #1d4ed8;
    }
/* Add vertical separators between stats */
.mini-stat:not(:last-child)::after {
    content: "";
    width: 1px;
    height: 18px;
    margin-left: 22px;
    background: rgba(226,232,240,0.95);
}

.individual-hero-illus img {
    width: 100%;
    max-width: 640px;
    margin-left: auto;
}

/* Section */
.individual-section {
    padding: 68px 0;
}

.individual-title {
    font-size: 28px;
    font-weight: 900;
    text-align: center;
    color: #0f172a;
}

.individual-subtitle {
    text-align: center;
    font-size: 13px;
    color: #64748b;
    margin-top: 6px;
}

/* Who grid */
.who-grid {
    margin-top: 34px;
    display: grid;
    gap: 20px;
}

@media(min-width: 1024px) {
    .who-grid {
        grid-template-columns: repeat(3, minmax(0,1fr));
    }
}

.who-card {
    background: rgba(255,255,255,0.92);
    border: 1px solid rgba(226,232,240,0.95);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 18px 45px rgba(15,23,42,0.08);
    transition: 0.25s ease;
}

    .who-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 28px 70px rgba(15,23,42,0.12);
    }

.who-illus {
    padding: 14px 14px 0;
}

    .who-illus img {
        width: 100%;
        border-radius: 14px;
    }

.who-body {
    padding: 14px 18px 18px;
}

.who-head {
    display: flex;
    align-items: center;
    gap: 10px;
}

.who-ico {
    width: 26px;
    height: 26px;
    border-radius: 10px;
    background: rgba(59,130,246,0.12);
    display: grid;
    place-items: center;
    color: #2563eb;
    font-weight: 900;
}

    .who-ico.plus {
        background: rgba(37,99,235,0.12);
    }

.who-head h3 {
    font-size: 16px;
    font-weight: 900;
    color: #0f172a;
}

.who-points {
    margin-top: 10px;
    padding-left: 18px;
    color: #475569;
    font-size: 13px;
}

    .who-points li {
        list-style: disc;
    }

.who-btn {
    margin-top: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.96);
    border: 1px solid rgba(226,232,240,0.95);
    padding: 10px 12px;
    border-radius: 12px;
    font-weight: 800;
    font-size: 13px;
    color: #1d4ed8;
    text-decoration: none;
    transition: 0.25s ease;
}

    .who-btn:hover {
        border-color: rgba(59,130,246,0.4);
        box-shadow: 0 16px 40px rgba(15,23,42,0.08);
    }
/* =========================
   HEALTH FEATURES SECTION (FIGMA MATCH)
========================= */

.health-features {
    padding: 70px 0;
    background: linear-gradient(180deg, #eaf3ff 0%, #d9ebff 40%, #eaf3ff 100%);
}

.health-features-head {
    text-align: center;
    margin-bottom: 34px;
}

    .health-features-head h2 {
        font-size: 30px;
        font-weight: 900;
        color: #0f172a;
    }

    .health-features-head p {
        margin-top: 8px;
        font-size: 14px;
        color: #64748b;
    }

/* top 3 cards */
.health-mini-grid {
    margin-top: 30px;
    display: grid;
    gap: 18px;
}

@media (min-width: 1024px) {
    .health-mini-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.health-mini-card {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 18px 20px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(226, 232, 240, 0.9);
    box-shadow: 0 18px 55px rgba(15, 23, 42, 0.08);
    transition: all 0.25s ease;
}

    .health-mini-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 28px 80px rgba(15, 23, 42, 0.12);
    }

.health-mini-ico {
    width: 44px;
    height: 44px;
    border-radius: 999px;
    background: rgba(59, 130, 246, 0.12);
    display: grid;
    place-items: center;
    flex-shrink: 0;
}

    .health-mini-ico img {
        width: 22px;
        height: 22px;
    }

.health-mini-card h4 {
    font-size: 16px;
    font-weight: 900;
    color: #0f172a;
    margin-bottom: 6px;
}

.health-mini-card p {
    font-size: 13px;
    line-height: 1.6;
    color: #475569;
}

/* bottom row */
.health-bottom-grid {
    margin-top: 22px;
    display: grid;
    gap: 18px;
}

@media (min-width: 1024px) {
    .health-bottom-grid {
        grid-template-columns: 2fr 1fr;
        align-items: stretch;
    }
}

/* Big cards */
.health-big-card {
    border-radius: 24px;
    padding: 22px 24px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(226, 232, 240, 0.9);
    box-shadow: 0 22px 70px rgba(15, 23, 42, 0.10);
}

    .health-big-card h3 {
        font-size: 20px;
        font-weight: 900;
        color: #0f172a;
        margin-bottom: 18px;
    }

/* coverage grid */
.health-coverage-grid {
    display: grid;
    gap: 18px;
}

@media (min-width: 768px) {
    .health-coverage-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.health-coverage-col h5 {
    font-size: 14px;
    font-weight: 900;
    margin-bottom: 12px;
}

    .health-coverage-col h5.ok {
        color: #059669;
    }

    .health-coverage-col h5.no {
        color: #ef4444;
    }

.health-coverage-col ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
    font-size: 14px;
    color: #475569;
}

    .health-coverage-col ul li {
        list-style: none;
        position: relative;
        padding-left: 22px;
    }

        .health-coverage-col ul li::before {
            content: "✓";
            position: absolute;
            left: 0;
            top: 0;
            font-weight: 900;
            color: #2563eb;
        }

/* addon grid */
.addon-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 18px;
}

.addon-card {
    background: rgba(248, 250, 252, 0.95);
    border: 1px solid rgba(226, 232, 240, 0.9);
    border-radius: 18px;
    padding: 16px 10px;
    text-align: center;
    font-size: 13px;
    font-weight: 900;
    color: #0f172a;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
    transition: transform 0.25s ease;
}

    .addon-card:hover {
        transform: translateY(-2px);
    }

.addon-ico {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    margin: 0 auto 10px;
    background: rgba(59, 130, 246, 0.12);
    display: grid;
    place-items: center;
    font-size: 18px;
    font-weight: 900;
    color: #2563eb;
}

.health-big-card small {
    display: block;
    margin-top: 14px;
    font-size: 12px;
    color: #64748b;
    text-align: center;
}

/* CTA row */
.health-cta-row {
    margin-top: 34px;
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
}

/* Blue button (Figma like) */
.health-cta-primary {
    background: linear-gradient(180deg,#3b82f6,#2563eb);
    color: #fff;
    min-width: 320px; /* ✅ makes it wider */
    height: 54px; /* ✅ controls fatness */
    border-radius: 14px; /* ✅ figma pill */
    font-weight: 800;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 12px 35px rgba(37,99,235,0.28);
    transition: .25s ease;
}

    .health-cta-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 18px 55px rgba(37,99,235,0.35);
    }

/* White outline button */
.health-cta-outline {
    background: rgba(255,255,255,0.95);
    border: 1px solid rgba(59,130,246,0.35);
    min-width: 260px; /* ✅ wider like figma */
    height: 54px; /* ✅ same height */
    border-radius: 14px;
    font-weight: 800;
    font-size: 16px;
    color: #1d4ed8;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(15,23,42,0.08);
    transition: .25s ease;
}

    .health-cta-outline:hover {
        transform: translateY(-2px);
        box-shadow: 0 16px 45px rgba(15,23,42,0.10);
    }

    /* call icon circle */
    .health-cta-outline .call {
        display: grid;
        place-items: center;
        width: 36px;
        height: 36px;
        border-radius: 999px;
        background: rgba(59,130,246,0.12);
        font-size: 16px;
    }

/* =========================
   BUSINESS PAGE (FIGMA MATCH)
========================= */

/* HERO */
.business-hero {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg,#f7fbff 0%, #eef6ff 100%);
}

    .business-hero:before {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at 72% 40%, rgba(59,130,246,0.18), transparent 55%);
        pointer-events: none;
    }

.business-hero-title {
    font-size: 44px;
    line-height: 1.15;
    font-weight: 900;
    color: #0f172a;
}

.business-hero-sub {
    margin-top: 14px;
    font-size: 16px;
    line-height: 1.7;
    color: #475569;
    max-width: 560px;
}

.business-hero-cta {
    margin-top: 22px;
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

/* hero buttons */
.biz-btn-primary {
    background: linear-gradient(180deg,#3b82f6,#2563eb);
    color: #fff;
    height: 48px;
    padding: 0 24px;
    border-radius: 12px;
    font-weight: 900;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 16px 45px rgba(37,99,235,0.32);
    text-decoration: none;
    transition: .25s ease;
}

    .biz-btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 24px 65px rgba(37,99,235,0.40);
    }

.biz-btn-outline {
    background: rgba(255,255,255,0.85);
    border: 1px solid rgba(59,130,246,0.30);
    color: #1d4ed8;
    height: 48px;
    padding: 0 24px;
    border-radius: 12px;
    font-weight: 900;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: .25s ease;
}

    .biz-btn-outline:hover {
        transform: translateY(-2px);
        background: #fff;
        box-shadow: 0 18px 55px rgba(15,23,42,0.08);
    }

/* stats */
.business-mini-stats {
    margin-top: 28px;
    display: flex;
    gap: 22px;
    flex-wrap: wrap;
    color: #334155;
    font-size: 13px;
    align-items: center;
}

.mini-stat {
    display: inline-flex;
    gap: 10px;
    align-items: center;
}

.mini-icon {
    width: 26px;
    height: 26px;
    border-radius: 999px;
    background: rgba(59,130,246,0.10);
    color: #2563eb;
    display: grid;
    place-items: center;
    font-size: 14px;
    font-weight: 900;
}

    .mini-icon.ok {
        background: rgba(16,185,129,0.12);
        color: #059669;
    }

    .mini-icon.phone {
        background: rgba(37,99,235,0.12);
        color: #1d4ed8;
    }

.business-hero-illus img {
    width: 100%;
    max-width: 660px;
    margin-left: auto;
}

/* SECTION */
.business-section {
    padding: 68px 0 56px;
}

.business-title {
    font-size: 28px;
    font-weight: 900;
    text-align: center;
    color: #0f172a;
}

/* WHO GRID */
.biz-who-grid {
    margin-top: 34px;
    display: grid;
    gap: 20px;
}

@media(min-width:1024px) {
    .biz-who-grid {
        grid-template-columns: repeat(3, minmax(0,1fr));
    }
}

.biz-who-card {
    background: rgba(255,255,255,0.92);
    border: 1px solid rgba(226,232,240,0.95);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 18px 45px rgba(15,23,42,0.08);
    transition: .25s ease;
}

    .biz-who-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 28px 70px rgba(15,23,42,0.12);
    }

.biz-who-illus {
    padding: 14px 14px 0;
}

    .biz-who-illus img {
        width: 100%;
        border-radius: 14px;
    }

.biz-who-body {
    padding: 14px 18px 18px;
}

.biz-who-head {
    display: flex;
    align-items: center;
    gap: 10px;
}

.biz-who-ico {
    width: 26px;
    height: 26px;
    border-radius: 10px;
    background: rgba(59,130,246,0.12);
    display: grid;
    place-items: center;
    color: #2563eb;
    font-weight: 900;
}

.biz-who-head h3 {
    font-size: 16px;
    font-weight: 900;
    color: #0f172a;
}

.biz-who-points {
    margin-top: 10px;
    padding-left: 18px;
    color: #475569;
    font-size: 13px;
}

    .biz-who-points li {
        list-style: disc;
    }

.biz-who-btn {
    margin-top: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.96);
    border: 1px solid rgba(226,232,240,0.95);
    padding: 10px 12px;
    border-radius: 12px;
    font-weight: 900;
    font-size: 13px;
    color: #1d4ed8;
    text-decoration: none;
    transition: .25s ease;
}

    .biz-who-btn:hover {
        border-color: rgba(59,130,246,0.45);
        box-shadow: 0 16px 40px rgba(15,23,42,0.08);
    }

/* BUSINESS SOLUTIONS SECTION */
.biz-solutions {
    padding: 70px 0;
    background: linear-gradient(180deg, #eef6ff 0%, #dbeaff 40%, #eef6ff 100%);
}

.biz-solutions-head {
    text-align: center;
    margin-bottom: 34px;
}

    .biz-solutions-head h2 {
        font-size: 30px;
        font-weight: 900;
        color: #0f172a;
    }

    .biz-solutions-head p {
        margin-top: 8px;
        font-size: 14px;
        color: #64748b;
    }

/* top 3 cards */
.biz-mini-grid {
    margin-top: 30px;
    display: grid;
    gap: 18px;
}

@media(min-width:1024px) {
    .biz-mini-grid {
        grid-template-columns: repeat(3,minmax(0,1fr));
    }
}

.biz-mini-card {
    display: flex;
    gap: 14px;
    padding: 18px 20px;
    border-radius: 20px;
    background: rgba(255,255,255,0.95);
    border: 1px solid rgba(226,232,240,0.9);
    box-shadow: 0 18px 55px rgba(15,23,42,0.08);
    transition: .25s ease;
}

    .biz-mini-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 28px 80px rgba(15,23,42,0.12);
    }

.biz-mini-ico {
    width: 44px;
    height: 44px;
    border-radius: 999px;
    background: rgba(59,130,246,0.12);
    display: grid;
    place-items: center;
    flex-shrink: 0;
}

    .biz-mini-ico img {
        width: 22px;
        height: 22px;
    }
/* title row with icon */
.biz-card-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    font-weight: 900;
    color: #0f172a;
    margin-bottom: 10px;
}

/* svg icon size */
.biz-card-ico {
    width: 26px;
    height: 26px;
    flex-shrink: 0;
}

.biz-mini-card h4 {
    font-size: 16px;
    font-weight: 900;
    color: #0f172a;
    margin-bottom: 6px;
}

.biz-mini-card p {
    font-size: 13px;
    line-height: 1.6;
    color: #475569;
}

/* bottom big grid */
.biz-big-grid {
    margin-top: 24px;
    display: grid;
    gap: 18px;
}

@media(min-width:1024px) {
    .biz-big-grid {
        grid-template-columns: repeat(3,minmax(0,1fr));
    }
}

.biz-big-card {
    border-radius: 22px;
    padding: 22px 22px 20px;
    background: rgba(255,255,255,0.96);
    border: 1px solid rgba(226,232,240,0.9);
    box-shadow: 0 18px 55px rgba(15,23,42,0.10);
    transition: transform .25s ease, box-shadow .25s ease;
    position: relative;
    overflow: hidden;
}
    /* soft gradient shine */
    .biz-big-card::before {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at 25% 20%, rgba(59,130,246,0.10), transparent 55%);
        pointer-events: none;
    }

    .biz-big-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 28px 85px rgba(15,23,42,0.14);
    }
/* header: icon + title single row always */
.biz-big-head {
    display: flex;
    gap: 14px;
    align-items: center;
    margin-bottom: 14px;
    position: relative;
    z-index: 1;
}

.biz-big-ico {
    width: 46px;
    height: 46px;
    border-radius: 999px;
    background: rgba(59,130,246,0.12);
    display: grid;
    place-items: center;
    flex-shrink: 0;
}

    .biz-big-ico img {
        width: 24px;
        height: 24px;
    }

.biz-big-titlewrap h4 {
    font-size: 16px;
    font-weight: 900;
    color: #0f172a;
    margin: 0;
    line-height: 1.2;
}

.biz-big-sub {
    margin-top: 4px;
    font-size: 12.5px;
    color: #64748b;
    font-weight: 600;
}
/* list bullets premium */
.biz-big-list {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 13px;
    color: #475569;
    line-height: 1.5;
    margin: 0;
    padding: 0;
}

    .biz-big-list li {
        list-style: none;
        padding-left: 22px;
        position: relative;
    }

        .biz-big-list li::before {
            content: "•";
            position: absolute;
            left: 0;
            top: -1px;
            color: #2563eb;
            font-weight: 900;
            font-size: 18px;
        }

.biz-big-card ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 13px;
    color: #475569;
}

    .biz-big-card ul li {
        list-style: none;
        padding-left: 20px;
        position: relative;
    }

        .biz-big-card ul li::before {
            content: "•";
            position: absolute;
            left: 0;
            top: 0;
            color: #3b82f6;
            font-weight: 900;
        }

/* tags look like figma chips */
.biz-tags {
    margin-top: 16px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

    .biz-tags span {
        padding: 9px 14px;
        background: rgba(248,250,252,0.95);
        border: 1px solid rgba(226,232,240,0.9);
        border-radius: 999px;
        font-weight: 900;
        font-size: 12px;
        color: #1d4ed8;
        box-shadow: 0 8px 20px rgba(15,23,42,0.06);
    }

/* CTA */
.biz-cta-row {
    margin-top: 34px;
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
}

.biz-cta-primary {
    background: linear-gradient(180deg,#3b82f6,#2563eb);
    color: #fff;
    height: 54px;
    min-width: 320px;
    border-radius: 14px;
    font-weight: 900;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 12px 35px rgba(37,99,235,0.28);
    transition: .25s ease;
}

    .biz-cta-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 18px 55px rgba(37,99,235,0.35);
    }

.biz-cta-outline {
    background: rgba(255,255,255,0.95);
    border: 1px solid rgba(59,130,246,0.35);
    height: 54px;
    min-width: 260px;
    border-radius: 14px;
    font-weight: 900;
    font-size: 16px;
    color: #1d4ed8;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(15,23,42,0.08);
    transition: .25s ease;
}

    .biz-cta-outline:hover {
        transform: translateY(-2px);
        box-shadow: 0 16px 45px rgba(15,23,42,0.10);
    }

    .biz-cta-outline .call {
        display: grid;
        place-items: center;
        width: 36px;
        height: 36px;
        border-radius: 999px;
        background: rgba(59,130,246,0.12);
        font-size: 16px;
    }
/* =========================
   CONTACT PAGE - FINAL CLEAN CSS (NO DUPLICATES)
========================= */

/* =========================
   HERO
========================= */
.contact-hero {
    position: relative;
    overflow: hidden;
    background: linear-gradient(90deg,#f7fbff 0%, #eaf4ff 34%, #d7ebff 70%, #f7fbff 100%);
}

    .contact-hero::before {
        content: "";
        position: absolute;
        inset: 0;
        pointer-events: none;
        background: radial-gradient(circle at 20% 40%, rgba(255,255,255,.90), transparent 55%), radial-gradient(circle at 70% 25%, rgba(59,130,246,.18), transparent 65%), radial-gradient(circle at 90% 60%, rgba(147,197,253,.25), transparent 60%);
    }

/* hero illustration glow */
.hero-illus-wrap {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .hero-illus-wrap::before {
        content: "";
        position: absolute;
        width: 560px;
        height: 560px;
        border-radius: 999px;
        background: radial-gradient(circle, rgba(255,255,255,.85), rgba(255,255,255,0) 70%);
        top: 50%;
        left: 55%;
        transform: translate(-50%, -50%);
        filter: blur(1px);
        opacity: .95;
        z-index: 0;
    }

.contact-hero-wrap {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 64px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 70px 24px;
}

/* Left text */
.contact-hero-title {
    font-size: 54px;
    line-height: 1.08;
    font-weight: 900;
    color: #0f172a;
    letter-spacing: -0.02em;
}

.contact-hero-sub {
    margin-top: 18px;
    font-size: 16px;
    line-height: 1.7;
    color: #475569;
    max-width: 470px;
}

.contact-hero-btn {
    margin-top: 28px;
    height: 48px;
    padding: 0 34px;
    border-radius: 14px;
    background: linear-gradient(180deg,#3b82f6,#2563eb);
    color: #fff;
    font-weight: 900;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 18px 55px rgba(37,99,235,.30);
    transition: .25s ease;
}

    .contact-hero-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 26px 80px rgba(37,99,235,.42);
    }

/* hero image blend */
.contact-hero-illus {
    width: 100%;
    max-width: 680px;
    display: block;
    -webkit-mask-image: radial-gradient(circle at center, rgba(0,0,0,1) 62%, rgba(0,0,0,.9) 72%, rgba(0,0,0,.45) 82%, rgba(0,0,0,0) 100%);
    mask-image: radial-gradient(circle at center, rgba(0,0,0,1) 62%, rgba(0,0,0,.9) 72%, rgba(0,0,0,.45) 82%, rgba(0,0,0,0) 100%);
    filter: drop-shadow(0 45px 110px rgba(15,23,42,.16));
}

/* responsive hero */
@media(max-width: 1024px) {
    .contact-hero-wrap {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .contact-hero-title {
        font-size: 40px;
    }

    .contact-hero-sub {
        margin-left: auto;
        margin-right: auto;
    }

    .contact-hero-illus {
        margin: 0 auto;
        max-width: 540px;
    }
}

/* =========================
   MISSION & VISION SECTION
========================= */
.contact-main {
    position: relative;
    overflow: hidden;
    padding: 80px 0 95px;
    background: linear-gradient(180deg,#e9f4ff 0%, #d6ebff 42%, #eff7ff 100%);
}

    .contact-main::before {
        content: "";
        position: absolute;
        inset: 0;
        pointer-events: none;
        background: radial-gradient(circle at 18% 22%, rgba(59,130,246,.20), transparent 55%), radial-gradient(circle at 90% 30%, rgba(147,197,253,.30), transparent 58%), radial-gradient(circle at 60% 85%, rgba(59,130,246,.12), transparent 62%), radial-gradient(1400px 260px at 50% 52%, rgba(255,255,255,.75), transparent 68%), radial-gradient(1500px 320px at 50% 68%, rgba(255,255,255,.55), transparent 70%), radial-gradient(1700px 380px at 50% 84%, rgba(255,255,255,.35), transparent 72%);
    }

    .contact-main::after {
        content: "";
        position: absolute;
        inset: 0;
        pointer-events: none;
        background: linear-gradient(180deg, rgba(255,255,255,.55), rgba(255,255,255,0) 38%);
        opacity: .9;
    }

    .contact-main > div {
        position: relative;
        z-index: 2;
    }

/* section heading */
.contact-head {
    text-align: center;
    margin-bottom: 32px;
}

    .contact-head h2 {
        font-size: 42px;
        font-weight: 900;
        color: #0f172a;
        letter-spacing: -0.02em;
        line-height: 1.2;
    }

    .contact-head p {
        margin-top: 10px;
        font-size: 14px;
        color: #64748b;
    }

/* layout */
.contact-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 26px;
}

@media(max-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================
   GLASS CARD SYSTEM ✅ FIXED CROPPING
========================= */
.contact-card {
    border-radius: 30px;
    position: relative;
    overflow: visible; /* ✅ FIX CROPPING ISSUE */
    background: linear-gradient(180deg, rgba(255,255,255,.72), rgba(239,246,255,.55));
    border: 1px solid rgba(255,255,255,.90);
    box-shadow: 0 55px 140px rgba(15,23,42,.18), 0 18px 55px rgba(37,99,235,.10), inset 0 1px 0 rgba(255,255,255,.95);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

    .contact-card::before {
        content: "";
        position: absolute;
        inset: 0;
        pointer-events: none;
        border-radius: 30px;
        background: radial-gradient(circle at 18% 18%, rgba(59,130,246,.18), transparent 55%), radial-gradient(circle at 78% 22%, rgba(147,197,253,.25), transparent 55%), linear-gradient(180deg, rgba(255,255,255,.55), rgba(255,255,255,.06));
        opacity: .95;
    }

/* =========================
   FORM CARD
========================= */
.contact-form {
    position: relative;
    z-index: 2;
    padding: 26px 26px 18px;
}

    .contact-form .form-control {
        width: 100%;
        border: none;
        outline: none;
        background: transparent;
        font-size: inherit;
        font-weight: inherit;
    }

.form-group {
    margin-bottom: 14px;
}

    .form-group label {
        font-weight: 900;
        font-size: 13px;
        color: #334155;
        display: inline-block;
        margin-bottom: 8px;
    }

        .form-group label span {
            color: #ef4444;
        }

    .form-group input,
    .form-group select,
    .form-group textarea {
        width: 100%;
        background: rgba(255,255,255,.78);
        border: 1px solid rgba(148,163,184,.22);
        border-radius: 14px;
        padding: 12px 14px;
        font-size: 14px;
        outline: none;
        transition: .2s ease;
        box-shadow: inset 0 1px 0 rgba(255,255,255,.9);
    }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            border-color: rgba(59,130,246,.55);
            box-shadow: 0 0 0 4px rgba(59,130,246,.16);
        }

.two-col {
    display: grid;
    gap: 12px;
    grid-template-columns: 0.85fr 1.15fr;
}

.form-note {
    margin-top: 10px;
    font-size: 12px;
    color: #64748b;
}

    .form-note a {
        font-weight: 900;
        color: #2563eb;
        text-decoration: none;
    }

.form-submit {
    margin-top: 14px;
    width: 100%;
    height: 56px;
    border: none;
    border-radius: 16px;
    font-weight: 900;
    font-size: 15px;
    color: #fff;
    transition: .25s ease;
    background: linear-gradient(90deg,#3b82f6 0%, #2563eb 55%, #1d4ed8 100%);
    box-shadow: 0 26px 75px rgba(37,99,235,.35), inset 0 1px 0 rgba(255,255,255,.25);
    display: inline-flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

    .form-submit:hover {
        transform: translateY(-2px);
        box-shadow: 0 30px 90px rgba(37,99,235,.44);
    }

    .form-submit:disabled {
        opacity: .75;
        cursor: not-allowed;
        transform: none !important;
    }

.btn-loader {
    width: 18px;
    height: 18px;
    border-radius: 999px;
    border: 3px solid rgba(255,255,255,.45);
    border-top-color: #fff;
    animation: spin .8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* bottom mini contact row */
.form-mini-contact {
    margin-top: 18px;
    padding-top: 16px;
    padding-bottom: 14px;
    border-top: 1px solid rgba(226,232,240,.75);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    font-weight: 900;
    color: #0f172a;
}

.mini-phone {
    font-size: 15px;
    font-weight: 900;
}

.mini-actions {
    display: flex;
    gap: 10px;
}

    .mini-actions a {
        min-width: 140px;
        height: 40px;
        display: inline-flex;
        justify-content: center;
        align-items: center;
        border-radius: 999px;
        font-weight: 900;
        font-size: 13px;
        text-decoration: none;
        background: rgba(255,255,255,.85);
        transition: .25s ease;
    }

.mini-whatsapp {
    border: 1px solid rgba(34,197,94,.25);
    color: #16a34a;
}

    .mini-whatsapp:hover {
        transform: translateY(-2px);
        box-shadow: 0 18px 50px rgba(34,197,94,.18);
        border-color: rgba(34,197,94,.40);
    }

.mini-chat {
    border: 1px solid rgba(37,99,235,.25);
    color: #1d4ed8;
}

    .mini-chat:hover {
        transform: translateY(-2px);
        box-shadow: 0 18px 50px rgba(37,99,235,.20);
        border-color: rgba(37,99,235,.40);
    }

/* =========================
   RIGHT SIDE STACK
========================= */
.contact-right-stack {
    display: grid;
    gap: 26px;
}

/* =========================
   CONNECT CARD (NO EXTRA ICONS)
========================= */
.connect-card {
    padding: 26px 26px 14px;
    position: relative;
    z-index: 3;
}

    .connect-card h3 {
        font-size: 22px;
        font-weight: 900;
        color: #0f172a;
        margin-bottom: 16px;
        letter-spacing: -0.02em;
    }

/* items */
.connect-item {
    display: flex;
    gap: 14px;
    align-items: center;
    padding: 18px 18px;
    border-radius: 24px;
    text-decoration: none;
    margin-bottom: 14px;
    transition: .25s ease;
    position: relative;
    overflow: hidden;
    background: rgba(255,255,255,.50);
    border: 1px solid rgba(148,163,184,.16);
    box-shadow: 0 12px 35px rgba(15,23,42,.06);
}

    .connect-item::before {
        content: "";
        position: absolute;
        inset: 0;
        pointer-events: none;
        opacity: .95;
        background: radial-gradient(circle at 20% 40%, rgba(59,130,246,.18), transparent 60%), radial-gradient(circle at 88% 35%, rgba(147,197,253,.22), transparent 62%), linear-gradient(180deg, rgba(255,255,255,.35), rgba(255,255,255,0));
    }

    .connect-item:hover {
        transform: translateY(-3px);
        border-color: rgba(59,130,246,.25);
        box-shadow: 0 20px 60px rgba(37,99,235,.14);
    }

.connect-ico {
    width: 56px;
    height: 56px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    box-shadow: 0 14px 35px rgba(15,23,42,.08);
    position: relative;
    z-index: 2;
}

    .connect-ico img {
        width: 26px;
        height: 26px;
        object-fit: contain;
    }

    /* icon background tint */
    .connect-ico.wa {
        background: radial-gradient(circle at 30% 30%, rgba(34,197,94,.25), rgba(34,197,94,.10));
    }

    .connect-ico.call {
        background: radial-gradient(circle at 30% 30%, rgba(59,130,246,.25), rgba(59,130,246,.10));
    }

    .connect-ico.mail {
        background: radial-gradient(circle at 30% 30%, rgba(147,197,253,.35), rgba(147,197,253,.12));
    }

.connect-text {
    position: relative;
    z-index: 2;
}

.connect-item strong {
    font-size: 15px;
    font-weight: 900;
    color: #0f172a;
}

.connect-item p {
    margin-top: 4px;
    font-size: 12.5px;
    color: #64748b;
}

/* =========================
   MAP CARD ✅ keep crop only here
========================= */
.map-card {
    border-radius: 30px;
    overflow: hidden; /* ✅ only map needs crop */
}

.map-frame {
    width: 100%;
    height: 260px;
    border: 0;
    display: block;
    filter: saturate(1.25) contrast(1.12);
}

.map-footer {
    padding: 14px 18px;
    background: rgba(255,255,255,.72);
    border-top: 1px solid rgba(148,163,184,.18);
    display: grid;
    gap: 8px;
    backdrop-filter: blur(12px);
}

.map-line {
    display: flex;
    gap: 10px;
    align-items: center;
    font-size: 13px;
    color: #334155;
    font-weight: 800;
}

/* =========================
   FLOATING WHATSAPP
========================= */
.floating-wa {
    position: fixed;
    right: 18px;
    bottom: 18px;
    width: 58px;
    height: 58px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    font-size: 24px;
    color: #fff;
    text-decoration: none;
    background: linear-gradient(180deg,#22c55e,#16a34a);
    box-shadow: 0 18px 55px rgba(16,185,129,.35);
    transition: .25s ease;
    z-index: 50;
}

    .floating-wa img {
        width: 28px;
        height: 28px;
        object-fit: contain;
        filter: brightness(0) invert(1); /* ✅ makes svg white */
    }

    .floating-wa:hover {
        transform: translateY(-3px);
        box-shadow: 0 26px 85px rgba(16,185,129,.45);
    }
/* =========================
   TRUST SECTION (PREMIUM)
========================= */
.trust-section {
    position: relative;
    overflow: hidden;
    padding: 70px 0 90px;
    background: linear-gradient(180deg,#f2f8ff 0%, #e9f4ff 60%, #f7fbff 100%);
}

    .trust-section::before {
        content: "";
        position: absolute;
        inset: 0;
        pointer-events: none;
        background: radial-gradient(circle at 18% 25%, rgba(59,130,246,.18), transparent 55%), radial-gradient(circle at 88% 35%, rgba(147,197,253,.30), transparent 58%), radial-gradient(1200px 260px at 50% 65%, rgba(255,255,255,.80), transparent 70%), linear-gradient(180deg, rgba(255,255,255,.55), rgba(255,255,255,0) 40%);
        opacity: .95;
    }

    .trust-section > div {
        position: relative;
        z-index: 2;
    }

/* heading */
.trust-title {
    font-size: 34px;
    font-weight: 900;
    color: #0f172a;
    letter-spacing: -0.02em;
}

.trust-quote {
    margin-top: 14px;
    font-size: 15px;
    font-weight: 700;
    color: #334155;
    line-height: 1.7;
}

.trust-author {
    margin-top: 8px;
    font-size: 13px;
    color: #64748b;
    font-weight: 700;
}

/* FAQ container */
.trust-faq {
    max-width: 720px;
    margin: 28px auto 0;
    display: grid;
    gap: 14px;
    text-align: left;
}

    /* each accordion card */
    .trust-faq details {
        position: relative;
        overflow: hidden;
        border-radius: 20px;
        padding: 16px 18px;
        background: rgba(255,255,255,.65);
        border: 1px solid rgba(255,255,255,.75);
        box-shadow: 0 22px 70px rgba(15,23,42,.10), inset 0 1px 0 rgba(255,255,255,.95);
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);
        transition: .25s ease;
    }

        .trust-faq details::before {
            content: "";
            position: absolute;
            inset: 0;
            pointer-events: none;
            background: radial-gradient(circle at 20% 25%, rgba(59,130,246,.12), transparent 60%), radial-gradient(circle at 90% 40%, rgba(147,197,253,.20), transparent 60%), linear-gradient(180deg, rgba(255,255,255,.50), rgba(255,255,255,0));
            opacity: .9;
        }

        .trust-faq details:hover {
            transform: translateY(-2px);
            box-shadow: 0 26px 85px rgba(37,99,235,.14), inset 0 1px 0 rgba(255,255,255,.95);
            border-color: rgba(59,130,246,.22);
        }

    /* Summary */
    .trust-faq summary {
        cursor: pointer;
        font-weight: 900;
        color: #0f172a;
        list-style: none;
        position: relative;
        z-index: 2;
        padding-right: 28px;
    }

        .trust-faq summary::-webkit-details-marker {
            display: none;
        }

        /* + / - icon */
        .trust-faq summary::after {
            content: "+";
            position: absolute;
            right: 0;
            top: 0;
            font-size: 20px;
            color: #2563eb;
            font-weight: 900;
            line-height: 1;
        }

    .trust-faq details[open] summary::after {
        content: "–";
    }

    /* answer */
    .trust-faq p {
        margin-top: 10px;
        font-size: 13px;
        color: #475569;
        line-height: 1.65;
        position: relative;
        z-index: 2;
    }

.scroll-faq {
    max-height: 320px; /* ✅ vertical scroll height */
    overflow-y: auto;
    padding-right: 10px;
}

    /* nice scrollbar */
    .scroll-faq::-webkit-scrollbar {
        width: 15px;
    }

    .scroll-faq::-webkit-scrollbar-thumb {
        background: rgba(37,99,235,0.25);
        border-radius: 10px;
    }

    .scroll-faq::-webkit-scrollbar-track {
        background: transparent;
    }

/* =========================================================
   ABOUT PAGE (FIGMA PREMIUM GLASS)
========================================================= */

/* =========================
   HERO
========================= */
/* =========================
   ABOUT HERO (FINAL PREMIUM)
========================= */

.about-hero {
    position: relative;
    overflow: hidden;
    padding: 92px 0 82px;
    background: linear-gradient(90deg,#f7fbff 0%, #eaf4ff 34%, #d7ebff 70%, #f7fbff 100%);
}

    /* ✅ fog layers */
    .about-hero::before {
        content: "";
        position: absolute;
        inset: 0;
        pointer-events: none;
        background: radial-gradient(circle at 18% 40%, rgba(255,255,255,.92), transparent 56%), radial-gradient(circle at 72% 25%, rgba(59,130,246,.18), transparent 62%), radial-gradient(circle at 90% 70%, rgba(147,197,253,.25), transparent 60%);
        opacity: 1;
    }

    /* ✅ wave overlay like homepage */
    .about-hero::after {
        content: "";
        position: absolute;
        inset: 0;
        pointer-events: none;
        background: radial-gradient(1500px 430px at 50% 74%, rgba(255,255,255,.55), transparent 72%), radial-gradient(1600px 520px at 50% 90%, rgba(255,255,255,.35), transparent 75%);
        opacity: .92;
    }

.about-hero-wrap {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 80px;
    align-items: center;
}

/* =========================
   LEFT CONTENT
========================= */
.about-points {
    margin-top: 18px;
    display: grid;
    gap: 10px;
    max-width: 540px;
}

.about-point {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: 15px;
    line-height: 1.6;
    color: #334155;
    font-weight: 650;
}

.about-dot {
    width: 22px;
    height: 22px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    background: rgba(37,99,235,0.12);
    color: #2563eb;
    font-size: 13px;
    margin-top: 2px;
    flex: 0 0 auto;
}

.about-hero-left {
    position: relative;
    padding: 10px 0;
}

.about-title {
    font-size: 64px;
    line-height: 1.02;
    font-weight: 1000;
    color: #0f172a;
    letter-spacing: -0.035em;
    margin: 0;
}

.about-sub {
    margin-top: 18px;
    font-size: 16px;
    line-height: 1.75;
    color: #475569;
    max-width: 520px;
    font-weight: 650;
}

.about-btn {
    margin-top: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 54px;
    padding: 0 42px;
    border-radius: 999px;
    background: linear-gradient(180deg,#3b82f6,#2563eb);
    color: #fff;
    font-weight: 900;
    font-size: 15px;
    text-decoration: none;
    box-shadow: 0 18px 60px rgba(37,99,235,.32);
    transition: transform .25s ease, box-shadow .25s ease;
    position: relative;
    overflow: hidden;
}

    .about-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 30px 95px rgba(37,99,235,.40);
    }

/* =========================
   RIGHT IMAGE (REAL BLEND)
========================= */

.about-hero-right {
    position: relative;
    display: flex;
    justify-content: flex-end;
}

/* image container */
.about-illus-wrap {
    position: relative;
    width: min(900px, 100%);
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

    /* ✅ Premium blue glow behind image */
    .about-illus-wrap::before {
        content: "";
        position: absolute;
        width: 780px;
        height: 560px;
        border-radius: 999px;
        background: radial-gradient(circle, rgba(37,99,235,0.24) 0%, rgba(37,99,235,0.14) 35%, rgba(255,255,255,0) 72%);
        top: 52%;
        left: 65%;
        transform: translate(-50%, -50%);
        filter: blur(24px);
        z-index: 0;
    }

/* ✅ MAIN IMAGE (NO WHITE OVERLAY) */
.about-hero-img {
    width: 100%;
    max-width: 860px;
    height: auto;
    display: block;
    position: relative;
    z-index: 2;
    /* ✅ Blur edges naturally (THIS is the correct method) */
    -webkit-mask-image: radial-gradient( circle at 55% 50%, rgba(0,0,0,1) 58%, rgba(0,0,0,0.92) 68%, rgba(0,0,0,0.72) 78%, rgba(0,0,0,0.35) 88%, rgba(0,0,0,0) 100% );
    mask-image: radial-gradient( circle at 55% 50%, rgba(0,0,0,1) 58%, rgba(0,0,0,0.92) 68%, rgba(0,0,0,0.72) 78%, rgba(0,0,0,0.35) 88%, rgba(0,0,0,0) 100% );
    /* ✅ premium shadow (no border box) */
    filter: drop-shadow(0 45px 110px rgba(15,23,42,0.14));
    opacity: 0.995;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width: 1024px) {
    /* ✅ ensure button layer is always above */
    .about-hero-left {
        position: relative;
        z-index: 5;
    }

    .about-btn {
        position: relative;
        z-index: 20;
    }

    /* ✅ prevent illustration block from stealing taps */
    .about-hero-right,
    .about-illus-wrap,
    .about-hero-img {
        pointer-events: none;
    }

    .about-hero {
        padding: 74px 0 64px;
    }

    .about-hero-wrap {
        grid-template-columns: 1fr;
        gap: 36px;
        text-align: center;
    }

    .about-title {
        font-size: 44px;
    }

    .about-sub {
        margin-left: auto;
        margin-right: auto;
    }

    .about-hero-right {
        justify-content: center;
    }

    .about-illus-wrap {
        justify-content: center;
        width: 100%;
    }

    .about-hero-img {
        width: min(600px, 95%);
    }
}

/* =========================================================
   GLASS SYSTEM
========================================================= */
.mv-card,
.trust-faq details,
.ach-slider {
    border-radius: 28px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(180deg, rgba(255,255,255,.72), rgba(239,246,255,.55));
    border: 1px solid rgba(255,255,255,.85);
    box-shadow: 0 55px 140px rgba(15,23,42,.18), 0 18px 55px rgba(37,99,235,.10), inset 0 1px 0 rgba(255,255,255,.95);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

    /* premium shine */
    .mv-card::before,
    .ach-slider::before {
        content: "";
        position: absolute;
        inset: 0;
        pointer-events: none;
        background: radial-gradient(circle at 18% 18%, rgba(59,130,246,.16), transparent 55%), radial-gradient(circle at 78% 22%, rgba(147,197,253,.22), transparent 55%), linear-gradient(180deg, rgba(255,255,255,.50), rgba(255,255,255,.05));
        opacity: .95;
    }

/* =========================
   MISSION & VISION
========================= */
.about-mv {
    position: relative;
    overflow: hidden;
    padding: 74px 0 82px;
    background: linear-gradient(180deg,#eef6ff 0%, #dcedff 44%, #f7fbff 100%);
}

    .about-mv::before {
        content: "";
        position: absolute;
        inset: 0;
        pointer-events: none;
        background: radial-gradient(circle at 15% 30%, rgba(59,130,246,.18), transparent 55%), radial-gradient(circle at 90% 25%, rgba(147,197,253,.26), transparent 60%), radial-gradient(1400px 260px at 50% 55%, rgba(255,255,255,.70), transparent 68%), radial-gradient(1600px 360px at 50% 78%, rgba(255,255,255,.45), transparent 72%);
        opacity: 1;
    }

    .about-mv > div {
        position: relative;
        z-index: 2;
    }

.mv-head {
    text-align: center;
    margin-bottom: 30px;
}

    .mv-head h2 {
        font-size: 42px;
        font-weight: 900;
        color: #0f172a;
        letter-spacing: -0.02em;
    }

    .mv-head p {
        margin-top: 10px;
        font-size: 14px;
        color: #64748b;
    }

.mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 26px;
}

@media(max-width: 1024px) {
    .mv-grid {
        grid-template-columns: 1fr;
    }
}

.mv-card {
    padding: 24px 24px 22px;
}

    .mv-card > * {
        position: relative;
        z-index: 2;
    }

.mv-card-head {
    display: flex;
    gap: 14px;
    align-items: center;
}

.mv-ico {
    width: 52px;
    height: 52px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    background: rgba(59,130,246,.10);
    box-shadow: 0 14px 35px rgba(15,23,42,.08);
}

.mv-ico-alt {
    background: rgba(147,197,253,.16);
}

.mv-ico img {
    width: 28px;
    height: 28px;
    display: block;
}

.mv-card h3 {
    font-size: 18px;
    font-weight: 900;
    color: #0f172a;
    letter-spacing: -0.01em;
}

.mv-desc {
    margin-top: 10px;
    font-size: 13px;
    line-height: 1.7;
    color: #475569;
}

.mv-list {
    margin-top: 16px;
    display: grid;
    gap: 12px;
    padding: 0;
    list-style: none;
}

    .mv-list li {
        display: flex;
        gap: 12px;
        align-items: center;
        font-size: 14px;
        font-weight: 800;
        color: #0f172a;
    }

.mv-badge {
    width: 34px;
    height: 34px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    background: rgba(59,130,246,.12);
}

.mv-badge-alt {
    background: rgba(147,197,253,.18);
}

.mv-badge img {
    width: 18px;
    height: 18px;
}

/* =========================
   TRUST
========================= */
.about-trust {
    position: relative;
    overflow: hidden;
    padding: 72px 0 86px;
    background: linear-gradient(180deg,#f7fbff, #eef6ff);
}

    .about-trust::before {
        content: "";
        position: absolute;
        inset: 0;
        pointer-events: none;
        background: radial-gradient(circle at 20% 30%, rgba(59,130,246,.14), transparent 55%), radial-gradient(circle at 80% 25%, rgba(147,197,253,.20), transparent 60%), radial-gradient(1400px 260px at 50% 52%, rgba(255,255,255,.60), transparent 68%);
        opacity: 1;
    }

    .about-trust > div {
        position: relative;
        z-index: 2;
    }

.trust-title {
    font-size: 36px;
    font-weight: 900;
    color: #0f172a;
    letter-spacing: -0.02em;
}

.trust-quote {
    margin-top: 14px;
    font-size: 16px;
    font-weight: 800;
    color: #334155;
}

.trust-author {
    margin-top: 10px;
    font-size: 13px;
    color: #64748b;
}

.trust-faq {
    max-width: 720px;
    margin: 28px auto 0;
    display: grid;
    gap: 12px;
    text-align: left;
}

    .trust-faq details {
        padding: 14px 16px;
        box-shadow: 0 18px 50px rgba(15,23,42,0.08);
        background: rgba(255,255,255,.58);
        border: 1px solid rgba(255,255,255,.70);
        backdrop-filter: blur(12px);
    }

    .trust-faq summary {
        cursor: pointer;
        font-weight: 900;
        color: #0f172a;
        list-style: none;
    }

        .trust-faq summary::-webkit-details-marker {
            display: none;
        }

        .trust-faq summary::after {
            content: "+";
            float: right;
            font-size: 30px;
            color: #2563eb;
            font-weight: 900;
        }

    .trust-faq details[open] summary::after {
        content: "–";
    }

    .trust-faq p {
        margin-top: 10px;
        font-size: 13px;
        color: #475569;
        line-height: 1.6;
    }

/* ===========================
   ACHIEVEMENTS SECTION
=========================== */

.about-achievements {
    position: relative;
    overflow: hidden;
    padding: 80px 0 110px;
    background: linear-gradient(180deg,#eef6ff 0%, #d9ecff 45%, #f7fbff 100%);
}

    .about-achievements::before {
        content: "";
        position: absolute;
        inset: 0;
        pointer-events: none;
        background: radial-gradient(circle at 18% 35%, rgba(59,130,246,.20), transparent 55%), radial-gradient(circle at 86% 25%, rgba(147,197,253,.28), transparent 60%), radial-gradient(1400px 520px at 50% 92%, rgba(255,255,255,.55), transparent 75%);
    }

    .about-achievements > div {
        position: relative;
        z-index: 2;
    }

.ach-title {
    text-align: center;
    font-size: 44px;
    font-weight: 900;
    color: #0f172a;
    letter-spacing: -0.02em;
}

.ach-sub {
    text-align: center;
    margin-top: 10px;
    font-size: 14px;
    color: #64748b;
    margin-bottom: 30px;
}

/* ✅ MAIN GLASS WRAPPER */
.ach-slider {
    position: relative;
    border-radius: 38px;
    background: linear-gradient(180deg, rgba(255,255,255,.78), rgba(239,246,255,.50));
    border: 1px solid rgba(255,255,255,.90);
    box-shadow: 0 60px 160px rgba(15,23,42,.22), 0 24px 75px rgba(37,99,235,.12), inset 0 1px 0 rgba(255,255,255,.92);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
    padding: 34px 28px;
    overflow: hidden;
}

    .ach-slider::before {
        content: "";
        position: absolute;
        inset: 0;
        pointer-events: none;
        background: radial-gradient(circle at 22% 22%, rgba(59,130,246,.12), transparent 58%), radial-gradient(circle at 78% 24%, rgba(147,197,253,.22), transparent 58%), radial-gradient(1200px 420px at 50% 70%, rgba(255,255,255,.55), transparent 75%), linear-gradient(180deg, rgba(255,255,255,.55), rgba(255,255,255,.06));
        opacity: .95;
    }

.ach-viewport {
    overflow: hidden;
    width: 100%;
    position: relative;
    z-index: 2;
}

.ach-track {
    display: flex;
    width: 100%;
}

.ach-slide {
    width: 100%;
    flex: 0 0 100%;
    padding: 18px 10px;
}

/* ✅ GRID */
.ach-grid {
    display: grid;
    grid-template-columns: 260px 1fr 260px;
    gap: 26px;
    align-items: center;
}

/* ✅ SIDE CARDS */
.ach-side-card {
    height: 310px;
    border-radius: 26px;
    background: rgba(255,255,255,.72);
    border: 1px solid rgba(226,232,240,.65);
    box-shadow: 0 22px 70px rgba(15,23,42,.10);
    padding: 16px;
    position: relative;
    overflow: hidden;
    display: flex;
}

    .ach-side-card::before {
        content: "";
        position: absolute;
        inset: 0;
        pointer-events: none;
        background: radial-gradient(circle at 30% 20%, rgba(59,130,246,.10), transparent 60%), linear-gradient(180deg, rgba(255,255,255,.55), rgba(255,255,255,0));
    }

/* ✅ MAIN CARD */
.ach-main-card {
    height: 340px;
    border-radius: 30px;
    background: rgba(255,255,255,.72);
    border: 1px solid rgba(255,255,255,.88);
    box-shadow: 0 45px 140px rgba(15,23,42,.16);
    padding: 26px;
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 24px;
    position: relative;
    overflow: hidden;
}

    .ach-main-card::before {
        content: "";
        position: absolute;
        inset: 0;
        pointer-events: none;
        background: radial-gradient(circle at 25% 22%, rgba(59,130,246,.13), transparent 60%), radial-gradient(circle at 82% 35%, rgba(147,197,253,.18), transparent 62%), linear-gradient(180deg, rgba(255,255,255,.72), rgba(255,255,255,.08));
        opacity: .95;
    }

    .ach-main-card > * {
        position: relative;
        z-index: 2;
    }

/* ✅ IMAGE BOX (NO WHITE SPACE + NO CUT) */
.ach-imgbox {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 22px;
    overflow: hidden;
    display: grid;
    place-items: center;
}

    .ach-imgbox::before {
        content: "";
        position: absolute;
        inset: -20px;
        background-image: var(--bg);
        background-size: cover;
        background-position: center;
        filter: blur(22px);
        transform: scale(1.2);
        opacity: .65;
    }

    .ach-imgbox img {
        position: relative;
        z-index: 2;
        width: 100%;
        height: 100%;
        object-fit: contain;
        object-position: center;
    }

/* ✅ CENTER SLIDER IMAGE AREA */
.ach-main-img {
    border-radius: 22px;
    overflow: hidden;
    height: 100%;
}

.ach-img-track {
    display: flex;
    height: 100%;
    transition: transform .85s cubic-bezier(.2,.9,.2,1);
}

    .ach-img-track > div {
        flex: 0 0 100%;
        width: 100%;
        height: 100%;
    }

/* ✅ TEXT */
.ach-main-text {
    padding-top: 6px;
}

.ach-stars {
    font-weight: 900;
    font-size: 16px;
    color: #f59e0b;
    letter-spacing: 3px;
}

.ach-main-text h3 {
    margin-top: 18px;
    font-size: 34px;
    font-weight: 900;
    color: #0f172a;
}

.ach-main-text p {
    margin-top: 10px;
    font-size: 14px;
    line-height: 1.75;
    color: #475569;
    font-weight: 700;
}

/* ✅ ICONS */
.ach-icons {
    margin-top: 18px;
    display: flex;
    gap: 14px;
    align-items: center;
}

.ach-chip {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: rgba(255,255,255,.92);
    border: 1px solid rgba(226,232,240,.85);
    display: grid;
    place-items: center;
    box-shadow: 0 14px 40px rgba(15,23,42,.07);
}

    .ach-chip img {
        width: 20px;
        height: 20px;
    }

.ach-chip-text {
    width: auto;
    padding: 0 16px;
    display: flex;
    gap: 10px;
    align-items: center;
    font-weight: 900;
    color: #334155;
}

/* ✅ NAV BUTTONS */
.ach-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 35px;
    height: 35px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,.95);
    background: rgba(255,255,255,.88);
    color: #2563eb;
    font-size: 30px;
    font-weight: 900;
    cursor: pointer;
    z-index: 9;
    display: grid;
    place-items: center;
    box-shadow: 0 22px 70px rgba(15,23,42,.12);
    transition: .25s ease;
}

    .ach-nav:hover {
        transform: translateY(-50%) scale(1.07);
        box-shadow: 0 28px 95px rgba(37,99,235,.22);
    }

.ach-prev {
    left: 18px;
}

.ach-next {
    right: 18px;
}
/* =========================================================
   ABOUT - PURPOSE / WHO WE ARE / BELIEF
========================================================= */

.about-purpose {
    position: relative;
    overflow: hidden;
    padding: 80px 0 90px;
    background: linear-gradient(180deg,#f7fbff 0%, #eef6ff 55%, #f7fbff 100%);
}

    .about-purpose::before {
        content: "";
        position: absolute;
        inset: 0;
        pointer-events: none;
        background: radial-gradient(circle at 20% 25%, rgba(59,130,246,.12), transparent 55%), radial-gradient(circle at 82% 22%, rgba(147,197,253,.20), transparent 60%), radial-gradient(1500px 420px at 50% 85%, rgba(255,255,255,.55), transparent 75%);
        opacity: 1;
    }

    .about-purpose > div {
        position: relative;
        z-index: 2;
    }

/* section blocks */
.purpose-block {
    text-align: center;
    padding: 10px 0 20px;
}

.purpose-top {
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #FF0000;
    margin-bottom: 8px;
}

.purpose-title {
    font-size: 44px;
    font-weight: 900;
    color: #0f172a;
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin: 0;
}

/* line under headings */
.purpose-line {
    width: 72px;
    height: 4px;
    margin: 14px auto 0;
    border-radius: 999px;
    background: linear-gradient(90deg,#2563eb, #60a5fa);
    box-shadow: 0 10px 30px rgba(37,99,235,.20);
}

/* main text */
.purpose-text {
    margin: 22px auto 0;
    max-width: 980px;
    font-size: 15px;
    line-height: 1.85;
    color: #334155;
    font-weight: 600;
}

/* WHO WE ARE card */
.purpose-card {
    margin-top: 55px;
    padding: 40px 36px;
    border-radius: 28px;
    background: rgba(255,255,255,.72);
    border: 1px solid rgba(255,255,255,.85);
    box-shadow: 0 55px 140px rgba(15,23,42,.14), 0 18px 55px rgba(37,99,235,.10), inset 0 1px 0 rgba(255,255,255,.92);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    text-align: center;
    position: relative;
    overflow: hidden;
}

    .purpose-card::before {
        content: "";
        position: absolute;
        inset: 0;
        pointer-events: none;
        background: radial-gradient(circle at 20% 20%, rgba(59,130,246,.10), transparent 60%), radial-gradient(circle at 85% 35%, rgba(147,197,253,.18), transparent 62%), linear-gradient(180deg, rgba(255,255,255,.55), rgba(255,255,255,.06));
        opacity: .95;
    }

    .purpose-card > * {
        position: relative;
        z-index: 2;
    }

.purpose-card-title {
    font-size: 38px;
    font-weight: 900;
    color: #0f172a;
    letter-spacing: -0.02em;
    margin: 0;
}

/* =========================
   OUR BELIEF (PREMIUM FIX)
========================= */
.about-belief {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    padding: 85px 0 95px;
    background: linear-gradient(180deg,#eef6ff 0%, #dcedff 45%, #f7fbff 100%);
}

    .about-belief::before {
        content: "";
        position: absolute;
        inset: 0;
        pointer-events: none;
        background: radial-gradient(circle at 20% 25%, rgba(59,130,246,.16), transparent 58%), radial-gradient(circle at 85% 30%, rgba(147,197,253,.22), transparent 62%), radial-gradient(1600px 520px at 50% 82%, rgba(255,255,255,.48), transparent 74%);
    }

.belief-wrap {
    position: relative;
    z-index: 2;
    max-width: 980px;
    margin: 0 auto;
    text-align: center;
    padding: 46px 40px;
    border-radius: 34px;
    /* premium glass */

    border: 1px solid rgba(255,255,255,.90);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

    .belief-wrap::before {
        content: "";
        position: absolute;
        inset: 0;
        pointer-events: none;
        background: radial-gradient(circle at 22% 18%, rgba(59,130,246,.12), transparent 58%), radial-gradient(circle at 80% 22%, rgba(147,197,253,.20), transparent 58%), linear-gradient(180deg, rgba(255,255,255,.55), rgba(255,255,255,.05));
        opacity: .95;
        border-radius: 34px;
    }

    .belief-wrap > * {
        position: relative;
        z-index: 2;
    }

.belief-title {
    margin: 0;
    font-size: 44px;
    font-weight: 1000;
    color: #0f172a;
    letter-spacing: -0.02em;
}

.belief-line {
    display: block;
    width: 96px;
    height: 4px;
    margin: 14px auto 0;
    border-radius: 999px;
    background: linear-gradient(90deg,#2563eb,#60a5fa);
}

.belief-sub {
    margin-top: 22px;
    font-size: 15px;
    line-height: 1.8;
    color: #334155;
    font-weight: 700;
    max-width: 860px;
    margin-left: auto;
    margin-right: auto;
}

/* ✅ premium list */
.belief-list {
    margin-top: 28px;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 14px;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

    .belief-list li {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 14px 18px;
        border-radius: 999px;
        font-size: 15px;
        font-weight: 900;
        color: #0f172a;
        background: rgba(255,255,255,.62);
        border: 1px solid rgba(255,255,255,.85);
        box-shadow: 0 16px 45px rgba(15,23,42,.08);
    }

        /* bullet as premium icon */
        .belief-list li::before {
            content: "";
            width: 34px;
            height: 34px;
            border-radius: 999px;
            background: rgba(59,130,246,.14);
            border: 1px solid rgba(147,197,253,.45);
            box-shadow: inset 0 1px 0 rgba(255,255,255,.9);
        }

/* responsive */
@media(max-width:768px) {
    .belief-wrap {
        padding: 34px 18px;
    }

    .belief-title {
        font-size: 34px;
    }
}

/* responsive */
@media(max-width: 1024px) {
    .purpose-title {
        font-size: 38px;
    }

    .purpose-card-title {
        font-size: 32px;
    }

    .purpose-card {
        padding: 30px 20px;
    }
}

@media(max-width: 640px) {
    .purpose-title {
        font-size: 34px;
    }

    .purpose-text {
        font-size: 14px;
        line-height: 1.8;
    }

    .belief-list {
        font-size: 15px;
    }
}

/* ✅ RESPONSIVE */
@media (max-width: 1100px) {
    .ach-grid {
        grid-template-columns: 1fr;
    }

    .ach-side-card {
        height: 260px;
    }

    .ach-main-card {
        grid-template-columns: 1fr;
        height: auto;
    }

    .ach-main-img {
        height: 260px;
    }

    .ach-nav {
        top: 35%;
    }
}

.step-pill {
    padding: 6px 10px;
    border-radius: 999px;
    border: 1px solid rgba(148,163,184,0.3);
    background: rgba(248,250,252,0.9);
}

    .step-pill.active {
        background: rgba(37,99,235,0.10);
        border-color: rgba(37,99,235,0.25);
        color: #2563eb;
    }

.step-line {
    height: 2px;
    flex: 1;
    background: rgba(148,163,184,0.25);
    border-radius: 99px;
}

    .step-line.active {
        background: rgba(37,99,235,0.35);
    }

.type-card {
    border: 1px solid rgba(148,163,184,0.25);
    border-radius: 18px;
    padding: 18px;
    display: flex;
    gap: 14px;
    background: rgba(255,255,255,0.96);
    transition: .2s ease;
    text-align: left;
}

    .type-card:hover {
        transform: translateY(-2px);
        box-shadow: 0 18px 40px rgba(37,99,235,0.10);
    }

    .type-card.selected {
        border-color: rgba(37,99,235,0.45);
        box-shadow: 0 18px 50px rgba(37,99,235,0.14);
    }

.type-icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    background: linear-gradient(180deg,#f3f8ff,#eaf2ff);
    box-shadow: 0 10px 25px rgba(37,99,235,0.12);
}

.field-label {
    display: block;
    font-size: 12px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 6px;
}

.field {
    width: 100%;
    border: 1px solid rgba(148,163,184,0.28);
    border-radius: 14px;
    padding: 12px 14px;
    outline: none;
    background: rgba(255,255,255,0.98);
}

    .field:focus {
        border-color: rgba(37,99,235,0.55);
        box-shadow: 0 0 0 4px rgba(37,99,235,0.12);
    }

.btn-primary {
    background: #2563eb;
    color: #fff;
    padding: 12px 22px;
    border-radius: 14px;
    font-weight: 800;
    box-shadow: 0 16px 35px rgba(37,99,235,0.25);
    transition: .2s;
}

    .btn-primary:hover {
        transform: translateY(-1px);
    }

.btn-light {
    background: rgba(248,250,252,1);
    border: 1px solid rgba(148,163,184,0.25);
    padding: 12px 18px;
    border-radius: 14px;
    font-weight: 800;
    color: #0f172a;
}

.pill {
    border: 1px solid rgba(148,163,184,0.28);
    padding: 10px 16px;
    border-radius: 999px;
    font-weight: 800;
    font-size: 13px;
}

    .pill.active {
        border-color: rgba(37,99,235,0.45);
        background: rgba(37,99,235,0.10);
        color: #2563eb;
    }

.info-note {
    margin-top: 12px;
    padding: 12px 14px;
    border-radius: 16px;
    background: rgba(37,99,235,0.06);
    border: 1px solid rgba(37,99,235,0.12);
    font-size: 13px;
    color: #0f172a;
    font-weight: 700;
}

.done-icon {
    width: 72px;
    height: 72px;
    border-radius: 999px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(34,197,94,0.12);
    border: 1px solid rgba(34,197,94,0.22);
    color: rgb(22,163,74);
    font-size: 32px;
    font-weight: 900;
}

/* =========================================================
   SOLUTIONS (NEW PREMIUM DESIGN)
========================================================= */
.solx {
    position: relative;
    padding: 70px 0 120px;
    background: radial-gradient(1200px 600px at 20% 10%, rgba(37,99,235,.18), transparent 55%), radial-gradient(1000px 520px at 80% 18%, rgba(147,197,253,.28), transparent 60%), linear-gradient(180deg,#f6fbff 0%, #eef6ff 40%, #ffffff 100%);
    overflow: hidden;
}

    .solx::before {
        content: "";
        position: absolute;
        inset: -80px;
        background: radial-gradient(circle at 20% 35%, rgba(255,255,255,.65), transparent 65%), radial-gradient(circle at 85% 20%, rgba(255,255,255,.55), transparent 60%);
        filter: blur(10px);
        opacity: .8;
        pointer-events: none;
    }

.solx-wrap {
    position: relative;
    z-index: 2;
    max-width: 1220px;
    margin: 0 auto;
    padding: 0 24px;
}

/* HERO */
.solx-hero {
    border-radius: 42px;
    padding: 34px;
    background: rgba(255,255,255,.62);
    border: 1px solid rgba(255,255,255,.88);
    backdrop-filter: blur(22px);
    box-shadow: 0 80px 160px rgba(15,23,42,.14), 0 28px 90px rgba(37,99,235,.12), inset 0 1px 0 rgba(255,255,255,.92);
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 26px;
    overflow: hidden;
    position: relative;
}

    .solx-hero::after {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at 28% 12%, rgba(37,99,235,.12), transparent 55%), radial-gradient(circle at 78% 30%, rgba(147,197,253,.16), transparent 60%);
        pointer-events: none;
    }

.solx-hero-left {
    position: relative;
    z-index: 2;
}

.solx-pill-row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.solx-pill {
    padding: 8px 14px;
    border-radius: 999px;
    font-weight: 900;
    font-size: 12px;
    letter-spacing: .02em;
    color: #1d4ed8;
    background: rgba(37,99,235,.10);
    border: 1px solid rgba(37,99,235,.18);
}

.solx-pill-soft {
    color: #0f172a;
    background: rgba(255,255,255,.75);
    border-color: rgba(226,232,240,.8);
}

.solx-title {
    margin-top: 18px;
    font-size: 56px;
    line-height: 1.02;
    font-weight: 1000;
    letter-spacing: -0.03em;
    color: #0b1220;
}

.solx-sub {
    margin-top: 14px;
    font-size: 15px;
    line-height: 1.85;
    font-weight: 700;
    color: #334155;
    max-width: 560px;
}

.solx-cta {
    margin-top: 22px;
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.solx-cta-primary {
    height: 50px;
    padding: 0 22px;
    border-radius: 999px;
    font-weight: 1000;
    color: #fff;
    background: linear-gradient(180deg,#2563eb,#1d4ed8);
    box-shadow: 0 26px 80px rgba(37,99,235,.25);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: .2s ease;
}

    .solx-cta-primary:hover {
        transform: translateY(-1px);
        box-shadow: 0 36px 95px rgba(37,99,235,.32);
    }

.solx-cta-ghost {
    height: 50px;
    padding: 0 22px;
    border-radius: 999px;
    font-weight: 1000;
    background: rgba(255,255,255,.72);
    border: 1px solid rgba(226,232,240,.9);
    color: #0f172a;
    display: inline-flex;
    align-items: center;
    transition: .2s ease;
}

    .solx-cta-ghost:hover {
        background: white;
        transform: translateY(-1px);
    }

/* Trust mini */
.solx-mini-trust {
    margin-top: 22px;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.solx-mini {
    padding: 12px 14px;
    border-radius: 18px;
    background: rgba(255,255,255,.70);
    border: 1px solid rgba(226,232,240,.85);
    box-shadow: 0 18px 60px rgba(15,23,42,.08);
    display: flex;
    flex-direction: column;
}

    .solx-mini strong {
        font-weight: 1000;
        color: #0f172a;
    }

    .solx-mini span {
        font-weight: 800;
        font-size: 12px;
        color: #64748b;
    }

/* RIGHT IMAGE */
.solx-hero-right {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
}

.solx-imgframe {
    width: 100%;
    max-width: 420px;
    border-radius: 36px;
    padding: 14px;
    background: rgba(255,255,255,.68);
    border: 1px solid rgba(255,255,255,.88);
    box-shadow: 0 60px 140px rgba(15,23,42,.18);
}

    .solx-imgframe img {
        width: 100%;
        height: 360px;
        object-fit: cover;
        border-radius: 28px;
        display: block;
    }

/* CONTENT GRID */
.solx-grid {
    margin-top: 26px;
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 22px;
}

.solx-card {
    border-radius: 30px;
    padding: 24px;
    background: rgba(255,255,255,.72);
    border: 1px solid rgba(255,255,255,.88);
    backdrop-filter: blur(18px);
    box-shadow: 0 40px 120px rgba(15,23,42,.10);
}

.solx-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.solx-card h2 {
    font-size: 20px;
    font-weight: 1000;
    color: #0f172a;
}

.solx-chip {
    font-size: 12px;
    font-weight: 1000;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(0,0,0,.04);
    border: 1px solid rgba(226,232,240,.9);
    color: #0f172a;
}

.solx-chip-blue {
    background: rgba(37,99,235,.10);
    color: #1d4ed8;
    border-color: rgba(37,99,235,.18);
}

.solx-chip-green {
    background: rgba(16,185,129,.10);
    color: #047857;
    border-color: rgba(16,185,129,.18);
}

.solx-overview {
    margin-top: 12px;
    font-weight: 700;
    color: #334155;
    line-height: 1.9;
    font-size: 15px;
}

.solx-readmore {
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid rgba(226,232,240,.9);
}

    .solx-readmore summary {
        cursor: pointer;
        font-weight: 1000;
        color: #2563eb;
    }

    .solx-readmore p {
        margin-top: 10px;
        color: #475569;
        font-weight: 700;
        line-height: 1.9;
    }

/* Benefits */
.solx-benefits {
    margin-top: 18px;
    display: grid;
    gap: 14px;
}

.solx-benefit {
    display: flex;
    gap: 12px;
    padding: 14px 14px;
    border-radius: 22px;
    background: rgba(37,99,235,.06);
    border: 1px solid rgba(37,99,235,.10);
}

.solx-dot {
    width: 12px;
    height: 12px;
    border-radius: 999px;
    background: linear-gradient(180deg,#2563eb,#60a5fa);
    margin-top: 6px;
    flex: 0 0 auto;
}

.solx-benefit strong {
    font-weight: 1000;
    color: #0f172a;
    display: block;
}

.solx-benefit p {
    margin-top: 6px;
    font-weight: 700;
    color: #475569;
    line-height: 1.75;
    font-size: 13px;
}

/* Tags */
.solx-tags {
    margin-top: 16px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.solx-tag {
    padding: 10px 14px;
    border-radius: 999px;
    font-weight: 1000;
    background: rgba(255,255,255,.70);
    border: 1px solid rgba(226,232,240,.9);
    box-shadow: 0 16px 45px rgba(15,23,42,.06);
    color: #0f172a;
    font-size: 13px;
}

/* FAQ */
.solx-faq details {
    margin-top: 12px;
    border-radius: 18px;
    background: rgba(255,255,255,.65);
    border: 1px solid rgba(226,232,240,.9);
    padding: 14px;
}

.solx-faq summary {
    font-weight: 1000;
    cursor: pointer;
    color: #0f172a;
}

.solx-faq p {
    margin-top: 10px;
    font-weight: 700;
    color: #475569;
    line-height: 1.8;
}

/* Right Float */
.solx-float {
    position: sticky;
    top: 110px;
    border-radius: 32px;
    padding: 22px;
    background: linear-gradient(180deg, rgba(255,255,255,.75), rgba(239,246,255,.60));
    border: 1px solid rgba(255,255,255,.92);
    box-shadow: 0 70px 150px rgba(15,23,42,.14);
}

    .solx-float h3 {
        font-size: 18px;
        font-weight: 1000;
        color: #0f172a;
    }

    .solx-float p {
        margin-top: 8px;
        font-weight: 700;
        color: #475569;
        line-height: 1.8;
    }

.solx-form {
    margin-top: 14px;
    display: grid;
    gap: 10px;
}

    .solx-form input {
        height: 46px;
        padding: 0 14px;
        border-radius: 16px;
        border: 1px solid rgba(226,232,240,1);
        font-weight: 800;
        outline: none;
    }

    .solx-form button {
        height: 48px;
        border-radius: 999px;
        font-weight: 1000;
        color: white;
        background: linear-gradient(180deg,#2563eb,#1d4ed8);
        box-shadow: 0 18px 60px rgba(37,99,235,.22);
    }

.solx-contact-row {
    margin-top: 14px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.solx-call, .solx-wa {
    height: 46px;
    border-radius: 16px;
    font-weight: 1000;
    display: grid;
    place-items: center;
}

.solx-call {
    background: rgba(255,255,255,.75);
    border: 1px solid rgba(226,232,240,.9);
    color: #0f172a;
}

.solx-wa {
    background: rgba(16,185,129,.10);
    border: 1px solid rgba(16,185,129,.18);
    color: #047857;
}

/* Sticky CTA */
.solx-sticky {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 18px;
    z-index: 9999;
    display: flex;
    justify-content: center;
    pointer-events: none;
}

.solx-sticky-wrap {
    width: min(980px, 92vw);
    pointer-events: auto;
    padding: 14px 16px;
    border-radius: 20px;
    background: rgba(255,255,255,.78);
    border: 1px solid rgba(255,255,255,.9);
    backdrop-filter: blur(18px);
    box-shadow: 0 40px 120px rgba(15,23,42,.14);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.solx-sticky-text strong {
    font-weight: 1000;
    color: #0f172a;
}

.solx-sticky-text span {
    margin-left: 10px;
    font-weight: 800;
    color: #64748b;
}

.solx-sticky-actions {
    display: flex;
    gap: 10px;
    align-items: center;
}

    .solx-sticky-actions a {
        padding: 10px 14px;
        border-radius: 999px;
        font-weight: 1000;
        background: rgba(255,255,255,.75);
        border: 1px solid rgba(226,232,240,.9);
        color: #0f172a;
    }

    .solx-sticky-actions button {
        padding: 10px 14px;
        border-radius: 999px;
        font-weight: 1000;
        color: white;
        background: linear-gradient(180deg,#2563eb,#1d4ed8);
    }

/* Modal */
.solx-modal {
    position: fixed;
    inset: 0;
    background: rgba(2,6,23,.55);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 99999;
}

.solx-modal-card {
    width: min(520px, 92vw);
    border-radius: 28px;
    padding: 24px;
    background: rgba(255,255,255,.90);
    border: 1px solid rgba(255,255,255,.92);
    backdrop-filter: blur(18px);
    box-shadow: 0 80px 200px rgba(0,0,0,.25);
    position: relative;
}

.solx-x {
    position: absolute;
    right: 14px;
    top: 14px;
    width: 40px;
    height: 40px;
    border-radius: 999px;
    font-weight: 1000;
    background: rgba(15,23,42,.06);
}

.solx-modal-card h3 {
    font-size: 20px;
    font-weight: 1000;
    color: #0f172a;
}

.solx-modal-card p {
    margin-top: 6px;
    font-weight: 800;
    color: #475569;
}

.solx-modal-form {
    margin-top: 14px;
    display: grid;
    gap: 10px;
}

    .solx-modal-form input {
        height: 48px;
        border-radius: 16px;
        padding: 0 14px;
        border: 1px solid rgba(226,232,240,1);
        font-weight: 800;
    }

    .solx-modal-form button {
        height: 50px;
        border-radius: 999px;
        font-weight: 1000;
        color: white;
        background: linear-gradient(180deg,#2563eb,#1d4ed8);
    }

.solx-safe {
    margin-top: 10px;
    font-size: 12px;
}

/* responsive */
@media (max-width: 1024px) {
    .solx-hero {
        grid-template-columns: 1fr;
    }

    .solx-title {
        font-size: 44px;
    }

    .solx-imgframe img {
        height: 280px;
    }

    .solx-grid {
        grid-template-columns: 1fr;
    }

    .solx-float {
        position: relative;
        top: auto;
    }
}

@media (max-width: 640px) {
    .solx-title {
        font-size: 36px;
    }

    .solx-sticky-text span {
        display: none;
    }
}

/* =========================================================
   SOLUTIONS MEGA MENU (PREMIUM)
========================================================= */

.solMegaWrap {
    position: relative;
}

.solMegaBtn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: none;
    background: transparent;
    cursor: pointer;
    font-size: 14px;
    font-weight: 700;
    color: #334155;
    padding: 10px 6px;
}

.solMegaChev {
    font-size: 12px;
    font-weight: 900;
    transition: .2s ease;
}

    .solMegaChev.open {
        transform: rotate(180deg);
    }

/* Mega panel container */
.solMegaPanel {
    position: absolute;
    top: 55px;
    left: 50%;
    transform: translate(-50%, 12px);
    width: 980px;
    border-radius: 26px;
    padding: 18px;
    display: grid;
    grid-template-columns: 180px 1fr 280px;
    gap: 16px;
    background: linear-gradient( 135deg, rgba(37,99,235,.18), rgba(239,68,68,.12), rgba(255,255,255,.65) );
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid rgba(226,232,240,.9);
    box-shadow: 0 35px 110px rgba(15,23,42,.20);
    opacity: 0;
    pointer-events: none;
    transition: .22s ease;
    z-index: 999;
}

    .solMegaPanel.open {
        opacity: 1;
        transform: translate(-50%, 0);
        pointer-events: auto;
    }

/* Left category list */
.solMegaCats {
    background: linear-gradient( 180deg, rgba(230, 240, 255, 0.95), rgba(245, 249, 255, 0.95) );
    border: 1px solid rgba(226,232,240,.9);
    border-radius: 20px;
    padding: 12px;
    display: grid;
    gap: 10px;
    border-right: 1px solid rgba(59, 130, 246, 0.15);
}

.solMegaCat {
    cursor: pointer;
    text-align: left;
    padding: 12px 12px;
    border-radius: 16px;
    font-weight: 900;
    font-size: 14px;
    color: #0f172a;
    border: 1px solid rgba(37,99,235,.30);
    transition: .2s ease;
}

    .solMegaCat:hover {
        background: rgba(37,99,235,.08);
    }

    .solMegaCat.active {
        background: linear-gradient( 90deg, rgba(37,99,235,.35), rgba(239,68,68,.22) );
        border: 1px solid rgba(37,99,235,.22);
        color: #1e3a8a;
    }

/* Middle grid */
.solMegaItems {
    border-radius: 20px;
    padding: 12px;
    background: rgba(255,255,255,.70);
    border: 1px solid rgba(226,232,240,.85);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.8);
}

.solMegaGrid {
    display: none;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

    .solMegaGrid.active {
        display: grid;
    }

.solMegaItem {
    text-decoration: none;
    padding: 14px 14px;
    border-radius: 18px;
    background: rgba(248,250,252,.85);
    border: 1px solid rgba(226,232,240,.9);
    transition: .22s ease;
    display: grid;
    gap: 6px;
    background: linear-gradient( 135deg, rgba(255,255,255,.75), rgba(37,99,235,.08), rgba(239,68,68,.06) );
}

    .solMegaItem strong {
        font-weight: 900;
        font-size: 14px;
        color: #0f172a;
    }

    .solMegaItem span {
        font-size: 12.5px;
        font-weight: 700;
        color: #64748b;
    }

    .solMegaItem:hover {
        transform: translateY(-2px);
        border-color: rgba(37,99,235,.45);
        box-shadow: 0 20px 55px rgba(37,99,235,.25), 0 0 0 1px rgba(239,68,68,.12);
    }

/* Right CTA */
.solMegaCta {
    border-radius: 20px;
    background: rgba(248,250,252,.85);
    border: 1px solid rgba(226,232,240,.95);
    padding: 14px;
}

.solMegaCard {
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(255,255,255,.85), rgba(239,246,255,.68));
    border: 1px solid rgba(255,255,255,.9);
    padding: 18px;
    box-shadow: 0 24px 75px rgba(15,23,42,.10);
}

    .solMegaCard h4 {
        font-size: 16px;
        font-weight: 1000;
        color: #0f172a;
        margin-bottom: 8px;
    }

    .solMegaCard p {
        font-size: 13px;
        line-height: 1.6;
        color: #475569;
        font-weight: 700;
    }

.solMegaCtaBtn {
    margin-top: 14px;
    display: inline-flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    height: 46px;
    border-radius: 16px;
    font-weight: 900;
    color: #fff;
    text-decoration: none;
    background: linear-gradient(90deg,#3b82f6,#2563eb);
    box-shadow: 0 18px 55px rgba(37,99,235,.30);
    transition: .2s ease;
}

    .solMegaCtaBtn:hover {
        transform: translateY(-2px);
        box-shadow: 0 26px 85px rgba(37,99,235,.38);
    }

.solMegaMini {
    margin-top: 12px;
    display: grid;
    gap: 8px;
    font-size: 12.5px;
    color: #334155;
    font-weight: 800;
}

/* responsive */
@media(max-width: 1024px) {
    .solMegaPanel {
        width: 92vw;
        left: 50%;
        transform: translate(-50%, 12px);
        grid-template-columns: 1fr;
    }

        .solMegaPanel.open {
            transform: translate(-50%, 0);
        }

    .solMegaGrid.active {
        grid-template-columns: 1fr;
    }
}

/* ===========================
   LeadChat - Apple Liquid Glass UI
   (No markup change required)
   =========================== */

:root {
    --glass-bg: rgba(255,255,255,.12);
    --glass-strong: rgba(255,255,255,.20);
    --glass-border: rgba(255,255,255,.22);
    --glass-border-strong: rgba(255,255,255,.34);
    --glass-shadow: 0 30px 90px rgba(2,8,23,.20);
    --glass-shadow-soft: 0 18px 50px rgba(2,8,23,.16);
    --radius: 24px;
    --accent: #2563eb;
}

.leadchat-fabwrap {
    position: relative;
    width: 58px;
    height: 58px;
}

/* pulse ring */
.leadchat-pulse {
    position: absolute;
    inset: -6px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(37,99,235,.25), rgba(37,99,235,0) 60%);
    filter: blur(1px);
    animation: leadchatPulse 1.8s ease-in-out infinite;
    pointer-events: none;
    opacity: .85;
}

@keyframes leadchatPulse {
    0% {
        transform: scale(.92);
        opacity: .35;
    }

    50% {
        transform: scale(1.08);
        opacity: .90;
    }

    100% {
        transform: scale(.92);
        opacity: .35;
    }
}

/* dot indicator (top right) */
.leadchat-dot {
    position: absolute;
    top: -2px;
    right: -2px;
    width: 12px;
    height: 12px;
    border-radius: 999px;
    background: #22c55e;
    border: 2px solid rgba(255,255,255,.85);
    box-shadow: 0 12px 22px rgba(34,197,94,.30);
    pointer-events: none;
}

/* badge count */
.leadchat-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    min-width: 20px;
    height: 20px;
    padding: 0 6px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 900;
    color: white;
    background: linear-gradient(180deg,#ef4444,#dc2626);
    border: 2px solid rgba(255,255,255,.9);
    box-shadow: 0 18px 40px rgba(239,68,68,.40);
    pointer-events: none;
}
/* ================= ADMIN DASHBOARD (PRO) ================= */

.adminDash {
    min-height: calc(100vh - 120px);
    background: radial-gradient(1100px 560px at 15% 5%, rgba(59,130,246,.18), transparent 60%), radial-gradient(900px 520px at 85% 10%, rgba(99,102,241,.16), transparent 60%), linear-gradient(180deg, #f6f9ff 0%, #ffffff 65%, #ffffff 100%);
    padding: 46px 0;
}

.adminTop {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 22px;
}

.adminTitle {
    font-size: 40px;
    font-weight: 950;
    color: #0b1220;
    letter-spacing: -.03em;
    line-height: 1.1;
}

.adminSub {
    margin-top: 6px;
    color: #52627a;
    font-weight: 700;
    font-size: 14px;
}

.adminActions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.adminBtn {
    appearance: none;
    border: none;
    background: linear-gradient(135deg,#2563eb,#1d4ed8);
    color: #fff;
    font-weight: 900;
    padding: 11px 16px;
    border-radius: 14px;
    box-shadow: 0 18px 40px rgba(37,99,235,.25);
    cursor: pointer;
    transition: .18s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

    .adminBtn:hover {
        transform: translateY(-1px);
        box-shadow: 0 24px 55px rgba(37,99,235,.30);
    }

    .adminBtn.ghost {
        background: #fff;
        color: #0b1220;
        border: 1px solid rgba(15,23,42,.12);
        box-shadow: 0 14px 38px rgba(2,6,23,.06);
    }

.adminGrid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 14px;
}

/* CARD = professional admin widget */
.adminCard {
    grid-column: span 4; /* ✅ 3 cards in one row on desktop */
    position: relative;
    border-radius: 22px;
    padding: 18px 18px 16px;
    border: 1px solid rgba(15,23,42,.10);
    background: rgba(255,255,255,.85);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 18px 55px rgba(2,6,23,.07);
    overflow: hidden;
    cursor: pointer;
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
    min-height: 158px; /* ✅ compact */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

    .adminCard::before {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient(900px 250px at 10% 0%, rgba(59,130,246,.18), transparent 55%), linear-gradient(180deg, rgba(255,255,255,.55), transparent 55%);
        pointer-events: none;
    }

    .adminCard:hover {
        transform: translateY(-3px);
        border-color: rgba(37,99,235,.22);
        box-shadow: 0 28px 80px rgba(2,6,23,.13);
    }

.adminIcon {
    width: 46px;
    height: 46px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    font-size: 22px;
    background: rgba(37,99,235,.10);
    border: 1px solid rgba(37,99,235,.18);
}

/* Header section inside card */
.adminCard h3 {
    margin-top: 12px;
    font-size: 16px;
    font-weight: 950;
    color: #0b1220;
    letter-spacing: -.01em;
}

.adminCard p {
    margin-top: 6px;
    font-size: 13px;
    color: #5b6b82;
    font-weight: 700;
    line-height: 1.35;
    max-width: 52ch;
}

/* Footer row */
.adminLink {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
    font-weight: 950;
    color: #2563eb;
    text-decoration: none;
    font-size: 13px;
}

    .adminLink::after {
        content: "→";
        font-weight: 950;
    }

.adminBadge {
    position: absolute;
    top: 14px;
    right: 14px;
    background: rgba(15,23,42,.06);
    border: 1px solid rgba(15,23,42,.12);
    color: #0b1220;
    font-size: 11px;
    font-weight: 950;
    padding: 6px 10px;
    border-radius: 999px;
}

/* ================= Responsive ================= */
@media(max-width: 1100px) {
    .adminCard {
        grid-column: span 6;
    }
    /* 2 cards row */
}

@media(max-width: 760px) {
    .adminDash {
        padding: 34px 0;
    }

    .adminTitle {
        font-size: 30px;
    }

    .adminCard {
        grid-column: span 12;
    }
    /* 1 card row */
}

/* Wrapper */
.leadchat {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 999999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
}

/* Floating chat bubble button (glass) */
.leadchat-fab {
    width: 58px;
    height: 58px;
    border-radius: 999px;
    border: 1px solid var(--glass-border);
    cursor: pointer;
    background: radial-gradient(120% 120% at 18% 12%, rgba(255,255,255,.62), rgba(255,255,255,.08)), linear-gradient(180deg, rgba(255,255,255,.16), rgba(255,255,255,.05));
    backdrop-filter: blur(18px) saturate(180%);
    -webkit-backdrop-filter: blur(18px) saturate(180%);
    box-shadow: var(--glass-shadow-soft);
    color: #0f172a;
    font-size: 22px;
    transition: transform .18s ease, box-shadow .18s ease;
}

    .leadchat-fab:hover {
        transform: translateY(-2px) scale(1.02);
        box-shadow: 0 24px 70px rgba(2,8,23,.20);
    }

    .leadchat-fab:active {
        transform: translateY(0) scale(.98);
    }

/* Main glass panel */
.leadchat-panel {
    width: 360px;
    height: 520px;
    margin-bottom: 12px;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--glass-border-strong);
    background: radial-gradient(120% 120% at 20% 10%, rgba(255,255,255,.52), rgba(255,255,255,.08)), linear-gradient(180deg, rgba(255,255,255,.18), rgba(255,255,255,.06));
    backdrop-filter: blur(26px) saturate(170%);
    -webkit-backdrop-filter: blur(26px) saturate(170%);
    box-shadow: var(--glass-shadow);
    display: flex;
    flex-direction: column;
    transform-origin: bottom right;
    animation: leadchatPop .20s ease-out;
}

@keyframes leadchatPop {
    from {
        transform: translateY(14px) scale(.985);
        opacity: 0;
    }

    to {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

/* Header */
.leadchat-header {
    padding: 14px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255,255,255,.10);
    border-bottom: 1px solid rgba(255,255,255,.14);
}

    .leadchat-header .title b {
        display: block;
        font-size: 14px;
        font-weight: 800;
        color: rgba(10,15,26,.95);
        letter-spacing: -.2px;
    }

    .leadchat-header .title span {
        font-size: 12px;
        font-weight: 650;
        color: rgba(10,15,26,.60);
    }

    /* Close button (glass capsule) */
    .leadchat-header .close {
        width: 34px;
        height: 34px;
        border-radius: 999px;
        border: 1px solid rgba(255,255,255,.18);
        cursor: pointer;
        background: rgba(255,255,255,.10);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        font-size: 18px;
        color: rgba(10,15,26,.88);
        transition: transform .15s ease;
    }

        .leadchat-header .close:hover {
            transform: scale(1.04);
        }

        .leadchat-header .close:active {
            transform: scale(.98);
        }

/* Body */
.leadchat-body {
    padding: 14px;
    overflow-y: auto;
    flex: 1;
    /* instead of flat #f8fafc -> subtle glass tone */
    background: rgba(255,255,255,.05);
}

    /* smooth scrollbar */
    .leadchat-body::-webkit-scrollbar {
        width: 10px;
    }

    .leadchat-body::-webkit-scrollbar-thumb {
        background: rgba(0,0,0,.18);
        border-radius: 10px;
        border: 3px solid transparent;
    }

/* Messages */
.msg {
    max-width: 80%;
    padding: 10px 12px;
    border-radius: 18px;
    margin-bottom: 10px;
    font-size: 13px;
    font-weight: 650;
    line-height: 1.35;
    white-space: pre-line;
    border: 1px solid rgba(255,255,255,.16);
    box-shadow: 0 12px 24px rgba(2,8,23,.10);
}

    .msg.bot {
        background: rgba(255,255,255,.16);
        color: rgba(10,15,26,.92);
        backdrop-filter: blur(18px);
        -webkit-backdrop-filter: blur(18px);
    }

    .msg.user {
        margin-left: auto;
        color: white;
        border: 1px solid rgba(255,255,255,.20);
        background: radial-gradient(120% 120% at 18% 18%, rgba(255,255,255,.28), rgba(255,255,255,0)), linear-gradient(180deg, rgba(37,99,235,1), rgba(37,99,235,.82));
    }

/* Footer */
.leadchat-footer {
    padding: 12px;
    border-top: 1px solid rgba(255,255,255,.14);
    background: rgba(255,255,255,.06);
    min-height: 90px;
}

/* Actions grid */
.actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    max-height: 110px;
    overflow-y: auto;
}

/* Action buttons (glass pills) */
.action-btn {
    border: 1px solid rgba(255,255,255,.18);
    background: rgba(255,255,255,.10);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    padding: 10px 12px;
    border-radius: 14px;
    cursor: pointer;
    font-weight: 800;
    font-size: 12px;
    color: rgba(10,15,26,.85);
    transition: transform .15s ease, box-shadow .15s ease;
}

    .action-btn:hover {
        transform: translateY(-1px);
        box-shadow: 0 18px 40px rgba(2,8,23,.12);
    }

/* Input */
.chat-input {
    width: 100%;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 16px;
    padding: 12px 12px;
    font-weight: 700;
    outline: none;
    background: rgba(255,255,255,.10);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    color: rgba(10,15,26,.92);
}

    .chat-input::placeholder {
        color: rgba(10,15,26,.55);
    }

/* Send button (iOS blue glass) */
.send-btn {
    margin-top: 10px;
    width: 100%;
    border-radius: 16px;
    border: 0;
    cursor: pointer;
    padding: 12px;
    background: radial-gradient(120% 120% at 20% 20%, rgba(255,255,255,.22), rgba(255,255,255,0)), linear-gradient(180deg, rgba(37,99,235,1), rgba(37,99,235,.84));
    color: white;
    font-weight: 900;
    box-shadow: 0 16px 44px rgba(37,99,235,.34);
    transition: transform .15s ease;
}

    .send-btn:hover {
        transform: translateY(-1px);
    }

    .send-btn:active {
        transform: translateY(0) scale(.99);
    }

/* Skip button (glass neutral) */
.skip-btn {
    margin-top: 10px;
    width: 100%;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,.18);
    cursor: pointer;
    padding: 12px;
    background: rgba(255,255,255,.10);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    font-weight: 900;
    color: rgba(10,15,26,.88);
    transition: transform .15s ease, box-shadow .15s ease;
}

    .skip-btn:hover {
        transform: translateY(-1px);
        box-shadow: 0 18px 40px rgba(2,8,23,.12);
    }

/* INSIGHTS PAGE */
.ins {
    background: linear-gradient(180deg, #f4f8ff 0%, #ffffff 55%);
}

.ins-hero {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 34px;
    padding: 32px;
    border-radius: 28px;
    background: rgba(255,255,255,0.7);
    box-shadow: 0 16px 50px rgba(0,0,0,0.08);
    border: 1px solid rgba(15,23,42,0.06);
}

.ins-hero-left h1 {
    font-size: 44px;
    font-weight: 900;
    line-height: 1.06;
    color: #0f172a;
}

.ins-hero-left p {
    margin-top: 12px;
    color: #475569;
    font-weight: 700;
    max-width: 520px;
}

.ins-search {
    margin-top: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    border: 1px solid rgba(15,23,42,0.1);
    border-radius: 16px;
    padding: 12px 14px;
}

    .ins-search input {
        width: 100%;
        outline: none;
        font-weight: 800;
        color: #0f172a;
    }

.ins-tabs {
    margin-top: 14px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.ins-tab {
    padding: 10px 14px;
    border-radius: 14px;
    font-weight: 900;
    font-size: 14px;
    background: #eef2ff;
    color: #1e40af;
    border: 1px solid rgba(37,99,235,0.15);
}

    .ins-tab.active {
        background: #2563eb;
        color: #fff;
    }

.ins-hero-right img {
    width: 100%;
    height: 280px;
    object-fit: contain;
}

.ins-sec-title {
    font-size: 24px;
    font-weight: 900;
    color: #0f172a;
}

.ins-featured-grid {
    margin-top: 14px;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 18px;
}

.ins-featured-big {
    background: #fff;
    border-radius: 22px;
    border: 1px solid rgba(15,23,42,0.08);
    overflow: hidden;
    box-shadow: 0 14px 40px rgba(0,0,0,0.06);
}

.ins-img img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.ins-big-body {
    padding: 18px 18px 20px;
}

.ins-meta {
    color: #64748b;
    font-weight: 900;
    font-size: 13px;
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
}

.ins-chip {
    background: #eef2ff;
    color: #1d4ed8;
    border: 1px solid rgba(37,99,235,0.18);
    font-weight: 900;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 12px;
}

.ins-featured-big h3 {
    margin-top: 10px;
    font-size: 24px;
    font-weight: 900;
    color: #0f172a;
}

.ins-featured-big p {
    margin-top: 8px;
    color: #475569;
    font-weight: 700;
}

.ins-read {
    margin-top: 14px;
    padding: 12px 16px;
    border-radius: 14px;
    font-weight: 900;
    background: #2563eb;
    color: #fff;
}

.ins-featured-side {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ins-side-card {
    background: #fff;
    border-radius: 18px;
    border: 1px solid rgba(15,23,42,0.08);
    padding: 14px 14px 15px;
    cursor: pointer;
    box-shadow: 0 12px 30px rgba(0,0,0,0.05);
}

.ins-side-meta {
    display: flex;
    gap: 10px;
    align-items: center;
    font-weight: 900;
    font-size: 12px;
    color: #64748b;
}

.ins-side-card strong {
    display: block;
    margin-top: 8px;
    font-size: 16px;
    font-weight: 900;
    color: #0f172a;
}

.ins-side-card p {
    margin-top: 6px;
    font-size: 13px;
    color: #475569;
    font-weight: 700;
}

.ins-side-link {
    display: inline-block;
    margin-top: 10px;
    font-weight: 900;
    color: #2563eb;
    font-size: 13px;
}

.ins-latest-grid {
    margin-top: 14px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.ins-card {
    background: #fff;
    border-radius: 22px;
    border: 1px solid rgba(15,23,42,0.08);
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 12px 35px rgba(0,0,0,0.05);
}

.ins-card-img img {
    width: 100%;
    height: 170px;
    object-fit: cover;
}

.ins-card-body {
    padding: 14px 14px 18px;
}

    .ins-card-body h3 {
        margin-top: 10px;
        font-size: 16px;
        font-weight: 900;
        color: #0f172a;
    }

    .ins-card-body p {
        margin-top: 7px;
        font-size: 13px;
        color: #475569;
        font-weight: 700;
    }

.ins-read-sm {
    margin-top: 12px;
    font-weight: 900;
    color: #2563eb;
}

.ins-cta {
    margin-top: 60px;
    background: linear-gradient(90deg, #2563eb 0%, #1d4ed8 60%, #60a5fa 100%);
    border-radius: 26px;
    padding: 22px 22px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

    .ins-cta h3 {
        font-size: 20px;
        font-weight: 900;
    }

    .ins-cta p {
        margin-top: 4px;
        font-weight: 800;
        opacity: 0.9;
    }

.ins-cta-right {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.ins-cta-btn {
    background: #fff;
    color: #1d4ed8;
    font-weight: 900;
    padding: 12px 16px;
    border-radius: 14px;
}

    .ins-cta-btn.ghost {
        background: rgba(255,255,255,0.16);
        color: #fff;
        border: 1px solid rgba(255,255,255,0.24);
    }

/* BLOG DETAIL */
.post {
    background: #fff;
}

.post-back {
    font-weight: 900;
    color: #2563eb;
}

.post-meta {
    margin-top: 10px;
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
    font-weight: 900;
    color: #64748b;
}

.post-chip {
    background: #eef2ff;
    color: #1d4ed8;
    border: 1px solid rgba(37,99,235,0.18);
    font-weight: 900;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 12px;
}

.post-title {
    margin-top: 12px;
    font-size: 40px;
    font-weight: 900;
    color: #0f172a;
    line-height: 1.06;
}

.post-sub {
    margin-top: 10px;
    color: #475569;
    font-weight: 800;
    font-size: 16px;
}

.post-cover {
    width: 100%;
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid rgba(148,163,184,0.25);
    background: #fff;
}

    .post-cover img {
        width: 100%;
        height: 320px;
        object-fit: cover;
        object-position: 50% 20%; /* ✅ best crop position */
        display: block;
    }

@media (max-width: 640px) {
    .post-cover img {
        height: 220px;
        object-position: 50% 15%;
    }
}

.post-body {
    margin-top: 26px;
    font-size: 16px;
    line-height: 1.85;
    color: #0f172a;
}

    .post-body h2 {
        font-size: 24px;
        font-weight: 900;
        margin-top: 28px;
        margin-bottom: 8px;
    }

    .post-body ul {
        margin-left: 22px;
        list-style: disc;
        font-weight: 700;
        color: #0f172a;
    }

    .post-body ol {
        margin-left: 22px;
        list-style: decimal;
        font-weight: 700;
        color: #0f172a;
    }

    .post-body p {
        margin: 10px 0;
        font-weight: 700;
        color: #0f172a;
    }

.post-bottom-cta {
    margin-top: 50px;
    border-radius: 24px;
    border: 1px solid rgba(15,23,42,0.08);
    background: #f4f8ff;
    padding: 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

    .post-bottom-cta h3 {
        font-weight: 900;
        font-size: 18px;
        color: #0f172a;
    }

    .post-bottom-cta p {
        margin-top: 4px;
        font-weight: 800;
        color: #475569;
    }

.post-cta-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.post-btn {
    background: #2563eb;
    color: #fff;
    font-weight: 900;
    padding: 12px 16px;
    border-radius: 14px;
}

    .post-btn.ghost {
        background: #fff;
        color: #1d4ed8;
        border: 1px solid rgba(37,99,235,0.18);
    }

/* RESPONSIVE */
@media (max-width: 1024px) {
    .ins-hero {
        grid-template-columns: 1fr;
    }

    .ins-hero-right img {
        height: 220px;
    }

    .ins-featured-grid {
        grid-template-columns: 1fr;
    }

    .ins-latest-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .post-title {
        font-size: 32px;
    }
}

@media (max-width: 640px) {
    .ins-latest-grid {
        grid-template-columns: 1fr;
    }

    .post-cover img {
        height: 220px;
    }

    .ins-cta {
        flex-direction: column;
        align-items: flex-start;
    }
}

.adminBtn.sm {
    padding: 8px 12px;
    border-radius: 12px;
    font-weight: 800;
    font-size: 12px;
}

/* ---------------------------
   Callback Requests Admin Page
---------------------------- */

.adminField {
    width: 100%;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 12px 14px;
    outline: none;
    font-weight: 800;
    background: #fff;
    color: #0f172a;
}

    .adminField:focus {
        border-color: rgba(37,99,235,0.55);
        box-shadow: 0 0 0 4px rgba(37,99,235,0.10);
    }

.adminBtn.sm {
    padding: 9px 12px;
    border-radius: 12px;
    font-weight: 900;
    font-size: 12px;
}

.adminBtn.danger {
    background: #ef4444;
    border-color: #ef4444;
    color: #fff;
}

    .adminBtn.danger:hover {
        filter: brightness(0.95);
    }

.badge {
    display: inline-flex;
    padding: 6px 10px;
    border-radius: 999px;
    border: 1px solid #e2e8f0;
    background: #fff;
    font-weight: 900;
    font-size: 12px;
    color: #334155;
}

.status {
    display: inline-flex;
    padding: 6px 10px;
    border-radius: 999px;
    font-weight: 900;
    font-size: 12px;
    border: 1px solid #e2e8f0;
}

.s-new {
    background: #eff6ff;
    color: #1d4ed8;
    border-color: #bfdbfe;
}

.s-contact {
    background: #f0fdf4;
    color: #166534;
    border-color: #bbf7d0;
}

.s-closed {
    background: #fef2f2;
    color: #991b1b;
    border-color: #fecaca;
}
/* ----- Callback Actions UI ----- */
.adminActionsRow {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.miniDivider {
    width: 1px;
    height: 22px;
    background: #e2e8f0;
    margin: 0 4px;
}

.miniBtn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 999px;
    font-weight: 900;
    font-size: 12px;
    border: 1px solid #e2e8f0;
    background: #fff;
    color: #0f172a;
    transition: .18s;
    line-height: 1;
}

    .miniBtn:hover {
        background: #f8fafc;
        transform: translateY(-1px);
    }

    .miniBtn.call {
        border-color: #bfdbfe;
        background: #eff6ff;
        color: #1d4ed8;
    }

    .miniBtn.wa {
        border-color: #bbf7d0;
        background: #f0fdf4;
        color: #166534;
    }

    .miniBtn.ok {
        border-color: #bbf7d0;
        background: #f0fdf4;
        color: #166534;
    }

    .miniBtn.close {
        border-color: #fecaca;
        background: #fef2f2;
        color: #991b1b;
    }
/* =========================
   Cookie Consent (Premium)
========================= */
.cc-banner {
    position: fixed;
    right: 20px;
    bottom: 22px;
    width: min(420px, calc(100% - 32px));
    background: rgba(255,255,255,.92);
    border: 1px solid rgba(15,23,42,.08);
    border-radius: 18px;
    padding: 16px 16px 14px;
    box-shadow: 0 24px 90px rgba(2,6,23,.18);
    backdrop-filter: blur(10px);
    z-index: 99999;
}

.cc-title {
    font-weight: 950;
    font-size: 16px;
    color: #0f172a;
}

.cc-text {
    margin-top: 8px;
    font-size: 13.5px;
    line-height: 1.55;
    font-weight: 700;
    color: #475569;
}

.cc-actions {
    margin-top: 14px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

    .cc-actions.right {
        justify-content: flex-end;
    }

.cc-btn {
    height: 40px;
    padding: 0 14px;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    font-weight: 900;
    font-size: 13px;
    color: #fff;
    background: linear-gradient(180deg,#3b82f6,#2563eb);
    box-shadow: 0 12px 35px rgba(37,99,235,.26);
    transition: .2s ease;
}

    .cc-btn:hover {
        transform: translateY(-1px);
        box-shadow: 0 16px 50px rgba(37,99,235,.32);
    }

    .cc-btn.ghost {
        background: #eef2ff;
        color: #1e293b;
        box-shadow: none;
        border: 1px solid rgba(15,23,42,.08);
    }

    .cc-btn.outline {
        background: transparent;
        color: #2563eb;
        border: 1px solid rgba(37,99,235,.35);
        box-shadow: none;
    }

.cc-modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(2,6,23,.45);
    backdrop-filter: blur(6px);
    z-index: 100000;
    display: grid;
    place-items: center;
    padding: 24px;
}

.cc-modal {
    width: min(520px, 100%);
    background: rgba(255,255,255,.96);
    border-radius: 18px;
    padding: 18px 18px 14px;
    border: 1px solid rgba(15,23,42,.08);
    box-shadow: 0 30px 120px rgba(0,0,0,.22);
}

    .cc-modal h3 {
        margin: 0;
        font-size: 18px;
        font-weight: 950;
        color: #0f172a;
    }

.cc-sub {
    margin-top: 6px;
    margin-bottom: 12px;
    color: #64748b;
    font-weight: 700;
    font-size: 13px;
}

.cc-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 10px;
    border-radius: 12px;
    background: #f8fafc;
    border: 1px solid rgba(15,23,42,.06);
    margin-bottom: 10px;
}

    .cc-row label {
        font-weight: 900;
        color: #0f172a;
        font-size: 14px;
    }

    .cc-row.disabled {
        opacity: .72;
    }

.cc-lock {
    font-weight: 900;
    color: #16a34a;
    font-size: 12px;
}

/* =========================
   PRIVACY POLICY (Premium)
========================= */
/* ✅ Vitality premium container (Tailwind alternative) */
.pp-container {
    width: min(1100px, 92%);
    margin: 0 auto;
}

.pp-hero {
    position: relative;
    padding: 95px 0 65px;
    overflow: hidden;
    background: linear-gradient(90deg,#f7fbff 0%, #eaf4ff 35%, #d7ebff 70%, #f7fbff 100%);
}

    .pp-hero::before {
        content: "";
        position: absolute;
        inset: 0;
        pointer-events: none;
        background: radial-gradient(circle at 15% 35%, rgba(255,255,255,.92), transparent 55%), radial-gradient(circle at 75% 25%, rgba(59,130,246,.18), transparent 62%), radial-gradient(circle at 90% 70%, rgba(147,197,253,.24), transparent 60%);
    }

.pp-title {
    font-size: 56px;
    line-height: 1.05;
    font-weight: 1000;
    color: #0f172a;
    letter-spacing: -0.03em;
    margin: 0;
    position: relative;
    z-index: 2;
}

.pp-sub {
    margin-top: 16px;
    max-width: 860px;
    font-size: 16px;
    color: #475569;
    font-weight: 650;
    line-height: 1.75;
    position: relative;
    z-index: 2;
}

.pp-meta {
    margin-top: 16px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 13px;
    color: #334155;
    font-weight: 750;
    position: relative;
    z-index: 2;
}

.pp-body {
    padding: 50px 0 0;
}

.pp-card {
    background: rgba(255,255,255,.92);
    border: 1px solid rgba(15,23,42,.10);
    border-radius: 22px;
    box-shadow: 0 18px 55px rgba(2,6,23,.07);
    padding: 26px 26px;
    margin-bottom: 18px;
}

    .pp-card h2 {
        font-size: 20px;
        font-weight: 1000;
        color: #0f172a;
        margin: 0 0 12px;
    }

    .pp-card h3 {
        font-size: 15px;
        font-weight: 950;
        color: #0f172a;
        margin: 0 0 10px;
    }

    .pp-card p {
        margin: 0 0 12px;
        font-size: 14px;
        color: #475569;
        font-weight: 650;
        line-height: 1.75;
    }

    .pp-card ul {
        margin: 10px 0 0;
        padding-left: 18px;
        color: #475569;
        font-weight: 650;
        font-size: 14px;
        line-height: 1.8;
    }

    .pp-card a {
        color: #2563eb;
        font-weight: 900;
        text-decoration: none;
    }

        .pp-card a:hover {
            text-decoration: underline;
        }

.pp-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 14px;
}

.pp-box {
    grid-column: span 6;
    border-radius: 18px;
    padding: 16px 16px;
    border: 1px solid rgba(15,23,42,.08);
    background: rgba(248,250,252,0.85);
}

.pp-note {
    margin-top: 14px;
    padding: 14px 16px;
    border-radius: 16px;
    background: rgba(37,99,235,0.08);
    border: 1px solid rgba(37,99,235,0.14);
    color: #1e3a8a;
    font-weight: 850;
    font-size: 13px;
}

.pp-contact {
    background: radial-gradient(900px 420px at 15% 0%, rgba(59,130,246,.12), transparent 60%), rgba(255,255,255,.96);
}

@media(max-width: 900px) {
    .pp-title {
        font-size: 38px;
    }

    .pp-box {
        grid-column: span 12;
    }
}

/* loader */
.solx-loader {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.4);
    border-top-color: white;
    display: inline-block;
    animation: solspin 0.75s linear infinite;
    margin-right: 8px;
    vertical-align: middle;
}

@keyframes solspin {
    to {
        transform: rotate(360deg);
    }
}

/* toast premium */
.solx-toast {
    position: fixed;
    right: 28px;
    bottom: 28px;
    z-index: 999999;
    width: 320px;
    padding: 14px 16px;
    border-radius: 16px;
    backdrop-filter: blur(18px);
    box-shadow: 0 18px 60px rgba(0,0,0,0.22);
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-weight: 700;
    animation: toastIn 0.35s ease;
}

    .solx-toast strong {
        font-size: 15px;
    }

    .solx-toast span {
        font-size: 13px;
        opacity: 0.92;
        font-weight: 600;
    }

    .solx-toast.ok {
        background: rgba(22,163,74,0.20);
        border: 1px solid rgba(22,163,74,0.35);
        color: #063d1b;
    }

    .solx-toast.bad {
        background: rgba(239,68,68,0.18);
        border: 1px solid rgba(239,68,68,0.35);
        color: #5a0a0a;
    }

@keyframes toastIn {
    from {
        transform: translateY(16px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* modal improved */
.solx-modal {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.45);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    padding: 18px;
}

/* MOBILE MENU */
.mobileMenuBtn {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    border: 1px solid rgba(0,0,0,.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    background: white;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
}

.mnavBackdrop {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.35);
    z-index: 9999;
    backdrop-filter: blur(3px);
}

.mnavDrawer {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: min(92vw, 380px);
    background: rgba(255,255,255,.92);
    backdrop-filter: blur(18px);
    border-left: 1px solid rgba(0,0,0,.08);
    box-shadow: -25px 0 50px rgba(0,0,0,.18);
    display: flex;
    flex-direction: column;
}

.mnavTop {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 18px 12px;
    border-bottom: 1px solid rgba(0,0,0,.06);
}

.mnavLogo {
    height: 42px;
    width: auto;
}

.mnavClose {
    width: 40px;
    height: 40px;
    border-radius: 14px;
    border: 1px solid rgba(0,0,0,.1);
    background: white;
    font-size: 18px;
}

.mnavLinks {
    padding: 10px 18px;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

.mnavLink {
    display: flex;
    padding: 14px 12px;
    border-radius: 14px;
    font-weight: 700;
    color: #1f2937;
    text-decoration: none;
}

    .mnavLink.active {
        background: rgba(37,99,235,.10);
        color: #2563eb;
    }

.mnavAccBtn, .mnavCatBtn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 12px;
    border-radius: 14px;
    border: 1px solid rgba(0,0,0,.06);
    background: white;
    margin-top: 10px;
    font-weight: 800;
}

.mnavAccPanel {
    padding: 10px 6px 0;
}

.mnavCatPanel {
    padding: 6px 8px 10px 14px;
}

.mnavItem {
    display: block;
    padding: 10px 10px;
    margin: 6px 0;
    border-radius: 12px;
    font-weight: 600;
    color: #334155;
    text-decoration: none;
    background: rgba(0,0,0,.03);
}

    .mnavItem:hover {
        background: rgba(37,99,235,.08);
    }

.mnavQuoteBtn {
    width: 100%;
    margin-top: 12px;
    padding: 14px 14px;
    border-radius: 16px;
    border: none;
    font-weight: 900;
    color: white;
    background: #2563eb;
}

.mnavBottom {
    padding: 14px 18px 18px;
    border-top: 1px solid rgba(0,0,0,.06);
    display: flex;
    gap: 10px;
}

.mnavCall, .mnavMail {
    flex: 1;
    text-align: center;
    padding: 12px 12px;
    border-radius: 16px;
    font-weight: 800;
    text-decoration: none;
    background: rgba(0,0,0,.05);
    color: #111827;
}

/* ==========================
   SOLUTIONS SECTION - Responsive
   ========================== */

/* Tablet */
@media (max-width: 1024px) {
    .solutions-section {
        padding: 50px 16px;
    }

    .solutions-title {
        font-size: 34px;
        text-align: center;
    }

    .solutions-card {
        flex-direction: column;
        gap: 18px;
    }

    .sol-box {
        width: 100%;
        min-height: auto;
    }

    .solution-head h3 {
        font-size: 22px;
    }

    .solution-links {
        flex-wrap: wrap;
        gap: 10px 10px;
        padding: 14px 14px 18px;
        justify-content: flex-start;
    }

        .solution-links span {
            font-size: 14px;
            line-height: 1.2;
        }
}

/* Mobile */
@media (max-width: 640px) {
    .solutions-section {
        padding: 44px 14px;
    }

    .solutions-title {
        font-size: 28px;
        margin-bottom: 18px;
        text-align: center;
    }

    .solutions-wrap {
        padding: 0;
    }

    /* stack both boxes */
    .solutions-card {
        flex-direction: column;
        gap: 16px;
    }

    .sol-box {
        width: 100%;
        border-radius: 22px;
        overflow: hidden;
        position: relative;
    }

    .solution-head {
        padding: 18px 18px;
    }

        .solution-head h3 {
            font-size: 20px;
        }

    /* convert links to chips (best UX) */
    .solution-links {
        display: grid;
        grid-template-columns: 1fr 1fr; /* ✅ 2 columns */
        gap: 10px;
        padding: 16px 16px 22px;
        align-items: stretch;
    }

        /* remove the separator bars "|" */
        .solution-links > span {
            display: none !important;
        }

        /* link look like modern buttons */
        .solution-links a {
            background: rgba(255,255,255,0.65);
            border: 1px solid rgba(0,0,0,0.08);
            border-radius: 16px;
            padding: 12px 10px;
            text-decoration: none;
            text-align: center;
            font-weight: 800;
            color: #0f172a;
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: 52px;
        }

            .solution-links a span {
                font-size: 13px;
                line-height: 1.15;
            }

    /* art image responsive */
    .solution-art {
        width: 100%;
        max-width: 220px;
        position: absolute;
        right: -10px;
        bottom: -10px;
        opacity: 0.35;
        pointer-events: none;
    }

    .solutions-cta {
        margin-top: 18px;
    }

    .solutions-btn {
        width: 100%;
        display: block;
        text-align: center;
        padding: 14px 18px;
        border-radius: 18px;
        font-size: 16px;
        font-weight: 900;
    }
}

/* Very small phones */
@media (max-width: 420px) {
    .solution-links {
        grid-template-columns: 1fr; /* ✅ one column for tiny screens */
    }

    .solution-head h3 {
        font-size: 18px;
    }
}

/* =========================
   CONTACT PAGE - MOBILE FIX
   ========================= */

@media (max-width: 1024px) {
    .contact-hero-wrap {
        flex-direction: column;
        gap: 26px;
        text-align: center;
    }

    .contact-hero-left {
        max-width: 100%;
        position: relative;
        z-index: 5;
    }

    .contact-hero-title {
        font-size: 40px;
        line-height: 1.12;
    }

    .contact-hero-sub {
        font-size: 16px;
    }

    .contact-hero-right {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .hero-illus-wrap {
        max-width: 480px;
        width: 100%;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .contact-right-stack {
        order: 2; /* below form */
    }

    .contact-form-card {
        order: 1;
    }
}

/* ✅ Mobile screens */
@media (max-width: 640px) {
    /* prevent horizontal scroll */
    html, body {
        overflow-x: hidden;
    }

    .contact-main {
        padding-top: 30px;
        padding-bottom: 30px;
    }
    /* =============================
   MOBILE NAV DRAWER
============================= */
    @media (max-width: 1024px) {
        .mobNavBackdrop {
            position: fixed;
            inset: 0;
            z-index: 9999998;
            background: rgba(2,6,23,0.45);
            backdrop-filter: blur(6px);
            animation: fadeIn .2s ease;
        }

        .mobNavDrawer {
            position: absolute;
            top: 0;
            left: 0;
            width: 88%;
            max-width: 340px;
            height: 100vh;
            background: #fff;
            box-shadow: 40px 0 80px rgba(2,6,23,0.25);
            border-radius: 0 22px 22px 0;
            overflow-y: auto;
            transform: translateX(-100%);
            animation: slideInLeft .28s cubic-bezier(.2,.9,.2,1) forwards;
            padding: 14px 14px 18px;
        }

        @keyframes slideInLeft {
            from {
                transform: translateX(-100%);
            }

            to {
                transform: translateX(0);
            }
        }

        .mobNavTop {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 10px;
            padding-bottom: 12px;
            border-bottom: 1px solid rgba(148,163,184,0.20);
            position: sticky;
            top: 0;
            background: #fff;
            z-index: 2;
        }

        .mobNavLogo img {
            height: 40px;
            width: auto;
        }

        .mobNavClose {
            border: none;
            background: rgba(15,23,42,0.07);
            width: 40px;
            height: 40px;
            border-radius: 12px;
            font-size: 18px;
            font-weight: 900;
            cursor: pointer;
        }

        .mobNavLinks {
            display: flex;
            flex-direction: column;
            gap: 10px;
            padding: 14px 2px;
        }

            .mobNavLinks a,
            .mobSolBtn {
                padding: 12px 14px;
                border-radius: 16px;
                font-size: 15px;
                font-weight: 800;
                color: #0f172a;
                background: rgba(15,23,42,0.03);
                border: 1px solid rgba(148,163,184,0.18);
            }

                .mobNavLinks a.active {
                    background: rgba(37,99,235,0.12);
                    border-color: rgba(37,99,235,0.25);
                    color: #1d4ed8;
                }

        .mobSolBtn {
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%;
        }

        .mobChev {
            transition: .25s;
            display: inline-block;
        }

            .mobChev.open {
                transform: rotate(180deg);
            }

        .mobSolWrap {
            margin-top: 10px;
            padding: 12px;
            border-radius: 18px;
            border: 1px solid rgba(148,163,184,0.18);
            background: rgba(2,6,23,0.02);
        }

        .mobSolCat {
            width: 100%;
            text-align: left;
            font-weight: 900;
            padding: 10px 12px;
            border-radius: 14px;
            margin-bottom: 8px;
            border: none;
            background: rgba(255,255,255,0.70);
            cursor: pointer;
        }

            .mobSolCat.active {
                background: rgba(37,99,235,0.12);
                color: #1d4ed8;
            }

        .mobSolItems {
            padding: 6px 6px 10px;
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .mobSolItem {
            padding: 10px 12px;
            border-radius: 14px;
            background: #fff;
            border: 1px solid rgba(148,163,184,0.16);
            font-weight: 800;
            font-size: 14px;
        }

        .mobNavBottom {
            padding-top: 10px;
            border-top: 1px solid rgba(148,163,184,0.20);
        }

        .mobNavCta {
            display: block;
            width: 100%;
            text-align: center;
            padding: 14px 16px;
            border-radius: 18px;
            font-weight: 900;
            color: #fff;
            background: linear-gradient(90deg,#2563eb,#1d4ed8);
            box-shadow: 0 14px 40px rgba(37,99,235,0.30);
        }
    }
    /* =============================
   MOBILE NAV DRAWER
============================= */
    @media (max-width: 1024px) {
        .mobNavBackdrop {
            position: fixed;
            inset: 0;
            z-index: 9999998;
            background: rgba(2,6,23,0.45);
            backdrop-filter: blur(6px);
            animation: fadeIn .2s ease;
        }

        .mobNavDrawer {
            position: absolute;
            top: 0;
            left: 0;
            width: 88%;
            max-width: 340px;
            height: 100vh;
            background: #fff;
            box-shadow: 40px 0 80px rgba(2,6,23,0.25);
            border-radius: 0 22px 22px 0;
            overflow-y: auto;
            transform: translateX(-100%);
            animation: slideInLeft .28s cubic-bezier(.2,.9,.2,1) forwards;
            padding: 14px 14px 18px;
        }

        @keyframes slideInLeft {
            from {
                transform: translateX(-100%);
            }

            to {
                transform: translateX(0);
            }
        }

        .mobNavTop {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 10px;
            padding-bottom: 12px;
            border-bottom: 1px solid rgba(148,163,184,0.20);
            position: sticky;
            top: 0;
            background: #fff;
            z-index: 2;
        }

        .mobNavLogo img {
            height: 40px;
            width: auto;
        }

        .mobNavClose {
            border: none;
            background: rgba(15,23,42,0.07);
            width: 40px;
            height: 40px;
            border-radius: 12px;
            font-size: 18px;
            font-weight: 900;
            cursor: pointer;
        }

        .mobNavLinks {
            display: flex;
            flex-direction: column;
            gap: 10px;
            padding: 14px 2px;
        }

            .mobNavLinks a,
            .mobSolBtn {
                padding: 12px 14px;
                border-radius: 16px;
                font-size: 15px;
                font-weight: 800;
                color: #0f172a;
                background: rgba(15,23,42,0.03);
                border: 1px solid rgba(148,163,184,0.18);
            }

                .mobNavLinks a.active {
                    background: rgba(37,99,235,0.12);
                    border-color: rgba(37,99,235,0.25);
                    color: #1d4ed8;
                }

        .mobSolBtn {
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%;
        }

        .mobChev {
            transition: .25s;
            display: inline-block;
        }

            .mobChev.open {
                transform: rotate(180deg);
            }

        .mobSolWrap {
            margin-top: 10px;
            padding: 12px;
            border-radius: 18px;
            border: 1px solid rgba(148,163,184,0.18);
            background: rgba(2,6,23,0.02);
        }

        .mobSolCat {
            width: 100%;
            text-align: left;
            font-weight: 900;
            padding: 10px 12px;
            border-radius: 14px;
            margin-bottom: 8px;
            border: none;
            background: rgba(255,255,255,0.70);
            cursor: pointer;
        }

            .mobSolCat.active {
                background: rgba(37,99,235,0.12);
                color: #1d4ed8;
            }

        .mobSolItems {
            padding: 6px 6px 10px;
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .mobSolItem {
            padding: 10px 12px;
            border-radius: 14px;
            background: #fff;
            border: 1px solid rgba(148,163,184,0.16);
            font-weight: 800;
            font-size: 14px;
        }

        .mobNavBottom {
            padding-top: 10px;
            border-top: 1px solid rgba(148,163,184,0.20);
        }

        .mobNavCta {
            display: block;
            width: 100%;
            text-align: center;
            padding: 14px 16px;
            border-radius: 18px;
            font-weight: 900;
            color: #fff;
            background: linear-gradient(90deg,#2563eb,#1d4ed8);
            box-shadow: 0 14px 40px rgba(37,99,235,0.30);
        }
    }

    .contact-head h2 {
        font-size: 34px; /* ✅ heading fit */
        line-height: 1.1;
        text-align: center;
        word-break: break-word;
    }

    .contact-head p {
        font-size: 14px;
        text-align: center;
        margin-top: 10px;
    }

    .contact-grid {
        grid-template-columns: 1fr !important;
        gap: 14px;
    }

    /* cards should fit */
    .contact-card {
        width: 100%;
        border-radius: 22px;
        padding: 18px !important;
        box-sizing: border-box;
    }

    /* form spacing */
    .contact-form {
        gap: 14px;
    }

    .form-group label {
        font-size: 14px;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
        width: 100%;
        font-size: 15px;
        padding: 12px 14px;
        border-radius: 16px;
    }

    .two-col {
        display: grid;
        grid-template-columns: 1fr; /* ✅ stack select + input */
        gap: 10px;
    }

    .form-submit {
        width: 100%;
        padding: 14px 16px;
        border-radius: 18px;
        font-size: 16px;
    }

    /* bottom mini actions row fix */
    .form-mini-contact {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
        padding-top: 14px;
    }

    .mini-actions {
        width: 100%;
        display: grid;
        grid-template-columns: 1fr 1fr; /* ✅ 2 buttons */
        gap: 10px;
    }

    .mini-whatsapp,
    .mini-chat {
        width: 100%;
        text-align: center;
        padding: 12px 10px;
        border-radius: 18px;
    }

    /* ✅ Other ways to connect */
    .connect-card h3 {
        font-size: 18px;
    }

    .connect-item {
        width: 100%;
        padding: 14px 14px;
        border-radius: 18px;
        gap: 12px;
    }

    .connect-text strong {
        font-size: 15px;
    }

    .connect-text p {
        font-size: 13px;
    }

    /* ✅ MAP FIX */
    .map-card {
        padding: 0 !important; /* iframe needs full width */
        overflow: hidden;
    }

    .map-frame {
        width: 100%;
        height: 280px; /* ✅ best mobile height */
        border: 0;
        display: block;
    }

    .map-footer {
        padding: 14px 16px;
        font-size: 14px;
    }

    .map-line {
        display: flex;
        gap: 8px;
        align-items: flex-start;
        line-height: 1.35;
        word-break: break-word;
    }

    /* =============================
   INDIVIDUAL HERO - RESPONSIVE
   ============================= */

    @media (max-width: 1024px) {
        .individual-hero .grid {
            gap: 34px;
        }

        .individual-hero-title {
            font-size: 46px;
            line-height: 1.08;
        }

        .individual-hero-sub {
            font-size: 16px;
            line-height: 1.6;
        }

        .individual-hero-illus img {
            max-width: 520px;
            margin: 0 auto;
            display: block;
        }
    }

    /* ✅ Mobile */
    @media (max-width: 640px) {
        .individual-hero {
            padding-top: 10px;
        }

            .individual-hero .grid {
                grid-template-columns: 1fr !important;
                gap: 18px;
                padding-top: 18px !important;
                padding-bottom: 18px !important;
            }

        /* Title + subtitle */
        .individual-hero-title {
            font-size: 36px; /* ✅ prevents cut */
            line-height: 1.08;
            letter-spacing: -0.5px;
        }

        .individual-hero-sub {
            font-size: 14px;
            line-height: 1.55;
            margin-top: 10px;
        }

        /* ✅ CTA buttons */
        .individual-hero-cta {
            display: grid;
            grid-template-columns: 1fr; /* stack */
            gap: 12px;
            margin-top: 18px;
        }

            .individual-hero-cta .btn-primary,
            .individual-hero-cta .btn-outline {
                width: 100%;
                justify-content: center;
                text-align: center;
                padding: 14px 16px;
                border-radius: 18px;
                font-size: 16px;
                font-weight: 900;
            }

        /* mini stats row - wrap neatly */
        .individual-mini-stats {
            margin-top: 18px;
            display: grid;
            grid-template-columns: 1fr 1fr; /* ✅ 2 columns */
            gap: 10px;
        }

            .individual-mini-stats .mini-stat {
                padding: 10px 12px;
                border-radius: 16px;
                font-size: 13px;
                font-weight: 800;
                background: rgba(255,255,255,0.55);
                border: 1px solid rgba(0,0,0,0.06);
            }

                .individual-mini-stats .mini-stat strong {
                    font-size: 15px;
                }

        /* Illustration */
        .individual-hero-illus {
            order: 2;
            text-align: center;
        }

            .individual-hero-illus img {
                width: 100%;
                max-width: 360px;
                height: auto;
                margin: 0 auto;
                display: block;
            }
    }

    /* very small screens */
    @media (max-width: 420px) {
        .individual-hero-title {
            font-size: 32px;
        }

        .individual-mini-stats {
            grid-template-columns: 1fr; /* ✅ stack stats if needed */
        }
    }

    /* ✅ Step progress row responsive */
    @media (max-width: 640px) {
        /* container */
        .step-pill {
            flex: 0 0 auto;
            padding: 8px 12px;
            border-radius: 999px;
            font-size: 12px;
            white-space: nowrap;
        }

        .step-line {
            flex: 0 0 18px; /* shorter line */
            height: 2px;
        }

        /* make the whole progress scroll horizontally */
        .quote-progress {
            overflow-x: auto;
            overflow-y: hidden;
            white-space: nowrap;
            -webkit-overflow-scrolling: touch;
            padding-bottom: 10px;
        }

            .quote-progress::-webkit-scrollbar {
                display: none;
            }
    }
}

/* ✅ MOBILE HEADER FIX */
/* ✅ MOBILE HEADER FIX */
@media (max-width: 1024px) {
    .headerRowMobile {
        gap: 8px;
    }

    .mobLeftGroup {
        display: flex;
        align-items: center;
        gap: 4px !important;
        flex-shrink: 0;
    }

    .navbar-logo {
        height: 38px !important;
    }

    .mobileMenuBtn {
        width: 44px !important;
        height: 44px !important;
        border-radius: 10px !important;
        background: rgba(15,23,42,0.04);
        border: 1px solid rgba(148,163,184,0.25);
        font-size: 20px !important;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        flex-shrink: 0;
    }

    .mobExpertRight {
        margin-left: auto;
        position: relative;
        flex-shrink: 0;
    }

    .mobExpertBtn {
        background: linear-gradient(90deg, #2563eb, #1d4ed8);
        color: #fff;
        font-weight: 900;
        font-size: 12px;
        padding: 10px 14px;
        border-radius: 999px;
        display: flex;
        align-items: center;
        gap: 8px;
        box-shadow: 0 12px 30px rgba(37,99,235,0.35);
        border: none;
        cursor: pointer;
        position: relative;
    }

        .mobExpertBtn::after {
            content: "";
            position: absolute;
            inset: -4px;
            border-radius: 999px;
            background: rgba(37,99,235,0.25);
            filter: blur(10px);
            z-index: -1;
            animation: callPulse 1.6s infinite;
        }

    @keyframes callPulse {
        0% {
            transform: scale(0.98);
            opacity: 0.5;
        }

        50% {
            transform: scale(1.05);
            opacity: 0.95;
        }

        100% {
            transform: scale(0.98);
            opacity: 0.5;
        }
    }

    /* ✅ force expert-menu visible inside bottom sheet */
    .mobSheetMenu.expert-menu {
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        position: static !important;
        pointer-events: auto !important;
        background: #fff !important;
    }

    /* ✅ policybazaar bottom sheet */
    .mobSheetBackdrop {
        position: fixed;
        inset: 0;
        z-index: 9999999 !important;
        background: rgba(2,6,23,0.45);
        backdrop-filter: blur(6px);
        animation: fadeIn .2s ease;
        pointer-events: auto;
    }

    @keyframes fadeIn {
        from {
            opacity: 0;
        }

        to {
            opacity: 1;
        }
    }

    .mobSheet {
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        background: #fff;
        border-radius: 22px 22px 0 0;
        padding: 14px 16px 18px;
        box-shadow: 0 -30px 80px rgba(2,6,23,0.25);
        transform: translateY(100%);
        animation: slideUp .28s cubic-bezier(.2,.9,.2,1) forwards;
        max-height: 78vh;
        overflow-y: auto;
    }

    @keyframes slideUp {
        from {
            transform: translateY(100%);
        }

        to {
            transform: translateY(0);
        }
    }

    .mobSheetHandle {
        width: 52px;
        height: 5px;
        border-radius: 999px;
        background: rgba(100,116,139,0.35);
        margin: 4px auto 12px;
    }

    .mobSheetHead {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        position: sticky;
        top: 0;
        background: #fff;
        padding: 4px 0 10px;
        z-index: 2;
    }

        .mobSheetHead h4 {
            font-size: 15px;
            font-weight: 900;
            color: #0f172a;
            margin: 0;
        }

    .mobSheetClose {
        border: none;
        background: rgba(15,23,42,0.07);
        width: 38px;
        height: 38px;
        border-radius: 12px;
        font-size: 18px;
        font-weight: 900;
        cursor: pointer;
        flex-shrink: 0;
    }

    .mobSheetMenu {
        border-radius: 16px;
        overflow: hidden;
        border: 1px solid rgba(148,163,184,0.20);
        box-shadow: 0 14px 50px rgba(2,6,23,.10);
    }
}

@media (max-width: 640px) {
    /* ✅ Fix right cut in contact page container */
    .contact-main .max-w-6xl {
        padding-left: 16px !important;
        padding-right: 16px !important;
        overflow-x: hidden;
        box-sizing: border-box;
    }

    /* ✅ prevent any child causing overflow */
    .contact-main {
        overflow-x: clip;
    }

    /* ✅ ensure cards never exceed screen */
    .contact-card,
    .contact-grid,
    .contact-right-stack {
        max-width: 100%;
        box-sizing: border-box;
    }
}

@media (max-width: 640px) {
    /* ✅ Make Contact heading centered like Blog cards */
    .contact-head {
        width: 100% !important;
        max-width: 360px !important; /* ✅ same visual center */
        margin-left: auto !important;
        margin-right: auto !important;
        text-align: center !important;
    }

        .contact-head h2,
        .contact-head p {
            width: 100% !important;
            margin-left: auto !important;
            margin-right: auto !important;
        }
}

@media (max-width: 640px) {
    /* ✅ Fix: whole contact grid overflow */
    .contact-grid {
        width: 100% !important;
        max-width: 100% !important;
        overflow-x: hidden !important;
    }

        /* ✅ VERY IMPORTANT: allow grid items to shrink */
        .contact-grid > * {
            min-width: 0 !important;
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
        }

    /* ✅ each card must not exceed screen */
    .contact-card {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
    }

    /* ✅ iframe/map is common overflow reason */
    .map-card iframe,
    .map-frame {
        width: 100% !important;
        max-width: 100% !important;
        display: block !important;
    }
}
/* ==========================
   Add other css after this only before Global monile Overflow Fix
   ========================== */

/* ==========================
   GLOBAL MOBILE OVERFLOW FIX
   ========================== */
html, body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

.site-bg, main, header, footer {
    width: 100%;
    max-width: 100%;
    overflow-x: clip;
}
/* === Mega menu text normalization === */

/* ===== DESKTOP NAV CONSISTENCY ===== */

.solMegaPanel {
    color: #475569; /* slate-600 */
}

.solMegaBtn:hover {
    color: #2563eb;
}

.footer-glass {
    border-radius: 22px;
    background: linear-gradient( 160deg, rgba(37,99,235,.20), rgba(239,68,68,.14), rgba(255,255,255,.70) );
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
    border: 1px solid rgba(37,99,235,.28);
    box-shadow: 0 30px 90px rgba(37,99,235,.22), inset 0 1px 0 rgba(255,255,255,.65);
}

.footer-title {
    font-weight: 800;
    font-size: 15px;
    color: #1e3a8a;
    margin-bottom: 12px;
}



.leadchat {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    font-family: 'Segoe UI', sans-serif;
}

/* FAB */
.leadchat-fab {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #4f46e5;
    color: white;
    border: none;
    font-size: 22px;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* PANEL */
.leadchat-panel {
    width: 360px;
    height: 560px;
    display: flex;
    flex-direction: column;
    border-radius: 20px;
    overflow: hidden;
    backdrop-filter: blur(16px);
    background: rgba(255,255,255,0.7);
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

/* HEADER */
.leadchat-header {
    padding: 14px;
    display: flex;
    justify-content: space-between;
    background: linear-gradient(135deg,#6366f1,#4f46e5);
    color: white;
}

.subtitle {
    font-size: 12px;
    opacity: 0.8;
}

/* BODY */
.leadchat-body {
    flex: 1;
    padding: 12px;
    overflow-y: auto;
}

/* MESSAGE */
.msg {
    padding: 10px 14px;
    margin: 6px 0;
    max-width: 75%;
    border-radius: 16px;
}

    .msg.bot {
        background: #f1f5f9;
    }

    .msg.user {
        background: #4f46e5;
        color: white;
        margin-left: auto;
    }

/* FOOTER */
.leadchat-footer {
    padding: 10px;
}

/* CARD UI */
.card-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.chat-card {
    padding: 8px 10px;
    border-radius: 10px;
    font-size: 13px;
    background: white;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: 0.2s;
}

    .chat-card:hover {
        transform: scale(1.02);
    }

.icon {
    font-size: 16px;
}

.title {
    font-size: 12px;
    font-weight: 600;
}

.desc {
    display: none; /* 🔥 remove extra height */
}

/* INPUT */
.chat-input {
    width: 100%;
    padding: 10px;
    border-radius: 10px;
    border: 1px solid #ddd;
}

/* BUTTONS */
.send-btn {
    margin-top: 6px;
    width: 100%;
    padding: 10px;
    background: #4f46e5;
    color: white;
    border: none;
    border-radius: 10px;
}

.skip-btn {
    margin-top: 6px;
    width: 100%;
    background: transparent;
    border: none;
    color: #888;
}

/* TYPING */
.typing span {
    display: inline-block;
    width: 6px;
    height: 6px;
    margin: 2px;
    background: #999;
    border-radius: 50%;
    animation: blink 1.4s infinite;
}

@keyframes blink {
    0%, 80%, 100% {
        opacity: 0;
    }

    40% {
        opacity: 1;
    }
}

.chat-card .title {
    font-size: 13px;
}

.top-actions {
    margin-bottom: 8px;
}

.back-btn {
    width: 100%;
    padding: 8px;
    border-radius: 10px;
    background: #eef2ff;
    border: none;
    font-size: 12px;
    cursor: pointer;
}