/* ============================================
   FORTE India — Modern CSS (v2)
   All content from original forteindia.net
   ============================================ */

/* ---- Variables ---- */
:root {
    --primary: #2563eb;
    --primary-dark: #1d4ed8;
    --primary-light: #3b82f6;
    --accent: #06b6d4;
    --accent2: #8b5cf6;
    --bg: #ffffff;
    --bg-dark: #0f172a;
    --bg-darker: #020617;
    --bg-card: #f8fafc;
    --bg-card-dark: #1e293b;
    --text: #1e293b;
    --text-light: #64748b;
    --text-dark: #e2e8f0;
    --text-dark-muted: #94a3b8;
    --border: #e2e8f0;
    --border-dark: #334155;
    --gradient: linear-gradient(135deg, var(--primary), var(--accent));
    --gradient2: linear-gradient(135deg, var(--accent), var(--accent2));
    --shadow: 0 4px 6px -1px rgba(0,0,0,.1), 0 2px 4px -2px rgba(0,0,0,.1);
    --shadow-lg: 0 20px 25px -5px rgba(0,0,0,.1), 0 8px 10px -6px rgba(0,0,0,.1);
    --radius: 12px;
    --radius-lg: 20px;
    --transition: .3s cubic-bezier(.4,0,.2,1);
    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-heading: 'Space Grotesk', 'Inter', sans-serif;
}

/* ---- Reset ---- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
    font-family: var(--font-main);
    color: var(--text);
    background: var(--bg);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; transition: color var(--transition); }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ---- Preloader ---- */
#preloader {
    position: fixed; inset: 0; background: var(--bg-darker);
    display: flex; align-items: center; justify-content: center;
    z-index: 10000; transition: opacity .5s, visibility .5s;
}
#preloader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loader { text-align: center; }
.loader-text {
    font-family: var(--font-heading); font-size: 2.5rem; font-weight: 800;
    background: var(--gradient); -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; background-clip: text;
    display: block; margin-bottom: 1.5rem; letter-spacing: .15em;
}
.loader-bar {
    width: 200px; height: 3px; background: var(--border-dark);
    border-radius: 3px; overflow: hidden; margin: 0 auto;
}
.loader-bar::after {
    content: ''; display: block; width: 40%; height: 100%;
    background: var(--gradient); border-radius: 3px;
    animation: loaderSlide 1.2s ease-in-out infinite;
}
@keyframes loaderSlide { 0% { transform: translateX(-100%); } 100% { transform: translateX(350%); } }

/* ---- Cursor Glow ---- */
.cursor-glow {
    position: fixed; width: 600px; height: 600px; border-radius: 50%;
    background: radial-gradient(circle, rgba(37,99,235,.07) 0%, transparent 70%);
    pointer-events: none; z-index: 0; transform: translate(-50%, -50%);
    transition: left .15s ease, top .15s ease;
    display: none;
}
@media (hover: hover) { .cursor-glow { display: block; } }

/* ---- Utility ---- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.gradient-text {
    background: var(--gradient); -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; background-clip: text;
}
.text-lg { font-size: 1.15rem; line-height: 1.85; }
.section { padding: 100px 0; position: relative; }
.section-dark { background: var(--bg-dark); color: var(--text-dark); }
.section-header { text-align: center; margin-bottom: 60px; }
.section-tag {
    display: inline-block; font-size: .8rem; font-weight: 600;
    text-transform: uppercase; letter-spacing: .2em; color: var(--primary-light);
    background: rgba(37,99,235,.1); padding: 6px 18px; border-radius: 999px; margin-bottom: 16px;
}
.section-dark .section-tag { background: rgba(59,130,246,.15); }
.section-header h2 {
    font-family: var(--font-heading); font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700; margin-bottom: 12px;
}
.section-line {
    width: 60px; height: 4px; background: var(--gradient);
    border-radius: 4px; margin: 0 auto;
}
.section-note {
    text-align: center; margin-top: 36px; color: var(--text-light);
    font-style: italic; font-size: .95rem;
}

/* ---- Glass Cards ---- */
.glass-card {
    background: rgba(248,250,252,.8); backdrop-filter: blur(12px);
    border: 1px solid var(--border); border-radius: var(--radius-lg);
    padding: 32px; transition: all var(--transition);
}
.glass-card:hover {
    border-color: rgba(37,99,235,.3);
    box-shadow: 0 8px 30px rgba(37,99,235,.08);
}
.glass-card-dark {
    background: rgba(30,41,59,.6); backdrop-filter: blur(12px);
    border: 1px solid var(--border-dark); border-radius: var(--radius-lg);
    padding: 32px; transition: all var(--transition);
}
.glass-card-dark:hover {
    border-color: rgba(59,130,246,.3);
    box-shadow: 0 8px 30px rgba(0,0,0,.3);
}

/* ---- Buttons ---- */
.btn {
    display: inline-flex; align-items: center; gap: 8px;
    font-family: var(--font-main); font-weight: 600; font-size: .95rem;
    padding: 14px 32px; border-radius: 999px; border: 2px solid transparent;
    cursor: pointer; transition: all var(--transition); position: relative;
}
.btn-primary { background: var(--gradient); color: #fff; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(37,99,235,.4); }
.btn-outline { background: transparent; color: #fff; border-color: rgba(255,255,255,.3); }
.btn-outline:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.6); transform: translateY(-2px); }

/* ============================================
   NAVBAR
   ============================================ */
#navbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    transition: all var(--transition); padding: 20px 0;
}
#navbar.scrolled {
    background: rgba(15,23,42,.92); backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px); padding: 12px 0;
    box-shadow: 0 4px 30px rgba(0,0,0,.2);
}
.nav-container {
    max-width: 1200px; margin: 0 auto; padding: 0 24px;
    display: flex; align-items: center; justify-content: space-between;
}
.logo { display: flex; align-items: center; }
.logo-svg {
    height: 36px; width: auto; color: #fff;
    transition: all var(--transition); filter: drop-shadow(0 2px 4px rgba(0,0,0,.3));
}
.logo:hover .logo-svg { filter: drop-shadow(0 4px 12px rgba(59,130,246,.5)); transform: scale(1.03); }

/* ============================================
   3D HERO LOGO
   ============================================ */
.hero-logo-3d {
    position: relative; margin-bottom: 40px; display: inline-block;
}
.logo-3d-scene {
    perspective: 800px; display: flex; justify-content: center;
}
.logo-3d-card {
    position: relative; transform-style: preserve-3d;
    animation: logo3dFloat 6s ease-in-out infinite;
}
.logo-3d-face { backface-visibility: hidden; }
.logo-3d-front svg {
    width: clamp(260px, 50vw, 420px); height: auto;
    filter: drop-shadow(0 0 30px rgba(59,130,246,.3));
}
.logo-3d-shadow {
    position: absolute; bottom: -30px; left: 50%; width: 75%; height: 20px;
    transform: translateX(-50%) rotateX(80deg);
    background: radial-gradient(ellipse, rgba(37,99,235,.25) 0%, transparent 70%);
    filter: blur(10px); animation: logo3dShadow 6s ease-in-out infinite;
}
.logo-3d-glow {
    position: absolute; top: 50%; left: 50%; width: 500px; height: 200px;
    transform: translate(-50%, -50%);
    background: radial-gradient(ellipse, rgba(59,130,246,.12) 0%, transparent 60%);
    pointer-events: none; animation: logo3dGlow 4s ease-in-out infinite alternate;
}
/* Sparkle particles */
.logo-3d-particles {
    position: absolute; inset: -20px; pointer-events: none;
}
.logo-3d-particles span {
    position: absolute; width: 4px; height: 4px; border-radius: 50%;
    background: #60a5fa; opacity: 0;
    animation: sparkle 3s ease-in-out infinite;
}
.logo-3d-particles span:nth-child(1) { top: 10%; left: 5%; animation-delay: 0s; }
.logo-3d-particles span:nth-child(2) { top: 0%; left: 50%; animation-delay: .5s; }
.logo-3d-particles span:nth-child(3) { top: 20%; right: 8%; animation-delay: 1s; }
.logo-3d-particles span:nth-child(4) { bottom: 15%; left: 15%; animation-delay: 1.5s; }
.logo-3d-particles span:nth-child(5) { bottom: 5%; right: 20%; animation-delay: 2s; }
.logo-3d-particles span:nth-child(6) { top: 50%; left: 0%; animation-delay: 2.5s; }

@keyframes logo3dFloat {
    0%, 100% { transform: rotateX(8deg) rotateY(-4deg) translateY(0); }
    25% { transform: rotateX(4deg) rotateY(6deg) translateY(-8px); }
    50% { transform: rotateX(-6deg) rotateY(4deg) translateY(-4px); }
    75% { transform: rotateX(2deg) rotateY(-8deg) translateY(-10px); }
}
@keyframes logo3dShadow {
    0%, 100% { opacity: .7; transform: translateX(-50%) rotateX(80deg) scale(1); }
    25% { opacity: .5; transform: translateX(-50%) rotateX(80deg) scale(.9); }
    50% { opacity: .6; transform: translateX(-50%) rotateX(80deg) scale(.95); }
    75% { opacity: .4; transform: translateX(-50%) rotateX(80deg) scale(.85); }
}
@keyframes logo3dGlow {
    0% { opacity: .6; transform: translate(-50%, -50%) scale(1); }
    100% { opacity: 1; transform: translate(-50%, -50%) scale(1.15); }
}
@keyframes sparkle {
    0%, 100% { opacity: 0; transform: scale(0) translateY(0); }
    50% { opacity: 1; transform: scale(1.5) translateY(-10px); }
}
.nav-links { display: flex; gap: 4px; }
.nav-links a {
    color: rgba(255,255,255,.7); font-size: .9rem; font-weight: 500;
    padding: 8px 16px; border-radius: 999px; transition: all var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: #fff; background: rgba(255,255,255,.1); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: all var(--transition); }
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ============================================
   HERO
   ============================================ */
#hero {
    min-height: 100vh; display: flex; align-items: center; justify-content: center;
    text-align: center; position: relative; overflow: hidden; background: var(--bg-darker);
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-gradient {
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(37,99,235,.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(6,182,212,.1) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 80%, rgba(139,92,246,.1) 0%, transparent 50%);
}
.hero-grid-pattern {
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}
.hero-particles { position: absolute; inset: 0; }
.hero-particles .particle {
    position: absolute; width: 4px; height: 4px;
    background: rgba(59,130,246,.4); border-radius: 50%;
    animation: particleFloat linear infinite;
}
@keyframes particleFloat {
    0% { transform: translateY(100vh) scale(0); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(-10vh) scale(1); opacity: 0; }
}
.hero-orb {
    position: absolute; border-radius: 50%; filter: blur(80px); animation: orbFloat 12s ease-in-out infinite;
}
.hero-orb-1 {
    width: 500px; height: 500px; background: rgba(37,99,235,.12);
    top: -15%; left: -10%; animation-delay: 0s;
}
.hero-orb-2 {
    width: 400px; height: 400px; background: rgba(6,182,212,.1);
    bottom: -10%; right: -5%; animation-delay: -4s;
}
.hero-orb-3 {
    width: 300px; height: 300px; background: rgba(139,92,246,.08);
    top: 50%; left: 50%; transform: translate(-50%,-50%); animation-delay: -8s;
}
@keyframes orbFloat {
    0%,100% { transform: translate(0,0) scale(1); }
    33% { transform: translate(30px,-30px) scale(1.05); }
    66% { transform: translate(-20px,20px) scale(.95); }
}
.hero-content { position: relative; z-index: 1; padding: 0 24px; }
.hero-badge {
    display: inline-flex; align-items: center; gap: 10px;
    background: rgba(37,99,235,.12); border: 1px solid rgba(37,99,235,.25);
    color: var(--primary-light); font-size: .85rem; font-weight: 600;
    padding: 8px 22px; border-radius: 999px; margin-bottom: 32px;
}
.badge-pulse {
    width: 8px; height: 8px; background: #22c55e; border-radius: 50%;
    position: relative;
}
.badge-pulse::after {
    content: ''; position: absolute; inset: -3px; border-radius: 50%;
    border: 2px solid #22c55e; animation: pulse 2s infinite;
}
@keyframes pulse { 0% { transform: scale(1); opacity: 1; } 100% { transform: scale(2); opacity: 0; } }
.hero-content h1 {
    font-family: var(--font-heading); font-size: clamp(2.2rem, 6vw, 4.2rem);
    font-weight: 900; line-height: 1.15; color: #fff; margin-bottom: 20px;
}
.hero-line { display: block; }
.hero-sub {
    color: rgba(255,255,255,.55); font-size: clamp(.95rem, 2vw, 1.15rem);
    max-width: 560px; margin: 0 auto 32px;
}
.hero-highlights {
    display: flex; align-items: center; justify-content: center; gap: 20px;
    flex-wrap: wrap; margin-bottom: 40px;
}
.hero-highlight-item {
    display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,.7); font-size: .9rem;
}
.hero-highlight-item i { color: var(--accent); font-size: 1rem; }
.hero-highlight-divider {
    width: 1px; height: 20px; background: rgba(255,255,255,.15);
}
.hero-cta { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.scroll-indicator {
    position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 8px;
    color: rgba(255,255,255,.4); font-size: .7rem; letter-spacing: .15em;
    text-transform: uppercase; animation: scrollBounce 2s ease-in-out infinite;
}
.mouse {
    width: 22px; height: 34px; border: 2px solid rgba(255,255,255,.25);
    border-radius: 12px; display: flex; justify-content: center; padding-top: 6px;
}
.mouse-wheel {
    width: 3px; height: 8px; background: rgba(255,255,255,.5);
    border-radius: 3px; animation: mouseScroll 2s ease-in-out infinite;
}
@keyframes scrollBounce { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(8px); } }
@keyframes mouseScroll { 0%,100% { transform: translateY(0); opacity: 1; } 50% { transform: translateY(6px); opacity: .3; } }

/* ============================================
   ABOUT
   ============================================ */
.about-layout { display: flex; flex-direction: column; gap: 28px; }
.about-card-primary { border-left: 4px solid var(--primary); }
.about-card-primary p { margin-bottom: 12px; color: var(--text-light); }
.about-card-primary p:last-child { margin-bottom: 0; }
.about-card-primary .text-lg { color: var(--text); }

.about-columns { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.about-columns .glass-card { text-align: center; }
.about-icon {
    width: 56px; height: 56px; margin: 0 auto 16px; border-radius: var(--radius);
    background: var(--gradient); display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 1.3rem;
}
.about-columns h3 { font-family: var(--font-heading); font-size: 1.1rem; margin-bottom: 10px; }
.about-columns p { font-size: .92rem; color: var(--text-light); }

.about-projects .glass-card h3 {
    font-family: var(--font-heading); font-size: 1.15rem; margin-bottom: 14px; display: flex; align-items: center; gap: 10px;
}
.about-projects .glass-card h3 i { color: var(--primary); }
.about-projects .glass-card p { color: var(--text-light); font-size: .95rem; line-height: 1.9; }

.iso-badge-large {
    display: flex; gap: 20px; align-items: center;
    background: linear-gradient(135deg, rgba(37,99,235,.06), rgba(6,182,212,.06));
    border: 1px solid rgba(37,99,235,.15); border-radius: var(--radius-lg); padding: 28px 32px;
}
.iso-icon {
    width: 64px; height: 64px; min-width: 64px; border-radius: 50%;
    background: var(--gradient); display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 1.6rem;
}
.iso-badge-large h4 { font-family: var(--font-heading); font-size: 1.1rem; margin-bottom: 6px; color: var(--primary); }
.iso-badge-large p { font-size: .92rem; color: var(--text-light); }

/* ============================================
   BUSINESS
   ============================================ */
.business-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.business-card {
    background: var(--bg-card-dark); border: 1px solid var(--border-dark);
    border-radius: var(--radius-lg); padding: 36px 30px; position: relative; overflow: hidden;
    transition: all var(--transition);
}
.business-card-glow {
    position: absolute; top: -50%; left: -50%; width: 200%; height: 200%;
    background: radial-gradient(circle at center, rgba(37,99,235,.04) 0%, transparent 50%);
    opacity: 0; transition: opacity .5s;
}
.business-card:hover .business-card-glow { opacity: 1; }
.business-card:hover {
    transform: translateY(-6px); border-color: rgba(59,130,246,.3);
    box-shadow: 0 20px 40px rgba(0,0,0,.3);
}
.business-number {
    font-family: var(--font-heading); font-size: 4rem; font-weight: 900;
    position: absolute; top: 12px; right: 20px;
    background: linear-gradient(135deg, rgba(255,255,255,.04), rgba(255,255,255,.01));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.business-icon {
    width: 56px; height: 56px; border-radius: var(--radius);
    background: rgba(37,99,235,.12); display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem; color: var(--primary-light); margin-bottom: 20px;
}
.business-card h3 { font-family: var(--font-heading); font-size: 1.2rem; margin-bottom: 14px; color: #fff; }
.business-card p { color: var(--text-dark-muted); font-size: .92rem; line-height: 1.7; margin-bottom: 18px; }
.business-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.business-tags span {
    font-size: .75rem; font-weight: 600; padding: 4px 12px; border-radius: 999px;
    background: rgba(6,182,212,.1); color: var(--accent); border: 1px solid rgba(6,182,212,.2);
}

/* ============================================
   PRODUCTS — Hex Grid
   ============================================ */
.products-showcase { display: flex; justify-content: center; padding: 20px 0; }
.product-hex-grid {
    display: grid;
    grid-template-columns: repeat(5, 130px);
    grid-template-rows: repeat(2, 130px);
    gap: 16px;
    justify-content: center;
}
.product-hex {
    display: flex; align-items: center; justify-content: center;
}
.product-hex-inner {
    width: 120px; height: 120px; border-radius: 20px; background: var(--bg-card);
    border: 1px solid var(--border); display: flex; flex-direction: column;
    align-items: center; justify-content: center; gap: 8px;
    transition: all var(--transition); cursor: default;
}
.product-hex-inner:hover {
    transform: translateY(-6px) scale(1.05); border-color: var(--primary-light);
    box-shadow: 0 12px 30px rgba(37,99,235,.15);
}
.product-hex-inner i { font-size: 1.6rem; color: var(--primary); }
.product-hex-inner span { font-size: .8rem; font-weight: 600; color: var(--text); }
.forte-hex {
    background: var(--gradient) !important; border-color: transparent !important;
}
.forte-hex i, .forte-hex span { color: #fff !important; }
.forte-hex span { font-family: var(--font-heading); letter-spacing: .08em; }

.products-grid-fallback { display: none; }

/* ============================================
   TEAM
   ============================================ */
.team-top-stats {
    display: flex; justify-content: center; gap: 32px; margin-bottom: 28px; flex-wrap: wrap;
}
.team-stat-card { text-align: center; padding: 32px 48px; min-width: 200px; }
.team-stat-number {
    font-family: var(--font-heading); font-size: 3rem; font-weight: 800;
    background: var(--gradient); -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; background-clip: text; line-height: 1.2;
}
.team-stat-label { color: var(--text-dark-muted); font-size: .9rem; margin-top: 4px; }

.team-clients-note {
    text-align: center; margin-bottom: 36px; color: var(--text-dark-muted); font-size: .95rem;
}
.team-clients-note strong { color: var(--text-dark); }

.team-composition { padding: 40px; }
.team-composition h3 {
    font-family: var(--font-heading); font-size: 1.3rem; color: #fff; margin-bottom: 32px; text-align: center;
}

.team-chart-area { display: flex; align-items: center; gap: 60px; justify-content: center; flex-wrap: wrap; }

.donut-wrapper { position: relative; width: 220px; height: 220px; }
.donut-svg { width: 100%; height: 100%; transform: rotate(-90deg); }
.donut-segment {
    fill: none; stroke-width: 3.5; stroke-linecap: round;
    transition: stroke-dasharray 1.5s ease;
}
.seg-1 { stroke: #3b82f6; } .seg-1-bg { background: #3b82f6; }
.seg-2 { stroke: #06b6d4; } .seg-2-bg { background: #06b6d4; }
.seg-3 { stroke: #8b5cf6; } .seg-3-bg { background: #8b5cf6; }
.seg-4 { stroke: #f59e0b; } .seg-4-bg { background: #f59e0b; }
.seg-5 { stroke: #10b981; } .seg-5-bg { background: #10b981; }
.seg-6 { stroke: #ef4444; } .seg-6-bg { background: #ef4444; }

.donut-center-text {
    position: absolute; inset: 0; display: flex; flex-direction: column;
    align-items: center; justify-content: center;
}
.donut-total {
    font-family: var(--font-heading); font-size: 2.2rem; font-weight: 800;
    background: var(--gradient); -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; background-clip: text;
}
.donut-label { font-size: .8rem; color: var(--text-dark-muted); text-transform: uppercase; letter-spacing: .12em; }

.donut-legend { display: flex; flex-direction: column; gap: 14px; }
.legend-item { display: flex; align-items: center; gap: 12px; font-size: .9rem; color: var(--text-dark-muted); }
.legend-dot { width: 12px; height: 12px; border-radius: 4px; flex-shrink: 0; }
.legend-count { font-weight: 700; color: var(--text-dark); margin-left: auto; min-width: 24px; text-align: right; }

/* ============================================
   CLIENTS
   ============================================ */
.client-tabs { display: flex; justify-content: center; gap: 12px; margin-bottom: 40px; flex-wrap: wrap; }
.client-tab {
    display: inline-flex; align-items: center; gap: 8px;
    font-family: var(--font-main); font-size: .9rem; font-weight: 500;
    padding: 10px 24px; border-radius: 999px; border: 1px solid var(--border);
    background: transparent; color: var(--text-light); cursor: pointer;
    transition: all var(--transition);
}
.client-tab:hover { border-color: var(--primary-light); color: var(--primary); }
.client-tab.active { background: var(--gradient); color: #fff; border-color: transparent; }

.client-panel { display: none; }
.client-panel.active { display: block; animation: fadeIn .4s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

.client-chips { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.client-chip {
    display: inline-block; padding: 10px 20px; background: var(--bg-card);
    border: 1px solid var(--border); border-radius: 999px;
    font-size: .85rem; font-weight: 500; color: var(--text); transition: all var(--transition);
}
.client-chip:hover {
    border-color: var(--primary-light); color: var(--primary);
    background: rgba(37,99,235,.05); transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37,99,235,.1);
}

/* ============================================
   CONTACT
   ============================================ */
.contact-layout { display: flex; flex-direction: column; gap: 40px; }
.contact-info-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.contact-card { text-align: center; padding: 28px 24px; }
.contact-card-icon {
    width: 52px; height: 52px; margin: 0 auto 14px; border-radius: var(--radius);
    background: rgba(37,99,235,.12); display: flex; align-items: center; justify-content: center;
    color: var(--primary-light); font-size: 1.2rem;
}
.contact-card h4 { font-size: .85rem; font-weight: 600; margin-bottom: 8px; color: var(--text-dark); }
.contact-card p { font-size: .9rem; color: var(--text-dark-muted); line-height: 1.6; }
.contact-card a { color: var(--primary-light); }
.contact-card a:hover { text-decoration: underline; }
.contact-map { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border-dark); }
.contact-map iframe { display: block; filter: grayscale(.2) contrast(1.05) brightness(.9); }

/* ============================================
   FOOTER
   ============================================ */
#footer { background: var(--bg-darker); color: var(--text-dark-muted); padding-top: 80px; }
.footer-top {
    display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px;
    padding-bottom: 60px; border-bottom: 1px solid var(--border-dark);
}
.footer-brand .logo { margin-bottom: 16px; }
.footer-brand .logo-svg { height: 32px; color: rgba(226,232,240,.8); }
.footer-brand > p { font-size: .9rem; line-height: 1.7; margin-bottom: 14px; }
.footer-iso { font-size: .8rem; color: var(--primary-light); font-weight: 600; }
.footer-iso i { margin-right: 4px; }
.footer-links h4, .footer-contact-col h4 {
    font-family: var(--font-heading); color: #fff; font-size: 1rem; margin-bottom: 20px;
}
.footer-links a {
    display: block; font-size: .9rem; padding: 6px 0; color: var(--text-dark-muted);
    transition: all var(--transition);
}
.footer-links a:hover { color: var(--primary-light); padding-left: 8px; }
.footer-contact-col p {
    font-size: .9rem; margin-bottom: 10px; display: flex; align-items: flex-start; gap: 10px;
}
.footer-contact-col i { margin-top: 4px; color: var(--primary-light); }
.footer-contact-col a { color: var(--text-dark-muted); }
.footer-contact-col a:hover { color: var(--primary-light); }
.footer-bottom {
    display: flex; justify-content: space-between; align-items: center; padding: 24px 0; font-size: .85rem;
}
.back-to-top {
    width: 40px; height: 40px; background: var(--gradient); color: #fff; border-radius: 50%;
    display: flex; align-items: center; justify-content: center; transition: all var(--transition);
}
.back-to-top:hover { transform: translateY(-4px); box-shadow: 0 8px 20px rgba(37,99,235,.4); }

/* ============================================
   AOS Animations
   ============================================ */
[data-aos] { opacity: 0; transition: all .8s cubic-bezier(.4,0,.2,1); }
[data-aos="fade-up"] { transform: translateY(40px); }
[data-aos="fade-down"] { transform: translateY(-40px); }
[data-aos="fade-right"] { transform: translateX(-40px); }
[data-aos="fade-left"] { transform: translateX(40px); }
[data-aos="zoom-in"] { transform: scale(.9); }
[data-aos].aos-animate { opacity: 1; transform: translate(0) scale(1); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .business-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-top { grid-template-columns: 1fr 1fr; }
    .product-hex-grid { grid-template-columns: repeat(3, 120px); grid-template-rows: repeat(3, 120px); }
}
@media (max-width: 768px) {
    .nav-toggle { display: flex; }
    .nav-links {
        position: fixed; top: 0; right: -100%; width: 280px; height: 100vh;
        background: var(--bg-darker); flex-direction: column;
        padding: 100px 32px 32px; transition: right var(--transition);
        border-left: 1px solid var(--border-dark);
    }
    .nav-links.active { right: 0; }
    .nav-links a { font-size: 1rem; padding: 12px 16px; }
    .about-columns { grid-template-columns: 1fr; }
    .business-grid { grid-template-columns: 1fr; }
    .contact-info-grid { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr; }
    .hero-cta { flex-direction: column; align-items: center; }
    .hero-highlights { gap: 12px; }
    .hero-highlight-divider { display: none; }
    .team-chart-area { flex-direction: column; gap: 32px; }

    /* Products: show fallback grid on mobile */
    .products-showcase { display: none; }
    .products-grid-fallback {
        display: grid !important; grid-template-columns: repeat(3, 1fr); gap: 12px;
    }
    .product-card-mini {
        display: flex; flex-direction: column; align-items: center; gap: 8px;
        padding: 20px 12px; background: var(--bg-card); border: 1px solid var(--border);
        border-radius: var(--radius); transition: all var(--transition); text-align: center;
    }
    .product-card-mini i { font-size: 1.4rem; color: var(--primary); }
    .product-card-mini span { font-size: .78rem; font-weight: 600; }
    .product-card-mini:hover { border-color: var(--primary-light); transform: translateY(-4px); }
}
@media (max-width: 480px) {
    .section { padding: 60px 0; }
    .team-top-stats { gap: 16px; }
    .team-stat-card { padding: 24px 32px; }
    .team-stat-number { font-size: 2.2rem; }
    .team-composition { padding: 24px; }
    .client-tabs { gap: 8px; }
    .client-tab { font-size: .8rem; padding: 8px 16px; }
    .products-grid-fallback { grid-template-columns: repeat(3, 1fr); gap: 8px; }
    .product-card-mini { padding: 14px 8px; }
    .iso-badge-large { flex-direction: column; text-align: center; }
    .product-hex-grid { grid-template-columns: repeat(3, 100px); grid-template-rows: auto; gap: 10px; }
    .product-hex-inner { width: 95px; height: 95px; }
}
