:root {
    --navy: #0A1628;
    --blue: #1565C0;
    --blue-light: #1E88E5;
    --blue-bright: #42A5F5;
    --cyan: #00B4D8;
    --white: #FFFFFF;
    --off-white: #F8FAFC;
    --gray-50: #F0F4F8;
    --gray-100: #E2E8F0;
    --gray-200: #CBD5E1;
    --gray-400: #94A3B8;
    --gray-500: #64748B;
    --gray-700: #334155;
    --gray-900: #0F172A;
    --text: #1A1A2E;
    --text-muted: #64748B;
    --shadow-sm: 0 1px 3px rgba(10,22,40,0.06);
    --shadow-md: 0 4px 20px rgba(10,22,40,0.08);
    --shadow-lg: 0 12px 40px rgba(10,22,40,0.1);
    --shadow-xl: 0 20px 60px rgba(10,22,40,0.12);
    --shadow-blue: 0 8px 30px rgba(21,101,192,0.2);
    --radius: 16px;
    --radius-sm: 10px;
    --radius-xs: 6px;
}
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--white); color: var(--text);
    line-height: 1.6; overflow-x: hidden; -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; } ul { list-style: none; } img { max-width: 100%; display: block; }
::selection { background: var(--blue); color: var(--white); }

/* ═══ SCROLL PROGRESS ═══ */
.scroll-progress { position: fixed; top: 0; left: 0; height: 3px; background: linear-gradient(90deg, var(--blue), var(--cyan)); z-index: 10000; width: 0%; }

/* ═══ LAYOUT ═══ */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 120px 0; position: relative; }
.section-label {
    font-family: 'Space Grotesk', sans-serif; font-size: 13px; font-weight: 600;
    letter-spacing: 3px; text-transform: uppercase; color: var(--blue);
    margin-bottom: 16px; display: inline-flex; align-items: center; gap: 10px;
}
.section-label::before { content: ''; width: 24px; height: 2px; background: linear-gradient(90deg, var(--blue), var(--cyan)); border-radius: 1px; }
.section-title {
    font-family: 'Space Grotesk', sans-serif; font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700; line-height: 1.15; margin-bottom: 16px; color: var(--gray-900);
    letter-spacing: -0.02em;
}
.section-sub { font-size: 1.05rem; color: var(--text-muted); max-width: 540px; line-height: 1.75; }

/* ═══ REVEAL ═══ */
.rv { opacity: 0; transform: translateY(40px); transition: opacity 0.8s cubic-bezier(0.16,1,0.3,1), transform 0.8s cubic-bezier(0.16,1,0.3,1); }
.rv.vis { opacity: 1; transform: translateY(0); }
.rv-d1 { transition-delay: 0.08s; } .rv-d2 { transition-delay: 0.16s; }
.rv-d3 { transition-delay: 0.24s; } .rv-d4 { transition-delay: 0.32s; }
.rv-d5 { transition-delay: 0.4s; } .rv-d6 { transition-delay: 0.48s; }

/* ═══ NAVBAR ═══ */
.navbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 9000; padding: 16px 0;
    transition: all 0.4s cubic-bezier(0.16,1,0.3,1);
}
.navbar.scrolled {
    padding: 10px 0; background: rgba(255,255,255,0.92);
    backdrop-filter: blur(20px) saturate(180%); -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid var(--gray-100); box-shadow: var(--shadow-sm);
}
.navbar.hidden { transform: translateY(-100%); }
.navbar .container { display: flex; align-items: center; justify-content: space-between; }
.nav-brand { display: flex; align-items: center; gap: 10px; }
.nav-brand img { height: 52px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
    font-size: 14px; font-weight: 500; color: var(--gray-500); padding: 8px 16px;
    border-radius: var(--radius-xs); transition: color 0.3s, background 0.3s; position: relative;
}
.nav-links a:hover { color: var(--blue); background: rgba(21,101,192,0.06); }
.nav-cta {
    font-size: 14px !important; font-weight: 600 !important; color: var(--white) !important;
    background: var(--blue) !important; padding: 10px 24px !important; border-radius: var(--radius-xs) !important;
    transition: all 0.3s !important; box-shadow: var(--shadow-blue);
}
.nav-cta:hover { background: var(--blue-light) !important; transform: translateY(-1px); box-shadow: 0 12px 35px rgba(21,101,192,0.3) !important; }

/* ═══ HAMBURGER ═══ */
.nav-toggle {
    display: none; flex-direction: column; gap: 6px; cursor: pointer;
    padding: 10px; background: none; border: 1px solid var(--gray-100);
    border-radius: var(--radius-xs); z-index: 9001; transition: border-color 0.3s;
}
.nav-toggle:hover { border-color: var(--blue); }
.nav-toggle span { width: 22px; height: 2px; background: var(--gray-700); border-radius: 2px; transition: all 0.4s cubic-bezier(0.16,1,0.3,1); display: block; }
.nav-toggle.open { border-color: var(--blue); }
.nav-toggle.open span { background: var(--blue); }
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }

/* ═══ MOBILE MENU ═══ */
.mobile-menu {
    position: fixed; inset: 0; background: rgba(255,255,255,0.98);
    backdrop-filter: blur(40px); z-index: 8999; display: flex; flex-direction: column;
    justify-content: center; align-items: center; gap: 4px;
    opacity: 0; pointer-events: none; transition: opacity 0.4s;
}
.mobile-menu.open { opacity: 1; pointer-events: auto; }
.mobile-menu a {
    font-family: 'Space Grotesk', sans-serif; font-size: 2.2rem; font-weight: 700;
    letter-spacing: 1px; color: var(--gray-400); padding: 12px 32px;
    border-radius: var(--radius-sm); transition: all 0.3s;
    opacity: 0; transform: translateY(20px);
}
.mobile-menu.open a { opacity: 1; transform: translateY(0); }
.mobile-menu a:nth-child(1) { transition-delay: 0.08s; }
.mobile-menu a:nth-child(2) { transition-delay: 0.12s; }
.mobile-menu a:nth-child(3) { transition-delay: 0.16s; }
.mobile-menu a:nth-child(4) { transition-delay: 0.20s; }
.mobile-menu a:nth-child(5) { transition-delay: 0.24s; }
.mobile-menu a:nth-child(6) { transition-delay: 0.28s; }
.mobile-menu a:hover { color: var(--blue); background: rgba(21,101,192,0.05); }

/* ═══ HERO ═══ */
.hero {
    min-height: 100vh; display: flex; align-items: center; position: relative;
    background: linear-gradient(165deg, var(--white) 0%, var(--off-white) 40%, var(--gray-50) 100%);
    overflow: hidden; padding-top: 120px;
}
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.hero-label {
    font-family: 'Space Grotesk', sans-serif; font-size: 13px; font-weight: 600;
    letter-spacing: 3px; text-transform: uppercase; color: var(--blue);
    margin-bottom: 24px; display: inline-flex; align-items: center; gap: 10px;
    opacity: 0; animation: heroFade 0.8s ease 0.3s forwards;
}
.hero-label::before { content: ''; width: 24px; height: 2px; background: var(--blue); }
.hero h1 {
    font-family: 'Space Grotesk', sans-serif; font-size: clamp(2.8rem, 5.5vw, 4.2rem);
    line-height: 1.08; letter-spacing: -0.03em; margin-bottom: 24px; color: var(--gray-900); font-weight: 800;
}
.hero h1 .line { display: block; overflow: hidden; }
.hero h1 .line-inner { display: block; opacity: 0; transform: translateY(105%); }
.hero h1 .line:nth-child(1) .line-inner { animation: heroReveal 1s cubic-bezier(0.16,1,0.3,1) 0.5s forwards; }
.hero h1 .line:nth-child(2) .line-inner { animation: heroReveal 1s cubic-bezier(0.16,1,0.3,1) 0.65s forwards; }
.hero h1 .line:nth-child(3) .line-inner {
    animation: heroReveal 1s cubic-bezier(0.16,1,0.3,1) 0.8s forwards;
    background: linear-gradient(135deg, var(--blue), var(--cyan));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
@keyframes heroReveal { to { opacity: 1; transform: translateY(0); } }
@keyframes heroFade { to { opacity: 1; } }
.hero-sub {
    font-size: 1.1rem; color: var(--text-muted); max-width: 480px;
    line-height: 1.8; margin-bottom: 40px; opacity: 0; animation: heroFade 1s ease 1.1s forwards;
}
.hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; opacity: 0; animation: heroFade 1s ease 1.3s forwards; }
.hero-stats {
    display: flex; gap: 40px; margin-top: 56px; padding-top: 32px;
    border-top: 1px solid var(--gray-100);
    opacity: 0; animation: heroFade 1s ease 1.5s forwards;
}
.hero-stat-number {
    font-family: 'Space Grotesk', sans-serif; font-size: 2.4rem;
    font-weight: 700; color: var(--blue); line-height: 1;
}
.hero-stat-label { font-size: 13px; color: var(--text-muted); margin-top: 4px; }
.hero-visual {
    position: relative; opacity: 0; animation: heroFade 1.2s ease 0.6s forwards;
}
.hero-img-main {
    border-radius: 24px; overflow: hidden; box-shadow: var(--shadow-xl);
    aspect-ratio: 4/5; position: relative; z-index: 2;
}
.hero-img-main img { width: 100%; height: 100%; object-fit: cover; }
.hero-img-float {
    position: absolute; width: 200px; border-radius: var(--radius);
    overflow: hidden; box-shadow: var(--shadow-lg); z-index: 3;
    bottom: -20px; left: -40px; border: 4px solid var(--white);
}
.hero-img-float img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3; }
/* Decorative elements */
.hero-deco-circle {
    position: absolute; width: 280px; height: 280px; border-radius: 50%;
    border: 1px solid var(--gray-100); top: -40px; right: -60px; z-index: 0;
    opacity: 0; animation: heroFade 1s ease 1s forwards;
}
.hero-deco-circle::after {
    content: ''; position: absolute; inset: 30px; border-radius: 50%;
    border: 1px dashed var(--gray-200);
    animation: decoSpin 30s linear infinite;
}
@keyframes decoSpin { to { transform: rotate(360deg); } }
.hero-deco-dots {
    position: absolute; top: 20%; right: -30px; z-index: 0;
    display: grid; grid-template-columns: repeat(4,1fr); gap: 10px;
    opacity: 0; animation: heroFade 1s ease 1.2s forwards;
}
.hero-deco-dots span {
    width: 4px; height: 4px; border-radius: 50%; background: var(--gray-200);
}

/* ═══ BUTTONS ═══ */
.btn {
    display: inline-flex; align-items: center; gap: 8px;
    font-family: 'Inter', sans-serif; font-size: 14px; font-weight: 600;
    padding: 14px 28px; border-radius: var(--radius-xs);
    border: none; cursor: pointer; transition: all 0.3s cubic-bezier(0.16,1,0.3,1);
    position: relative;
}
.btn-primary {
    background: var(--blue); color: var(--white); box-shadow: var(--shadow-blue);
}
.btn-primary:hover { background: var(--blue-light); transform: translateY(-2px); box-shadow: 0 12px 40px rgba(21,101,192,0.25); }
.btn-outline {
    background: var(--white); color: var(--gray-700);
    border: 1px solid var(--gray-200); box-shadow: var(--shadow-sm);
}
.btn-outline:hover { border-color: var(--blue); color: var(--blue); box-shadow: var(--shadow-md); }
.btn svg { flex-shrink: 0; }

/* ═══ TRUST STRIP ═══ */
.trust-strip {
    padding: 40px 0; background: var(--white); border-bottom: 1px solid var(--gray-100);
    overflow: hidden;
}
.trust-label {
    text-align: center; font-size: 12px; font-weight: 600;
    letter-spacing: 3px; text-transform: uppercase; color: var(--gray-400); margin-bottom: 24px;
}
.trust-track { display: flex; animation: marqueeScroll 35s linear infinite; width: max-content; }
.trust-track:hover { animation-play-state: paused; }
.trust-item {
    flex-shrink: 0; padding: 0 40px; display: flex; align-items: center; gap: 10px;
    font-family: 'Space Grotesk', sans-serif; font-size: 0.95rem; font-weight: 600;
    color: var(--gray-300); white-space: nowrap; transition: color 0.3s;
}
.trust-item:hover { color: var(--blue); }
.trust-item svg { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 1.5; flex-shrink: 0; }
.trust-sep { width: 4px; height: 4px; border-radius: 50%; background: var(--gray-200); flex-shrink: 0; }
@keyframes marqueeScroll { to { transform: translateX(-50%); } }

/* ═══ ABOUT ═══ */
.about-logo { height: 56px; width: auto; margin-bottom: 24px; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-text .desc { font-size: 1.05rem; color: var(--text-muted); line-height: 1.85; margin-bottom: 24px; }
.about-text .desc strong { color: var(--gray-900); font-weight: 600; }
.about-stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; margin: 40px 0; }
.stat-card {
    background: var(--off-white); border: 1px solid var(--gray-100); border-radius: var(--radius-sm);
    padding: 20px 16px; text-align: center; transition: all 0.3s;
}
.stat-card:hover { border-color: var(--blue); background: rgba(21,101,192,0.03); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.stat-number {
    font-family: 'Space Grotesk', sans-serif; font-size: 2rem;
    font-weight: 700; color: var(--blue); line-height: 1;
}
.stat-label { font-size: 12px; color: var(--text-muted); margin-top: 6px; font-weight: 500; }
.mv-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.mv-card {
    background: var(--off-white); border: 1px solid var(--gray-100);
    border-radius: var(--radius-sm); padding: 24px; transition: all 0.3s;
}
.mv-card:hover { border-color: rgba(21,101,192,0.2); box-shadow: var(--shadow-md); }
.mv-card h4 {
    font-family: 'Space Grotesk', sans-serif; font-size: 0.9rem; font-weight: 700;
    color: var(--blue); margin-bottom: 8px;
}
.mv-card p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.65; }
.about-visual { position: relative; }
.about-img-wrap {
    border-radius: 20px; overflow: hidden; aspect-ratio: 3/4;
    box-shadow: var(--shadow-lg); position: relative;
}
.about-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 6s ease; }
.about-img-wrap:hover img { transform: scale(1.05); }
.about-badge {
    position: absolute; bottom: 24px; left: 24px; background: var(--white);
    border-radius: var(--radius-sm); padding: 16px 20px;
    display: flex; align-items: center; gap: 12px;
    box-shadow: var(--shadow-lg); animation: badgeFloat 4s ease-in-out infinite;
}
.about-badge-icon {
    width: 40px; height: 40px; border-radius: var(--radius-xs);
    background: linear-gradient(135deg, var(--blue), var(--cyan));
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.about-badge-icon svg { width: 20px; height: 20px; stroke: var(--white); fill: none; stroke-width: 2; }
.about-badge-text { font-size: 0.75rem; color: var(--text-muted); }
.about-badge-text strong { display: block; font-size: 1rem; color: var(--gray-900); font-family: 'Space Grotesk', sans-serif; }
@keyframes badgeFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }
/* Deco behind about image */
.about-deco {
    position: absolute; width: 100%; height: 100%; top: 20px; left: 20px;
    border-radius: 20px; border: 2px dashed var(--gray-100); z-index: -1;
}

/* ═══ VALUES — BENTO GRID ═══ */
.values { background: var(--off-white); }
.values-header { text-align: center; margin-bottom: 56px; }
.values-header .section-sub { margin: 0 auto; }
.bento-grid {
    display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px;
}
.bento-card {
    background: var(--white); border: 1px solid var(--gray-100);
    border-radius: var(--radius); padding: 28px 20px; text-align: center;
    transition: all 0.4s cubic-bezier(0.16,1,0.3,1); position: relative; overflow: hidden;
}
.bento-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, var(--blue), var(--cyan)); transform: scaleX(0);
    transition: transform 0.4s; transform-origin: left;
}
.bento-card:hover::before { transform: scaleX(1); }
.bento-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: transparent; }
.bento-icon {
    width: 48px; height: 48px; margin: 0 auto 16px; display: flex; align-items: center;
    justify-content: center; border-radius: var(--radius-sm);
    background: linear-gradient(135deg, rgba(21,101,192,0.08), rgba(0,180,216,0.08));
    transition: transform 0.4s;
}
.bento-card:hover .bento-icon { transform: scale(1.1) rotate(3deg); }
.bento-icon svg { width: 22px; height: 22px; stroke: var(--blue); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.bento-card h4 { font-family: 'Space Grotesk', sans-serif; font-size: 0.88rem; font-weight: 700; color: var(--gray-900); margin-bottom: 8px; }
.bento-card p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.55; }

/* ═══ SERVICES ═══ */
.services-header { text-align: center; margin-bottom: 64px; }
.services-header .section-sub { margin: 0 auto; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.svc-card {
    background: var(--white); border: 1px solid var(--gray-100); border-radius: var(--radius);
    padding: 36px 28px; transition: all 0.4s; position: relative; overflow: hidden;
}
.svc-card::after {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(circle at var(--mx,50%) var(--my,50%), rgba(21,101,192,0.04), transparent 60%);
    opacity: 0; transition: opacity 0.3s; pointer-events: none;
}
.svc-card:hover::after { opacity: 1; }
.svc-card:hover { border-color: rgba(21,101,192,0.15); box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.svc-icon {
    width: 52px; height: 52px; border-radius: var(--radius-sm);
    background: linear-gradient(135deg, var(--blue), var(--cyan));
    display: flex; align-items: center; justify-content: center; margin-bottom: 24px;
    transition: transform 0.4s; box-shadow: 0 4px 16px rgba(21,101,192,0.15);
}
.svc-card:hover .svc-icon { transform: translateY(-3px) rotate(-2deg); }
.svc-icon svg { width: 26px; height: 26px; stroke: var(--white); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.svc-card h3 { font-family: 'Space Grotesk', sans-serif; font-size: 1.1rem; font-weight: 700; color: var(--gray-900); margin-bottom: 20px; }
.svc-card ul { display: flex; flex-direction: column; gap: 10px; }
.svc-card li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.88rem; color: var(--text-muted); line-height: 1.5; }
.svc-card li::before { content: ''; flex-shrink: 0; width: 6px; height: 6px; border-radius: 50%; background: var(--blue); margin-top: 7px; opacity: 0.5; }

/* ═══ PROCESS ═══ */
.process { background: var(--navy); color: var(--white); overflow: hidden; }
.process .section-label { color: var(--cyan); }
.process .section-label::before { background: var(--cyan); }
.process .section-title { color: var(--white); }
.process .section-sub { color: rgba(255,255,255,0.5); }
.process-header { text-align: center; margin-bottom: 80px; }
.process-header .section-sub { margin: 0 auto; }
.process-timeline { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; position: relative; }
.process-timeline::before {
    content: ''; position: absolute; top: 44px; left: 12.5%; right: 12.5%; height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.12), transparent);
}
.process-step { text-align: center; position: relative; padding: 0 16px; }
.process-num {
    width: 88px; height: 88px; border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(255,255,255,0.04);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 28px; position: relative; z-index: 1;
    transition: all 0.5s cubic-bezier(0.16,1,0.3,1);
}
.process-step:hover .process-num {
    border-color: var(--cyan); background: rgba(0,180,216,0.08);
    transform: scale(1.08); box-shadow: 0 0 40px rgba(0,180,216,0.12);
}
.process-num span { font-family: 'Space Grotesk', sans-serif; font-size: 1.6rem; font-weight: 700; color: var(--cyan); }
.process-num::after {
    content: ''; position: absolute; inset: -8px; border-radius: 50%;
    border: 1px dashed rgba(0,180,216,0.15); animation: processSpin 15s linear infinite;
}
@keyframes processSpin { to { transform: rotate(360deg); } }
.process-step h4 { font-family: 'Space Grotesk', sans-serif; font-size: 1rem; font-weight: 700; margin-bottom: 10px; }
.process-step p { font-size: 0.85rem; color: rgba(255,255,255,0.45); line-height: 1.65; }

/* ═══ WHY CHOOSE US ═══ */
.why { background: var(--off-white); }
.why-header { text-align: center; margin-bottom: 64px; }
.why-header .section-sub { margin: 0 auto; }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.why-card {
    background: var(--white); border: 1px solid var(--gray-100);
    border-radius: var(--radius); padding: 32px 24px;
    transition: all 0.4s cubic-bezier(0.16,1,0.3,1); position: relative;
}
.why-card:hover { border-color: transparent; transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.why-num {
    font-family: 'Space Grotesk', sans-serif; font-size: 3.5rem; font-weight: 800;
    color: var(--gray-50); position: absolute; top: 16px; right: 20px; line-height: 1;
    transition: color 0.4s; pointer-events: none;
}
.why-card:hover .why-num { color: rgba(21,101,192,0.06); }
.why-icon {
    width: 44px; height: 44px; border-radius: var(--radius-xs);
    background: linear-gradient(135deg, rgba(21,101,192,0.08), rgba(0,180,216,0.08));
    display: flex; align-items: center; justify-content: center; margin-bottom: 20px;
}
.why-icon svg { width: 22px; height: 22px; stroke: var(--blue); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.why-card h4 { font-family: 'Space Grotesk', sans-serif; font-size: 1rem; font-weight: 700; color: var(--gray-900); margin-bottom: 8px; }
.why-card p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.65; }

/* ═══ PROJECTS ═══ */
.projects { overflow: visible; }
.projects-header { margin-bottom: 48px; }
.projects-carousel { position: relative; }
.projects-track {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    padding: 0 !important;
}
.proj-card {
    border-radius: var(--radius); overflow: hidden;
    position: relative; min-height: 280px;
    transition: all 0.3s;
}
.proj-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,.25); }
.proj-card-img { position: absolute; inset: 0; overflow: hidden; }
.proj-card-img img {
    width: 100%; height: 100%; object-fit: cover;
    filter: saturate(.7) brightness(.95);
    transition: filter 0.5s, transform 0.5s;
}
.proj-card:hover .proj-card-img img { filter: saturate(1) brightness(.88); transform: scale(1.05); }
.proj-card-body {
    position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(to top, rgba(10,20,40,.88) 0%, rgba(10,20,40,.25) 50%, transparent 100%);
    display: flex; flex-direction: column; justify-content: flex-end;
    padding: 20px;
}
.proj-card-body h4 {
    font-family: 'Space Grotesk', sans-serif; font-size: 0.95rem; font-weight: 700;
    color: #fff; line-height: 1.35; margin-bottom: 4px;
}
.proj-card-body .proj-loc {
    font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--cyan, #00b4d8); display: flex; align-items: center; gap: 5px;
    margin-bottom: 8px;
}
.proj-card-body .proj-loc svg { width: 10px; height: 10px; fill: currentColor; stroke: none; }
.proj-card-body .proj-desc { display: none; }
.projects-hint { display: none; }
@media(max-width:960px){ .projects-track { grid-template-columns: repeat(2, 1fr); } .proj-card { min-height: 240px; } }
@media(max-width:480px){ .projects-track { grid-template-columns: repeat(2, 1fr); gap: 10px; } .proj-card { min-height: 200px; } .proj-card-body { padding: 12px; } .proj-card-body h4 { font-size: 0.8rem; } }

/* ═══ COVERAGE ═══ */
.coverage { background: var(--off-white); }
.coverage-header { text-align: center; margin-bottom: 64px; }
.coverage-header .section-sub { margin: 0 auto; }
.coverage-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 12px; }
.cov-item {
    background: var(--white); border: 1px solid var(--gray-100); border-radius: var(--radius-sm);
    padding: 16px 18px; display: flex; align-items: center; gap: 12px; transition: all 0.3s;
}
.cov-item:hover { border-color: var(--blue); background: rgba(21,101,192,0.02); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.cov-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--blue); flex-shrink: 0; position: relative; }
.cov-dot::after {
    content: ''; position: absolute; inset: -3px; border-radius: 50%;
    border: 1px solid var(--blue); opacity: 0; animation: covPulse 2s ease-in-out infinite;
}
.cov-item:hover .cov-dot::after { opacity: 1; }
@keyframes covPulse { 0%,100% { transform: scale(1); opacity: 0; } 50% { transform: scale(1.8); opacity: 0.4; } }
.cov-item span { font-size: 0.88rem; color: var(--text-muted); font-weight: 500; }
.cov-item:hover span { color: var(--gray-900); }

/* ═══ TESTIMONIALS ═══ */
.testimonials { overflow: hidden; }
.testimonials-header { text-align: center; margin-bottom: 64px; }
.testimonials-header .section-sub { margin: 0 auto; }
.test-carousel { position: relative; max-width: 680px; margin: 0 auto; min-height: 220px; }
.test-slide {
    position: absolute; inset: 0; opacity: 0; transform: translateX(40px);
    transition: opacity 0.6s ease, transform 0.6s ease; text-align: center;
}
.test-slide.active { opacity: 1; transform: translateX(0); }
.test-quote {
    font-family: 'Space Grotesk', sans-serif; font-size: 1.15rem;
    font-weight: 500; line-height: 1.8; color: var(--gray-700); margin-bottom: 28px;
    position: relative; padding: 0 20px;
}
.test-quote::before {
    content: '"'; font-family: 'Space Grotesk', sans-serif; font-size: 5rem;
    font-weight: 800; color: var(--gray-100); position: absolute; top: -24px; left: -6px; line-height: 1;
}
.test-author { display: flex; align-items: center; gap: 14px; justify-content: center; }
.test-avatar {
    width: 44px; height: 44px; border-radius: 50%;
    background: linear-gradient(135deg, var(--blue), var(--cyan));
    display: flex; align-items: center; justify-content: center;
    font-family: 'Space Grotesk', sans-serif; font-size: 0.95rem; font-weight: 700; color: var(--white);
}
.test-info { text-align: left; }
.test-info strong { display: block; font-size: 0.9rem; font-weight: 600; color: var(--gray-900); }
.test-info span { font-size: 0.78rem; color: var(--blue); }
.test-dots { display: flex; gap: 8px; justify-content: center; margin-top: 40px; }
.test-dot {
    width: 32px; height: 3px; border-radius: 2px;
    background: var(--gray-200); cursor: pointer; transition: all 0.3s;
}
.test-dot.active { background: var(--blue); width: 48px; }

/* ═══ CTA BANNER ═══ */
.cta-banner {
    padding: 100px 0; position: relative; overflow: hidden;
    background: linear-gradient(135deg, var(--navy) 0%, #0D2137 50%, #0A1A30 100%);
    color: var(--white);
}
.cta-banner::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(0,180,216,0.08) 0%, transparent 60%);
}
.cta-logo { height: 64px; width: auto; margin: 0 auto 28px; display: block; }
.cta-banner .container { position: relative; z-index: 1; text-align: center; }
.cta-banner h2 {
    font-family: 'Space Grotesk', sans-serif; font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 800; letter-spacing: -0.02em; line-height: 1.1; margin-bottom: 18px;
}
.cta-banner h2 span {
    background: linear-gradient(135deg, var(--blue-bright), var(--cyan));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.cta-banner p { font-size: 1.05rem; color: rgba(255,255,255,0.5); max-width: 560px; margin: 0 auto 36px; line-height: 1.75; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta-ring {
    position: absolute; top: 50%; right: 10%; width: 300px; height: 300px;
    border: 1px solid rgba(0,180,216,0.06); border-radius: 50%;
    transform: translate(50%,-50%); pointer-events: none;
    animation: ctaSpin 30s linear infinite;
}
.cta-ring:nth-child(2) { width: 200px; height: 200px; right: 8%; border-style: dashed; animation-direction: reverse; animation-duration: 20s; }
@keyframes ctaSpin { to { transform: translate(50%,-50%) rotate(360deg); } }

/* ═══ CONTACT ═══ */
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 64px; align-items: start; }
.contact-info .section-sub { margin-bottom: 36px; }
.contact-detail { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.contact-detail-icon {
    width: 44px; height: 44px; border-radius: var(--radius-xs);
    background: var(--off-white); border: 1px solid var(--gray-100);
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
    transition: all 0.3s;
}
.contact-detail:hover .contact-detail-icon { border-color: var(--blue); background: rgba(21,101,192,0.05); }
.contact-detail-icon svg { width: 20px; height: 20px; stroke: var(--blue); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.contact-detail > div:last-child { display: flex; flex-direction: column; gap: 4px; }
.cd-label { font-size: 0.72rem; color: var(--text-muted); font-weight: 500; text-transform: uppercase; letter-spacing: 1.5px; }
.cd-value { font-size: 0.95rem; font-weight: 600; color: var(--gray-900); word-break: break-all; }
.contact-form {
    background: var(--white); border: 1px solid var(--gray-100);
    border-radius: var(--radius); padding: 36px; box-shadow: var(--shadow-md);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 12px; font-weight: 600; margin-bottom: 6px; color: var(--gray-700); letter-spacing: 0.3px; }
.form-group label .req { color: var(--blue); }
.form-group input, .form-group select, .form-group textarea {
    width: 100%; padding: 12px 14px; border: 1px solid var(--gray-200);
    border-radius: var(--radius-xs); font-size: 14px; color: var(--gray-900);
    background: var(--white); transition: border-color 0.3s, box-shadow 0.3s;
    outline: none; font-family: inherit;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--gray-400); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    border-color: var(--blue); box-shadow: 0 0 0 3px rgba(21,101,192,0.08);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-group select {
    appearance: none; cursor: pointer; padding-right: 36px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%2364748B' viewBox='0 0 16 16'%3E%3Cpath d='M4 6l4 4 4-4'/%3E%3C/svg%3E");
    background-repeat: no-repeat; background-position: right 14px center;
}
.form-group select option { background: var(--white); color: var(--gray-900); }
.btn-submit { width: 100%; padding: 14px; font-size: 14px; justify-content: center; }

/* ═══ FOOTER ═══ */
.footer {
    background: var(--navy); color: rgba(255,255,255,0.7); padding: 60px 0 28px;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; margin-bottom: 40px; }
.footer-logo { height: 62px; width: auto; margin-bottom: 16px; }
.footer-tagline { font-size: 0.88rem; color: rgba(255,255,255,0.4); line-height: 1.7; max-width: 340px; }
.footer-col h5 {
    font-family: 'Space Grotesk', sans-serif; font-size: 0.8rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 2px; margin-bottom: 20px; color: var(--white);
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a { font-size: 0.88rem; color: rgba(255,255,255,0.4); transition: color 0.3s; }
.footer-col ul a:hover { color: var(--cyan); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08); padding-top: 24px;
    display: flex; justify-content: space-between; align-items: center;
    font-size: 0.78rem; color: rgba(255,255,255,0.3);
}
.footer-credit { text-align: center; margin-top: 12px; font-size: 0.5rem; color: rgba(255,255,255,0.18); }
.footer-credit a { color: rgba(255,255,255,0.4); text-decoration: none; transition: color 0.3s; }
.footer-credit a:hover { color: var(--cyan); }

/* Back to top */
.back-top {
    position: fixed; bottom: 28px; right: 28px; width: 44px; height: 44px;
    border-radius: var(--radius-xs); background: var(--white); border: 1px solid var(--gray-200);
    display: flex; align-items: center; justify-content: center; z-index: 100;
    opacity: 0; transform: translateY(20px); transition: all 0.4s; cursor: pointer;
    box-shadow: var(--shadow-md);
}
.back-top.show { opacity: 1; transform: translateY(0); }
.back-top:hover { background: var(--blue); border-color: var(--blue); }
.back-top svg { width: 18px; height: 18px; stroke: var(--gray-700); fill: none; stroke-width: 2; stroke-linecap: round; }
.back-top:hover svg { stroke: var(--white); }

/* ═══ RESPONSIVE ═══ */
@media (max-width: 1024px) {
    .hero-grid { grid-template-columns: 1fr; gap: 48px; }
    .hero-visual { max-width: 500px; margin: 0 auto; }
    .hero-stats { gap: 24px; }
    .bento-grid { grid-template-columns: repeat(3, 1fr); }
    .services-grid, .why-grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
    .about-grid { grid-template-columns: 1fr; gap: 48px; }
    .about-visual { max-width: 480px; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .process-timeline { grid-template-columns: repeat(2, 1fr); gap: 40px; }
    .process-timeline::before { display: none; }
    .about-stats { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .section { padding: 80px 0; }
    .nav-links { display: none; }
    .nav-toggle { display: flex; }
    .hero h1 { font-size: clamp(2.4rem, 10vw, 3.5rem); }
    .hero-img-float { display: none; }
    .hero-deco-circle, .hero-deco-dots { display: none; }
    .hero-stats { flex-wrap: wrap; gap: 20px; }
    .mv-cards { grid-template-columns: 1fr; }
    .bento-grid { grid-template-columns: 1fr 1fr; }
    .projects-track { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
    .coverage-grid { grid-template-columns: repeat(2, 1fr); }
    .cta-ring { display: none; }
}
@media (max-width: 480px) {
    .container { padding: 0 18px; }
    .hero-label { display: none; }
    .hero h1 { font-size: clamp(1.6rem, 8vw, 2.4rem); line-height: 1.15; }
    .hero-buttons { flex-direction: column; }
    .hero-buttons .btn { width: 100%; justify-content: center; }
    .hero-stats { grid-template-columns: 1fr 1fr; gap: 16px; }
    .about-stats { grid-template-columns: 1fr 1fr; }
    .bento-grid { grid-template-columns: 1fr; }
    .contact-form { padding: 24px 18px; }
    .process-timeline { grid-template-columns: 1fr; }
    .coverage-grid { grid-template-columns: 1fr; }
    .cta-btns { flex-direction: column; align-items: center; }
}
/* ═══ FAQ ═══ */
.faq-section { background: var(--off-white); }
.faq-grid { max-width: 840px; margin: 48px auto 0; }
.faq-item {
    background: var(--white); border: 1px solid var(--gray-100); border-radius: var(--radius-sm);
    margin-bottom: 12px; overflow: hidden; transition: box-shadow 0.3s ease, border-color 0.3s ease;
}
.faq-item:hover { border-color: var(--gray-200); box-shadow: var(--shadow-sm); }
.faq-item.active { border-color: var(--blue); box-shadow: var(--shadow-blue); }
.faq-question {
    width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px;
    padding: 20px 24px; background: none; border: none; cursor: pointer;
    font-family: 'Space Grotesk', sans-serif; font-size: 1.05rem; font-weight: 600;
    color: var(--gray-900); text-align: left; line-height: 1.4; transition: color 0.3s ease;
}
.faq-item.active .faq-question { color: var(--blue); }
.faq-question svg {
    flex-shrink: 0; width: 20px; height: 20px; stroke: var(--gray-400);
    transition: transform 0.3s ease, stroke 0.3s ease;
}
.faq-item.active .faq-question svg { transform: rotate(45deg); stroke: var(--blue); }
.faq-answer {
    max-height: 0; overflow: hidden; transition: max-height 0.4s cubic-bezier(0.16,1,0.3,1), padding 0.3s ease;
}
.faq-answer-inner {
    padding: 0 24px 20px; font-size: 0.95rem; line-height: 1.75; color: var(--text-muted);
}
.faq-count {
    text-align: center; margin-top: 32px; font-size: 0.85rem; color: var(--gray-400);
    font-family: 'Space Grotesk', sans-serif; letter-spacing: 1px;
}
