:root {
    /* Premium Light Palette */
    --primary: #0056b3;
    --primary-gradient: linear-gradient(135deg, #0056b3 0%, #00a8e8 100%);
    --secondary: #00897b;
    --accent: #fbc02d;
    --dark: #f8fafc;        /* Background */
    --white: #ffffff;
    --surface: #ffffff;
    
    /* Text */
    --text-primary: #0f172a;    /* Deep Navy */
    --text-body: #475569;       /* Grayish Blue */
    --text-muted: #94a3b8;
    
    /* Vanguard Light Tokens */
    --glass: rgba(255, 255, 255, 0.8);
    --glass-border: rgba(0, 86, 179, 0.1);
    --radius-vanguard: 30px;
    --container-xl: 1400px;
    --section-spacing: 160px;
    --shadow-premium: 0 10px 40px rgba(0, 0, 0, 0.05);
    
    /* Fonts */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

/* Reset & Light Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--white);
    color: var(--text-body);
    font-family: var(--font-body);
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    color: var(--text-primary);
    font-weight: 700;
}

a {
    text-decoration: none;
    transition: 0.3s;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}
/* --- Layout Utilities --- */
.container {
    max-width: var(--container-xl);
    margin: 0 auto;
    padding: 0 40px;
}

.section {
    padding: var(--section-spacing) 0;
}

.flex { display: flex; }
.flex-between { display: flex; justify-content: space-between; }
.flex-center { display: flex; justify-content: center; align-items: center; }
.align-center { align-items: center; }
.grid-v { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; }
.no-gap { gap: 0 !important; }

/* --- Vanguard Glassmorphism --- */
.glass-v {
    background: var(--glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-premium);
}

.glow-blob {
    position: fixed;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 86, 179, 0.05) 0%, transparent 70%);
    z-index: -1;
    filter: blur(80px);
}
.blob-1 { top: -10%; right: -10%; }
.blob-2 { bottom: -10%; left: -10%; }

/* --- Navigation --- */
.vanguard-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    padding: 20px 0;
    transition: background 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                padding 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.vanguard-nav.scrolled {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(20px);
    padding: 12px 0;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.08);
}

.desktop-nav a {
    color: var(--text-primary);
    font-weight: 600;
    margin-left: 24px;
    font-size: 0.88rem;
    opacity: 0.8;
    transition: 0.3s;
}

.desktop-nav a:hover, .desktop-nav a.active {
    opacity: 1;
    color: var(--primary);
}

.nav-cta {
    padding: 12px 24px;
    background: var(--primary-gradient);
    border-radius: 50px;
    color: var(--white) !important;
    opacity: 1 !important;
}

.logo img {
    height: 70px;
    width: auto;
}

/* On white/scrolled navbar, show colored logo */
.vanguard-nav.scrolled .logo img {
    filter: none;
}
/* On transparent navbar — make logo fully white */
.vanguard-nav:not(.scrolled) .logo img {
    filter: brightness(0) invert(1);
}
.vanguard-nav:not(.scrolled) .menu-trigger span {
    background: #fff;
}

/* Nav links white when transparent */
.vanguard-nav:not(.scrolled) .desktop-nav a {
    color: rgba(255, 255, 255, 0.85);
}
.vanguard-nav:not(.scrolled) .desktop-nav a:hover {
    color: #fff;
    opacity: 1;
}
.vanguard-nav:not(.scrolled) .desktop-nav a.active {
    color: #fff;
    opacity: 1;
}
/* Nav CTA stays styled */
.vanguard-nav:not(.scrolled) .desktop-nav .nav-cta {
    color: var(--white) !important;
}

.text-accent {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.btn-vanguard {
    padding: 18px 42px;
    font-weight: 700;
    border-radius: 50px;
    display: inline-flex;
    transition: 0.4s;
    font-size: 1.1rem;
    cursor: pointer;
    border: none;
}

.btn-vanguard.primary {
    background: var(--primary-gradient);
    color: var(--white);
}

.btn-vanguard.outline {
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    color: var(--white);
    margin-left: 20px;
}

.btn-vanguard:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

/* --- Stats Vanguard --- */
.stats-vanguard {
    display: flex;
    justify-content: space-between;
    padding: 60px;
    background: var(--white);
    border-radius: var(--radius-vanguard);
    margin-top: 40px;
    position: relative;
    z-index: 10;
    border: 1px solid var(--glass-border);
    box-shadow: 0 40px 80px rgba(0, 86, 179, 0.08);
    isolation: isolate;
}

.stat-val {
    font-size: 3.5rem;
    font-family: var(--font-heading);
    font-weight: 900;
    color: var(--primary);
}

.stat-label {
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 2px;
    color: var(--text-body);
}

/* --- Solutions Showcase --- */
.tag {
    display: inline-block;
    padding: 6px 18px;
    background: rgba(255,255,255,0.05);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent);
    margin-bottom: 20px;
}

.solutions-grid {
    display: flex;
    gap: 30px;
    margin-top: 60px;
}

.solution-card {
    flex: 1;
    border-radius: var(--radius-vanguard);
    overflow: hidden;
    padding: 40px;
    transition: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.solution-card .s-img {
    height: 300px;
    margin-bottom: 30px;
    border-radius: 20px;
    overflow: hidden;
}

.solution-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.6s;
}

.solution-card:hover img {
    transform: scale(1.1);
}

.active-card {
    background: var(--primary-gradient) !important;
}

.active-card h3, .active-card p, .active-card .btn-more {
    color: var(--white) !important;
}

.btn-more {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    margin-top: 30px;
    color: var(--accent);
}

/* --- Technology --- */
.tech-list {
    list-style: none;
    margin-top: 40px;
}

.tech-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 1.1rem;
    font-weight: 600;
}

.tech-list i {
    color: var(--accent);
}

/* --- Contact Vanguard --- */
.vanguard-contact {
    border-radius: var(--radius-vanguard) var(--radius-vanguard) 0 0;
    overflow: hidden;
}

.contact-v-info {
    padding: 100px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.v-contact-details {
    margin-top: 60px;
}

.v-detail {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.v-detail i { color: var(--accent); }

.contact-v-form {
    padding: 100px 80px;
    background: var(--white);
}

.v-form-group { margin-bottom: 25px; }

.v-form-group input, .v-form-group select, .v-form-group textarea {
    width: 100%;
    padding: 20px;
    background: var(--dark);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    color: var(--text-primary);
    font-family: inherit;
    outline: none;
}

.v-form-group input:focus {
    border-color: var(--accent);
}

.btn-vanguard.full { width: 100%; }

/* --- Footer --- */
.footer-vanguard {
    background: var(--dark);
    padding-top: 40px;
}

.border-top { border-top: 1px solid var(--glass-border); }

/* --- Mobile Nav Drawer --- */
.mobile-nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(320px, 85vw);
    z-index: 10000;
    background: #fff;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -8px 0 40px rgba(0, 0, 0, 0.12);
}

/* Backdrop */
.mobile-nav-overlay::before {
    content: '';
    position: fixed;
    inset: 0;
    right: min(320px, 85vw);
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    transition: opacity 0.38s ease;
    pointer-events: none;
}

.mobile-nav-overlay.open {
    transform: translateX(0);
}

.mobile-nav-overlay.open::before {
    opacity: 1;
    pointer-events: auto;
}

/* Drawer header */
.mobile-nav-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid var(--glass-border);
}

.mobile-nav-header .mobile-logo img {
    height: 64px;
    width: auto;
}

.mobile-nav-close {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(0,0,0,0.06);
    border: 1px solid var(--glass-border);
    cursor: pointer;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, color 0.2s;
    flex-shrink: 0;
}

.mobile-nav-close:hover {
    background: rgba(0, 86, 179, 0.08);
    color: var(--primary);
}

.mobile-nav-close svg {
    width: 18px;
    height: 18px;
}

/* Nav links */
.mobile-nav-links {
    flex: 1;
    overflow-y: auto;
    padding: 16px 16px 24px;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.mobile-nav-overlay a.mobile-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 13px 16px;
    border-radius: 12px;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    transition: background 0.2s, color 0.2s;
    letter-spacing: -0.01em;
}

.mobile-nav-overlay a.mobile-link:hover,
.mobile-nav-overlay a.mobile-link.active {
    background: rgba(0, 86, 179, 0.06);
    color: var(--primary);
}

/* CTA button at bottom */
.mobile-nav-footer {
    padding: 16px 16px 32px;
    border-top: 1px solid var(--glass-border);
}

.mobile-nav-overlay a.nav-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 14px 24px;
    background: var(--primary-gradient);
    color: var(--white) !important;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    border-radius: 12px;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 18px rgba(0, 86, 179, 0.3);
}

.mobile-nav-overlay a.nav-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(0, 86, 179, 0.4);
}

/* Contact info strip */
.mobile-nav-contact {
    padding: 0 16px 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mobile-nav-contact a {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.82rem;
    color: var(--text-muted);
    padding: 6px 0;
    transition: color 0.2s;
}

.mobile-nav-contact a:hover { color: var(--primary); }

.mobile-nav-contact svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    color: var(--primary);
}

/* --- Hamburger Menu Trigger --- */
.menu-trigger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: 0.3s;
    z-index: 1001;
}

.menu-trigger:hover { background: rgba(0, 86, 179, 0.06); }

.menu-trigger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
}

.menu-trigger.active span:nth-child(1) {
    transform: none;
}

.menu-trigger.active span:nth-child(2) {
    transform: none;
}

/* --- Active Nav Link --- */
.desktop-nav a.active {
    opacity: 1;
    color: var(--primary);
}

/* --- Clients Marquee --- */
.clients-vanguard {
    overflow: hidden;
    padding: 50px 0;
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    background: var(--white);
}

.clients-track {
    display: flex;
    gap: 80px;
    width: max-content;
    animation: marquee 20s linear infinite;
}

.clients-track:hover { animation-play-state: paused; }

.clients-track span {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-muted);
    white-space: nowrap;
    transition: color 0.3s;
    cursor: default;
}

.clients-track span:hover { color: var(--primary); }

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* --- Enhanced Solution Cards --- */
.solution-card {
    cursor: pointer;
}

.solution-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-vanguard);
    border: 2px solid transparent;
    transition: border-color 0.4s ease;
    pointer-events: none;
}

.solution-card:hover::after {
    border-color: rgba(0, 86, 179, 0.2);
}

.solution-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(0, 86, 179, 0.12);
}

.active-card:hover::after {
    border-color: rgba(255, 255, 255, 0.3);
}

/* --- Enhanced Form Fields --- */
.v-form-group input,
.v-form-group select,
.v-form-group textarea {
    transition: border-color 0.3s, box-shadow 0.3s, background 0.3s;
}

.v-form-group input:focus,
.v-form-group select:focus,
.v-form-group textarea:focus {
    border-color: var(--primary);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(0, 86, 179, 0.08);
    outline: none;
}

.v-form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* --- Enhanced Footer --- */
.footer-vanguard {
    background: var(--text-primary);
    color: rgba(255, 255, 255, 0.6);
    padding-top: 0;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 50px;
    padding: 80px 0 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand p {
    font-size: 0.95rem;
    line-height: 1.8;
    margin-top: 20px;
    max-width: 300px;
    color: rgba(255, 255, 255, 0.5);
}

.footer-brand .logo img {
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.footer-col h4 {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 25px;
}

.footer-col ul li {
    margin-bottom: 14px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.95rem;
    transition: 0.3s;
}

.footer-col ul li a:hover {
    color: var(--accent);
    padding-left: 6px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 0;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.35);
}

.social-v {
    display: flex;
    gap: 12px;
}

.social-v a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.5);
    transition: 0.3s;
}

.social-v a:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
}

.social-v a i {
    width: 16px;
    height: 16px;
}

/* --- About Section Enhancements --- */
.about-vanguard .vanguard-features {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.v-feat {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    border-radius: 20px;
    background: var(--dark);
    border: 1px solid var(--glass-border);
    transition: 0.3s;
}

.v-feat:hover {
    border-color: rgba(0, 86, 179, 0.2);
    box-shadow: 0 8px 30px rgba(0, 86, 179, 0.06);
    transform: translateX(6px);
}

.v-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: var(--primary-gradient);
    border-radius: 14px;
    color: var(--white);
}

.v-icon i {
    width: 22px;
    height: 22px;
}

.v-feat h3 {
    font-size: 1rem;
    margin-bottom: 6px;
    color: var(--text-primary);
}

.v-feat p {
    font-size: 0.9rem;
    color: var(--text-body);
    line-height: 1.6;
}

/* --- Tech List Enhancements --- */
.tech-list li {
    padding: 16px 20px;
    border-radius: 14px;
    background: var(--dark);
    border: 1px solid var(--glass-border);
    transition: 0.3s;
}

.tech-list li:hover {
    border-color: rgba(0, 86, 179, 0.2);
    background: rgba(0, 86, 179, 0.04);
    transform: translateX(6px);
}

.tech-list i {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

/* --- Section Header Spacing --- */
.section-header {
    margin-bottom: 20px;
}

.section-header h2 {
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    line-height: 1.15;
}

/* --- Stat Item Hover --- */
.stat-item {
    text-align: center;
    padding: 20px 40px;
    border-radius: 20px;
    transition: 0.3s;
    cursor: default;
}

.stat-item:hover {
    background: rgba(0, 86, 179, 0.04);
}

/* --- Scroll to Top Button --- */
.scroll-top-btn {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary-gradient);
    color: var(--white);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(0, 86, 179, 0.35);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s, transform 0.4s;
    z-index: 500;
}

.scroll-top-btn.visible {
    opacity: 1;
    transform: translateY(0);
}

.scroll-top-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(0, 86, 179, 0.5);
}

.scroll-top-btn i {
    width: 20px;
    height: 20px;
}

/* --- Mobile --- */
@media (max-width: 1024px) {
    .grid-v { grid-template-columns: 1fr; gap: 60px; }
    .solutions-grid { flex-direction: column; }
    .stats-vanguard { flex-direction: column; gap: 40px; text-align: center; }
    .menu-trigger { display: flex; }
    .desktop-nav { display: none; }
    .footer-main { grid-template-columns: 1fr; gap: 40px; }
    .footer-bottom { flex-direction: column; gap: 20px; text-align: center; }
    .scroll-top-btn { bottom: 24px; right: 24px; }
}

@media (max-width: 640px) {
    .container { padding: 0 20px; }
    .stats-vanguard { padding: 40px 30px; }
    .contact-v-info, .contact-v-form { padding: 60px 30px; }
    .section { padding: 100px 0; }
}

/* ============================================================
   NEW HOMEPAGE SECTIONS — Added styles
   ============================================================ */

/* --- Animate Up utility --- */
.animate-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.animate-up.in-view {
    opacity: 1;
    transform: translateY(0);
}

/* --- Stats Bar (4 stats) --- */
.stats-vanguard {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    padding: 50px 60px;
    background: var(--white);
    border-radius: var(--radius-vanguard);
    margin-top: -60px;
    position: relative;
    z-index: 10;
    border: 1px solid var(--glass-border);
    box-shadow: 0 40px 80px rgba(0, 86, 179, 0.08);
}

.stats-vanguard .stat-item {
    text-align: center;
    padding: 20px 30px;
    border-right: 1px solid var(--glass-border);
}

.stats-vanguard .stat-item:last-child {
    border-right: none;
}

/* --- About Section Image --- */
.vanguard-media {
    position: relative;
}

.about-img-wrap {
    position: relative;
    border-radius: var(--radius-vanguard);
    overflow: visible;
}

.about-main-img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: var(--radius-vanguard);
    display: block;
    box-shadow: 0 30px 80px rgba(0, 86, 179, 0.15);
}

.about-badge {
    position: absolute;
    bottom: -24px;
    right: -24px;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--white);
    border: 2px solid var(--glass-border);
    box-shadow: 0 20px 50px rgba(0, 86, 179, 0.18);
    z-index: 5;
    padding: 10px;
}

.about-badge-num {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
}

.about-badge-txt {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-body);
    line-height: 1.4;
    margin-top: 4px;
}

/* --- p-lead paragraph --- */
.p-lead {
    font-size: 1.05rem;
    color: var(--text-body);
    line-height: 1.8;
    margin: 20px 0 10px;
}

/* --- Section subtext --- */
.section-subtext {
    font-size: 1rem;
    color: var(--text-body);
    max-width: 560px;
    margin: 16px auto 0;
    line-height: 1.75;
}

/* --- Services Grid (6 cards, 3 columns) --- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 60px;
}

.service-card {
    border-radius: 24px;
    padding: 40px 36px;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
    border: 1px solid var(--glass-border);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--primary-gradient);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(0, 86, 179, 0.12);
    border-color: rgba(0, 86, 179, 0.2);
}

.service-card:hover::before {
    opacity: 1;
}

.service-icon {
    width: 58px;
    height: 58px;
    background: var(--primary-gradient);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--white);
}

.service-icon i {
    width: 26px;
    height: 26px;
}

.service-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.service-card p {
    font-size: 0.92rem;
    color: var(--text-body);
    line-height: 1.7;
}

.service-card .btn-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--primary);
    margin-top: 24px;
    transition: gap 0.3s ease;
}

.service-card .btn-more:hover {
    gap: 12px;
}

.service-card .btn-more i {
    width: 16px;
    height: 16px;
}

/* --- Why Choose Us Section --- */
.why-choose-us {
    background: var(--text-primary);
    position: relative;
    overflow: hidden;
}

.why-choose-us::before {
    content: '';
    position: absolute;
    top: -200px; right: -200px;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(0, 86, 179, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.why-choose-us .tag-light {
    background: rgba(255, 255, 255, 0.08);
    color: var(--accent);
}

.why-choose-us .text-white {
    color: var(--white);
    -webkit-text-fill-color: var(--white);
    background: none;
}

.why-choose-us .text-white-muted {
    color: rgba(255, 255, 255, 0.55);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 60px;
}

.why-card {
    padding: 44px 36px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
    transition: background 0.35s ease, border-color 0.35s ease, transform 0.35s ease;
}

.why-card:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(0, 86, 179, 0.4);
    transform: translateY(-6px);
}

.why-icon {
    width: 58px;
    height: 58px;
    background: var(--primary-gradient);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--white);
}

.why-icon i {
    width: 26px;
    height: 26px;
}

.why-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 14px;
}

.why-card p {
    font-size: 0.93rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.75;
}

/* --- Clients Section --- */
.clients-section {
    background: var(--white);
    padding-bottom: 0;
}

.clients-section .clients-vanguard {
    margin-top: 60px;
}

.clients-dot {
    color: var(--accent) !important;
    font-size: 1.2rem !important;
    opacity: 0.7;
}

/* --- CTA Banner --- */
.cta-banner {
    background: var(--primary-gradient);
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -150px; right: -150px;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
    pointer-events: none;
}

.cta-banner::after {
    content: '';
    position: absolute;
    bottom: -100px; left: -100px;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(0,0,0,0.1) 0%, transparent 70%);
    pointer-events: none;
}

.cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    position: relative;
    z-index: 2;
}

.cta-text h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 14px;
}

.cta-text p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.75;
    max-width: 520px;
}

.cta-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}

.cta-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    background: var(--white);
    color: var(--primary);
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: 100px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    white-space: nowrap;
}

.cta-btn-primary i {
    width: 18px;
    height: 18px;
}

.cta-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
}

.cta-btn-outline {
    display: inline-flex;
    align-items: center;
    padding: 15px 34px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: var(--white);
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
    white-space: nowrap;
}

.cta-btn-outline:hover {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.8);
    transform: translateY(-3px);
}

/* --- Responsive overrides for new sections --- */
@media (max-width: 1024px) {
    .stats-vanguard {
        grid-template-columns: repeat(2, 1fr);
        margin-top: 20px;
    }
    .stats-vanguard .stat-item:nth-child(2) {
        border-right: none;
    }
    .stats-vanguard .stat-item:nth-child(3) {
        border-right: 1px solid var(--glass-border);
        border-top: 1px solid var(--glass-border);
    }
    .stats-vanguard .stat-item:nth-child(4) {
        border-right: none;
        border-top: 1px solid var(--glass-border);
    }
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .why-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .cta-inner {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }
    .cta-text p {
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .about-main-img {
        height: 360px;
    }
    .about-badge {
        right: 10px;
        bottom: -16px;
        width: 110px;
        height: 110px;
    }
    .about-badge-num {
        font-size: 2.2rem;
    }
    .services-grid {
        grid-template-columns: 1fr;
    }
    .cta-actions {
        flex-direction: column;
        width: 100%;
    }
    .cta-btn-primary,
    .cta-btn-outline {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 640px) {
    .stats-vanguard {
        grid-template-columns: repeat(2, 1fr);
        padding: 30px 20px;
    }
    .stats-vanguard .stat-item {
        padding: 16px 10px;
    }
}

/* ============================================================
   HOMEPAGE REDESIGN — NEW SECTIONS
   ============================================================ */

/* --- Stats Bar --- */
.stats-vanguard {
    display: flex;
    justify-content: space-between;
    padding: 50px 60px;
    background: var(--white);
    border-radius: var(--radius-vanguard);
    margin-top: 40px;
    position: relative;
    z-index: 10;
    border: 1px solid var(--glass-border);
    box-shadow: 0 20px 60px rgba(0, 86, 179, 0.08);
}

/* --- About Section --- */
.about-section { background: var(--white); }

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-content h2 {
    font-size: clamp(2rem, 3.5vw, 3rem);
    line-height: 1.15;
    margin-bottom: 20px;
    margin-top: 12px;
}

.about-lead {
    font-size: 1.1rem;
    color: var(--text-body);
    line-height: 1.8;
    margin-bottom: 16px;
    font-weight: 400;
}

.about-body {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 36px;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 36px;
}

.about-feat {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 18px 20px;
    border-radius: 16px;
    background: var(--dark);
    border: 1px solid var(--glass-border);
    transition: 0.3s;
}

.about-feat:hover {
    border-color: rgba(0, 86, 179, 0.2);
    transform: translateX(6px);
    box-shadow: 0 6px 20px rgba(0, 86, 179, 0.06);
}

.about-feat-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: var(--primary-gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.about-feat-icon i { width: 20px; height: 20px; }

.about-feat h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.about-feat p {
    font-size: 0.85rem;
    color: var(--text-body);
    line-height: 1.5;
    margin: 0;
}

.btn-primary-solid {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: var(--primary-gradient);
    color: var(--white);
    font-weight: 700;
    font-size: 0.92rem;
    border-radius: 100px;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 6px 24px rgba(0, 86, 179, 0.3);
}

.btn-primary-solid:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(0, 86, 179, 0.45);
    color: var(--white);
}

.btn-primary-solid i { width: 16px; height: 16px; }

/* About media */
.about-media { position: relative; }

.about-img-wrap {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.12);
}

.about-img-wrap img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.about-img-wrap:hover img { transform: scale(1.04); }

.about-badge {
    position: absolute;
    bottom: 30px;
    right: -20px;
    background: var(--primary-gradient);
    color: var(--white);
    padding: 20px 24px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 86, 179, 0.4);
}

.about-badge .badge-num {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 900;
    line-height: 1;
}

.about-badge .badge-txt {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    opacity: 0.9;
    line-height: 1.4;
    margin-top: 4px;
}

.about-img-accent {
    position: absolute;
    top: -15px;
    left: -15px;
    width: 80px;
    height: 80px;
    border: 3px solid var(--primary);
    border-radius: 20px;
    opacity: 0.3;
    pointer-events: none;
}

/* --- Services Section --- */
.services-section { background: var(--dark); }

.section-sub {
    font-size: 1rem;
    color: var(--text-body);
    max-width: 560px;
    margin: 12px auto 0;
    line-height: 1.7;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 56px;
}

.service-card {
    padding: 36px 30px;
    border-radius: 24px;
    transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--primary-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-card:hover::before { transform: scaleX(1); }

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 60px rgba(0, 86, 179, 0.12);
}

.service-icon-wrap {
    width: 56px;
    height: 56px;
    background: rgba(0, 86, 179, 0.08);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    margin-bottom: 20px;
    transition: 0.3s;
}

.service-card:hover .service-icon-wrap {
    background: var(--primary-gradient);
    color: var(--white);
}

.service-icon-wrap i { width: 24px; height: 24px; }

.service-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.service-card p {
    font-size: 0.88rem;
    color: var(--text-body);
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary);
    transition: gap 0.3s;
}

.service-link:hover { gap: 10px; color: var(--primary); }
.service-link i { width: 14px; height: 14px; }

.services-cta {
    text-align: center;
    margin-top: 48px;
}

/* --- Why Choose Us --- */
.why-section { background: var(--white); }

.why-heading { color: var(--text-primary); }
.why-sub { color: var(--text-body); }

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 56px;
}

.why-card {
    padding: 36px 28px;
    border-radius: 24px;
    border: 1px solid var(--glass-border);
    background: var(--dark);
    transition: 0.3s;
}

.why-card:hover {
    border-color: rgba(0, 86, 179, 0.2);
    box-shadow: 0 16px 40px rgba(0, 86, 179, 0.07);
    transform: translateY(-4px);
}

.why-card-featured {
    background: var(--primary-gradient);
    border-color: transparent;
}

.why-card-featured h3,
.why-card-featured p { color: var(--white) !important; }

.why-card-featured .why-icon {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.why-icon {
    width: 52px;
    height: 52px;
    background: rgba(0, 86, 179, 0.08);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    margin-bottom: 20px;
}

.why-icon i { width: 22px; height: 22px; }

.why-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.why-card p {
    font-size: 0.88rem;
    color: var(--text-body);
    line-height: 1.7;
    margin: 0;
}

/* --- Clients Section --- */
.clients-vanguard {
    overflow: hidden;
    background: var(--white);
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
}

.clients-section-header {
    text-align: center;
    padding: 40px 0 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.clients-track {
    display: flex;
    gap: 80px;
    width: max-content;
    animation: marquee 22s linear infinite;
    padding-bottom: 40px;
}

.clients-track:hover { animation-play-state: paused; }

.clients-track span {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-muted);
    white-space: nowrap;
    transition: color 0.3s;
    cursor: default;
}

.clients-track span:hover { color: var(--primary); }

@keyframes marquee {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* --- CTA Banner --- */
.cta-banner { background: var(--dark); }

.cta-inner {
    background: var(--primary-gradient);
    border-radius: 28px;
    padding: 70px 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    box-shadow: 0 20px 60px rgba(0, 86, 179, 0.25);
    position: relative;
    overflow: hidden;
}

.cta-inner::before {
    content: '';
    position: absolute;
    top: -60px; right: -60px;
    width: 300px; height: 300px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    pointer-events: none;
}

.cta-inner::after {
    content: '';
    position: absolute;
    bottom: -80px; left: -40px;
    width: 250px; height: 250px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    pointer-events: none;
}

.cta-text h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 10px;
    line-height: 1.2;
}

.cta-text p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
    margin: 0;
}

.cta-actions {
    display: flex;
    gap: 14px;
    flex-shrink: 0;
    flex-wrap: wrap;
}

.cta-btn-white {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 30px;
    background: var(--white);
    color: var(--primary);
    font-weight: 700;
    font-size: 0.92rem;
    border-radius: 100px;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    white-space: nowrap;
}

.cta-btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
    color: var(--primary);
}

.cta-btn-white i { width: 16px; height: 16px; }

.cta-btn-outline {
    display: inline-flex;
    align-items: center;
    padding: 13px 28px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: var(--white);
    font-weight: 600;
    font-size: 0.92rem;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    transition: background 0.3s, border-color 0.3s, transform 0.3s;
    white-space: nowrap;
}

.cta-btn-outline:hover {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.8);
    transform: translateY(-2px);
    color: var(--white);
}

/* --- Section Header --- */
.section-header { margin-bottom: 0; }
.section-header h2 { font-size: clamp(2rem, 3.5vw, 3rem); line-height: 1.15; margin-top: 10px; }

/* --- Tag variants --- */
.tag-light {
    background: rgba(0, 86, 179, 0.08);
    color: var(--primary);
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    .about-grid    { grid-template-columns: 1fr; gap: 50px; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .why-grid      { grid-template-columns: repeat(2, 1fr); }
    .about-badge   { right: 10px; }
    .cta-inner     { flex-direction: column; text-align: center; padding: 50px 40px; }
    .cta-actions   { justify-content: center; }
}

@media (max-width: 640px) {
    .stats-vanguard { flex-direction: column; gap: 30px; text-align: center; padding: 40px 24px; }
    .services-grid  { grid-template-columns: 1fr; }
    .why-grid       { grid-template-columns: 1fr; }
    .cta-inner      { padding: 40px 24px; }
    .about-img-wrap img { height: 320px; }
}

/* ============================================================
   STATS BAND — Full-width light strip
   ============================================================ */
.stats-band {
    background: var(--white);
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    position: relative;
    overflow: hidden;
}

/* Subtle dot pattern overlay */
.stats-band::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(0,86,179,0.06) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
}

/* Accent glow */
.stats-band::after {
    content: '';
    position: absolute;
    top: -80px; right: -80px;
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(0,86,179,0.06) 0%, transparent 70%);
    pointer-events: none;
}

.stats-band-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 56px 40px;
    position: relative;
    z-index: 1;
}

.stats-band-item {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
    justify-content: center;
}

.stats-band-num {
    font-family: var(--font-heading);
    font-size: clamp(2.8rem, 4vw, 4rem);
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
    letter-spacing: -0.03em;
}

.stats-band-plus {
    font-size: 0.55em;
    color: var(--accent);
    vertical-align: super;
    font-weight: 700;
}

.stats-band-divider {
    width: 1px;
    height: 36px;
    background: var(--glass-border);
    flex-shrink: 0;
}

.stats-band-label {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-body);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    line-height: 1.5;
}

.stats-band-sep {
    width: 1px;
    height: 60px;
    background: var(--glass-border);
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .stats-band-inner {
        flex-wrap: wrap;
        gap: 32px;
        padding: 40px 24px;
    }
    .stats-band-item { flex: 0 0 calc(50% - 16px); justify-content: flex-start; }
    .stats-band-sep  { display: none; }
}

/* ============================================================
   LOGO SWAP — white when transparent nav, colored when scrolled
   ============================================================ */
.logo-white { display: block; }
.logo-color { display: none; }

.vanguard-nav.scrolled .logo-white { display: none; }
.vanguard-nav.scrolled .logo-color { display: block; }

/* ============================================================
   ABOUT SPLIT — Full-bleed image left, content right
   ============================================================ */
.about-split {
    display: flex;
    min-height: 680px;
    position: relative;
}

/* ── Left: image panel ── */
.about-split-img {
    flex: 0 0 48%;
    position: relative;
    overflow: hidden;
}

.about-split-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 8s cubic-bezier(0.2, 0, 0.2, 1);
}

.about-split:hover .about-split-img img {
    transform: scale(1.04);
}

/* Subtle dark gradient on right edge so it blends into content */
.about-split-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        transparent 60%,
        rgba(248, 250, 252, 0.95) 100%
    );
    pointer-events: none;
}

/* Floating experience chip */
.about-exp-chip {
    position: absolute;
    bottom: 48px;
    left: 40px;
    background: var(--primary-gradient);
    color: #fff;
    padding: 18px 24px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 12px 40px rgba(0, 86, 179, 0.4);
}

.about-exp-num {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.03em;
}

.about-exp-txt {
    font-size: 0.75rem;
    font-weight: 600;
    line-height: 1.5;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ── Right: content panel ── */
.about-split-content {
    flex: 1;
    background: var(--dark);
    display: flex;
    align-items: center;
}

.about-split-inner {
    display: flex;
    align-items: stretch;
    width: 100%;
    height: 100%;
    padding: 80px 72px 80px 60px;
    gap: 32px;
}

/* Vertical blue accent line */
.about-split-accent-line {
    width: 4px;
    min-height: 100%;
    background: linear-gradient(to bottom, transparent, var(--primary), transparent);
    border-radius: 2px;
    flex-shrink: 0;
    opacity: 0.5;
}

.about-split-body {
    flex: 1;
}

.about-split-body .tag {
    margin-bottom: 14px;
}

.about-split-heading {
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    line-height: 1.15;
    margin-bottom: 28px;
    margin-top: 10px;
    color: var(--text-primary);
}

/* Quote block */
.about-split-quote {
    position: relative;
    padding: 20px 24px;
    background: var(--white);
    border-radius: 16px;
    border-left: 3px solid var(--primary);
    margin-bottom: 20px;
    box-shadow: 0 4px 20px rgba(0, 86, 179, 0.06);
}

.about-quote-icon {
    position: absolute;
    top: -10px;
    left: 20px;
    width: 28px;
    height: 28px;
    color: var(--primary);
    opacity: 0.3;
}

.about-split-quote p {
    font-size: 1rem;
    color: var(--text-body);
    line-height: 1.75;
    font-style: italic;
    margin: 0;
}

.about-split-para {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 28px;
}

/* Pill tags */
.about-split-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 32px;
}

.about-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--white);
    border: 1px solid var(--glass-border);
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-primary);
    transition: 0.3s;
}

.about-pill:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(0, 86, 179, 0.04);
}

.about-pill i {
    width: 14px;
    height: 14px;
    color: var(--primary);
    flex-shrink: 0;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
    .about-split {
        flex-direction: column;
        min-height: auto;
    }
    .about-split-img {
        flex: 0 0 420px;
        height: 420px;
    }
    .about-split-overlay {
        background: linear-gradient(
            to bottom,
            transparent 60%,
            rgba(248, 250, 252, 0.95) 100%
        );
    }
    .about-split-content { padding: 0; }
    .about-split-inner   { padding: 50px 32px; }
    .about-exp-chip      { bottom: 24px; left: 24px; }
}

@media (max-width: 640px) {
    .about-split-img { flex: 0 0 300px; height: 300px; }
    .about-split-inner { padding: 40px 20px; gap: 16px; }
    .about-split-heading { font-size: 1.8rem; }
    .about-split-accent-line { display: none; }
}

/* ============================================================
   ABOUT MINIMAL
   ============================================================ */
.about-min { background: var(--white); }

/* Header */
.about-min-header {
    margin-bottom: 56px;
}

.about-min-tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 14px;
}

.about-min-heading {
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 800;
    line-height: 1.15;
    color: var(--text-primary);
    max-width: 640px;
}

/* Body: image + text */
.about-min-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

/* Image */
.about-min-img {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.about-min-img img {
    width: 100%;
    height: 460px;
    object-fit: cover;
    display: block;
    border-radius: 20px;
    transition: transform 0.6s ease;
}

.about-min-img:hover img { transform: scale(1.03); }

.about-min-chip {
    position: absolute;
    bottom: 24px;
    right: 24px;
    background: var(--primary-gradient);
    color: #fff;
    padding: 14px 20px;
    border-radius: 14px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(0,86,179,0.35);
    line-height: 1;
}

.about-min-chip-num {
    display: block;
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 900;
    letter-spacing: -0.03em;
}

.about-min-chip-txt {
    display: block;
    font-size: 0.7rem;
    font-weight: 600;
    opacity: 0.85;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 2px;
}

/* Text */
.about-min-lead {
    font-size: 1.05rem;
    color: var(--text-primary);
    font-weight: 500;
    line-height: 1.75;
    margin-bottom: 16px;
}

.about-min-para {
    font-size: 0.92rem;
    color: var(--text-body);
    line-height: 1.8;
    margin-bottom: 28px;
}

.about-min-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 36px;
}

.about-min-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    color: var(--text-body);
    font-weight: 500;
}

.about-min-item i {
    width: 18px;
    height: 18px;
    color: var(--primary);
    flex-shrink: 0;
}

.about-min-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary);
    border-bottom: 2px solid rgba(0,86,179,0.2);
    padding-bottom: 4px;
    transition: gap 0.3s, border-color 0.3s;
}

.about-min-link:hover {
    gap: 14px;
    border-color: var(--primary);
    color: var(--primary);
}

.about-min-link i { width: 16px; height: 16px; }

/* Responsive */
@media (max-width: 900px) {
    .about-min-body { grid-template-columns: 1fr; gap: 40px; }
    .about-min-img img { height: 320px; }
    .about-min-heading { font-size: 2rem; }
}

/* ============================================================
   SERVICES SECTION — Image-top cards with hover overlay
   ============================================================ */
.svc-section { background: var(--dark); }

/* Header row: heading left, sub right */
.svc-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 52px;
}

.svc-header-sub {
    font-size: 0.95rem;
    color: var(--text-body);
    line-height: 1.7;
    max-width: 380px;
    flex-shrink: 0;
    padding-bottom: 6px;
}

/* 3-column grid */
.svc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* Card */
.svc-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    transition: transform 0.35s cubic-bezier(0.4,0,0.2,1),
                box-shadow 0.35s cubic-bezier(0.4,0,0.2,1);
}

.svc-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0,86,179,0.1);
}

/* Image area */
.svc-img {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.svc-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4,0,0.2,1);
    display: block;
}

.svc-card:hover .svc-img img {
    transform: scale(1.08);
}

/* Hover overlay */
.svc-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,86,179,0.88), rgba(0,168,232,0.82));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.35s ease;
}

.svc-card:hover .svc-img-overlay {
    opacity: 1;
}

.svc-overlay-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: rgba(255,255,255,0.15);
    border: 1.5px solid rgba(255,255,255,0.5);
    color: #fff;
    font-weight: 700;
    font-size: 0.85rem;
    border-radius: 100px;
    backdrop-filter: blur(8px);
    transition: background 0.2s, transform 0.2s;
    white-space: nowrap;
}

.svc-overlay-btn:hover {
    background: rgba(255,255,255,0.25);
    transform: scale(1.04);
    color: #fff;
}

.svc-overlay-btn i { width: 14px; height: 14px; }

/* Card body */
.svc-body {
    padding: 24px 26px 28px;
}

.svc-icon {
    width: 44px;
    height: 44px;
    background: rgba(0,86,179,0.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    margin-bottom: 14px;
    transition: background 0.3s, color 0.3s;
}

.svc-card:hover .svc-icon {
    background: var(--primary-gradient);
    color: #fff;
}

.svc-icon i { width: 20px; height: 20px; }

.svc-body h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
    line-height: 1.3;
}

.svc-body p {
    font-size: 0.85rem;
    color: var(--text-body);
    line-height: 1.7;
    margin: 0;
}

/* Footer CTA */
.svc-footer {
    text-align: center;
    margin-top: 44px;
}

/* Responsive */
@media (max-width: 1024px) {
    .svc-grid   { grid-template-columns: repeat(2, 1fr); }
    .svc-header { flex-direction: column; align-items: flex-start; gap: 12px; }
    .svc-header-sub { max-width: 100%; }
}

@media (max-width: 640px) {
    .svc-grid { grid-template-columns: 1fr; }
    .svc-img  { height: 200px; }
}

/* ============================================================
   SERVICES — Tabbed layout
   ============================================================ */
.svc-tab-section { background: var(--dark); }

.svc-tab-header { margin-bottom: 48px; }

.svc-tab-layout {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 0;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    box-shadow: 0 8px 40px rgba(0,86,179,0.06);
    min-height: 480px;
}

/* ── Tab list (left) ── */
.svc-tab-list {
    background: var(--white);
    border-right: 1px solid var(--glass-border);
    display: flex;
    flex-direction: column;
}

.svc-tab {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 22px 24px;
    border: none;
    background: none;
    cursor: pointer;
    text-align: left;
    border-bottom: 1px solid var(--glass-border);
    transition: background 0.25s, color 0.25s;
    position: relative;
}

.svc-tab:last-child { border-bottom: none; }

.svc-tab::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 3px;
    background: var(--primary-gradient);
    transform: scaleY(0);
    transition: transform 0.25s cubic-bezier(0.4,0,0.2,1);
    border-radius: 0 2px 2px 0;
}

.svc-tab.active::before,
.svc-tab:hover::before { transform: scaleY(1); }

.svc-tab.active,
.svc-tab:hover { background: rgba(0,86,179,0.04); }

.svc-tab-num {
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--text-muted);
    min-width: 22px;
    transition: color 0.25s;
}

.svc-tab.active .svc-tab-num { color: var(--primary); }

.svc-tab-name {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-body);
    flex: 1;
    line-height: 1.3;
    transition: color 0.25s;
}

.svc-tab.active .svc-tab-name { color: var(--text-primary); }

.svc-tab-arrow {
    width: 14px; height: 14px;
    color: var(--text-muted);
    opacity: 0;
    transform: translateX(-4px);
    transition: opacity 0.25s, transform 0.25s, color 0.25s;
    flex-shrink: 0;
}

.svc-tab.active .svc-tab-arrow,
.svc-tab:hover .svc-tab-arrow {
    opacity: 1;
    transform: translateX(0);
    color: var(--primary);
}

/* ── Panels (right) ── */
.svc-tab-panels { position: relative; background: var(--white); }

.svc-panel {
    display: none;
    height: 100%;
}

.svc-panel.active { display: flex; flex-direction: column; height: 100%; }

.svc-panel-img {
    flex: 0 0 280px;
    overflow: hidden;
}

.svc-panel-img img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.svc-panel.active .svc-panel-img img { transform: scale(1.02); }

.svc-panel-content {
    flex: 1;
    padding: 32px 36px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.svc-panel-content h3 {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 14px;
    line-height: 1.2;
}

.svc-panel-content p {
    font-size: 0.92rem;
    color: var(--text-body);
    line-height: 1.8;
    margin-bottom: 24px;
}

/* Responsive */
@media (max-width: 900px) {
    .svc-tab-layout {
        grid-template-columns: 1fr;
    }
    .svc-tab-list {
        border-right: none;
        border-bottom: 1px solid var(--glass-border);
        flex-direction: row;
        overflow-x: auto;
        flex-wrap: nowrap;
    }
    .svc-tab {
        flex-direction: column;
        align-items: flex-start;
        min-width: 160px;
        border-bottom: none;
        border-right: 1px solid var(--glass-border);
        padding: 16px 18px;
    }
    .svc-tab::before {
        top: 0; left: 0; right: 0; bottom: auto;
        width: auto; height: 3px;
        border-radius: 0 0 2px 2px;
    }
    .svc-tab-arrow { display: none; }
    .svc-panel-img { flex: 0 0 220px; }
    .svc-panel-img img { height: 220px; }
}

@media (max-width: 640px) {
    .svc-tab-layout { border-radius: 16px; }
    .svc-panel-content { padding: 24px 20px; }
    .svc-panel-content h3 { font-size: 1.2rem; }
}

/* ============================================================
   SERVICES — Asymmetric mosaic grid
   ============================================================ */
.svc-mosaic-section { background: var(--dark); }

.svc-mosaic {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 380px 260px;
    gap: 12px;
    margin-top: 48px;
}

/* Base block */
.svc-block {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    cursor: pointer;
    transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
}

.svc-block:hover { transform: scale(1.015); }

/* Overlay — dark gradient from bottom */
.svc-block-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(5, 15, 35, 0.92) 0%,
        rgba(5, 15, 35, 0.4)  50%,
        rgba(5, 15, 35, 0.1)  100%
    );
    transition: background 0.4s ease;
}

.svc-block:hover .svc-block-overlay {
    background: linear-gradient(
        to top,
        rgba(0, 86, 179, 0.88) 0%,
        rgba(0, 86, 179, 0.3)  55%,
        rgba(0, 86, 179, 0.05) 100%
    );
}

/* Content pinned to bottom */
.svc-block-content {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 28px 28px 28px;
    z-index: 2;
}

.svc-block-num {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: rgba(255,255,255,0.5);
    margin-bottom: 8px;
    text-transform: uppercase;
}

.svc-block-content h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
    line-height: 1.25;
}

.svc-block-content p {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
    margin-bottom: 14px;
    max-width: 320px;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.svc-block:hover .svc-block-content p {
    opacity: 1;
    transform: translateY(0);
}

.svc-block-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    font-weight: 700;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: color 0.3s, gap 0.3s;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity 0.35s ease 0.05s, transform 0.35s ease 0.05s, color 0.2s, gap 0.2s;
}

.svc-block:hover .svc-block-link {
    opacity: 1;
    transform: translateY(0);
    color: #fff;
}

.svc-block-link:hover { gap: 10px; color: #fff; }
.svc-block-link i { width: 13px; height: 13px; }

/* Grid placement */
/* Large block: spans 2 cols, 1 row */
.svc-block-lg {
    grid-column: span 2;
    grid-row: 1;
}

.svc-block-lg .svc-block-content h3 { font-size: 1.5rem; }

/* Medium blocks: 1 col each, row 1 */
.svc-block-md {
    grid-column: span 1;
    grid-row: 1;
}

/* Small blocks: 1 col each, row 2 */
.svc-block-sm {
    grid-column: span 1;
    grid-row: 2;
}

/* Responsive */
@media (max-width: 900px) {
    .svc-mosaic {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }
    .svc-block-lg { grid-column: span 2; height: 300px; }
    .svc-block-md { grid-column: span 1; height: 240px; }
    .svc-block-sm { grid-column: span 1; height: 220px; }
    .svc-block-content p { opacity: 1; transform: none; }
    .svc-block-link { opacity: 1; transform: none; }
}

@media (max-width: 560px) {
    .svc-mosaic { grid-template-columns: 1fr; }
    .svc-block-lg,
    .svc-block-md,
    .svc-block-sm { grid-column: span 1; height: 240px; }
}

/* ============================================================
   CTA — Full-width image with centered bold statement
   ============================================================ */
.cta-new {
    position: relative;
    padding: 120px 0;
    text-align: center;
    overflow: hidden;
}

.cta-new-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.05);
    transition: transform 8s ease;
}

.cta-new:hover .cta-new-bg { transform: scale(1); }

.cta-new-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(5, 15, 40, 0.92) 0%,
        rgba(0, 56, 120, 0.85) 100%
    );
}

.cta-new-inner {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cta-new-label {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: #38bdf8;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.cta-new-label::before,
.cta-new-label::after {
    content: '';
    display: block;
    width: 32px;
    height: 1px;
    background: #38bdf8;
    opacity: 0.5;
}

.cta-new-heading {
    font-family: var(--font-heading);
    font-size: clamp(2.4rem, 5vw, 4.5rem);
    font-weight: 900;
    color: #fff;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
}

.cta-new-accent {
    background: linear-gradient(90deg, #38bdf8, #818cf8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-new-sub {
    font-size: 1rem;
    color: rgba(255,255,255,0.65);
    max-width: 520px;
    line-height: 1.75;
    margin-bottom: 40px;
    font-weight: 300;
}

.cta-new-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 40px;
}

.cta-new-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 34px;
    background: linear-gradient(135deg, #0056b3, #0ea5e9);
    color: #fff;
    font-weight: 700;
    font-size: 0.92rem;
    border-radius: 100px;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 8px 28px rgba(0,86,179,0.45);
    white-space: nowrap;
}

.cta-new-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 36px rgba(0,86,179,0.6);
    color: #fff;
}

.cta-new-btn-primary i { width: 16px; height: 16px; }

.cta-new-btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 30px;
    border: 1.5px solid rgba(255,255,255,0.3);
    color: rgba(255,255,255,0.85);
    font-weight: 600;
    font-size: 0.92rem;
    border-radius: 100px;
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(8px);
    transition: background 0.3s, border-color 0.3s, transform 0.3s;
    white-space: nowrap;
}

.cta-new-btn-ghost:hover {
    background: rgba(255,255,255,0.14);
    border-color: rgba(255,255,255,0.6);
    transform: translateY(-3px);
    color: #fff;
}

.cta-new-btn-ghost i { width: 16px; height: 16px; }

/* Info row */
.cta-new-info {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.45);
    font-weight: 500;
}

.cta-new-info span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.cta-new-info i { width: 13px; height: 13px; color: #38bdf8; }

.cta-new-dot {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    display: block !important;
    flex-shrink: 0;
}

@media (max-width: 640px) {
    .cta-new { padding: 80px 0; }
    .cta-new-heading { font-size: 2.2rem; }
    .cta-new-info { gap: 12px; }
    .cta-new-dot { display: none !important; }
}

/* ============================================================
   FOOTER REDESIGN
   ============================================================ */
.footer-new {
    background: #0a0f1e;
    color: rgba(255,255,255,0.55);
    font-family: var(--font-body);
}

/* ── Top statement row ── */
.footer-top {
    padding: 64px 0 48px;
}

.footer-top-inner {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
}

.footer-brand-tag {
    display: block;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: #38bdf8;
    margin-bottom: 12px;
}

.footer-brand-heading {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-weight: 900;
    color: #fff;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin: 0;
}

.footer-brand-accent {
    background: linear-gradient(90deg, #38bdf8, #818cf8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-top-contact {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-shrink: 0;
}

.footer-top-phone {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255,255,255,0.7);
    transition: color 0.3s;
}

.footer-top-phone:hover { color: #fff; }

.footer-top-phone i {
    width: 18px; height: 18px;
    color: #38bdf8;
    flex-shrink: 0;
}

.footer-top-phone-label {
    display: block;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: rgba(255,255,255,0.35);
    margin-bottom: 2px;
}

.footer-top-phone-num {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    color: rgba(255,255,255,0.85);
}

.footer-top-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: linear-gradient(135deg, #0056b3, #0ea5e9);
    color: #fff;
    font-weight: 700;
    font-size: 0.85rem;
    border-radius: 100px;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 6px 20px rgba(0,86,179,0.35);
    white-space: nowrap;
}

.footer-top-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(0,86,179,0.5);
    color: #fff;
}

.footer-top-cta i { width: 14px; height: 14px; }

/* ── Divider ── */
.footer-divider { padding: 0; }
.footer-divider-line {
    height: 1px;
    background: rgba(255,255,255,0.07);
}

/* ── Main grid ── */
.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
    gap: 48px;
    padding: 56px 0 48px;
}

.footer-col-brand { padding-left: 4px; }

/* Brand col */
.footer-col-brand {}

.footer-logo img {
    height: 76px;
    width: auto;
    display: block;
    margin-bottom: 18px;
    opacity: 0.9;
}

.footer-col-brand p {
    font-size: 0.85rem;
    line-height: 1.75;
    color: rgba(255,255,255,0.4);
    margin-bottom: 24px;
    max-width: 280px;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 36px; height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.4);
    transition: background 0.3s, border-color 0.3s, color 0.3s, transform 0.2s;
}

.footer-social a:hover {
    background: #0056b3;
    border-color: #0056b3;
    color: #fff;
    transform: translateY(-2px);
}

.footer-social a i { width: 15px; height: 15px; }

/* Links cols */
.footer-col-links h5 {
    font-family: var(--font-heading);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: rgba(255,255,255,0.9);
    margin-bottom: 20px;
}

.footer-col-links ul { list-style: none; padding: 0; margin: 0; }

.footer-col-links ul li {
    margin-bottom: 10px;
}

.footer-col-links ul li a {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.45);
    transition: color 0.25s, padding-left 0.25s;
    display: inline-block;
}

.footer-col-links ul li a:hover {
    color: #fff;
    padding-left: 6px;
}

/* Contact col */
.footer-col-contact h5 {
    font-family: var(--font-heading);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: rgba(255,255,255,0.9);
    margin-bottom: 20px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 18px;
}

.footer-contact-item i {
    width: 15px; height: 15px;
    color: #38bdf8;
    flex-shrink: 0;
    margin-top: 3px;
}

.footer-contact-item div,
.footer-contact-item p {
    font-size: 0.85rem;
    line-height: 1.65;
    color: rgba(255,255,255,0.45);
    margin: 0;
}

.footer-contact-item a {
    display: block;
    color: rgba(255,255,255,0.45);
    transition: color 0.25s;
    font-size: 0.85rem;
}

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

/* ── Bottom bar ── */
.footer-bottom-bar {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 20px 0;
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

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

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.2);
}

.footer-bottom-links a {
    color: rgba(255,255,255,0.3);
    transition: color 0.25s;
}

.footer-bottom-links a:hover { color: rgba(255,255,255,0.7); }

/* ── Responsive ── */
@media (max-width: 1024px) {
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
    .footer-top-inner { flex-direction: column; align-items: flex-start; gap: 28px; }
    .footer-top-contact { flex-wrap: wrap; }
}

@media (max-width: 640px) {
    .footer-grid { grid-template-columns: 1fr; gap: 28px; }
    .footer-bottom-inner { flex-direction: column; text-align: center; gap: 10px; }
    .footer-top { padding: 48px 0 36px; }
}

/* ============================================================
   CLIENTS LOGO MARQUEE
   ============================================================ */
.clients-logo-section {
    background: var(--dark);
    padding: 60px 0;
    overflow: hidden;
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
}

.clients-logo-header {
    text-align: center;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 36px;
}

.clients-logo-track-wrap {
    overflow: hidden;
    margin-bottom: 16px;
}

.clients-logo-track-wrap:last-child { margin-bottom: 0; }

.clients-logo-track {
    display: flex;
    gap: 16px;
    width: max-content;
    animation: logoMarquee 30s linear infinite;
}

.clients-logo-track-reverse {
    animation: logoMarqueeReverse 30s linear infinite;
}

.clients-logo-track:hover,
.clients-logo-track-reverse:hover {
    animation-play-state: paused;
}

@keyframes logoMarquee {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes logoMarqueeReverse {
    0%   { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}

.client-logo-item {
    width: 160px;
    height: 80px;
    background: var(--white);
    border-radius: 12px;
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 16px;
    flex-shrink: 0;
    transition: box-shadow 0.3s, transform 0.3s;
}

.client-logo-item:hover {
    box-shadow: 0 6px 20px rgba(0,86,179,0.1);
    transform: translateY(-2px);
}

.client-logo-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: filter 0.3s, opacity 0.3s;
}

.client-logo-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* Footer top bar fixes */
.footer-top-brand { display: flex; align-items: center; }
.footer-logo-top img { height: 38px; width: auto; opacity: 0.9; }
.footer-top-phone { display: flex; align-items: center; gap: 12px; color: rgba(255,255,255,0.7); transition: color 0.3s; text-decoration: none; }
.footer-top-phone:hover { color: #fff; }
.footer-top-phone svg { flex-shrink: 0; }
.footer-top-phone-label { display: block; font-size: 0.62rem; text-transform: uppercase; letter-spacing: 0.15em; color: rgba(255,255,255,0.35); margin-bottom: 2px; }
.footer-top-phone-num { display: block; font-size: 0.9rem; font-weight: 600; color: rgba(255,255,255,0.85); }
/* Logo in grid */
.footer-logo { display: block; margin-bottom: 20px; }
.footer-logo img {
    height: 70px;
    width: auto;
    display: block;
    opacity: 0.95;
}

/* ============================================================
   FOOTER LEFT PADDING FIX
   ============================================================ */
.footer-new .container {
    padding-left: 40px;
    padding-right: 40px;
}

/* ============================================================
   FULL HOMEPAGE RESPONSIVE
   ============================================================ */

/* ── Tablet (max 1024px) ── */
@media (max-width: 1024px) {

    /* Section spacing */
    :root { --section-spacing: 100px; }

    /* Navbar */
    .desktop-nav { display: none; }
    .menu-trigger { display: flex; }
    .vanguard-nav:not(.scrolled) .desktop-nav a { display: none; }

    /* Stats band */
    .stats-band-inner {
        flex-wrap: wrap;
        gap: 0;
        padding: 40px 24px;
    }
    .stats-band-item {
        flex: 0 0 50%;
        justify-content: flex-start;
        padding: 20px 16px;
    }
    .stats-band-sep { display: none; }

    /* About */
    .about-min-body {
        grid-template-columns: 1fr;
        gap: 36px;
    }
    .about-min-img img { height: 360px; }

    /* Services mosaic */
    .svc-mosaic {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
        gap: 10px;
    }
    .svc-block-lg { grid-column: span 2; height: 320px; }
    .svc-block-md { grid-column: span 1; height: 260px; }
    .svc-block-sm { grid-column: span 1; height: 220px; }
    .svc-block-content p,
    .svc-block-link { opacity: 1; transform: none; }

    /* Why section */
    .why-grid { grid-template-columns: 1fr 1fr; }

    /* CTA */
    .cta-new { padding: 80px 0; }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
        padding: 48px 0 36px;
    }
    .footer-col-brand { grid-column: span 2; }
    .footer-bottom-inner { flex-direction: column; gap: 12px; text-align: center; }
}

/* ── Mobile (max 768px) ── */
@media (max-width: 768px) {

    :root { --section-spacing: 72px; }

    .container { padding: 0 20px; }

    /* Stats band */
    .stats-band-item { flex: 0 0 50%; }
    .stats-band-num { font-size: 2.2rem; }

    /* About */
    .about-min-header { margin-bottom: 36px; }
    .about-min-heading { font-size: 1.8rem; }
    .about-min-img img { height: 280px; }
    .about-min-lead { font-size: 0.95rem; }

    /* Services mosaic */
    .svc-mosaic {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    .svc-block-lg,
    .svc-block-md,
    .svc-block-sm {
        grid-column: span 1;
        height: 240px;
    }
    .svc-tab-header { margin-bottom: 28px; }

    /* Why */
    .why-grid { grid-template-columns: 1fr; }
    .why-card { padding: 28px 22px; }

    /* Clients */
    .clients-logo-section { padding: 40px 0; }
    .client-logo-item { width: 130px; height: 65px; }

    /* CTA */
    .cta-new { padding: 64px 0; }
    .cta-new-heading { font-size: 2rem; }
    .cta-new-actions { flex-direction: column; align-items: center; }
    .cta-new-btn-primary,
    .cta-new-btn-ghost { width: 100%; max-width: 280px; justify-content: center; }
    .cta-new-info { flex-direction: column; gap: 8px; }
    .cta-new-dot { display: none !important; }

    /* Footer */
    .footer-grid { grid-template-columns: 1fr; gap: 28px; }
    .footer-col-brand { grid-column: span 1; }
    .footer-new .container { padding-left: 20px; padding-right: 20px; }
    .footer-bottom-bar { padding: 16px 0; }

    /* Hero bottom zone */
    .hero-bottom-zone {
        left: 20px;
        right: 20px;
        bottom: 70px;
        gap: 16px;
    }
    .hero-bottom-inner { padding: 0 20px; }
    .hero-vert-label { display: none; }
}

/* ── Small mobile (max 480px) ── */
@media (max-width: 480px) {

    /* Stats */
    .stats-band-item { flex: 0 0 100%; }
    .stats-band-inner { padding: 32px 20px; gap: 0; }

    /* About */
    .about-min-img img { height: 240px; }
    .about-min-chip { padding: 10px 14px; }
    .about-min-chip-num { font-size: 1.5rem; }

    /* Services */
    .svc-block-lg,
    .svc-block-md,
    .svc-block-sm { height: 200px; }
    .svc-block-content { padding: 20px; }
    .svc-block-content h3 { font-size: 1rem; }

    /* CTA */
    .cta-new-heading { font-size: 1.7rem; }
    .cta-new-label { font-size: 0.6rem; }

    /* Footer */
    .footer-logo img { height: 38px; }
    .footer-col-links h5,
    .footer-col-contact h5 { margin-bottom: 14px; }
    .footer-social { gap: 8px; }
    .footer-social a { width: 32px; height: 32px; }
}

/* ============================================================
   SERVICES — Alternating row layout
   ============================================================ */
.svc-list-section { background: var(--dark); }

.svc-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 52px;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
}

.svc-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 300px;
    border-bottom: 1px solid var(--glass-border);
    transition: background 0.3s, box-shadow 0.3s, transform 0.3s;
    position: relative;
}

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

.svc-row::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 4px;
    background: var(--primary-gradient);
    transform: scaleY(0);
    transition: transform 0.3s cubic-bezier(0.4,0,0.2,1);
    transform-origin: bottom;
    z-index: 2;
}

.svc-row:hover::before { transform: scaleY(1); }

.svc-row:hover {
    background: rgba(0,86,179,0.04);
    box-shadow: 0 8px 40px rgba(0,86,179,0.10);
    transform: translateY(-2px);
}

/* Reverse: image right, content left */
.svc-row-reverse { direction: rtl; }
.svc-row-reverse > * { direction: ltr; }

/* Image */
.svc-row-img {
    overflow: hidden;
    position: relative;
}

.svc-row-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.4,0,0.2,1);
    min-height: 280px;
}

.svc-row:hover .svc-row-img img { transform: scale(1.08); }

/* Content */
.svc-row-content {
    padding: 44px 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--white);
}

.svc-row-num {
    font-family: var(--font-heading);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: var(--primary);
    text-transform: uppercase;
    margin-bottom: 12px;
    display: block;
}

.svc-row-content h3 {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 14px;
    line-height: 1.2;
    transition: color 0.3s;
}

.svc-row:hover .svc-row-content h3 { color: var(--primary); }

.svc-row-content p {
    font-size: 0.9rem;
    color: var(--text-body);
    line-height: 1.8;
    margin-bottom: 24px;
}

/* Responsive */
@media (max-width: 768px) {
    .svc-row {
        grid-template-columns: 1fr;
        direction: ltr !important;
    }
    .svc-row-reverse > * { direction: ltr; }
    .svc-row-img img { min-height: 220px; height: 220px; }
    .svc-row-content { padding: 28px 24px; }
    .svc-row-content h3 { font-size: 1.2rem; }
}

/* Services rows — equal image height */
.svc-row { min-height: 340px; }

.svc-row-img {
    height: 340px;
    overflow: hidden;
    flex-shrink: 0;
}

.svc-row-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 768px) {
    .svc-row { min-height: auto; }
    .svc-row-img { height: 240px; }
}

/* ============================================================
   MOBILE NAVBAR + HERO + FOOTER FIXES
   ============================================================ */
@media (max-width: 768px) {

    /* ── Navbar: smaller on mobile ── */
    .vanguard-nav { padding: 14px 0; }
    .vanguard-nav.scrolled { padding: 10px 0; }

    .logo img {
        height: 55px;
        width: auto;
    }

    /* ── Hero: push content down from nav ── */
    .hero-bottom-zone {
        bottom: 80px;
        left: 20px;
        right: 20px;
    }

    .hero-h1 {
        font-size: clamp(2rem, 9vw, 3rem);
        margin-bottom: 16px;
    }

    .hero-right-zone { display: none; }

    /* ── Footer: top padding ── */
    .footer-new {
        padding-top: 40px;
    }

    .footer-divider { margin-top: 0; }

    .footer-grid {
        padding-top: 32px;
    }

    /* Footer logo smaller on mobile */
    .footer-logo img { height: 36px; }
}

@media (max-width: 480px) {
    .logo img { height: 55px; }
    .vanguard-nav { padding: 12px 0; }

    .hero-bottom-zone {
        bottom: 70px;
        left: 16px;
        right: 16px;
    }

    .hero-h1 { font-size: clamp(1.8rem, 8vw, 2.5rem); }
}
