/* ============================================================
   BMI — Tela y Ropa al Mayoreo | Shared Stylesheet
   Art Direction: Industrial Grid / Swiss
   Fonts: Chivo (display) + Chivo Mono (body/labels)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Chivo:ital,wght@0,300;0,400;0,700;0,900;1,300&family=Chivo+Mono:wght@300;400;500;700&display=swap');

/* ── Custom Properties ─────────────────────────────────────── */
:root {
  --primary:       #FE0166;
  --primary-dark:  #C80050;
  --primary-light: #FFF0F5;
  --accent:        #FEC002;
  --accent-dark:   #D9A200;
  --accent-light:  #FFFAEB;
  --blue:          #5081BC;
  --blue-dark:     #3A6499;
  --blue-light:    #EEF3FA;
  --black:         #080808;
  --gray-800:      #1C1C1C;
  --gray-700:      #2E2E2E;
  --gray-600:      #4A4A4A;
  --gray-400:      #8A8A8A;
  --gray-200:      #D4D4D4;
  --gray-100:      #EBEBEB;
  --gray-50:       #F5F5F5;
  --white:         #FFFFFF;

  --font-display:  'Chivo', sans-serif;
  --font-body:     'Chivo Mono', monospace;

  --sp-1: 8px;
  --sp-2: 16px;
  --sp-3: 24px;
  --sp-4: 32px;
  --sp-5: 40px;
  --sp-6: 48px;
  --sp-8: 64px;
  --sp-10: 80px;
  --sp-12: 96px;
  --sp-16: 128px;

  --sidebar-w: 64px;
  --nav-h: 72px;
  --topbar-h: 40px;
}

/* ── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.7;
  color: var(--gray-600);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }

/* ── Typography ────────────────────────────────────────────── */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  color: var(--black);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
h1 { font-size: clamp(2.8rem, 6vw, 5.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.1rem; }

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 500;
  color: var(--primary);
  display: block;
  margin-bottom: var(--sp-2);
}
.eyebrow--white { color: rgba(255,255,255,.65); }
.eyebrow--accent { color: var(--accent); }

/* ── Announcement Bar ──────────────────────────────────────── */
.topbar {
  background: var(--primary);
  height: var(--topbar-h);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 200;
}
.topbar__text {
  font-family: var(--font-body);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 700;
  color: var(--white);
  text-align: center;
}
.topbar__text strong { color: var(--accent); }

/* ── Header / Nav — Centered Logo ──────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--gray-100);
  height: var(--nav-h);
}
.nav-inner {
  max-width: 1320px;
  margin: 0 auto;
  height: 100%;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 var(--sp-4);
  gap: var(--sp-4);
}
.nav-left, .nav-right {
  display: flex;
  align-items: center;
  gap: var(--sp-5);
}
.nav-right { justify-content: flex-end; }
.nav-logo {
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav-logo img { height: 48px; width: auto; }
.nav-link {
  font-family: var(--font-body);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 700;
  color: var(--gray-700);
  transition: color .2s;
  white-space: nowrap;
}
.nav-link:hover, .nav-link.active { color: var(--primary); }
.nav-cta {
  font-family: var(--font-body);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  background: var(--primary);
  color: var(--white);
  padding: 9px 20px;
  transition: background .2s;
  white-space: nowrap;
  border: none;
}
.nav-cta:hover { background: var(--primary-dark); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--black);
  transition: transform .3s, opacity .3s;
}
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: 150;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--sp-5);
}
.mobile-nav.open { display: flex; }
.mobile-nav__link {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--black);
  transition: color .2s;
}
.mobile-nav__link:hover { color: var(--primary); }
.mobile-nav__close {
  position: absolute;
  top: var(--sp-4);
  right: var(--sp-4);
  font-size: 1.5rem;
  color: var(--black);
  padding: var(--sp-2);
  cursor: pointer;
  background: none;
  border: none;
}

/* ── Hero — Sidebar Index ──────────────────────────────────── */
.hero {
  height: calc(100vh - var(--topbar-h) - var(--nav-h));
  min-height: 600px;
  display: grid;
  grid-template-columns: var(--sidebar-w) 1fr;
  overflow: hidden;
  border-bottom: 1px solid var(--gray-200);
}
.hero-sidebar {
  background: var(--black);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: var(--sp-4) 0;
  z-index: 2;
}
.hero-sidebar__top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-2);
}
.hero-sidebar__num {
  font-family: var(--font-body);
  font-size: 0.58rem;
  font-weight: 700;
  color: rgba(255,255,255,.2);
  letter-spacing: 0.06em;
}
.hero-sidebar__rule {
  flex: 1;
  width: 1px;
  background: rgba(255,255,255,.1);
  margin: var(--sp-3) 0;
}
.hero-sidebar__label {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-family: var(--font-body);
  font-size: 0.55rem;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-weight: 700;
  color: var(--primary);
}
.hero-sidebar__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
}
.hero-main {
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(8,8,8,.7);
}
.hero-grid-lines {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
.hero-grid-lines::before {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  left: 33.333%;
  width: 1px;
  background: rgba(255,255,255,.04);
}
.hero-grid-lines::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  left: 66.666%;
  width: 1px;
  background: rgba(255,255,255,.04);
}
.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--sp-12) var(--sp-8);
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  margin-bottom: var(--sp-3);
}
.hero-eyebrow__line {
  width: 40px;
  height: 1px;
  background: var(--accent);
}
.hero-eyebrow__text {
  font-family: var(--font-body);
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-weight: 700;
  color: var(--accent);
}
.hero-content h1 {
  color: var(--white);
  max-width: 680px;
  margin-bottom: var(--sp-3);
}
.hero-content h1 em {
  font-style: normal;
  color: var(--accent);
}
.hero-sub {
  color: rgba(255,255,255,.7);
  font-family: var(--font-body);
  font-size: 0.88rem;
  max-width: 440px;
  margin-bottom: var(--sp-6);
  line-height: 1.8;
}
.hero-actions {
  display: flex;
  gap: var(--sp-3);
  align-items: center;
  flex-wrap: wrap;
}
.hero-corner {
  position: absolute;
  top: var(--sp-5);
  right: var(--sp-5);
  z-index: 3;
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
}
.hero-corner__tag {
  font-family: var(--font-body);
  font-size: 0.55rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: rgba(255,255,255,.3);
  font-weight: 500;
}
.hero-corner__rule {
  width: 28px;
  height: 1px;
  background: rgba(255,255,255,.18);
}

/* ── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-family: var(--font-body);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  padding: 14px 28px;
  transition: background .2s, color .2s, transform .2s;
  border: none;
}
.btn--primary { background: var(--primary); color: var(--white); }
.btn--primary:hover { background: var(--primary-dark); transform: translateY(-2px); }
.btn--outline { background: transparent; color: var(--white); border: 1px solid rgba(255,255,255,.35); }
.btn--outline:hover { border-color: var(--accent); color: var(--accent); }
.btn--dark { background: var(--black); color: var(--white); }
.btn--dark:hover { background: var(--gray-800); transform: translateY(-2px); }
.btn--accent { background: var(--accent); color: var(--black); }
.btn--accent:hover { background: var(--accent-dark); transform: translateY(-2px); }
.btn--ghost { background: transparent; color: var(--black); border: 1px solid var(--gray-200); }
.btn--ghost:hover { border-color: var(--primary); color: var(--primary); }

/* ── Stats Strip ───────────────────────────────────────────── */
.stats-strip { background: var(--black); }
.stats-strip__inner {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-left: 1px solid var(--gray-800);
}
.stat-item {
  padding: var(--sp-6) var(--sp-5);
  border-right: 1px solid var(--gray-800);
  border-top: 1px solid var(--gray-800);
  border-bottom: 1px solid var(--gray-800);
  text-align: center;
}
.stat-num {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 6px;
}
.stat-num span { color: var(--primary); }
.stat-label {
  font-family: var(--font-body);
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,.38);
  font-weight: 500;
}

/* ── Section Frame ─────────────────────────────────────────── */
.section { padding: var(--sp-16) 0; }
.section--sm { padding: var(--sp-10) 0; }
.section--gray { background: var(--gray-50); }
.section--black { background: var(--black); }
.section--primary { background: var(--primary); }

.container { max-width: 1320px; margin: 0 auto; padding: 0 var(--sp-4); }
.container--narrow { max-width: 860px; margin: 0 auto; padding: 0 var(--sp-4); }

.section-head {
  display: grid;
  grid-template-columns: var(--sidebar-w) 1fr;
  gap: var(--sp-5);
  margin-bottom: var(--sp-10);
  align-items: start;
}
.section-head__index {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 6px;
}
.section-head__num {
  font-family: var(--font-body);
  font-size: 0.58rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.1em;
}
.section-head__rule {
  width: 1px;
  height: 36px;
  background: var(--gray-200);
  margin: var(--sp-1) 0;
}
.section-head h2 { margin-bottom: var(--sp-2); }
.section-head p {
  color: var(--gray-600);
  font-size: 0.88rem;
  max-width: 520px;
  line-height: 1.8;
}
.section-head--white h2 { color: var(--white); }
.section-head--white p { color: rgba(255,255,255,.55); }
.section-head--white .section-head__rule { background: rgba(255,255,255,.15); }
.section-head--white .section-head__num { color: var(--accent); }

/* ── Services Grid ─────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--gray-200);
  border: 1px solid var(--gray-200);
}
.service-card {
  background: var(--white);
  padding: var(--sp-6) var(--sp-5);
  transition: background .25s;
}
.service-card:hover { background: var(--gray-50); }
.service-card__num {
  font-family: var(--font-body);
  font-size: 0.56rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: var(--sp-4);
  display: block;
}
.service-card__icon { width: 44px; height: 44px; margin-bottom: var(--sp-3); color: var(--primary); }
.service-card h3 { font-size: 1.15rem; margin-bottom: var(--sp-2); }
.service-card p { font-size: 0.8rem; line-height: 1.7; color: var(--gray-600); }
.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: var(--sp-3);
  font-size: 0.63rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--primary);
  transition: gap .2s;
}
.service-card__link:hover { gap: 12px; }

/* ── Product Lines ──────────────────────────────────────────── */
.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--gray-200);
  border: 1px solid var(--gray-200);
}
.product-card { background: var(--white); overflow: hidden; }
.product-card__img { aspect-ratio: 4/3; overflow: hidden; }
.product-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.product-card:hover .product-card__img img { transform: scale(1.04); }
.product-card__body { padding: var(--sp-5); border-top: 1px solid var(--gray-100); }
.product-card__num {
  font-family: var(--font-body);
  font-size: 0.56rem;
  font-weight: 700;
  color: var(--gray-400);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: var(--sp-2);
}
.product-card h3 { font-size: 1.25rem; margin-bottom: var(--sp-2); }
.product-card p { font-size: 0.8rem; line-height: 1.7; color: var(--gray-600); }

/* ── Sectors (circular on dark) ─────────────────────────────── */
.sectors-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-6);
}
.sector-card { text-align: center; }
.sector-img {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto var(--sp-3);
  border: 2px solid rgba(255,255,255,.1);
  transition: border-color .3s;
}
.sector-card:hover .sector-img { border-color: var(--primary); }
.sector-img img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(30%); transition: filter .4s, transform .4s; }
.sector-card:hover .sector-img img { filter: grayscale(0); transform: scale(1.08); }
.sector-card h4 { color: var(--white); font-size: 0.88rem; font-weight: 700; margin-bottom: 4px; }
.sector-card p { font-size: 0.62rem; color: rgba(255,255,255,.38); text-transform: uppercase; letter-spacing: 0.16em; }

/* ── Testimonials ──────────────────────────────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 1px;
  background: var(--gray-200);
  border: 1px solid var(--gray-200);
}
.testi-card {
  background: var(--white);
  padding: var(--sp-6) var(--sp-5);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 240px;
}
.testi-card--featured { background: var(--primary); }
.testi-card blockquote {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 400;
  line-height: 1.55;
  color: var(--black);
  font-style: italic;
  margin-bottom: var(--sp-4);
  flex: 1;
}
.testi-card--featured blockquote { color: var(--white); }
.testi-author { display: flex; flex-direction: column; gap: 3px; }
.testi-name {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--black);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.testi-card--featured .testi-name { color: var(--white); }
.testi-role {
  font-family: var(--font-body);
  font-size: 0.62rem;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.testi-card--featured .testi-role { color: rgba(255,255,255,.55); }

/* ── CTA Banner ────────────────────────────────────────────── */
.cta-banner { position: relative; overflow: hidden; }
.cta-banner__bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.cta-banner__overlay { position: absolute; inset: 0; background: rgba(8,8,8,.82); }
.cta-banner__inner {
  position: relative;
  z-index: 2;
  max-width: 1320px;
  margin: 0 auto;
  padding: var(--sp-16) var(--sp-4);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: var(--sp-8);
}
.cta-banner__body h2 { color: var(--white); margin-bottom: var(--sp-3); }
.cta-banner__body p { color: rgba(255,255,255,.6); font-size: 0.88rem; max-width: 500px; line-height: 1.75; }
.cta-banner__actions { display: flex; gap: var(--sp-3); flex-direction: column; align-items: flex-start; flex-shrink: 0; }

/* ── Who We Serve ──────────────────────────────────────────── */
.who-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--gray-200);
  border: 1px solid var(--gray-200);
}
.who-card {
  background: var(--white);
  padding: var(--sp-6) var(--sp-4);
  text-align: center;
  transition: background .25s, transform .25s;
}
.who-card:hover { background: var(--primary-light); transform: translateY(-4px); }
.who-card__icon { width: 40px; height: 40px; margin: 0 auto var(--sp-3); color: var(--primary); }
.who-card__num {
  font-family: var(--font-body);
  font-size: 0.56rem;
  font-weight: 700;
  color: var(--gray-400);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: var(--sp-2);
}
.who-card h4 { font-size: 0.9rem; margin-bottom: 6px; }
.who-card p { font-size: 0.76rem; line-height: 1.6; color: var(--gray-600); }

/* ── About split ───────────────────────────────────────────── */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 520px;
}
.about-split__img { position: relative; overflow: hidden; }
.about-split__img img { width: 100%; height: 100%; object-fit: cover; }
.about-split__body {
  padding: var(--sp-12) var(--sp-10);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.about-split__body p { font-size: 0.88rem; line-height: 1.8; margin-bottom: var(--sp-4); }
.about-split--reverse .about-split__img { order: 2; }
.about-split--reverse .about-split__body { order: 1; }

/* ── Values cards ──────────────────────────────────────────── */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--gray-200);
  border: 1px solid var(--gray-200);
}
.value-card {
  background: var(--white);
  padding: var(--sp-8) var(--sp-6);
  position: relative;
  overflow: hidden;
  transition: background .3s, transform .3s;
}
.value-card:hover { background: var(--gray-50); transform: translateY(-4px); }
.value-card__num {
  position: absolute;
  bottom: var(--sp-2);
  right: var(--sp-3);
  font-family: var(--font-display);
  font-size: 7rem;
  font-weight: 900;
  color: var(--gray-100);
  line-height: 1;
  letter-spacing: -0.05em;
  user-select: none;
  transition: color .3s;
}
.value-card:hover .value-card__num { color: #FFDDEC; }
.value-card__icon { width: 40px; height: 40px; margin-bottom: var(--sp-3); color: var(--primary); }
.value-card h3 { font-size: 1.15rem; margin-bottom: var(--sp-2); }
.value-card p { font-size: 0.8rem; line-height: 1.7; max-width: 280px; color: var(--gray-600); }

/* ── Contact ───────────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--gray-200);
  border: 1px solid var(--gray-200);
}
.contact-card { background: var(--white); padding: var(--sp-8) var(--sp-6); }
.contact-card__icon { width: 36px; height: 36px; margin-bottom: var(--sp-4); color: var(--primary); }
.contact-card__label {
  font-family: var(--font-body);
  font-size: 0.58rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gray-400);
  font-weight: 700;
  margin-bottom: var(--sp-2);
  display: block;
}
.contact-card p, .contact-card address {
  font-size: 0.85rem;
  line-height: 1.8;
  color: var(--gray-600);
  font-style: normal;
}
.contact-card a { transition: color .2s; }
.contact-card a:hover { color: var(--primary); }
.contact-form {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  padding: var(--sp-8);
  margin-top: 1px;
}
.form-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  margin-bottom: var(--sp-6);
  color: var(--black);
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-3);
}
.form-field { display: flex; flex-direction: column; gap: var(--sp-1); }
.form-field--full { grid-column: 1/-1; }
.form-field label {
  font-family: var(--font-body);
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 700;
  color: var(--gray-600);
}
.form-field input,
.form-field select,
.form-field textarea {
  background: var(--white);
  border: 1px solid var(--gray-200);
  padding: 12px 14px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--black);
  outline: none;
  transition: border-color .2s;
  -webkit-appearance: none;
  border-radius: 0;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus { border-color: var(--primary); }
.form-field textarea { resize: vertical; min-height: 120px; }

/* ── Footer ────────────────────────────────────────────────── */
.footer {
  background: var(--black);
  padding: var(--sp-12) 0 var(--sp-6);
  border-top: 2px solid var(--primary);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--sp-8);
  margin-bottom: var(--sp-10);
  padding-bottom: var(--sp-10);
  border-bottom: 1px solid var(--gray-800);
}
.footer-brand img {
  height: 44px;
  width: auto;
  margin-bottom: var(--sp-4);
  filter: brightness(0) invert(1);
  opacity: .85;
}
.footer-brand p { font-size: 0.78rem; line-height: 1.8; color: rgba(255,255,255,.38); max-width: 260px; }
.footer-col h5 {
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.58rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-weight: 700;
  margin-bottom: var(--sp-4);
}
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col a { font-size: 0.78rem; color: rgba(255,255,255,.38); transition: color .2s; }
.footer-col a:hover { color: var(--primary); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--sp-4);
}
.footer-bottom p { font-size: 0.7rem; color: rgba(255,255,255,.28); }
.footer-bottom__stripe { display: flex; gap: 4px; }
.footer-bottom__stripe span { height: 3px; width: 24px; }
.footer-bottom__stripe span:nth-child(1) { background: var(--primary); }
.footer-bottom__stripe span:nth-child(2) { background: var(--accent); }
.footer-bottom__stripe span:nth-child(3) { background: var(--blue); }

/* ── Scroll animation ──────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

/* ── Utility ───────────────────────────────────────────────── */
.text-white { color: var(--white); }
.text-primary { color: var(--primary); }
.text-accent { color: var(--accent); }
.mt-2 { margin-top: var(--sp-2); }
.mt-3 { margin-top: var(--sp-3); }
.mt-4 { margin-top: var(--sp-4); }
.mt-6 { margin-top: var(--sp-6); }
.mb-4 { margin-bottom: var(--sp-4); }
.mb-6 { margin-bottom: var(--sp-6); }

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .stats-strip__inner { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .sectors-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .who-grid { grid-template-columns: repeat(2, 1fr); }
  .section-head { grid-template-columns: 48px 1fr; }
}

@media (max-width: 768px) {
  :root {
    --sidebar-w: 40px;
    --sp-16: 80px;
    --sp-12: 64px;
  }
  .topbar__text { font-size: 0.58rem; letter-spacing: 0.08em; }
  .nav-left { display: none; }
  .nav-right .nav-link { display: none; }
  .nav-right .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .hero { height: auto; min-height: 85vh; }
  .hero-content { padding: var(--sp-6) var(--sp-4); }
  .hero-content h1 { font-size: 2.2rem; }
  .hero-corner { display: none; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .stats-strip__inner { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: 1fr; }
  .sectors-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .who-grid { grid-template-columns: 1fr 1fr; }
  .about-split { grid-template-columns: 1fr; }
  .about-split__body { padding: var(--sp-6) var(--sp-4); }
  .about-split--reverse .about-split__img { order: 0; }
  .about-split--reverse .about-split__body { order: 0; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .section-head { grid-template-columns: 1fr; }
  .section-head__index { flex-direction: row; align-items: center; gap: var(--sp-2); }
  .section-head__rule { width: 32px; height: 1px; margin: 0; }
  .cta-banner__inner { grid-template-columns: 1fr; }
}
