/* Reset & Base */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body { font-family: 'Inter', sans-serif; background: #fff; color: #1a1a2e; line-height: 1.6; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
a { color: inherit; text-decoration: none; }

/* Variables */
:root {
  --navy: #1E3A5F;
  --orange: #C45C26;
  --green: #4A7C59;
  --neutral-light: #f5f5f7;
  --neutral-mid: #6b6b8a;
}

/* Layout */
.min-h-screen { min-height: 100vh; }
.bg-white { background-color: #fff; }
.bg-navy { background-color: var(--navy); }
.bg-orange { background-color: var(--orange); }
.bg-neutral-light { background-color: var(--neutral-light); }
.text-orange { color: var(--orange); }
.text-navy { color: var(--navy); }
.text-white { color: #fff; }

.container-custom {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem;
  width: 100%;
}
@media (min-width: 640px) { .container-custom { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .container-custom { padding: 0 2rem; } }

.section-padding { padding: 3rem 0; }
@media (min-width: 768px) { .section-padding { padding: 7rem 0; } }
@media (min-width: 1024px) { .section-padding { padding: 8rem 0; } }

/* Navigation - Sticky header */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  transition: all 0.5s ease;
  width: 100%;
}
.nav-transparent { background: transparent; padding: 1rem 0; }
@media (min-width: 768px) { .nav-transparent { padding: 1.25rem 0; } }
.nav-scrolled {
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
  padding: 0.75rem 0;
}
.nav-transparent .logo-text,
.nav-transparent .nav-link,
.nav-transparent .nav-phone,
.nav-transparent .mobile-menu-btn { color: #fff; }
.nav-transparent .logo-icon { background: var(--navy); color: #fff; }
.nav-scrolled .logo-text,
.nav-scrolled .nav-link,
.nav-scrolled .nav-phone,
.nav-scrolled .mobile-menu-btn { color: var(--navy); }
.nav-scrolled .logo-icon { background: var(--navy); color: #fff; }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
  min-width: 0;
}
.logo { display: flex; align-items: center; gap: 0.5rem; }
.logo:hover .logo-icon { background: var(--orange); }
.logo-icon {
  width: 2.5rem; height: 2.5rem;
  background: var(--navy);
  border-radius: 0.5rem;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.3s;
}
.logo-text { font-size: 1.125rem; font-weight: 700; transition: color 0.3s; white-space: nowrap; }
@media (min-width: 640px) { .logo-text { font-size: 1.25rem; } }

.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-link {
  font-weight: 500;
  position: relative;
  transition: color 0.3s;
}
.nav-link:hover { color: var(--orange); }
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 2px;
  background: var(--orange);
  transition: width 0.3s;
}
.nav-link:hover::after { width: 100%; }

.nav-actions { display: flex; align-items: center; gap: 1rem; }
.nav-phone { display: flex; align-items: center; gap: 0.5rem; font-weight: 500; font-size: 0.875rem; }
.mobile-menu-btn {
  padding: 0.5rem;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mobile-menu-btn:hover { opacity: 0.8; }
@media (min-width: 1024px) {
  .mobile-menu-btn { display: none; }
}

.desktop-only { display: none; }
@media (min-width: 1024px) { .desktop-only { display: flex; } }
.hidden-md { display: none; }
@media (min-width: 768px) { .hidden-md { display: flex; } }
.hidden-sm { display: none; }
@media (min-width: 640px) { .hidden-sm { display: inline-flex; } }

.mobile-menu {
  display: none;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.2);
}
@media (min-width: 1024px) { .mobile-menu { display: none !important; } }
.mobile-menu:not(.hidden) { display: flex; flex-direction: column; gap: 1rem; }
.nav-scrolled .mobile-menu { border-top-color: rgba(0,0,0,0.1); }
.mobile-nav-link {
  text-align: left;
  font-weight: 500;
  padding: 0.5rem 0;
}
.hidden { display: none !important; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.5rem;
  font-weight: 600;
  border-radius: 0.5rem;
  transition: all 0.3s;
  font-size: 0.9375rem;
}
@media (min-width: 640px) {
  .btn { padding: 1rem 2rem; font-size: 1rem; }
}
.btn-orange {
  background: var(--orange);
  color: #fff;
}
.btn-orange:hover {
  background: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(30,58,95,0.3);
}
.btn-outline {
  border: 2px solid #fff;
  color: #fff;
  background: transparent;
}
.btn-outline:hover {
  background: #fff;
  color: var(--navy);
}
.btn-primary {
  background: var(--navy);
  color: #fff;
}
.btn-primary:hover {
  background: var(--orange);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(196,92,38,0.3);
}
.btn-secondary {
  border: 2px solid var(--navy);
  color: var(--navy);
  background: transparent;
}
.btn-secondary:hover {
  background: var(--navy);
  color: #fff;
}
.btn-lg { font-size: 1.125rem; padding: 1rem 2rem; }
.w-full { width: 100%; }

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gradient-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(30,58,95,0.9) 0%, rgba(30,58,95,0.4) 50%, transparent 100%);
}
.hero-content {
  position: relative;
  z-index: 10;
  padding-top: 6rem;
  padding-bottom: 3rem;
}
@media (min-width: 768px) {
  .hero-content { padding-top: 8rem; padding-bottom: 5rem; }
}
.hero-inner {
  max-width: 48rem;
}
.max-w-3xl { max-width: 48rem; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  margin-bottom: 1.5rem;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 500;
  flex-wrap: wrap;
}
@media (min-width: 640px) { .hero-badge { font-size: 0.875rem; } }
.hero-badge svg { flex-shrink: 0; }
.hero-title {
  font-size: clamp(1.75rem, 5vw, 4.5rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  word-wrap: break-word;
}
.hero-subtitle {
  font-size: 1.125rem;
  color: #e5e7eb;
  margin-bottom: 2rem;
  max-width: 42rem;
}
@media (min-width: 768px) { .hero-subtitle { font-size: 1.25rem; } }
.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}
@media (min-width: 640px) { .hero-buttons { flex-direction: row; } }
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.2);
}
@media (min-width: 640px) {
  .hero-stats { gap: 1.5rem; margin-top: 4rem; padding-top: 2rem; }
}
.stat-number { font-size: 1.5rem; font-weight: 700; color: #fff; font-variant-numeric: tabular-nums; display: block; }
@media (min-width: 768px) { .stat-number { font-size: 2.25rem; } }
.stat-label { font-size: 0.7rem; color: #d1d5db; margin-top: 0.25rem; display: block; }
@media (min-width: 640px) { .stat-label { font-size: 0.875rem; } }

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
}
.scroll-mouse {
  width: 2rem;
  height: 3rem;
  border: 2px solid rgba(255,255,255,0.5);
  border-radius: 9999px;
  display: flex;
  justify-content: center;
  padding-top: 0.5rem;
}
.scroll-dot {
  width: 0.375rem;
  height: 0.75rem;
  background: rgba(255,255,255,0.8);
  border-radius: 9999px;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(0.5rem); }
}

/* Animations */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.animate-fade-in-up {
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  opacity: 0;
}
@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 20px rgba(196,92,38,0.3); }
  50% { box-shadow: 0 0 40px rgba(196,92,38,0.6); }
}
.animate-pulse-glow { animation: pulse-glow 3s ease-in-out infinite; }

/* Section Headers */
.section-header { text-align: center; max-width: 48rem; margin: 0 auto 2.5rem; }
@media (min-width: 768px) { .section-header { margin-bottom: 4rem; } }
.section-header.light .section-title,
.section-header.light .section-desc { color: #fff; }
.section-header.light .section-desc { color: #d1d5db; }
.section-subtitle {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.section-title {
  font-size: clamp(1.5rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--navy);
  margin: 0.5rem 0 1rem;
}
.section-desc { color: var(--neutral-mid); font-size: 1rem; }
@media (min-width: 768px) { .section-desc { font-size: 1.125rem; } }

/* Grid Pattern */
.grid-pattern {
  background-image:
    linear-gradient(rgba(30,58,95,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30,58,95,0.03) 1px, transparent 1px);
  background-size: 50px 50px;
}
.industrial-pattern {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 10px,
    rgba(30,58,95,0.02) 10px,
    rgba(30,58,95,0.02) 20px
  );
  opacity: 0.5;
}
#industries .industrial-pattern { opacity: 0.5; }
#testimonials .industrial-pattern { opacity: 0.3; }
.relative-z { position: relative; z-index: 10; }
.relative.overflow-hidden { overflow: hidden; }

/* Product Cards */
.product-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) { .product-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .product-grid { grid-template-columns: repeat(4, 1fr); } }

.product-card {
  background: #fff;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}
.product-card-img {
  height: 10rem;
  overflow: hidden;
}
@media (min-width: 640px) { .product-card-img { height: 12rem; } }
.product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}
.product-card:hover .product-card-img img { transform: scale(1.08); }
.product-card-content { padding: 1.25rem; }
@media (min-width: 640px) { .product-card-content { padding: 1.5rem; } }
.product-icon {
  width: 3rem;
  height: 3rem;
  background: rgba(30,58,95,0.1);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--navy);
  transition: all 0.3s;
}
.product-card:hover .product-icon {
  background: var(--orange);
  color: #fff;
}
.product-card-content h3 { font-size: 1.25rem; font-weight: 700; color: var(--navy); margin-bottom: 0.5rem; }
.product-card-content p { color: var(--neutral-mid); font-size: 0.875rem; margin-bottom: 1rem; }
.product-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--orange);
  font-weight: 600;
  font-size: 0.875rem;
  transition: gap 0.3s;
}
.product-link:hover { gap: 0.75rem; }

/* Industry Cards */
.industry-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) { .industry-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .industry-grid { grid-template-columns: repeat(4, 1fr); } }

.industry-card {
  position: relative;
  border-radius: 0.75rem;
  overflow: hidden;
  height: 16rem;
  cursor: pointer;
}
@media (min-width: 640px) { .industry-card { height: 20rem; } }
.industry-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s;
}
.industry-card:hover img { transform: scale(1.1); }
.industry-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--navy), rgba(30,58,95,0.5), transparent);
}
.industry-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
}
.industry-content h3 { font-size: 1.25rem; font-weight: 700; color: #fff; margin-bottom: 0.5rem; }
.industry-content p {
  color: #d1d5db;
  font-size: 0.875rem;
  opacity: 0;
  transition: opacity 0.3s;
}
.industry-card:hover .industry-content p { opacity: 1; }

/* About Section */
.about-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}
@media (min-width: 1024px) { .about-grid { grid-template-columns: 1fr 1fr; gap: 3rem; } }
.about-image { position: relative; }
.about-image img {
  width: 100%;
  border-radius: 1rem;
  box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}
.floating-card {
  position: absolute;
  bottom: -2rem;
  right: -2rem;
  background: #fff;
  border-radius: 0.75rem;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
@media (max-width: 767px) { .floating-card { display: none; } }
.floating-icon {
  width: 3.5rem;
  height: 3.5rem;
  background: rgba(196,92,38,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
}
.floating-number { font-size: 1.875rem; font-weight: 700; color: var(--navy); display: block; }
.floating-label { font-size: 0.875rem; color: var(--neutral-mid); }
.about-text { color: var(--neutral-mid); font-size: 1.125rem; margin-bottom: 2rem; }

.features-grid {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 2rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .features-grid { grid-template-columns: repeat(2, 1fr); } }
.feature-item { display: flex; gap: 1rem; align-items: flex-start; }
.feature-icon {
  width: 2.5rem;
  height: 2.5rem;
  background: rgba(30,58,95,0.1);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--navy);
}
.feature-item h4 { font-weight: 700; color: var(--navy); margin-bottom: 0.25rem; }
.feature-item p { font-size: 0.875rem; color: var(--neutral-mid); }

/* Featured Products - matches React: grid lg:grid-cols-2 gap-8 */
.featured-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}
@media (min-width: 1024px) {
  .featured-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}
.featured-card {
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.1);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .featured-card {
    grid-template-columns: 1fr 1fr;
  }
}
.featured-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (min-width: 768px) { .featured-content { padding: 2rem; } }
.featured-tag {
  color: var(--orange);
  font-weight: 600;
  font-size: 0.875rem;
}
.featured-content h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0.5rem 0 1rem;
}
@media (min-width: 768px) { .featured-content h3 { font-size: 1.5rem; } }
.featured-content p {
  color: var(--neutral-mid);
  margin-bottom: 1.5rem;
}
.featured-list {
  list-style: none;
  margin-bottom: 1.5rem;
}
.featured-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  margin-bottom: 0.75rem;
}
.featured-list li svg {
  flex-shrink: 0;
  color: var(--green);
}
.featured-content .btn-orange {
  width: fit-content;
}
.featured-image {
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.featured-image img {
  max-width: 100%;
  max-height: 16rem;
  height: auto;
  object-fit: contain;
}

/* Testimonials */
.testimonial-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) { .testimonial-grid { grid-template-columns: repeat(3, 1fr); } }
.testimonial-card {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 0.75rem;
  padding: 2rem;
}
.stars { color: var(--orange); margin-bottom: 1rem; font-size: 1.25rem; }
.quote-icon { font-size: 2rem; color: rgba(196,92,38,0.5); margin-bottom: 1rem; }
.testimonial-card p { color: #fff; margin-bottom: 1.5rem; }
.testimonial-author { font-weight: 700; color: #fff; }
.testimonial-role { font-size: 0.875rem; color: #9ca3af; }

/* CTA Section */
.cta-glow {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cta-glow::before {
  content: '';
  width: 600px;
  height: 600px;
  background: rgba(196,92,38,0.1);
  border-radius: 50%;
  filter: blur(80px);
}
.cta-content { text-align: center; max-width: 48rem; margin: 0 auto; position: relative; z-index: 10; }
.cta-content .section-title { margin-bottom: 1.5rem; }
.cta-content .section-desc { margin-bottom: 2rem; }
.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
}
@media (min-width: 640px) { .cta-buttons { flex-direction: row; } }

/* Modal */
.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.modal.hidden { display: none; }
.modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
}
.modal-content {
  position: relative;
  background: #fff;
  border-radius: 0.5rem;
  padding: 1.5rem;
  max-width: 48rem;
  width: 100%;
  box-shadow: 0 25px 50px rgba(0,0,0,0.25);
}
.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 1.5rem;
  line-height: 1;
  color: var(--neutral-mid);
  background: none;
  border: none;
  cursor: pointer;
}
.modal-close:hover { color: var(--navy); }
.modal-title { font-size: 1.25rem; font-weight: 600; margin-bottom: 1rem; }
.modal-video-placeholder {
  aspect-ratio: 16/9;
  background: rgba(30,58,95,0.1);
  border-radius: 0.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  color: var(--neutral-mid);
}
.modal-video-placeholder svg { color: var(--navy); }

/* Contact */
.contact-grid {
  display: grid;
  gap: 2rem;
}
@media (min-width: 1024px) {
  .contact-grid { grid-template-columns: 1fr 1fr; gap: 3rem; }
}
.contact-desc { color: var(--neutral-mid); font-size: 1.125rem; margin-bottom: 2rem; }
.contact-details { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  flex-wrap: wrap;
}
.contact-value { font-weight: 700; color: var(--navy); word-break: break-word; }
.contact-icon {
  width: 3rem;
  height: 3rem;
  background: rgba(30,58,95,0.1);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  flex-shrink: 0;
}
.contact-label { display: block; font-size: 0.875rem; color: var(--neutral-mid); }
.contact-value a { color: var(--navy); text-decoration: none; }
.contact-value a:hover { text-decoration: underline; }

.contact-form-wrapper {
  background: var(--neutral-light);
  border-radius: 1rem;
  padding: 1.5rem;
}
@media (min-width: 640px) {
  .contact-form-wrapper { padding: 2rem; }
}
.contact-form-wrapper h3 { font-size: 1.5rem; font-weight: 700; color: var(--navy); margin-bottom: 1.5rem; }
.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.form-row {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .form-row { grid-template-columns: 1fr 1fr; }
}
.form-group { display: flex; flex-direction: column; gap: 0.25rem; }
.form-group label { font-size: 0.875rem; font-weight: 500; }
.form-group input,
.form-group textarea {
  padding: 0.5rem 0.75rem;
  border: 1px solid #d1d5db;
  border-radius: 0.375rem;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(30,58,95,0.2);
}
.form-group textarea { min-height: 120px; resize: vertical; }

/* Footer */
.footer {
  background: var(--navy);
  color: #fff;
  padding-top: 3rem;
  padding-bottom: 1.5rem;
}
@media (min-width: 768px) {
  .footer { padding-top: 5rem; padding-bottom: 2rem; }
}
.footer-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 2rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .footer-grid { gap: 3rem; margin-bottom: 3rem; }
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }
.footer-brand .logo { margin-bottom: 1rem; }
.footer-brand .logo-icon { background: var(--orange); }
.footer-brand p { color: #9ca3af; margin-bottom: 1.5rem; max-width: 24rem; }
.social-links { display: flex; gap: 1rem; }
.social-links a {
  width: 2.5rem;
  height: 2.5rem;
  background: rgba(255,255,255,0.1);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: background 0.3s, color 0.3s;
}
.social-links a:hover {
  background: var(--orange);
  color: #fff;
}
.footer-links h4 { font-weight: 700; margin-bottom: 1rem; }
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 0.5rem; }
.footer-links a { color: #9ca3af; transition: color 0.3s; }
.footer-links a:hover { color: var(--orange); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
  color: #9ca3af;
  font-size: 0.875rem;
}
@media (min-width: 768px) { .footer-bottom { flex-direction: row; } }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a:hover { color: #fff; }

/* Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--neutral-light); }
::-webkit-scrollbar-thumb { background: var(--navy); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #152a45; }
