/* ============================================
   AZ BASS CO. — Dark Olive / Military Aesthetic
   Matched to logo palette
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Anton&family=Bebas+Neue&family=Oswald:wght@400;500;600;700&family=Inter:wght@400;500;600;700&display=swap');

:root {
  --black: #0a0a08;
  --black-soft: #14140f;
  --black-card: #1c1c16;
  --olive: #5a5e2a;
  --olive-deep: #3d4019;
  --olive-light: #7a7e3a;
  --gold: #a08838;
  --gold-deep: #75621f;
  --gold-glow: #c9a850;
  --bone: #e8e4d2;
  --bone-soft: #d8d2bc;
  --bone-bright: #f4f0dc;
  --rust: #8b3a1c;
  --line: rgba(232, 228, 210, 0.12);
  --line-strong: rgba(232, 228, 210, 0.25);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--black);
  color: var(--bone);
  line-height: 1.6;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1000;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

a { color: inherit; }

/* NAVIGATION */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1rem 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(10, 10, 8, 0.85);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  transition: all 0.3s ease;
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  height: 64px;
}

.nav-logo img {
  height: 100%;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bone);
  text-decoration: none;
  position: relative;
  padding: 0.4rem 0;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--gold-glow); }

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -2px;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.nav-links a:hover::after { width: 100%; }

.nav-cta {
  background: var(--olive);
  color: var(--bone-bright);
  padding: 0.7rem 1.5rem;
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  letter-spacing: 0.15em;
  font-size: 0.9rem;
  text-transform: uppercase;
  border: 1px solid var(--olive-light);
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
}

.nav-cta:hover {
  background: var(--gold-deep);
  border-color: var(--gold);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.5rem;
  color: var(--bone);
}

/* HERO */
.hero {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  background: var(--black);
  display: flex;
  align-items: center;
  padding: 8rem 2.5rem 4rem;
}

.hero-bg { position: absolute; inset: 0; z-index: 0; }

.hero-bg::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 70%;
  background: radial-gradient(ellipse at 75% 20%, rgba(160, 136, 56, 0.22) 0%, rgba(160, 136, 56, 0.06) 40%, transparent 70%);
}

.hero-bg::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 50%;
  background: linear-gradient(180deg, transparent 0%, var(--black) 80%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-tag {
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.35em;
  color: var(--gold);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  text-transform: uppercase;
}

.hero-tag::before {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--gold);
}

.hero-title {
  font-family: 'Anton', sans-serif;
  font-size: clamp(3.5rem, 9vw, 8rem);
  line-height: 0.88;
  letter-spacing: -0.005em;
  color: var(--bone-bright);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hero-title .accent {
  color: var(--olive-light);
}

.hero-title .accent-gold {
  color: var(--gold-glow);
  font-style: italic;
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--bone-soft);
  margin-bottom: 2.5rem;
  max-width: 480px;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 2rem;
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.25s;
}

.btn-primary {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}

.btn-primary:hover {
  background: var(--gold-glow);
  border-color: var(--gold-glow);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(160, 136, 56, 0.3);
}

.btn-secondary {
  background: transparent;
  color: var(--bone);
  border-color: var(--olive-light);
}

.btn-secondary:hover {
  background: var(--olive);
  border-color: var(--olive);
  color: var(--bone-bright);
}

.btn-arrow { transition: transform 0.25s; }
.btn:hover .btn-arrow { transform: translateX(4px); }

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 520px;
  background: #ffffff;
  border: 1px solid var(--line-strong);
  overflow: hidden;
}

.hero-worm {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: contain;
  animation: worm-float 5s ease-in-out infinite;
}

.hero-badge {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  background: var(--gold);
  color: var(--black);
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.45rem 0.9rem;
  z-index: 3;
  white-space: nowrap;
}

.hero-logo {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  filter: drop-shadow(0 20px 50px rgba(160, 136, 56, 0.2));
  animation: logo-float 5s ease-in-out infinite;
}

@keyframes logo-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes worm-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.hero-stats {
  position: absolute;
  bottom: 2rem;
  left: 2.5rem;
  right: 2.5rem;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  padding-top: 1.5rem;
  max-width: 1400px;
  margin: 0 auto;
  z-index: 3;
}

.stat { display: flex; flex-direction: column; }

.stat-num {
  font-family: 'Anton', sans-serif;
  font-size: 2rem;
  color: var(--gold);
  line-height: 1;
}

.stat-label {
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bone-soft);
  margin-top: 0.4rem;
}

/* SECTION GENERAL */
.section {
  padding: 7rem 2.5rem;
  position: relative;
}

.container {
  max-width: 1300px;
  margin: 0 auto;
}

.section-tag {
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.section-tag::before {
  content: '';
  width: 30px;
  height: 1px;
  background: var(--gold);
}

.section-title {
  font-family: 'Anton', sans-serif;
  font-size: clamp(2.5rem, 5.5vw, 5rem);
  line-height: 0.95;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
  color: var(--bone-bright);
}

.section-title .accent { color: var(--olive-light); }
.section-title .accent-gold { color: var(--gold-glow); font-style: italic; }

.section-intro {
  font-size: 1.1rem;
  max-width: 600px;
  color: var(--bone-soft);
  margin-bottom: 4rem;
}

/* STORY */
.story {
  background: var(--black-soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.story-text p {
  margin-bottom: 1.25rem;
  color: var(--bone-soft);
  font-size: 1.05rem;
  line-height: 1.7;
}

.story-quote {
  border-left: 3px solid var(--gold);
  padding: 0.5rem 0 0.5rem 1.5rem;
  margin: 2rem 0;
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-style: italic;
  font-size: 1.4rem;
  line-height: 1.4;
  color: var(--gold-glow);
  letter-spacing: 0.02em;
}

.story-visual {
  position: relative;
  aspect-ratio: 1/1;
  background: var(--black);
  border: 1px solid var(--line-strong);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.story-visual img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.story-badge {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: var(--olive);
  color: var(--bone-bright);
  padding: 0.5rem 1rem;
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  text-transform: uppercase;
  z-index: 2;
}

/* PRODUCTS */
.products {
  background: var(--black);
  position: relative;
  overflow: hidden;
}

.products::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

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

.product-card {
  background: var(--black-card);
  border: 1px solid var(--line);
  padding: 1.75rem;
  position: relative;
  transition: all 0.3s ease;
  cursor: pointer;
  overflow: hidden;
}

.product-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 2px;
  background: var(--olive);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.product-card:hover {
  transform: translateY(-6px);
  border-color: var(--olive-light);
  background: #221f17;
}

.product-card:hover::before {
  transform: scaleX(1);
  background: var(--gold);
}

.product-image {
  aspect-ratio: 1;
  background: #ffffff;
  border: 1px solid var(--line);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-tag {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background: var(--gold);
  color: var(--black);
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.3rem 0.7rem;
  z-index: 2;
}

.product-name {
  font-family: 'Anton', sans-serif;
  font-size: 1.6rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 0.4rem;
  color: var(--bone-bright);
}

.product-style {
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--olive-light);
  margin-bottom: 1rem;
}

.product-colors {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.color-swatch {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
}

.product-price {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--line);
  padding-top: 1rem;
  margin-top: 1rem;
}

.price {
  font-family: 'Anton', sans-serif;
  font-size: 1.5rem;
  color: var(--gold);
}

.product-link {
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bone);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: gap 0.2s, color 0.2s;
}

.product-link:hover {
  gap: 0.7rem;
  color: var(--gold-glow);
}

/* FEATURES */
.features {
  background: var(--olive-deep);
  color: var(--bone);
  padding: 4rem 2.5rem;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: 1300px;
  margin: 0 auto;
}

.feature {
  text-align: center;
  padding: 1rem;
}

.feature-icon {
  width: 44px;
  height: 44px;
  margin: 0 auto 1rem;
  color: var(--gold-glow);
}

.feature-title {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  color: var(--bone-bright);
}

.feature-desc {
  font-size: 0.9rem;
  color: var(--bone-soft);
  line-height: 1.5;
}

/* CTA */
.cta {
  background: var(--black-soft);
  color: var(--bone);
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--line);
}

.cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(160, 136, 56, 0.15), transparent 60%);
  pointer-events: none;
}

.cta-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.cta .section-tag { justify-content: center; }
.cta .section-tag::before { background: var(--gold); }

.cta-form {
  display: flex;
  gap: 0.5rem;
  max-width: 500px;
  margin: 2rem auto 0;
  background: var(--black);
  padding: 0.4rem;
  border: 1px solid var(--line-strong);
}

.cta-input {
  flex: 1;
  padding: 0.9rem 1rem;
  border: none;
  background: transparent;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  color: var(--bone-bright);
  outline: none;
}

.cta-input::placeholder { color: rgba(232, 228, 210, 0.4); }

.cta-button {
  background: var(--gold);
  color: var(--black);
  border: none;
  padding: 0.9rem 1.8rem;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  letter-spacing: 0.18em;
  font-size: 0.9rem;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
}

.cta-button:hover { background: var(--gold-glow); }

/* FOOTER */
.footer {
  background: var(--black);
  color: var(--bone-soft);
  padding: 5rem 2.5rem 2rem;
  border-top: 1px solid var(--line);
}

.footer-grid {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand img {
  max-width: 200px;
  height: auto;
  margin-bottom: 1.5rem;
  display: block;
}

.footer-brand p {
  font-size: 0.95rem;
  max-width: 320px;
  line-height: 1.6;
  color: var(--bone-soft);
}

.footer-col h4 {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.6rem; }

.footer-col a {
  color: var(--bone-soft);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.2s;
}

.footer-col a:hover { color: var(--gold-glow); }

.footer-bottom {
  max-width: 1300px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: var(--bone-soft);
}

.social { display: flex; gap: 0.75rem; }

.social a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  color: var(--bone);
  text-decoration: none;
  transition: all 0.2s;
}

.social a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--black);
}

/* PAGE HEADER */
.page-header {
  padding: 11rem 2.5rem 5rem;
  background: var(--black);
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 30%, rgba(160, 136, 56, 0.15), transparent 60%);
}

.page-header-content {
  max-width: 1300px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.page-title {
  font-family: 'Anton', sans-serif;
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 0.95;
  text-transform: uppercase;
  margin-bottom: 1rem;
  color: var(--bone-bright);
}

.page-title .accent { color: var(--olive-light); }
.page-title .accent-gold { color: var(--gold-glow); font-style: italic; }

.page-subtitle {
  font-size: 1.15rem;
  max-width: 600px;
  color: var(--bone-soft);
}

.breadcrumb {
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  color: var(--gold);
}

.breadcrumb a {
  color: var(--gold);
  text-decoration: none;
  opacity: 0.75;
}

.breadcrumb a:hover { opacity: 1; }

/* ABOUT */
.about-content {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 5rem;
  margin-bottom: 5rem;
}

.about-content h2 {
  font-family: 'Anton', sans-serif;
  font-size: 2.5rem;
  text-transform: uppercase;
  margin-bottom: 1rem;
  line-height: 1;
  color: var(--bone-bright);
}

.about-content p {
  margin-bottom: 1.25rem;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--bone-soft);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.value-card {
  padding: 2rem;
  background: var(--black-card);
  border: 1px solid var(--line);
  border-left: 3px solid var(--gold);
}

.value-num {
  font-family: 'Anton', sans-serif;
  font-size: 3rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.value-title {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 1.15rem;
  letter-spacing: 0.18em;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  color: var(--bone-bright);
}

.value-card p {
  color: var(--bone-soft);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* PRODUCTS PAGE */
.products-page {
  background: var(--black);
  padding: 5rem 2.5rem;
}

.products-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1300px;
  margin: 0 auto;
}

/* CONTACT */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
}

.contact-info h3 {
  font-family: 'Anton', sans-serif;
  font-size: 1.8rem;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  color: var(--bone-bright);
}

.contact-info p { color: var(--bone-soft); }

.contact-method {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--line);
}

.contact-method:last-child { border: none; }

.contact-method-icon {
  width: 48px;
  height: 48px;
  background: var(--olive);
  color: var(--bone-bright);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid var(--olive-light);
}

.contact-method h4 {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: 0.18em;
  margin-bottom: 0.4rem;
  text-transform: uppercase;
  color: var(--bone-bright);
}

.contact-method p,
.contact-method a {
  color: var(--bone-soft);
  text-decoration: none;
  font-size: 0.95rem;
}

.contact-method a:hover { color: var(--gold-glow); }

.contact-form {
  background: var(--black-card);
  padding: 2.5rem;
  border: 1px solid var(--line);
  border-left: 3px solid var(--gold);
}

.form-group { margin-bottom: 1.5rem; }

.form-group label {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  color: var(--gold);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid var(--line-strong);
  background: var(--black);
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  color: var(--bone-bright);
  outline: none;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--gold); }

.form-group textarea {
  min-height: 130px;
  resize: vertical;
}

.form-group select option { background: var(--black); color: var(--bone); }

/* ANIMATIONS */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* RESPONSIVE */
@media (max-width: 968px) {
  .nav { padding: 0.75rem 1.25rem; }
  .nav-logo { height: 44px; }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--black);
    flex-direction: column;
    padding: 1.5rem;
    gap: 1rem;
    border-bottom: 1px solid var(--line);
  }

  .nav-links.open { display: flex; }
  .nav-toggle { display: block; }
  .nav-cta { display: none; }

  .hero { padding: 7rem 1.25rem 3rem; }
  .hero-content { grid-template-columns: 1fr; gap: 2rem; }
  .hero-visual { height: 320px; order: -1; }

  .hero-stats {
    flex-direction: column;
    gap: 1rem;
    position: static;
    margin-top: 3rem;
  }

  .section { padding: 4rem 1.25rem; }

  .story-grid,
  .about-content,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .product-grid,
  .products-page-grid,
  .values-grid {
    grid-template-columns: 1fr;
  }

  .features-grid { grid-template-columns: repeat(2, 1fr); }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }

  .cta-form { flex-direction: column; }
  .page-header { padding: 8rem 1.25rem 3rem; }
}

@media (max-width: 540px) {
  .features-grid,
  .footer-grid { grid-template-columns: 1fr; }
  .hero-buttons { flex-direction: column; }
  .btn { justify-content: center; }
}
