/* Performance + SEO Fixes */
* { margin: 0; padding: 0; box-sizing: border-box; }
img { max-width: 100%; height: auto; display: block; }
iframe { max-width: 100%; }

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

:root {
  --bg: #FFFFFF; --panel: #F8FAFC; --card: #FFFFFF; --border: #E2E8F0;
  --text: #0F172A; --text-dim: #64748B; 
  --purple: #8B5CF6; --purple-dark: #7C3AED; --purple-light: #A78BFA; --purple-bg: #F5F3FF;
  --green: #10B981; --orange: #F59E0B; --red: #EF4444; --blue: #3B82F6;
  --gradient: linear-gradient(135deg, #8B5CF6, #7C3AED);
  --gradient-text: linear-gradient(135deg, #0F172A, #8B5CF6);
  --shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
  --glow: 0 0 30px rgba(139, 92, 246, 0.15);
}

[data-theme="dark"] {
  --bg: #0F172A; --panel: #1E293B; --card: #1E293B; --border: #334155;
  --text: #F1F5F9; --text-dim: #94A3B8;
  --purple-bg: #1E1B4B;
  --gradient-text: linear-gradient(135deg, #F1F5F9, #A78BFA);
  --shadow: 0 1px 3px 0 rgb(0 0 0 / 0.3);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.5);
}

html { 
  scroll-behavior: smooth; 
  -webkit-font-smoothing: antialiased;
}
body { 
  font-family: 'Inter', sans-serif; 
  background: var(--bg); 
  color: var(--text); 
  line-height: 1.6; 
  overflow-x: hidden; 
  transition: background 0.3s, color 0.3s;
  font-size: 16px;
}

.preloader { position: fixed; inset: 0; background: var(--bg); z-index: 9999; display: flex; align-items: center; justify-content: center; transition: opacity 0.5s; }
.preloader.hide { opacity: 0; pointer-events: none; }
.loader { width: 50px; height: 50px; border: 4px solid var(--border); border-top-color: var(--purple); border-radius: 50%; animation: spin 1s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

.header { background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(10px); border-bottom: 1px solid var(--border); padding: 12px 15px; position: sticky; top: 0; z-index: 1000; transition: all 0.3s; }
[data-theme="dark"] .header { background: rgba(15, 23, 42, 0.95); }
.nav { max-width: 1300px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; }
.logo { display: flex; align-items: center; gap: 12px; text-decoration: none; transition: transform 0.3s; }
.logo:hover { transform: scale(1.02); }
.logo-icon { width: 48px; height: 48px; position: relative; filter: drop-shadow(0 4px 12px rgba(139, 92, 246, 0.4)); flex-shrink: 0; }
.logo-icon svg { width: 100%; height: 100%; }
.logo-text { display: flex; flex-direction: column; gap: 2px; }
.logo-text .brand { font-family: 'Orbitron', sans-serif; font-weight: 900; font-size: 22px; letter-spacing: 2px; background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; line-height: 1; }
.logo-text .tagline { font-size: 8px; letter-spacing: 2px; color: var(--purple); font-weight: 800; white-space: nowrap; opacity: 0.9; }
.nav-right { display: flex; align-items: center; gap: 12px; }
.nav-links { display: flex; gap: 30px; align-items: center; }
.nav-links a { color: var(--text-dim); text-decoration: none; font-weight: 600; font-size: 15px; transition: all 0.3s; position: relative; }
.nav-links a::after { content: ''; position: absolute; bottom: -5px; left: 0; width: 0; height: 2px; background: var(--purple); transition: width 0.3s; }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a:hover { color: var(--purple); }
.theme-toggle { width: 42px; height: 42px; border-radius: 12px; background: var(--card); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; cursor: pointer; transition: all 0.3s; font-size: 18px; color: var(--text); flex-shrink: 0; }
.theme-toggle:hover { border-color: var(--purple); transform: rotate(20deg); }
.btn { padding: 12px 24px; border: none; border-radius: 10px; font-weight: 700; cursor: pointer; display: inline-flex; align-items: center; gap: 8px; transition: all 0.3s; text-decoration: none; font-size: 15px; justify-content: center; white-space: nowrap; }
.btn-primary { background: var(--gradient); color: white; box-shadow: var(--glow); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 0 40px rgba(139, 92, 246, 0.5); }
.btn-ghost { background: transparent; color: var(--text); border: 2px solid var(--border); }
.btn-ghost:hover { border-color: var(--purple); background: var(--purple-bg); }
.mobile-menu-btn { display: none; font-size: 24px; cursor: pointer; background: none; border: none; color: var(--text); width: 42px; height: 42px; align-items: center; justify-content: center; }

.hero { max-width: 1300px; margin: 0 auto; padding: 60px 15px 50px; text-align: center; position: relative; }
.hero::before { content: ''; position: absolute; top: -50px; left: 50%; width: 100%; max-width: 900px; height: 900px; background: radial-gradient(circle, rgba(139, 92, 246, 0.1) 0%, transparent 70%); transform: translateX(-50%); pointer-events: none; }
.hero-content { position: relative; z-index: 1; max-width: 950px; margin: 0 auto; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: var(--purple-bg); border: 1px solid var(--purple); color: var(--purple-dark); padding: 10px 20px; border-radius: 50px; font-size: 13px; font-weight: 700; margin-bottom: 25px; animation: fadeInUp 0.6s ease; }
.hero-content h1 { font-family: 'Space Grotesk', sans-serif; font-size: clamp(32px, 8vw, 72px); font-weight: 700; line-height: 1.1; margin-bottom: 20px; color: var(--text); animation: fadeInUp 0.6s ease 0.1s backwards; }
.hero-content h1 .gradient { background: var(--gradient-text); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-content p { font-size: clamp(16px, 4vw, 22px); color: var(--text-dim); margin-bottom: 35px; line-height: 1.7; max-width: 800px; margin-left: auto; margin-right: auto; padding: 0 10px; animation: fadeInUp 0.6s ease 0.2s backwards; }
.hero-actions { display: flex; gap: 15px; flex-wrap: wrap; justify-content: center; animation: fadeInUp 0.6s ease 0.3s backwards; padding: 0 15px; }
.hero-actions .btn { min-width: 180px; flex: 1; max-width: 280px; }
.hero-features { display: grid; grid-template-columns: repeat(2, 1fr); gap: 15px; margin-top: 50px; max-width: 900px; margin-left: auto; margin-right: auto; }
.feature-item { background: var(--card); border: 1px solid var(--border); border-radius: 16px; padding: 20px 12px; text-align: center; transition: all 0.3s; opacity: 0; animation: fadeInUp 0.6s ease forwards; }
.feature-item:nth-child(1) { animation-delay: 0.4s; }
.feature-item:nth-child(2) { animation-delay: 0.5s; }
.feature-item:nth-child(3) { animation-delay: 0.6s; }
.feature-item:nth-child(4) { animation-delay: 0.7s; }
.feature-item:hover { transform: translateY(-5px); border-color: var(--purple); box-shadow: var(--shadow-lg); }
.feature-item i { font-size: 28px; color: var(--purple); margin-bottom: 10px; }
.feature-item h4 { font-size: 14px; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.feature-item p { font-size: 12px; color: var(--text-dim); }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }

.fade-in { opacity: 0; transform: translateY(30px); transition: all 0.6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

.section { max-width: 1300px; margin: 0 auto; padding: 60px 15px; }
.section-header { text-align: center; margin-bottom: 50px; }
.section-header .badge { display: inline-block; background: var(--purple-bg); border: 1px solid var(--purple); color: var(--purple-dark); padding: 8px 18px; border-radius: 50px; font-size: 13px; font-weight: 700; margin-bottom: 18px; }
.section-header h2 { font-family: 'Space Grotesk', sans-serif; font-size: clamp(28px, 6vw, 52px); font-weight: 700; margin-bottom: 15px; color: var(--text); line-height: 1.3; }
.section-header p { font-size: clamp(15px, 3vw, 18px); color: var(--text-dim); max-width: 700px; margin: 0 auto; padding: 0 15px; line-height: 1.7; }

.founder-section { margin-bottom: 70px; }
.founder-container { display: grid; grid-template-columns: 1fr; gap: 35px; align-items: center; max-width: 1100px; margin: 0 auto; }
.founder-image { position: relative; max-width: 350px; margin: 0 auto; }
.image-wrapper { position: relative; border-radius: 24px; overflow: hidden; box-shadow: var(--shadow-lg), var(--glow); aspect-ratio: 1/1; }
.image-wrapper img { width: 100%; height: 100%; object-fit: cover; display: block; aspect-ratio: 1/1; }
.image-badge { position: absolute; bottom: 15px; left: 15px; background: var(--gradient); color: white; padding: 10px 16px; border-radius: 12px; display: flex; align-items: center; gap: 8px; font-weight: 700; font-size: 13px; box-shadow: 0 10px 30px rgba(0,0,0,0.3); }
.image-badge i { font-size: 16px; }
.founder-content h3 { font-family: 'Space Grotesk', sans-serif; font-size: clamp(26px, 5vw, 42px); font-weight: 800; margin-bottom: 10px; color: var(--text); text-align: center; }
.founder-title { font-size: 16px; color: var(--purple); font-weight: 700; margin-bottom: 20px; text-align: center; }
.founder-bio { font-size: 15px; color: var(--text-dim); line-height: 1.8; margin-bottom: 18px; text-align: center; }
.founder-stats { display: flex; gap: 20px; margin: 30px 0; justify-content: center; flex-wrap: wrap; }
.stat-item { text-align: center; min-width: 90px; }
.stat-item h4 { font-size: 28px; font-weight: 900; background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; margin-bottom: 5px; }
.stat-item p { font-size: 12px; color: var(--text-dim); font-weight: 600; }
.founder-social { display: flex; gap: 12px; margin-top: 25px; justify-content: center; flex-wrap: wrap; }
.founder-social a { width: 46px; height: 46px; background: var(--card); border: 1px solid var(--border); border-radius: 12px; display: flex; align-items: center; justify-content: center; color: var(--text); transition: all 0.3s; font-size: 18px; }
.founder-social a:hover { background: var(--gradient); border-color: transparent; color: white; transform: translateY(-4px); box-shadow: var(--glow); }

.company-story { background: var(--panel); border: 1px solid var(--border); border-radius: 24px; padding: 35px 20px; margin-top: 50px; }
.story-content h3 { font-family: 'Space Grotesk', sans-serif; font-size: clamp(24px, 5vw, 38px); font-weight: 800; margin-bottom: 20px; color: var(--text); text-align: center; }
.story-content p { font-size: 16px; color: var(--text-dim); line-height: 1.9; margin-bottom: 20px; text-align: center; }
.story-highlight { background: var(--card); border-left: 4px solid var(--purple); padding: 25px 20px; border-radius: 12px; margin: 30px auto; max-width: 700px; position: relative; }
.story-highlight i { font-size: 28px; color: var(--purple); opacity: 0.3; position: absolute; top: 15px; left: 20px; }
.story-highlight p { font-size: 17px; color: var(--text); font-weight: 600; font-style: italic; margin: 0; padding-left: 35px; text-align: left; }
.company-values { display: grid; grid-template-columns: 1fr; gap: 25px; margin-top: 50px; }
.value-item { text-align: center; padding: 25px 15px; }
.value-item i { font-size: 36px; color: var(--purple); margin-bottom: 18px; }
.value-item h4 { font-size: 18px; font-weight: 700; color: var(--text); margin-bottom: 10px; }
.value-item p { font-size: 14px; color: var(--text-dim); line-height: 1.7; margin: 0; }

.projects { display: grid; grid-template-columns: 1fr; gap: 25px; }
.project-card { background: var(--card); border: 1px solid var(--border); border-radius: 24px; padding: 30px 20px; transition: all 0.4s; cursor: pointer; position: relative; overflow: hidden; }
.project-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 5px; background: var(--gradient); transform: scaleX(0); transition: transform 0.4s; }
.project-card:hover::before { transform: scaleX(1); }
.project-card:hover { transform: translateY(-8px); border-color: var(--purple); box-shadow: var(--shadow-lg), var(--glow); }
.project-icon { width: 65px; height: 65px; border-radius: 20px; display: flex; align-items: center; justify-content: center; font-size: 32px; margin-bottom: 20px; color: white; box-shadow: var(--glow); }
.project-card h3 { font-size: 22px; font-weight: 800; margin-bottom: 12px; color: var(--text); }
.project-card p { font-size: 14px; color: var(--text-dim); line-height: 1.8; margin-bottom: 18px; }
.project-status { display: inline-flex; align-items: center; gap: 8px; background: var(--purple-bg); color: var(--purple-dark); padding: 8px 14px; border-radius: 10px; font-size: 12px; font-weight: 700; }
.project-status.coming { background: #FEF3C7; color: #D97706; }
[data-theme="dark"] .project-status.coming { background: #78350F; color: #FBBF24; }

.modal { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.7); backdrop-filter: blur(5px); z-index: 2000; align-items: center; justify-content: center; padding: 15px; }
.modal.active { display: flex; animation: fadeIn 0.3s ease; }
.modal-content { background: var(--card); border-radius: 24px; padding: 30px 20px; max-width: 650px; width: 100%; max-height: 85vh; overflow-y: auto; position: relative; animation: slideUp 0.3s ease; }
.modal-close { position: absolute; top: 15px; right: 15px; font-size: 30px; cursor: pointer; color: var(--text-dim); transition: all 0.3s; width: 38px; height: 38px; display: flex; align-items: center; justify-content: center; border-radius: 10px; }
.modal-close:hover { color: var(--purple); background: var(--purple-bg); }
.modal h3 { font-size: 26px; font-weight: 800; margin-bottom: 20px; color: var(--text); }
.modal-item { margin-bottom: 22px; }
.modal-item h4 { font-size: 16px; font-weight: 700; color: var(--purple); margin-bottom: 8px; display: flex; align-items: center; gap: 8px; }
.modal-item p { font-size: 15px; color: var(--text-dim); line-height: 1.7; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes slideUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }

.services { display: grid; grid-template-columns: 1fr; gap: 20px; }
.service-card { background: var(--card); border: 1px solid var(--border); border-radius: 22px; padding: 30px 20px; transition: all 0.4s; text-align: center; }
.service-card:hover { transform: translateY(-8px); border-color: var(--purple); box-shadow: var(--shadow-lg), var(--glow); }
.service-icon { width: 60px; height: 60px; background: var(--gradient); border-radius: 18px; display: flex; align-items: center; justify-content: center; font-size: 30px; margin: 0 auto 20px; color: white; box-shadow: var(--glow); }
.service-card h3 { font-size: 20px; font-weight: 800; margin-bottom: 12px; color: var(--text); }
.service-card p { font-size: 14px; color: var(--text-dim); line-height: 1.8; }

.vision { background: var(--gradient); border-radius: 28px; padding: 50px 20px; text-align: center; box-shadow: var(--shadow-lg), var(--glow); position: relative; overflow: hidden; }
.vision::before { content: ''; position: absolute; inset: 0; background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); }
.vision-content { position: relative; z-index: 1; }
.vision h2 { font-family: 'Space Grotesk', sans-serif; font-size: clamp(28px, 5vw, 52px); font-weight: 700; margin-bottom: 20px; color: white; }
.vision p { font-size: clamp(18px, 4vw, 26px); color: rgba(255,255,255,0.95); max-width: 850px; margin: 0 auto; line-height: 1.6; font-weight: 600; }

.testimonials { display: grid; grid-template-columns: 1fr; gap: 20px; }
.testimonial-card { background: var(--card); border: 1px solid var(--border); border-radius: 20px; padding: 25px 20px; position: relative; transition: all 0.3s; }
.testimonial-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: var(--purple); }
.testimonial-card::before { content: '"'; position: absolute; top: 15px; left: 20px; font-size: 70px; color: var(--purple); opacity: 0.2; font-family: Georgia, serif; }
.testimonial-text { font-size: 15px; color: var(--text-dim); line-height: 1.8; margin-bottom: 20px; position: relative; z-index: 1; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar { width: 46px; height: 46px; border-radius: 50%; background: var(--gradient); display: flex; align-items: center; justify-content: center; color: white; font-weight: 700; font-size: 16px; flex-shrink: 0; }
.author-info h4 { font-size: 15px; font-weight: 700; color: var(--text); margin-bottom: 2px; }
.author-info p { font-size: 13px; color: var(--text-dim); }

.faq-list { max-width: 900px; margin: 0 auto; }
.faq-item { background: var(--card); border: 1px solid var(--border); border-radius: 16px; margin-bottom: 18px; overflow: hidden; }
.faq-question { padding: 20px; cursor: pointer; display: flex; justify-content: space-between; align-items: center; font-weight: 700; font-size: 16px; color: var(--text); transition: all 0.3s; }
.faq-question:hover { background: var(--panel); }
.faq-question i { transition: transform 0.3s; flex-shrink: 0; }
.faq-item.active .faq-question i { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-answer p { padding: 0 20px 20px; color: var(--text-dim); line-height: 1.8; font-size: 14px; }

.newsletter { background: var(--panel); border-radius: 24px; padding: 40px 20px; text-align: center; border: 1px solid var(--border); }
.newsletter h3 { font-size: 26px; font-weight: 800; margin-bottom: 12px; color: var(--text); }
.newsletter p { font-size: 15px; color: var(--text-dim); margin-bottom: 25px; }
.newsletter-form { display: flex; gap: 12px; max-width: 500px; margin: 0 auto; flex-direction: column; }
.newsletter-form input { padding: 14px 18px; border: 2px solid var(--border); border-radius: 12px; background: var(--card); color: var(--text); font-size: 15px; transition: all 0.3s; }
.newsletter-form input:focus { outline: none; border-color: var(--purple); }
.newsletter-form button { width: 100%; }

.blog-grid { display: grid; grid-template-columns: 1fr; gap: 25px; }
.blog-card { background: var(--card); border: 1px solid var(--border); border-radius: 20px; overflow: hidden; transition: all 0.3s; }
.blog-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg), var(--glow); border-color: var(--purple); }
.blog-image { position: relative; height: 220px; overflow: hidden; }
.blog-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; aspect-ratio: 16/9; }
.blog-card:hover .blog-image img { transform: scale(1.1); }
.blog-category { position: absolute; top: 15px; left: 15px; background: var(--gradient); color: white; padding: 6px 14px; border-radius: 20px; font-size: 12px; font-weight: 700; }
.blog-content { padding: 25px; }
.blog-meta { display: flex; gap: 15px; margin-bottom: 12px; font-size: 13px; color: var(--text-dim); }
.blog-meta span { display: flex; align-items: center; gap: 5px; }
.blog-content h3 { font-size: 20px; font-weight: 800; color: var(--text); margin-bottom: 12px; line-height: 1.4; }
.blog-content p { font-size: 15px; color: var(--text-dim); line-height: 1.7; margin-bottom: 15px; }
.blog-link { color: var(--purple); font-weight: 700; text-decoration: none; display: inline-flex; align-items: center; gap: 8px; transition: all 0.3s; }
.blog-link:hover { gap: 12px; }

.pricing-toggle { display: flex; align-items: center; justify-content: center; gap: 20px; margin-bottom: 50px; }
.pricing-toggle span { font-weight: 600; color: var(--text-dim); }
.save-badge { background: var(--green); color: white; padding: 3px 10px; border-radius: 20px; font-size: 11px; margin-left: 5px; }
.toggle-switch { position: relative; width: 60px; height: 30px; }
.toggle-switch input { opacity: 0; width: 0; height: 0; }
.slider { position: absolute; cursor: pointer; inset: 0; background: var(--border); border-radius: 30px; transition: 0.4s; }
.slider:before { position: absolute; content: ""; height: 22px; width: 22px; left: 4px; bottom: 4px; background: white; border-radius: 50%; transition: 0.4s; }
input:checked + .slider { background: var(--purple); }
input:checked + .slider:before { transform: translateX(30px); }
.pricing-grid { display: grid; grid-template-columns: 1fr; gap: 25px; max-width: 1200px; margin: 0 auto; }
.pricing-card { background: var(--card); border: 2px solid var(--border); border-radius: 24px; padding: 40px 25px; text-align: center; transition: all 0.3s; position: relative; }
.pricing-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg), var(--glow); }
.pricing-card.featured { border-color: var(--purple); box-shadow: var(--glow); }
.popular-badge { position: absolute; top: -15px; left: 50%; transform: translateX(-50%); background: var(--gradient); color: white; padding: 6px 20px; border-radius: 20px; font-size: 12px; font-weight: 700; }
.pricing-header h3 { font-size: 26px; font-weight: 800; color: var(--text); margin-bottom: 8px; }
.pricing-header p { font-size: 14px; color: var(--text-dim); margin-bottom: 25px; }
.pricing-price { margin-bottom: 30px; }
.pricing-price .currency { font-size: 24px; font-weight: 700; color: var(--text-dim); vertical-align: top; }
.pricing-price .amount { font-size: 48px; font-weight: 900; background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.pricing-price .period { font-size: 16px; color: var(--text-dim); }
.pricing-features { list-style: none; text-align: left; margin-bottom: 30px; }
.pricing-features li { padding: 12px 0; border-bottom: 1px solid var(--border); font-size: 15px; color: var(--text); display: flex; align-items: center; gap: 10px; }
.pricing-features li:last-child { border-bottom: none; }
.pricing-features li i { color: var(--green); font-size: 16px; }
.pricing-features li.disabled { color: var(--text-dim); opacity: 0.5; }
.pricing-features li.disabled i { color: var(--red); }

.contact-container { display: grid; grid-template-columns: 1fr; gap: 40px; max-width: 1200px; margin: 0 auto; }
.contact-form-wrapper { background: var(--card); border: 1px solid var(--border); border-radius: 24px; padding: 35px 25px; }
.contact-form .form-row { display: grid; grid-template-columns: 1fr; gap: 20px; margin-bottom: 20px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-weight: 600; color: var(--text); margin-bottom: 8px; font-size: 14px; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 14px 16px; border: 2px solid var(--border); border-radius: 12px; background: var(--bg); color: var(--text); font-size: 15px; font-family: 'Inter', sans-serif; transition: all 0.3s; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--purple); box-shadow: 0 0 0 3px var(--purple-bg); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-note { font-size: 13px; color: var(--text-dim); margin-top: 15px; text-align: center; }
.contact-info { display: grid; gap: 20px; }
.contact-card { background: var(--card); border: 1px solid var(--border); border-radius: 22px; padding: 30px 20px; text-align: center; transition: all 0.3s; }
.contact-card:hover { border-color: var(--purple); transform: translateY(-8px); box-shadow: var(--shadow-lg), var(--glow); }
.contact-icon { width: 55px; height: 55px; background: var(--gradient); border-radius: 16px; display: flex; align-items: center; justify-content: center; font-size: 26px; margin: 0 auto 18px; color: white; }
.contact-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 10px; color: var(--text); }
.contact-card p { font-size: 14px; color: var(--text-dim); margin-bottom: 15px; }
.contact-card a { color: var(--purple); font-weight: 700; text-decoration: none; font-size: 15px; word-break: break-all; }

.footer { background: var(--panel); border-top: 1px solid var(--border); padding: 50px 15px 20px; }
.footer-content { max-width: 1300px; margin: 0 auto; display: grid; grid-template-columns: 1fr; gap: 35px; margin-bottom: 40px; text-align: center; }
.footer-brand h3 { font-family: 'Orbitron', sans-serif; font-size: 26px; margin-bottom: 8px; background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; letter-spacing: 2px; }
.footer-brand .tagline { font-size: 10px; letter-spacing: 2px; color: var(--purple); margin-bottom: 15px; font-weight: 800; }
.footer-brand p { font-size: 14px; color: var(--text-dim); line-height: 1.8; margin-bottom: 25px; }
.social-links { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.social-links a { width: 44px; height: 44px; background: var(--card); border: 1px solid var(--border); border-radius: 12px; display: flex; align-items: center; justify-content: center; color: var(--text); transition: all 0.3s; font-size: 18px; }
.social-links a:hover { background: var(--gradient); border-color: transparent; color: white; transform: translateY(-4px); box-shadow: var(--glow); }
.footer-col h4 { font-size: 17px; font-weight: 700; margin-bottom: 20px; color: var(--text); }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 14px; }
.footer-col ul li a { color: var(--text-dim); text-decoration: none; font-size: 14px; transition: all 0.3s; }
.footer-col ul li a:hover { color: var(--purple); padding-left: 5px; }
.footer-bottom { max-width: 1300px; margin: 0 auto; padding-top: 30px; border-top: 1px solid var(--border); display: flex; justify-content: center; align-items: center; flex-wrap: wrap; gap: 15px; font-size: 13px; color: var(--text-dim); text-align: center; }
.footer-links { display: flex; gap: 25px; flex-wrap: wrap; justify-content: center; }
.footer-links a { color: var(--text-dim); text-decoration: none; transition: all 0.3s; }
.footer-links a:hover { color: var(--purple); }

.mobile-menu { display: none; position: fixed; top: 66px; left: 0; right: 0; background: var(--panel); border-bottom: 1px solid var(--border); padding: 15px; z-index: 999; box-shadow: var(--shadow-lg); max-height: calc(100vh - 66px); overflow-y: auto; }
.mobile-menu.active { display: block; animation: slideDown 0.3s ease; }
.mobile-menu a { display: block; padding: 16px 0; color: var(--text); text-decoration: none; font-weight: 600; border-bottom: 1px solid var(--border); font-size: 15px; }
.mobile-menu a:last-child { border-bottom: none; }
@keyframes slideDown { from { opacity: 0; transform: translateY(-20px); } to { opacity: 1; transform: translateY(0); } }

.whatsapp-float { position: fixed; bottom: 25px; right: 25px; width: 60px; height: 60px; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; font-size: 32px; box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5); z-index: 999; transition: all 0.3s; animation: pulse 2s infinite; text-decoration: none; }
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 12px 35px rgba(37, 211, 102, 0.7); }
@keyframes pulse { 0%, 100% { box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5); } 50% { box-shadow: 0 8px 35px rgba(37, 211, 102, 0.8); } }

.back-to-top { position: fixed; bottom: 25px; left: 25px; width: 50px; height: 50px; background: var(--gradient); border: none; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; font-size: 20px; cursor: pointer; opacity: 0; visibility: hidden; transition: all 0.3s; z-index: 999; box-shadow: var(--glow); }
.back-to-top.show { opacity: 1; visibility: visible; }
.back-to-top:hover { transform: translateY(-5px); }

/* Mobile Responsive Fix - Navbar */
@media (max-width: 968px) {
  .nav-links { display: none !important; }
  .mobile-menu-btn { display: flex !important; }
}

/* Mobile Typography Fix */
@media (max-width: 768px) {
  body { font-size: 16px; }
  p, li { font-size: 16px; line-height: 1.7; }
  h1 { line-height: 1.2; }
  h2 { line-height: 1.3; }
}

/* Mobile logo fix */
.logo { 
  display: flex; 
  align-items: center; 
  gap: 12px; 
  text-decoration: none; 
  transition: transform 0.3s;
}
.logo:hover {
  transform: scale(1.02);
}
.logo-img { 
  width: 48px; 
  height: 48px; 
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(139, 92, 246, 0.4);
  flex-shrink: 0;
}
.logo-text { 
  display: flex; 
  flex-direction: column; 
  gap: 2px; 
}
.logo-text .brand { 
  font-family: 'Orbitron', sans-serif; 
  font-weight: 900; 
  font-size: 22px; 
  letter-spacing: 2px; 
  background: var(--gradient); 
  -webkit-background-clip: text; 
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.logo-text .tagline { 
  font-size: 8px; 
  letter-spacing: 2px; 
  color: var(--purple); 
  font-weight: 800; 
  white-space: nowrap;
  opacity: 0.9;
}

/* Mobile pe logo chota */
.logo { 
  display: flex; 
  align-items: center; 
  gap: 12px; 
  text-decoration: none; 
  transition: transform 0.3s;
}
.logo:hover {
  transform: scale(1.02);
}
.logo-img { 
  width: 48px; 
  height: 48px; 
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(139, 92, 246, 0.4);
  flex-shrink: 0;
}
.logo-text { 
  display: flex; 
  flex-direction: column; 
  gap: 2px; 
}
.logo-text .brand { 
  font-family: 'Orbitron', sans-serif; 
  font-weight: 900; 
  font-size: 22px; 
  letter-spacing: 2px; 
  background: var(--gradient); 
  -webkit-background-clip: text; 
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.logo-text .tagline { 
  font-size: 8px; 
  letter-spacing: 2px; 
  color: var(--purple); 
  font-weight: 800; 
  white-space: nowrap;
  opacity: 0.9;
}

/* Mobile pe logo chota */
@media (max-width: 480px) {
  .logo-img { 
    width: 40px; 
    height: 40px; 
    border-radius: 10px;
  }
  .logo-text .brand { 
    font-size: 18px; 
    letter-spacing: 1.5px;
  }
  .logo-text .tagline { 
    font-size: 7px;
    letter-spacing: 1.5px;
  }
}