*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body { font-family: 'Inter', system-ui, -apple-system, sans-serif; color: #e2e8f0; background: #0c0f15; overflow-x: hidden; width: 100%; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }

/* Navbar */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: transparent;
  transition: background 0.3s;
}
.navbar.scrolled { background: rgba(12,15,21,0.95); backdrop-filter: blur(12px); border-bottom: 1px solid rgba(245,197,67,0.1); }
.navbar .container { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.nav-links { display: flex; gap: 2rem; list-style: none; align-items: center; }
.nav-links a { text-decoration: none; color: rgba(255,255,255,0.8); font-size: 0.9rem; font-weight: 500; transition: color 0.2s; letter-spacing: 0.02em; }
.nav-links a:hover, .nav-links a.active { color: #f5c543; }
.navbar.scrolled .nav-links a { color: #94a3b8; }
.navbar.scrolled .nav-links a:hover, .navbar.scrolled .nav-links a.active { color: #f5c543; }
.navbar:not(.scrolled) .nav-links .btn-primary { background: transparent; border: 1px solid #f5c543; color: #f5c543; }
.navbar:not(.scrolled) .nav-links .btn-primary:hover { background: #f5c543; color: #0c0f15; }
.navbar.scrolled .nav-links .btn-primary { background: transparent; border: 1px solid #f5c543; color: #f5c543; }
.navbar.scrolled .nav-links .btn-primary:hover { background: #f5c543; color: #0c0f15; }
.logo { font-size: 1.3rem; font-weight: 700; text-decoration: none; color: #fff; letter-spacing: -0.02em; text-shadow: 0 2px 10px rgba(0,0,0,0.5); }
.logo span { color: #f5c543; }
.mobile-toggle { display: none; background: none; border: none; font-size: 1.5rem; cursor: pointer; color: #fff; text-shadow: 0 2px 10px rgba(0,0,0,0.5); }
.navbar.scrolled .mobile-toggle { color: #fff; text-shadow: none; }


/* Hero */
.hero {
  padding: 9rem 0 6rem;
  background: linear-gradient(160deg, #0c0f15 0%, #1a1f2e 40%, #0c0f15 100%);
  position: relative; overflow: hidden;
  min-height: 85vh; display: flex; align-items: center;
}
.hero::before {
  content: ''; position: absolute; top: -50%; right: -20%; width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(245,197,67,0.04) 0%, transparent 70%);
  pointer-events: none;
}
.hero .container { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; position: relative; }
.hero h1 { font-size: 3.2rem; line-height: 1.15; font-weight: 800; margin-bottom: 1.5rem; color: #fff; }
.hero h1 span { color: #f5c543; }
.hero p { font-size: 1.1rem; color: #94a3b8; line-height: 1.8; margin-bottom: 2.5rem; max-width: 520px; }
.hero-img {
  background: linear-gradient(145deg, rgba(245,197,67,0.08), rgba(245,197,67,0.02));
  border: 1px solid rgba(245,197,67,0.12);
  border-radius: 1rem; height: 480px; display: flex; align-items: center;
  justify-content: center; font-size: 4rem; color: #f5c543; overflow: hidden;
}
.hero-title { font-size: 4rem; font-weight: 800; letter-spacing: 0.04em; text-shadow: 0 4px 40px rgba(0,0,0,0.9); }
.hero-tagline {
  font-size: 1.2rem; font-weight: 500; letter-spacing: 0.02em;
  margin-bottom: 0.9rem; text-shadow: 0 2px 20px rgba(0,0,0,0.7);
}
.tagline-part-1 {
  color: rgba(255,255,255,0.85);
  opacity: 0; animation: fadeSlideUp 0.6s ease forwards;
  animation-delay: 0.5s;
}
.tagline-part-2 {
  color: #f5c543;
  opacity: 0; animation: slideInLeft 0.6s ease forwards;
  animation-delay: 1.4s;
}
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(15px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-20px); }
  to { opacity: 1; transform: translateX(0); }
}

/* Buttons */
.btn { display: inline-block; padding: 0.8rem 2rem; border-radius: 6px; font-weight: 600; text-decoration: none; font-size: 0.9rem; transition: all 0.25s; cursor: pointer; border: none; letter-spacing: 0.01em; }
.btn-primary { background: #f5c543; color: #0c0f15; }
.btn-primary:hover { background: #e0b434; transform: translateY(-1px); }
.btn-outline { border: 1.5px solid rgba(245,197,67,0.4); color: #f5c543; background: transparent; }
.btn-outline:hover { background: rgba(245,197,67,0.08); border-color: #f5c543; }
.btn-white { background: #fff; color: #0c0f15; }
.btn-white:hover { background: #e2e8f0; transform: translateY(-1px); }

/* Sections */
.section { padding: 5.5rem 0; }
.section-alt { background: #11161e; }
.section-title { font-size: 2.25rem; font-weight: 700; text-align: center; margin-bottom: 1rem; color: #fff; }
.section-subtitle { text-align: center; color: #64748b; font-size: 1.05rem; max-width: 600px; margin: 0 auto 3.5rem; }
.section-title-left { font-size: 2rem; font-weight: 700; margin-bottom: 1rem; color: #fff; }

/* Cards */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.card {
  background: #11161e; border-radius: 10px; padding: 2rem;
  border: 1px solid #1e2430; transition: all 0.3s;
}
.card:hover { border-color: rgba(245,197,67,0.2); transform: translateY(-3px); box-shadow: 0 12px 40px rgba(0,0,0,0.3); }
.card-icon { width: 48px; height: 48px; border-radius: 10px; background: rgba(245,197,67,0.08); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; color: #f5c543; margin-bottom: 1.25rem; }
.card h3 { font-size: 1.15rem; margin-bottom: 0.75rem; color: #fff; }
.card p { color: #64748b; line-height: 1.7; font-size: 0.9rem; }
.card-tag { display: inline-block; padding: 0.25rem 0.75rem; border-radius: 999px; font-size: 0.75rem; font-weight: 500; margin-bottom: 0.75rem; letter-spacing: 0.03em; }
.tag-gold { background: rgba(245,197,67,0.1); color: #f5c543; }
.tag-purple { background: rgba(167,139,250,0.1); color: #a78bfa; }
.tag-green { background: rgba(52,211,153,0.1); color: #34d399; }
.tag-blue { background: rgba(96,165,250,0.1); color: #60a5fa; }
.tag-red { background: rgba(251,113,133,0.1); color: #fb7185; }
.tag-cyan { background: rgba(34,211,238,0.1); color: #22d3ee; }

/* Page header */
.page-header { padding: 9rem 0 3.5rem; background: linear-gradient(160deg, #0c0f15 0%, #1a1f2e 40%, #0c0f15 100%); text-align: center; }
.page-header h1 { font-size: 2.8rem; font-weight: 800; margin-bottom: 0.75rem; color: #fff; }
.page-header p { color: #64748b; font-size: 1.1rem; max-width: 600px; margin: 0 auto; }

/* About */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; margin-top: 3rem; }
.stat { text-align: center; }
.stat-number { font-size: 2.8rem; font-weight: 800; color: #f5c543; }
.stat-label { color: #64748b; font-size: 0.9rem; margin-top: 0.25rem; }
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.team-card { text-align: center; background: #11161e; border-radius: 10px; padding: 2rem; border: 1px solid #1e2430; }
.team-avatar { width: 80px; height: 80px; border-radius: 50%; background: rgba(245,197,67,0.08); margin: 0 auto 1rem; display: flex; align-items: center; justify-content: center; font-size: 1.8rem; color: #f5c543; }
.team-name { font-weight: 600; font-size: 1rem; color: #fff; }
.team-role { color: #64748b; font-size: 0.85rem; }

/* Portfolio / Divisions */
.portfolio-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.portfolio-card { border-radius: 10px; overflow: hidden; border: 1px solid #1e2430; background: #11161e; transition: all 0.3s; }
.portfolio-card:hover { border-color: rgba(245,197,67,0.2); transform: translateY(-3px); box-shadow: 0 12px 40px rgba(0,0,0,0.3); }
.portfolio-img { height: 180px; display: flex; align-items: center; justify-content: center; font-size: 2.5rem; color: #fff; }
.portfolio-body { padding: 1.5rem; }
.portfolio-body h3 { margin-bottom: 0.5rem; color: #fff; }
.portfolio-body p { color: #64748b; font-size: 0.9rem; margin-bottom: 1rem; line-height: 1.6; }
@media (max-width: 768px) {
  section[style*="min-height:100svh"] h2 { font-size: 2rem !important; }
  section[style*="min-height:100svh"] .container { padding: 4rem 1rem !important; }
}

/* Blog */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.blog-card { border-radius: 10px; overflow: hidden; border: 1px solid #1e2430; background: #11161e; transition: all 0.3s; }
.blog-card:hover { border-color: rgba(245,197,67,0.2); transform: translateY(-3px); box-shadow: 0 12px 40px rgba(0,0,0,0.3); }
.blog-img { height: 160px; display: flex; align-items: center; justify-content: center; font-size: 2rem; }
.blog-body { padding: 1.5rem; }
.blog-meta { font-size: 0.8rem; color: #475569; margin-bottom: 0.5rem; }
.blog-body h3 { font-size: 1.05rem; margin-bottom: 0.5rem; color: #fff; }
.blog-body p { color: #64748b; font-size: 0.85rem; line-height: 1.6; margin-bottom: 1rem; }
.read-more { color: #f5c543; text-decoration: none; font-weight: 500; font-size: 0.85rem; }
.read-more:hover { color: #e0b434; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; }
.form-group { margin-bottom: 1.5rem; }
.form-group label { display: block; font-weight: 500; margin-bottom: 0.5rem; font-size: 0.9rem; color: #cbd5e1; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 0.8rem 1rem; border: 1px solid #1e2430; border-radius: 6px;
  font-size: 0.9rem; font-family: inherit; transition: all 0.2s;
  background: #11161e; color: #e2e8f0;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  outline: none; border-color: #f5c543; box-shadow: 0 0 0 3px rgba(245,197,67,0.08);
}
.contact-info h3 { font-size: 1.5rem; margin-bottom: 1rem; color: #fff; }
.contact-info p { color: #64748b; line-height: 1.7; margin-bottom: 1.5rem; }
.contact-item { display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 1.25rem; }
.contact-item-icon { width: 40px; height: 40px; border-radius: 8px; background: rgba(245,197,67,0.08); display: flex; align-items: center; justify-content: center; color: #f5c543; flex-shrink: 0; }
.contact-item strong { color: #e2e8f0; }

/* Subsidiaries */
.subsidiaries-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.subsidiary-card { background: #11161e; border-radius: 10px; padding: 2rem; border: 1px solid #1e2430; border-top: 3px solid #f5c543; transition: all 0.3s; }
.subsidiary-card:hover { border-color: rgba(245,197,67,0.2); transform: translateY(-3px); box-shadow: 0 12px 40px rgba(0,0,0,0.3); }
.subsidiary-card h3 { font-size: 1.15rem; margin-bottom: 0.4rem; color: #fff; }
.subsidiary-card .year { font-size: 0.8rem; color: #475569; margin-bottom: 0.75rem; }
.subsidiary-card p { color: #64748b; line-height: 1.7; font-size: 0.9rem; margin-bottom: 0.75rem; }
.subsidiary-card ul { list-style: none; }
.subsidiary-card ul li { padding: 0.3rem 0; color: #94a3b8; font-size: 0.85rem; }
.subsidiary-card ul li::before { content: "▸ "; color: #f5c543; font-weight: 700; }

/* Office cards */
.office-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.office-card { background: #11161e; border-radius: 10px; padding: 1.5rem; border: 1px solid #1e2430; }
.office-card h4 { font-size: 1rem; margin-bottom: 0.5rem; color: #f5c543; }
.office-card .office-label { font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: #475569; margin-bottom: 0.25rem; }
.office-card p { color: #94a3b8; font-size: 0.85rem; line-height: 1.7; }
.office-card .phone, .office-card .email { display: block; margin-top: 0.25rem; font-size: 0.85rem; color: #94a3b8; }

/* Philosophy block */
.philosophy-block { background: rgba(245,197,67,0.04); border-radius: 10px; padding: 2.5rem; border-left: 3px solid #f5c543; margin: 2rem 0; }
.philosophy-block h3 { font-size: 1.2rem; margin-bottom: 0.75rem; color: #fff; }
.philosophy-block p { color: #94a3b8; line-height: 1.8; }

/* CTA */
.cta { background: linear-gradient(160deg, #0c0f15, #1a1f2e); padding: 4.5rem 0; text-align: center; border-top: 1px solid rgba(245,197,67,0.06); border-bottom: 1px solid rgba(245,197,67,0.06); }
.cta h2 { color: #fff; font-size: 2rem; margin-bottom: 1rem; }
.cta p { color: #64748b; margin-bottom: 2rem; font-size: 1.05rem; }

/* Footer */
.footer { background: #07090d; color: #475569; padding: 4rem 0 2rem; border-top: 1px solid #1e2430; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; }
.footer h4 { color: #e2e8f0; font-size: 0.95rem; margin-bottom: 1.25rem; }
.footer p { line-height: 1.7; font-size: 0.85rem; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 0.6rem; }
.footer-links a { color: #475569; text-decoration: none; font-size: 0.85rem; transition: color 0.2s; }
.footer-links a:hover { color: #f5c543; }
.footer-bottom { border-top: 1px solid #1e2430; margin-top: 3rem; padding-top: 1.5rem; text-align: center; font-size: 0.8rem; }

/* Features grid */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }

/* Testimonials */
.testimonial-card { background: #11161e; border-radius: 10px; padding: 2rem; border: 1px solid #1e2430; }
.testimonial-text { color: #94a3b8; line-height: 1.7; font-style: italic; margin-bottom: 1.5rem; font-size: 0.9rem; }
.testimonial-author { display: flex; align-items: center; gap: 1rem; }
.testimonial-avatar { width: 40px; height: 40px; border-radius: 50%; background: rgba(245,197,67,0.1); display: flex; align-items: center; justify-content: center; color: #f5c543; font-weight: 600; font-size: 0.85rem; }

/* Tag badges on division page */
.division-tag { display: inline-block; border-radius: 6px; padding: 0.3rem 0.75rem; font-size: 0.75rem; margin: 0.2rem; }

/* Inline tech badges */
.tech-badge { background: rgba(245,197,67,0.06); border-radius: 6px; padding: 1rem; text-align: center; font-weight: 600; color: #f5c543; font-size: 0.9rem; border: 1px solid rgba(245,197,67,0.08); }

/* Inline capability card */
.cap-card { background: #11161e; border-radius: 10px; padding: 2rem; border: 1px solid #1e2430; text-align: center; }
.cap-card h3 { color: #fff; margin-bottom: 0.75rem; }
.cap-card p { color: #64748b; font-size: 0.9rem; }

/* Step number */
.step-num { font-size: 2.2rem; font-weight: 800; color: #f5c543; margin-bottom: 0.5rem; }

/* Editorial split sections */
.split-grid { display: grid; grid-template-columns: 7fr 5fr; gap: 0; align-items: center; width: 100%; max-width: 100vw; }
.split-grid.reverse { grid-template-columns: 5fr 7fr; }
.split-grid .split-image {
  height: 500px; background-size: cover; background-position: center;
  border-radius: 0; position: relative; overflow: hidden;
  filter: brightness(1.2);
}
.split-grid .split-content { padding: 4rem 3rem; }
.split-grid .split-heading {
  font-size: 3rem; font-weight: 700; color: #fff;
  letter-spacing: -0.02em; line-height: 1.1; margin-bottom: 1.5rem;
}
.split-grid .split-underline {
  display: block; width: 50px; height: 2px; background: #f5c543;
  margin-bottom: 1.5rem;
}
.split-grid .split-text { color: #94a3b8; font-size: 0.95rem; line-height: 1.7; max-width: 400px; }

/* Stats strip */
.stats-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.stats-strip .stat-cell {
  text-align: center; padding: 2.5rem 1rem;
  position: relative;
}
.stats-strip .stat-cell + .stat-cell::before {
  content: ''; position: absolute; left: 0; top: 25%; height: 50%;
  width: 1px; background: rgba(245,197,67,0.2);
}
.stats-strip .stat-number { font-size: 2.8rem; font-weight: 800; color: #f5c543; display: block; line-height: 1.1; }
.stats-strip .stat-label { font-size: 0.7rem; color: #64748b; text-transform: uppercase; letter-spacing: 0.12em; display: block; margin-top: 0.3rem; }

/* Full-bleed CTA */
.cta-bleed {
  position: relative; padding: 0; min-height: 550px;
  background-size: cover; background-position: center;
  display: flex; align-items: center; justify-content: center;
}
.cta-bleed::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(75deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.2) 50%, rgba(0,0,0,0.05) 100%);
}
.cta-bleed .cta-body {
  position: relative; z-index: 2; padding: 4rem 3rem;
  max-width: 600px; text-align: center;
}
.cta-bleed h2 { color: #fff; font-size: 2.8rem; font-weight: 700; letter-spacing: -0.02em; line-height: 1.1; margin-bottom: 1.5rem; }
.cta-bleed p { color: rgba(255,255,255,0.6); font-size: 1rem; margin-bottom: 2rem; }
.cta-bleed .btn { border-radius: 0; }

/* Responsive */
@media (max-width: 768px) {
  #hero-home { background-position: 70% center !important; min-height: 70svh !important; }
  section[style*="height:70vh"] { min-height: 50vh !important; height: auto !important; }
  section[style*="height:100vh"] { min-height: 50vh !important; height: auto !important; }
  section[style*="min-height:100svh"] { min-height: 60svh !important; }
  section[style*="height:70vh"] img { object-position: center !important; }
  section[style*="height:100vh"] img { object-position: center !important; }
  section[style*="70vh"] h1 { font-size: 2.2rem !important; }
  section[style*="100vh"] h1 { font-size: 2.2rem !important; }
  .hero-title { font-size: 2.75rem; }
  .mobile-toggle { display: block; }
  .nav-links { display: none; position: absolute; top: 68px; left: 0; right: 0; background: rgba(12,15,21,0.98); backdrop-filter: blur(12px); flex-direction: column; padding: 0.5rem 0; border-bottom: 1px solid #1e2430; gap: 0; }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 0.8rem 1.5rem; display: block; font-size: 1rem; }
  .hero .container { grid-template-columns: 1fr; text-align: center; }
  .hero h1 { font-size: 2.2rem; }
  .hero p { margin: 0 auto 2rem; font-size: 0.95rem; }
  .hero { min-height: auto; padding: 7rem 0 3rem; }
  .hero-img { height: 260px; }
  .split-grid, .split-grid.reverse { grid-template-columns: 1fr; }
  .split-grid .split-image { height: 380px; }
  .split-grid .split-content { padding: 2rem 1.5rem; }
  .split-grid .split-heading { font-size: 1.8rem; }
  .stats-strip { grid-template-columns: repeat(2, 1fr); }
  .stats-strip .stat-cell:nth-child(2)::before { display: none; }
  .stats-strip .stat-cell:nth-child(3)::before { top: 0; height: 1px; width: 50%; left: 25%; }
  .cta-bleed { min-height: 320px; }
  .cta-bleed h2 { font-size: 1.8rem; }
  .cta-bleed .cta-body { padding: 2.5rem 1.5rem; }
  .grid-2, .feature-grid, .blog-grid, .team-grid, .subsidiaries-grid { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .home-expertise-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .home-divisions-grid { grid-template-columns: 1fr !important; }
  .home-stats-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .portfolio-grid, .office-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  .form-row { grid-template-columns: 1fr !important; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer, .footer-grid, .footer-grid > div, .footer h4, .footer p, .footer-links, .footer-links li, .footer-links a { text-align: center; }
  .footer-links a { display: inline-flex; align-items: center; gap: 0.4rem; }
  .section { padding: 3rem 0; }
  .section-title { font-size: 1.5rem; }
  .section-subtitle { font-size: 0.95rem; margin-bottom: 2.5rem; }
  .page-header { padding: 7rem 0 2.5rem; }
  .page-header h1 { font-size: 2rem; }
  .page-header p { font-size: 0.95rem; padding: 0 1rem; }
  .card { padding: 1.5rem; }
  .card h3 { font-size: 1rem; }
  .card p { font-size: 0.85rem; }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-body h3 { font-size: 0.95rem; }
  .subsidiary-card { padding: 1.5rem; }
  .subsidiary-card h3 { font-size: 1rem; }
  .office-card { padding: 1.25rem; }
  .portfolio-body p { font-size: 0.85rem; }
  .product-card .img-wrap { height: 220px; }
  .product-card .card-title { font-size: 0.9rem; }
  .product-card .card-subtitle { font-size: 0.8rem; }
  .stats-strip .stat-number { font-size: 2rem; }
  .stats-strip .stat-cell { padding: 1.5rem 0.75rem; }
  .stat-number { font-size: 2rem; }
  .hear-section { padding: 3rem 0; }
  .play-btn { width: 56px; height: 56px; font-size: 1.2rem; }
  .contact-item { gap: 0.75rem; }
  .contact-item-icon { width: 36px; height: 36px; font-size: 0.8rem; }
  .modal-image { height: 200px; }
}
@media (min-width: 769px) {
  section[style*="height:100vh"] { background-position: center !important; }
  section[style*="height:70vh"] { background-position: center !important; }
  section[style*="height:70vh"] img { object-position: center !important; }
}
@media (max-width: 480px) {
  .hero-title { font-size: 1.8rem; }
  .hero-tagline { font-size: 0.85rem; }
  .tagline-part-2 { display: block; margin-top: 0.15rem; }
  .eq-container { height: 30px; gap: 3px; }
  .eq-bar { width: 3px; }
  .grid-3, .grid-4, .blog-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .footer { padding: 2.5rem 0 1.5rem; }
  .footer h4 { margin-bottom: 0.75rem; }
  .stats { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .home-expertise-grid { grid-template-columns: 1fr !important; }
  .home-stats-grid { grid-template-columns: repeat(2, 1fr) !important; }
  h1 { font-size: 1.6rem !important; }
  h2 { font-size: 1.25rem !important; }
  .container { padding: 0 1rem; }
  .hero .container { padding: 0 1rem; }
  .split-grid .split-content { padding: 1.5rem 1rem; }
  .stats-strip .stat-number { font-size: 1.6rem; }
  .page-header h1 { font-size: 1.6rem; }
}

/* Product Zoom */
.product-modal-overlay {
  position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw; height: 100vh;
  z-index: 9999;
  background: rgba(12,15,21,0.94);
  display: flex; align-items: center; justify-content: center;
  padding: 7rem 2rem 2rem;
  animation: zoomFadeIn 0.25s ease;
}
.modal-content {
  background: #0c0f15; border-radius: 12px;
  max-width: 600px; width: 100%;
  overflow: hidden;
  animation: zoomScaleIn 0.25s ease;
  max-height: calc(100vh - 9rem);
  overflow-y: auto;
  position: relative;
}
.modal-image {
  width: 100%; display: block; height: 340px;
  object-fit: cover;
}
.modal-close {
  position: absolute; top: 1rem; right: 1rem;
  z-index: 10;
  background: rgba(0,0,0,0.65); border: 1px solid rgba(255,255,255,0.15);
  color: #fff; font-size: 1rem; cursor: pointer;
  width: 34px; height: 34px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.modal-close:hover { background: rgba(0,0,0,0.8); }
.modal-text-wrapper { padding: 2rem; }
.modal-text-wrapper p { color: #e2e8f0; }
.modal-text-wrapper button { color: #f5c543; }
.product-card { transition: transform 0.2s, box-shadow 0.2s; }
.product-card:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.3); }
.product-card .card-body { padding: 1.5rem; }
.product-card .card-title { font-size: 1rem; font-weight: 700; color: #e2e8f0; }
.product-card .card-subtitle { font-size: 0.85rem; font-weight: 400; color: #f5c543; }
.product-card .img-wrap {
  height: 300px; overflow: hidden; position: relative;
  background: rgba(255,255,255,0.03);
  border-bottom: 1px solid rgba(245,197,67,0.08);
}

.product-card .img-wrap img {
  position: absolute; top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
@keyframes zoomFadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes zoomScaleIn { from { transform: scale(0.9); opacity: 0; } to { transform: scale(1); opacity: 1; } }

/* Equalizer */
.eq-container {
  display: flex; align-items: center; gap: 4px;
  height: 50px; margin-bottom: 1rem;
}
.eq-bar {
  width: 5px; border-radius: 3px 3px 0 0;
  background: #f5c543;
  animation: eqPulse 0.8s ease-in-out infinite alternate;
}
@keyframes eqPulse {
  0%   { height: 15%; }
  50%  { height: 70%; }
  100% { height: 100%; }
}

/* Hear section */
.hear-section {
  padding: 5rem 0; background: #11161e; text-align: center;
}
.play-btn {
  width: 70px; height: 70px; border-radius: 50%;
  border: 2px solid #f5c543; background: transparent;
  color: #f5c543; font-size: 1.5rem; cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
  transition: background 0.25s, transform 0.25s;
  margin-top: 0.5rem;
}
.play-btn:hover { background: rgba(245,197,67,0.1); transform: scale(1.05); }
.play-btn.playing { background: rgba(245,197,67,0.08); }
.play-status {
  margin-top: 1rem; font-size: 0.85rem; color: #64748b;
  display: none;
}
.play-status.visible { display: block; }
