/* ── RESET & BASE ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body { font-family: 'Inter', Arial, sans-serif; color: #111; background: #fff; line-height: 1.6; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }

:root {
  --black: #111;
  --white: #fff;
  --grey: #f4f4f4;
  --grey2: #e8e8e8;
  --muted: #666;
  --nav-h: 68px;
  --max-w: 1200px;
  --pad: clamp(1rem, 5vw, 4rem);
}

/* ── NAV ──────────────────────────────────────────────────────────── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--nav-h);
  background: #fff;
  border-bottom: 1px solid #e0e0e0;
  display: flex; align-items: center;
}
.header-inner {
  max-width: var(--max-w); width: 100%; margin: 0 auto;
  padding: 0 var(--pad);
  display: flex; align-items: center; justify-content: space-between; gap: 2rem;
}
.site-logo img { height: 32px; width: auto; }
.main-nav ul { display: flex; gap: 2rem; align-items: center; }
.main-nav a {
  font-size: 0.82rem; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; color: #111;
  padding-bottom: 2px; border-bottom: 2px solid transparent;
  transition: border-color 0.15s;
}
.main-nav a:hover { border-bottom-color: #111; }
.nav-cta {
  background: #111; color: #fff !important;
  padding: 0.55rem 1.35rem !important;
  border: none !important; border-bottom: none !important;
  font-size: 0.78rem !important; font-weight: 700 !important;
  letter-spacing: 0.1em !important;
  line-height: 1.4 !important;
  display: inline-flex; align-items: center;
}
.nav-cta:hover { background: #333; }
.nav-burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; padding: 4px; }
.nav-burger span { display: block; width: 24px; height: 2px; background: #111; transition: all 0.2s; }

/* ── HERO FULL BLEED ─────────────────────────────────────────────── */
.hero-full {
  position: relative; height: 100svh; min-height: 600px;
  overflow: hidden; display: flex; flex-direction: column; justify-content: flex-end;
}
.hero-full-bg { position: absolute; inset: 0; }
.hero-full-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 40%; }
.hero-full-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.35) 50%, rgba(0,0,0,0.15) 100%);
}
.hero-full-content {
  position: relative; z-index: 2;
  padding: var(--nav-h) var(--pad) 4rem;
  display: flex; flex-direction: column; justify-content: flex-end; flex: 1;
}
.hero-full-inner {
  max-width: 700px;
  background: rgba(0,0,0,0.45);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: 3rem 3.5rem;
}
.hero-full-eyebrow {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.2em;
  text-transform: uppercase; color: rgba(255,255,255,0.6);
  margin-bottom: 1.25rem;
  display: flex; align-items: center; gap: 0.75rem;
}
.hero-full-eyebrow::before { content: ''; display: block; width: 32px; height: 1px; background: rgba(255,255,255,0.4); }
.hero-full-h1 {
  font-size: clamp(3rem, 7vw, 6.5rem); font-weight: 900;
  line-height: 0.95; letter-spacing: -0.03em; color: #fff;
  margin-bottom: 1.5rem; text-wrap: balance;
}
.hero-full-desc {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem); color: rgba(255,255,255,0.7);
  line-height: 1.7; max-width: 520px; margin-bottom: 2.5rem;
}
.hero-full-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn-primary-light {
  background: #fff; color: #111;
  padding: 0.9rem 2rem; font-size: 0.8rem;
  font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  border: 2px solid #fff; transition: all 0.15s; display: inline-block;
}
.btn-primary-light:hover { background: transparent; color: #fff; }
.btn-ghost-light {
  background: transparent; color: #fff;
  padding: 0.9rem 2rem; font-size: 0.8rem;
  font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  border: 2px solid rgba(255,255,255,0.5); transition: all 0.15s; display: inline-block;
}
.btn-ghost-light:hover { border-color: #fff; background: rgba(255,255,255,0.1); }
.hero-full-badge {
  position: absolute; bottom: 2.5rem; right: var(--pad); z-index: 3;
  background: rgba(255,255,255,0.12); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 0.6rem 1.25rem;
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: rgba(255,255,255,0.85);
}

/* ── BUTTONS (dark) ───────────────────────────────────────────────── */
.btn-primary {
  background: #111; color: #fff;
  padding: 0.875rem 2rem; font-size: 0.8rem;
  font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  border: 2px solid #111; transition: all 0.15s; display: inline-block;
}
.btn-primary:hover { background: #333; border-color: #333; }
.btn-outline {
  background: transparent; color: #111;
  padding: 0.875rem 2rem; font-size: 0.8rem;
  font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  border: 2px solid #111; transition: all 0.15s; display: inline-block;
}
.btn-outline:hover { background: #111; color: #fff; }

/* ── HERO EYEBROW (dark) ─────────────────────────────────────────── */
.hero-eyebrow {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--muted);
  margin-bottom: 1.5rem;
  display: flex; align-items: center; gap: 0.75rem;
}
.hero-eyebrow::before { content: ''; display: block; width: 32px; height: 1px; background: #999; }

/* ── MIDPAGE BANNER ──────────────────────────────────────────────── */
.midpage-banner { position: relative; height: clamp(320px, 40vw, 560px); overflow: hidden; }
.midpage-banner img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; }
.midpage-banner-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.25);
  display: flex; align-items: center;
}
.midpage-banner-text {
  margin: 0 var(--pad);
  background: rgba(0,0,0,0.72);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: 2.5rem 3rem;
  max-width: 560px;
}

/* ── STRIP ────────────────────────────────────────────────────────── */
.strip {
  background: #111; color: #fff;
  padding: 1.25rem var(--pad);
  display: flex; align-items: center; justify-content: center;
  gap: 4rem; flex-wrap: wrap;
}
.strip-item {
  display: flex; align-items: center; gap: 0.75rem;
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.06em;
  text-transform: uppercase;
}
.strip-item svg { width: 20px; height: 20px; flex-shrink: 0; }

/* ── SECTION HEADER ──────────────────────────────────────────────── */
.section-header {
  max-width: var(--max-w); margin: 0 auto;
  padding: 0 var(--pad);
  margin-bottom: 3rem;
}
.section-eyebrow {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--muted);
  margin-bottom: 0.75rem;
  display: flex; align-items: center; gap: 0.75rem;
}
.section-eyebrow::before { content: ''; display: block; width: 24px; height: 1px; background: #999; }
.section-h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800; letter-spacing: -0.02em; line-height: 1.1;
}
.section-desc { font-size: 1rem; color: var(--muted); margin-top: 0.75rem; max-width: 560px; line-height: 1.7; }

/* ── CATEGORÍAS GRID ─────────────────────────────────────────────── */
.cats-section { padding: clamp(4rem, 8vw, 7rem) 0; background: #fff; }
.cats-grid {
  max-width: var(--max-w); margin: 0 auto;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: #e0e0e0;
  border: 1px solid #e0e0e0;
}
.cat-card {
  background: #fff; position: relative; overflow: hidden;
  aspect-ratio: 4/3; display: flex; flex-direction: column;
  justify-content: flex-end;
}
.cat-card-img { position: absolute; inset: 0; }
.cat-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; filter: brightness(0.6); }
.cat-card:hover .cat-card-img img { transform: scale(1.05); filter: brightness(0.5); }
.cat-card-body {
  position: relative; z-index: 2;
  padding: 1.5rem;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 100%);
}
.cat-card-title {
  font-size: 1.2rem; font-weight: 800; color: #fff;
  letter-spacing: -0.01em; margin-bottom: 0.25rem;
}
.cat-card-count { font-size: 0.72rem; color: rgba(255,255,255,0.65); letter-spacing: 0.08em; text-transform: uppercase; }
.cat-card-arrow {
  position: absolute; top: 1.25rem; right: 1.25rem; z-index: 2;
  width: 36px; height: 36px; background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.cat-card:hover .cat-card-arrow { background: rgba(255,255,255,0.25); }
.cat-card-arrow svg { width: 16px; height: 16px; color: #fff; }

/* ── PRODUCTOS DESTACADOS ────────────────────────────────────────── */
.products-section { padding: clamp(4rem, 8vw, 7rem) 0; background: var(--grey); }
.products-grid {
  max-width: var(--max-w); margin: 0 auto;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: #ddd;
}
.prod-card {
  background: #fff; display: flex; flex-direction: column;
  text-decoration: none; color: inherit;
  transition: box-shadow 0.2s;
}
.prod-card:hover { z-index: 1; box-shadow: 0 0 0 2px #111; }
.prod-card-img {
  aspect-ratio: 4/3; overflow: hidden; background: #111;
}
.prod-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; filter: brightness(0.9); }
.prod-card:hover .prod-card-img img { transform: scale(1.04); }
.prod-card-body { padding: 1.25rem 1rem; flex: 1; display: flex; flex-direction: column; border-top: 2px solid #111; }
.prod-card-cat {
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--muted); margin-bottom: 0.4rem;
}
.prod-card-name { font-size: 0.92rem; font-weight: 800; color: #111; margin-bottom: 0.3rem; }
.prod-card-tagline { font-size: 0.78rem; color: var(--muted); line-height: 1.4; flex: 1; }
.prod-card-link {
  margin-top: 0.75rem; font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase; color: #111;
  display: flex; align-items: center; gap: 0.4rem;
}
.prod-card-link svg { width: 14px; height: 14px; transition: transform 0.2s; }
.prod-card:hover .prod-card-link svg { transform: translateX(4px); }

/* ── POR QUÉ CORTIZO ─────────────────────────────────────────────── */
.why-section { padding: clamp(4rem, 8vw, 7rem) 0; background: #fff; }
.why-inner {
  max-width: var(--max-w); margin: 0 auto;
  padding: 0 var(--pad);
  display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center;
}
.why-img { position: relative; }
.why-img img { width: 100%; aspect-ratio: 3/4; object-fit: cover; filter: brightness(0.92); }
.why-img-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: #111; color: #fff;
  padding: 1rem 1.25rem;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
}
.why-content { display: flex; flex-direction: column; gap: 2.5rem; }
.why-item { display: flex; gap: 1.5rem; align-items: flex-start; }
.why-num {
  font-size: 2.5rem; font-weight: 900; color: #e8e8e8;
  line-height: 1; flex-shrink: 0; width: 48px; letter-spacing: -0.04em;
}
.why-text h3 { font-size: 1rem; font-weight: 800; color: #111; margin-bottom: 0.4rem; }
.why-text p { font-size: 0.88rem; color: var(--muted); line-height: 1.65; }

/* ── SPECS STRIP ─────────────────────────────────────────────────── */
.specs-strip {
  background: var(--grey); border-top: 1px solid #e0e0e0; border-bottom: 1px solid #e0e0e0;
  padding: 3rem var(--pad);
}
.specs-strip-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem;
}
.spec-item { text-align: center; }
.spec-num {
  font-size: 2.8rem; font-weight: 900; letter-spacing: -0.04em;
  color: #111; line-height: 1;
}
.spec-label { font-size: 0.78rem; color: var(--muted); margin-top: 0.4rem; line-height: 1.4; }

/* ── CONTACT CTA ─────────────────────────────────────────────────── */
.cta-section {
  padding: clamp(4rem, 8vw, 7rem) var(--pad);
  background: #111; color: #fff; text-align: center;
}
.cta-inner { max-width: 640px; margin: 0 auto; }
.cta-h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; letter-spacing: -0.02em; line-height: 1.1; margin-bottom: 1rem; }
.cta-desc { font-size: 1rem; color: rgba(255,255,255,0.65); line-height: 1.7; margin-bottom: 2rem; }
.btn-white {
  background: #fff; color: #111;
  padding: 0.9rem 2.5rem; font-size: 0.8rem;
  font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  border: 2px solid #fff; transition: all 0.15s; display: inline-block;
}
.btn-white:hover { background: transparent; color: #fff; }

/* ── SISTEMAS PAGE ───────────────────────────────────────────────── */
.page-hero {
  padding: calc(var(--nav-h) + 3rem) var(--pad) 3rem;
  background: #fff; border-bottom: 1px solid #e0e0e0;
}
.page-hero-inner { max-width: var(--max-w); margin: 0 auto; }
.page-breadcrumb {
  font-size: 0.72rem; color: var(--muted); margin-bottom: 1.5rem;
  display: flex; gap: 0.5rem; align-items: center;
}
.page-breadcrumb a:hover { color: #111; }
.page-h1 { font-size: clamp(2.2rem, 4vw, 3.5rem); font-weight: 800; letter-spacing: -0.02em; line-height: 1.05; }
.page-desc { font-size: 1rem; color: var(--muted); margin-top: 0.75rem; max-width: 560px; line-height: 1.7; }

.filter-bar {
  padding: 1.5rem var(--pad); background: #fff;
  border-bottom: 1px solid #e0e0e0;
  position: sticky; top: var(--nav-h); z-index: 50;
}
.filter-bar-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: flex; gap: 0.5rem; flex-wrap: wrap; align-items: center;
}
.filter-btn {
  background: #fff; border: 1px solid #ccc; color: #555;
  padding: 0.4rem 1.1rem; font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  transition: all 0.15s;
}
.filter-btn:hover { border-color: #111; color: #111; }
.filter-btn.active { background: #111; border-color: #111; color: #fff; }
.filter-count { font-size: 0.72rem; color: var(--muted); margin-left: auto; }

.catalog-grid {
  max-width: var(--max-w); margin: 0 auto;
  padding: 3rem var(--pad);
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
  background: #ddd;
}
.catalog-card {
  background: #fff; text-decoration: none; color: inherit;
  display: flex; flex-direction: column;
}
.catalog-card:hover { z-index: 1; outline: 2px solid #111; }
.catalog-card-img { aspect-ratio: 16/9; overflow: hidden; background: #111; }
.catalog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; filter: brightness(0.88); }
.catalog-card:hover .catalog-card-img img { transform: scale(1.04); filter: brightness(0.75); }
.catalog-card-body { padding: 1.25rem 1.25rem 1.5rem; flex: 1; display: flex; flex-direction: column; border-top: 2px solid #111; }
.catalog-card-cat { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin-bottom: 0.4rem; }
.catalog-card-name { font-size: 1rem; font-weight: 800; color: #111; margin-bottom: 0.3rem; }
.catalog-card-tagline { font-size: 0.82rem; color: var(--muted); line-height: 1.5; flex: 1; }
.catalog-card-cta { margin-top: 1rem; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: #111; display: flex; align-items: center; gap: 0.4rem; }

/* ── PRODUCTO PAGE ───────────────────────────────────────────────── */
.prod-page-hero {
  padding-top: var(--nav-h);
  background: #111; color: #fff;
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 520px;
}
.prod-page-hero-content {
  display: flex; flex-direction: column; justify-content: center;
  padding: 4rem clamp(1.5rem, 4vw, 4rem);
}
.prod-page-cat {
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; color: rgba(255,255,255,0.5);
  margin-bottom: 1rem;
  display: flex; align-items: center; gap: 0.5rem;
}
.prod-page-h1 {
  font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 900;
  letter-spacing: -0.02em; line-height: 1.05;
  margin-bottom: 1rem;
}
.prod-page-tagline { font-size: 1rem; color: rgba(255,255,255,0.65); line-height: 1.65; max-width: 400px; }
.prod-page-hero-img { overflow: hidden; position: relative; }
.prod-page-hero-img img { width: 100%; height: 100%; object-fit: contain; padding: 2rem; background: #111; }

.prod-desc-section { padding: 4rem var(--pad); background: #fff; border-bottom: 1px solid #e8e8e8; }
.prod-desc-inner { max-width: var(--max-w); margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.prod-desc-text { font-size: 1rem; color: #444; line-height: 1.85; }
.prod-chars-title { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin-bottom: 1.25rem; padding-bottom: 0.75rem; border-bottom: 1px solid #e0e0e0; }
.prod-chars-table { width: 100%; border-collapse: collapse; }
.prod-chars-table tr { border-bottom: 1px solid #e8e8e8; }
.prod-chars-table td { padding: 0.75rem 0; font-size: 0.88rem; }
.prod-chars-table td:first-child { color: var(--muted); width: 55%; }
.prod-chars-table td:last-child { font-weight: 700; color: #111; text-align: right; }

.prod-specs-section { padding: 4rem var(--pad); background: var(--grey); }
.prod-specs-inner { max-width: var(--max-w); margin: 0 auto; }
.prod-specs-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1px; background: #ddd; margin-top: 2rem; }
.prod-spec-item { background: #fff; padding: 1.5rem 1.25rem; text-align: center; }
.prod-spec-icon { font-size: 1.5rem; margin-bottom: 0.5rem; }
.prod-spec-val { font-size: 1rem; font-weight: 800; color: #111; line-height: 1.2; margin-bottom: 0.3rem; }
.prod-spec-key { font-size: 0.68rem; color: var(--muted); letter-spacing: 0.06em; text-transform: uppercase; }

.prod-gallery-section { padding: 4rem var(--pad); background: #fff; }
.prod-gallery-inner { max-width: var(--max-w); margin: 0 auto; }
.prod-gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: #e0e0e0; margin-top: 2rem; }
.prod-gallery-grid img { width: 100%; aspect-ratio: 4/3; object-fit: cover; background: #111; filter: brightness(0.92); }

.prod-related-section { padding: 4rem var(--pad); background: var(--grey); border-top: 1px solid #e0e0e0; }
.prod-related-inner { max-width: var(--max-w); margin: 0 auto; }

/* ── CONTACTO ────────────────────────────────────────────────────── */
.contact-section { padding: calc(var(--nav-h) + 4rem) var(--pad) 5rem; background: #fff; }
.contact-inner { max-width: 900px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.contact-info h1 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; letter-spacing: -0.02em; line-height: 1.1; margin-bottom: 1.5rem; }
.contact-info p { font-size: 0.95rem; color: var(--muted); line-height: 1.75; margin-bottom: 2rem; }
.contact-detail { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2rem; }
.contact-detail-item { font-size: 0.88rem; color: #444; display: flex; gap: 0.75rem; align-items: flex-start; }
.contact-detail-item strong { color: #111; min-width: 70px; }
.contact-form-wrap { background: var(--grey); padding: 2rem; }
.contact-form-title { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: #111; margin-bottom: 1.5rem; }

/* ── FOOTER ──────────────────────────────────────────────────────── */
.site-footer { background: #111; color: rgba(255,255,255,0.7); padding: 3rem var(--pad); }
.footer-inner { max-width: var(--max-w); margin: 0 auto; display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 3rem; }
.footer-brand img { height: 28px; width: auto; filter: invert(1); margin-bottom: 1rem; }
.footer-tagline { font-size: 0.82rem; line-height: 1.6; color: rgba(255,255,255,0.5); }
.footer-col h4 { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: #fff; margin-bottom: 1rem; }
.footer-col ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col a { font-size: 0.82rem; color: rgba(255,255,255,0.55); transition: color 0.15s; }
.footer-col a:hover { color: #fff; }
.footer-bottom {
  max-width: var(--max-w); margin: 2rem auto 0;
  padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.1);
  display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap;
  font-size: 0.75rem; color: rgba(255,255,255,0.35);
}

/* ── ABOUT SECTION ───────────────────────────────────────────────── */
.about-section { padding: clamp(5rem, 9vw, 8rem) 0; background: #fff; }
.about-inner {
  max-width: var(--max-w); margin: 0 auto; padding: 0 var(--pad);
  display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center;
}
.about-img-col { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.about-img-main { grid-column: 1 / -1; }
.about-img-main img { width: 100%; aspect-ratio: 16/9; object-fit: cover; filter: brightness(0.9); }
.about-img-secondary img { width: 100%; aspect-ratio: 1; object-fit: cover; filter: brightness(0.9); }
.about-content { display: flex; flex-direction: column; gap: 0; }
.about-text { font-size: 0.95rem; color: #555; line-height: 1.8; margin-top: 1.25rem; }
.about-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1.75rem; }
.tag {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.35rem 0.75rem; border: 1px solid #ccc; color: #555;
}

/* ── COUNTERS ────────────────────────────────────────────────────── */
.counters-section { background: #111; padding: 4rem var(--pad); }
.counters-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: rgba(255,255,255,0.1);
}
.counter-item {
  background: #111; text-align: center; padding: 2.5rem 1.5rem;
  display: flex; flex-direction: column; align-items: center;
}
.counter-num {
  font-size: clamp(3rem, 5vw, 4.5rem); font-weight: 900;
  color: #fff; line-height: 1; letter-spacing: -0.04em;
}
.counter-plus { font-size: 2rem; font-weight: 900; color: rgba(255,255,255,0.3); line-height: 1; }
.counter-label { font-size: 0.72rem; color: rgba(255,255,255,0.45); text-transform: uppercase; letter-spacing: 0.12em; margin-top: 0.75rem; line-height: 1.4; }

/* ── PROCESS ─────────────────────────────────────────────────────── */
.process-section { padding: clamp(5rem, 9vw, 8rem) var(--pad); background: var(--grey); }
.process-inner { max-width: var(--max-w); margin: 0 auto; }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
.process-step { position: relative; padding-top: 2rem; border-top: 2px solid #111; }
.process-step-num {
  font-size: 0.72rem; font-weight: 900; letter-spacing: 0.2em;
  color: #bbb; margin-bottom: 1.25rem; font-variant-numeric: tabular-nums;
}
.process-step-title { font-size: 0.95rem; font-weight: 800; color: #111; margin-bottom: 0.75rem; }
.process-step-desc { font-size: 0.84rem; color: #666; line-height: 1.7; }

/* ── CONTACT FULL ────────────────────────────────────────────────── */
.contact-section-full { background: #111; padding: clamp(5rem, 9vw, 8rem) var(--pad); }
.contact-full-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.3fr; gap: 6rem; align-items: center;
}
.contact-full-h2 {
  font-size: clamp(2.2rem, 4vw, 3.2rem); font-weight: 900;
  color: #fff; letter-spacing: -0.02em; line-height: 1.1; margin: 0.75rem 0 1.25rem;
}
.contact-full-desc { font-size: 0.95rem; color: rgba(255,255,255,0.55); line-height: 1.75; margin-bottom: 2.5rem; }
.contact-full-details { display: flex; flex-direction: column; gap: 1.25rem; }
.contact-full-item {}
.contact-full-label { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.3); margin-bottom: 0.25rem; }
.contact-full-val { font-size: 0.9rem; color: rgba(255,255,255,0.8); }
.contact-full-form-wrap { background: #fff; padding: 2.5rem; }
.contact-full-form-title { font-size: 0.8rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: #111; margin-bottom: 1.5rem; padding-bottom: 1rem; border-bottom: 1px solid #e8e8e8; }

/* ── RESPONSIVE — 1024px ─────────────────────────────────────────── */
@media (max-width: 1024px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .cats-grid { grid-template-columns: repeat(3, 1fr); }
  .why-inner { grid-template-columns: 1fr; gap: 3rem; }
  .why-img { display: none; }
  .specs-strip-inner { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .prod-desc-inner { grid-template-columns: 1fr; gap: 3rem; }
  .prod-specs-grid { grid-template-columns: repeat(3, 1fr); }
  .about-inner { grid-template-columns: 1fr; gap: 3rem; }
  .about-img-col { display: none; }
  .counters-inner { grid-template-columns: repeat(4, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-full-inner { grid-template-columns: 1fr; gap: 3rem; }
  .catalog-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── RESPONSIVE — 768px ──────────────────────────────────────────── */
@media (max-width: 768px) {
  .hero-full { height: 92svh; }
  .hero-full-badge { display: none; }
  .hero-full-inner {
    max-width: 100%;
    padding: 2rem 1.5rem;
  }
  .hero-full-h1 { font-size: clamp(2.4rem, 10vw, 3.5rem); }
  .midpage-banner { height: 300px; }
  .midpage-banner-text { padding: 1.75rem 2rem; }

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

  .prod-page-hero { grid-template-columns: 1fr; }
  .prod-page-hero-img { min-height: 260px; }
  .prod-specs-grid { grid-template-columns: repeat(2, 1fr); }
  .prod-gallery-grid { grid-template-columns: 1fr 1fr; }

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

  .strip { flex-wrap: wrap; gap: 1rem; justify-content: flex-start; padding: 1rem var(--pad); }
  .strip-item { font-size: 0.7rem; gap: 0.5rem; }

  .main-nav { display: none; }
  .nav-burger { display: flex; }

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

  .contact-section-full { padding: 3rem var(--pad); }
  .contact-full-form-wrap { padding: 1.75rem; }
}

/* ── RESPONSIVE — 480px ──────────────────────────────────────────── */
@media (max-width: 480px) {
  .cats-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  .specs-strip-inner { grid-template-columns: repeat(2, 1fr); }
  .counters-inner { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .prod-gallery-grid { grid-template-columns: 1fr; }
  .prod-specs-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-full-inner { padding: 1.5rem 1.25rem; }
  .hero-full-actions { flex-direction: column; }
  .btn-primary-light, .btn-ghost-light { text-align: center; }
}
