/* =============================================
   Zafi DigiExpert - Main Stylesheet
   Version: 1.0 | Premium Agency Theme
   ============================================= */

/* ---- CSS Variables ---- */
:root {
    --primary: #1D4ED8;
    --dark: #0F172A;
    --accent: #2563EB;
    --white: #FFFFFF;
    --light: #F8FAFC;
    --text: #1E293B;
    --text-muted: #64748B;
    --border: #E2E8F0;
    --gradient: linear-gradient(135deg, #1D4ED8 0%, #2563EB 50%, #3B82F6 100%);
    --gradient-dark: linear-gradient(135deg, #0F172A 0%, #1E3A5F 100%);
    --shadow-sm: 0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
    --shadow: 0 4px 20px rgba(29,78,216,.12);
    --shadow-lg: 0 10px 40px rgba(29,78,216,.18);
    --shadow-xl: 0 20px 60px rgba(29,78,216,.22);
    --radius: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --transition: all .3s cubic-bezier(.4,0,.2,1);
    --font-main: 'Plus Jakarta Sans', sans-serif;
    --font-body: 'Inter', sans-serif;
}

/* ---- Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { 
    scroll-behavior: smooth; 
    font-size: 16px;
    overflow-x: clip; /* clip instead of hidden — preserves position:sticky */
}
body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
    overflow-y: scroll; /* always show vertical scrollbar to prevent layout shift */
}
section { 
    position: relative;
    overflow: clip; /* clip horizontal overflow without clipping scroll-triggered animations */
    overflow-clip-margin: 0px;
}
h1,h2,h3,h4,h5,h6 { font-family: var(--font-main); font-weight: 700; color: var(--dark); line-height: 1.25; }
a { color: var(--primary); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--accent); }
img { max-width: 100%; height: auto; }
/* section overflow handled above */
.container { max-width: 1200px; }

/* ---- Preloader — fast hide ---- */
#preloader {
    position: fixed; inset: 0; z-index: 99999;
    background: #0F172A;
    display: flex; align-items: center; justify-content: center;
    transition: opacity .4s ease, visibility .4s ease;
    overflow: hidden;
    will-change: opacity;
}
#preloader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }

/* Background animated grid */
.pre-grid {
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(29,78,216,.07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(29,78,216,.07) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: gridMove 8s linear infinite;
}
@keyframes gridMove {
    0%   { transform: translateY(0); }
    100% { transform: translateY(60px); }
}

/* Glow blobs */
#preloader::before {
    content: '';
    position: absolute;
    top: -120px; right: -120px;
    width: 400px; height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(29,78,216,.2) 0%, transparent 70%);
    pointer-events: none;
}
#preloader::after {
    content: '';
    position: absolute;
    bottom: -100px; left: -100px;
    width: 350px; height: 350px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(37,99,235,.15) 0%, transparent 70%);
    pointer-events: none;
}

/* Orbiting rings — all site-blue tones */
.pre-orbit {
    position: absolute;
    border-radius: 50%;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    border: 1px solid rgba(59,130,246,.15);
}
.pre-orbit-1 {
    width: 260px; height: 260px;
    border-color: rgba(29,78,216,.35);
    animation: orbitSpin 5s linear infinite;
}
.pre-orbit-1::before {
    content: '';
    position: absolute;
    width: 9px; height: 9px;
    border-radius: 50%;
    background: #3B82F6;
    top: -4px; left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 12px #3B82F6, 0 0 24px rgba(59,130,246,.6);
}
.pre-orbit-2 {
    width: 360px; height: 360px;
    border-color: rgba(37,99,235,.2);
    animation: orbitSpin 9s linear infinite reverse;
}
.pre-orbit-2::before {
    content: '';
    position: absolute;
    width: 6px; height: 6px;
    border-radius: 50%;
    background: #2563EB;
    bottom: -3px; left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 10px #2563EB, 0 0 20px rgba(37,99,235,.5);
}
.pre-orbit-3 {
    width: 460px; height: 460px;
    border-color: rgba(59,130,246,.1);
    animation: orbitSpin 14s linear infinite;
}
@keyframes orbitSpin {
    from { transform: translate(-50%,-50%) rotate(0deg); }
    to   { transform: translate(-50%,-50%) rotate(360deg); }
}

/* Center content */
.preloader-inner {
    position: relative;
    z-index: 2;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

/* Logo circle */
.pre-logo-wrap {
    position: relative;
    width: 90px; height: 90px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 4px;
}
.pre-logo-ring {
    position: absolute; inset: 0;
    border-radius: 50%;
    border: 2px solid transparent;
    border-top-color: #1D4ED8;
    border-right-color: #3B82F6;
    animation: ringRotate 1s linear infinite;
}
.pre-logo-ring::after {
    content: '';
    position: absolute; inset: 4px;
    border-radius: 50%;
    border: 1px solid rgba(59,130,246,.2);
}
@keyframes ringRotate {
    to { transform: rotate(360deg); }
}
.pre-logo-core {
    width: 70px; height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1D4ED8 0%, #2563EB 60%, #3B82F6 100%);
    display: flex; align-items: center; justify-content: center;
    box-shadow:
        0 0 0 6px rgba(29,78,216,.12),
        0 0 30px rgba(29,78,216,.5),
        0 0 60px rgba(29,78,216,.2);
    animation: corePulse 2.4s ease-in-out infinite;
}
@keyframes corePulse {
    0%,100% { box-shadow: 0 0 0 6px rgba(29,78,216,.12), 0 0 30px rgba(29,78,216,.5), 0 0 60px rgba(29,78,216,.2); }
    50%      { box-shadow: 0 0 0 10px rgba(29,78,216,.08), 0 0 45px rgba(37,99,235,.7), 0 0 80px rgba(59,130,246,.3); }
}
.pre-logo-z {
    font-family: var(--font-main);
    font-size: 1.9rem; font-weight: 900;
    color: #fff;
    line-height: 1;
    text-shadow: 0 2px 8px rgba(0,0,0,.3);
}

/* Brand name */
.pre-brand {
    font-family: var(--font-main);
    font-size: 1.75rem; font-weight: 800;
    letter-spacing: -.02em;
    animation: brandFade .8s ease .1s both;
}
@keyframes brandFade {
    from { opacity:0; transform: translateY(12px); }
    to   { opacity:1; transform: translateY(0); }
}
.pre-brand-zafi   { color: #ffffff; }
.pre-brand-digi   { color: #3B82F6; }
.pre-brand-expert { color: #93C5FD; }

/* Tagline */
.pre-tagline {
    font-size: .72rem;
    font-weight: 600;
    color: rgba(255,255,255,.35);
    letter-spacing: .14em;
    text-transform: uppercase;
    animation: brandFade .8s ease .25s both;
}

/* Progress bar */
.pre-progress-wrap {
    width: 200px; height: 2px;
    background: rgba(255,255,255,.06);
    border-radius: 2px;
    overflow: hidden;
    margin-top: 4px;
}
.pre-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #1D4ED8 0%, #2563EB 50%, #3B82F6 100%);
    border-radius: 2px;
    box-shadow: 0 0 8px rgba(59,130,246,.6);
    animation: progressFill 2.4s cubic-bezier(.4,0,.2,1) forwards;
}
@keyframes progressFill {
    0%   { width: 0%; }
    60%  { width: 70%; }
    100% { width: 100%; }
}

/* Loading dots */
.pre-loading-text {
    display: flex; gap: 7px; justify-content: center;
    margin-top: 2px;
}
.pre-loading-dot {
    width: 5px; height: 5px;
    border-radius: 50%;
    animation: dotPop 1.2s ease-in-out infinite;
}
.pre-loading-dot:nth-child(1) { background: #1D4ED8; animation-delay: 0s; }
.pre-loading-dot:nth-child(2) { background: #2563EB; animation-delay: .2s; }
.pre-loading-dot:nth-child(3) { background: #3B82F6; animation-delay: .4s; }
@keyframes dotPop {
    0%,80%,100% { transform: scale(.5); opacity: .3; }
    40%         { transform: scale(1.3); opacity: 1; }
}

/* Corner code decorations */
.pre-corner {
    position: absolute;
    font-family: 'Courier New', monospace;
    font-size: 1rem; font-weight: 700;
    color: rgba(59,130,246,.18);
    pointer-events: none;
    animation: cornerFloat 3s ease-in-out infinite alternate;
}
.pre-corner-tl { top: 32px; left: 40px; }
.pre-corner-br { bottom: 32px; right: 40px; animation-delay: 1.5s; }
@keyframes cornerFloat {
    from { transform: translateY(0);    opacity: .18; }
    to   { transform: translateY(-8px); opacity: .45; }
}

/* Legacy — kept for backward compat */
.brand-text { font-family: var(--font-main); font-size: 2rem; font-weight: 800; color: #fff; }
.brand-text span { color: #3B82F6; }
.loader-dots { display: flex; gap: 8px; justify-content: center; margin-top: 16px; }
.loader-dots span {
    width: 10px; height: 10px; border-radius: 50%; background: var(--accent);
    animation: dotBounce 1.2s infinite ease-in-out;
}
.loader-dots span:nth-child(2) { animation-delay: .2s; }
.loader-dots span:nth-child(3) { animation-delay: .4s; }
@keyframes dotBounce { 0%,80%,100% { transform: scale(0); opacity:.5; } 40% { transform: scale(1); opacity:1; } }

/* ---- Cookie Consent ---- */
.cookie-consent {
    position: fixed; bottom: 20px; left: 20px; right: 20px; z-index: 9999;
    background: var(--dark); color: #fff; border-radius: var(--radius);
    padding: 16px 20px; box-shadow: var(--shadow-xl);
    animation: slideUp .4s ease;
    max-width: 560px;
}
.cookie-inner { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.cookie-inner p { margin: 0; font-size: .9rem; flex: 1; }
.cookie-inner a { color: #60A5FA; }
.cookie-btns { display: flex; gap: 8px; }
@keyframes slideUp { from { transform: translateY(100px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }

/* ---- Top Bar ---- */
.top-bar {
    background: var(--dark);
    padding: 8px 0;
    font-size: .8rem;
    display: none !important;
}
.top-bar-info { display: flex; gap: 20px; color: #94A3B8; }
.top-bar-info span { display: flex; align-items: center; gap: 6px; }
.top-bar-info a { color: #94A3B8; }
.top-bar-info a:hover, .top-bar-info i { color: #60A5FA; }
.top-bar-right { display: flex; align-items: center; justify-content: flex-end; gap: 16px; }
.top-social a {
    display: inline-flex; align-items: center; justify-content: center;
    width: 28px; height: 28px; border-radius: 50%;
    background: rgba(255,255,255,.08); color: #94A3B8;
    font-size: .75rem; transition: var(--transition);
}
.top-social a:hover { background: var(--accent); color: #fff; transform: translateY(-2px); }
.top-cta { font-size: .78rem !important; padding: 4px 14px !important; border-radius: 6px !important; }

/* ---- Navbar ---- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1100;
    background: rgba(255,255,255,.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 2px 20px rgba(29,78,216,.08);
    border-bottom: 3px solid var(--primary);
    transition: background .3s ease, box-shadow .3s ease, border-color .3s ease;
}
/* Blend with Hero on Home Page */
.site-header.header-blend {
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: none;
    border-bottom-color: transparent;
}
.site-header.header-blend.scrolled {
    background: rgba(255,255,255,.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 4px 20px rgba(29,78,216,.05);
    border-bottom: 1px solid rgba(226,232,240,.8);
}
.header-blend .main-nav {
    border-bottom-color: transparent;
}
.header-blend.scrolled .main-nav {
    border-bottom-color: transparent;
}
.main-nav {
    position: relative;
    background: transparent;
    padding: 14px 0;
    border-bottom: 1px solid rgba(226,232,240,.6);
    transition: var(--transition);
}
.main-nav.scrolled {
    padding: 8px 0;
    border-bottom-color: transparent;
}
/* Push page content down so it doesn't hide behind fixed header */
body { padding-top: 87px; }
body.home-page { padding-top: 0 !important; }
body.home-page .hero-section { padding-top: 110px; }

/* Nav Tagline */
.navbar-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1px;
    line-height: 1;
}
@keyframes logoEnter {
    from {
        opacity: 0;
        transform: translateY(-15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.logo-img { 
    height: 48px; 
    width: auto;
    opacity: 0;
    animation: logoEnter 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.nav-tagline {
    display: flex;
    align-items: center;
    gap: 1px;
}
.nav-tagline-line {
    width: 16px;
    height: 1px;
    background: #1E293B;
    display: inline-block;
}
.nav-tagline-text {
    font-family: var(--font-main);
    font-size: .40rem;
    font-weight: 700;
    letter-spacing: .10em;
    color: #1E293B;
    white-space: nowrap;
    text-transform: uppercase;
}
.nav-tagline-highlight {
    color: var(--primary);
}

/* Logo */
.text-logo { display: flex; align-items: center; gap: 2px; }
.logo-zafi { font-family: var(--font-main); font-size: 1.5rem; font-weight: 800; color: var(--primary); line-height: 1; }
.logo-digi { font-family: var(--font-main); font-size: 1.5rem; font-weight: 800; color: var(--dark); line-height: 1; }
.logo-img:hover {
    transform: scale(1.05) rotate(-1.5deg);
}
@keyframes logoFloat {
    0%,100% { transform: translateY(0px); filter: drop-shadow(0 2px 8px rgba(29,78,216,0.15)); }
    50%      { transform: translateY(-3px); filter: drop-shadow(0 8px 20px rgba(29,78,216,0.28)); }
}

/* Nav Links */
.navbar-nav .nav-link {
    font-family: var(--font-main);
    font-weight: 600;
    font-size: .85rem;
    color: var(--text) !important;
    padding: 7px 10px !important;
    border-radius: 8px;
    transition: var(--transition);
    position: relative;
    display: inline-flex !important;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
}
.navbar-nav .nav-link i.fa-chevron-down {
    font-size: .65rem;
    transition: transform .3s;
    margin-top: 1px;
}
.mega-menu-parent:hover .nav-link i.fa-chevron-down { transform: rotate(180deg); }
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active { color: var(--primary) !important; background: rgba(29,78,216,.06); }
.navbar-nav .nav-link.active::after {
    content: ''; position: absolute; bottom: 4px; left: 50%; transform: translateX(-50%);
    width: 20px; height: 2px; background: var(--primary); border-radius: 2px;
}
/* Navbar collapse — keep items on same row */
.navbar-collapse { align-items: center !important; }
.navbar-collapse.show { align-items: flex-start !important; }
.navbar-nav { align-items: center !important; flex-wrap: nowrap !important; }

/* Mega Menu — must NOT be clipped by container overflow */
.mega-menu-parent { position: static; }
.mega-menu {
    position: fixed; /* use fixed instead of absolute to escape container clipping */
    left: 0; right: 0;
    top: auto;
    background: #fff;
    box-shadow: 0 20px 60px rgba(0,0,0,.12);
    border-top: 3px solid var(--primary);
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    padding: 32px 0;
    opacity: 0; visibility: hidden;
    transform: none;
    transition: opacity .2s ease, visibility .2s ease;
    z-index: 1100;
    pointer-events: none;
}
/* JS-controlled open state */
.mega-menu.is-open { opacity: 1; visibility: visible; pointer-events: auto; }
.mega-menu-inner { display: grid; grid-template-columns: repeat(4,1fr) 200px; gap: 24px; }
.mega-col h6 { font-size: .8rem; font-weight: 700; color: var(--primary); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 12px; display: flex; align-items: center; gap: 8px; }
.mega-col ul { list-style: none; padding: 0; }
.mega-col ul li a { font-size: .87rem; color: var(--text-muted); display: block; padding: 5px 0; transition: var(--transition); }
.mega-col ul li a:hover { color: var(--primary); padding-left: 8px; }
.mega-cta-box { background: var(--gradient); border-radius: var(--radius); padding: 24px 16px; text-align: center; color: #fff; }
.mega-cta-box h6 { color: #fff; font-size: 1rem; }
.mega-cta-box p { color: rgba(255,255,255,.8); font-size: .82rem; margin-bottom: 12px; }

/* Nav CTA Buttons */
.btn-whatsapp {
    background: #25D366; color: #fff !important;
    border: none; padding: 8px 16px; border-radius: 8px;
    font-size: .85rem; font-weight: 600;
    display: flex; align-items: center; gap: 6px;
    white-space: nowrap; flex-shrink: 0;
}
.btn-whatsapp:hover { background: #20ba58; color: #fff !important; transform: translateY(-2px); }
.btn-nav-cta {
    background: var(--gradient); color: #fff !important;
    border: none; padding: 8px 20px; border-radius: 8px;
    font-size: .85rem; font-weight: 600;
    box-shadow: 0 4px 15px rgba(29,78,216,.3);
}
.btn-nav-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(29,78,216,.4); }
.btn-get-quote {
    background: var(--primary); color: #fff !important;
    border: none; padding: 10px 22px; border-radius: 8px;
    font-size: .88rem; font-weight: 700;
    display: inline-flex; align-items: center; gap: 6px;
    box-shadow: 0 4px 16px rgba(29,78,216,.3);
    transition: all .3s; text-decoration: none;
    white-space: nowrap; flex-shrink: 0;
}
.btn-get-quote:hover {
    background: #1e40af; color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(29,78,216,.4);
}

/* Toggler */
.navbar-toggler { border: none; padding: 4px; background: none; box-shadow: none !important; }
.toggler-icon { display: flex; flex-direction: column; gap: 5px; cursor: pointer; }
.toggler-icon span {
    display: block; width: 25px; height: 2px;
    background: var(--dark); border-radius: 2px; transition: var(--transition);
}

/* ---- Buttons ---- */
.btn {
    font-family: var(--font-main); font-weight: 600; border-radius: 10px;
    padding: 12px 28px; font-size: .9rem; transition: var(--transition);
    display: inline-flex; align-items: center; gap: 8px; border: none;
}
.btn-primary {
    background: var(--gradient); color: #fff;
    box-shadow: 0 4px 15px rgba(29,78,216,.3);
}
.btn-primary:hover {
    color: #fff; transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(29,78,216,.45);
}
.btn-outline-primary {
    border: 2px solid var(--primary); color: var(--primary); background: transparent;
}
.btn-outline-primary:hover { background: var(--primary); color: #fff; transform: translateY(-3px); }
.btn-white {
    background: #fff; color: var(--primary);
    box-shadow: 0 4px 20px rgba(0,0,0,.15);
}
.btn-white:hover { background: var(--light); transform: translateY(-3px); color: var(--primary); }
.btn-lg { padding: 16px 36px; font-size: 1rem; border-radius: 12px; }
.btn-sm { padding: 8px 18px; font-size: .82rem; border-radius: 8px; }

/* ---- Section Styles ---- */
.section-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(29,78,216,.08); color: var(--primary);
    border: 1px solid rgba(29,78,216,.15);
    padding: 6px 16px; border-radius: 50px;
    font-size: .82rem; font-weight: 600; text-transform: uppercase; letter-spacing: .08em;
    margin-bottom: 16px;
}
.section-badge i { font-size: .75rem; }
.section-title { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 800; margin-bottom: 16px; }
.section-title span { color: var(--primary); position: relative; }
.section-title span::after {
    content: ''; position: absolute; bottom: 2px; left: 0; right: 0; height: 3px;
    background: var(--gradient); border-radius: 2px; opacity: .4;
}
.section-subtitle { font-size: 1.05rem; color: var(--text-muted); max-width: 600px; }
.section-header { margin-bottom: 56px; }
.section-header.text-center .section-subtitle { margin: 0 auto; }

/* Section padding */
.py-section { padding: 100px 0; }
.py-section-sm { padding: 60px 0; }

/* Ensure consecutive sections never visually collapse/overlap */
.py-section + .py-section { border-top: 1px solid transparent; }
.py-section.bg-light-blue + .py-section.bg-light-blue { border-top: 1px solid var(--border); }

.bg-light-blue { background: var(--light); }
.bg-dark-section { background: var(--dark); }

/* ---- Hero Section ---- */
/* ============================================================
   HERO SECTION — Clean White/Blue (matches reference design)
   ============================================================ */
.hero-section {
    background: linear-gradient(135deg, #F0F6FF 0%, #FFFFFF 65%, #FFFFFF 100%);
    padding: 0px 0 0px;
    position: relative;
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    align-items: center;
}
.hero-section::before {
    content: '';
    position: absolute;
    top: -120px; right: -120px;
    width: 500px; height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(29,78,216,.08) 0%, transparent 70%);
    pointer-events: none;
}
.hero-section::after {
    content: '';
    position: absolute;
    bottom: -80px; left: -80px;
    width: 350px; height: 350px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(124,58,237,.06) 0%, transparent 70%);
    pointer-events: none;
}

/* Left */
.hero-label {
    display: inline-flex; align-items: center; gap: 8px;
    color: var(--primary); font-size: .82rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: .1em;
    margin-bottom: 20px;
}
.hero-label-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--primary);
    display: inline-block;
    animation: pulse 1.8s ease-in-out infinite;
}
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1);} 50%{opacity:.5;transform:scale(1.4);} }

.hero-title {
    font-size: clamp(1.6rem, 3.2vw, 2.4rem);
    font-weight: 900; color: var(--dark); line-height: 1.15;
    margin-bottom: 22px;
    letter-spacing: -.02em;
}
.hero-title-blue {
    color: var(--primary);
}
.hero-subtitle {
    font-size: 1rem; color: #475569;
    max-width: 520px; margin-bottom: 36px; line-height: 1.8;
}
.hero-actions {
    display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 44px;
}
.btn-hero-primary {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--primary); color: #fff;
    padding: 14px 28px; border-radius: 8px;
    font-size: .95rem; font-weight: 700;
    text-decoration: none; transition: all .3s;
    box-shadow: 0 8px 24px rgba(29,78,216,.28);
}
.btn-hero-primary:hover {
    background: var(--accent); color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(29,78,216,.38);
}
.btn-hero-outline {
    display: inline-flex; align-items: center; gap: 8px;
    background: #fff; color: var(--primary);
    padding: 13px 26px; border-radius: 8px;
    font-size: .95rem; font-weight: 700;
    text-decoration: none; transition: all .3s;
    border: 2px solid #E2E8F0;
    box-shadow: 0 4px 12px rgba(0,0,0,.06);
}
.btn-hero-outline:hover {
    border-color: var(--primary); color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(29,78,216,.12);
}

/* Trust Badges */
.hero-trust-row {
    margin-top: 50px;
    margin-bottom: 25px;
    display: flex;
    justify-content: center;
    width: 100%;
    z-index: 2;
    position: relative;
}
.hero-trust {
    display: flex; 
    align-items: center; 
    justify-content: center;
    gap: 32px; 
    flex-wrap: wrap;
    background: #ffffff;
    padding: 16px 36px;
    border-radius: 100px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.03), 0 1px 3px rgba(15, 23, 42, 0.01);
    border: 1px solid rgba(226, 232, 240, 0.7);
}
.hero-trust-item {
    display: flex; align-items: center; gap: 10px;
}
.hero-trust-icon {
    width: 40px; height: 40px; border-radius: 10px;
    background: #DBEAFE; color: var(--primary);
    display: flex; align-items: center; justify-content: center;
    font-size: .9rem;
}
.hero-trust-avatars {
    display: flex;
}
.hero-avatar {
    width: 28px; height: 28px; border-radius: 50%;
    border: 2px solid #fff; color: #fff;
    font-size: .65rem; font-weight: 800;
    display: flex; align-items: center; justify-content: center;
    margin-left: -8px;
}
.hero-avatar:first-child { margin-left: 0; }
.hero-trust-title { font-size: .88rem; font-weight: 700; color: var(--dark); }
.hero-trust-sub { font-size: .75rem; color: var(--text-muted); }
.hero-trust-divider {
    width: 1px; height: 36px;
    background: #CBD5E1; flex-shrink: 0;
}

/* Right Visual */
.hero-right { 
    padding-left: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-visual-showcase {
    position: relative;
    max-width: 680px;
    width: 100%;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.hero-visual-showcase:hover {
    transform: translateY(-8px) scale(1.02);
}
.hero-showcase-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}
.typed-cursor {
    opacity: 1;
    animation: blink 0.7s infinite;
    color: var(--primary);
    margin-left: 4px;
    font-weight: 300;
}
@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}



/* ---- Services Section ---- */
.service-card {
    background: #fff; border: 1px solid var(--border);
    border-radius: var(--radius-lg); padding: 32px;
    transition: var(--transition); height: 100%; position: relative; overflow: hidden;
}
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    overflow: visible;
}
.service-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: var(--gradient); transform: scaleX(0); transition: var(--transition);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(29,78,216,.15);
}
.service-icon {
    width: 60px; height: 60px; border-radius: var(--radius);
    background: linear-gradient(135deg, rgba(29,78,216,.1), rgba(37,99,235,.15));
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem; color: var(--primary); margin-bottom: 20px;
    transition: var(--transition);
}
.service-card:hover .service-icon { background: var(--gradient); color: #fff; transform: scale(1.1) rotate(-5deg); }
.service-card-cat {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: inline-block;
    background: rgba(29, 78, 216, 0.06);
    padding: 4px 12px;
    border-radius: 20px;
}
.service-card h4 { font-size: 1.15rem; margin-bottom: 12px; font-weight: 700; }
.service-card p { color: var(--text-muted); font-size: .9rem; margin-bottom: 20px; line-height: 1.5; }
.service-link { color: var(--primary); font-size: .88rem; font-weight: 600; display: flex; align-items: center; gap: 6px; text-decoration: none; }
.service-link i { transition: var(--transition); }
.service-card:hover .service-link i { transform: translateX(4px); }

/* ---- Services Grid & Cards (Modern Layout) ---- */
.services-grid-wrapper {
    background: var(--light);
    position: relative;
}

/* Category Badge */
.services-intro-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(29, 78, 216, 0.05);
    border: 1px solid rgba(29, 78, 216, 0.15);
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 700;
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 24px;
    box-shadow: 0 4px 12px rgba(29, 78, 216, 0.03);
}

/* Card Glow Backdrop */
.service-card-wrapper {
    position: relative;
    z-index: 1;
}
.service-card-glow {
    position: absolute;
    inset: -10px;
    background: linear-gradient(135deg, rgba(29, 78, 216, 0.12) 0%, rgba(124, 58, 237, 0.12) 100%);
    border-radius: 24px;
    filter: blur(16px);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
    pointer-events: none;
}
.service-card-wrapper:hover .service-card-glow {
    opacity: 1;
}

/* Modern Card Container */
.modern-service-card {
    background: #ffffff;
    border: 1px solid rgba(29, 78, 216, 0.08);
    border-radius: 24px;
    padding: 32px;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.02);
}
.service-card-wrapper:hover .modern-service-card {
    transform: translateY(-6px);
    border-color: rgba(29, 78, 216, 0.25);
    box-shadow: 0 20px 40px rgba(29, 78, 216, 0.06);
}

/* Card Header Box */
.service-card-header-box {
    background: linear-gradient(135deg, rgba(29, 78, 216, 0.03) 0%, rgba(124, 58, 237, 0.04) 100%);
    border: 1px solid rgba(29, 78, 216, 0.06);
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}
.service-card-wrapper:hover .service-card-header-box {
    background: linear-gradient(135deg, rgba(29, 78, 216, 0.06) 0%, rgba(124, 58, 237, 0.08) 100%);
    border-color: rgba(29, 78, 216, 0.15);
}

.service-card-icon {
    width: 54px;
    height: 54px;
    background: #ffffff;
    border: 1px solid rgba(29, 78, 216, 0.1);
    border-radius: 12px;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin: 0 auto 14px auto;
    box-shadow: 0 4px 12px rgba(29, 78, 216, 0.04);
    transition: all 0.3s ease;
}
.service-card-wrapper:hover .service-card-icon {
    background: var(--gradient);
    color: #ffffff;
    transform: scale(1.05) rotate(-5deg);
    box-shadow: 0 8px 20px rgba(29, 78, 216, 0.2);
    border-color: transparent;
}

.service-card-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0;
}

.service-card-desc {
    color: var(--text-muted);
    font-size: 0.88rem;
    line-height: 1.55;
    margin-bottom: 20px;
}

/* Features List & More badge */
.service-card-features {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.service-card-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    color: #475569;
    font-weight: 550;
}
.service-card-features li i {
    color: #10B981;
    font-size: 0.85rem;
}
.service-features-more {
    font-size: 0.8rem;
    color: var(--primary);
    font-weight: 700;
    display: inline-block;
    background: rgba(29, 78, 216, 0.05);
    padding: 2px 10px;
    border-radius: 12px;
}

/* Card Footer action */
.service-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid rgba(29, 78, 216, 0.08);
}
.service-explore-text {
    font-size: 0.85rem;
    font-weight: 700;
    color: #475569;
    transition: color 0.3s ease;
}
.service-card-wrapper:hover .service-explore-text {
    color: var(--primary);
}
.service-arrow-btn {
    width: 34px;
    height: 34px;
    background: #F1F5F9;
    border: none;
    border-radius: 8px;
    color: #475569;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    transition: all 0.3s ease;
}
.service-card-wrapper:hover .service-arrow-btn {
    background: var(--gradient);
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(29, 78, 216, 0.25);
    transform: translateX(2px);
}

/* Services Category Filter Bar */
.services-filter-bar .filter-btn {
    font-size: 0.88rem;
    font-weight: 600;
    padding: 10px 22px;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid transparent;
}
.services-filter-bar .filter-btn.active {
    background: var(--gradient) !important;
    color: #fff !important;
    box-shadow: 0 8px 20px rgba(29, 78, 216, 0.25);
    border-color: var(--primary);
}
.services-filter-bar .filter-btn:not(.active):hover {
    background: var(--border) !important;
    color: var(--dark);
    transform: translateY(-2px);
}

/* ---- Counters ---- */
.counter-section { 
    padding: 24px 0; 
    background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%); 
    position: relative; 
    overflow: hidden; 
}
.counter-section::before {
    content: ''; position: absolute; inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www/w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.15;
}
.counter-item { 
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
    align-items: center;
    gap: 1px 12px;
    text-align: left;
    position: relative; 
    z-index: 1; 
    transition: all 0.3s ease;
    padding: 8px 12px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
}
.counter-item:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.12);
}
.counter-icon { 
    grid-row: 1 / span 2;
    grid-column: 1;
    width: 38px;
    height: 38px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem; 
    color: #fff; 
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}
.counter-item:hover .counter-icon {
    background: #fff;
    color: var(--primary);
}
.counter-num { 
    grid-row: 1;
    grid-column: 2;
    font-size: 1.35rem; 
    font-weight: 800; 
    color: #fff; 
    line-height: 1.1; 
}
.counter-label { 
    grid-row: 2;
    grid-column: 2;
    font-size: .72rem; 
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8); 
    text-transform: uppercase; 
    letter-spacing: .06em; 
}
.counter-divider { width: 1px; background: rgba(255, 255, 255, .2); }

/* ---- Portfolio ---- */
.portfolio-filter { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; margin-bottom: 40px; }
.filter-btn {
    padding: 8px 20px; border-radius: 50px;
    border: 2px solid var(--border); background: transparent;
    color: var(--text-muted); font-size: .85rem; font-weight: 600;
    cursor: pointer; transition: var(--transition); font-family: var(--font-main);
}
.filter-btn:hover, .filter-btn.active {
    background: var(--primary); border-color: var(--primary); color: #fff;
    box-shadow: 0 4px 15px rgba(29,78,216,.3);
}
.portfolio-card {
    border-radius: var(--radius-lg); overflow: hidden;
    box-shadow: var(--shadow-sm); transition: var(--transition);
    background: #fff; position: relative; height: 100%;
}
.portfolio-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-xl); }
.portfolio-img { position: relative; overflow: hidden; aspect-ratio: 16/10; }
.portfolio-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.portfolio-card:hover .portfolio-img img { transform: scale(1.08); }
.portfolio-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(15,23,42,.9) 0%, rgba(15,23,42,.4) 50%, transparent 100%);
    opacity: 0; transition: var(--transition); display: flex; align-items: flex-end; padding: 20px;
}
.portfolio-card:hover .portfolio-overlay { opacity: 1; }
.portfolio-overlay-btns { display: flex; gap: 10px; }
.portfolio-overlay-btns a {
    width: 40px; height: 40px; border-radius: 50%;
    background: rgba(255,255,255,.15); backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,.25); color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-size: .9rem; transition: var(--transition);
    transform: translateY(20px); opacity: 0;
}
.portfolio-card:hover .portfolio-overlay-btns a { transform: translateY(0); opacity: 1; }
.portfolio-card:hover .portfolio-overlay-btns a:nth-child(2) { transition-delay: .1s; }
.portfolio-overlay-btns a:hover { background: var(--primary); border-color: var(--primary); }
.portfolio-info { padding: 20px 24px; }
.portfolio-cat { font-size: .78rem; font-weight: 600; color: var(--primary); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 6px; }
.portfolio-info h4 { font-size: 1.05rem; margin-bottom: 8px; }
.portfolio-tags { display: flex; gap: 6px; flex-wrap: wrap; }
.portfolio-tag { background: var(--light); color: var(--text-muted); font-size: .75rem; padding: 3px 10px; border-radius: 50px; }

/* ---- Testimonials ---- */
.testimonials-section {
    position: relative;
    z-index: 1;
    overflow: hidden;
}
.testimonials-decorations {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: -1;
}
.testimonials-decorations .decor-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
}
.testimonials-decorations .blob-1 {
    width: 300px;
    height: 300px;
    background: rgba(59, 130, 246, 0.06);
    top: 10%;
    left: -50px;
}
.testimonials-decorations .blob-2 {
    width: 350px;
    height: 350px;
    background: rgba(139, 92, 246, 0.05);
    bottom: 10%;
    right: -50px;
}

.testimonials-slider-container {
    position: relative;
    padding: 0;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(226, 232, 240, 0.7);
    border-radius: 20px;
    padding: 36px 32px 32px 32px;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.015), 0 1px 3px rgba(15, 23, 42, 0.01);
}
.testimonial-card:hover {
    box-shadow: 0 20px 40px rgba(29, 78, 216, 0.05), 0 1px 10px rgba(29, 78, 216, 0.02);
    transform: translateY(-6px);
    border-color: rgba(29, 78, 216, 0.18);
}
.testimonial-quote-icon {
    position: absolute;
    top: 24px;
    right: 28px;
    font-size: 2.6rem;
    color: var(--primary);
    opacity: 0.06;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s;
    pointer-events: none;
}
.testimonial-card:hover .testimonial-quote-icon {
    transform: rotate(-10deg) scale(1.1);
    opacity: 0.09;
}
.testimonial-stars {
    color: #F59E0B;
    font-size: 0.9rem;
    margin-bottom: 18px;
    display: flex;
    gap: 3px;
}
.testimonial-card blockquote {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.75;
    margin-bottom: 24px;
    font-style: normal;
    font-weight: 400;
    flex-grow: 1;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
    border-top: 1px dashed rgba(226, 232, 240, 0.6);
    padding-top: 20px;
    margin-top: auto;
}
.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #fff;
    box-shadow: 0 4px 10px rgba(15, 23, 42, 0.06);
}
.testimonial-avatar-placeholder {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    border: 2px solid #fff;
    box-shadow: 0 4px 10px rgba(15, 23, 42, 0.06);
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}
.testimonial-name {
    font-weight: 700;
    font-size: 0.98rem;
    color: var(--dark);
    line-height: 1.2;
    margin-bottom: 4px;
}
.testimonial-role {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 500;
    line-height: 1.2;
}
.testimonial-country {
    margin-top: 6px;
}
.country-flag-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(29, 78, 216, 0.04);
    border: 1px solid rgba(29, 78, 216, 0.06);
    padding: 3px 8px;
    border-radius: 50px;
    color: var(--primary);
    font-size: 0.7rem;
    font-weight: 600;
    line-height: 1;
    transition: var(--transition);
}
.flag-icon-span {
    font-size: 0.8rem;
    line-height: 1;
    display: inline-block;
}
.country-name-span {
    color: var(--text-muted);
    font-weight: 500;
}
.testimonial-card:hover .country-flag-badge {
    background: rgba(29, 78, 216, 0.08);
    border-color: rgba(29, 78, 216, 0.12);
}
.testimonial-card:hover .country-name-span {
    color: var(--primary);
}

/* Nav buttons styling */
.testimonials-slider-container .swiper-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%) scale(1);
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(226, 232, 240, 0.8);
    color: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(15, 23, 42, 0.05);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.3s, border-color 0.3s, color 0.3s;
}
.testimonials-slider-container .swiper-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
    box-shadow: var(--shadow);
    transform: translateY(-50%) scale(1.08);
}
.testimonials-slider-container .swiper-btn-prev {
    left: -23px;
}
.testimonials-slider-container .swiper-btn-next {
    right: -23px;
}

@media (max-width: 1199px) {
    .testimonials-slider-container .swiper-btn {
        display: none !important;
    }
}

/* Custom Swiper Pagination */
.testimonials-swiper .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: var(--text-muted);
    opacity: 0.25;
    border-radius: 50px;
    margin: 0 5px !important;
    transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.3s, opacity 0.3s;
}
.testimonials-swiper .swiper-pagination-bullet-active {
    width: 24px;
    background: var(--gradient) !important;
    opacity: 1;
}


/* ---- Process Steps ---- */
.process-section { 
    background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%); 
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}
.process-section::before {
    content: ''; position: absolute; inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.12;
}
.process-section .section-title {
    color: #fff;
}
.process-section .section-title span {
    color: #93C5FD;
}
.process-section .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
}
.process-section .section-badge {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.25);
    color: #fff;
}
.process-steps { 
    position: relative; 
}
.process-steps::before {
    display: none;
}
.process-step { 
    text-align: left; 
    position: relative; 
    background: #fff;
    border: 1px solid rgba(226, 232, 240, 0.8);
    border-radius: 16px;
    padding: 24px 20px;
    height: 100%;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.02);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}
.process-step:hover {
    transform: translateY(-8px);
    border-color: rgba(29, 78, 216, 0.2);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.06);
}
.process-step::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 4px;
    background: var(--gradient);
    border-radius: 0 0 16px 16px;
    transform: scaleX(0);
    transition: transform 0.4s ease;
}
.process-step:hover::after {
    transform: scaleX(1);
}
.process-num {
    position: absolute;
    top: 15px; right: 15px;
    font-size: 2.3rem;
    font-weight: 900;
    color: rgba(29, 78, 216, 0.16);
    margin: 0;
    box-shadow: none;
    background: none;
    width: auto;
    height: auto;
    line-height: 1;
    transition: all 0.4s ease;
}
.process-step:hover .process-num {
    color: rgba(29, 78, 216, 0.32);
    transform: scale(1.1);
}
.process-step-icon { 
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: rgba(29, 78, 216, 0.05);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.20rem; 
    margin-bottom: 20px; 
    transition: all 0.5s ease;
}
.process-step:hover .process-step-icon {
    background: var(--primary);
    color: #fff;
    transform: rotate(360deg);
}
.process-step h5 { 
    font-size: 0.98rem; 
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 10px; 
    line-height: 1.3;
}
.process-step p { 
    font-size: .80rem; 
    color: var(--text-muted); 
    line-height: 1.5;
    margin: 0;
}

/* ---- Technologies ---- */
.tech-grid { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.tech-item {
    display: flex; flex-direction: column; align-items: center; gap: 8px;
    background: #fff; border: 1px solid var(--border);
    border-radius: var(--radius); padding: 16px 20px;
    min-width: 100px; transition: var(--transition); cursor: default;
}
.tech-item:hover { border-color: var(--primary); box-shadow: var(--shadow); transform: translateY(-4px); }
.tech-item img { width: 36px; height: 36px; object-fit: contain; transition: transform .3s; }
.tech-item:hover img { transform: scale(1.1); }
.tech-item span { font-size: .78rem; font-weight: 600; color: var(--text-muted); }
.tech-tabs .nav-tabs { border: none; gap: 8px; justify-content: center; flex-wrap: wrap; margin-bottom: 32px; }
.tech-tabs .nav-link {
    border: 2px solid var(--border) !important; border-radius: 50px !important;
    color: var(--text-muted); font-size: .85rem; font-weight: 600;
    padding: 8px 20px; background: transparent; transition: var(--transition);
}
.tech-tabs .nav-link.active, .tech-tabs .nav-link:hover {
    background: var(--primary) !important; border-color: var(--primary) !important; color: #fff;
}

/* ---- FAQ ---- */
.faq-accordion .accordion-item {
    border: 1px solid var(--border); border-radius: var(--radius) !important;
    margin-bottom: 12px; overflow: hidden;
}
.faq-accordion .accordion-button {
    font-family: var(--font-main); font-weight: 600; font-size: .95rem;
    color: var(--dark); background: #fff;
    padding: 20px 24px;
}
.faq-accordion .accordion-button:not(.collapsed) { color: var(--primary); background: rgba(29,78,216,.04); box-shadow: none; }
.faq-accordion .accordion-button::after { filter: none; }
.faq-accordion .accordion-button:not(.collapsed)::after { filter: invert(27%) sepia(90%) saturate(1000%) hue-rotate(214deg); }
.faq-accordion .accordion-body { padding: 0 24px 20px; color: var(--text-muted); font-size: .9rem; }

/* ---- Blog Cards ---- */
.blog-card {
    background: #fff; border: 1px solid var(--border);
    border-radius: var(--radius-lg); overflow: hidden;
    transition: var(--transition); height: 100%;
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); }
.blog-img { aspect-ratio: 16/9; overflow: hidden; background: #f8f9fa; display: flex; align-items: center; justify-content: center; }
.blog-img img { width: 100%; height: 100%; object-fit: contain; transition: transform .5s ease; }
.blog-card:hover .blog-img img { transform: scale(1.06); }
.blog-body { padding: 24px; }
.blog-cat { font-size: .75rem; font-weight: 700; color: var(--primary); text-transform: uppercase; letter-spacing: .06em; }
.blog-body h4 { font-size: 1.05rem; margin: 10px 0; }
.blog-body h4 a { color: var(--dark); }
.blog-body h4 a:hover { color: var(--primary); }
.blog-body p { font-size: .88rem; color: var(--text-muted); margin-bottom: 16px; }
.blog-meta { display: flex; gap: 16px; font-size: .78rem; color: var(--text-muted); }
.blog-meta span { display: flex; align-items: center; gap: 4px; }

/* ---- CTA Section ---- */
.cta-section {
    background: linear-gradient(135deg, var(--dark) 0%, var(--primary) 100%);
    padding: 100px 0; position: relative; overflow: hidden;
}

/* ---- Clients Marquee Section ---- */
.clients-section {
    background: #fff;
    padding: 80px 0;
    overflow: hidden;
}
.clients-marquee-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    /* fade edges */
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}
.clients-marquee-track {
    display: flex;
    align-items: center;
    gap: 24px;
    width: max-content;
    animation: marqueeScroll 15s linear infinite;
}
.clients-marquee-track:hover { animation-play-state: paused; }
@keyframes marqueeScroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-33.333%); }
}
.client-logo-item {
    flex-shrink: 0;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 20px 32px;
    height: 90px;
    min-width: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 12px rgba(0,0,0,.04);
    transition: all .3s ease;
}
.client-logo-item:hover {
    border-color: rgba(29,78,216,.25);
    box-shadow: 0 8px 30px rgba(29,78,216,.1);
    transform: translateY(-3px);
}
.client-logo-item img {
    max-height: 50px;
    max-width: 130px;
    object-fit: contain;
    filter: grayscale(0%) opacity(1);
    transition: all .3s ease;
}
.client-logo-item:hover img {
    filter: grayscale(100%) opacity(.5);
}
.client-logo-item a {
    display: flex; align-items: center; justify-content: center;
}
.client-name-badge {
    font-size: .82rem;
    font-weight: 700;
    color: var(--text-muted);
    text-align: center;
    transition: color .3s;
}
.client-logo-item:hover .client-name-badge { color: var(--primary); }
.cta-section::before {
    content: ''; position: absolute; inset: 0;
    background-image: radial-gradient(circle at 20% 50%, rgba(59,130,246,.15) 0%, transparent 60%),
                      radial-gradient(circle at 80% 50%, rgba(99,102,241,.15) 0%, transparent 60%);
}
.cta-section .section-title { color: #fff; }
.cta-section .section-subtitle { color: rgba(255,255,255,.75); max-width: none; }

/* ---- Contact ---- */
.contact-info-card {
    background: #fff; border: 1px solid var(--border);
    border-radius: var(--radius-lg); padding: 28px;
    display: flex; gap: 16px; align-items: flex-start;
    transition: var(--transition);
}
.contact-info-card:hover { box-shadow: var(--shadow); transform: translateX(6px); }
.contact-info-icon {
    width: 52px; height: 52px; border-radius: var(--radius);
    background: linear-gradient(135deg, rgba(29,78,216,.1), rgba(37,99,235,.15));
    color: var(--primary); display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem; flex-shrink: 0;
}
.contact-info-text h6 { font-size: .85rem; color: var(--text-muted); margin-bottom: 4px; }
.contact-info-text strong { color: var(--dark); font-size: .95rem; }
.contact-form-box {
    background: #fff; border: 1px solid var(--border);
    border-radius: var(--radius-xl); padding: 40px;
    box-shadow: var(--shadow);
}
.form-label { font-weight: 600; font-size: .88rem; color: var(--dark); margin-bottom: 6px; }
.form-control, .form-select {
    border: 2px solid var(--border); border-radius: 10px;
    padding: 12px 16px; font-size: .9rem; color: var(--text);
    transition: var(--transition); background: var(--light);
}
.form-control:focus, .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(29,78,216,.1);
    background: #fff;
}
.map-box { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
.map-box iframe { width: 100%; height: 400px; border: none; }

/* ---- Team ---- */
.team-card {
    background: #fff; border-radius: var(--radius-lg);
    overflow: hidden; transition: var(--transition);
    box-shadow: var(--shadow-sm); text-align: center;
    height: 100%; display: flex; flex-direction: column;
}
.team-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-xl); }
.team-img { aspect-ratio: 1; overflow: hidden; position: relative; flex-shrink: 0; }
.team-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.team-card:hover .team-img img { transform: scale(1.08); }
.team-social-overlay {
    position: absolute; inset: 0; background: rgba(29,78,216,.8);
    display: flex; align-items: center; justify-content: center; gap: 12px;
    opacity: 0; transition: var(--transition);
}
.team-card:hover .team-social-overlay { opacity: 1; }
.team-social-overlay a {
    width: 38px; height: 38px; border-radius: 50%;
    background: rgba(255,255,255,.2); border: 1px solid rgba(255,255,255,.4);
    color: #fff; display: flex; align-items: center; justify-content: center;
    font-size: .9rem; transition: var(--transition);
    transform: scale(.7);
}
.team-card:hover .team-social-overlay a { transform: scale(1); }
.team-social-overlay a:hover { background: #fff; color: var(--primary); }
.team-info { padding: 16px 12px; flex: 1; display: flex; flex-direction: column; justify-content: center; }
.team-info h5 { font-size: .95rem; margin-bottom: 4px; line-height: 1.3; }
.team-info span { font-size: .78rem; color: var(--primary); font-weight: 600; }

/* ---- Newsletter ---- */
.newsletter-strip {
    background: var(--dark); padding: 60px 0;
    position: relative; overflow: hidden;
}
.newsletter-strip::before {
    content: ''; position: absolute; right: -100px; top: -100px;
    width: 400px; height: 400px; border-radius: 50%;
    background: radial-gradient(circle, rgba(29,78,216,.2) 0%, transparent 70%);
}
.newsletter-strip h4 { font-size: 1.5rem; color: #fff; margin-bottom: 8px; }
.newsletter-strip p { color: rgba(255,255,255,.65); font-size: .9rem; }
.newsletter-form .form-control { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.2); color: #fff; }
.newsletter-form .form-control::placeholder { color: rgba(255,255,255,.4); }
.newsletter-form .form-control:focus { background: rgba(255,255,255,.15); border-color: rgba(255,255,255,.5); box-shadow: none; }

/* ---- Footer ---- */
.footer-main { background: #0A0F1E; padding: 80px 0 40px; }
.footer-widget { }
.footer-logo { font-family: var(--font-main); font-size: 1.6rem; font-weight: 800; }
.footer-logo-img { height: 38px; width: auto; display: block; }
.footer-desc { color: #94A3B8; font-size: .88rem; line-height: 1.7; margin-bottom: 16px; }
.footer-badges { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 16px; }
.badge-item { background: rgba(29,78,216,.15); color: #60A5FA; padding: 4px 12px; border-radius: 50px; font-size: .75rem; font-weight: 600; }
.footer-social { display: flex; gap: 8px; margin-top: 4px; }
.footer-social a {
    width: 36px; height: 36px; border-radius: 50%;
    background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.1);
    color: #94A3B8; display: flex; align-items: center; justify-content: center;
    font-size: .85rem; transition: var(--transition);
}
.footer-social a:hover { background: var(--primary); border-color: var(--primary); color: #fff; transform: translateY(-3px); }
.footer-title { font-size: .95rem; font-weight: 700; color: #fff; margin-bottom: 20px; position: relative; padding-bottom: 12px; }
.footer-title::after { content: ''; position: absolute; bottom: 0; left: 0; width: 30px; height: 2px; background: var(--primary); border-radius: 2px; }
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { color: #94A3B8; font-size: .88rem; transition: var(--transition); display: flex; align-items: center; gap: 6px; }
.footer-links a:hover { color: #60A5FA; padding-left: 6px; }
.footer-contact { display: flex; flex-direction: column; gap: 16px; }
.footer-contact .contact-item { display: flex; gap: 12px; align-items: flex-start; }
.footer-contact .contact-icon { width: 36px; height: 36px; border-radius: 8px; background: rgba(29,78,216,.15); color: #60A5FA; display: flex; align-items: center; justify-content: center; font-size: .85rem; flex-shrink: 0; }
.footer-contact .contact-text strong { display: block; color: #e2e8f0; font-size: .82rem; margin-bottom: 2px; }
.footer-contact .contact-text span,
.footer-contact .contact-text a { color: #94A3B8; font-size: .88rem; }
.footer-contact .contact-text a:hover { color: #60A5FA; }
.footer-hours { color: #94A3B8; font-size: .85rem; }
.footer-hours strong { color: #e2e8f0; font-size: .85rem; display: flex; align-items: center; gap: 6px; margin-bottom: 4px; }
.footer-hours i { color: var(--primary); }
.footer-bottom { background: #050810; padding: 20px 0; border-top: 1px solid rgba(255,255,255,.05); }
.footer-bottom p { color: #64748B; font-size: .85rem; margin: 0; }
.footer-bottom a { color: #94A3B8; }
.footer-bottom a:hover { color: #60A5FA; }

/* ---- WhatsApp Float ---- */
.whatsapp-float {
    position: fixed; bottom: 90px; right: 24px; z-index: 9000;
    width: 56px; height: 56px; border-radius: 50%;
    background: #25D366; color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.6rem; box-shadow: 0 4px 20px rgba(37,211,102,.4);
    animation: waPulse 2s infinite;
    transition: var(--transition);
}
.whatsapp-float:hover { color: #fff; transform: scale(1.15); box-shadow: 0 8px 30px rgba(37,211,102,.6); }
.whatsapp-tooltip {
    position: absolute; right: 66px; background: #333; color: #fff;
    padding: 4px 12px; border-radius: 6px; font-size: .78rem; font-weight: 600;
    white-space: nowrap; opacity: 0; transition: var(--transition);
}
.whatsapp-tooltip::after { content: ''; position: absolute; right: -6px; top: 50%; transform: translateY(-50%); border: 6px solid transparent; border-left-color: #333; }
.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; }
@keyframes waPulse { 0%,100%{box-shadow:0 4px 20px rgba(37,211,102,.4),0 0 0 0 rgba(37,211,102,.3);} 50%{box-shadow:0 4px 20px rgba(37,211,102,.4),0  0 0 12px rgba(37,211,102,0);} }

/* ---- Back to Top ---- */
.back-to-top {
    position: fixed; bottom: 24px; right: 24px; z-index: 8999;
    width: 44px; height: 44px; border-radius: 50%;
    background: var(--gradient); color: #fff; border: none;
    display: flex; align-items: center; justify-content: center;
    font-size: .9rem; box-shadow: var(--shadow);
    opacity: 0; visibility: hidden; transition: var(--transition);
    cursor: pointer;
}
.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

/* ---- Breadcrumb ---- */
.page-hero {
    background: linear-gradient(135deg, var(--dark) 0%, var(--primary) 100%);
    padding: 80px 0 60px; position: relative; overflow: hidden;
}
.page-hero::before {
    content: ''; position: absolute; inset: 0;
    background-image: radial-gradient(circle at 70% 50%, rgba(59,130,246,.15) 0%, transparent 60%);
}
.page-hero h1 { font-size: clamp(2rem, 4vw, 3rem); color: #fff; margin-bottom: 12px; }
.page-hero .breadcrumb { background: none; margin: 0; padding: 0; }
.page-hero .breadcrumb-item { font-size: .88rem; }
.page-hero .breadcrumb-item a { color: rgba(255,255,255,.65); }
.page-hero .breadcrumb-item a:hover { color: #fff; }
.page-hero .breadcrumb-item.active { color: rgba(255,255,255,.9); }
.page-hero .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,.4); }

/* ---- Glassmorphism Cards ---- */
.glass-card {
    background: rgba(255,255,255,.08); backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius-lg);
    padding: 28px;
}

/* ---- Animations ---- */
@keyframes fadeInUp { from{opacity:0;transform:translateY(30px);} to{opacity:1;transform:translateY(0);} }
@keyframes fadeInDown { from{opacity:0;transform:translateY(-20px);} to{opacity:1;transform:translateY(0);} }
@keyframes fadeInRight { from{opacity:0;transform:translateX(40px);} to{opacity:1;transform:translateX(0);} }
@keyframes fadeInLeft { from{opacity:0;transform:translateX(-40px);} to{opacity:1;transform:translateX(0);} }
@keyframes scaleIn { from{opacity:0;transform:scale(.9);} to{opacity:1;transform:scale(1);} }

/* ---- Smooth scroll-reveal (used by AOS + custom observer) ---- */
[data-aos] {
    transition-property: opacity, transform !important;
    transition-timing-function: cubic-bezier(0.22, 1, 0.36, 1) !important;
    will-change: transform, opacity;
}
[data-aos="fade-up"] {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
    backface-visibility: hidden;
}
[data-aos="fade-up"].aos-animate {
    opacity: 1;
    transform: translateY(0);
}
[data-aos="fade-right"] {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
    backface-visibility: hidden;
}
[data-aos="fade-right"].aos-animate {
    opacity: 1;
    transform: translateX(0);
}
[data-aos="fade-left"] {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
    backface-visibility: hidden;
}
[data-aos="fade-left"].aos-animate {
    opacity: 1;
    transform: translateX(0);
}
[data-aos="zoom-in"] {
    opacity: 0;
    transform: scale(0.92) translateY(24px);
    transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
    backface-visibility: hidden;
}
[data-aos="zoom-in"].aos-animate {
    opacity: 1;
    transform: scale(1) translateY(0);
}

/* ---- Why Choose Us Section ---- */
.bg-light-blue {
    background: var(--light);
    padding-bottom: 80px;
}
.why-us-card {
    display: flex;
    gap: 16px;
    align-items: start;
    padding: 20px;
    background: #fff;
    border: 1px solid rgba(226, 232, 240, 0.8);
    border-radius: 12px;
    height: 100%;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.015);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.why-us-card:hover {
    transform: translateY(-4px);
    border-color: rgba(29, 78, 216, 0.2);
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.04);
}
.why-us-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(29, 78, 216, 0.06);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}
.why-us-card:hover .why-us-icon {
    background: var(--primary);
    color: #fff;
    transform: scale(1.05);
}

.industry-card {
    text-align: center;
    padding: 24px 16px;
    background: #fff;
    border: 1px solid rgba(226, 232, 240, 0.8);
    border-radius: 14px;
    height: 100%;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.015);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: default;
}
.industry-card:hover {
    transform: translateY(-6px);
    border-color: rgba(29, 78, 216, 0.15);
    box-shadow: 0 15px 30px rgba(15, 23, 42, 0.05);
}
.industry-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
    margin: 0 auto 16px;
    transition: all 0.3s ease;
}
.industry-card:hover .industry-icon {
    transform: scale(1.1);
}

/* Individual Industry Colors */
.ind-ecommerce .industry-icon { background: rgba(16, 185, 129, 0.08); color: #10B981; }
.ind-ecommerce:hover .industry-icon { background: #10B981; color: #fff; box-shadow: 0 8px 16px rgba(16, 185, 129, 0.2); }

.ind-healthcare .industry-icon { background: rgba(239, 68, 68, 0.08); color: #EF4444; }
.ind-healthcare:hover .industry-icon { background: #EF4444; color: #fff; box-shadow: 0 8px 16px rgba(239, 68, 68, 0.2); }

.ind-education .industry-icon { background: rgba(139, 92, 246, 0.08); color: #8B5CF6; }
.ind-education:hover .industry-icon { background: #8B5CF6; color: #fff; box-shadow: 0 8px 16px rgba(139, 92, 246, 0.2); }

.ind-realestate .industry-icon { background: rgba(59, 130, 246, 0.08); color: #3B82F6; }
.ind-realestate:hover .industry-icon { background: #3B82F6; color: #fff; box-shadow: 0 8px 16px rgba(59, 130, 246, 0.2); }

.ind-finance .industry-icon { background: rgba(6, 182, 212, 0.08); color: #06B6D4; }
.ind-finance:hover .industry-icon { background: #06B6D4; color: #fff; box-shadow: 0 8px 16px rgba(6, 182, 212, 0.2); }

.ind-food .industry-icon { background: rgba(245, 158, 11, 0.08); color: #F59E0B; }
.ind-food:hover .industry-icon { background: #F59E0B; color: #fff; box-shadow: 0 8px 16px rgba(245, 158, 11, 0.2); }

.ind-logistics .industry-icon { background: rgba(99, 102, 241, 0.08); color: #6366F1; }
.ind-logistics:hover .industry-icon { background: #6366F1; color: #fff; box-shadow: 0 8px 16px rgba(99, 102, 241, 0.2); }

.ind-hospitality .industry-icon { background: rgba(236, 72, 153, 0.08); color: #EC4899; }
.ind-hospitality:hover .industry-icon { background: #EC4899; color: #fff; box-shadow: 0 8px 16px rgba(236, 72, 153, 0.2); }

.ind-legal .industry-icon { background: rgba(120, 53, 15, 0.08); color: #92400E; }
.ind-legal:hover .industry-icon { background: #92400E; color: #fff; box-shadow: 0 8px 16px rgba(120, 53, 15, 0.2); }

.ind-manufacturing .industry-icon { background: rgba(75, 85, 99, 0.08); color: #4B5563; }
.ind-manufacturing:hover .industry-icon { background: #4B5563; color: #fff; box-shadow: 0 8px 16px rgba(75, 85, 99, 0.2); }

.ind-edtech .industry-icon { background: rgba(16, 185, 129, 0.08); color: #059669; }
.ind-edtech:hover .industry-icon { background: #059669; color: #fff; box-shadow: 0 8px 16px rgba(16, 185, 129, 0.2); }

.ind-automotive .industry-icon { background: rgba(239, 68, 68, 0.08); color: #DC2626; }
.ind-automotive:hover .industry-icon { background: #DC2626; color: #fff; box-shadow: 0 8px 16px rgba(239, 68, 68, 0.2); }


/* ---- Floating Coding Background Symbols ---- */
.coding-bg-decorations {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none !important;
    z-index: 0;
}.code-sym {
    position: absolute;
    font-family: 'Courier New', Courier, monospace;
    font-weight: 800;
    color: var(--primary);
    opacity: 0.05;
    filter: blur(1px);
    user-select: none;
    pointer-events: none !important;
    will-change: transform;
}

/* Default Generic Positions (retained for static fallback pages) */
.coding-bg-decorations .c-sym-1 { top: 15%; left: 5%; font-size: 4rem; animation: floatPageWide1 30s ease-in-out infinite alternate; }
.coding-bg-decorations .c-sym-2 { top: 25%; right: 10%; font-size: 4.5rem; animation: floatPageWide2 35s ease-in-out infinite alternate; }
.coding-bg-decorations .c-sym-3 { top: 60%; left: 8%; font-size: 3.5rem; animation: floatPageWide3 40s ease-in-out infinite alternate; }
.coding-bg-decorations .c-sym-4 { top: 70%; right: 12%; font-size: 5rem; animation: floatPageWide4 32s ease-in-out infinite alternate; }
.coding-bg-decorations .c-sym-5 { top: 40%; left: 85%; font-size: 3rem; animation: floatPageWide1 45s ease-in-out infinite alternate; }

/* Bright contrast for dark/blue sections */
.page-hero .code-sym,
.process-section .code-sym,
.counter-section .code-sym,
.cta-section .code-sym {
    color: #ffffff;
    opacity: 0.04;
    filter: blur(1.5px);
}

@keyframes floatPageWide1 {
    0% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(8vw, -12vh) rotate(90deg) scale(1.1); }
    100% { transform: translate(-5vw, 15vh) rotate(180deg) scale(0.9); }
}
@keyframes floatPageWide2 {
    0% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(-10vw, 8vh) rotate(-60deg) scale(0.9); }
    100% { transform: translate(12vw, -10vh) rotate(-120deg) scale(1.1); }
}
@keyframes floatPageWide3 {
    0% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(12vw, 12vh) rotate(45deg) scale(1.1); }
    100% { transform: translate(-8vw, -8vh) rotate(90deg) scale(0.95); }
}
@keyframes floatPageWide4 {
    0% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(-12vw, -12vh) rotate(-90deg) scale(0.9); }
    100% { transform: translate(8vw, 8vh) rotate(-180deg) scale(1.1); }
}

/* Positions for Hero Section */
.hero-section .c-sym-1 { top: 12%; left: 5%; font-size: 4.5rem; animation: floatAnim1 18s ease-in-out infinite alternate; }
.hero-section .c-sym-2 { top: 22%; right: 8%; font-size: 5rem; animation: floatAnim2 22s ease-in-out infinite alternate; }
.hero-section .c-sym-3 { top: 65%; left: 6%; font-size: 3.5rem; animation: floatAnim3 15s ease-in-out infinite alternate; }
.hero-section .c-sym-4 { top: 78%; right: 7%; font-size: 5.5rem; animation: floatAnim1 20s ease-in-out infinite alternate; }
.hero-section .c-sym-5 { top: 38%; left: 42%; font-size: 3rem; animation: floatAnim2 16s ease-in-out infinite alternate; }
.hero-section .c-sym-6 { top: 82%; left: 32%; font-size: 4.5rem; animation: floatAnim3 19s ease-in-out infinite alternate; }
.hero-section .c-sym-7 { top: 8%; right: 35%; font-size: 4rem; animation: floatAnim1 24s ease-in-out infinite alternate; }

/* Positions for Services Section */
.bg-light-blue { position: relative; }
.py-section { position: relative; }
.services-section-wrapper .c-sym-1 { top: 15%; left: 4%; font-size: 5rem; animation: floatAnim1 20s ease-in-out infinite alternate; }
.services-section-wrapper .c-sym-2 { top: 68%; right: 5%; font-size: 4.5rem; animation: floatAnim3 18s ease-in-out infinite alternate; }
.services-section-wrapper .c-sym-3 { top: 45%; left: 90%; font-size: 4rem; animation: floatAnim2 24s ease-in-out infinite alternate; }
.services-section-wrapper .c-sym-4 { top: 82%; left: 12%; font-size: 3.5rem; animation: floatAnim1 16s ease-in-out infinite alternate; }

/* Positions for Technologies Section */
.tech-section-wrapper .c-sym-1 { top: 25%; left: 3%; font-size: 4rem; animation: floatAnim2 22s ease-in-out infinite alternate; }
.tech-section-wrapper .c-sym-2 { top: 75%; right: 4%; font-size: 5.5rem; animation: floatAnim1 19s ease-in-out infinite alternate; }
.tech-section-wrapper .c-sym-3 { top: 12%; right: 8%; font-size: 3.5rem; animation: floatAnim3 15s ease-in-out infinite alternate; }

/* Positions for Process Section */
.process-section .c-sym-1 { top: 18%; left: 5%; font-size: 5rem; animation: floatAnim1 25s ease-in-out infinite alternate; }
.process-section .c-sym-2 { top: 65%; right: 6%; font-size: 4.5rem; animation: floatAnim2 21s ease-in-out infinite alternate; }
.process-section .c-sym-3 { top: 80%; left: 45%; font-size: 3.8rem; animation: floatAnim3 18s ease-in-out infinite alternate; }

/* Positions for Why Choose Us Section */
.why-us-section-wrapper .c-sym-1 { top: 10%; left: 3%; font-size: 5rem; animation: floatAnim3 20s ease-in-out infinite alternate; }
.why-us-section-wrapper .c-sym-2 { top: 62%; right: 5%; font-size: 4rem; animation: floatAnim1 23s ease-in-out infinite alternate; }
.why-us-section-wrapper .c-sym-3 { top: 78%; left: 42%; font-size: 3.5rem; animation: floatAnim2 17s ease-in-out infinite alternate; }


/* ---- Cursor Coding Trail ---- */
.cursor-code-particle {
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9999;
    font-family: 'Courier New', Courier, monospace;
    font-weight: 900;
    opacity: 0.8;
    font-size: 1.1rem;
    will-change: transform, opacity;
    animation: fadeScaleOut 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

@keyframes fadeScaleOut {
    0% {
        transform: translate3d(-50%, -50%, 0) scale(1) rotate(0deg);
        opacity: 0.8;
    }
    100% {
        transform: translate3d(calc(-50% + var(--dx)), calc(-50% + var(--dy)), 0) scale(0.4) rotate(var(--rot));
        opacity: 0;
    }
}


/* ---- SECP Verification Section ---- */
.secp-section {
    background: #FFFFFF;
    padding: 60px 0;
}
.secp-card {
    background: linear-gradient(135deg, #1E3A8A 0%, #0F172A 100%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 24px;
    padding: 56px 52px;
    box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.25);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}
.secp-card:hover {
    border-color: rgba(96, 165, 250, 0.3);
    box-shadow: 0 30px 60px -12px rgba(29, 78, 216, 0.2);
}
.secp-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(96, 165, 250, 0.18) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}
.secp-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
    background-size: 24px 24px;
    pointer-events: none;
    z-index: 0;
    opacity: 0.7;
}
.secp-icon-box {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: #38BDF8;
    position: relative;
    box-shadow: 0 12px 30px rgba(56, 189, 248, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.secp-card:hover .secp-icon-box {
    transform: translateY(-4px) rotate(5deg);
    border-color: rgba(56, 189, 248, 0.4);
    box-shadow: 0 15px 35px rgba(56, 189, 248, 0.25);
}
.secp-badge-check {
    position: absolute;
    bottom: -4px;
    right: -4px;
    width: 28px;
    height: 28px;
    background: #10B981;
    border: 3px solid #142037;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    color: #ffffff;
    box-shadow: 0 0 12px rgba(16, 185, 129, 0.4);
}
.secp-title {
    color: #FFFFFF;
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}
.secp-subtitle {
    color: #94A3B8;
    font-size: 1.05rem;
    margin-bottom: 28px;
    font-weight: 500;
}
.secp-tag {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    color: #F1F5F9;
    padding: 8px 16px;
    font-size: 0.82rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}
.secp-tag i {
    color: #38BDF8;
}
.secp-tag:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}
.secp-feature-item {
    display: flex;
    gap: 20px;
    align-items: center;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 18px;
    padding: 20px 24px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}
.secp-feature-item::before {
    content: '';
    position: absolute;
    top: 0; left: 0; bottom: 0;
    width: 4px;
    background: #38BDF8;
    transform: scaleY(0);
    transition: transform 0.3s ease;
}
.secp-feature-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(56, 189, 248, 0.3);
    transform: translateX(6px);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.15);
}
.secp-feature-item:hover::before {
    transform: scaleY(1);
}
.secp-feature-icon {
    width: 46px;
    height: 46px;
    background: rgba(56, 189, 248, 0.1);
    border: 1px solid rgba(56, 189, 248, 0.2);
    border-radius: 14px;
    color: #38BDF8;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}
.secp-feature-item:hover .secp-feature-icon {
    background: #38BDF8;
    color: #0F172A;
    transform: scale(1.05) rotate(360deg);
    box-shadow: 0 0 15px rgba(56, 189, 248, 0.4);
}
.secp-feature-item h5 {
    color: #FFFFFF;
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 4px;
}
.secp-feature-item p {
    color: #94A3B8;
    font-size: 0.85rem;
    margin-bottom: 0;
    transition: color 0.3s ease;
}
.secp-feature-item:hover p {
    color: #CBD5E1;
}

@media (max-width: 767px) {
    .secp-card {
        padding: 40px 24px;
    }
    .secp-title {
        font-size: 1.8rem;
    }
}




/* ---- Robot Live Chat Widget ---- */
.robot-chat-widget {
    position: fixed;
    bottom: 30px;
    left: 20px;
    z-index: 9990;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    /* Limit hit area to only the visible widget — prevents blocking page clicks */
    width: fit-content;
    pointer-events: none;
}

/* Robot Button */
.robot-btn {
    position: relative;
    width: 90px;
    height: 90px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    filter: drop-shadow(0 8px 24px rgba(29, 78, 216, 0.35));
    pointer-events: auto;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.robot-btn:hover {
    transform: scale(1.08) translateY(-4px);
}

.robot-gif-wrapper {
    width: 110px;
    height: 110px;
    background: transparent;
    position: relative;
}
.robot-gif {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    animation: robotFloat 4s ease-in-out infinite;
}

@keyframes robotFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-10px) rotate(2deg);
    }
}

.robot-label {
    position: absolute;
    bottom: -22px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #1D4ED8, #7C3AED);
    color: #fff;
    font-size: 0.68rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 20px;
    white-space: nowrap;
    letter-spacing: 0.03em;
    box-shadow: 0 4px 12px rgba(29, 78, 216, 0.4);
}

/* Pulse rings */
.robot-pulse-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90px;
    height: 90px;
    border-radius: 50%;
    border: 2px solid rgba(29, 78, 216, 0.5);
    animation: robotPulse 2s ease-out infinite;
    pointer-events: none;
}
.robot-pulse-ring-2 {
    animation-delay: 0.7s;
    border-color: rgba(124, 58, 237, 0.4);
}
@keyframes robotPulse {
    0% { transform: translate(-50%, -50%) scale(1); opacity: 0.7; }
    100% { transform: translate(-50%, -50%) scale(1.9); opacity: 0; }
}

/* Chat Popup */
.robot-chat-popup {
    width: 300px;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(15, 23, 42, 0.18), 0 0 0 1px rgba(0,0,0,0.05);
    overflow: hidden;
    isolation: isolate;
    transform: translateY(15px) scale(0.92);
    opacity: 0;
    pointer-events: none;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: bottom left;
}
.robot-chat-popup.active {
    transform: translateY(0) scale(1);
    opacity: 1;
    pointer-events: auto;
}

.robot-chat-popup-header {
    background: linear-gradient(135deg, var(--dark) 0%, var(--primary) 100%);
    padding: 16px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
}
.robot-chat-avatar-sm {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    overflow: hidden;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.2);
    flex-shrink: 0;
}
.robot-gif-sm {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.robot-chat-name {
    color: #ffffff;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 2px;
}
.robot-online-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #10B981;
    margin-right: 5px;
    box-shadow: 0 0 6px rgba(16, 185, 129, 0.7);
    animation: onlineBlink 2s infinite;
}
@keyframes onlineBlink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}
.robot-online-text {
    color: rgba(255,255,255,0.8);
    font-size: 0.75rem;
    font-weight: 500;
}
.robot-chat-close {
    position: absolute;
    top: 12px;
    right: 14px;
    background: rgba(255,255,255,0.15);
    border: none;
    color: #fff;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    cursor: pointer;
    transition: background 0.2s;
}
.robot-chat-close:hover {
    background: rgba(255,255,255,0.3);
}

.robot-chat-body {
    padding: 18px;
    background: #F8FAFC;
    overflow-y: auto;
    flex: 1;
}
.robot-chat-bubble {
    background: #ffffff;
    border: 1px solid #E2E8F0;
    border-radius: 4px 16px 16px 16px;
    padding: 14px 16px;
    margin-bottom: 14px;
    box-shadow: 0 2px 8px rgba(15,23,42,0.06);
}
.robot-chat-bubble p {
    font-size: 0.85rem;
    color: #334155;
    margin-bottom: 6px;
    line-height: 1.5;
}
.robot-chat-bubble p:last-child { margin-bottom: 0; }
.robot-chat-bubble strong { color: #1D4ED8; }

.robot-chat-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.robot-action-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 10px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    background: var(--gradient);
    color: #ffffff;
    transition: all 0.25s ease;
    box-shadow: 0 4px 14px rgba(29, 78, 216, 0.3);
}
.robot-action-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(29, 78, 216, 0.45);
    color: #ffffff;
}
.robot-action-whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.3);
}
.robot-action-whatsapp:hover {
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
}

@media (max-width: 575px) {
    .robot-chat-widget { bottom: 20px; left: 12px; }
    .robot-btn { width: 72px; height: 72px; }
    .robot-gif-wrapper { width: 72px; height: 72px; }
    .robot-chat-popup { width: 270px; }
}

/* ---- Live Chat Popup Upgrade ---- */
.robot-chat-popup {
    display: flex;
    flex-direction: column;
    max-height: min(520px, calc(100vh - 180px));
}

/* Unread badge on robot button */
.robot-unread-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    background: #ef4444;
    color: #fff;
    border-radius: 50px;
    width: 20px;
    height: 20px;
    font-size: .7rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #fff;
    pointer-events: none;
}

/* Start form */
.chat-start-form { padding: 0 2px; }
.chat-form-field { margin-bottom: 12px; }
.chat-form-field label { display:block; font-size:.78rem; font-weight:600; color:#475569; margin-bottom:4px; }
.chat-form-field input {
    width: 100%;
    border: 1px solid #E2E8F0;
    border-radius: 8px;
    padding: 9px 12px;
    font-size: .85rem;
    outline: none;
    color: #1e293b;
    background: #fff;
    transition: border .2s;
    font-family: inherit;
}
.chat-form-field input:focus { border-color: #1D4ED8; }
.chat-field-err { display:block; font-size:.75rem; color:#ef4444; margin-top:3px; min-height:14px; }
.chat-start-btn {
    width: 100%;
    background: linear-gradient(135deg, #1D4ED8, #2563EB);
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 11px 16px;
    font-size: .875rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: opacity .2s, transform .2s;
    font-family: inherit;
    margin-top: 4px;
}
.chat-start-btn:hover { opacity: .88; transform: translateY(-1px); }
.chat-start-btn:disabled { opacity: .6; cursor: not-allowed; }

/* Chat messages area */
#chatStep2 {
    display: none;
    flex-direction: column;
    flex: 1;
    overflow: hidden;
}
.chat-messages {
    flex: 1;
    overflow-y: auto;
    padding: 14px 14px 8px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-height: 260px;
    scroll-behavior: smooth;
}
.chat-messages::-webkit-scrollbar { width: 3px; }
.chat-messages::-webkit-scrollbar-thumb { background: rgba(0,0,0,.12); border-radius: 3px; }

/* Sender name label */
.chat-msg-name {
    font-size: .68rem;
    font-weight: 700;
    margin-bottom: 3px;
    padding: 0 4px;
    color: #64748b;
}
.chat-msg.user  .chat-msg-name { text-align: right; color: #1D4ED8; }
.chat-msg.admin .chat-msg-name { text-align: left;  color: #059669; }

/* Wrapper row for bubble + time */
.chat-bubble-row {
    display: flex;
    align-items: flex-end;
    gap: 5px;
}
.chat-msg.user  .chat-bubble-row { flex-direction: row-reverse; }
.chat-msg.admin .chat-bubble-row { flex-direction: row; }

.chat-msg {
    display: flex;
    flex-direction: column;
    max-width: 82%;
}
.chat-msg.user  { align-self: flex-end; }
.chat-msg.admin { align-self: flex-start; }

/* Bubble */
.chat-msg .bub {
    padding: 9px 13px;
    font-size: .83rem;
    line-height: 1.55;
    word-break: break-word;
    position: relative;
}
/* User bubble — blue gradient, right side */
.chat-msg.user .bub {
    background: linear-gradient(135deg, #1D4ED8 0%, #2563EB 100%);
    color: #fff;
    border-radius: 14px 14px 3px 14px;
    box-shadow: 0 2px 8px rgba(29,78,216,.3);
}
/* Admin (Zafi Support) bubble — light themed, left side */
.chat-msg.admin .bub {
    background: #F0F4FF;
    border: 1px solid #C7D7F9;
    color: #1e293b;
    border-radius: 14px 14px 14px 3px;
    box-shadow: 0 1px 4px rgba(0,0,0,.06);
}

/* Time stamp — small, beside bubble */
.chat-msg .ct {
    font-size: .65rem;
    color: #94a3b8;
    white-space: nowrap;
    padding-bottom: 1px;
    flex-shrink: 0;
}

/* Typing indicator */
.chat-typing {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 4px 14px 2px;
    min-height: 24px;
}
.chat-typing span {
    width: 6px; height: 6px;
    background: #94a3b8;
    border-radius: 50%;
    animation: chatBounce .8s infinite;
}
.chat-typing span:nth-child(2) { animation-delay: .15s; }
.chat-typing span:nth-child(3) { animation-delay: .3s; }
@keyframes chatBounce { 0%,60%,100%{transform:translateY(0)} 30%{transform:translateY(-5px)} }

/* Input row */
.chat-input-row {
    display: flex;
    align-items: flex-end;
    gap: 6px;
    padding: 8px 12px 12px;
    border-top: 1px solid #E2E8F0;
    background: #F8FAFC;
}
.chat-input-row textarea {
    flex: 1;
    resize: none;
    border: 1px solid #E2E8F0;
    border-radius: 8px;
    padding: 8px 10px;
    font-size: .82rem;
    min-height: 36px;
    max-height: 90px;
    outline: none;
    font-family: inherit;
    color: #1e293b;
    background: #fff;
    transition: border .2s;
}
.chat-input-row textarea:focus { border-color: #1D4ED8; }
.chat-send-btn {
    background: linear-gradient(135deg, #1D4ED8, #2563EB);
    color: #fff;
    border: none;
    border-radius: 8px;
    width: 36px;
    height: 36px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .8rem;
    transition: opacity .2s;
    flex-shrink: 0;
}
.chat-send-btn:hover { opacity: .85; }
.chat-send-btn:disabled { opacity: .5; cursor: not-allowed; }

/* Closed chat bar */
.chat-closed-bar {
    padding: 10px 12px;
    border-top: 1px solid #E2E8F0;
    background: #FFF7ED;
    text-align: center;
}
.chat-closed-bar p {
    font-size: .75rem;
    color: #92400e;
    margin: 0 0 8px;
}
.chat-new-btn {
    display: inline-flex; align-items: center; gap: 6px;
    background: linear-gradient(135deg, #1D4ED8, #2563EB);
    color: #fff; border: none; border-radius: 8px;
    padding: 8px 18px; font-size: .82rem; font-weight: 700;
    cursor: pointer; transition: opacity .2s;
    font-family: inherit;
}
.chat-new-btn:hover { opacity: .88; }

/* Responsive chat popup */
@media (max-width: 575px) {
    .robot-chat-popup { 
        max-height: min(420px, calc(100vh - 160px));
        width: calc(100vw - 24px);
    }
    .chat-messages { max-height: 160px; }
    .robot-chat-body { padding: 12px 14px; }
    .robot-chat-bubble { padding: 10px 12px; margin-bottom: 10px; }
    .chat-form-field { margin-bottom: 8px; }
}


@media (max-width:1199px) {
    .mega-menu-inner { grid-template-columns: repeat(2,1fr) 160px; }
}
@media (max-width:991px) {
    .mega-menu { position: static; box-shadow: none; border: none; padding: 8px 0; opacity: 1; visibility: visible; transform: none; }
    .mega-menu-inner { grid-template-columns: repeat(2,1fr); }
    .mega-cta { display: none; }
    .navbar-nav .nav-link { padding: 10px 16px !important; }
    .hero-stats { gap: 20px; }
    .py-section { padding: 70px 0; }
}
@media (max-width:767px) {
    .hero-section { padding: 0 0 40px; min-height: auto; }
    .hero-stats { gap: 16px; }
    .hero-stat-num { font-size: 1.4rem; }
    .counter-section .row { gap: 24px 0; }
    .footer-main { padding: 60px 0 30px; }
    .mega-menu-inner { grid-template-columns: 1fr; }
    .process-steps::before { display: none; }
    .contact-form-box { padding: 24px; }
    .portfolio-filter { gap: 6px; }
    .filter-btn { font-size: .78rem; padding: 6px 14px; }
}
@media (max-width:575px) {
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; justify-content: center; }
    .section-title { font-size: 1.7rem; }
}


/* ============================================================
   PUBLIC REVIEW SUBMISSION FORM — Compact Landscape Layout
   ============================================================ */
.review-form-wrapper {
    border-top: 1px solid rgba(226, 232, 240, 0.6);
    padding-top: 50px;
    max-width: 1100px;
    margin: 0 auto;
    padding-bottom: 31px!important;
}

.review-form-card {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(226, 232, 240, 0.7);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(29, 78, 216, 0.04);
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 0;
    transition: box-shadow 0.3s;
}

.review-form-card:hover {
    box-shadow: 0 20px 45px rgba(29, 78, 216, 0.07);
}

/* Left sidebar: heading */
.review-form-header {
    background: linear-gradient(135deg, #1D4ED8 0%, #1E3A8A 100%);
    padding: 36px 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}
.review-form-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,.12) 0%, transparent 70%);
    pointer-events: none;
}
.review-form-header-inner {
    position: relative;
    z-index: 1;
    text-align: center;
}
.review-header-icon {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: rgba(255,255,255,.15);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin: 0 auto 16px;
    border: 2px solid rgba(255,255,255,.2);
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}
.review-form-header h4 {
    color: #fff;
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 8px;
    line-height: 1.25;
}
.review-form-header p {
    color: rgba(255,255,255,.8);
    font-size: 0.82rem;
    margin-bottom: 20px;
    line-height: 1.45;
}
.review-header-note {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: .68rem;
    color: rgba(255,255,255,.75);
    background: rgba(255,255,255,.08);
    padding: 5px 12px;
    border-radius: 50px;
    border: 1px solid rgba(255,255,255,.15);
}
.review-header-note i {
    font-size: .65rem;
}

/* Right: form */
.review-form-body {
    padding: 36px 40px;
    background: rgba(250, 251, 252, 0.4);
}
.review-form .form-label {
    font-weight: 600;
    font-size: 0.72rem;
    color: var(--text-muted);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: .05em;
}
.review-form .form-control-sm {
    border: 1.5px solid rgba(209, 213, 219, 0.7);
    border-radius: 10px;
    padding: 10px 14px;
    font-size: 0.88rem;
    color: var(--text);
    background: #fff;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.review-form .form-control-sm:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(29,78,216,.08);
    background: #fff;
}
.review-form textarea.form-control-sm {
    resize: vertical;
    min-height: 100px;
    line-height: 1.6;
}

/* Star Rating Input */
.rating-input {
    display: flex;
    flex-direction: row-reverse;
    gap: 5px;
    align-items: center;
    padding: 4px 0;
}
.rating-input input[type=radio] {
    display: none;
}
.rating-input label {
    font-size: 1.5rem;
    color: #E2E8F0;
    cursor: pointer;
    transition: color .2s, transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    line-height: 1;
}
.rating-input label:hover,
.rating-input label:hover ~ label {
    color: #FBBF24;
    transform: scale(1.2);
}
.rating-input input[type=radio]:checked ~ label {
    color: #FBBF24;
}

/* Success / Error messages */
.review-success-msg {
    background: #ECFDF5;
    border: 1px solid #A7F3D0;
    border-radius: 10px;
    padding: 14px 16px;
    color: #065F46;
    text-align: center;
    font-size: .82rem;
}
.review-success-msg i {
    font-size: 1.3rem;
    color: #10B981;
    display: block;
    margin-bottom: 6px;
}
.review-success-msg strong {
    display: block;
    font-size: .9rem;
    margin-bottom: 2px;
}
.review-success-msg p {
    font-size: .78rem;
    color: #047857;
    margin: 0;
}
.review-error-msg {
    background: #FEF2F2;
    border: 1px solid #FECACA;
    border-radius: 10px;
    padding: 12px 16px;
    color: #991B1B;
    font-size: .8rem;
}
.review-error-msg i {
    margin-right: 6px;
}

/* Responsive: stack on mobile */
@media (max-width: 767px) {
    .review-form-card {
        grid-template-columns: 1fr;
    }
    .review-form-header {
        padding: 32px 24px;
    }
    .review-form-body {
        padding: 28px 24px;
    }
    .review-form-header h4 {
        font-size: 1.25rem;
    }
}
@media (max-width: 575px) {
    .review-form-wrapper {
        padding-top: 36px;
        padding-bottom: 31px!important;
    }
    .review-form-body {
        padding: 24px 18px;
    }
}


/* ============================================================
   EXPERTISE HIGHLIGHTS SECTION
   ============================================================ */
.expertise-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}

.expertise-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
    padding: 22px 12px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: var(--transition);
    cursor: default;
    position: relative;
    overflow: hidden;
}
.expertise-item::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: var(--gradient);
    transform: scaleX(0);
    transition: transform .3s ease;
}
.expertise-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(29,78,216,.1);
    border-color: rgba(29,78,216,.15);
}
.expertise-item:hover::before {
    transform: scaleX(1);
}

.expertise-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    transition: transform .3s ease;
    flex-shrink: 0;
}
.expertise-item:hover .expertise-icon {
    transform: scale(1.1) rotate(-5deg);
}

.expertise-item span {
    font-size: .82rem;
    font-weight: 600;
    color: var(--text);
    line-height: 1.3;
}

/* Responsive */
@media (max-width: 1199px) {
    .expertise-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 991px) {
    .expertise-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 575px) {
    .expertise-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .expertise-item { padding: 16px 10px; gap: 8px; }
    .expertise-icon { width: 44px; height: 44px; font-size: 1.1rem; }
    .expertise-item span { font-size: .78rem; }
}


/* ============================================================
   OUR DETAILED PROCESS SECTION — Tabbed
   ============================================================ */
.our-process-section { overflow: clip; }

/* Tab Navigation */
.process-tab-nav {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 40px;
}
.process-tab-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 22px;
    border-radius: 50px;
    border: 2px solid var(--border);
    background: #fff;
    color: var(--text-muted);
    font-family: var(--font-main);
    font-size: .85rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}
.process-tab-btn i {
    font-size: .85rem;
}
.process-tab-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(29,78,216,.04);
    transform: translateY(-2px);
}
.process-tab-btn.active {
    background: var(--gradient);
    border-color: transparent;
    color: #fff;
    box-shadow: 0 6px 20px rgba(29,78,216,.3);
    transform: translateY(-2px);
}
.process-tab-btn.active i { color: #fff; }

/* Tab Panels */
.process-tab-panel {
    display: none;
}
.process-tab-panel.active {
    display: block;
    animation: tabFadeIn .4s ease;
}
@keyframes tabFadeIn {
    from { opacity: 0; transform: translateY(12px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Panel header */
.process-panel-header {
    margin-bottom: 12px;
}
.process-panel-title-wrap {
    display: flex;
    align-items: center;
    gap: 14px;
}
.process-panel-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    flex-shrink: 0;
}
.process-panel-title-wrap h3 {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 2px;
}
.process-panel-title-wrap p {
    font-size: .88rem;
    color: var(--text-muted);
    margin: 0;
}

/* Step Cards */
.dp-step-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}
.dp-step-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--step-color, var(--primary));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .35s ease;
}
.dp-step-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0,0,0,.08);
    border-color: rgba(29,78,216,.1);
}
.dp-step-card:hover::before {
    transform: scaleX(1);
}

.dp-step-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
}
.dp-step-icon {
    width: 46px;
    height: 46px;
    border-radius: 10px;
    background: color-mix(in srgb, var(--step-color, var(--primary)) 10%, transparent);
    color: var(--step-color, var(--primary));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: var(--transition);
}
/* Fallback for browsers without color-mix */
@supports not (background: color-mix(in srgb, red 10%, transparent)) {
    .dp-step-icon { background: rgba(29,78,216,.08); }
}
.dp-step-card:hover .dp-step-icon {
    background: var(--step-color, var(--primary));
    color: #fff;
    transform: scale(1.08) rotate(-5deg);
}
.dp-step-num {
    font-family: var(--font-main);
    font-size: 2rem;
    font-weight: 900;
    color: var(--step-color, var(--primary));
    opacity: .12;
    line-height: 1;
    transition: opacity .3s;
}
.dp-step-card:hover .dp-step-num { opacity: .25; }

.dp-step-card h5 {
    font-size: .98rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
}
.dp-step-card p {
    font-size: .83rem;
    color: var(--text-muted);
    line-height: 1.65;
    margin: 0;
}

/* Responsive */
@media (max-width: 767px) {
    .process-tab-btn { padding: 9px 14px; font-size: .8rem; }
    .process-panel-title-wrap h3 { font-size: 1.1rem; }
    .dp-step-card { padding: 18px; }
    .process-tab-nav {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }
    .process-tab-btn {
        justify-content: flex-start;
        white-space: nowrap;
    }
}
@media (max-width: 575px) {
    .process-tab-nav { gap: 6px; }
    .process-tab-btn {
        padding: 8px 12px;
        font-size: .75rem;
        border-radius: 10px;
        flex: 1;
        justify-content: center;
        min-width: 0;
    }
    .process-tab-btn span {
        display: inline;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 70px;
    }
    .process-tab-btn i { font-size: .8rem; }
}


/* ============================================================
   MOBILE OVERFLOW FIX + MOBILE SERVICES ACCORDION
   ============================================================ */

/* Global overflow fix */
html {
    overflow-x: clip; /* use clip instead of hidden — does NOT break position:sticky */
    max-width: 100%;
}
body {
    overflow-x: hidden;
    max-width: 100%;
}


/* ---- Mobile Services Accordion ---- */
/* Hidden on desktop — shown only on mobile */
.mob-services {
    display: none;
}

@media (max-width: 991px) {

    /* Hide desktop mega menu on mobile completely */
    .mega-menu {
        display: none !important;
    }

    /* Show mobile accordion */
    .mob-services {
        display: none; /* toggled by JS */
        background: #F8FAFC;
        border-radius: 10px;
        margin: 4px 8px 8px;
        border: 1px solid var(--border);
        overflow: hidden;
    }
    .mob-services.open {
        display: block;
    }

    .mob-svc-group {
        border-bottom: 1px solid var(--border);
    }
    .mob-svc-group:last-of-type {
        border-bottom: none;
    }
    .mob-svc-head {
        display: flex;
        align-items: center;
        gap: 8px;
        padding: 10px 16px;
        font-size: .8rem;
        font-weight: 700;
        color: var(--primary);
        text-transform: uppercase;
        letter-spacing: .05em;
        background: rgba(29,78,216,.04);
        cursor: pointer;
        user-select: none;
    }
    .mob-svc-head i { font-size: .75rem; }

    .mob-svc-links {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0;
    }
    .mob-svc-links a {
        display: block;
        padding: 9px 16px;
        font-size: .82rem;
        color: var(--text-muted);
        font-weight: 500;
        border-right: 1px solid var(--border);
        border-bottom: 1px solid var(--border);
        transition: var(--transition);
    }
    .mob-svc-links a:nth-child(even) { border-right: none; }
    .mob-svc-links a:last-child,
    .mob-svc-links a:nth-last-child(2):nth-child(odd) { border-bottom: none; }
    .mob-svc-links a:hover {
        background: rgba(29,78,216,.06);
        color: var(--primary);
        padding-left: 20px;
    }

    .mob-svc-all {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        padding: 11px 16px;
        font-size: .82rem;
        font-weight: 700;
        color: var(--primary);
        background: rgba(29,78,216,.05);
        border-top: 1px solid var(--border);
        transition: var(--transition);
    }
    .mob-svc-all:hover {
        background: var(--primary);
        color: #fff;
    }
    .mob-svc-all i { font-size: .75rem; }

    /* Services nav link chevron rotation */
    .nav-link .fa-chevron-down { transition: transform .3s; }
    .nav-link.mob-services-open .fa-chevron-down {
        transform: rotate(180deg);
    }

    /* General mobile nav fixes */
    .navbar-collapse {
        max-height: 85vh;
        overflow-y: auto;
        overflow-x: hidden;
    }
    .navbar-nav {
        flex-wrap: wrap !important;
        width: 100%;
    }
    .nav-cta {
        padding: 12px 8px;
        flex-wrap: wrap;
    }
    .btn-get-quote {
        width: 100%;
        justify-content: center;
    }

    /* Fix hero overflow on mobile */
    .hero-section {
        overflow: hidden;
    }
    .hero-section::before,
    .hero-section::after {
        display: none;
    }

    /* Fix coding decorations overflow */
    .coding-bg-decorations {
        overflow: hidden;
    }

    /* Fix orbit rings overflow on preloader */
    .pre-orbit-2, .pre-orbit-3 { display: none; }
}

@media (max-width: 575px) {
    /* Prevent any element going outside viewport */
    * { max-width: 100vw; }
    img { max-width: 100%; height: auto; }

    /* Fix hero trust section wrapping */
    .hero-trust-row {
        margin-top: 24px;
        margin-bottom: 12px;
    }
    .hero-trust {
        flex-direction: row;
        align-items: center;
        flex-wrap: nowrap;
        gap: 15px;
        overflow-x: auto;
        padding: 10px 16px;
        border-radius: 20px;
        justify-content: flex-start;
        box-shadow: none;
        background: rgba(255, 255, 255, 0.8);
        border: 1px solid rgba(226, 232, 240, 0.6);
        width: 100%;
    }
    .hero-trust-divider { display: none; }
    .hero-trust-item {
        flex-shrink: 0;
        gap: 6px;
    }
    .hero-trust-icon {
        width: 32px;
        height: 32px;
        font-size: .75rem;
        flex-shrink: 0;
    }
    .hero-trust-title { font-size: .78rem; }
    .hero-trust-sub   { font-size: .68rem; }
    .hero-avatar { width: 22px; height: 22px; font-size: .55rem; }
    .hero-trust-avatars { margin-left: 0; }

    /* Fix counter section */
    .counter-section .col-6 { max-width: 50%; }

    /* Reduce large font sizes */
    .hero-title { font-size: 1.6rem; }
    .section-title { font-size: 1.5rem; }
}


/* ============================================================
   MOBILE LEFT DRAWER MENU
   ============================================================ */

/* Hamburger button */
.mob-hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    border-radius: 8px;
    transition: background .2s;
}
.mob-hamburger:hover { background: rgba(29,78,216,.08); }
.mob-hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--dark);
    border-radius: 2px;
    transition: var(--transition);
}
.mob-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mob-hamburger.open span:nth-child(2) { opacity: 0; }
.mob-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Overlay */
.mob-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(15,23,42,.55);
    z-index: 9000;
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    animation: overlayIn .25s ease;
}
.mob-overlay.show { display: block; }
@keyframes overlayIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Drawer */
.mob-drawer {
    position: fixed;
    top: 0;
    left: 0;
    width: 300px;
    max-width: 88vw;
    height: 100vh;
    background: #fff;
    z-index: 9001;
    display: flex;
    flex-direction: column;
    transform: translateX(-100%);
    transition: transform .32s cubic-bezier(.4,0,.2,1);
    box-shadow: 4px 0 30px rgba(0,0,0,.15);
}
.mob-drawer.open { transform: translateX(0); }

/* Drawer header */
.mob-drawer-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid var(--border);
    background: var(--light);
    flex-shrink: 0;
}
.mob-drawer-close {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: none;
    background: rgba(29,78,216,.08);
    color: var(--primary);
    font-size: .9rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}
.mob-drawer-close:hover { background: var(--primary); color: #fff; }

/* Drawer nav */
.mob-drawer-nav {
    flex: 1;
    overflow-y: auto;
    padding: 8px 0;
}

.mob-nav-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 13px 20px;
    font-size: .92rem;
    font-weight: 600;
    color: var(--text);
    text-decoration: none;
    transition: var(--transition);
    border-left: 3px solid transparent;
    width: 100%;
    background: none;
    border-top: none;
    border-right: none;
    border-bottom: none;
    cursor: pointer;
    font-family: var(--font-main);
    text-align: left;
}
.mob-nav-link i:first-child {
    width: 18px;
    text-align: center;
    color: var(--primary);
    font-size: .85rem;
}
.mob-nav-link:hover,
.mob-nav-link.active {
    background: rgba(29,78,216,.05);
    color: var(--primary);
    border-left-color: var(--primary);
}

/* Services accordion */
.mob-nav-accordion { border-bottom: 1px solid var(--border); }
.mob-accordion-btn {
    justify-content: space-between;
    border-bottom: none !important;
    border-left: 3px solid transparent !important;
}
.mob-accordion-btn span {
    display: flex;
    align-items: center;
    gap: 12px;
}
.mob-acc-arrow {
    font-size: .7rem;
    transition: transform .3s;
    color: var(--text-muted) !important;
    width: auto !important;
}
.mob-accordion-btn.open .mob-acc-arrow { transform: rotate(180deg); }
.mob-accordion-btn.open { color: var(--primary); background: rgba(29,78,216,.05); border-left-color: var(--primary) !important; }

.mob-accordion-body {
    display: none;
    background: #FAFBFC;
    border-top: 1px solid var(--border);
}
.mob-accordion-body.open { display: block; }

.mob-acc-group { border-bottom: 1px solid var(--border); padding: 10px 0 4px; }
.mob-acc-group:last-of-type { border-bottom: none; }
.mob-acc-title {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 4px 20px 8px;
    font-size: .72rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: .06em;
}
.mob-acc-title i { font-size: .7rem; }
.mob-accordion-body a {
    display: block;
    padding: 8px 20px 8px 44px;
    font-size: .84rem;
    color: var(--text-muted);
    font-weight: 500;
    transition: var(--transition);
    text-decoration: none;
}
.mob-accordion-body a:hover {
    color: var(--primary);
    background: rgba(29,78,216,.04);
    padding-left: 50px;
}
.mob-acc-viewall {
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 11px 20px !important;
    font-weight: 700 !important;
    color: var(--primary) !important;
    background: rgba(29,78,216,.06) !important;
    border-top: 1px solid var(--border);
    font-size: .82rem !important;
}
.mob-acc-viewall:hover {
    background: var(--primary) !important;
    color: #fff !important;
    padding-left: 20px !important;
}

/* Drawer footer */
.mob-drawer-footer {
    padding: 16px 20px;
    border-top: 1px solid var(--border);
    background: var(--light);
    flex-shrink: 0;
}

/* Body lock when drawer open */
body.mob-menu-open {
    overflow: hidden;
}


/* ---- Hero Image Mobile Fix ---- */
@media (max-width: 991px) {
    .hero-right {
        display: flex !important;
        padding-left: 0;
        padding-top: 0;
        padding-bottom: 0;
        justify-content: center;
    }
    .hero-visual-showcase {
        max-width: 420px;
        width: 100%;
    }
    .hero-showcase-img {
        width: 100%;
        height: auto;
        display: block;
    }
    .hero-left {
        padding-top: 20px;
    }
    .hero-section {
        min-height: auto !important;
        padding-top: 90px !important;
    }
}

@media (max-width: 575px) {
    .hero-right {
        padding-top: 0;
    }
    .hero-visual-showcase {
        max-width: 100%;
    }
}


/* ============================================================
   MOBILE SCROLL FIX — Prevent section overlap/clipping
   ============================================================ */
@media (max-width: 991px) {

    /* AOS disabled on mobile via JS — reset any leftover styles */
    [data-aos] {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
        pointer-events: auto !important;
    }

    /* Fix coding decorations causing invisible overlay */
    .coding-bg-decorations {
        overflow: hidden !important;
        pointer-events: none !important;
        z-index: 0 !important;
    }
    .code-sym {
        pointer-events: none !important;
    }

    /* Prevent GSAP ScrollTrigger from pinning sections */
    .pin-spacer {
        display: none !important;
    }
}

@media (max-width: 575px) {
    html, body {
        scroll-snap-type: none !important;
        overscroll-behavior: auto;
    }
}

/* ---- Mobile Logo Size Fix ---- */
@media (max-width: 991px) {
    .logo-img {
        height: 36px !important;
    }
}


/* =============================================
   Social Links Tree Page  (.slt-)
   ============================================= */

/* Profile block */
.slt-profile {
    text-align: center;
    padding: 36px 24px 28px;
    margin-bottom: 8px;
}
.slt-avatar {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary);
    box-shadow: 0 0 0 5px rgba(29,78,216,.12);
    margin-bottom: 16px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}
.slt-avatar-placeholder {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: var(--gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    box-shadow: 0 0 0 5px rgba(29,78,216,.12);
    overflow: hidden;
}
.slt-logo-img {
    width: 90px;
    height: 90px;
    object-fit: contain;
    border-radius: 0;
    padding: 10px;
    background: rgba(255,255,255,.92);
    border-radius: 50%;
}
.slt-name {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 6px;
}
.slt-tagline {
    font-size: .875rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.5;
}

/* Links wrapper */
.slt-links-wrap {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 4px 0 24px;
}

/* Individual link button */
.slt-link-btn {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 20px;
    border-radius: var(--radius);
    background: var(--btn-bg, var(--primary));
    color: var(--btn-fg, #fff) !important;
    text-decoration: none !important;
    font-weight: 600;
    font-size: .925rem;
    box-shadow: 0 4px 14px rgba(0,0,0,.12);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.slt-link-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,.08);
    opacity: 0;
    transition: opacity .25s;
}
.slt-link-btn:hover::before { opacity: 1; }
.slt-link-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0,0,0,.18);
}
.slt-link-btn:active { transform: translateY(0); }

/* Featured (larger) */
.slt-link-featured {
    padding: 17px 22px;
    font-size: 1rem;
    border-radius: var(--radius-lg);
    box-shadow: 0 6px 20px rgba(0,0,0,.15);
}

.slt-btn-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,.18);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}
.slt-link-featured .slt-btn-icon {
    width: 42px;
    height: 42px;
    font-size: 1.1rem;
}
.slt-btn-label { flex: 1; text-align: center; }
.slt-btn-arrow {
    font-size: .8rem;
    opacity: .7;
    flex-shrink: 0;
    transition: transform .25s;
}
.slt-link-btn:hover .slt-btn-arrow { transform: translateX(4px); opacity: 1; }

/* Empty state */
.slt-empty {
    text-align: center;
    padding: 60px 20px;
}

/* Quick contact strip */
.slt-quick-contact {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
    padding-top: 8px;
    padding-bottom: 12px;
}
.slt-quick-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: .825rem;
    text-decoration: none !important;
    transition: var(--transition);
    border: 2px solid transparent;
}
.slt-quick-btn:hover { transform: translateY(-2px); }
.slt-wa    { background: #25D366; color: #fff !important; }
.slt-wa:hover { background: #1fb85a; }
.slt-email { background: var(--light); color: var(--text) !important; border-color: var(--border); }
.slt-email:hover { border-color: var(--primary); color: var(--primary) !important; }
.slt-quote { background: var(--gradient); color: #fff !important; }
.slt-quote:hover { box-shadow: var(--shadow); }

/* Responsive */
@media (max-width: 480px) {
    .slt-quick-contact { flex-direction: column; align-items: stretch; }
    .slt-quick-btn { justify-content: center; }
}


/* =============================================
   Client Logos Marquee / Ticker
   ============================================= */
.clients-section { overflow: hidden; }

.clients-marquee-wrapper {
    overflow: hidden;
    position: relative;
    /* fade edges */
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.clients-marquee-track {
    display: flex;
    align-items: center;
    gap: 48px;
    width: max-content;
    animation: marqueeScroll 30s linear infinite;
}
.clients-marquee-track:hover { animation-play-state: paused; }

@keyframes marqueeScroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-33.333%); }
}

/* Each logo item — NO box, NO border, just the image */
.client-logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    /* Remove any inherited box styles */
    background: none !important;
    border: none !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    padding: 0 !important;
}

.client-logo-item a,
.client-logo-item div {
    display: flex;
    align-items: center;
    justify-content: center;
    background: none !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
}

.client-logo-item img {
    height: 140px;
    width: auto;
    max-width: 240px;
    object-fit: contain;
    filter: none;
    transition: transform .35s ease;
    display: block;
    background: none !important;
    border: none !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    padding: 0 !important;
}
.client-logo-item:hover img {
    filter: none;
    transform: scale(1.08);
}

/* Fallback text badge when no logo */
.client-name-badge {
    font-size: .8rem;
    font-weight: 700;
    color: var(--text-muted);
    white-space: nowrap;
    letter-spacing: .5px;
    text-transform: uppercase;
    background: none !important;
    border: none !important;
}


/* ============================================================
   PERFORMANCE OPTIMIZATIONS — v1.3.0
   GPU acceleration, paint layers, reduced reflows
   ============================================================ */

/* Animated elements — promote to own compositor layer */
.service-card,
.portfolio-card,
.blog-card,
.team-card,
.process-step,
.tech-item,
.why-us-card,
.industry-card,
.testimonial-card,
.contact-info-card,
.expertise-item {
    transform: translateZ(0);   /* creates composite layer */
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

/* Marquee — GPU layer for smooth animation */
.clients-marquee-track {
    will-change: transform;
    transform: translateZ(0);
}

/* Hero image — no layout reflow on hover */
.hero-visual-showcase {
    will-change: transform;
    transform: translateZ(0);
}

/* Logo float animation */
.logo-img {
    will-change: transform, filter;
}

/* Preloader elements */
.pre-logo-core,
.pre-orbit,
.pre-progress-bar {
    will-change: transform, opacity;
}

/* Swiper — smooth slides */
.swiper-wrapper {
    will-change: transform;
}

/* Lazy-loaded images: prevent layout shift with aspect-ratio */
img[data-src],
img[loading="lazy"] {
    min-height: 1px;
}

/* Image optimization defaults */
img {
    content-visibility: auto;
    max-width: 100%;
    height: auto;
}

/* Large below-fold sections: defer rendering */
.footer-main,
.newsletter-strip,
.clients-section {
    content-visibility: auto;
    contain-intrinsic-size: 0 400px;
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    .clients-marquee-track {
        animation: none !important;
    }
    #preloader {
        display: none !important;
    }
    [data-aos] {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}

/* Cursor particle — lightweight, no layout */
.cursor-code-particle {
    position: fixed;
    pointer-events: none;
    font-size: .72rem;
    font-weight: 700;
    font-family: 'Courier New', monospace;
    z-index: 99998;
    user-select: none;
    animation: particleFade 0.7s ease forwards;
    will-change: transform, opacity;
    transform: translateZ(0);
}
@keyframes particleFade {
    0%   { opacity: .9; transform: translate(0,0) rotate(0deg); }
    100% { opacity: 0;  transform: translate(var(--dx,0),var(--dy,-50px)) rotate(var(--rot,15deg)); }
}


/* =============================================
   PRICING PAGE STYLES — Premium Redesign
   ============================================= */

/* ---- Page Background ---- */
.pricing-page-section {
    background: linear-gradient(180deg, #F0F4FF 0%, #FFFFFF 40%, #F8FAFC 100%);
    position: relative;
}
.pricing-page-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 500px;
    background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(29,78,216,.08) 0%, transparent 70%);
    pointer-events: none;
}

/* ---- Billing Toggle ---- */
.billing-toggle-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 44px;
}
.billing-toggle-label {
    font-weight: 600;
    font-size: .9rem;
    color: var(--text-muted);
    transition: color .25s;
}
.billing-toggle-label.active { color: var(--dark); }
.billing-toggle {
    position: relative;
    width: 56px; height: 28px;
    background: var(--border);
    border-radius: 14px;
    cursor: pointer;
    transition: background .3s;
    border: none;
    outline: none;
    flex-shrink: 0;
}
.billing-toggle.yearly { background: var(--primary); }
.billing-toggle::after {
    content: '';
    position: absolute;
    top: 3px; left: 3px;
    width: 22px; height: 22px;
    background: #fff;
    border-radius: 50%;
    transition: transform .3s cubic-bezier(.4,0,.2,1);
    box-shadow: 0 2px 6px rgba(0,0,0,.15);
}
.billing-toggle.yearly::after { transform: translateX(28px); }
.billing-save-badge {
    background: linear-gradient(135deg, #10B981, #059669);
    color: #fff;
    font-size: .7rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 20px;
    letter-spacing: .4px;
}

/* ---- Category Tab Nav ---- */
.pricing-tab-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin: 0 auto 48px;
    background: rgba(255,255,255,.8);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(226,232,240,.8);
    border-radius: 60px;
    padding: 6px;
    width: fit-content;
    max-width: 100%;
    box-shadow: 0 4px 24px rgba(29,78,216,.06);
}
.pricing-tab-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    border-radius: 50px;
    border: none;
    background: transparent;
    color: var(--text-muted);
    font-weight: 600;
    font-size: .88rem;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    white-space: nowrap;
}
.pricing-tab-btn i { font-size: .82rem; }
.pricing-tab-btn:hover { color: var(--primary); background: rgba(29,78,216,.06); }
.pricing-tab-btn.active {
    background: var(--gradient);
    color: #fff;
    box-shadow: 0 4px 16px rgba(29,78,216,.3);
}

/* ---- Pricing Card ---- */
.pricing-card {
    background: #fff;
    border: 1.5px solid rgba(226,232,240,.9);
    border-radius: 28px;
    overflow: hidden;
    position: relative;
    transition: transform .35s cubic-bezier(.4,0,.2,1), box-shadow .35s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 16px rgba(29,78,216,.05);
}
.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(29,78,216,.14);
    border-color: rgba(29,78,216,.2);
}

/* Featured card */
.pricing-card-featured {
    border: 2px solid transparent;
    background: linear-gradient(#fff, #fff) padding-box,
                var(--gradient) border-box;
    box-shadow: 0 12px 50px rgba(29,78,216,.2);
    transform: translateY(-8px) scale(1.025);
    z-index: 2;
}
.pricing-card-featured:hover {
    transform: translateY(-18px) scale(1.025);
    box-shadow: 0 28px 70px rgba(29,78,216,.25);
}

/* Ribbon / Badge */
.pricing-ribbon {
    position: absolute;
    top: 0; right: 0;
    width: 0; height: 0;
    border-style: solid;
    border-width: 0 80px 80px 0;
    border-color: transparent var(--primary) transparent transparent;
    z-index: 3;
}
.pricing-ribbon-text {
    position: absolute;
    top: 10px; right: -68px;
    color: #fff;
    font-size: .62rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .8px;
    transform: rotate(45deg);
    white-space: nowrap;
    z-index: 4;
    text-shadow: 0 1px 2px rgba(0,0,0,.2);
}

/* Top gradient bar */
.pricing-card-topbar {
    height: 5px;
    width: 100%;
    background: var(--border);
    flex-shrink: 0;
}
.pricing-card-featured .pricing-card-topbar {
    background: var(--gradient);
}

/* Card Header */
.pricing-card-header {
    padding: 28px 30px 22px;
}
.pricing-plan-label {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: var(--text-muted);
    margin-bottom: 14px;
    padding: 5px 12px;
    background: var(--light);
    border-radius: 20px;
    border: 1px solid var(--border);
}
.pricing-plan-label.featured-label {
    background: rgba(29,78,216,.08);
    color: var(--primary);
    border-color: rgba(29,78,216,.2);
}
.pricing-plan-label i { font-size: .65rem; }
.pricing-name {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 6px;
    line-height: 1.2;
}
.pricing-tagline {
    font-size: .85rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.6;
}

/* Price Box */
.pricing-price-box {
    padding: 0 30px 24px;
}
.pricing-price-inner {
    background: linear-gradient(135deg, var(--light) 0%, #EFF6FF 100%);
    border-radius: 18px;
    padding: 20px 22px 18px;
    border: 1px solid rgba(226,232,240,.8);
    position: relative;
    overflow: hidden;
}
.pricing-price-inner::before {
    content: '';
    position: absolute;
    top: -20px; right: -20px;
    width: 80px; height: 80px;
    background: radial-gradient(circle, rgba(29,78,216,.08), transparent 70%);
    border-radius: 50%;
}
.pricing-card-featured .pricing-price-inner {
    background: linear-gradient(135deg, rgba(29,78,216,.05) 0%, rgba(37,99,235,.1) 100%);
    border-color: rgba(29,78,216,.2);
}
.pricing-original-row {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 2px;
}
.pricing-original-amount {
    font-size: 1rem;
    color: var(--text-muted);
    text-decoration: line-through;
    font-weight: 600;
    opacity: .65;
}
.pricing-saving-pill {
    background: linear-gradient(135deg, #10B981, #059669);
    color: #fff;
    font-size: .68rem;
    font-weight: 700;
    padding: 2px 9px;
    border-radius: 20px;
    letter-spacing: .3px;
}
.pricing-amount-row {
    display: flex;
    align-items: flex-end;
    gap: 4px;
    line-height: 1;
}
.pricing-currency {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
    padding-bottom: 8px;
}
.pricing-number {
    font-size: 3.2rem;
    font-weight: 900;
    color: var(--dark);
    line-height: 1;
    letter-spacing: -2px;
}
.pricing-card-featured .pricing-number { color: var(--primary); }
.pricing-cycle-label {
    font-size: .75rem;
    color: var(--text-muted);
    font-weight: 600;
    padding-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: .5px;
}

/* Features */
.pricing-features {
    list-style: none;
    padding: 0 30px 8px;
    margin: 0;
    flex: 1;
}
.pricing-feature-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border), transparent);
    margin: 0 -30px 18px;
}
.pricing-features-title {
    font-size: .7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: var(--text-muted);
    margin-bottom: 14px;
}
.pricing-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    padding: 7px 0;
    font-size: .875rem;
    color: var(--text);
    line-height: 1.5;
}
.pricing-feature-item:last-child { padding-bottom: 14px; }
.pricing-feature-item.feature-excluded { color: #94a3b8; }
.pricing-feature-item.feature-excluded span:last-child { text-decoration: line-through; opacity: .7; }
.feature-check {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .7rem;
    margin-top: 1px;
    transition: transform .2s;
}
.feature-check-yes { background: rgba(16,185,129,.12); color: #059669; }
.feature-check-no { background: rgba(148,163,184,.1); color: #94a3b8; }
.pricing-card:hover .feature-check-yes { transform: scale(1.1); }

/* CTA */
.pricing-cta {
    padding: 6px 30px 28px;
    margin-top: auto;
}
.pricing-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 14px 20px;
    border-radius: 14px;
    border: 2px solid rgba(29,78,216,.25);
    color: var(--primary);
    font-weight: 700;
    font-size: .93rem;
    text-decoration: none;
    transition: all .3s cubic-bezier(.4,0,.2,1);
    background: #fff;
    letter-spacing: .2px;
    position: relative;
    overflow: hidden;
}
.pricing-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient);
    opacity: 0;
    transition: opacity .3s;
}
.pricing-btn:hover {
    border-color: transparent;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(29,78,216,.35);
}
.pricing-btn:hover::before { opacity: 1; }
.pricing-btn span, .pricing-btn i { position: relative; z-index: 1; }

.pricing-btn-featured {
    background: var(--gradient);
    border-color: transparent;
    color: #fff;
    box-shadow: 0 6px 20px rgba(29,78,216,.35);
}
.pricing-btn-featured::before { display: none; }
.pricing-btn-featured:hover {
    filter: brightness(1.06);
    box-shadow: 0 10px 30px rgba(29,78,216,.45);
}

.pricing-note {
    text-align: center;
    font-size: .73rem;
    color: var(--text-muted);
    margin: 10px 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}
.pricing-note i { color: #10B981; font-size: .7rem; }

/* ---- Comparison Trust Strip ---- */
.pricing-trust-strip {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 28px;
    margin: 48px 0 0;
    padding: 24px 32px;
    background: rgba(255,255,255,.8);
    backdrop-filter: blur(12px);
    border-radius: 20px;
    border: 1px solid var(--border);
    box-shadow: 0 4px 20px rgba(29,78,216,.04);
}
.pricing-trust-item {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: .85rem;
    font-weight: 600;
    color: var(--text);
}
.pricing-trust-item i {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .8rem;
    flex-shrink: 0;
}
.trust-i-green { background: rgba(16,185,129,.1); color: #059669; }
.trust-i-blue  { background: rgba(29,78,216,.1);  color: var(--primary); }
.trust-i-amber { background: rgba(245,158,11,.1); color: #D97706; }
.trust-i-purple{ background: rgba(124,58,237,.1); color: #7C3AED; }
.pricing-trust-divider {
    width: 1px; height: 28px;
    background: var(--border);
}

/* ---- Custom Quote Banner ---- */
.pricing-custom-banner {
    margin-top: 60px;
    background: linear-gradient(135deg, #0F172A 0%, #1E3A5F 100%);
    border-radius: 28px;
    padding: 44px 48px;
    position: relative;
    overflow: hidden;
}
.pricing-custom-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(59,130,246,.15) 0%, transparent 70%),
                radial-gradient(ellipse 40% 60% at 10% 30%, rgba(124,58,237,.1) 0%, transparent 70%);
}
.pricing-custom-banner-deco {
    position: absolute;
    right: 40px; top: 50%;
    transform: translateY(-50%);
    font-size: 8rem;
    opacity: .04;
    color: #fff;
    font-family: monospace;
    pointer-events: none;
    line-height: 1;
}
.pricing-custom-banner h4 {
    font-size: 1.55rem;
    font-weight: 800;
    margin-bottom: 10px;
    color: #fff;
}
.pricing-custom-banner p {
    color: rgba(255,255,255,.7);
    margin: 0;
    font-size: .95rem;
    line-height: 1.7;
    max-width: 560px;
}
.pricing-custom-banner .btn-white {
    background: #fff;
    color: var(--primary);
    border: none;
    font-weight: 700;
    padding: 12px 26px;
    border-radius: 12px;
    transition: var(--transition);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}
.pricing-custom-banner .btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,.25);
}
.pricing-custom-banner .btn-wa {
    background: rgba(37,211,102,.15);
    color: #25D366;
    border: 1.5px solid rgba(37,211,102,.3);
    font-weight: 700;
    padding: 12px 26px;
    border-radius: 12px;
    transition: var(--transition);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}
.pricing-custom-banner .btn-wa:hover {
    background: #25D366;
    color: #fff;
    border-color: transparent;
    transform: translateY(-2px);
}

/* ---- FAQ Accordion ---- */
.pricing-faq-section .accordion-item {
    background: #fff;
    border: 1.5px solid var(--border) !important;
    border-radius: 16px !important;
    margin-bottom: 10px;
    overflow: hidden;
    transition: border-color .3s, box-shadow .3s;
}
.pricing-faq-section .accordion-item:hover {
    border-color: rgba(29,78,216,.25) !important;
    box-shadow: 0 4px 20px rgba(29,78,216,.07);
}
.pricing-faq-section .accordion-button {
    font-weight: 600;
    font-size: .95rem;
    color: var(--dark);
    background: transparent;
    padding: 18px 24px;
    border-radius: 16px !important;
    box-shadow: none !important;
}
.pricing-faq-section .accordion-button:not(.collapsed) {
    color: var(--primary);
    background: rgba(29,78,216,.03);
}
.pricing-faq-section .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%231D4ED8'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}
.pricing-faq-section .accordion-body {
    padding: 0 24px 20px;
    color: var(--text-muted);
    line-height: 1.8;
    font-size: .9rem;
}

/* ---- Responsive ---- */
@media (max-width: 1199px) {
    .pricing-card-featured { transform: translateY(-4px) scale(1.015); }
}
@media (max-width: 991px) {
    .pricing-card-featured { transform: none; box-shadow: 0 8px 30px rgba(29,78,216,.15); }
    .pricing-card-featured:hover { transform: translateY(-8px); }
    .pricing-custom-banner { padding: 32px 28px; }
    .pricing-custom-banner-deco { display: none; }
    .pricing-tab-nav { border-radius: 16px; padding: 8px; gap: 4px; }
}
@media (max-width: 767px) {
    .pricing-custom-banner { padding: 28px 22px; }
    .pricing-trust-strip { gap: 16px; padding: 18px 20px; flex-direction: column; align-items: flex-start; }
    .pricing-trust-divider { display: none; }
    .pricing-number { font-size: 2.6rem; }
}
@media (max-width: 575px) {
    .pricing-tab-nav { padding: 5px; }
    .pricing-tab-btn { font-size: .8rem; padding: 8px 14px; }
    .pricing-name { font-size: 1.3rem; }
    .pricing-number { font-size: 2.4rem; }
    .pricing-card-header,
    .pricing-price-box,
    .pricing-features,
    .pricing-cta { padding-left: 20px; padding-right: 20px; }
    .pricing-feature-divider { margin: 0 -20px 14px; }
    .pricing-custom-banner h4 { font-size: 1.25rem; }
}