:root{
    /* BRAND COLORS */
    --blue-dark: #0D3B8C;
    --blue: #1F5FD6;
    --blue-light: #4A8BFF;

    --orange: #FF6A00;
    --orange-light: #FF8C1A;

    /* NEUTRALS */
    --bg-light: #F7F9FC;
    --bg-white: #FFFFFF;
    --bg-dark: #0A0F1C;

    --text-dark: #0B0F19;
    --text-light: #FFFFFF;
    --text-muted: #6B7A99;

    --border: #E6ECF5;

    /* EFFECTS */
    --shadow-soft: 0 10px 30px rgba(13,59,140,0.08);
    --shadow-hover: 0 15px 40px rgba(13,59,140,0.12);

    /* GRADIENT */
    --gradient-brand: linear-gradient(135deg, #1F5FD6, #FF6A00);
}

/* RESET */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}
body{
    font-family:'Inter',sans-serif;
    background:var(--bg-light);
    color:var(--text-dark);
    overflow-x:hidden;
}
a{
    text-decoration:none;
    color:var(--text-dark);
    font-family: 'Sora', sans-serif;
}

/* ================= TOP BAR ================= */
.topbar {
    display:flex;
    justify-content:space-between;
    align-items:center;
    background: var(--blue-dark);
    color: var(--text-light);
    padding:10px 20px;
    font-size:14px;
}
.topbar-left span {
    color: var(--orange);
    font-weight:500;
}
.topbar-right {
    display:flex;
    gap:20px;
}
.topbar-right a {
    color: var(--text-light);
    font-size:13px;
    transition:0.3s;
}
.topbar-right a:hover {
    color: var(--orange);
    text-shadow: 0 0 8px rgba(255,106,0,0.4);
}
.topbar-right a:not(:last-child)::after {
    content:"|";
    margin-left:20px;
    color: rgba(255,255,255,0.4);
}
@media (max-width:768px){
    .topbar{
        flex-direction:column;
        gap:8px;
        text-align:center;
    }
    .topbar-right{
        flex-wrap:wrap;
        justify-content:center;
    }
    .topbar-right a:not(:last-child)::after{
        content:"";
    }
}

/* ================= NAVBAR ================= */
.navbar{
    position:sticky;
    top:0;
    z-index:1000;
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:16px 48px;
    background: var(--bg-white);
    border-bottom:1px solid var(--border);
    box-shadow: var(--shadow-soft);
    transition:.3s;
}
.navbar.shrink{
    padding:10px 48px;
}
.logo img{
    width:300px;
    max-width:100%;
}
/* ================= NAV LINKS ================= */
.nav-links{
    display:flex;
    gap:28px;
}
.nav-item{
    position:relative;
}
.nav-item > a,
.nav-link{
    font-size:14px;
    font-weight:500;
    color: var(--text-dark);
    transition:.3s;
    cursor:pointer;
}
.nav-item > a:hover{
    color: var(--blue);
}
.nav-item > a.active{
    background: rgba(31,95,214,0.08);
    padding:6px 12px;
    border-radius:6px;
}
/* ================= DROPDOWN ================= */
.dropdown{
    position:absolute;
    top:100%;
    left:0;
    min-width:270px;
    background: var(--bg-white);
    border-radius:8px;
    padding:10px 0;
    display:none;
    border:1px solid var(--border);
    box-shadow: var(--shadow-soft);
    z-index:1000;
}
.dropdown a{
    display:block;
    padding:10px 18px;
    font-size:14px;
    color: var(--text-dark);
    transition:.3s;
}
.dropdown a:hover{
    color: var(--blue);
    background: rgba(31,95,214,0.06);
}
/* ================= ICONS ================= */
.icons{
    display:flex;
    align-items:center;
    gap:5px;
}
.icon{
    position:relative;
    cursor:pointer;
    font-size:18px;
    display:flex;
    align-items:center;
    justify-content:center;
    color: var(--text-dark);
    transition:0.25s;
}
.icon:hover{
    color: var(--blue);
    transform: translateY(-1px);
}
.icon svg{
    width:20px;
    height:20px;
}
.count{
    position:absolute;
    top:-6px;
    right:-8px;
    background: var(--orange);
    color:#fff;
    font-size:10px;
    border-radius:50%;
    padding:2px 5px;
}
/* ================= SUBNAV ================= */
.subnav-wrapper{
    border-bottom:1px solid var(--border);
    background: var(--bg-white);
}
.subnav-container{
    max-width:1280px;
    margin:0 auto;
    position:relative;
}
.subnav{
    overflow-x:auto;
    scroll-behavior:smooth;
}
.subnav-inner{
    display:flex;
    gap:28px;
    padding:12px 60px;
    width:max-content;
    margin:0 auto;
}
.subnav-inner a{
    font-size:14px;
    color: var(--text-muted);
    font-weight:500;
    transition:0.3s;
}
.subnav-inner a:hover{
    color: var(--blue);
}
/* arrows */
.scroll-btn{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    width:34px;
    height:34px;
    border:none;
    background: var(--bg-white);
    box-shadow: var(--shadow-soft);
    border-radius:50%;
    cursor:pointer;
}
.scroll-btn.left{ left:0; }
.scroll-btn.right{ right:0; }

/* ================= MOBILE ================= */
.menu-btn{
    display:none;
}
@media(min-width:1025px){
    .nav-item:hover > .mega{
        display:block;
    }
    .nav-item:hover > .dropdown{
        display:block;
    }
    .mega{
        transform:translateX(-30%);
        width:1200px;
    }
}
@media(max-width:1024px){
    .navbar{
        padding:12px 16px;
        display:grid;
        grid-template-columns:auto 1fr auto;
    }
    .menu-btn{
        display:block;
        cursor: pointer;
    }
    .nav-links{
        position:absolute;
        top:100%;
        left:0;
        width:100%;
        flex-direction:column;
        background: var(--bg-white);
        padding:20px;
        display:none;
    }
    .nav-links.active{
        display:flex;
    }
    .dropdown,
    .mega{
        position:static;
        width:100%;
        box-shadow:none;
        border:none;
        display:none;
    }
    .nav-item.active > .dropdown,
    .nav-item.active > .mega{
        display:block;
    }
    .mega-grid{
        display:flex;
        flex-direction:column;
        gap:12px;
    }
    .mega-preview{
        display:none;
    }
    .icons{
        gap:10px;
    }
    .icons .icon{
        font-size:16px;
    }
}

/* ================= HERO ================= */
.hero{
    position: relative;
    overflow: hidden;
    padding:100px 40px 80px;
    background: linear-gradient(to bottom, #F7F9FC, #FFFFFF);
}
.hero::before{
    content:"";
    position:absolute;
    width:500px;
    height:500px;
    background: radial-gradient(circle, rgba(31,95,214,0.15), transparent 70%);
    top:-100px;
    left:-100px;
    z-index:0;
}
.hero::after{
    content:"";
    position:absolute;
    width:400px;
    height:400px;
    background: radial-gradient(circle, rgba(255,106,0,0.18), transparent 70%);
    bottom:-100px;
    right:-100px;
    z-index:0;
}
.hero-container{
    max-width:1200px;
    margin:0 auto;
    display:grid;
    grid-template-columns:1.1fr 1fr;
    align-items:center;
    gap:60px;
    position: relative;
    z-index:2;
}
.hero-content{
    backdrop-filter: blur(6px);
}
.hero-content h1{
    font-family:'Sora', sans-serif;
    font-size:52px;
    line-height:1.1;
    margin-bottom:20px;
    color: var(--text-dark);
}
.hero-content h1 span{
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: fadeUp 0.8s ease forwards;
}
.hero-content p{
    font-size:18px;
    color: var(--text-muted);
    margin-bottom:30px;
    max-width:520px;
    animation: fadeUp 1s ease forwards;
}
.hero-buttons{
    display:flex;
    gap:16px;
    margin-bottom:40px;
    animation: fadeUp 1.2s ease forwards;
}
@keyframes fadeUp{
    from{
        opacity:0;
        transform: translateY(20px);
    }
    to{
        opacity:1;
        transform: translateY(0);
    }
}
.btn{
    padding:14px 26px;
    border-radius:8px;
    font-weight:500;
    font-size:15px;
    transition:0.3s;
    display:inline-block;
}
.btn.primary{
    background: var(--orange);
    color:#fff;
    box-shadow: 0 10px 25px rgba(255,106,0,0.3);
}
.btn.primary:hover{
    background: var(--orange-light);
    transform: translateY(-2px);
}
.btn.secondary{
    border:1px solid var(--blue);
    color: var(--blue);
    background: transparent;
}
.btn.secondary:hover{
    background: rgba(31,95,214,0.08);
}
.hero-stats{
    display:flex;
    gap:40px;
}
.hero-stats h3{
    font-family:'Sora', sans-serif;
    color: var(--blue-dark);
    font-size:22px;
}
.hero-stats p{
    font-size:13px;
    color: var(--text-muted);
}
.hero-visual{
    position:relative;
    display:flex;
    justify-content:center;
    align-items:center;
}
.hero-visual::before{
    content:"";
    position:absolute;
    width:100%;
    height:100%;
    border-radius:20px;
    background: linear-gradient(135deg, #1F5FD6, #FF6A00);
    filter: blur(40px);
    opacity:0.25;
    z-index:1;
}
.hero-visual img{
    width:100%;
    max-width:550px;
    border-radius: 30px 30px 30px 0px;
    position:relative;
    z-index:2;
    animation: float 6s ease-in-out infinite;
}
@keyframes float{
    0%{ transform: translateY(0px);}
    50%{ transform: translateY(-12px);}
    100%{ transform: translateY(0px);}
}
.glow{
    position:absolute;
    width:300px;
    height:300px;
    background: radial-gradient(circle, rgba(255,106,0,0.25), transparent 70%);
    filter: blur(40px);
    z-index:1;
}
@media(max-width:1024px){
    .hero{
        padding:60px 20px;
    }
    .hero-content h1{
        font-size:38px;
    }
    .hero::before,
    .hero::after{
        display:none; /* prevent clutter on mobile */
    }
    .hero-container{
        grid-template-columns:1fr;
        text-align:center;
    }
    .hero-content p{
        margin:0 auto 30px;
    }
    .hero-buttons{
        justify-content:center;
    }
    .hero-stats{
        justify-content:center;
    }
    .hero-visual{
        margin-top:40px;
    }
    .hero-visual img{
        max-width:100%;
    }
}
@media(max-width:600px){
    .hero{
        padding:60px 20px;
    }
    .hero-content h1{
        font-size:36px;
    }
    .hero-stats{
        flex-direction:column;
        gap:16px;
    }
}

/* ================= FULL WIDTH ABOUT ================= */
.about-full{
    position: relative;
    padding:80px 40px;
    background: linear-gradient(180deg, #F7F9FC 0%, #FFFFFF 100%);
    overflow:hidden;
    border-top: 1px solid var(--border);
}
.about-full::before{
    content:"";
    position:absolute;
    width:600px;
    height:600px;
    background: radial-gradient(circle, rgba(31,95,214,0.12), transparent 70%);
    top:-200px;
    left:-200px;
    filter: blur(40px);
}
.about-full::after{
    content:"";
    position:absolute;
    width:500px;
    height:500px;
    background: radial-gradient(circle, rgba(255,106,0,0.15), transparent 70%);
    bottom:-200px;
    right:-200px;
    filter: blur(40px);
}
.grid-bg{
    position:absolute;
    inset:0;
    z-index:0;
    pointer-events:none;
    overflow:hidden;
}
.grid-bg::before{
    content:"";
    position:absolute;
    width:200%;
    height:200%;
    background-image:
        linear-gradient(rgba(13,59,140,0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(13,59,140,0.05) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: gridMove 20s linear infinite;
}
.grid-bg::after{
    content:"";
    position:absolute;
    inset:0;
    background: radial-gradient(circle at center, transparent 40%, #fff 100%);
}
@keyframes gridMove{
    0%{
        transform: translate(0,0);
    }
    100%{
        transform: translate(-60px, -60px);
    }
}
.about-inner{
    max-width:1280px;
    margin:0 auto;
    text-align:center;
    position:relative;
    z-index:2;
}
.tag{
    display:inline-block;
    font-size:12px;
    font-weight:600;
    color: var(--blue);
    background: rgba(31,95,214,0.08);
    padding:6px 14px;
    border-radius:20px;
    margin-bottom:20px;
}
.about-inner h2{
    font-family:'Sora', sans-serif;
    font-size:52px;
    line-height:1.2;
    letter-spacing:-1px;
    margin-bottom:20px;
}
.about-inner h2 span{
    background: linear-gradient(135deg, #1F5FD6, #FF6A00);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}
.about-lead{
    font-size:18px;
    color: var(--text-muted);
    margin-bottom:40px;
}
.about-features{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
    margin-bottom:60px;
}
.about-features div{
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:10px;
    padding:20px;
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border);
    border-radius:14px;
    padding:24px;
    box-shadow: 0 10px 30px rgba(13,59,140,0.08);
    transition: all 0.3s ease;
}
.about-features div:hover{
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 50px rgba(13,59,140,0.15);
    border-color: rgba(31,95,214,0.3);
}
.about-seo{
    font-size:16px;
    color: var(--text-muted);
    margin-bottom:30px;
    line-height:1.7;
}
.about-features h4{
    font-size:16px;
    font-weight:600;
    color: var(--text-dark);
}
.about-features p{
    font-size:14px;
    color: var(--text-muted);
}
.about-faq{
    margin-top:40px;
    text-align:center;
    max-width:1100px;
    margin-left:auto;
    margin-right:auto;
    margin-bottom: 25px;
}
.about-faq h3{
    font-size:25px;
    margin-top:20px;
    margin-bottom:10px;
    color: var(--blue-dark);
}
.about-faq p{
    font-size:18px;
    color: var(--text-muted);
    line-height:1.6;
}
.about-features i{
    font-size:22px;
    margin-bottom:8px;
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.about-stats{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
    margin-bottom:50px;
    margin:60px 0;
    padding:30px;
    border-radius:16px;
    background: linear-gradient(
        135deg,
        rgba(31,95,214,0.05),
        rgba(255,106,0,0.05)
    );
    border:1px solid var(--border);
}
.stat{
    position:relative;
}
.stat::after{
    content:"";
    position:absolute;
    right:-15px;
    top:50%;
    transform:translateY(-50%);
    width:1px;
    height:40px;
    background: var(--border);
}
.stat:last-child::after{
    display:none;
}
.stat h3{
    font-family:'Sora', sans-serif;
    font-size:34px;
    font-weight:700;
    background: var(--gradient-brand);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}
.stat p{
    font-size:13px;
    color: var(--text-muted);
}
.about-full .btn{
    margin-top:10px;
    padding:14px 32px;
    font-size:15px;
}
@media(max-width:1024px){
    .about-inner h2{
        font-size:36px;
    }
    .about-features{
        grid-template-columns:repeat(2,1fr);
    }
    .about-stats{
        grid-template-columns:repeat(2,1fr);
    }
}
@media(max-width:768px){
    .grid-bg{
        opacity:0.3; /* reduce noise */
    }
    .stat::before{
        width:60px;
        height:60px;
    }
}
@media(max-width:600px){
    .about-full{
        padding:80px 20px;
    }
    .about-inner h2{
        font-size:28px;
    }
    .about-features{
        grid-template-columns:1fr;
    }
    .about-stats{
        grid-template-columns:1fr;
    }
}

/* ================= SPLIT SERVICES ================= */
.services-split{
    position: relative;
    display:grid;
    grid-template-columns: 1fr 1.2fr;
    min-height:100vh;
    background: #0b0f1a;
    color:#fff;
}
.services-left{
    padding:100px 60px;
    border-right:1px solid rgba(255,255,255,0.05);
    position:relative;
}
.sticky{
    position:sticky;
    top:120px;
}
.services-left h2{
    font-family:'Sora', sans-serif;
    font-size:44px;
    line-height:1.2;
    margin:20px 0;
}
.services-left h2 span{
    background: linear-gradient(135deg,#1F5FD6,#FF6A00);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}
.services-left h3{
    font-size:22px;
    line-height:1.2;
    margin:20px 0;
}
.services-left p{
    color:white;
    margin-bottom:30px;
}
.fade-out{
    opacity:0;
    transform: translateY(10px);
}
.step-counter{
    font-size:35px;
    color:rgba(255,255,255,0.6);
    margin-top:20px;
    margin-bottom:10px;
}
#currentStep{
    font-size:30px;
    font-weight:600;
    color:#fff;
}
.step-counter{
    font-size:35px;
    color:rgba(255,255,255,0.6);
    margin-top:20px;
    margin-bottom:10px;
}
.progress-nav{
    margin-top:40px;
    position:relative;
    padding-left:20px;
}
.progress-line{
    position:absolute;
    left:8px;
    top:0;
    width:2px;
    height:100%;
    background: rgba(255,255,255,0.08);
}
.progress-fill{
    position:absolute;
    left:0;
    top:0;
    width:2px;
    height:0%;
    background: linear-gradient(180deg,#1F5FD6,#FF6A00);
    transition: height 0.3s ease;
}
.progress-item{
    margin-bottom:20px;
    font-size:16px;
    color:rgba(255,255,255,0.4);
    transition:0.3s;
}
.progress-item.active::before{
    content:'';
    width:8px;
    height:8px;
    background:#FF6A00;
    border-radius:50%;
    display:inline-block;
    margin-right:8px;
}
.progress-item.active{
    color:#fff;
}
.morph{
    transition: all 0.35s ease;
}
.morph.fade-out{
    opacity:0;
    transform: translateY(10px);
}
.morph.fade-in{
    opacity:1;
    transform: translateY(0);
}
.services-right{
    padding:80px 60px;
    position:relative;
}
.service-data{
    opacity:0;
    transform: translateY(20px);
    position:absolute;
    top:0;
    left:0;
    width:100%;
    pointer-events:none;
    transition: opacity 0.35s ease, transform 0.35s ease;
}
.service-data.active{
    opacity:1;
    transform: translateY(0);
    position:relative;
    pointer-events:auto;
}
.service-block{
    padding:40px;
    border-radius:16px;
    margin-bottom:40px;
    background: linear-gradient(
        135deg,
        rgba(31,95,214,0.08),
        rgba(255,106,0,0.08)
    );
    border:1px solid rgba(255,255,255,0.06);
    backdrop-filter: blur(10px);
    opacity:0.4;
    transform: scale(0.96);
    transition: all 0.4s ease;
}
.service-block.active{
    opacity:1;
    transform: scale(1);
    box-shadow: 0 20px 60px rgba(255,106,0,0.2);
    border-color: rgba(255,106,0,0.5);
}
.service-block:hover{
    transform: translateY(-6px);
    border-color: rgba(255,106,0,0.4);
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.service-block h4{
    font-size:22px;
    margin-bottom:8px;
    color:#ff6a00;
}
.service-block p{
    color:rgba(255,255,255,0.65);
    margin-bottom:20px;
}
.chips{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
}
.chips a{
    padding:20px 40px;
    border-radius:30px;
    background: rgba(255,255,255,0.05);
    border:1px solid rgba(255,255,255,0.08);
    font-size:18px;
    color: white;
    transition:all 0.3s ease-in-out;
}
.chips a:hover{
    background: linear-gradient(135deg,#1F5FD6,#FF6A00);
    color:#fff;
}
.btn.primary{
    background: linear-gradient(135deg,#FF6A00,#FF3C00);
    color:#fff;
    padding:14px 28px;
    border-radius:8px;
    display:inline-block;
}
.tag{
    font-size:12px;
    background: rgba(31,95,214,0.15);
    color:#1F5FD6;
    padding:6px 12px;
    border-radius:20px;
}
.services-split::before{
    content:"";
    position:absolute;
    width:500px;
    height:500px;
    background: radial-gradient(circle, rgba(31,95,214,0.15), transparent);
    top:-100px;
    left:-100px;
    filter: blur(60px);
}
.services-split::after{
    content:"";
    position:absolute;
    width:400px;
    height:400px;
    background: radial-gradient(circle, rgba(255,106,0,0.2), transparent);
    bottom:-100px;
    right:-100px;
    filter: blur(60px);
}
@media(max-width:1024px){
    .services-split{
        grid-template-columns:1fr;
    }
    .services-left{
        padding:60px 20px;
        border:none;
        text-align:center;
    }
    .sticky{
        position:relative;
        top:auto;
    }
    .services-right{
        padding:40px 20px;
    }
    .services-left h2{
        font-size:32px;
    }
}

.process-section{
    display:grid;
    grid-template-columns: 1fr 1.2fr;
    background: var(--bg-light);
    color: var(--text-dark);
}
.process-left{
    padding:100px 60px;
    border-right:1px solid var(--border);
    position:relative;
    background: var(--bg-white);
}
.process-left .sticky{
    position:sticky;
    top:120px;
}
.process-left .tag{
    font-size:12px;
    background: rgba(31,95,214,0.08);
    color: var(--blue);
    padding:6px 12px;
    border-radius:20px;
}
.process-left h2{
    font-size:42px;
    margin:20px 0;
    line-height:1.2;
}
.process-left h2 span{
    background: var(--gradient-brand);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}
.process-left p{
    color: var(--text-muted);
    margin-bottom:30px;
}
.process-right{
    padding:80px 60px;
    position:relative;
}
.process-line{
    position:absolute;
    left:20px;
    top:0;
    width:2px;
    height:100%;
    background: var(--border);
}
.process-step{
    position:relative;
    padding-left:60px;
    margin-bottom:60px;
    opacity:0.4;
    transform: translateY(30px);
    transition: all 0.4s ease;
}
.process-step.active{
    opacity:1;
    transform: translateY(0);
    border-color: rgba(255,106,0,0.3);
}
.step-dot{
    position:absolute;
    left:12px;
    top:5px;
    width:16px;
    height:16px;
    border-radius:50%;
    background: var(--blue);
    box-shadow: 0 0 0 6px rgba(31,95,214,0.12);
    transition: all 0.3s ease;
}
.process-step.active .step-dot{
    background: var(--orange);
    box-shadow: 0 0 0 6px rgba(255,106,0,0.15);
}
.process-step h3{
    font-size:22px;
    margin-bottom:8px;
    color: var(--text-dark);
}
.process-step p{
    color: var(--text-muted);
}
.process-step{
    background: var(--bg-white);
    border:1px solid var(--border);
    border-radius:12px;
    padding:30px 30px 30px 60px;
    box-shadow: var(--shadow-soft);
}

.process-step:hover{
    box-shadow: var(--shadow-hover);
    transform: translateY(-4px);
}
.btn.primary{
    background: var(--gradient-brand);
    color: var(--text-light);
    padding:14px 28px;
    border-radius:8px;
    display:inline-block;
    box-shadow: var(--shadow-soft);
}
@media(max-width:1024px){
    .process-section{
        grid-template-columns:1fr;
    }
    .process-left{
        padding:60px 20px;
        border:none;
        text-align:center;
    }
    .process-left .sticky{
        position:relative;
        top:auto;
    }
    .process-right{
        padding:40px 20px;
    }
    .process-left h2{
        font-size:32px;
    }
}

.define-section{
    background:#0b0f1a;
    color:#fff;
    padding:100px 0;
}
.define-container{
    width:1200px;
    max-width:95%;
    margin:auto;
    display:grid;
    grid-template-columns: 1.1fr 1fr;
    gap:60px;
    align-items:center;
}
.define-left h2{
    font-size:48px;
    margin-bottom:20px;
}
.define-left h2 span{
    background: linear-gradient(135deg,#1F5FD6,#FF6A00);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}
.define-lead{
    color:rgba(255,255,255,0.65);
    margin-bottom:40px;
    line-height:1.6;
    max-width:520px;
}
.define-grid{
    display:grid;
    grid-template-columns: 1fr 1fr;
    gap:20px;
}
.define-card{
    padding:24px;
    border-radius:14px;
    background: rgba(255,255,255,0.03);
    border:1px solid rgba(255,255,255,0.06);
    backdrop-filter: blur(10px);
    transition: all 0.35s ease;
    position:relative;
}
.define-card::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    height:3px;
    width:40px;
    background: linear-gradient(135deg,#1F5FD6,#FF6A00);
    border-top-left-radius:14px;
}
.define-card:hover{
    transform: translateY(-6px);
    border-color: rgba(255,106,0,0.4);
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.define-card h4{
    margin-bottom:8px;
    font-size:18px;
}
.define-card p{
    color:rgba(255,255,255,0.6);
    font-size:14px;
}
.define-card.full{
    grid-column: span 2;
}
.define-visual{
    position:relative;
    border-radius:20px;
    overflow:hidden;
    box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}
.define-visual img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}
.overlay{
    position:absolute;
    bottom:0;
    left:0;
    width:100%;
    padding:30px;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
}
.overlay h3{
    font-size:24px;
    margin-bottom:6px;
}
.overlay p{
    color:rgba(255,255,255,0.7);
}
@media(max-width:1024px){
    .define-container{
        grid-template-columns:1fr;
        gap:40px;
    }
    .define-left{
        text-align:center;
    }
    .define-lead{
        margin:auto;
    }
    .define-grid{
        grid-template-columns:1fr;
    }
    .define-card.full{
        grid-column: span 1;
    }
}

.case-section{
    background: var(--bg-light);
    color: var(--text-dark);
    padding:80px 0;
    text-align:center;
}
.case-section button{
    cursor: pointer;
}
.case-header{
    max-width:700px;
    margin:0 auto 60px;
}
.case-header h2{
    font-size:44px;
}
.case-header h2 span{
    background: var(--gradient-brand);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}
.case-header p{
    color: var(--text-muted);
    margin-top:10px;
}
.case-wrapper{
    display:grid;
    grid-template-columns: repeat(3, 1fr);
    gap:30px;
    padding:20px 40px;
    max-width:1200px;
    margin:auto;
}
.case-card{
    background: var(--bg-white);
    border:1px solid var(--border);
    border-radius:18px;
    padding:30px;
    text-align:left;
    box-shadow: var(--shadow-soft);
    transition: all 0.35s ease;
    position:relative;
}
.case-card::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    height:4px;
    width:100%;
    background: var(--gradient-brand);
    border-top-left-radius:18px;
    border-top-right-radius:18px;
}
.case-card:hover{
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}
.case-result h3{
    font-size:32px;
    font-weight: 700;
    background: var(--gradient-brand);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}
.case-result p{
    font-size:14px;
    color: var(--text-muted);
}
.case-card h4{
    margin:20px 0;
    color: var(--text-dark);
}
.case-body p{
    font-size:14px;
    margin-bottom:10px;
    color: var(--text-muted);
}
.case-metrics{
    margin-top:20px;
    display:flex;
    gap:10px;
    flex-wrap:wrap;
}
.case-metrics span{
    background: var(--bg-light);
    padding:6px 12px;
    border-radius:20px;
    font-size:12px;
    border:1px solid var(--border);
}
.case-cta{
    margin-top:50px;
}
.case-wrapper::-webkit-scrollbar{
    height:6px;
}
.case-wrapper::-webkit-scrollbar-thumb{
    background: rgba(0,0,0,0.2);
    border-radius:10px;
}
@media(max-width:1024px){
    .case-wrapper{
        grid-template-columns:1fr 1fr;
    }
}
@media(max-width:640px){
    .case-wrapper{
        grid-template-columns:1fr;
        padding:20px;
    }
}

.insights-section{
    background: var(--bg-light);
    padding:80px 0;
}
.insights-header{
    max-width:700px;
    margin:0 auto 60px;
    text-align: center;
}
.insights-header h2{
    font-size:44px;
}
.insights-header h2 span{
    background: var(--gradient-brand);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}
.insights-featured{
    display:grid;
    grid-template-columns: 2fr 1fr;
    gap:30px;
    max-width:1200px;
    margin:auto;
}
.insight-big{
    position:relative;
    border-radius:18px;
    overflow:hidden;
}
.insight-big img{
    width:100%;
    height:100%;
    object-fit:cover;
}
.insight-overlay{
    position:absolute;
    bottom:0;
    left:0;
    padding:30px;
    width:100%;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    color:#fff;
}
.insight-side{
    display:flex;
    flex-direction:column;
    gap:20px;
}
.insight-small{
    background:#fff;
    padding:20px;
    border-radius:14px;
    border:1px solid var(--border);
    transition:0.3s;
}
.insight-small:hover{
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}
.insight-small p{
    color:var(--text-muted);
    font-size:14px;
}
.insights-cta{
    text-align:center;
    margin-top:50px;
}
.insights-cta p{
    color: var(--text-muted);
    margin-bottom:15px;
}
@media(max-width:1024px){
    .insights-featured{
        grid-template-columns:1fr;
    }
}

.blogs-section{
    background: var(--bg-light);
    padding:80px 0;
}
.blogs-header{
    max-width:700px;
    margin:0 auto 60px;
    text-align: center;
}
.blogs-header h2{
    font-size:44px;
}
.blogs-header h2 span{
    background: var(--gradient-brand);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}
.blogs-grid{
    display:grid;
    grid-template-columns: repeat(3, 1fr);
    gap:30px;
    max-width:1200px;
    margin:auto;
}
.blog-card{
    background:#fff;
    border-radius:14px;
    overflow:hidden;
    border:1px solid var(--border);
    transition:0.3s;
}
.blog-card:hover{
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}
.blog-card img{
    width:100%;
    height:180px;
    object-fit:cover;
}
.blog-card h4{
    padding:15px;
}
.blog-card p{
    padding:0 15px 15px;
    color:var(--text-muted);
    font-size:14px;
}
.blogs-cta{
    margin-top:60px;
    display:flex;
    justify-content:center;
}
.blogs-cta-box{
    text-align:center;
}
.blogs-cta-box h3{
    margin-bottom:10px;
}
.blogs-cta-box p{
    color: var(--text-muted);
    margin-bottom:20px;
}
@media(max-width:1024px){
    .blogs-grid{
        grid-template-columns:1fr 1fr;
    }
}
@media(max-width:640px){
    .blogs-grid{
        grid-template-columns:1fr;
    }
}

.final-cta{
    background:#0b0f1a;
    color:#fff;
    padding:120px 20px;
    text-align:center;
    position:relative;
    overflow:hidden;
}

/* GLOW BACKGROUND */
.final-cta::before{
    content:"";
    position:absolute;
    width:500px;
    height:500px;
    background: radial-gradient(circle, rgba(31,95,214,0.25), transparent);
    top:-100px;
    left:-100px;
    filter: blur(80px);
}

.final-cta::after{
    content:"";
    position:absolute;
    width:500px;
    height:500px;
    background: radial-gradient(circle, rgba(255,106,0,0.25), transparent);
    bottom:-100px;
    right:-100px;
    filter: blur(80px);
}
.cta-container{
    max-width:800px;
    margin:auto;
    position:relative;
    z-index:2;
}
.final-cta h2{
    font-size:48px;
    margin:20px 0;
    line-height:1.2;
}
.final-cta h2 span{
    background: linear-gradient(135deg,#1F5FD6,#FF6A00);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}
.final-cta p{
    color:rgba(255,255,255,0.7);
    margin-bottom:40px;
    font-size:16px;
}
.cta-actions{
    display:flex;
    justify-content:center;
    gap:15px;
    flex-wrap:wrap;
}
.btn.primary{
    background: linear-gradient(135deg,#1F5FD6,#FF6A00);
    padding:14px 28px;
    border-radius:8px;
    color:#fff;
    text-decoration:none;
}
.btn.secondary{
    border:1px solid rgba(255,255,255,0.2);
    padding:14px 28px;
    border-radius:8px;
    color:#fff;
    text-decoration:none;
}
.btn.secondary:hover{
    background: rgba(255,255,255,0.05);
}
.cta-trust{
    margin-top:40px;
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
    font-size:14px;
    color:rgba(255,255,255,0.6);
}
@media(max-width:768px){
    .final-cta h2{
        font-size:34px;
    }
}

.footer{
    background: var(--bg-light);
    color: var(--text-dark);
    padding:80px 20px 30px;
    border-top:1px solid var(--border);
}
.footer-container{
    max-width:1200px;
    margin:auto;
    display:grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap:40px;
}
.footer-col.brand p{
    color: var(--text-muted);
    max-width:300px;
}
.footer-col h4{
    margin-bottom:15px;
    font-size:22px;
}
.footer-col ul{
    list-style:none;
    padding:0;
}
.footer-col ul li{
    margin-bottom:10px;
    font-size:14px;
}
.footer-col ul li a{
    color: var(--text-muted);
    text-decoration:none;
    transition:0.3s;
}
.footer-col ul li a:hover{
    color: var(--text-dark);
}
.footer-col ul li{
    color: var(--text-muted);
}
.footer-bottom{
    margin-top:60px;
    padding-top:20px;
    border-top:1px solid var(--border);
    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
    gap:10px;
}
.footer-bottom p{
    font-size:14px;
    color: var(--text-muted);
}
.socials a{
    margin-left:15px;
    text-decoration:none;
    font-size:14px;
    color: var(--text-muted);
    transition:0.3s;
}
.socials a:hover{
    color: var(--text-dark);
}
@media(max-width:1024px){
    .footer-container{
        grid-template-columns:1fr 1fr;
    }
}
@media(max-width:640px){
    .footer-container{
        grid-template-columns:1fr;
    }
    .footer-bottom{
        flex-direction:column;
        text-align:center;
    }
    .socials a{
        margin:0 10px;
    }
}

#scrollTopBtn{
    position:fixed;
    bottom:15px;
    right:45px;
    width:55px;
    height:55px;
    border-radius:50%;
    box-sizing: border-box;
    border:none;
    cursor:pointer;
    backdrop-filter: blur(10px);
    background: linear-gradient(135deg, rgba(31,95,214,0.9), rgba(255,106,0,0.9));
    color:#fff;
    font-size:18px;
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    opacity:0;
    visibility:hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index:999;
}
#scrollTopBtn.show{
    opacity:1;
    visibility:visible;
    transform: translateY(0);
}
#scrollTopBtn:hover{
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 35px rgba(0,0,0,0.25);
}

#chatToggle {
    position: fixed;
    box-sizing: border-box;
    bottom: 75px;
    right: 45px;
    width:55px;
    height:55px;
    background: linear-gradient(135deg, rgba(31,95,214,0.9), rgba(255,106,0,0.9));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    line-height: 1;
    border-radius: 50%;
    cursor: pointer;
    z-index: 999;
}
#chatToggle i{
    font-size: 22px;
}
#chatbot {
    position: fixed;
    box-sizing: border-box;
    bottom: 190px;
    right: 45px;
    width: 340px;
    height: 480px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
    display: none;
    flex-direction: column;
    overflow: hidden;
    z-index: 999;
}
.chat-header {
    background: #111;
    color: #fff;
    padding: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.chat-body {
    flex: 1;
    padding: 12px;
    overflow-y: auto;
    background: #f9f9f9;
}
.chat-footer {
    display: flex;
    border-top: 1px solid #eee;
}
.chat-footer input {
    flex: 1;
    border: none;
    padding: 12px;
    outline: none;
}
.chat-footer button {
    background: #111;
    color: #fff;
    border: none;
    padding: 12px 16px;
    cursor: pointer;
}
.user, .bot {
    max-width: 75%;
    margin-bottom: 10px;
    padding: 10px 14px;
    border-radius: 14px;
    font-size: 14px;
}
.user {
    background: #111;
    color: #fff;
    margin-left: auto;
}
.bot {
    background: #eaeaea;
    color: #000;
}
.typing {
    font-size: 12px;
    color: #666;
}
.quick-options {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 8px;
}
.quick-btn {
    background: #fff;
    border: 1px solid #ddd;
    padding: 6px 10px;
    border-radius: 20px;
    font-size: 12px;
    cursor: pointer;
    transition: 0.2s;
}
.quick-btn:hover {
    background: #111;
    color: #fff;
}
.chat-links {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 8px;
}
.chat-link-btn {
    padding: 6px 10px;
    border-radius: 20px;
    font-size: 12px;
    text-decoration: none;
    border: 1px solid #ddd;
    transition: 0.2s;
}
.chat-link-btn.service {
    background: #111;
    color: #fff;
}
.chat-link-btn.case {
    background: #f1f1f1;
    color: #000;
}
.chat-link-btn.blog {
    background: #fff;
    color: #111;
}
.chat-link-btn:hover {
    transform: scale(1.05);
}
@media (max-width: 600px) {
    html, body {
        max-width: 100%;
        overflow-x: hidden;
    }
    #scrollTopBtn, #chatToggle {
        right: 12px !important;
        width: 50px !important;
        height: 50px !important;
        padding: 0 !important;
    }
    #chatToggle i{
        font-size: 20px;
        display: block;
        line-height: 1;
    }
    #scrollTopBtn {
        bottom: 12px !important;
    }
    #chatToggle {
        bottom: 68px !important;
    }
    #chatbot {
        left: 12px !important;
        right: 12px !important;
        bottom: 124px !important;
        width: auto !important;
        max-width: calc(100vw - 24px) !important;
        height: 70vh !important;
        transform: none !important;
    }
}

/* ================= HERO LIGHT ================= */
.page-hero-light{
    position:relative;
    overflow:hidden;
    padding:80px 20px 80px;
    text-align:center;
    background:#F7F9FC;
    color:#0f172a;
}
.page-hero-light .hero-bg{
    position:absolute;
    inset:0;
    z-index:0;
}
.page-hero-light .grid{
    position:absolute;
    inset:0;
    background-image:
        linear-gradient(rgba(15,23,42,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(15,23,42,0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: gridMove 20s linear infinite;
}
.page-hero-light .gradient{
    position:absolute;
    width:700px;
    height:700px;
    top:-150px;
    left:50%;
    transform:translateX(-50%);
    background: radial-gradient(circle, rgba(31,95,214,0.18), transparent 60%);
    filter: blur(80px);
    animation: floatGlow 10s ease-in-out infinite;
}
.page-hero-light .hero-content{
    position:relative;
    z-index:2;
    max-width:800px;
    margin:0 auto;
}
.breadcrumb{
    font-size:13px;
    color:#64748b;
    margin-bottom:16px;
}
.breadcrumb a{
    color:#1F5FD6;
}
.page-hero-light .hero-content h1{
    font-family:'Sora', sans-serif;
    font-size:48px;
    line-height:1.2;
    margin-bottom:18px;
}
.page-hero-light .hero-content h1 span{
    background: linear-gradient(135deg,#1F5FD6,#FF6A00);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}
.page-hero-light .hero-content p{
    font-size:18px;
    color:#475569;
    max-width:700px;
    margin:0 auto 32px;
    line-height:1.75;
    text-align:center;
    letter-spacing:0.2px;   /* subtle premium typography */
}
.page-hero-light .hero-buttons{
    display:flex;
    justify-content:center;
    gap:16px;
}
.page-hero-light .btn{
    padding:14px 28px;
    border-radius:8px;
    font-weight:500;
    transition:0.3s;
}
.page-hero-light .btn.primary{
    background: linear-gradient(135deg,#FF6A00,#FF3C00);
    color:#fff;
    box-shadow: 0 10px 25px rgba(255,106,0,0.25);
}
.page-hero-light .btn.primary:hover{
    transform: translateY(-2px);
}
.page-hero-light .btn.secondary{
    border:1px solid rgba(15,23,42,0.1);
    color:#1F5FD6;
    background:#fff;
}
.page-hero-light .btn.secondary:hover{
    background:#f1f5f9;
}
@keyframes gridMove{
    from{ transform: translateY(0); }
    to{ transform: translateY(60px); }
}
@keyframes floatGlow{
    0%,100%{
        transform: translate(-50%,0);
    }
    50%{
        transform: translate(-50%,40px);
    }
}
@media(max-width:768px){
    .page-hero-light .hero-content h1{
        font-size:34px;
    }
    .page-hero-light .hero-content p{
        font-size:16px;
    }
    .page-hero-light .hero-buttons{
        flex-direction:column;
    }
}

.about-dark{
    position:relative;
    padding:80px 20px;
    background:#0B0F19;
    color:#fff;
    overflow:hidden;
}
.about-dark::before{
    content:"";
    position:absolute;
    width:500px;
    height:500px;
    background: radial-gradient(circle, rgba(31,95,214,0.2), transparent);
    top:-150px;
    left:-150px;
    filter: blur(80px);
}
.about-dark::after{
    content:"";
    position:absolute;
    width:500px;
    height:500px;
    background: radial-gradient(circle, rgba(255,106,0,0.2), transparent);
    bottom:-150px;
    right:-150px;
    filter: blur(80px);
}
.about-dark .about-container{
    max-width:900px;
    margin:auto;
    text-align:center;
    position:relative;
    z-index:2;
}
.about-dark .tag{
    display:inline-block;
    font-size:12px;
    font-weight:600;
    color:#4A8BFF;
    background: rgba(74,139,255,0.1);
    padding:6px 14px;
    border-radius:20px;
    margin-bottom:20px;
}
.about-dark h2{
    font-family:'Sora', sans-serif;
    font-size:40px;
    line-height:1.2;
    margin-bottom:20px;
}
.about-dark h2 span{
    background: linear-gradient(135deg,#4A8BFF,#FF8C1A);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}
.about-dark .about-intro{
    font-size:18px;
    color:rgba(255,255,255,0.7);
    line-height:1.7;
    margin-bottom:60px;
}
.about-dark .about-columns{
    display:grid;
    grid-template-columns: repeat(3,1fr);
    gap:30px;
    text-align:left;
}
.about-dark .about-col{
    padding:25px;
    border-radius:14px;
    background: rgba(255,255,255,0.03);
    border:1px solid rgba(255,255,255,0.06);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}
.about-dark .about-col:hover{
    transform: translateY(-6px);
    border-color: rgba(255,106,0,0.4);
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.about-dark .about-col h3{
    font-size:18px;
    margin-bottom:10px;
}
.about-dark .about-col p{
    font-size:14px;
    color:rgba(255,255,255,0.65);
    line-height:1.6;
}
@media(max-width:768px){
    .about-dark h2{
        font-size:28px;
    }
    .about-dark .about-columns{
        grid-template-columns:1fr;
        text-align:center;
    }
}

.testimonials{
    padding:100px 20px;
    background:#F7F9FC;
    position:relative;
}
.testimonials-light::before{
    content:"";
    position:absolute;
    top:0;
    left:50%;
    transform:translateX(-50%);
    width:70%;
    height:2px;
    background: linear-gradient(
        90deg,
        transparent,
        #1F5FD6,
        #FF6A00,
        transparent
    );
    filter: blur(1px);
    opacity:0.7;
}
.testimonials::before{
    content:"";
    position:absolute;
    width:500px;
    height:500px;
    background: radial-gradient(circle, rgba(31,95,214,0.08), transparent);
    top:-150px;
    left:-150px;
    filter: blur(60px);
}
.testimonials::after{
    content:"";
    position:absolute;
    width:400px;
    height:400px;
    background: radial-gradient(circle, rgba(255,106,0,0.08), transparent);
    bottom:-150px;
    right:-150px;
    filter: blur(60px);
}
.testimonials-container{
    max-width:1200px;
    margin:auto;
    position:relative;
    z-index:2;
}
.testimonials-header{
    text-align:center;
    margin-bottom:60px;
}
.testimonials-header h2{
    font-size:42px;
    margin:15px 0;
    color:#0B0F19;
}
.testimonials-header h2 span{
    background: linear-gradient(135deg,#1F5FD6,#FF6A00);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}
.testimonials-header p{
    color:#6B7A99;
}
.testimonials-grid{
    display:grid;
    grid-template-columns: repeat(3,1fr);
    gap:30px;
}
.testimonial-card{
    background:#fff;
    border:1px solid #E6ECF5;
    border-radius:16px;
    padding:28px;
    box-shadow: 0 10px 30px rgba(13,59,140,0.06);
    transition: all 0.35s ease;
    position:relative;
}
.testimonial-card:hover{
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(13,59,140,0.12);
    border-color: rgba(31,95,214,0.25);
}
.testimonial-card p{
    font-size:15px;
    color:#4a5568;
    line-height:1.7;
    margin-bottom:20px;
}
.client{
    display:flex;
    align-items:center;
    gap:12px;
}
.avatar{
    width:42px;
    height:42px;
    border-radius:50%;
    background: linear-gradient(135deg,#1F5FD6,#FF6A00);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:600;
}
.client h4{
    font-size:14px;
    color:#0B0F19;
}
.client span{
    font-size:12px;
    color:#6B7A99;
}
.result{
    margin-top:15px;
    display:inline-block;
    font-size:12px;
    padding:6px 12px;
    border-radius:20px;
    background: rgba(255,106,0,0.1);
    color:#FF6A00;
    font-weight:500;
}
.testimonial-card{
    opacity:0;
    transform: translateY(30px);
    animation: fadeUp 0.8s ease forwards;
}
.testimonial-card:nth-child(2){
    animation-delay:0.2s;
}
.testimonial-card:nth-child(3){
    animation-delay:0.4s;
}
@keyframes fadeUp{
    to{
        opacity:1;
        transform: translateY(0);
    }
}
@media(max-width:1024px){
    .testimonials-grid{
        grid-template-columns:1fr 1fr;
    }
}
@media(max-width:640px){
    .testimonials-grid{
        grid-template-columns:1fr;
    }
    .testimonials-header h2{
        font-size:30px;
    }
}

.faq-section {
    padding: 70px 20px;
    background: linear-gradient(180deg, var(--bg-white), var(--bg-light));
}
.faq-container {
    max-width: 1200px;
    margin: auto;
}
.faq-section h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: var(--text-dark);
}
.faq-search input {
    width: 100%;
    padding: 14px 18px;
    border-radius: 10px;
    border: 1px solid var(--border);
    margin-bottom: 25px;
    font-size: 15px;
    background: var(--bg-white);
    color: var(--text-dark);
}
.faq-search input:focus {
    outline: none;
    border-color: var(--blue);
    box-shadow: 0 0 0 2px rgba(31, 95, 214, 0.1);
}
.faq-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}
.faq-categories button {
    padding: 8px 16px;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: var(--bg-white);
    cursor: pointer;
    font-size: 14px;
    color: var(--text-dark);
    transition: 0.3s ease;
}
.faq-categories button:hover {
    border-color: var(--blue);
    color: var(--blue);
}
.faq-categories button.active {
    background: var(--gradient-brand);
    color: var(--text-light);
    border: none;
}
.faq-item {
    border-bottom: 1px solid var(--border);
}
.faq-question {
    width: 100%;
    text-align: left;
    padding: 18px 0;
    font-size: 17px;
    font-weight: 500;
    color: var(--text-dark);
    display: flex;
    justify-content: space-between;
    background: none;
    border: none;
    cursor: pointer;
    transition: 0.3s ease;
}
.faq-question:hover {
    color: var(--blue);
}
.faq-question span {
    transition: 0.3s ease;
    color: var(--text-muted);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: 0.3s ease;
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.7;
}
.faq-item.active .faq-answer {
    max-height: 200px;
    padding-bottom: 15px;
}
.faq-item.active .faq-question span {
    transform: rotate(45deg);
    color: var(--orange);
}

.services-framework {
    padding: 40px 20px;
    background: linear-gradient(180deg, var(--bg-white), var(--bg-light));
    text-align: center;
}
.services-framework h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: var(--text-dark);
}
.services-framework p {
    color: var(--text-muted);
}
.framework-grid {
    margin-top: 60px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}
.framework-item {
    padding: 30px 20px;
    border-radius: 14px;
    background: var(--bg-white);
    border: 1px solid var(--border);
    transition: 0.3s ease;
}
.framework-item:hover {
    transform: translateY(-6px);
    border-color: var(--blue);
    box-shadow: var(--shadow-soft);
}
.framework-item h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--text-dark);
}
.framework-item span {
    font-size: 13px;
    color: var(--text-muted);
}
.services-detailed {
    padding: 50px 20px;
    background: var(--bg-white);
}
.service-container {
    max-width: 1200px;
    margin: auto;
}
.service-pillar {
    border-bottom: 1px solid var(--border);
    padding: 25px 0;
}
.pillar-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    cursor: pointer;
}
.pillar-text {
    max-width: 600px;
}
.pillar-text h3 {
    font-size: 22px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 6px;
}
.pillar-text p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}
.pillar-header .toggle {
    font-size: 24px;
    transition: 0.3s;
    color: var(--text-muted);
}
.service-pillar.active .toggle {
    transform: rotate(45deg);
    color: var(--orange);
}
.pillar-content {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
}
.service-pillar.active .pillar-content {
    max-height: 500px;
    margin-top: 20px;
}
.sub-service {
    margin-bottom: 20px;
}
.sub-service .sub-title a {
    font-size: 16px;
    text-decoration: none;
    color: var(--text-dark);
    transition: all 0.3s ease-in-out;
}
.sub-service .sub-title a:hover {
    color: var(--blue);
}
.service-grid {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.service-grid a {
    display: inline-block;
    text-decoration: none;
    background: var(--bg-light);
    padding: 15px 30px;
    border: 1px solid var(--border);
    border-radius: 999px;
    font-size: 13px;
    color: var(--text-dark);
    transition: all 0.3s ease;
}
.service-grid a:hover {
    background: var(--gradient-brand);
    color: var(--text-light);
    border-color: transparent;
    transform: translateY(-2px);
}
.service-grid a:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(31, 95, 214, 0.2);
}
.pillar-cta{
    margin: 25px 0px;
}
@media (max-width: 768px) {
    .pillar-header {
        flex-direction: row;
        align-items: flex-start;
    }
    .pillar-text {
        max-width: 100%;
    }
}

.service-layout {
    padding: 60px 20px;
    background: linear-gradient(to bottom, var(--bg-white), var(--bg-light));
}
.service-layout .service-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 2fr; /* SIDEBAR LEFT */
    gap: 50px;
}
.service-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.service-desc h2 {
    font-size: clamp(24px, 3vw, 32px);
    margin-bottom: 12px;
    color: var(--text-dark);
}
.service-desc p,
.service-desc ul li {
    line-height: 1.7;
    font-size: 16px;
    color: var(--text-muted);
}
.service-content ul{
    padding-left: 25px;
}
.service-desc p,
.service-content ul{
    margin-bottom: 15px;
}
.service-sidebar {
    position: sticky;
    top: 120px;
    align-self: start;
}
.service-menu {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 20px;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
}
.service-menu:hover {
    box-shadow: var(--shadow-hover);
}
.service-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    margin-bottom: 15px;
    cursor: pointer;
    color: var(--text-dark);
}
.service-toggle {
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
    color: var(--blue);
}
.service-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}
.service-nav li {
    margin-bottom: 10px;
}
.service-nav a {
    text-decoration: none;
    color: var(--text-muted);
    font-size: 14px;
    display: block;
    padding: 8px 12px;
    border-radius: 10px;
    transition: all 0.25s ease;
}
.service-nav a:hover {
    color: var(--blue);
    background: rgba(31,95,214,0.08);
    transform: translateX(4px);
}
.service-nav a.active {
    color: var(--blue);
    font-weight: 600;
    background: rgba(31,95,214,0.1);
    border-left: 3px solid var(--orange);
}
.service-cta-card {
    margin-top: 20px;
    padding: 24px;
    border-radius: 18px;
    background: linear-gradient(180deg, var(--blue-dark), var(--bg-dark));
    color: var(--text-light);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}
.service-cta-card::after {
    content: "";
    position: absolute;
    width: 200px;
    height: 200px;
    background: var(--orange);
    opacity: 0.2;
    filter: blur(90px);
    top: -50px;
    right: -50px;
}
.service-cta-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
}
.service-cta-card p {
    font-size: 14px;
    color: rgba(255,255,255,0.8);
    line-height: 1.6;
    margin-bottom: 15px;
}
.service-cta-list {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}
.service-cta-list li {
    font-size: 14px;
    margin-bottom: 8px;
    padding-left: 22px;
    position: relative;
}
.service-cta-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: var(--orange-light);
    font-size: 12px;
}
.service-cta-btn {
    text-decoration: none;
    display: block;
    width: 100%;
    padding: 14px;
    border-radius: 30px;
    background: var(--gradient-brand);
    color: var(--text-light);
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
}
.service-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(31,95,214,0.3);
}
.service-cta-note {
    display: block;
    font-size: 12px;
    color: rgba(255,255,255,0.6);
}
.service-sidebar::-webkit-scrollbar {
    width: 4px;
}
.service-sidebar::-webkit-scrollbar-thumb {
    background: rgba(13,59,140,0.2);
    border-radius: 10px;
}
@media (max-width: 900px) {
    .service-layout .service-container {
        grid-template-columns: 1fr;
    }
    .service-sidebar {
        order: -1;
        position: relative;
        top: 0;
    }
    .service-cta-card {
        margin-top: 10px;
    }
}
@media (max-width: 900px){
    .service-sidebar{
        display: none;
    }
}

.industries-section {
  width: 100%;
  padding: 100px 60px;
  background:
    radial-gradient(circle at top left, rgba(31,95,214,0.08), transparent 32%),
    radial-gradient(circle at bottom right, rgba(255,106,0,0.08), transparent 30%),
    var(--bg-light);
}
.industries-container {
  max-width: 1400px;
  margin: 0 auto;
}
.industries-header {
  max-width: 780px;
  margin: 0 auto 55px;
  text-align: center;
}
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: rgba(31,95,214,0.08);
  color: var(--blue);
  font-size: 14px;
  font-weight: 700;
}
.section-kicker::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gradient-brand);
}
.industries-header h2 {
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.08;
  letter-spacing: -1.5px;
  color: var(--text-dark);
  margin-bottom: 18px;
}
.industries-header p {
  font-size: 17px;
  line-height: 1.8;
  color: var(--text-muted);
}
.industries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.industry-card {
  display: block;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: 24px;
  overflow: hidden;
  text-decoration: none;
  box-shadow: var(--shadow-soft);
  transition: 0.35s ease;
}
.industry-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(31,95,214,0.25);
}
.industry-image {
  width: 100%;
  height: 280px;
  overflow: hidden;
  background: linear-gradient(
    135deg,
    rgba(31,95,214,0.08),
    rgba(255,106,0,0.08)
  );
}
.industry-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}
.industry-card:hover .industry-image img {
  transform: scale(1.05);
}
.industry-content {
  padding: 22px 24px;
}
.industry-content h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.4;
  text-align: center;
}
@media (max-width: 1100px) {
  .industries-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 700px) {
  .industries-section {
    padding: 70px 20px;
  }
  .industries-grid {
    grid-template-columns: 1fr;
  }
  .industry-image {
    height: 240px;
  }
}

.insights-section{
    padding: 50px 0;
    background: var(--bg-light);
    position: relative;
}
.section-head{
    text-align: center;
    max-width: 760px;
    margin: 0 auto 60px;
}
.section-tag{
    display: inline-flex;
    padding: 8px 18px;
    border-radius: 50px;
    background: rgba(31,95,214,0.08);
    color: var(--blue);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 18px;
}
.section-head h2{
    font-size: 48px;
    line-height: 1.15;
    color: var(--text-dark);
    margin-bottom: 18px;
    letter-spacing: -1px;
}
.section-head p{
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-muted);
}
.insights-grid{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.insight-card{
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 30px;
    box-shadow: var(--shadow-soft);
    transition: 0.35s ease;
    position: relative;
    overflow: hidden;
}
.insight-card::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-brand);
    transform: scaleX(0);
    transform-origin: left;
    transition: 0.35s ease;
}
.insight-card:hover{
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}
.insight-card:hover::before{
    transform: scaleX(1);
}
.insight-meta{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}
.insight-meta span:first-child{
    padding: 6px 14px;
    border-radius: 30px;
    background: rgba(255,106,0,0.08);
    color: var(--orange);
    font-size: 13px;
    font-weight: 600;
}
.insight-meta span:last-child{
    font-size: 14px;
    color: var(--text-muted);
}
.insight-card h3{
    font-size: 24px;
    line-height: 1.35;
    color: var(--text-dark);
    margin-bottom: 18px;
}
.insight-card p{
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 30px;
}
.insight-link{
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--blue);
    font-weight: 600;
    transition: 0.3s ease;
}
.insight-link i{
    transition: 0.3s ease;
}
.insight-link:hover{
    color: var(--orange);
}
.insight-link:hover i{
    transform: translateX(5px);
}
@media (max-width: 1200px){
    .insights-grid{
        grid-template-columns: repeat(2, 1fr);
    }
    .section-head h2{
        font-size: 40px;
    }
}
@media (max-width: 767px){
    .insights-section{
        padding: 70px 0;
    }
    .insights-grid{
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .section-head h2{
        font-size: 32px;
    }
    .section-head p{
        font-size: 16px;
    }
    .insight-card{
        padding: 24px;
        border-radius: 20px;
    }
    .insight-card h3{
        font-size: 22px;
    }
}

.related-cases-card {
    margin-top: 22px;
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 22px;
    box-shadow: var(--shadow-soft);
}
.related-cases-head span {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    color: var(--orange);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.related-cases-head h3 {
    font-size: 20px;
    color: var(--text-dark);
    margin-bottom: 18px;
}
.related-case-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.related-case-item {
    display: block;
    padding: 16px;
    border-radius: 14px;
    background: var(--bg-light);
    border: 1px solid var(--border);
    text-decoration: none;
    transition: 0.3s ease;
}
.related-case-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(31, 95, 214, 0.25);
    background: #ffffff;
}
.case-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    color: var(--blue);
    background: rgba(31, 95, 214, 0.08);
    padding: 5px 10px;
    border-radius: 999px;
    margin-bottom: 10px;
}
.related-case-item h4 {
    font-size: 15px;
    line-height: 1.5;
    color: var(--text-dark);
    margin-bottom: 8px;
}
.related-case-item p {
    font-size: 13px;
    color: var(--orange);
    font-weight: 700;
    margin: 0;
}
.related-cases-link {
    margin-top: 18px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--blue);
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
}
.related-cases-link i {
    transition: 0.3s ease;
}
.related-cases-link:hover {
    color: var(--orange);
}
.related-cases-link:hover i {
    transform: translateX(4px);
}

.case-navigation {
    margin-top: 60px;
    padding-top: 35px;
    border-top: 1px solid var(--border);
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
.case-nav-btn {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 24px;
    border-radius: 18px;
    text-decoration: none;
    background: var(--bg-white);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-soft);
    transition: 0.35s ease;
    overflow: hidden;
}
.case-nav-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--gradient-brand);
    opacity: 0;
    transition: 0.35s ease;
    z-index: 0;
}
.case-nav-btn * {
    position: relative;
    z-index: 2;
}
.case-nav-btn:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}
.case-nav-btn:hover::before {
    opacity: 1;
}
.case-nav-btn:hover .nav-label,
.case-nav-btn:hover h4 {
    color: var(--text-light);
}
.case-navigation .nav-label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--orange);
    transition: 0.3s ease;
}
.case-nav-btn h4 {
    font-size: 18px;
    line-height: 1.5;
    color: var(--text-dark);
    margin: 0;
    transition: 0.3s ease;
}
.case-navigation .prev-case {
    text-align: left;
}
.case-navigation .next-case {
    text-align: right;
}
@media (max-width: 767px) {
    .case-navigation {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .case-navigation .next-case {
        text-align: left;
    }
    .case-navigation .case-nav-btn {
        padding: 20px;
    }
    .case-nav-btn h4 {
        font-size: 16px;
    }
}

.error-page {
    padding: 40px 20px;
    display: flex;
    align-items: center;
    background:
        radial-gradient(circle at 75% 45%, rgba(31, 95, 214, 0.08), transparent 32%),
        linear-gradient(135deg, var(--bg-white), var(--bg-light));
    overflow: hidden;
}
.error-container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    align-items: center;
    gap: 70px;
}
.error-content {
    position: relative;
    z-index: 2;
}
.error-code {
    display: inline-block;
    margin-bottom: 24px;
    font-size: clamp(76px, 9vw, 150px);
    line-height: 0.9;
    font-weight: 800;
    letter-spacing: -5px;
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.error-content h1 {
    max-width: 660px;
    margin-bottom: 22px;
    font-size: clamp(20px, 3vw, 40px);
    line-height: 1.18;
    font-weight: 800;
    letter-spacing: -1.8px;
    color: var(--text-dark);
}
.error-subtitle {
    margin-bottom: 28px;
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-muted);
}
.error-links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 34px;
}
.error-links a {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    color: var(--text-dark);
    transition: all 0.3s ease;
}
.error-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 2px;
    border-radius: 20px;
    background: var(--gradient-brand);
    transition: width 0.3s ease;
}
.error-links a span {
    color: var(--orange);
    transition: transform 0.3s ease;
}
.error-links a:hover {
    color: var(--blue);
}
.error-links a:hover::after {
    width: 100%;
}
.error-links a:hover span {
    transform: translateX(5px);
}
.error-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 0 30px;
    border-radius: 14px;
    background: var(--gradient-brand);
    color: var(--text-light);
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    box-shadow: 0 14px 35px rgba(255, 106, 0, 0.22);
    transition: all 0.3s ease;
}
.error-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 45px rgba(31, 95, 214, 0.25);
}
.error-visual {
    position: relative;
    min-height: 620px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.error-glow {
    position: absolute;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    background:
        radial-gradient(circle, rgba(255, 106, 0, 0.22), transparent 60%),
        radial-gradient(circle, rgba(31, 95, 214, 0.14), transparent 68%);
    filter: blur(10px);
    animation: errorGlow 5s ease-in-out infinite alternate;
}
.error-image {
    position: relative;
    z-index: 2;
    width: min(100%, 650px);
    max-height: 680px;
    object-fit: contain;
    filter: drop-shadow(0 30px 50px rgba(13, 59, 140, 0.16));
    animation: floatImage 5s ease-in-out infinite;
}
@keyframes floatImage {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-16px);
    }
}
@keyframes errorGlow {
    from {
        transform: scale(0.95);
        opacity: 0.75;
    }
    to {
        transform: scale(1.08);
        opacity: 1;
    }
}
@media (max-width: 992px) {
    .error-page {
        padding: 70px 20px;
        text-align: center;
    }
    .error-container {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    .error-content h1 {
        margin-left: auto;
        margin-right: auto;
    }
    .error-links {
        align-items: center;
    }
    .error-visual {
        min-height: auto;
        order: -1;
    }
    .error-image {
        width: min(100%, 420px);
    }
    .error-glow {
        width: 360px;
        height: 360px;
    }
}
@media (max-width: 576px) {
    .error-page {
        padding: 45px 16px;
        align-items: flex-start;
    }
    .error-container {
        gap: 28px;
    }
    .error-code {
        margin-bottom: 18px;
        letter-spacing: -3px;
    }
    .error-content h1 {
        font-size: 30px;
        letter-spacing: -1px;
    }
    .error-subtitle {
        font-size: 15px;
        margin-bottom: 22px;
    }
    .error-links {
        gap: 12px;
        margin-bottom: 28px;
    }
    .error-links a {
        font-size: 15.5px;
    }
    .error-btn {
        width: 100%;
        max-width: 260px;
        min-height: 50px;
    }
    .error-image {
        width: min(100%, 310px);
    }
    .error-glow {
        width: 260px;
        height: 260px;
    }
}

.contact-section{
    padding:50px 20px;
    background:
    linear-gradient(
    to bottom,
    var(--bg-light),
    var(--bg-white)
    );
}
.contact-container{
    max-width:1200px;
    margin:auto;
    display:grid;
    grid-template-columns:2fr 1fr;
    gap:40px;
}
.contact-form-wrapper{
    background:var(--bg-white);
    border-radius:28px;
    padding:45px;
    box-shadow:var(--shadow-soft);
    border:1px solid var(--border);
}
.contact-heading span{
    display:inline-block;
    padding:8px 14px;
    background:
    rgba(31,95,214,.08);
    color:var(--blue);
    border-radius:30px;
    font-size:13px;
    font-weight:600;
    margin-bottom:20px;
}
.contact-heading h2{
    font-size:clamp(
    28px,
    4vw,
    42px
    );
    margin-bottom:15px;
    color:var(--text-dark);
}
.contact-heading p{
    color:var(--text-muted);
    line-height:1.8;
    margin-bottom:35px;
}
.contact-form{
    display:flex;
    flex-direction:column;
    gap:22px;
}
.contact-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:20px;
}
.form-group{
    display:flex;
    flex-direction:column;
}
.form-group label{
    margin-bottom:10px;
    font-size:14px;
    font-weight:600;
    color:var(--text-dark);
}
.form-group input,
.form-group textarea,
.form-group select{
    border:1px solid var(--border);
    background:var(--bg-light);
    padding:15px 18px;
    border-radius:14px;
    outline:none;
    font-size:15px;
    transition:.3s;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus{
    border-color:var(--blue);
    box-shadow:
    0 0 0 4px
    rgba(31,95,214,.1);
}
.contact-submit{
    border:none;
    height:56px;
    border-radius:50px;
    background:var(--gradient-brand);
    color:white;
    font-size:16px;
    font-weight:600;
    cursor:pointer;
    transition:.4s;
}
.contact-submit:hover{
    transform:translateY(-3px);
    box-shadow:
    0 15px 35px
    rgba(31,95,214,.2);
}
.contact-details{
    display:flex;
    flex-direction:column;
    gap:22px;
}
.contact-card{
    background:var(--bg-white);
    border-radius:24px;
    padding:30px;
    border:1px solid var(--border);
    box-shadow:var(--shadow-soft);
    transition:.4s;
}
.contact-card:hover{
    transform:translateY(-6px);
    box-shadow:var(--shadow-hover);
}
.contact-icon{
    width:60px;
    height:60px;
    border-radius:18px;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:20px;
    color:white;
    font-size:20px;
    background:var(--gradient-brand);
}
.contact-card h3{
    margin-bottom:8px;
    color:var(--text-dark);
}
.contact-card p{
    color:var(--text-muted);
    margin-bottom:15px;
    line-height:1.7;
}
.contact-card a{
    color:var(--blue);
    text-decoration:none;
    font-weight:600;
}
@media(max-width:992px){
    .contact-container{
        grid-template-columns:1fr;
    }
    .contact-details{
        display:grid;
        grid-template-columns:
        repeat(3,1fr);
    }
}
@media(max-width:768px){
    .contact-grid{
        grid-template-columns:1fr;
    }
    .contact-form-wrapper{
        padding:30px;
    }
    .contact-details{
        grid-template-columns:1fr;
    }
}

.blog-detail-section {
    padding: 80px 20px;
    background: linear-gradient(to bottom, var(--bg-white), var(--bg-light));
}
.blog-detail-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 320px minmax(0, 1fr);
    gap: 50px;
    align-items: start;
}
.blog-toc{
    position: sticky;
    top: 120px;
    display: flex;
    flex-direction: column;
    gap: 22px;
}
.toc-related{
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: 22px;
    padding: 22px;
    box-shadow: var(--shadow-soft);
}
.toc-related-head{
    margin-bottom: 18px;
}
.toc-related-head span{
    display: inline-block;
    margin-bottom: 8px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--orange);
}
.toc-related-head h3{
    font-size: 22px;
    color: var(--text-dark);
}
.toc-related-list{
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.toc-related-card{
    display: flex;
    gap: 14px;
    text-decoration: none;
    transition: .3s ease;
}
.toc-related-card:hover{
    transform: translateX(4px);
}
.toc-related-img{
    width: 90px;
    height: 85px;
    border-radius: 14px;
    overflow: hidden;
    flex-shrink: 0;
    background: var(--bg-light);
}
.toc-related-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .4s ease;
}
.toc-related-card:hover img{
    transform: scale(1.08);
}
.toc-related-content span{
    display: inline-block;
    margin-bottom: 6px;
    font-size: 11px;
    font-weight: 700;
    color: var(--blue);
    text-transform: uppercase;
}
.toc-related-content h4{
    font-size: 15px;
    line-height: 1.5;
    color: var(--text-dark);
    transition: .3s ease;
}
.toc-related-card:hover h4{
    color: var(--blue);
}
@media(max-width:992px){
    .blog-toc{
        position: relative;
        top: 0;
    }
    .toc-related{
        display: none;
    }
}

.toc-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: 22px;
    padding: 24px;
    box-shadow: var(--shadow-soft);
}
.toc-card h3 {
    font-size: 20px;
    margin-bottom: 18px;
    color: var(--text-dark);
}
.toc-card a {
    display: block;
    text-decoration: none;
    color: var(--text-muted);
    font-size: 14px;
    padding: 10px 12px;
    border-radius: 12px;
    transition: 0.3s ease;
}
.toc-card a:hover {
    color: var(--blue);
    background: rgba(31, 95, 214, 0.08);
    transform: translateX(4px);
}
.blog-content {
    min-width: 0;
}
.featured-box {
    padding: 28px;
    margin-bottom: 34px;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(31,95,214,0.08), rgba(255,106,0,0.08));
    border: 1px solid var(--border);
    box-shadow: var(--shadow-soft);
}
.featured-box span {
    display: inline-block;
    margin-bottom: 12px;
    color: var(--orange);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
}
.featured-box p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-dark);
    margin: 0;
}
.blog-block {
    margin-bottom: 42px;
}
.blog-block h2,
.blog-faq h2 {
    font-size: clamp(26px, 3vw, 36px);
    margin-bottom: 18px;
    color: var(--text-dark);
    line-height: 1.25;
}
.blog-block h3 {
    font-size: 22px;
    margin: 26px 0 10px;
    color: var(--text-dark);
}
.blog-block p,
.blog-block li,
.faq-item p {
    font-size: 16px;
    line-height: 1.85;
    color: var(--text-muted);
    margin-bottom: 15px;
}
.blog-block ul {
    margin: 18px 0 0;
    padding-left: 24px;
}
.blog-block li {
    margin-bottom: 10px;
}
.blog-faq {
    margin-top: 50px;
}
.faq-item {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 24px;
    margin-bottom: 16px;
    box-shadow: var(--shadow-soft);
}
.faq-item h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--text-dark);
}
.faq-item p {
    margin: 0;
}
@media (max-width: 992px) {
    .blog-detail-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .blog-toc {
        position: relative;
        top: 0;
    }
    .toc-card {
        display: none;
    }
}
@media (max-width: 576px) {
    .blog-detail-section {
        padding: 55px 16px;
    }
    .featured-box {
        padding: 22px;
    }
    .featured-box p {
        font-size: 16px;
    }
    .blog-block {
        margin-bottom: 34px;
    }
    .blog-block h2,
    .blog-faq h2 {
        font-size: 25px;
    }
    .blog-block h3 {
        font-size: 19px;
    }
    .blog-block p,
    .blog-block li,
    .faq-item p {
        font-size: 15px;
    }
    .faq-item {
        padding: 20px;
    }
}
.blog-navigation {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
    margin: 60px 0;
}
.blog-nav-card {
    display: block;
    text-decoration: none;
    padding: 28px;
    border-radius: 22px;
    background: var(--bg-white);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-soft);
    transition: 0.3s ease;
}
.blog-nav-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}
.blog-nav-card span {
    display: inline-block;
    margin-bottom: 12px;
    font-size: 14px;
    font-weight: 700;
    color: var(--orange);
}
.blog-nav-card h3 {
    font-size: 20px;
    line-height: 1.4;
    color: var(--text-dark);
}
.blog-nav-card.next {
    text-align: right;
}
@media (max-width: 768px) {
    .blog-navigation {
        grid-template-columns: 1fr;
    }
    .blog-nav-card.next {
        text-align: left;
    }
}

