/* ==========================================
   INNAYNOVA TECH LIMITED - STYLE.CSS
   Multi-Page, Animated, Responsive Website
   ========================================== */

:root {
    --primary: #1801ab;
    --primary-light: #1800ab;
    --primary-dark: #1800ae;
    --secondary: #39b6fb;
    --accent: #f59e0b;
    --dark: #0f0f1a;
    --dark-light: #1a1a2e;
    --dark-lighter: #252540;
    --text: #e2e8f0;
    --text-muted: #94a3b8;
    --text-dim: #64748b;
    --white: #ffffff;
    --border: rgba(255,255,255,0.08);
    --border-light: rgba(255,255,255,0.05);
    --gradient-primary: linear-gradient(135deg, #1800ae 0%, #39b6fb 50%, #06b6d4 100%);
    --gradient-dark: linear-gradient(135deg, #0f0f1a 0%, #1a1a2e 100%);
    --gradient-card: linear-gradient(145deg, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0.01) 100%);
    --shadow-glow: 0 0 40px rgba(99, 102, 241, 0.15);
    --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.3);
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Space Grotesk', sans-serif;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-body); background-color: var(--dark); color: var(--text); line-height: 1.6; overflow-x: hidden; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
a { text-decoration: none; color: inherit; transition: var(--transition-base); }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }
input, textarea, select { font-family: inherit; }
::selection { background: var(--primary); color: var(--white); }
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--primary-dark); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--primary); }
.container { width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 24px; }

/* PRELOADER */
.preloader { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: var(--dark); z-index: 99999; display: flex; align-items: center; justify-content: center; transition: opacity 0.6s ease, visibility 0.6s ease; }
.preloader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader-content { text-align: center; }
.preloader-logo { display: flex; align-items: center; justify-content: center; margin-bottom: 32px; animation: preloaderPulse 2s ease-in-out infinite; }
.preloader-logo .logo-image { height: 62px; width: auto; display: block; border-radius: 10px; }
.preloader-bar { width: 200px; height: 3px; background: var(--dark-lighter); border-radius: 3px; overflow: hidden; margin: 0 auto 16px; }
.preloader-progress { width: 0%; height: 100%; background: var(--gradient-primary); border-radius: 3px; transition: width 0.3s ease; }
.preloader-percent { font-family: var(--font-display); font-size: 0.875rem; color: var(--text-muted); font-weight: 500; }
@keyframes preloaderPulse { 0%, 100% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.02); opacity: 0.8; } }

/* CUSTOM CURSOR */
.cursor-dot, .cursor-outline { position: fixed; top: 0; left: 0; transform: translate(-50%, -50%); border-radius: 50%; pointer-events: none; z-index: 99998; transition: opacity 0.3s ease; }
.cursor-dot { width: 8px; height: 8px; background: var(--primary); }
.cursor-outline { width: 40px; height: 40px; border: 1px solid rgba(99, 102, 241, 0.5); transition: width 0.3s ease, height 0.3s ease, border-color 0.3s ease; }
.cursor-outline.hover { width: 60px; height: 60px; border-color: var(--primary); background: rgba(99, 102, 241, 0.05); }
@media (max-width: 768px) { .cursor-dot, .cursor-outline { display: none; } }

/* NAVIGATION */
.navbar { position: fixed; top: 0; left: 0; width: 100%; z-index: 1000; padding: 20px 0; transition: var(--transition-base); }
.navbar.scrolled { background: rgba(15, 15, 26, 0.9); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); padding: 12px 0; border-bottom: 1px solid var(--border); }
.nav-container { max-width: 1280px; margin: 0 auto; padding: 0 24px; display: flex; align-items: center; justify-content: space-between; }
.nav-logo { display: flex; align-items: center; color: var(--white); }
.nav-logo .logo-image { height: 54px; width: auto; display: block; border-radius: 8px; transition: var(--transition-base); }
.nav-logo:hover .logo-image { transform: scale(1.04); box-shadow: var(--shadow-glow); }
.nav-menu { display: flex; align-items: center; gap: 8px; }
.nav-link { padding: 8px 16px; font-size: 0.9rem; font-weight: 500; color: var(--text-muted); border-radius: 8px; position: relative; transition: var(--transition-base); }
.nav-link:hover, .nav-link.active { color: var(--white); background: rgba(99, 102, 241, 0.1); }
.nav-link::after { content: ''; position: absolute; bottom: 4px; left: 50%; width: 0; height: 2px; background: var(--gradient-primary); border-radius: 2px; transition: var(--transition-base); transform: translateX(-50%); }
.nav-link:hover::after, .nav-link.active::after { width: 20px; }
.nav-actions { display: flex; align-items: center; gap: 16px; }

.hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; z-index: 1001; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: var(--transition-base); }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-menu { position: fixed; top: 0; right: -100%; width: 100%; max-width: 400px; height: 100vh; background: var(--dark-light); backdrop-filter: blur(20px); z-index: 999; padding: 100px 40px 40px; transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1); border-left: 1px solid var(--border); }
.mobile-menu.active { right: 0; }
.mobile-menu-content { display: flex; flex-direction: column; gap: 8px; }
.mobile-link { padding: 14px 20px; font-size: 1.1rem; font-weight: 500; color: var(--text-muted); border-radius: 12px; transition: var(--transition-base); }
.mobile-link:hover { color: var(--white); background: rgba(99, 102, 241, 0.1); }
.mobile-cta { margin-top: 16px; text-align: center; }

/* BUTTONS */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 12px 28px; font-size: 0.9rem; font-weight: 600; border-radius: 12px; cursor: pointer; transition: var(--transition-base); position: relative; overflow: hidden; }
.btn-primary { background: var(--gradient-primary); color: var(--white); border: none; box-shadow: 0 4px 20px rgba(99, 102, 241, 0.3); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(99, 102, 241, 0.4); }
.btn-primary:active { transform: translateY(0); }
.btn-outline { background: transparent; color: var(--text); border: 1px solid var(--border); }
.btn-outline:hover { border-color: var(--primary); color: var(--primary); background: rgba(99, 102, 241, 0.05); }
.btn-white { background: var(--white); color: var(--dark); border: none; }
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(255, 255, 255, 0.2); }
.btn-outline-white { background: transparent; color: var(--white); border: 1px solid rgba(255, 255, 255, 0.3); }
.btn-outline-white:hover { background: rgba(255, 255, 255, 0.1); border-color: var(--white); }
.btn-lg { padding: 16px 36px; font-size: 1rem; border-radius: 14px; }
.btn-full { width: 100%; }

/* SECTIONS COMMON */
.section-header { text-align: center; max-width: 700px; margin: 0 auto 60px; }
.section-tag { display: inline-block; padding: 6px 16px; font-size: 0.8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 2px; color: var(--primary); background: rgba(99, 102, 241, 0.1); border: 1px solid rgba(99, 102, 241, 0.2); border-radius: 50px; margin-bottom: 16px; }
.section-title { font-family: var(--font-display); font-size: 3rem; font-weight: 700; color: var(--white); margin-bottom: 16px; letter-spacing: -1px; line-height: 1.2; }
.section-desc { font-size: 1.1rem; color: var(--text-muted); line-height: 1.7; }
.section-cta { text-align: center; margin-top: 48px; }

/* PAGE HEADER */
.page-header { position: relative; min-height: 50vh; display: flex; align-items: center; padding: 140px 24px 80px; overflow: hidden; background: var(--dark); }
.page-header-bg { position: absolute; inset: 0; z-index: 0; }
.page-header-gradient { position: absolute; inset: 0; background: radial-gradient(ellipse at 30% 50%, rgba(99, 102, 241, 0.1) 0%, transparent 60%), radial-gradient(ellipse at 70% 30%, rgba(6, 182, 212, 0.06) 0%, transparent 50%); }
.page-header-content { position: relative; z-index: 1; text-align: center; max-width: 800px; margin: 0 auto; }
.page-tag { display: inline-block; padding: 6px 16px; font-size: 0.8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 2px; color: var(--primary); background: rgba(99, 102, 241, 0.1); border: 1px solid rgba(99, 102, 241, 0.2); border-radius: 50px; margin-bottom: 16px; }
.page-title { font-family: var(--font-display); font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 700; color: var(--white); margin-bottom: 16px; letter-spacing: -2px; line-height: 1.1; }
.page-subtitle { font-size: 1.1rem; color: var(--text-muted); max-width: 600px; margin: 0 auto; line-height: 1.7; }

/* HERO */
.hero { position: relative; min-height: 100vh; min-height: 100svh; display: flex; align-items: center; justify-content: center; padding: 140px 24px 80px; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-gradient { position: absolute; inset: 0; background: radial-gradient(ellipse at 20% 50%, rgba(99, 102, 241, 0.08) 0%, transparent 50%), radial-gradient(ellipse at 80% 20%, rgba(6, 182, 212, 0.06) 0%, transparent 50%), radial-gradient(ellipse at 50% 80%, rgba(139, 92, 246, 0.05) 0%, transparent 50%); }
.hero-particles { position: absolute; inset: 0; overflow: hidden; }
.particle { position: absolute; border-radius: 50%; background: var(--primary); opacity: 0.3; animation: floatParticle linear infinite; }
@keyframes floatParticle { 0% { transform: translateY(100vh) rotate(0deg); opacity: 0; } 10% { opacity: 0.3; } 90% { opacity: 0.3; } 100% { transform: translateY(-100px) rotate(360deg); opacity: 0; } }
.hero-grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(99, 102, 241, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(99, 102, 241, 0.03) 1px, transparent 1px); background-size: 60px 60px; mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%); -webkit-mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%); }
.hero-content { position: relative; z-index: 1; text-align: center; max-width: 900px; }
.hero-badge { display: inline-flex; align-items: center; gap: 10px; padding: 8px 20px; background: rgba(99, 102, 241, 0.1); border: 1px solid rgba(99, 102, 241, 0.2); border-radius: 50px; font-size: 0.85rem; font-weight: 500; color: var(--primary-light); margin-bottom: 32px; }
.badge-dot { width: 8px; height: 8px; background: var(--primary); border-radius: 50%; animation: pulseDot 2s ease-in-out infinite; }
@keyframes pulseDot { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.5; transform: scale(1.3); } }
.hero-title { font-family: var(--font-display); font-size: clamp(2.5rem, 6vw, 5rem); font-weight: 700; color: var(--white); line-height: 1.1; margin-bottom: 24px; letter-spacing: -2px; }
.title-line { display: block; }
.title-line.highlight { background: var(--gradient-primary); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-subtitle { font-size: clamp(1rem, 2vw, 1.25rem); color: var(--text-muted); max-width: 600px; margin: 0 auto 40px; line-height: 1.7; }
.hero-buttons { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; margin-bottom: 60px; }
.hero-stats { display: flex; align-items: center; justify-content: center; gap: 0; flex-wrap: wrap; }
.stat-item { padding: 0 32px; text-align: center; }
.stat-number { font-family: var(--font-display); font-size: 2.5rem; font-weight: 700; color: var(--white); line-height: 1; }
.stat-number::after { content: '+'; font-size: 1.5rem; color: var(--primary); margin-left: 2px; }
.stat-label { font-size: 0.85rem; color: var(--text-muted); margin-top: 8px; }
.stat-divider { width: 1px; height: 40px; background: var(--border); }
.hero-scroll { position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%); z-index: 1; }
.scroll-indicator { display: flex; flex-direction: column; align-items: center; gap: 12px; color: var(--text-muted); font-size: 0.8rem; letter-spacing: 1px; text-transform: uppercase; }
.scroll-mouse { width: 24px; height: 40px; border: 2px solid var(--text-muted); border-radius: 12px; display: flex; justify-content: center; padding-top: 8px; }
.scroll-wheel { width: 4px; height: 8px; background: var(--primary); border-radius: 2px; animation: scrollWheel 2s ease-in-out infinite; }
@keyframes scrollWheel { 0%, 100% { transform: translateY(0); opacity: 1; } 50% { transform: translateY(8px); opacity: 0.3; } }
.hero-shapes { position: absolute; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.shape { position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.15; animation: shapeFloat 8s ease-in-out infinite; }
.shape-1 { width: 400px; height: 400px; background: var(--primary); top: -100px; right: -100px; animation-delay: 0s; }
.shape-2 { width: 300px; height: 300px; background: var(--secondary); bottom: -50px; left: -50px; animation-delay: -2s; }
.shape-3 { width: 200px; height: 200px; background: #8b5cf6; top: 50%; left: 20%; animation-delay: -4s; }
.shape-4 { width: 250px; height: 250px; background: var(--primary); bottom: 20%; right: 10%; animation-delay: -6s; }
@keyframes shapeFloat { 0%, 100% { transform: translate(0, 0) scale(1); } 33% { transform: translate(30px, -30px) scale(1.05); } 66% { transform: translate(-20px, 20px) scale(0.95); } }

/* ABOUT */
.about { padding: 120px 0; position: relative; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-image { position: relative; }
.image-wrapper { position: relative; width: 100%; aspect-ratio: 1; max-width: 500px; }
.image-bg { position: absolute; inset: 0; background: var(--gradient-primary); border-radius: 30px; opacity: 0.1; transform: rotate(-3deg); transition: var(--transition-slow); }
.image-wrapper:hover .image-bg { transform: rotate(0deg) scale(1.02); opacity: 0.15; }
.image-content { position: relative; width: 100%; height: 100%; background: var(--gradient-card); border: 1px solid var(--border); border-radius: 24px; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.image-content img { width: 100%; height: 100%; object-fit: cover; border-radius: 24px; }
.floating-card { position: absolute; background: var(--dark-light); border: 1px solid var(--border); border-radius: 16px; padding: 16px 20px; display: flex; align-items: center; gap: 12px; box-shadow: var(--shadow-card); animation: floatCard 4s ease-in-out infinite; z-index: 2; }
.floating-card.card-2 { bottom: 60px; right: -20px; animation-delay: -2s; }
.floating-card:first-child { top: 40px; left: -20px; }
.fc-icon { width: 44px; height: 44px; background: var(--gradient-primary); border-radius: 12px; display: flex; align-items: center; justify-content: center; color: var(--white); font-size: 1.1rem; }
.fc-number { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; color: var(--white); line-height: 1; }
.fc-label { font-size: 0.8rem; color: var(--text-muted); }
@keyframes floatCard { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
.about-heading { font-family: var(--font-display); font-size: 2.2rem; font-weight: 700; color: var(--white); margin-bottom: 20px; line-height: 1.3; }
.about-text { font-size: 1rem; color: var(--text-muted); margin-bottom: 16px; line-height: 1.8; }
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 28px 0 32px; }
.feature-item { display: flex; align-items: center; gap: 10px; font-size: 0.9rem; color: var(--text); }
.feature-icon { width: 24px; height: 24px; min-width: 24px; background: rgba(99, 102, 241, 0.15); border-radius: 6px; display: flex; align-items: center; justify-content: center; color: var(--primary); font-size: 0.7rem; }

/* MISSION & VISION */
.mission-vision { padding: 0 0 120px; }
.mv-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.mv-card { background: var(--gradient-card); border: 1px solid var(--border); border-radius: 20px; padding: 40px; transition: var(--transition-base); }
.mv-card:hover { transform: translateY(-8px); border-color: rgba(99, 102, 241, 0.2); box-shadow: var(--shadow-card); }
.mv-icon { width: 56px; height: 56px; background: var(--gradient-primary); border-radius: 16px; display: flex; align-items: center; justify-content: center; color: var(--white); font-size: 1.4rem; margin-bottom: 20px; }
.mv-card h3 { font-family: var(--font-display); font-size: 1.3rem; font-weight: 600; color: var(--white); margin-bottom: 12px; }
.mv-card p { font-size: 0.95rem; color: var(--text-muted); line-height: 1.7; }

/* FOUNDER SECTION */
.founder-section { padding: 120px 0; background: linear-gradient(180deg, var(--dark) 0%, var(--dark-light) 50%, var(--dark) 100%); }
.founder-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; align-items: center; }
.founder-image { position: relative; }
.founder-img-wrapper { position: relative; width: 100%; max-width: 450px; aspect-ratio: 4/5; }
.founder-img-wrapper img { width: 100%; height: 100%; object-fit: cover; border-radius: 24px; }
.founder-frame { position: absolute; inset: -12px; border: 2px solid rgba(99, 102, 241, 0.3); border-radius: 30px; z-index: -1; transition: var(--transition-base); }
.founder-img-wrapper:hover .founder-frame { transform: rotate(2deg) scale(1.02); border-color: var(--primary); }
.founder-content { padding: 20px 0; }
.founder-name { font-family: var(--font-display); font-size: 2.5rem; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.founder-role { display: inline-block; padding: 6px 16px; background: rgba(99, 102, 241, 0.1); border: 1px solid rgba(99, 102, 241, 0.2); border-radius: 50px; font-size: 0.85rem; font-weight: 500; color: var(--primary-light); margin-bottom: 24px; }
.founder-bio { font-size: 1rem; color: var(--text-muted); line-height: 1.8; margin-bottom: 16px; }
.founder-stats { display: flex; gap: 40px; margin: 32px 0; }
.f-stat { text-align: center; }
.f-stat-number { font-family: var(--font-display); font-size: 1.8rem; font-weight: 700; color: var(--white); line-height: 1; }
.f-stat-label { font-size: 0.8rem; color: var(--text-muted); margin-top: 4px; }
.founder-social { display: flex; gap: 12px; margin-top: 24px; }

/* BRANDS SECTION */
.brands-section { padding: 120px 0; overflow: hidden; }
.brands-marquee { overflow: hidden; margin-bottom: 24px; }
.brands-marquee.reverse { margin-bottom: 0; }
.brands-track { display: flex; gap: 32px; animation: brandsMarquee 40s linear infinite; width: max-content; }
.brands-track.reverse { animation: brandsMarqueeReverse 40s linear infinite; }
.brand-item { display: flex; align-items: center; gap: 12px; padding: 20px 32px; background: var(--gradient-card); border: 1px solid var(--border); border-radius: 16px; white-space: nowrap; transition: var(--transition-base); }
.brand-item:hover { border-color: rgba(99, 102, 241, 0.3); transform: translateY(-4px); box-shadow: var(--shadow-glow); }
.brand-item i { font-size: 1.8rem; color: var(--primary); }
.brand-item span { font-size: 1rem; font-weight: 600; color: var(--text); }
@keyframes brandsMarquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
@keyframes brandsMarqueeReverse { 0% { transform: translateX(-50%); } 100% { transform: translateX(0); } }

/* SIC SECTION */
.sic-section { padding: 120px 0; background: linear-gradient(180deg, var(--dark) 0%, var(--dark-light) 50%, var(--dark) 100%); position: relative; overflow: hidden; }
.sic-section::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, var(--primary), transparent); opacity: 0.3; }
.sic-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.sic-card { position: relative; background: var(--gradient-card); border: 1px solid var(--border); border-radius: 20px; padding: 32px; overflow: hidden; transition: var(--transition-base); cursor: pointer; }
.sic-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--gradient-primary); transform: scaleX(0); transition: var(--transition-slow); }
.sic-card:hover { transform: translateY(-8px); border-color: rgba(99, 102, 241, 0.3); box-shadow: var(--shadow-glow); }
.sic-card:hover::before { transform: scaleX(1); }
.sic-icon { width: 56px; height: 56px; background: rgba(99, 102, 241, 0.1); border: 1px solid rgba(99, 102, 241, 0.2); border-radius: 16px; display: flex; align-items: center; justify-content: center; color: var(--primary); font-size: 1.4rem; margin-bottom: 20px; transition: var(--transition-base); }
.sic-card:hover .sic-icon { background: var(--gradient-primary); color: var(--white); transform: scale(1.1); }
.sic-card h3 { font-family: var(--font-display); font-size: 1.1rem; font-weight: 600; color: var(--white); margin-bottom: 12px; }
.sic-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; }
.sic-hover { position: absolute; inset: 0; background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(99, 102, 241, 0.08) 0%, transparent 60%); opacity: 0; transition: opacity 0.3s ease; pointer-events: none; }
.sic-card:hover .sic-hover { opacity: 1; }

/* SERVICES */
.services { padding: 120px 0; position: relative; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.services-grid.featured { grid-template-columns: repeat(3, 1fr); }
.services-grid.full { grid-template-columns: repeat(3, 1fr); }
.service-card { position: relative; background: var(--gradient-card); border: 1px solid var(--border); border-radius: 20px; padding: 36px; overflow: hidden; transition: var(--transition-base); }
.service-card.large { grid-column: span 2; }
.service-card:hover { transform: translateY(-4px); border-color: rgba(99, 102, 241, 0.2); box-shadow: var(--shadow-card); }
.service-bg-icon { position: absolute; top: 20px; right: 20px; font-size: 8rem; color: rgba(99, 102, 241, 0.03); transition: var(--transition-slow); }
.service-card:hover .service-bg-icon { color: rgba(99, 102, 241, 0.06); transform: scale(1.1) rotate(-5deg); }
.service-content { position: relative; z-index: 1; }
.service-icon { width: 56px; height: 56px; background: var(--gradient-primary); border-radius: 16px; display: flex; align-items: center; justify-content: center; color: var(--white); font-size: 1.4rem; margin-bottom: 20px; transition: var(--transition-base); }
.service-card:hover .service-icon { transform: scale(1.1) rotate(5deg); box-shadow: var(--shadow-glow); }
.service-card h3 { font-family: var(--font-display); font-size: 1.25rem; font-weight: 600; color: var(--white); margin-bottom: 12px; }
.service-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 16px; }
.service-list { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.service-list li { font-size: 0.85rem; color: var(--text-muted); padding-left: 20px; position: relative; }
.service-list li::before { content: '\f00c'; font-family: 'Font Awesome 6 Free'; font-weight: 900; position: absolute; left: 0; color: var(--primary); font-size: 0.7rem; }

/* WHY CHOOSE US */
.why-choose { padding: 120px 0; background: var(--dark-light); }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.why-card { background: var(--gradient-card); border: 1px solid var(--border); border-radius: 20px; padding: 36px; transition: var(--transition-base); }
.why-card:hover { transform: translateY(-4px); border-color: rgba(99, 102, 241, 0.2); box-shadow: var(--shadow-card); }
.why-icon { width: 56px; height: 56px; background: rgba(99, 102, 241, 0.1); border: 1px solid rgba(99, 102, 241, 0.2); border-radius: 16px; display: flex; align-items: center; justify-content: center; color: var(--primary); font-size: 1.4rem; margin-bottom: 20px; transition: var(--transition-base); }
.why-card:hover .why-icon { background: var(--gradient-primary); color: var(--white); transform: scale(1.1); }
.why-card h3 { font-family: var(--font-display); font-size: 1.2rem; font-weight: 600; color: var(--white); margin-bottom: 12px; }
.why-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; }

/* PORTFOLIO */
.portfolio { padding: 120px 0; background: linear-gradient(180deg, var(--dark) 0%, var(--dark-light) 50%, var(--dark) 100%); }
.portfolio-tabs { display: flex; align-items: center; justify-content: center; gap: 8px; margin-bottom: 48px; flex-wrap: wrap; }
.tab-btn { padding: 10px 24px; font-size: 0.9rem; font-weight: 500; color: var(--text-muted); background: transparent; border: 1px solid var(--border); border-radius: 50px; cursor: pointer; transition: var(--transition-base); }
.tab-btn:hover, .tab-btn.active { color: var(--white); background: var(--gradient-primary); border-color: transparent; box-shadow: 0 4px 20px rgba(99, 102, 241, 0.3); }
.portfolio-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.portfolio-item { position: relative; border-radius: 20px; overflow: hidden; aspect-ratio: 4/3; cursor: pointer; }
.portfolio-image { width: 100%; height: 100%; position: relative; }
.portfolio-image img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition-slow); }
.portfolio-item:hover .portfolio-image img { transform: scale(1.1); }
.portfolio-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 0%, rgba(15, 15, 26, 0.95) 100%); display: flex; align-items: flex-end; padding: 28px; opacity: 0; transition: var(--transition-slow); }
.portfolio-item:hover .portfolio-overlay { opacity: 1; }
.portfolio-info { transform: translateY(20px); transition: var(--transition-slow); }
.portfolio-item:hover .portfolio-info { transform: translateY(0); }
.portfolio-tag { display: inline-block; padding: 4px 12px; font-size: 0.75rem; font-weight: 600; color: var(--white); background: rgba(99, 102, 241, 0.15); border-radius: 50px; margin-bottom: 10px; }
.portfolio-info h3 { font-family: var(--font-display); font-size: 1.2rem; font-weight: 600; color: var(--white); margin-bottom: 6px; }
.portfolio-info p { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 12px; }
.portfolio-link { width: 40px; height: 40px; background: var(--gradient-primary); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--white); transition: var(--transition-base); }
.portfolio-link:hover { transform: scale(1.1); box-shadow: var(--shadow-glow); }
.portfolio-item { transition: opacity 0.4s ease, transform 0.4s ease; }
.portfolio-item.hidden { opacity: 0; transform: scale(0.9); pointer-events: none; position: absolute; }

/* STATS SECTION */
.stats-section { padding: 120px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat-box { background: var(--gradient-card); border: 1px solid var(--border); border-radius: 20px; padding: 40px; text-align: center; transition: var(--transition-base); }
.stat-box:hover { transform: translateY(-4px); border-color: rgba(99, 102, 241, 0.2); box-shadow: var(--shadow-card); }
.stat-icon { width: 56px; height: 56px; background: rgba(99, 102, 241, 0.1); border: 1px solid rgba(99, 102, 241, 0.2); border-radius: 16px; display: flex; align-items: center; justify-content: center; color: var(--primary); font-size: 1.4rem; margin: 0 auto 20px; transition: var(--transition-base); }
.stat-box:hover .stat-icon { background: var(--gradient-primary); color: var(--white); }
.stat-box .stat-number { font-family: var(--font-display); font-size: 2.5rem; font-weight: 700; color: var(--white); line-height: 1; margin-bottom: 8px; }
.stat-box .stat-number::after { content: '+'; font-size: 1.5rem; color: var(--primary); margin-left: 2px; }
.stat-box .stat-label { font-size: 0.9rem; color: var(--text-muted); }

/* PROCESS */
.process { padding: 120px 0; position: relative; }
.process-timeline { position: relative; max-width: 800px; margin: 0 auto; }
.process-line { position: absolute; left: 50%; top: 0; bottom: 0; width: 2px; background: linear-gradient(180deg, var(--primary), var(--secondary), var(--primary)); transform: translateX(-50%); }
.process-step { display: flex; align-items: flex-start; gap: 40px; margin-bottom: 60px; position: relative; }
.process-step:nth-child(even) { flex-direction: row-reverse; text-align: right; }
.process-step:last-child { margin-bottom: 0; }
.step-number { position: absolute; left: 50%; transform: translateX(-50%); width: 50px; height: 50px; background: var(--gradient-primary); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 1rem; font-weight: 700; color: var(--white); box-shadow: 0 0 30px rgba(99, 102, 241, 0.4); z-index: 1; flex-shrink: 0; }
.step-content { width: calc(50% - 50px); background: var(--gradient-card); border: 1px solid var(--border); border-radius: 20px; padding: 32px; transition: var(--transition-base); }
.step-content:hover { border-color: rgba(99, 102, 241, 0.3); transform: translateY(-4px); box-shadow: var(--shadow-card); }
.step-icon { width: 48px; height: 48px; background: rgba(99, 102, 241, 0.1); border: 1px solid rgba(99, 102, 241, 0.2); border-radius: 14px; display: flex; align-items: center; justify-content: center; color: var(--primary); font-size: 1.2rem; margin-bottom: 16px; transition: var(--transition-base); }
.step-content:hover .step-icon { background: var(--gradient-primary); color: var(--white); transform: scale(1.1); }
.step-content h3 { font-family: var(--font-display); font-size: 1.2rem; font-weight: 600; color: var(--white); margin-bottom: 10px; }
.step-content p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; }

/* TEAM MEMBERS */
.team-members { padding: 120px 0; }
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.team-card { background: var(--gradient-card); border: 1px solid var(--border); border-radius: 24px; overflow: hidden; transition: var(--transition-base); }
.team-card:hover { transform: translateY(-8px); border-color: rgba(99, 102, 241, 0.2); box-shadow: var(--shadow-card); }
.team-img-wrapper { position: relative; width: 100%; aspect-ratio: 1; overflow: hidden; }
.team-img-wrapper img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition-slow); }
.team-card:hover .team-img-wrapper img { transform: scale(1.1); }
.team-overlay { position: absolute; inset: 0; background: rgba(15, 15, 26, 0.8); display: flex; align-items: center; justify-content: center; opacity: 0; transition: var(--transition-slow); }
.team-card:hover .team-overlay { opacity: 1; }
.team-social { display: flex; gap: 12px; transform: translateY(20px); transition: var(--transition-slow); }
.team-card:hover .team-social { transform: translateY(0); }
.team-social .social-link { width: 44px; height: 44px; background: var(--gradient-primary); border-radius: 12px; display: flex; align-items: center; justify-content: center; color: var(--white); font-size: 1rem; transition: var(--transition-base); }
.team-social .social-link:hover { transform: scale(1.1); box-shadow: var(--shadow-glow); }
.team-info { padding: 28px; }
.team-info h3 { font-family: var(--font-display); font-size: 1.2rem; font-weight: 600; color: var(--white); margin-bottom: 6px; }
.team-role { display: inline-block; font-size: 0.85rem; font-weight: 500; color: var(--primary); margin-bottom: 12px; }
.team-info p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; }

/* TECH STACK */
.tech-stack { padding: 120px 0; background: var(--dark-light); position: relative; overflow: hidden; }
.tech-stack::before, .tech-stack::after { content: ''; position: absolute; left: 0; right: 0; height: 100px; z-index: 2; pointer-events: none; }
.tech-stack::before { top: 0; background: linear-gradient(180deg, var(--dark-light), transparent); }
.tech-stack::after { bottom: 0; background: linear-gradient(0deg, var(--dark-light), transparent); }
.tech-marquee { overflow: hidden; position: relative; }
.tech-track { display: flex; gap: 32px; animation: marquee 30s linear infinite; animation-delay: -15s; width: max-content; }
.tech-item { display: flex; align-items: center; gap: 12px; padding: 16px 28px; background: var(--gradient-card); border: 1px solid var(--border); border-radius: 16px; white-space: nowrap; transition: var(--transition-base); }
.tech-item:hover { border-color: rgba(99, 102, 241, 0.3); transform: translateY(-4px); box-shadow: var(--shadow-glow); }
.tech-item img { height: 36px; width: auto; max-width: 140px; object-fit: contain; display: block; }
.tech-item i { font-size: 1.5rem; color: var(--primary); }
.tech-item span { font-size: 0.95rem; font-weight: 500; color: var(--text); }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* TESTIMONIALS */
.testimonials { padding: 120px 0; position: relative; }
.testimonials-slider { position: relative; overflow: hidden; }
.testimonials-track { display: flex; gap: 24px; transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1); }
.testimonial-card { min-width: calc(50% - 12px); background: var(--gradient-card); border: 1px solid var(--border); border-radius: 24px; padding: 40px; position: relative; transition: var(--transition-base); }
.testimonial-card:hover { border-color: rgba(99, 102, 241, 0.2); transform: translateY(-4px); }
.testimonial-quote { font-size: 2rem; color: var(--primary); opacity: 0.3; margin-bottom: 16px; }
.testimonial-text { font-size: 1.05rem; color: var(--text); line-height: 1.8; margin-bottom: 28px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.author-avatar { width: 48px; height: 48px; background: var(--gradient-primary); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--white); font-family: var(--font-display); font-size: 1.2rem; font-weight: 700; }
.author-info h4 { font-family: var(--font-display); font-size: 1rem; font-weight: 600; color: var(--white); margin-bottom: 2px; }
.author-info span { font-size: 0.85rem; color: var(--text-muted); }
.testimonial-nav { display: flex; align-items: center; justify-content: center; gap: 20px; margin-top: 40px; }
.testimonial-btn { width: 48px; height: 48px; background: var(--gradient-card); border: 1px solid var(--border); border-radius: 12px; display: flex; align-items: center; justify-content: center; color: var(--text); font-size: 1rem; transition: var(--transition-base); }
.testimonial-btn:hover { background: var(--gradient-primary); color: var(--white); border-color: transparent; box-shadow: var(--shadow-glow); }
.testimonial-dots { display: flex; gap: 8px; }
.dot { width: 10px; height: 10px; background: var(--border); border-radius: 50%; cursor: pointer; transition: var(--transition-base); }
.dot.active { background: var(--primary); width: 30px; border-radius: 5px; }

/* CTA */
.cta-section { padding: 120px 0; position: relative; overflow: hidden; }
.cta-bg { position: absolute; inset: 0; z-index: 0; }
.cta-gradient { position: absolute; inset: 0; background: var(--gradient-primary); opacity: 0.1; }
.cta-particles { position: absolute; inset: 0; overflow: hidden; }
.cta-content { position: relative; z-index: 1; text-align: center; max-width: 700px; margin: 0 auto; }
.cta-title { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; color: var(--white); margin-bottom: 20px; line-height: 1.2; }
.cta-desc { font-size: 1.1rem; color: var(--text-muted); margin-bottom: 40px; line-height: 1.7; }
.cta-buttons { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* CONTACT */
.contact { padding: 120px 0; position: relative; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 20px; }
.contact-card { display: flex; align-items: flex-start; gap: 16px; padding: 24px; background: var(--gradient-card); border: 1px solid var(--border); border-radius: 16px; transition: var(--transition-base); }
.contact-card:hover { border-color: rgba(99, 102, 241, 0.2); transform: translateX(4px); }
.contact-icon { width: 48px; height: 48px; min-width: 48px; background: rgba(99, 102, 241, 0.1); border: 1px solid rgba(99, 102, 241, 0.2); border-radius: 14px; display: flex; align-items: center; justify-content: center; color: var(--primary); font-size: 1.1rem; transition: var(--transition-base); }
.contact-card:hover .contact-icon { background: var(--gradient-primary); color: var(--white); }
.contact-details h4 { font-family: var(--font-display); font-size: 1rem; font-weight: 600; color: var(--white); margin-bottom: 6px; }
.contact-details p, .contact-details a { font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; transition: var(--transition-base); }
.contact-details a:hover { color: var(--primary); }

.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; pointer-events: none; }
.contact-social { padding: 24px; background: var(--gradient-card); border: 1px solid var(--border); border-radius: 16px; }
.contact-social h4 { font-family: var(--font-display); font-size: 1rem; font-weight: 600; color: var(--white); margin-bottom: 16px; }
.social-links { display: flex; gap: 12px; }
.social-link { width: 44px; height: 44px; background: var(--gradient-card); border: 1px solid var(--border); border-radius: 12px; display: flex; align-items: center; justify-content: center; color: var(--text-muted); font-size: 1rem; transition: var(--transition-base); }
.social-link:hover { background: var(--gradient-primary); color: var(--white); border-color: transparent; transform: translateY(-3px); box-shadow: var(--shadow-glow); }

.contact-form-wrapper { background: var(--gradient-card); border: 1px solid var(--border); border-radius: 24px; padding: 40px; }
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label { font-size: 0.85rem; font-weight: 500; color: var(--text-muted); }
.form-group input, .form-group textarea, .form-group select { padding: 14px 18px; background: rgba(255, 255, 255, 0.03); border: 1px solid var(--border); border-radius: 12px; color: var(--text); font-size: 0.95rem; transition: var(--transition-base); outline: none; }
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--text-dim); }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--primary); background: rgba(99, 102, 241, 0.05); box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select { appearance: none; 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='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px; }
.form-group select option { background: var(--dark-light); color: var(--text); }

/* MAP SECTION */
.map-section { padding: 0 0 120px; }
.map-wrapper { background: var(--gradient-card); border: 1px solid var(--border); border-radius: 24px; overflow: hidden; height: 400px; }
.map-placeholder { width: 100%; height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; color: var(--text-muted); }
.map-placeholder i { font-size: 3rem; color: var(--primary); }
.map-placeholder h3 { font-family: var(--font-display); font-size: 1.5rem; font-weight: 600; color: var(--white); }
.map-placeholder p { font-size: 0.95rem; color: var(--text-muted); }

/* FAQ SECTION */
.faq-section { padding: 0 0 120px; }
.faq-grid { display: flex; flex-direction: column; gap: 16px; max-width: 800px; margin: 0 auto; }
.faq-item { background: var(--gradient-card); border: 1px solid var(--border); border-radius: 16px; overflow: hidden; transition: var(--transition-base); }
.faq-item:hover { border-color: rgba(99, 102, 241, 0.2); }
.faq-question { display: flex; align-items: center; justify-content: space-between; padding: 24px; cursor: pointer; }
.faq-question h4 { font-family: var(--font-display); font-size: 1.05rem; font-weight: 600; color: var(--white); }
.faq-question i { color: var(--primary); font-size: 1rem; transition: var(--transition-base); }
.faq-item.active .faq-question i { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.4s ease; }
.faq-item.active .faq-answer { max-height: 300px; padding: 0 24px 24px; }
.faq-answer p { font-size: 0.95rem; color: var(--text-muted); line-height: 1.7; }

/* FOOTER */
.footer { background: var(--dark-light); border-top: 1px solid var(--border); }
.footer-top { padding: 80px 0 60px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 48px; }
.footer-logo { display: inline-flex; align-items: center; margin-bottom: 20px; }
.footer-logo .logo-image { height: 54px; width: auto; display: block; border-radius: 8px; }
.footer-desc { font-size: 0.95rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 24px; }
.footer-social { display: flex; gap: 10px; }
.footer-links h4 { font-family: var(--font-display); font-size: 1rem; font-weight: 600; color: var(--white); margin-bottom: 20px; }
.footer-links ul { display: flex; flex-direction: column; gap: 12px; }
.footer-links li { font-size: 0.9rem; color: var(--text-muted); display: flex; align-items: center; gap: 10px; transition: var(--transition-base); }
.footer-links li i { color: var(--primary); font-size: 0.8rem; width: 16px; }
.footer-links a { color: var(--text-muted); transition: var(--transition-base); }
.footer-links a:hover { color: var(--primary); padding-left: 4px; }
.footer-bottom { border-top: 1px solid var(--border); padding: 24px 0; }
.footer-bottom-content { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-bottom-content p { font-size: 0.85rem; color: var(--text-dim); }

/* BACK TO TOP */
.back-to-top { position: fixed; bottom: 30px; right: 30px; width: 48px; height: 48px; background: var(--gradient-primary); border-radius: 12px; display: flex; align-items: center; justify-content: center; color: var(--white); font-size: 1rem; z-index: 999; opacity: 0; visibility: hidden; transform: translateY(20px); transition: var(--transition-base); box-shadow: 0 4px 20px rgba(99, 102, 241, 0.3); }
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { transform: translateY(-4px); box-shadow: 0 8px 30px rgba(99, 102, 241, 0.4); }

/* TOAST */
.toast { position: fixed; top: 92px; right: 24px; width: min(380px, calc(100vw - 32px)); background: var(--dark-light); border: 1px solid var(--border); border-radius: 16px; padding: 14px 18px; display: flex; align-items: center; gap: 12px; z-index: 10000; box-shadow: var(--shadow-card); opacity: 0; transform: translateX(120%); pointer-events: none; transition: transform 0.38s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease; }
.toast.show { opacity: 1; transform: translateX(0); }
.toast.hide { opacity: 0; transform: translateX(24px); }
.toast-icon { width: 32px; height: 32px; background: rgba(34, 197, 94, 0.15); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #22c55e; font-size: 0.9rem; }
.toast.error .toast-icon { background: rgba(239, 68, 68, 0.15); color: #ef4444; }
.toast-message { font-size: 0.95rem; font-weight: 500; color: var(--text); }

/* SCROLL REVEAL */
[data-reveal] { 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); }
[data-reveal="left"] { transform: translateX(-60px); }
[data-reveal="right"] { transform: translateX(60px); }
[data-reveal="up"] { transform: translateY(40px); }
[data-reveal].revealed { opacity: 1; transform: translate(0); }
[data-delay="100"] { transition-delay: 0.1s; }
[data-delay="150"] { transition-delay: 0.15s; }
[data-delay="200"] { transition-delay: 0.2s; }
[data-delay="300"] { transition-delay: 0.3s; }
[data-delay="400"] { transition-delay: 0.4s; }
[data-delay="450"] { transition-delay: 0.45s; }
[data-delay="500"] { transition-delay: 0.5s; }
[data-delay="600"] { transition-delay: 0.6s; }
[data-delay="700"] { transition-delay: 0.7s; }

/* RESPONSIVE */
@media (max-width: 1200px) {
    .sic-grid { grid-template-columns: repeat(2, 1fr); }
    .services-grid, .services-grid.featured, .services-grid.full { grid-template-columns: repeat(2, 1fr); }
    .service-card.large { grid-column: span 2; }
    .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .team-grid { grid-template-columns: repeat(2, 1fr); }
    .why-grid { grid-template-columns: repeat(2, 1fr); }
    .mv-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 992px) {
    .about-grid, .founder-grid { grid-template-columns: 1fr; gap: 60px; }
    .about-image, .founder-image { max-width: 500px; margin: 0 auto; }
    .contact-grid { grid-template-columns: 1fr; }
    .process-step, .process-step:nth-child(even) { flex-direction: column; text-align: left; padding-left: 70px; }
    .process-line { left: 25px; }
    .step-number { left: 0; transform: none; }
    .step-content { width: 100%; }
    .testimonial-card { min-width: calc(100% - 12px); }
    .section-title { font-size: 2.2rem; }
    .founder-name { font-size: 2rem; }
    .founder-stats { gap: 24px; }
}

@media (max-width: 768px) {
    .nav-menu, .nav-cta { display: none; }
    .hamburger { display: flex; }
    .hero-title { font-size: 2.5rem; }
    .hero-stats { gap: 24px; }
    .stat-item { padding: 0 16px; }
    .stat-divider { display: none; }
    .stat-number { font-size: 2rem; }
    .sic-grid { grid-template-columns: 1fr; }
    .services-grid, .services-grid.featured, .services-grid.full { grid-template-columns: 1fr; }
    .service-card.large { grid-column: span 1; }
    .portfolio-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 40px; }
    .footer-bottom-content { flex-direction: column; text-align: center; }
    .form-row { grid-template-columns: 1fr; }
    .cta-buttons { flex-direction: column; }
    .hero-buttons { flex-direction: column; }
    .about-features { grid-template-columns: 1fr; }
    .floating-card { display: none; }
    .section-title { font-size: 1.8rem; }
    .about-heading { font-size: 1.6rem; }
    .process-step { padding-left: 60px; }
    .step-number { width: 40px; height: 40px; font-size: 0.85rem; }
    .process-line { left: 20px; }
    .team-grid { grid-template-columns: 1fr; }
    .why-grid { grid-template-columns: 1fr; }
    .mv-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: 1fr; }
    .founder-stats { flex-wrap: wrap; }
    .page-title { font-size: 2.5rem; }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .hero { padding: 120px 16px 60px; }
    .page-header { padding: 120px 16px 60px; }
    .section-header { margin-bottom: 40px; }
    .about, .services, .portfolio, .process, .tech-stack, .testimonials, .contact, .cta-section, .mission-vision, .founder-section, .team-members, .brands-section, .why-choose, .stats-section { padding: 80px 0; }
    .service-card, .sic-card, .testimonial-card, .contact-form-wrapper, .mv-card, .why-card, .stat-box, .team-card { border-radius: 16px; padding: 24px; }
    .portfolio-item { border-radius: 16px; }
    .contact-card { padding: 16px; }
    .stat-number { font-size: 1.5rem; }
    .stat-number::after { font-size: 1rem; }
    .hero-title { font-size: 2rem; }
    .hero-subtitle { font-size: 0.95rem; line-height: 1.65; }
    .testimonial-text { font-size: 0.95rem; }
    .founder-name { font-size: 1.5rem; }
    .brand-item { padding: 14px 20px; }
    .brand-item i { font-size: 1.4rem; }
    .brand-item span { font-size: 0.85rem; }
    .hero-buttons .btn, .cta-buttons .btn { width: 100%; }
    .footer-links li { align-items: flex-start; }
    .footer-links li, .footer-links a, .contact-details p, .contact-details a { overflow-wrap: anywhere; word-break: break-word; }
    .toast { top: 80px; right: 12px; width: calc(100vw - 24px); }
}

@media (max-width: 380px) {
    .nav-container { padding: 0 14px; }
    .nav-logo .logo-image { height: 44px; }
    .footer-logo .logo-image { height: 44px; }
    .mobile-menu { max-width: none; width: 100%; padding: 88px 20px 24px; }
    .mobile-link { font-size: 1rem; padding: 12px 14px; }
    .hero { padding-top: 108px; }
    .hero-title { font-size: 1.72rem; letter-spacing: -1px; }
    .section-title { font-size: 1.55rem; }
    .page-title { font-size: 2rem; }
    .btn-lg { padding: 14px 20px; font-size: 0.94rem; }
    .back-to-top { right: 16px; bottom: 16px; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
    html { scroll-behavior: auto; }
    .tech-track, .brands-track { animation: none; }
    [data-reveal] { opacity: 1; transform: none; }
}
