/* ===========================================
   AgileVision Technologies - Static Site CSS
   =========================================== */

:root {
    --primary-blue: #0A2A6A;
    --primary-blue-dark: #061B4A;
    --primary-blue-light: #1A3F8A;
    --primary-orange: #FF6B00;
    --primary-orange-dark: #E55E00;
    --primary-orange-light: #FF8533;
    --white: #FFFFFF;
    --gray-50: #F8F9FA;
    --gray-100: #F1F3F5;
    --gray-200: #E9ECEF;
    --gray-300: #DEE2E6;
    --gray-400: #CED4DA;
    --gray-500: #ADB5BD;
    --gray-600: #6C757D;
    --gray-700: #495057;
    --gray-800: #343A40;
    --gray-900: #212529;
    --dark: #0D1117;
    --font-primary: 'Inter', sans-serif;
    --font-heading: 'Space Grotesk', sans-serif;
    --header-height: 85px;
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-primary); font-size: 1rem; line-height: 1.7; color: var(--gray-700); background: var(--white); overflow-x: hidden; -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; transition: color var(--transition-fast); }
img { max-width: 100%; height: auto; display: block; }
h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); font-weight: 700; line-height: 1.2; color: var(--gray-900); }

/* Preloader */
.preloader { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: var(--white); display: flex; align-items: center; justify-content: center; z-index: 99999; transition: opacity 0.5s ease, visibility 0.5s ease; }
.preloader.loaded { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader-inner { text-align: center; }
.logo-text-loading { font-family: var(--font-heading); font-size: 3rem; font-weight: 700; background: linear-gradient(135deg, var(--primary-blue), var(--primary-orange)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.preloader-spinner { width: 40px; height: 40px; border: 3px solid var(--gray-200); border-top-color: var(--primary-blue); border-radius: 50%; animation: spin 1s linear infinite; margin: 20px auto 0; }
@keyframes spin { to { transform: rotate(360deg); } }

/* Header */
.main-header { position: fixed; top: 0; left: 0; width: 100%; height: var(--header-height); background: #FFFFFF; border-bottom: 1px solid transparent; z-index: 1000; transition: all var(--transition-base); padding-top: 15px; }
.main-header.scrolled { border-bottom-color: var(--gray-200); box-shadow: 0 2px 8px rgba(0,0,0,0.08); }
.main-header.header-hidden { transform: translateY(-100%); }
.header-wrapper { display: flex; align-items: center; justify-content: space-between; height: 100%; }
.logo a { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo-icon-img { width: 42px; height: 42px; }
.logo-icon { width: 38px; height: 38px; background: var(--primary-blue); color: var(--white); font-family: var(--font-heading); font-size: 0.85rem; font-weight: 700; display: flex; align-items: center; justify-content: center; border-radius: 8px; }
.logo-text-wrap { display: flex; flex-direction: column; line-height: 1; }
.logo-text { font-family: var(--font-heading); font-size: 1.4rem; font-weight: 800; letter-spacing: 1px; }
.logo-blue { color: var(--primary-blue); }
.logo-orange { color: var(--primary-orange); }
.logo-subtext { font-size: 0.5rem; font-weight: 600; color: var(--primary-blue); letter-spacing: 2px; margin-top: 1px; }
.main-nav { display: flex; align-items: center; }
.nav-menu { display: flex; align-items: center; gap: 4px; list-style: none; margin: 0; padding: 0; }
.nav-item > a { display: block; padding: 8px 14px; font-size: 0.85rem; font-weight: 500; color: var(--gray-700); border-radius: 6px; transition: all var(--transition-fast); white-space: nowrap; }
.nav-item > a:hover, .nav-item.active > a { color: var(--primary-blue); background: rgba(10,42,106,0.05); }
.header-cta .btn { display: inline-flex; align-items: center; gap: 6px; }
.mobile-menu-toggle { display: none; flex-direction: column; justify-content: center; gap: 5px; width: 40px; height: 40px; background: transparent; border: none; cursor: pointer; padding: 8px; }
.hamburger-line { width: 100%; height: 2px; background: var(--gray-800); border-radius: 2px; transition: all var(--transition-fast); }

/* Mobile Nav */
.mobile-nav { position: fixed; top: 0; right: -100%; width: 300px; max-width: 85vw; height: 100vh; background: var(--white); z-index: 1001; overflow-y: auto; transition: right var(--transition-base); box-shadow: -4px 0 20px rgba(0,0,0,0.15); }
.mobile-nav.active { right: 0; }
.mobile-nav-header { display: flex; align-items: center; justify-content: space-between; padding: 16px 20px; border-bottom: 1px solid var(--gray-200); }
.mobile-nav-close { width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; background: var(--gray-100); border: none; border-radius: 50%; cursor: pointer; color: var(--gray-700); font-size: 1.1rem; }
.mobile-nav-menu { list-style: none; padding: 12px 0; margin: 0; }
.mobile-nav-item > a { display: block; padding: 12px 20px; font-size: 0.95rem; font-weight: 500; color: var(--gray-700); }
.mobile-nav-item.active > a, .mobile-nav-item > a:hover { color: var(--primary-blue); background: rgba(10,42,106,0.05); }
.mobile-nav-cta { padding: 16px 20px; border-top: 1px solid var(--gray-200); }
.mobile-nav-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.5); opacity: 0; visibility: hidden; z-index: 1000; transition: all var(--transition-base); }
.mobile-nav-overlay.active { opacity: 1; visibility: visible; }

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 12px 28px; font-family: var(--font-primary); font-size: 0.9rem; font-weight: 600; border: none; border-radius: 6px; cursor: pointer; transition: all var(--transition-base); white-space: nowrap; text-decoration: none; }
.btn-primary { background: var(--primary-orange); color: var(--white); }
.btn-primary:hover { background: var(--primary-orange-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(255,107,0,0.35); color: var(--white); }
.btn-secondary { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.3); }
.btn-secondary:hover { background: rgba(255,255,255,0.1); border-color: var(--white); color: var(--white); }
.btn-outline { background: transparent; color: var(--primary-blue); border: 2px solid var(--primary-blue); }
.btn-outline:hover { background: var(--primary-blue); color: var(--white); }
.btn-success { background: #25D366; color: var(--white); }
.btn-success:hover { background: #1da851; color: var(--white); }
.btn-sm { padding: 8px 20px; font-size: 0.85rem; }
.btn-lg { padding: 14px 32px; font-size: 0.95rem; }
.btn i { font-size: 0.85em; }

/* Hero */
.hero-section { position: relative; display: flex; align-items: center; background: linear-gradient(135deg, var(--primary-blue-dark) 0%, var(--primary-blue) 50%, var(--primary-blue-light) 100%); overflow: hidden; padding: 100px 0 30px; }
.hero-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; overflow: hidden; }
.hero-particles { position: absolute; width: 100%; height: 100%; background-image: radial-gradient(2px 2px at 20px 30px, rgba(255,255,255,0.3), transparent), radial-gradient(2px 2px at 40px 70px, rgba(255,255,255,0.2), transparent), radial-gradient(2px 2px at 50px 160px, rgba(255,255,255,0.3), transparent), radial-gradient(2px 2px at 90px 40px, rgba(255,255,255,0.2), transparent); animation: twinkle 4s ease-in-out infinite; }
@keyframes twinkle { 0%, 100% { opacity: 0.5; } 50% { opacity: 1; } }
.hero-grid { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-image: linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px); background-size: 60px 60px; }
.hero-glow { position: absolute; width: 500px; height: 500px; background: radial-gradient(circle, rgba(255,107,0,0.15) 0%, transparent 70%); top: -150px; right: -150px; border-radius: 50%; animation: pulse-glow 4s ease-in-out infinite; }
.hero-glow-2 { position: absolute; width: 400px; height: 400px; background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%); bottom: -100px; left: -100px; border-radius: 50%; }
@keyframes pulse-glow { 0%, 100% { transform: scale(1); opacity: 0.6; } 50% { transform: scale(1.1); opacity: 1; } }
.hero-wrapper { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; position: relative; z-index: 2; }
.hero-content { max-width: 600px; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; padding: 8px 20px; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); border-radius: 30px; font-size: 0.85rem; color: var(--white); margin-bottom: 24px; backdrop-filter: blur(10px); }
.hero-badge i { color: var(--primary-orange); }
.hero-title { font-size: clamp(2.25rem, 5vw, 3.5rem); font-weight: 800; color: var(--white); line-height: 1.1; margin-bottom: 24px; }
.hero-title span { background: linear-gradient(135deg, var(--primary-orange), #FF8533); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-subtitle { font-size: 1.05rem; color: rgba(255,255,255,0.85); line-height: 1.7; margin-bottom: 32px; }
.hero-buttons { display: flex; flex-wrap: wrap; gap: 16px; }
.hero-visual { display: flex; align-items: center; justify-content: center; }
.hero-ai-img { width: 100%; max-width: 480px; height: auto; }

/* Section */
.section { padding: 80px 0; }
.section-header { max-width: 700px; margin: 0 auto 50px; }
.section-badge { display: inline-flex; align-items: center; gap: 8px; padding: 6px 16px; background: rgba(10,42,106,0.08); border-radius: 30px; font-size: 0.8rem; font-weight: 600; color: var(--primary-blue); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 12px; }
.section-badge-light { background: rgba(255,255,255,0.1); color: var(--white); }
.section-badge i { font-size: 0.85em; }
.section-title { margin-bottom: 14px; font-size: clamp(1.75rem, 3.5vw, 2.5rem); }
.section-subtitle { font-size: 1.05rem; color: var(--gray-600); line-height: 1.7; }
.about-section { background: var(--gray-50); }
.about-text { color: var(--gray-600); line-height: 1.8; margin-bottom: 16px; }
.about-visual-wrapper { padding: 20px; }
.about-illustration { position: relative; width: 100%; height: 350px; background: linear-gradient(135deg, rgba(10,42,106,0.03), rgba(255,107,0,0.03)); border-radius: 16px; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.ai-glow-circle { position: absolute; width: 250px; height: 250px; border-radius: 50%; background: radial-gradient(circle, rgba(10,42,106,0.08) 0%, transparent 70%); animation: pulse-soft 4s ease-in-out infinite; }
@keyframes pulse-soft { 0%, 100% { transform: scale(1); opacity: 0.6; } 50% { transform: scale(1.1); opacity: 1; } }
.ai-center-ring { position: relative; z-index: 2; width: 120px; height: 120px; border-radius: 50%; background: var(--white); border: 3px solid var(--primary-blue); display: flex; align-items: center; justify-content: center; box-shadow: 0 8px 30px rgba(10,42,106,0.2); }
.ai-inner-ring { position: absolute; width: 140px; height: 140px; border-radius: 50%; border: 1px solid rgba(10,42,106,0.1); animation: rotate-slow 15s linear infinite; }
.ai-lines-svg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 1; }
@keyframes rotate-slow { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
.ai-float-tag { position: absolute; padding: 8px 16px; background: var(--white); border-radius: 30px; box-shadow: 0 4px 15px rgba(0,0,0,0.08); font-size: 0.8rem; font-weight: 600; color: var(--gray-700); display: flex; align-items: center; gap: 6px; z-index: 2; animation: float 3s ease-in-out infinite; }
.ai-float-tag i { color: var(--primary-blue); font-size: 0.85rem; }
.tag-1 { top: 30px; left: 20%; animation-delay: 0s; }
.tag-2 { top: 60px; right: 15%; animation-delay: 0.5s; }
.tag-3 { bottom: 80px; left: 10%; animation-delay: 1s; }
.tag-4 { bottom: 40px; right: 10%; animation-delay: 1.5s; }
.tag-5 { top: 50%; left: 5%; transform: translateY(-50%); animation-delay: 2s; }
.tag-6 { top: 20px; right: 5%; animation-delay: 0.3s; }
.tag-7 { bottom: 30px; left: 25%; animation-delay: 1.2s; }
.tag-8 { top: 50%; right: 5%; transform: translateY(-50%); animation-delay: 1.8s; }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }
.ai-connection-line { position: absolute; height: 1px; background: linear-gradient(90deg, transparent, rgba(10,42,106,0.15), transparent); z-index: 1; }
.line-1 { width: 80px; top: 50%; left: 25%; transform: rotate(-20deg); }
.line-2 { width: 80px; top: 50%; right: 25%; transform: rotate(20deg); }
.line-3 { width: 60px; top: 35%; left: 30%; transform: rotate(-45deg); }
.line-4 { width: 60px; bottom: 35%; right: 30%; transform: rotate(45deg); }
.ai-dot { position: absolute; width: 6px; height: 6px; border-radius: 50%; background: var(--primary-blue); opacity: 0.2; z-index: 1; }
.dot-1 { top: 20%; left: 30%; }
.dot-2 { top: 30%; right: 25%; }
.dot-3 { bottom: 30%; left: 20%; }
.dot-4 { bottom: 25%; right: 20%; }
.dot-5 { top: 50%; left: 10%; }
.dot-6 { top: 50%; right: 10%; }
.about-feature { display: flex; gap: 14px; margin-bottom: 16px; }
.about-feature-icon { width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, var(--primary-blue), var(--primary-blue-light)); border-radius: 10px; color: var(--white); font-size: 1.1rem; flex-shrink: 0; }
.about-feature h4 { font-size: 0.95rem; font-weight: 600; margin-bottom: 2px; }
.about-feature p { font-size: 0.85rem; color: var(--gray-500); margin: 0; }
.about-image-wrapper { background: linear-gradient(135deg, var(--primary-blue), var(--primary-blue-light)); border-radius: 16px; overflow: hidden; box-shadow: 0 10px 40px rgba(10,42,106,0.2); aspect-ratio: 4/3; position: relative; }
.about-image-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; }
.about-image-content { text-align: center; color: var(--white); }
.about-image-content h3 { font-size: 3rem; color: var(--white); margin-bottom: 8px; }
.about-image-content p { font-size: 1rem; color: rgba(255,255,255,0.8); }
.vision-card, .mission-card { background: var(--white); padding: 32px; border-radius: 12px; box-shadow: 0 4px 20px rgba(0,0,0,0.08); border-left: 4px solid var(--primary-blue); height: 100%; transition: transform 0.3s ease; }
.mission-card { border-left-color: var(--primary-orange); }
.vision-card:hover, .mission-card:hover { transform: translateY(-4px); }
.vision-card .icon, .mission-card .icon { width: 50px; height: 50px; display: flex; align-items: center; justify-content: center; border-radius: 10px; margin-bottom: 16px; font-size: 1.25rem; }
.vision-card .icon { background: rgba(10,42,106,0.08); color: var(--primary-blue); }
.mission-card .icon { background: rgba(255,107,0,0.08); color: var(--primary-orange); }
.vision-card h3, .mission-card h3 { font-size: 1.3rem; margin-bottom: 12px; }

/* Services */
.services-section { background: var(--white); }
.service-card { background: var(--white); padding: 28px; border-radius: 12px; box-shadow: 0 4px 20px rgba(0,0,0,0.08); border: 1px solid var(--gray-100); transition: all 0.3s ease; height: 100%; position: relative; overflow: hidden; text-align: center; }
.service-card::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 4px; background: linear-gradient(90deg, var(--primary-blue), var(--primary-orange)); opacity: 0; transition: opacity 0.3s; }
.service-card:hover { transform: translateY(-6px); box-shadow: 0 10px 30px rgba(0,0,0,0.12); border-color: transparent; }
.service-card:hover::before { opacity: 1; }
.service-icon { width: 60px; height: 60px; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, var(--primary-blue), var(--primary-blue-light)); border-radius: 12px; color: var(--white); font-size: 1.5rem; margin: 0 auto 16px; }
.service-card h3 { font-size: 1.3rem; margin-bottom: 12px; }
.service-card p { color: var(--gray-600); line-height: 1.7; margin-bottom: 16px; font-size: 0.95rem; }
.service-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 16px; }
.service-tag { padding: 4px 10px; background: var(--gray-100); border-radius: 4px; font-size: 0.78rem; color: var(--gray-600); }
.service-link { display: inline-flex; align-items: center; gap: 6px; font-weight: 600; color: var(--primary-blue); font-size: 0.9rem; }
.service-link:hover { gap: 10px; color: var(--primary-orange); }

/* Products */
.products-section { background: var(--gray-50); }
.product-card { background: var(--white); border-radius: 12px; overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,0.08); transition: all 0.3s ease; height: 100%; }
.product-card:hover { transform: translateY(-6px); box-shadow: 0 10px 30px rgba(0,0,0,0.12); }
.product-image { height: 200px; background: linear-gradient(135deg, var(--primary-blue), var(--primary-blue-light)); display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.product-image i { font-size: 3.5rem; color: rgba(255,255,255,0.2); }
.product-image-orange { background: linear-gradient(135deg, var(--primary-orange), var(--primary-orange-light)); }
.product-image-banking { background: linear-gradient(135deg, var(--primary-blue-dark), var(--primary-blue)); }
.product-image-learning { background: linear-gradient(135deg, var(--primary-orange), var(--primary-orange-light)); }
.product-illustration { width: 100%; height: 100%; }
.product-illustration svg { display: block; }
.product-content { padding: 24px; }
.product-content h3 { font-size: 1.3rem; margin-bottom: 10px; }
.product-content p { color: var(--gray-600); font-size: 0.95rem; margin-bottom: 16px; }
.product-features { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.product-feature { display: flex; align-items: center; gap: 8px; font-size: 0.85rem; color: var(--gray-600); }
.product-feature i { color: var(--primary-orange); font-size: 0.7rem; }

/* Industries */
.industries-section { background: var(--white); }
.industry-card { background: var(--white); padding: 28px 16px; border-radius: 10px; text-align: center; box-shadow: 0 2px 10px rgba(0,0,0,0.06); border: 1px solid var(--gray-100); transition: all 0.3s ease; height: 100%; }
.industry-card:hover { transform: translateY(-6px); box-shadow: 0 8px 25px rgba(0,0,0,0.1); border-color: var(--primary-blue); }
.industry-icon { width: 50px; height: 50px; display: flex; align-items: center; justify-content: center; background: rgba(10,42,106,0.08); border-radius: 50%; margin: 0 auto 12px; color: var(--primary-blue); font-size: 1.3rem; transition: all 0.3s; }
.industry-card:hover .industry-icon { background: var(--primary-blue); color: var(--white); }
.industry-card h4 { font-size: 0.85rem; font-weight: 600; color: var(--gray-800); margin: 0; }

/* Technologies */
.technologies-section { background: var(--gray-50); }
.tech-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }
.tech-item { display: inline-flex; align-items: center; padding: 10px 20px; background: var(--white); border-radius: 30px; box-shadow: 0 2px 8px rgba(0,0,0,0.06); border: 1px solid var(--gray-100); transition: all 0.3s; }
.tech-item:hover { transform: translateY(-3px); box-shadow: 0 4px 15px rgba(0,0,0,0.1); border-color: var(--primary-blue); }
.tech-item span { font-size: 0.88rem; font-weight: 500; color: var(--gray-700); }
.tech-item-highlight { background: linear-gradient(135deg, var(--primary-blue), var(--primary-blue-light)); border-color: transparent; }
.tech-item-highlight span { color: var(--white); }
.tech-item-orange { background: linear-gradient(135deg, var(--primary-orange), var(--primary-orange-light)); border-color: transparent; }
.tech-item-orange span { color: var(--white); }
.tech-item-purple { background: linear-gradient(135deg, #7c3aed, #a855f7); border-color: transparent; }
.tech-item-purple span { color: var(--white); }

/* Why Choose */
.why-section { background: linear-gradient(135deg, var(--primary-blue-dark) 0%, var(--primary-blue) 100%); color: var(--white); }
.why-section .section-title, .why-section .section-subtitle { color: var(--white); }
.why-section .section-subtitle { opacity: 0.8; }
.why-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 12px; padding: 28px; transition: all 0.3s; height: 100%; }
.why-card:hover { background: rgba(255,255,255,0.1); transform: translateY(-4px); }
.why-card-icon { width: 46px; height: 46px; display: flex; align-items: center; justify-content: center; background: var(--primary-orange); border-radius: 8px; margin-bottom: 16px; font-size: 1.1rem; color: var(--white); }
.why-card h4 { font-size: 1rem; color: var(--white); margin-bottom: 8px; }
.why-card p { font-size: 0.9rem; color: rgba(255,255,255,0.7); margin: 0; }

/* Stats */
.stats-section { background: linear-gradient(135deg, var(--primary-orange), var(--primary-orange-dark)); padding: 60px 0; }
.stat-item { text-align: center; color: var(--white); padding: 16px 0; }
.stat-number { font-family: var(--font-heading); font-size: 2.5rem; font-weight: 700; line-height: 1; margin-bottom: 6px; }
.stat-label { font-size: 0.9rem; opacity: 0.9; }

/* CTA */
.cta-section { background: var(--gray-50); padding: 80px 0; }
.cta-box { background: linear-gradient(135deg, var(--primary-blue), var(--primary-blue-dark)); border-radius: 16px; padding: 50px; text-align: center; position: relative; overflow: hidden; }
.cta-box::before { content: ''; position: absolute; top: -50%; right: -20%; width: 350px; height: 350px; background: radial-gradient(circle, rgba(255,107,0,0.2) 0%, transparent 70%); border-radius: 50%; }
.cta-box h2 { color: var(--white); font-size: 2rem; margin-bottom: 14px; position: relative; }
.cta-box p { color: rgba(255,255,255,0.85); font-size: 1.05rem; max-width: 550px; margin: 0 auto 28px; position: relative; }
.cta-box .btn { position: relative; }

/* Footer */
.main-footer { background: var(--dark); color: var(--gray-400); }
.footer-top { padding: 60px 0 40px; }
.footer-logo { margin-bottom: 16px; }
.footer-logo a { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.footer-logo-icon { background: var(--primary-orange); }
.footer-logo-img { width: 50px; height: 50px; }
.footer-logo-text { font-size: 1.1rem; color: var(--white); }
.footer-logo-subtext { color: var(--gray-500); }
.footer-tagline { font-size: 0.9rem; color: var(--primary-orange); font-weight: 500; margin-bottom: 12px; }
.footer-description { font-size: 0.9rem; line-height: 1.7; margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a { width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; background: rgba(255,255,255,0.05); border-radius: 50%; color: var(--gray-400); transition: all 0.3s; }
.footer-social a:hover { background: var(--primary-orange); color: var(--white); transform: translateY(-3px); }
.footer-title { font-size: 1rem; font-weight: 600; color: var(--white); margin-bottom: 20px; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { font-size: 0.88rem; color: var(--gray-400); }
.footer-links a:hover { color: var(--primary-orange); padding-left: 4px; }
.footer-contact { list-style: none; padding: 0; margin: 0; }
.footer-contact li { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; font-size: 0.88rem; }
.footer-contact i { color: var(--primary-orange); margin-top: 3px; }
.footer-bottom { padding: 20px 0; border-top: 1px solid rgba(255,255,255,0.1); }
.footer-bottom p { font-size: 0.85rem; margin: 0; }
.footer-legal { font-size: 0.78rem; color: var(--gray-500); margin-top: 4px; }
.footer-legal .separator { margin: 0 8px; }

/* Back to Top */
.back-to-top { position: fixed; bottom: 30px; right: 30px; width: 46px; height: 46px; display: flex; align-items: center; justify-content: center; background: var(--primary-blue); color: var(--white); border: none; border-radius: 50%; cursor: pointer; opacity: 0; visibility: hidden; transform: translateY(20px); transition: all 0.3s; z-index: 999; box-shadow: 0 4px 15px rgba(0,0,0,0.2); }
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--primary-orange); transform: translateY(-4px); color: var(--white); }

/* WhatsApp Float */
.whatsapp-float { position: fixed; bottom: 30px; left: 30px; width: 56px; height: 56px; display: flex; align-items: center; justify-content: center; background: #25D366; color: var(--white); border-radius: 50%; font-size: 1.8rem; z-index: 999; box-shadow: 0 4px 20px rgba(37,211,102,0.4); transition: all 0.3s; }
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 25px rgba(37,211,102,0.5); color: var(--white); }

/* Page Header */
.page-header { background: linear-gradient(135deg, var(--primary-blue-dark), var(--primary-blue)); padding: 140px 0 60px; position: relative; overflow: hidden; }
.page-header::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-image: linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px); background-size: 60px 60px; }
.page-header-content { position: relative; z-index: 1; text-align: center; }
.page-header h1 { font-size: clamp(2rem, 4.5vw, 3rem); color: var(--white); margin-bottom: 12px; }
.page-header p { font-size: 1.1rem; color: rgba(255,255,255,0.8); }
.breadcrumb { margin-top: 16px; font-size: 0.9rem; color: rgba(255,255,255,0.6); }
.breadcrumb a { color: rgba(255,255,255,0.8); }
.breadcrumb a:hover { color: var(--primary-orange); }
.breadcrumb span { margin: 0 8px; }

/* Forms */
.form-group { margin-bottom: 18px; }
.form-label { display: block; font-size: 0.88rem; font-weight: 500; color: var(--gray-700); margin-bottom: 6px; }
.form-control { width: 100%; padding: 12px 16px; font-family: var(--font-primary); font-size: 0.92rem; color: var(--gray-800); background: var(--white); border: 1px solid var(--gray-300); border-radius: 6px; transition: all 0.2s; }
.form-control:focus { outline: none; border-color: var(--primary-blue); box-shadow: 0 0 0 3px rgba(10,42,106,0.1); }
textarea.form-control { min-height: 120px; resize: vertical; }
select.form-control { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236C757D' d='M6 8L1 3h10z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }

/* Contact Section */
.contact-section { background: var(--gray-50); }
.contact-form-wrapper { background: var(--white); padding: 36px; border-radius: 12px; box-shadow: 0 4px 20px rgba(0,0,0,0.08); }
.contact-form-wrapper h3 { font-size: 1.5rem; margin-bottom: 6px; }
.contact-info h3 { font-size: 1.5rem; margin-bottom: 6px; }
.contact-info > p { color: var(--gray-600); margin-bottom: 24px; }
.contact-info-card { display: flex; gap: 14px; padding: 18px; background: var(--white); border-radius: 10px; margin-bottom: 12px; box-shadow: 0 2px 8px rgba(0,0,0,0.06); }
.contact-info-icon { width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; background: rgba(10,42,106,0.08); border-radius: 8px; color: var(--primary-blue); font-size: 1.1rem; flex-shrink: 0; }
.contact-info-content h4 { font-size: 0.95rem; margin-bottom: 2px; }
.contact-info-content p { font-size: 0.88rem; color: var(--gray-600); margin: 0; }
.contact-info-content a:hover { color: var(--primary-orange); }
.map-placeholder { height: 200px; background: var(--gray-100); border-radius: 10px; display: flex; flex-direction: column; align-items: center; justify-content: center; border: 2px dashed var(--gray-300); }
.map-placeholder i { font-size: 2.5rem; color: var(--gray-400); margin-bottom: 8px; }
.map-placeholder p { color: var(--gray-500); margin: 0; }
.form-message .alert { margin: 0; padding: 12px 16px; border-radius: 8px; font-size: 0.9rem; }
.form-message .alert-success { background: rgba(40,167,69,0.1); color: #28a745; border: 1px solid rgba(40,167,69,0.2); }
.form-message .alert-danger { background: rgba(220,53,69,0.1); color: #dc3545; border: 1px solid rgba(220,53,69,0.2); }

/* Responsive */
@media (max-width: 992px) {
    .main-nav, .header-cta { display: none; }
    .mobile-menu-toggle { display: flex; }
    .hero-wrapper { grid-template-columns: 1fr; text-align: center; }
    .hero-content { max-width: 100%; }
    .hero-buttons { justify-content: center; }
    .hero-visual { order: -1; margin-bottom: 30px; }
    .hero-ai-img { max-width: 320px; }
    .about-illustration { height: 280px; }
    .ai-float-tag { padding: 6px 12px; font-size: 0.75rem; }
}
@media (max-width: 768px) {
    .section { padding: 60px 0; }
    .hero-section { min-height: auto; padding: 80px 0 40px; }
    .hero-title { font-size: 1.75rem; }
    .hero-badge { font-size: 0.75rem; padding: 6px 14px; }
    .service-card { padding: 20px; }
    .service-icon { width: 50px; height: 50px; font-size: 1.2rem; }
    .product-illustration svg { min-height: 180px; }
    .footer-grid { gap: 30px; }
    .footer-bottom { text-align: center; }
    .footer-bottom .col-md-6 { text-align: center !important; }
    .whatsapp-float { width: 50px; height: 50px; font-size: 1.5rem; bottom: 20px; left: 20px; }
    .back-to-top { width: 42px; height: 42px; bottom: 20px; right: 20px; }
    .ai-float-tag.tag-5, .ai-float-tag.tag-8 { display: none; }
    .about-illustration { height: 240px; }
}
@media (max-width: 576px) {
    .section { padding: 50px 0; }
    .hero-section { padding: 70px 0 30px; }
    .hero-title { font-size: 1.5rem; }
    .hero-subtitle { font-size: 0.9rem; }
    .hero-buttons .btn { width: 100%; font-size: 0.85rem; }
    .stat-number { font-size: 1.75rem; }
    .stat-label { font-size: 0.8rem; }
    .section-title { font-size: 1.5rem; }
    .section-subtitle { font-size: 0.95rem; }
    .cta-box { padding: 24px 16px; }
    .cta-box h2 { font-size: 1.3rem; }
    .cta-box p { font-size: 0.9rem; }
    .product-card { border-radius: 10px; }
    .product-content { padding: 20px; }
    .product-features { grid-template-columns: 1fr; gap: 6px; }
    .industry-card { padding: 20px 12px; }
    .industry-icon { width: 40px; height: 40px; font-size: 1.1rem; }
    .industry-card h4 { font-size: 0.8rem; }
    .tech-item { padding: 8px 14px; }
    .tech-item span { font-size: 0.8rem; }
    .why-card { padding: 20px; }
    .footer-logo-img { width: 40px; height: 40px; }
    .contact-form-wrapper { padding: 24px; }
    .map-placeholder iframe { height: 200px; }
}