/* ========== RESET & BASE ========== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: #1a1d23;
  background: #ffffff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

:root {
  --navy-900: #0a1628;
  --navy-800: #0f2140;
  --navy-700: #152c54;
  --navy-600: #1e3f73;
  --blue-500: #2563eb;
  --blue-400: #3b82f6;
  --orange-500: #f97316;
  --orange-400: #fb923c;
  --orange-600: #ea580c;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-500: #64748b;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-900: #0f172a;
  --silver: #e8ecf1;
  --max-w: 1280px;
  --section-py: 120px;
}

h1, h2, h3, h4 {
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
}

.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--orange-500);
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(32px, 4vw, 48px);
  color: var(--navy-900);
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 18px;
  color: var(--gray-500);
  max-width: 600px;
  line-height: 1.7;
}

.section-header {
  text-align: center;
  margin-bottom: 72px;
}
.section-header .section-subtitle { margin: 0 auto; }

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 6px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-transform: none;
  letter-spacing: 0.01em;
}
.btn-sm { padding: 10px 22px; font-size: 14px; }
.btn-block { width: 100%; justify-content: center; }

.btn-primary {
  background: var(--orange-500);
  color: #fff;
  box-shadow: 0 4px 14px rgba(249, 115, 22, 0.35);
}
.btn-primary:hover {
  background: var(--orange-600);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(249, 115, 22, 0.45);
}
.btn-secondary {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.4);
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.7);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--navy-900);
  border: 1.5px solid var(--gray-300);
}
.btn-outline:hover {
  border-color: var(--navy-700);
  background: var(--gray-50);
  transform: translateY(-2px);
}
.btn-white {
  background: #fff;
  color: var(--navy-900);
  box-shadow: 0 4px 14px rgba(0,0,0,0.1);
}
.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

/* ========== NAVIGATION ========== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all 0.3s ease;
  background: transparent;
}
.navbar.scrolled {
  background: rgba(10, 22, 40, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 14px 0;
  box-shadow: 0 4px 24px rgba(0,0,0,0.2);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-mark {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--orange-500), var(--orange-600));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 18px;
}
.logo-text {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: #fff;
  letter-spacing: -0.01em;
}
.logo-text span { color: var(--orange-500); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
}
.nav-links a {
  color: rgba(255,255,255,0.85);
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
  position: relative;
}
.nav-links a:hover { color: #fff; }
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--orange-500);
  transition: width 0.3s;
}
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  display: flex;
  align-items: center;
  gap: 16px;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  width: 24px;
  height: 2px;
  background: #fff;
  transition: all 0.3s;
  border-radius: 2px;
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--navy-900);
  z-index: 999;
  padding: 100px 32px 32px;
  flex-direction: column;
  gap: 8px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.mobile-menu.active {
  opacity: 1;
  pointer-events: auto;
  display: flex;
}
.mobile-menu a {
  color: #fff;
  font-size: 24px;
  font-weight: 600;
  font-family: 'Space Grotesk', sans-serif;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.mobile-menu-cta { margin-top: 24px; }
.mobile-menu-cta .btn { width: 100%; justify-content: center; }

/* ========== HERO ========== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background: var(--navy-900);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.35;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,22,40,0.92) 0%, rgba(15,33,64,0.8) 50%, rgba(21,44,84,0.7) 100%);
}
.hero-grid-bg {
  position: absolute;
  inset: 0;
  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-content {
  position: relative;
  z-index: 2;
  padding: 120px 0 80px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  background: rgba(249,115,22,0.15);
  border: 1px solid rgba(249,115,22,0.3);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: var(--orange-400);
  margin-bottom: 28px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.hero-eyebrow::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--orange-500);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--orange-500);
}
.hero h1 {
  font-size: clamp(40px, 6vw, 72px);
  margin-bottom: 24px;
  max-width: 900px;
}
.hero h1 .highlight {
  background: linear-gradient(135deg, var(--orange-400), #fbbf24);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-desc {
  font-size: clamp(16px, 2vw, 20px);
  color: rgba(255,255,255,0.75);
  max-width: 640px;
  margin-bottom: 40px;
  line-height: 1.7;
}
.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 80px;
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.stat-item .stat-number {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}
.stat-item .stat-number .plus { color: var(--orange-500); }
.stat-item .stat-label {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  font-weight: 400;
}

/* ========== ABOUT ========== */
.about {
  padding: var(--section-py) 0;
  background: #fff;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-visual { position: relative; }
.about-visual img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  border-radius: 12px;
}
.about-badge {
  position: absolute;
  bottom: -32px;
  right: 32px;
  background: #fff;
  padding: 24px 28px;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
  display: flex;
  align-items: center;
  gap: 16px;
}
.about-badge-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--navy-700), var(--navy-900));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
}
.about-badge-text h4 {
  font-size: 28px;
  color: var(--navy-900);
  margin-bottom: 2px;
}
.about-badge-text p {
  font-size: 13px;
  color: var(--gray-500);
}
.about-content .section-title { margin-bottom: 24px; }
.about-intro {
  font-size: 17px;
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 32px;
}
.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 36px;
}
.about-feature { display: flex; gap: 14px; }
.about-feature-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: var(--gray-50);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy-700);
}
.about-feature h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--navy-900);
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}
.about-feature p {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.6;
}

/* ========== PRODUCTS ========== */
.products {
  padding: var(--section-py) 0;
  background: var(--gray-50);
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.product-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
  border: 1px solid var(--gray-200);
}
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 48px rgba(10,22,40,0.12);
  border-color: transparent;
}
.product-img {
  position: relative;
  height: 240px;
  overflow: hidden;
}
.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.product-card:hover .product-img img { transform: scale(1.08); }
.product-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,22,40,0.6) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.3s;
}
.product-card:hover .product-overlay { opacity: 1; }
.product-body { padding: 24px; }
.product-body h3 {
  font-size: 20px;
  color: var(--navy-900);
  margin-bottom: 10px;
}
.product-body p {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.7;
  margin-bottom: 16px;
}
.product-brands {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.brand-tag {
  padding: 4px 10px;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 500;
  color: var(--gray-600);
}
.product-link {
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy-700);
  transition: gap 0.3s, color 0.3s;
}
.product-link:hover {
  color: var(--orange-500);
  gap: 12px;
}

/* ========== SERVICES ========== */
.services {
  padding: var(--section-py) 0;
  background: #fff;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  overflow: hidden;
}
.service-item {
  padding: 48px 36px;
  border-right: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
  transition: all 0.3s;
  position: relative;
}
.service-item:nth-child(3n) { border-right: none; }
.service-item:nth-child(n+4) { border-bottom: none; }
.service-item:hover { background: var(--gray-50); }
.service-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--navy-700), var(--navy-900));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  margin-bottom: 24px;
  transition: all 0.3s;
}
.service-item:hover .service-icon {
  transform: scale(1.1);
  background: linear-gradient(135deg, var(--orange-500), var(--orange-600));
}
.service-item h3 {
  font-size: 20px;
  color: var(--navy-900);
  margin-bottom: 12px;
}
.service-item p {
  font-size: 15px;
  color: var(--gray-500);
  line-height: 1.7;
}

/* ========== WHY CHOOSE US ========== */
.why {
  padding: var(--section-py) 0;
  background: var(--navy-900);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.why::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(ellipse at 20% 20%, rgba(37,99,235,0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 80%, rgba(249,115,22,0.1) 0%, transparent 50%);
  pointer-events: none;
}
.why .section-title { color: #fff; }
.why .section-subtitle { color: rgba(255,255,255,0.65); }
.why .eyebrow { color: var(--orange-400); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  position: relative;
  z-index: 1;
}
.why-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 36px 32px;
  transition: all 0.3s;
}
.why-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.2);
  transform: translateY(-6px);
}
.why-icon {
  width: 52px;
  height: 52px;
  background: rgba(249,115,22,0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange-400);
  margin-bottom: 24px;
}
.why-card h3 {
  font-size: 20px;
  color: #fff;
  margin-bottom: 12px;
}
.why-card p {
  font-size: 15px;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
}

/* ========== CTA BANNER ========== */
.cta-banner {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--navy-700), var(--navy-900));
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(249,115,22,0.2) 0%, transparent 70%);
  pointer-events: none;
}
.cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.cta-text h2 {
  font-size: clamp(28px, 3vw, 40px);
  color: #fff;
  margin-bottom: 12px;
}
.cta-text p {
  font-size: 17px;
  color: rgba(255,255,255,0.7);
}

/* ========== CONTACT ========== */
.contact {
  padding: var(--section-py) 0;
  background: #fff;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.contact-info-block { display: flex; gap: 20px; }
.contact-info-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  background: var(--gray-50);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy-700);
  transition: all 0.3s;
}
.contact-info-block:hover .contact-info-icon {
  background: var(--navy-700);
  color: #fff;
}
.contact-info-block h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--navy-900);
  margin-bottom: 6px;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0;
}
.contact-info-block p, .contact-info-block a {
  font-size: 15px;
  color: var(--gray-500);
  line-height: 1.6;
}
.contact-info-block a:hover { color: var(--orange-500); }
.contact-hours { margin-top: 8px; }
.contact-hours div {
  display: flex;
  justify-content: space-between;
  padding: 4px 0;
  font-size: 14px;
}
.contact-hours .day { color: var(--gray-600); font-weight: 500; }
.contact-hours .time { color: var(--gray-500); }

.contact-form {
  background: var(--gray-50);
  border-radius: 16px;
  padding: 48px;
  border: 1px solid var(--gray-200);
}
.contact-form h3 {
  font-size: 28px;
  color: var(--navy-900);
  margin-bottom: 8px;
}
.contact-form .form-sub {
  font-size: 15px;
  color: var(--gray-500);
  margin-bottom: 32px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-700);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: 8px;
  font-size: 15px;
  font-family: inherit;
  color: var(--gray-900);
  background: #fff;
  transition: all 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--navy-600);
  box-shadow: 0 0 0 3px rgba(30,63,115,0.1);
}
.form-group textarea {
  resize: vertical;
  min-height: 120px;
}
.form-success {
  display: none;
  padding: 20px;
  background: #ecfdf5;
  border: 1px solid #10b981;
  border-radius: 8px;
  color: #065f46;
  font-size: 14px;
  margin-bottom: 20px;
}
.form-success.active { display: block; }

/* Map */
.map-section {
  margin-top: 80px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--gray-200);
}
.map-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 28px;
  background: var(--gray-50);
  border-bottom: 1px solid var(--gray-200);
}
.map-header h4 {
  font-size: 18px;
  color: var(--navy-900);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  letter-spacing: 0;
}
.map-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy-700);
  transition: color 0.2s;
}
.map-link:hover { color: var(--orange-500); }
.map-iframe {
  width: 100%;
  height: 400px;
  border: 0;
  display: block;
}

/* ========== FOOTER ========== */
.footer {
  background: var(--navy-900);
  color: #fff;
  padding: 80px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 48px;
  margin-bottom: 60px;
}
.footer-brand .logo-text { margin-bottom: 16px; font-size: 22px; }
.footer-brand p {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 320px;
}
.footer-socials {
  display: flex;
  gap: 12px;
}
.footer-social {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  transition: all 0.3s;
}
.footer-social:hover {
  background: var(--orange-500);
  color: #fff;
  transform: translateY(-3px);
}
.footer-col h4 {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 24px;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0;
}
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col ul li a {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s, padding 0.2s;
}
.footer-col ul li a:hover {
  color: var(--orange-400);
  padding-left: 4px;
}
.footer-contact-list { display: flex; flex-direction: column; gap: 16px; }
.footer-contact-item {
  display: flex;
  gap: 12px;
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
}
.footer-contact-item svg {
  flex-shrink: 0;
  color: var(--orange-400);
  margin-top: 2px;
}
.footer-contact-item a { color: rgba(255,255,255,0.6); }
.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a:hover { color: rgba(255,255,255,0.8); }

/* ========== SCROLL REVEAL ========== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* Respect reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  .product-card:hover, .why-card:hover, .btn:hover, .service-item:hover .service-icon {
    transform: none !important;
  }
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .service-item:nth-child(3n) { border-right: 1px solid var(--gray-200); }
  .service-item:nth-child(2n) { border-right: none; }
  .service-item:nth-child(n+4) { border-bottom: 1px solid var(--gray-200); }
  .service-item:nth-child(n+5) { border-bottom: none; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-visual img { height: 400px; }
}

@media (max-width: 768px) {
  :root { --section-py: 80px; }
  .container { padding: 0 20px; }
  .nav-inner { padding: 0 20px; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }

  .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .hero-buttons { margin-bottom: 48px; }

  .products-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .service-item { border-right: none !important; }
  .service-item { border-bottom: 1px solid var(--gray-200) !important; }
  .service-item:last-child { border-bottom: none !important; }
  .why-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 32px 24px; }
  .cta-inner { flex-direction: column; text-align: center; }
  .about-features { grid-template-columns: 1fr; }
  .about-badge { right: 20px; }
  .section-header { margin-bottom: 48px; }
  .map-header {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }
}
