/* ============================================================
   CIX CENTRO DE IMPORT MEXICO
   Stylesheet — Diseño fresco, limpio y accesible
   ============================================================ */

/* === GOOGLE FONTS === */
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700;800;900&family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300&display=swap');

/* === CSS VARIABLES === */
:root {
  --dark:         #1e293b;
  --dark-2:       #334155;
  --dark-3:       #475569;
  --gray:         #64748b;
  --gray-mid:     #94a3b8;
  --gray-light:   #cbd5e1;
  --border:       #e2e8f0;
  --border-light: #f1f5f9;
  --white:        #ffffff;
  --off-white:    #f8fafc;
  --light:        #f1f5f9;

  --accent:       #f97316;
  --accent-hover: #ea580c;
  --accent-light: #ffedd5;
  --accent-dark:  #c2410c;
  --accent-bg:    #fff7ed;

  --font-heading: 'Nunito', sans-serif;
  --font-sub:     'Poppins', sans-serif;
  --font-body:    'Poppins', sans-serif;

  --section-py:   90px;
  --container:    1280px;

  --ease:         cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out:     cubic-bezier(0.22, 1, 0.36, 1);
  --spring:       cubic-bezier(0.34, 1.56, 0.64, 1);
  --tr:           all 0.35s var(--ease);
  --tr-slow:      all 0.55s var(--ease);

  --shadow-sm:    0 1px 3px rgba(0,0,0,0.07), 0 1px 2px rgba(0,0,0,0.05);
  --shadow-md:    0 4px 12px rgba(0,0,0,0.08), 0 2px 4px rgba(0,0,0,0.04);
  --shadow-lg:    0 10px 30px rgba(0,0,0,0.1), 0 4px 8px rgba(0,0,0,0.04);
  --shadow-accent: 0 4px 14px rgba(249,115,22,0.35);

  --r-sm:  6px;
  --r-md:  12px;
  --r-lg:  18px;
  --r-xl:  100px;
}

/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--dark);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  opacity: 0;
  transition: opacity 0.4s ease;
}
body.page-loaded { opacity: 1; }

img { display: block; max-width: 100%; }
a   { text-decoration: none; color: inherit; }
ul  { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* === CONTAINER === */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 40px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: var(--tr);
  box-shadow: var(--shadow-sm);
}

.navbar.scrolled {
  height: 64px;
  background: var(--white);
  box-shadow: var(--shadow-md);
}

.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  gap: 1px;
}

.nav-logo .brand-main {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.25rem;
  letter-spacing: 0.04em;
  color: var(--dark);
}

.nav-logo .brand-main span { color: var(--accent); }

.nav-logo .brand-sub {
  font-family: var(--font-sub);
  font-weight: 400;
  font-size: 0.54rem;
  letter-spacing: 0.16em;
  color: var(--gray-mid);
  text-transform: uppercase;
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-family: var(--font-sub);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gray);
  position: relative;
  transition: var(--tr);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--accent);
  border-radius: 2px;
  transition: width 0.3s var(--ease);
}

.nav-links a:hover,
.nav-links a.active { color: var(--dark); }

.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

/* Nav CTA */
.nav-cta {
  font-family: var(--font-sub);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--white) !important;
  background: var(--accent);
  padding: 10px 22px;
  border-radius: var(--r-xl);
  transition: var(--tr);
}

.nav-cta::after { display: none !important; }

.nav-cta:hover {
  background: var(--accent-hover);
  box-shadow: var(--shadow-accent);
  transform: translateY(-1px);
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}

.nav-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: var(--dark);
  transition: var(--tr);
  border-radius: 2px;
}

.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 72px; left: 0; right: 0;
  background: var(--white);
  padding: 24px 40px 32px;
  z-index: 999;
  transform: translateY(-8px);
  opacity: 0;
  pointer-events: none;
  transition: var(--tr);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}

.mobile-nav.open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.mobile-nav a {
  display: block;
  font-family: var(--font-sub);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--dark);
  padding: 13px 0;
  border-bottom: 1px solid var(--border);
  transition: var(--tr);
}

.mobile-nav a:hover { color: var(--accent); padding-left: 6px; }
.mobile-nav a:last-child { border-bottom: none; }

/* ============================================================
   PAGE HERO (páginas interiores)
   ============================================================ */
.page-hero {
  padding: 130px 0 64px;
  background: var(--off-white);
  position: relative;
  overflow: hidden;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.page-hero-label {
  display: inline-block;
  font-family: var(--font-sub);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
  background: var(--accent-light);
  padding: 4px 14px;
  border-radius: var(--r-xl);
}

.page-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--dark);
  line-height: 1.2;
  position: relative;
  z-index: 1;
  margin-bottom: 14px;
}

.page-hero p {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--gray);
  max-width: 520px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  margin-top: 24px;
  position: relative;
  z-index: 1;
}

.breadcrumb a,
.breadcrumb span {
  font-family: var(--font-sub);
  font-size: 0.72rem;
  color: var(--gray-mid);
  transition: var(--tr);
}

.breadcrumb a:hover { color: var(--accent); }
.breadcrumb .sep    { color: var(--gray-light); }
.breadcrumb .current { color: var(--accent); font-weight: 500; }

/* ============================================================
   SECTION TYPOGRAPHY & HELPERS
   ============================================================ */
.section-label {
  display: inline-block;
  font-family: var(--font-sub);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
  background: var(--accent-light);
  padding: 4px 13px;
  border-radius: var(--r-xl);
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: var(--dark);
  line-height: 1.25;
  margin-bottom: 16px;
}

.section-title.light { color: var(--white); }

.section-subtitle {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--gray);
  max-width: 560px;
  line-height: 1.75;
}

.section-subtitle.light { color: rgba(255,255,255,0.78); }

.text-center { text-align: center; }
.text-center .section-subtitle { margin: 0 auto; }

.gold-line {
  display: block;
  width: 36px; height: 3px;
  background: var(--accent);
  border-radius: 3px;
  margin: 18px 0;
}
.gold-line.center { margin: 18px auto; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sub);
  font-size: 0.88rem;
  font-weight: 600;
  padding: 13px 28px;
  border-radius: var(--r-xl);
  transition: var(--tr);
  position: relative;
  overflow: hidden;
}
/* Shine sweep on hover */
.btn::before {
  content: '';
  position: absolute;
  top: 0; left: -80%;
  width: 55%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.22), transparent);
  transform: skewX(-15deg);
  transition: left 0.55s var(--ease);
  pointer-events: none;
}
.btn:hover::before { left: 140%; }

.btn-gold {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 2px 8px rgba(249,115,22,0.25);
}
.btn-gold:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-accent);
}

.btn-outline-gold {
  background: transparent;
  color: var(--accent);
  border: 2px solid var(--accent);
}
.btn-outline-gold:hover {
  background: var(--accent);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-dark {
  background: var(--dark);
  color: var(--white);
}
.btn-dark:hover {
  background: var(--dark-2);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-light {
  background: var(--white);
  color: var(--dark);
  border: 2px solid var(--border);
}
.btn-light:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}

.btn svg { width: 16px; height: 16px; flex-shrink: 0; }

/* ============================================================
   IMAGE PLACEHOLDER
   ============================================================ */
.img-placeholder {
  width: 100%; height: 100%;
  background: var(--light);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.img-placeholder::after {
  content: attr(data-label);
  font-family: var(--font-sub);
  font-size: 0.64rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-mid);
  text-align: center;
  padding: 20px;
}

.img-placeholder-light {
  background: var(--off-white);
}

/* ============================================================
   HERO — HOME
   ============================================================ */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  background: var(--white);
  overflow: hidden;
}

/* Ocultar elementos del hero anterior que ya no se usan */
.hero-bg   { display: none; }
.hero-grid { display: none; }
.hero-scroll { display: none; }

.hero-content {
  padding: 120px 64px 80px 80px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-sub);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-light);
  padding: 6px 16px;
  border-radius: var(--r-xl);
  margin-bottom: 28px;
}

/* Reutilizar hero-eyebrow como hero-tag */
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-sub);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-light);
  padding: 6px 16px;
  border-radius: var(--r-xl);
  margin-bottom: 28px;
}

.hero-eyebrow::before,
.hero-eyebrow::after { display: none; }

.hero-eyebrow span {
  font-family: var(--font-sub);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 900;
  color: var(--dark);
  line-height: 1.15;
  margin-bottom: 22px;
  max-width: 520px;
}

.hero h1 em {
  font-style: normal;
  color: var(--accent);
}

.hero h1 span {
  color: var(--accent);
}

.hero-desc {
  font-size: 1rem;
  color: var(--gray);
  max-width: 440px;
  line-height: 1.8;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}

/* Stats dentro del hero */
.hero-stats {
  display: flex;
  gap: 36px;
  position: static;
  background: transparent;
  backdrop-filter: none;
  border: none;
}

.hero-stat {
  padding: 0;
  border: none;
  text-align: left;
}

.hero-stat-num {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--dark);
  line-height: 1;
}

.hero-stat-label {
  font-family: var(--font-sub);
  font-size: 0.7rem;
  font-weight: 400;
  color: var(--gray-mid);
  margin-top: 3px;
  text-transform: none;
  letter-spacing: 0;
}

/* Imagen lado derecho del hero */
.hero-img {
  height: 100vh;
  position: relative;
  overflow: hidden;
}

.hero-img .img-placeholder {
  height: 100%;
  background: var(--light);
}

/* ============================================================
   MARQUEE TICKER
   ============================================================ */
.marquee-section {
  background: var(--accent);
  padding: 12px 0;
  overflow: hidden;
}

.marquee-track {
  display: flex;
  gap: 0;
  animation: marquee 32s linear infinite;
  white-space: nowrap;
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  padding: 0 24px;
  font-family: var(--font-sub);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
  flex-shrink: 0;
}

.marquee-item .dot {
  width: 4px; height: 4px;
  background: rgba(255,255,255,0.5);
  border-radius: 50%;
  flex-shrink: 0;
}

@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================================
   CATEGORIES
   ============================================================ */
.categories {
  padding: var(--section-py) 0;
  background: var(--off-white);
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.cat-card {
  position: relative;
  aspect-ratio: 3/4;
  border-radius: var(--r-lg);
  overflow: hidden;
  cursor: pointer;
}

.cat-card .img-placeholder {
  position: absolute;
  inset: 0;
  transition: transform 0.5s var(--ease);
}

.cat-card:hover .img-placeholder { transform: scale(1.04); }

.cat-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(30,41,59,0.82) 0%,
    rgba(30,41,59,0.28) 50%,
    transparent 100%
  );
  z-index: 1;
  transition: var(--tr);
}

.cat-card:hover::after {
  background: linear-gradient(
    to top,
    rgba(30,41,59,0.9) 0%,
    rgba(30,41,59,0.4) 55%,
    rgba(30,41,59,0.08) 100%
  );
}

.cat-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 24px 20px;
  z-index: 2;
}

.cat-tag {
  display: inline-block;
  font-family: var(--font-sub);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  background: rgba(249,115,22,0.7);
  padding: 3px 10px;
  border-radius: var(--r-xl);
  margin-bottom: 8px;
}

.cat-content h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.2;
}

.cat-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-sub);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--white);
  opacity: 0;
  transform: translateY(6px);
  transition: var(--tr);
}

.cat-card:hover .cat-link {
  opacity: 1;
  transform: translateY(0);
}

.cat-link svg { width: 14px; height: 14px; }

.cat-card.wide {
  grid-column: span 2;
  aspect-ratio: auto;
  min-height: 260px;
}

/* Grid 2x2 con tarjetas apaisadas (para inicio) */
.categories-grid.grid-2col {
  grid-template-columns: repeat(2, 1fr);
}
.categories-grid.grid-2col .cat-card {
  aspect-ratio: 16/9;
}

/* Producto sin precio */
.product-footer.no-price {
  justify-content: flex-end;
}

/* ============================================================
   PRODUCTS
   ============================================================ */
.products-section {
  padding: var(--section-py) 0;
  background: var(--white);
}

.products-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.product-card {
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border);
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease), border-color 0.35s ease;
}

.product-card:hover {
  transform: translateY(-10px) scale(1.01);
  box-shadow: 0 24px 48px rgba(0,0,0,0.11), 0 8px 20px rgba(0,0,0,0.07);
  border-color: transparent;
}

.product-img {
  aspect-ratio: 1;
  overflow: hidden;
  position: relative;
  background: var(--off-white);
}

.product-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.6s var(--ease);
}
.product-card:hover .product-img img {
  transform: scale(1.07);
}

.product-img .img-placeholder {
  transition: transform 0.5s var(--ease);
}

.product-card:hover .product-img .img-placeholder { transform: scale(1.04); }

.product-badge {
  position: absolute;
  top: 12px; left: 12px;
  font-family: var(--font-sub);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: var(--r-xl);
  z-index: 1;
}

.badge-new    { background: var(--accent); color: var(--white); }
.badge-import { background: var(--dark); color: var(--white); }
.badge-sale   { background: #e63946; color: var(--white); }

.product-info { padding: 18px 18px 20px; }

.product-cat {
  font-family: var(--font-sub);
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 4px;
}

.product-name {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
  line-height: 1.3;
}

.product-desc {
  font-size: 0.78rem;
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: 14px;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.product-price {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--dark);
}

.product-price .currency {
  font-size: 0.72rem;
  color: var(--gray-mid);
  font-family: var(--font-sub);
  font-weight: 400;
}

.product-btn {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--tr);
}

.product-btn svg { width: 15px; height: 15px; color: var(--accent); }

.product-btn:hover { background: var(--accent); }
.product-btn:hover svg { color: var(--white); }

/* Filter tabs (página de productos) */
.filter-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}

.filter-tab {
  font-family: var(--font-sub);
  font-size: 0.78rem;
  font-weight: 500;
  padding: 9px 20px;
  border-radius: var(--r-xl);
  border: 1.5px solid var(--border);
  color: var(--gray);
  transition: var(--tr);
  cursor: pointer;
  background: var(--white);
}

.filter-tab:hover,
.filter-tab.active {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-light);
}

/* ============================================================
   ABOUT PREVIEW (HOME)
   ============================================================ */
.about-preview {
  padding: var(--section-py) 0;
  background: var(--white);
}

.about-preview .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.about-img-wrap { position: relative; }

.about-img-main {
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-img-float {
  position: absolute;
  bottom: -24px;
  right: -24px;
  width: 175px;
  aspect-ratio: 1;
  border-radius: var(--r-md);
  overflow: hidden;
  border: 5px solid var(--white);
  box-shadow: var(--shadow-md);
}

.about-badge {
  position: absolute;
  top: 28px;
  left: -16px;
  background: var(--accent);
  color: var(--white);
  padding: 14px 18px;
  border-radius: var(--r-md);
  text-align: center;
  box-shadow: var(--shadow-accent);
}

.about-badge-num {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 900;
  line-height: 1;
}

.about-badge-text {
  display: block;
  font-family: var(--font-sub);
  font-size: 0.56rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.4;
  margin-top: 4px;
  color: rgba(255,255,255,0.85);
}

.about-content .section-subtitle { margin-bottom: 28px; }

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 28px 0;
}

.about-feat {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  transition: var(--tr);
  background: var(--white);
}

.about-feat:hover {
  border-color: var(--accent);
  box-shadow: 0 4px 12px rgba(249,115,22,0.08);
}

.about-feat-icon {
  width: 34px; height: 34px;
  border-radius: var(--r-sm);
  background: var(--accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.about-feat-icon svg { width: 17px; height: 17px; color: var(--accent); }

.about-feat-text h4 {
  font-family: var(--font-sub);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 2px;
}

.about-feat-text p {
  font-size: 0.72rem;
  color: var(--gray);
  line-height: 1.5;
}

/* ============================================================
   STATS SECTION
   ============================================================ */
.stats-section {
  padding: 70px 0;
  background: var(--accent);
  position: relative;
  overflow: hidden;
}

.stats-section::before { display: none; }

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.18);
  position: relative;
  z-index: 1;
}

.stat-item {
  background: transparent;
  padding: 44px 36px;
  text-align: center;
  transition: var(--tr);
}

.stat-item:hover { background: rgba(255,255,255,0.08); }

.stat-num {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-num span { color: var(--white); }

.stat-label {
  font-family: var(--font-sub);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.78);
}

/* ============================================================
   IMPORT SECTION
   ============================================================ */
.import-section {
  padding: var(--section-py) 0;
  background: var(--off-white);
}

.import-section .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.import-content { order: 1; }
.import-visual  { order: 2; }

.import-steps {
  margin: 30px 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.import-step {
  display: flex;
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
  transition: var(--tr);
}

.import-step:last-child { border-bottom: none; }
.import-step:hover { padding-left: 4px; }

.step-num {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--accent-light);
  flex-shrink: 0;
  line-height: 1.35;
}

.step-text h4 {
  font-family: var(--font-sub);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 4px;
}

.step-text p {
  font-size: 0.8rem;
  color: var(--gray);
  line-height: 1.6;
}

.import-visual-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 14px;
  height: 480px;
}

.iv-1 { grid-row: span 2; border-radius: var(--r-lg); overflow: hidden; }
.iv-2 { border-radius: var(--r-lg); overflow: hidden; }
.iv-3 { border-radius: var(--r-lg); overflow: hidden; }

/* ============================================================
   BENEFITS
   ============================================================ */
.benefits {
  padding: var(--section-py) 0;
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.benefits::before { display: none; }

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 48px;
  position: relative;
  z-index: 1;
}

.benefit-card {
  padding: 30px 26px;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  background: var(--white);
  transition: var(--tr);
}

.benefit-card:hover {
  border-color: var(--accent);
  box-shadow: 0 4px 20px rgba(249,115,22,0.08);
  transform: translateY(-3px);
}

.benefit-icon {
  width: 48px; height: 48px;
  border-radius: var(--r-md);
  background: var(--accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.benefit-icon svg { width: 22px; height: 22px; color: var(--accent); }

.benefit-card h3 {
  font-family: var(--font-sub);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 10px;
}

.benefit-card p {
  font-size: 0.82rem;
  color: var(--gray);
  line-height: 1.75;
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-section {
  padding: 88px 0;
  background: var(--off-white);
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.cta-section::before { display: none; }

.cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
}

.cta-inner .section-title  { margin-bottom: 14px; }
.cta-inner .section-subtitle { margin: 0 auto 36px; }

.cta-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-section {
  padding: var(--section-py) 0;
  background: var(--white);
}

.gallery-filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.gallery-grid {
  columns: 4 280px;
  gap: 16px;
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 16px;
  border-radius: var(--r-md);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  border: 1px solid var(--border);
}

.gallery-item .img-placeholder {
  height: auto;
  min-height: 200px;
  transition: transform 0.5s var(--ease);
}

.gallery-item.tall   .img-placeholder { min-height: 340px; }
.gallery-item.short  .img-placeholder { min-height: 200px; }
.gallery-item.medium .img-placeholder { min-height: 260px; }

.gallery-item:hover .img-placeholder { transform: scale(1.03); }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s var(--ease);
  z-index: 1;
}

.gallery-item:hover .gallery-overlay { background: rgba(30,41,59,0.48); }

.gallery-icon {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(0.7);
  opacity: 0;
  transition: var(--tr);
}

.gallery-item:hover .gallery-icon {
  opacity: 1;
  transform: scale(1);
}

.gallery-icon svg { width: 18px; height: 18px; color: var(--accent); }

/* ============================================================
   NOSOTROS PAGE
   ============================================================ */
.mission-section {
  padding: var(--section-py) 0;
  background: var(--white);
}

.mvv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 48px;
}

.mvv-card {
  padding: 34px 28px;
  border-radius: var(--r-lg);
  position: relative;
  overflow: hidden;
  transition: var(--tr);
  border: 1px solid var(--border);
}

.mvv-card.mission  { background: var(--dark); border-color: var(--dark); }
.mvv-card.vision   { background: var(--off-white); }
.mvv-card.valores  { background: var(--accent-light); border-color: var(--accent); }

.mvv-num {
  font-family: var(--font-heading);
  font-size: 5rem;
  font-weight: 900;
  position: absolute;
  top: 12px; right: 20px;
  opacity: 0.06;
  line-height: 1;
}

.mvv-card.mission .mvv-num { color: var(--white); }
.mvv-card.vision  .mvv-num { color: var(--dark); }
.mvv-card.valores .mvv-num { color: var(--accent); }

.mvv-icon {
  width: 44px; height: 44px;
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.mvv-card.mission .mvv-icon { background: rgba(249,115,22,0.15); }
.mvv-card.vision  .mvv-icon { background: var(--border); }
.mvv-card.valores .mvv-icon { background: rgba(249,115,22,0.2); }

.mvv-icon svg { width: 22px; height: 22px; }
.mvv-card.mission .mvv-icon svg { color: var(--accent); }
.mvv-card.vision  .mvv-icon svg { color: var(--dark); }
.mvv-card.valores .mvv-icon svg { color: var(--accent-hover); }

.mvv-card h3 {
  font-family: var(--font-sub);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.mvv-card.mission h3 { color: var(--accent); }
.mvv-card.vision  h3 { color: var(--accent); }
.mvv-card.valores h3 { color: var(--accent-hover); }

.mvv-card p { font-size: 0.88rem; line-height: 1.8; }
.mvv-card.mission p { color: rgba(255,255,255,0.72); }
.mvv-card.vision  p { color: var(--gray); }
.mvv-card.valores p { color: var(--dark-2); }

/* Historia / timeline */
.history-section {
  padding: var(--section-py) 0;
  background: var(--off-white);
}

.timeline {
  position: relative;
  margin-top: 48px;
  padding-left: 36px;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  left: 0;
  width: 2px;
  background: var(--accent-light);
  border-radius: 2px;
}

.timeline-item {
  position: relative;
  margin-bottom: 40px;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -42px; top: 4px;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--accent);
  border: 2px solid var(--off-white);
  box-shadow: 0 0 0 2px var(--accent);
}

.timeline-year {
  font-family: var(--font-sub);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 4px;
}

.timeline-item h4 {
  font-family: var(--font-sub);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 6px;
}

.timeline-item p {
  font-size: 0.82rem;
  color: var(--gray);
  line-height: 1.7;
  max-width: 560px;
}

/* Valores */
.values-section {
  padding: var(--section-py) 0;
  background: var(--white);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.value-item {
  background: var(--off-white);
  border: 1px solid var(--border);
  padding: 32px 22px;
  border-radius: var(--r-lg);
  text-align: center;
  transition: var(--tr);
}

.value-item:hover {
  border-color: var(--accent);
  box-shadow: 0 4px 16px rgba(249,115,22,0.08);
}

.value-icon {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.value-icon svg { width: 22px; height: 22px; color: var(--accent); }

.value-item h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}

.value-item p {
  font-size: 0.78rem;
  color: var(--gray);
  line-height: 1.7;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-section {
  padding: var(--section-py) 0;
  background: var(--white);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 72px;
  align-items: start;
}

.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
}

.contact-card {
  display: flex;
  gap: 16px;
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  transition: var(--tr);
  background: var(--white);
}

.contact-card:hover {
  border-color: var(--accent);
  box-shadow: 0 4px 12px rgba(249,115,22,0.08);
}

.contact-card-icon {
  width: 42px; height: 42px;
  border-radius: var(--r-sm);
  background: var(--accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-card-icon svg { width: 18px; height: 18px; color: var(--accent); }

.contact-card-text h4 {
  font-family: var(--font-sub);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 3px;
}

.contact-card-text p,
.contact-card-text a {
  font-size: 0.84rem;
  color: var(--gray);
  line-height: 1.6;
  transition: var(--tr);
}

.contact-card-text a:hover { color: var(--accent); }

/* Contact form */
.contact-form-wrap {
  background: var(--off-white);
  padding: 44px 40px;
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
}

.contact-form-wrap h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 6px;
}

.form-sub {
  font-size: 0.84rem;
  color: var(--gray);
  margin-bottom: 28px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 14px;
}

.form-group label {
  font-family: var(--font-sub);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--dark);
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--dark);
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  padding: 11px 14px;
  transition: var(--tr);
  outline: none;
  width: 100%;
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--gray-light); }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(249,115,22,0.1);
}

.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select { appearance: none; cursor: pointer; }

.form-note {
  font-size: 0.72rem;
  color: var(--gray-light);
  margin-top: 14px;
  line-height: 1.5;
}

/* Map section */
.map-section {
  height: 400px;
  position: relative;
  background: var(--light);
  overflow: hidden;
}

.map-section iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.map-overlay {
  position: absolute;
  top: 24px; left: 24px;
  background: var(--white);
  padding: 18px 22px;
  border-radius: var(--r-md);
  box-shadow: var(--shadow-md);
  z-index: 1;
  max-width: 260px;
  border: 1px solid var(--border);
}

.map-overlay h4 {
  font-family: var(--font-sub);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 5px;
}

.map-overlay p {
  font-size: 0.78rem;
  color: var(--gray);
  line-height: 1.6;
}

/* ============================================================
   WHATSAPP FLOAT
   ============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 998;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

.whatsapp-btn {
  width: 54px; height: 54px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,0.35);
  transition: var(--tr);
  position: relative;
}

.whatsapp-btn:hover {
  transform: scale(1.08) translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,211,102,0.45);
}

.whatsapp-btn svg { width: 26px; height: 26px; color: var(--white); }

.whatsapp-btn::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(37,211,102,0.25);
  animation: waPulse 2s ease-in-out infinite;
}

@keyframes waPulse {
  0%   { transform: scale(0.9); opacity: 0.5; }
  50%  { transform: scale(1.12); opacity: 0; }
  100% { transform: scale(0.9); opacity: 0; }
}

.whatsapp-tooltip {
  background: var(--dark);
  color: var(--white);
  font-family: var(--font-sub);
  font-size: 0.72rem;
  font-weight: 500;
  padding: 7px 13px;
  border-radius: var(--r-md);
  white-space: nowrap;
  opacity: 0;
  transform: translateX(8px);
  transition: var(--tr);
  pointer-events: none;
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
  transform: translateX(0);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--dark);
  padding: 70px 0 0;
  border-top: 1px solid var(--border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 56px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand .brand-main {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.15rem;
  color: var(--white);
}

.footer-brand .brand-main span { color: var(--accent); }

.footer-brand .brand-sub {
  font-family: var(--font-sub);
  font-weight: 400;
  font-size: 0.52rem;
  letter-spacing: 0.16em;
  color: var(--gray-mid);
  text-transform: uppercase;
  display: block;
  margin-top: 2px;
  margin-bottom: 18px;
}

.footer-brand p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.75;
  max-width: 280px;
  margin-bottom: 24px;
}

.footer-socials { display: flex; gap: 10px; }

.social-btn {
  width: 36px; height: 36px;
  border-radius: var(--r-sm);
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--tr);
}

.social-btn svg { width: 16px; height: 16px; color: rgba(255,255,255,0.5); }

.social-btn:hover { border-color: var(--accent); background: rgba(249,115,22,0.15); }
.social-btn:hover svg { color: var(--accent); }

.footer-col h4 {
  font-family: var(--font-sub);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-col ul li { margin-bottom: 10px; }

.footer-col ul li a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  transition: var(--tr);
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-col ul li a::before {
  content: '';
  width: 0; height: 1px;
  background: var(--accent);
  transition: width 0.3s var(--ease);
  flex-shrink: 0;
}

.footer-col ul li a:hover { color: var(--white); padding-left: 4px; }
.footer-col ul li a:hover::before { width: 8px; }

.footer-bottom {
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-copy {
  font-size: 0.74rem;
  color: rgba(255,255,255,0.25);
}

.footer-copy span { color: var(--accent); }

.footer-legal { display: flex; gap: 22px; }

.footer-legal a {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.25);
  transition: var(--tr);
}

.footer-legal a:hover { color: var(--white); }

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */

/* Shared GPU hint */
.fade-up,
.fade-left,
.fade-right,
.fade-scale,
.fade-in { will-change: opacity, transform; }

.fade-up {
  opacity: 0;
  transform: translateY(44px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

.fade-left {
  opacity: 0;
  transform: translateX(-44px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}
.fade-left.visible { opacity: 1; transform: translateX(0); }

.fade-right {
  opacity: 0;
  transform: translateX(44px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}
.fade-right.visible { opacity: 1; transform: translateX(0); }

/* Scale + fade — para cards y bloques de features */
.fade-scale {
  opacity: 0;
  transform: scale(0.92) translateY(24px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}
.fade-scale.visible {
  opacity: 1;
  transform: scale(1) translateY(0);
}

/* Fade puro — para fondos y elementos sutiles */
.fade-in {
  opacity: 0;
  transition: opacity 0.9s ease;
}
.fade-in.visible { opacity: 1; }

/* Stagger delays */
.delay-1 { transition-delay: 0.08s; }
.delay-2 { transition-delay: 0.16s; }
.delay-3 { transition-delay: 0.26s; }
.delay-4 { transition-delay: 0.36s; }
.delay-5 { transition-delay: 0.46s; }
.delay-6 { transition-delay: 0.56s; }
.delay-7 { transition-delay: 0.66s; }
.delay-8 { transition-delay: 0.76s; }
.delay-9 { transition-delay: 0.86s; }

/* ============================================================
   SCROLL PROGRESS BAR
   ============================================================ */
#scroll-progress {
  position: fixed;
  top: 0; left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-dark), var(--accent) 55%, #fb923c);
  z-index: 10001;
  pointer-events: none;
  border-radius: 0 2px 2px 0;
  /* width updated via JS, no transition needed — JS sets it on every scroll */
}

/* ============================================================
   NAVBAR — entrada suave al cargar la página
   ============================================================ */
@keyframes navFadeDown {
  from { opacity: 0; transform: translateY(-14px); }
  to   { opacity: 1; transform: translateY(0); }
}
.navbar {
  animation: navFadeDown 0.65s var(--ease) 0.15s both;
}

/* ============================================================
   HERO — stagger de entrada (index)
   ============================================================ */
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

body.page-loaded .hero-eyebrow {
  animation: heroFadeUp 0.65s var(--ease) 0.30s both;
}
body.page-loaded .hero h1 {
  animation: heroFadeUp 0.75s var(--ease) 0.42s both;
}
body.page-loaded .hero-desc {
  animation: heroFadeUp 0.65s var(--ease) 0.54s both;
}
body.page-loaded .hero-actions {
  animation: heroFadeUp 0.65s var(--ease) 0.66s both;
}
body.page-loaded .hero-stats {
  animation: heroFadeUp 0.6s  var(--ease) 0.78s both;
}

/* Sub-pages — page-hero stagger */
body.page-loaded .page-hero-label {
  animation: heroFadeUp 0.6s var(--ease) 0.30s both;
}
body.page-loaded .page-hero h1 {
  animation: heroFadeUp 0.7s var(--ease) 0.42s both;
}
body.page-loaded .page-hero > .container > p {
  animation: heroFadeUp 0.6s var(--ease) 0.54s both;
}
body.page-loaded .breadcrumb {
  animation: heroFadeUp 0.55s var(--ease) 0.64s both;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1200px) {
  :root { --section-py: 72px; }

  .container { padding: 0 32px; }
  .navbar    { padding: 0 32px; }

  .hero-content { padding: 120px 48px 80px; }

  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .cat-card.wide   { grid-column: span 2; }

  .products-grid { grid-template-columns: repeat(3, 1fr); }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }

  .benefits-grid { grid-template-columns: repeat(2, 1fr); }

  .footer-grid { grid-template-columns: 1.6fr 1fr 1fr; gap: 36px; }
  .footer-col:last-child { display: none; }
}

@media (max-width: 992px) {
  .nav-links  { display: none; }
  .nav-toggle { display: flex; }
  .mobile-nav { display: block; }

  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-content { padding: 110px 40px 60px; }
  .hero-img { height: 55vw; }

  .about-preview .container { grid-template-columns: 1fr; gap: 44px; }
  .about-img-float { width: 130px; right: -10px; }
  .about-badge { left: -10px; }

  .import-section .container { grid-template-columns: 1fr; gap: 44px; }
  .import-visual  { order: -1; }
  .import-visual-wrap { height: 360px; }

  .mvv-grid { grid-template-columns: 1fr; max-width: 500px; margin-left: auto; margin-right: auto; }

  .values-grid { grid-template-columns: repeat(2, 1fr); }

  .contact-layout { grid-template-columns: 1fr; gap: 44px; }

  .products-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  :root { --section-py: 60px; }

  .container { padding: 0 20px; }
  .navbar    { padding: 0 20px; }
  .mobile-nav { padding: 20px 20px 28px; top: 72px; }

  .hero-content { padding: 100px 20px 52px; }
  .hero-stats   { gap: 24px; flex-wrap: wrap; }

  .about-features { grid-template-columns: 1fr; }

  .categories-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .cat-card.wide   { grid-column: span 2; min-height: 200px; }

  .products-grid { grid-template-columns: 1fr 1fr; gap: 14px; }

  .stats-grid { grid-template-columns: 1fr 1fr; }

  .benefits-grid { grid-template-columns: 1fr; }

  .gallery-grid { columns: 2 160px; gap: 12px; }
  .gallery-item { margin-bottom: 12px; }

  .form-row { grid-template-columns: 1fr; }

  .contact-form-wrap { padding: 28px 20px; }

  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-col:last-child { display: block; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }

  .import-visual-wrap { grid-template-columns: 1fr; height: auto; }
  .iv-1 { grid-row: auto; aspect-ratio: 16/9; }
  .iv-2 { aspect-ratio: 16/9; }
  .iv-3 { display: none; }
}

@media (max-width: 480px) {
  .categories-grid { grid-template-columns: 1fr; }
  .cat-card.wide   { grid-column: span 1; }

  .products-grid { grid-template-columns: 1fr; }

  .stats-grid { grid-template-columns: 1fr 1fr; }

  .values-grid { grid-template-columns: 1fr; }

  .gallery-grid { columns: 1; }
}
