/* ============================================================
   SIGMAVERSE AUTOMATION – Main Stylesheet
   Colors: Navy #0D2B45 | Green #4CAF50 | Accent #2e7d32
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:       #023247;
  --navy-dark:  #0B1C26;
  --navy-mid:   #0d2d3a;
  --green:      #05878B;
  --green-dark: #046E72;
  --green-light:#4DBCC1;
  --red-acc:    #c0392b;
  --white:      #ffffff;
  --off-white:  #f4f8f9;
  --gray:       #7a9aa8;
  --gray-light: #dde8eb;
  --text:       #0d2530;
  --text-light: #4a7080;
  --radius:     12px;
  --radius-lg:  20px;
  --shadow:     0 4px 24px rgba(2,50,71,0.12);
  --shadow-lg:  0 8px 48px rgba(2,50,71,0.18);
  --transition: 0.3s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

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

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  letter-spacing: 0.3px;
}
.btn-primary {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}
.btn-primary:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(76,175,80,0.35);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
  transform: translateY(-2px);
}
.btn-full { width: 100%; justify-content: center; }

/* ============ SECTION COMMONS ============ */
.section { padding: 100px 0; }

.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-label {
  display: inline-block;
  background: rgba(76,175,80,0.12);
  color: var(--green-dark);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 16px;
}
.section-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-title .highlight { color: var(--green); }
.section-divider {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--green), var(--green-light));
  border-radius: 2px;
  margin: 0 auto 20px;
}
.section-desc {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 640px;
  margin: 0 auto;
}

/* ============ SCROLL REVEAL ============ */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 10px 0;
  transition: all var(--transition);
}
.navbar.scrolled {
  background: rgba(8,26,44,0.97);
  backdrop-filter: blur(12px);
  padding: 6px 0;
  box-shadow: 0 2px 24px rgba(0,0,0,0.25);
}
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-logo-img {
  height: 80px;
  width: auto;
  object-fit: contain;
  display: block;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-link {
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 8px;
  transition: all var(--transition);
}
.nav-link:hover, .nav-link.active {
  color: var(--white);
  background: rgba(255,255,255,0.08);
}
.nav-link.contact-btn {
  background: var(--green);
  color: var(--white);
  border-radius: 50px;
  padding: 9px 22px;
}
.nav-link.contact-btn:hover {
  background: var(--green-dark);
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ============================================================
   HERO SLIDER
   ============================================================ */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

/* Slider track */
.slider {
  width: 100%;
  height: 100%;
  position: relative;
}

.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1s ease;
  display: flex;
  align-items: center;
}
.slide.active { opacity: 1; z-index: 1; }

.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(2,20,30,0.82) 0%,
    rgba(2,50,71,0.65) 50%,
    rgba(2,20,30,0.45) 100%
  );
}

.slide-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  animation: slideIn 0.8s ease both;
}
@keyframes slideIn {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Badge */
.hero-badge {
  display: inline-block;
  background: rgba(5,135,139,0.2);
  border: 1px solid rgba(5,135,139,0.5);
  color: var(--green-light);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 8px 22px;
  border-radius: 50px;
  margin-bottom: 24px;
}

/* Title */
.hero-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 18px;
}
.hero-title .highlight {
  background: linear-gradient(90deg, var(--green), var(--green-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Desc */
.hero-desc {
  font-size: 1rem;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.4px;
  margin-bottom: 40px;
}

/* CTA buttons */
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Arrows */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(2,50,71,0.6);
  border: 1px solid rgba(5,135,139,0.4);
  color: var(--white);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(6px);
  transition: all var(--transition);
}
.slider-arrow:hover {
  background: var(--green);
  border-color: var(--green);
  transform: translateY(-50%) scale(1.08);
}
.slider-arrow.prev { left: 24px; }
.slider-arrow.next { right: 24px; }

/* Dots */
.slider-dots {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 10px;
}
.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  padding: 0;
}
.dot.active {
  background: var(--green);
  width: 28px;
  border-radius: 5px;
}

/* Scroll indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 36px;
  right: 40px;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-scroll-indicator span {
  display: block;
  width: 24px;
  height: 40px;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 12px;
  position: relative;
}
.hero-scroll-indicator span::after {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: var(--green);
  border-radius: 2px;
  animation: scrollBob 1.6s ease-in-out infinite;
}
@keyframes scrollBob {
  0%, 100% { top: 6px; opacity: 1; }
  50%       { top: 18px; opacity: 0.4; }
}

/* ============================================================
   ABOUT
   ============================================================ */
.about { background: var(--white); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-lead {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 20px;
  line-height: 1.6;
}
.about-text {
  font-size: 0.97rem;
  color: var(--text-light);
  margin-bottom: 18px;
}
.about-stats {
  display: flex;
  gap: 32px;
  margin-top: 36px;
  padding-top: 32px;
  border-top: 1px solid var(--gray-light);
}
.stat { text-align: center; }
.stat-num {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--green);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 0.78rem;
  color: var(--text-light);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.about-card-stack {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.about-card {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  border-left: 4px solid var(--green);
  transition: all var(--transition);
  box-shadow: var(--shadow);
}
.about-card:hover {
  transform: translateX(6px);
  box-shadow: var(--shadow-lg);
  background: var(--white);
}
.ac-icon {
  font-size: 1.8rem;
  line-height: 1;
  flex-shrink: 0;
}
.ac-text strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}
.ac-text span {
  font-size: 0.85rem;
  color: var(--text-light);
}

/* ============================================================
   SERVICES
   ============================================================ */
.services { background: var(--off-white); }
.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.service-column {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: box-shadow var(--transition);
}
.service-column:hover { box-shadow: var(--shadow-lg); }
.service-col-header {
  padding: 28px 32px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.service-col-header.sw {
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
}
.service-col-header.hw {
  background: linear-gradient(135deg, var(--green-dark), var(--green));
}
.col-icon { font-size: 2rem; }
.service-col-header h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
}
.service-items { padding: 12px 0; }
.service-item {
  display: flex;
  gap: 14px;
  padding: 16px 32px;
  border-bottom: 1px solid var(--gray-light);
  transition: background var(--transition);
}
.service-item:last-child { border-bottom: none; }
.service-item:hover { background: var(--off-white); }
.si-icon {
  color: var(--green);
  font-size: 0.7rem;
  margin-top: 6px;
  flex-shrink: 0;
}
.si-text strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 3px;
}
.si-text span {
  font-size: 0.82rem;
  color: var(--text-light);
  line-height: 1.5;
}

/* ============================================================
   BRANDS
   ============================================================ */
.brands { background: var(--navy); }
.brands .section-label { background: rgba(76,175,80,0.2); }
.brands .section-title { color: var(--white); }
.brands-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}
.brand-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  color: var(--white);
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1.3;
  cursor: default;
  transition: all var(--transition);
}
.brand-card span {
  display: block;
  font-weight: 400;
  font-size: 0.82rem;
  color: var(--green-light);
}
.brand-card:hover {
  background: rgba(76,175,80,0.15);
  border-color: var(--green);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(76,175,80,0.2);
}
.brands-note {
  text-align: center;
  color: var(--gray);
  font-size: 0.88rem;
  font-style: italic;
  padding: 16px 24px;
  background: rgba(76,175,80,0.08);
  border: 1px solid rgba(76,175,80,0.2);
  border-radius: var(--radius);
  max-width: 600px;
  margin: 0 auto;
}

/* ============================================================
   WHY US
   ============================================================ */
.why-us { background: var(--white); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.why-card {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: all var(--transition);
  border-bottom: 4px solid transparent;
  position: relative;
  overflow: hidden;
}
.why-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green), var(--green-light));
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: left;
}
.why-card:hover::before { transform: scaleX(1); }
.why-card:hover {
  background: var(--white);
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}
.why-icon {
  font-size: 2.8rem;
  margin-bottom: 20px;
  display: block;
}
.why-card h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}
.why-card p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.7;
}
.why-grid .why-card:nth-child(4),
.why-grid .why-card:nth-child(5) {
  grid-column: auto;
}
@media (min-width: 768px) {
  .why-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .why-grid .why-card:nth-child(4) {
    grid-column: 1 / 2;
    margin-left: calc(50% + 14px);
  }
  .why-grid .why-card:nth-child(5) {
    grid-column: auto;
    margin-left: 0;
  }
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact { background: var(--off-white); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 56px;
  align-items: start;
}
.contact-info h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 32px;
}
.contact-item {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
  align-items: flex-start;
}
.contact-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.contact-item strong {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--green-dark);
  margin-bottom: 4px;
}
.contact-item p {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.6;
}
.contact-item a {
  color: var(--navy);
  transition: color var(--transition);
}
.contact-item a:hover { color: var(--green); }

.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--gray-light);
  border-radius: var(--radius);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: var(--text);
  background: var(--off-white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  resize: vertical;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(76,175,80,0.12);
  background: var(--white);
}
.form-note {
  text-align: center;
  margin-top: 12px;
  font-size: 0.88rem;
  color: var(--green-dark);
  min-height: 20px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.7);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.4fr;
  gap: 48px;
  padding: 72px 24px 48px;
}
.footer-logo {
  margin-bottom: 16px;
}
.footer-logo-img {
  height: 88px;
  width: auto;
  object-fit: contain;
}
.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.55);
}
.footer-tagline {
  font-style: italic;
  color: var(--green-light) !important;
  margin-top: 8px;
}
.footer h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
}
.footer-links ul,
.footer-services ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--green-light); }
.footer-services li {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
}
.footer-contact p {
  font-size: 0.88rem;
  margin-bottom: 12px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.5;
}
.footer-contact a {
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}
.footer-contact a:hover { color: var(--green-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  text-align: center;
  padding: 24px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
}

/* ============ BACK TO TOP ============ */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  background: var(--green);
  color: var(--white);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 4px 16px rgba(76,175,80,0.4);
  opacity: 0;
  pointer-events: none;
  transition: all var(--transition);
  z-index: 900;
}
.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
}
.back-to-top:hover {
  background: var(--green-dark);
  transform: translateY(-3px);
}

/* ============================================================
   WHY CARDS – override for 5-item center layout
   ============================================================ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.why-grid .why-card:nth-child(4),
.why-grid .why-card:nth-child(5) {
  grid-column: auto;
}

/* Force last 2 cards to center row */
@media (min-width: 768px) {
  .why-bottom-row {
    display: flex;
    justify-content: center;
    gap: 28px;
  }
}

/* ============================================================
   VIDEO SHOWCASE
   ============================================================ */
.video-section { background: var(--navy-dark); }
.video-section .section-label { background: rgba(5,135,139,0.2); }
.video-section .section-title { color: var(--white); }
.video-section .section-desc  { color: var(--gray); }

.video-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: center;
}

.video-embed-wrap {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 16px 56px rgba(0,0,0,0.5);
  border: 2px solid rgba(5,135,139,0.3);
}
.video-embed-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.video-info {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.vi-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.vi-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: rgba(5,135,139,0.15);
  border: 1px solid rgba(5,135,139,0.3);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.vi-item strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}
.vi-item p {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.6;
}

/* ============================================================
   CUSTOMERS
   ============================================================ */
.customers { background: var(--white); }

.customers-grid {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.customer-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  background: var(--off-white);
  border: 1.5px solid var(--gray-light);
  border-radius: var(--radius-lg);
  padding: 36px 48px;
  transition: all var(--transition);
  min-width: 220px;
}
.customer-card:hover {
  border-color: var(--green);
  box-shadow: 0 8px 32px rgba(76,175,80,0.15);
  transform: translateY(-4px);
}
.customer-card img {
  height: 72px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  border-radius: 8px;
  transition: transform var(--transition);
}
.customer-card:hover img { transform: scale(1.05); }
.customer-card span {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .slide-content { max-width: 100%; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .services-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .brands-grid { grid-template-columns: repeat(3, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .video-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .section { padding: 72px 0; }
  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--navy-dark);
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 32px 40px;
    gap: 8px;
    transition: right var(--transition);
    box-shadow: -8px 0 40px rgba(0,0,0,0.4);
  }
  .nav-links.open { right: 0; }
  .nav-link { width: 100%; font-size: 1rem; }
  .hamburger { display: flex; }
  .about-grid { gap: 32px; }
  .about-stats { gap: 20px; }
  .brands-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 28px 20px; }
  .slider-arrow { width: 38px; height: 38px; font-size: 0.9rem; }
  .slider-arrow.prev { left: 12px; }
  .slider-arrow.next { right: 12px; }
  .hero-title { font-size: 1.8rem; }
  .hero-actions { flex-direction: column; }
  .btn { width: 100%; max-width: 280px; justify-content: center; }
}

@media (max-width: 480px) {
  .brands-grid { grid-template-columns: repeat(2, 1fr); }
  .about-stats { flex-direction: column; gap: 16px; }
}
