/* =============================================
   BISNEXT - Main Stylesheet
   Brand: Satoshi / Gray / #FAA738 / #E3E3E5
   ============================================= */

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

:root {
  --primary: #333333;
  --orange: #FAA738;
  --orange-light: #fbb95c;
  --gray: #E3E3E5;
  --gray-dark: #6b6b6b;
  --dark: #1a1a1a;
  --text: #2d2d2d;
  --white: #ffffff;
  --bg: #fafafa;
  --nav-h: 99px;
  --max-w: 1200px;
  --transition: .3s cubic-bezier(.4,0,.2,1);
  --btn-radius: 999px;
}

html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Satoshi', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text); background: var(--white); line-height: 1.6;
  overflow-x: hidden; -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
h1,h2,h3,h4,h5,h6 { line-height: 1.2; font-weight: 700; }
.container { width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.sr-only { position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);border:0; }

/* --- Navigation --- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-h);
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,.06);
  transition: box-shadow var(--transition);
}
.nav.scrolled { box-shadow: 0 1px 20px rgba(0,0,0,.08); }
.nav__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 100%; max-width: 1360px; margin: 0 auto; padding: 0 18px;
}
.nav__logo { display: flex; align-items: center; }
.nav__logo img { height: 55px; width: auto; }
.page-home .nav__logo img { height: 72px; }
.nav__links { display: flex; gap: 40px; align-items: center; }
.nav__links a {
  font-size: .95rem; font-weight: 500; letter-spacing: .02em;
  color: var(--text); position: relative; transition: color var(--transition);
}
.nav__links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px;
  background: var(--orange); transition: width var(--transition);
}
.nav__links a:hover::after, .nav__links a.active::after { width: 100%; }
.nav__links a:hover { color: var(--orange); }
.nav__toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; background: none; border: none; }
.nav__toggle span { display: block; width: 22px; height: 2px; background: var(--text); transition: var(--transition); border-radius: 1px; }
.nav__toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.nav__toggle.active span:nth-child(2) { opacity: 0; }
.nav__toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* --- Hero --- */
.hero {
  position: relative; min-height: 92vh; display: flex; align-items: center;
  padding-top: var(--nav-h); overflow: hidden; background: var(--dark);
}
.hero__bg {
  position: absolute; inset: 0; z-index: 0;
  overflow: hidden;
  background: #1f1f1f;
}
.hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.hero__bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20,20,20,.22) 0%, rgba(20,20,20,.34) 44%, rgba(20,20,20,.52) 100%);
}
.hero__pattern {
  position: absolute; inset: 0; z-index: 0; opacity: .07;
  background-image:
    radial-gradient(circle at 20% 50%, var(--orange) 1px, transparent 1px),
    radial-gradient(circle at 80% 20%, var(--white) 1px, transparent 1px),
    radial-gradient(circle at 60% 80%, var(--orange) 0.5px, transparent 0.5px);
  background-size: 60px 60px, 80px 80px, 40px 40px;
}
.hero__grid {
  position: absolute; inset: 0; z-index: 0; opacity: .04;
  background-image:
    linear-gradient(rgba(255,255,255,.3) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.3) 1px, transparent 1px);
  background-size: 80px 80px;
}
.hero .container { width: 100%; }
.hero__content {
  position: relative;
  z-index: 2;
  width: min(1140px, 100%);
  margin: 0 auto;
}
.hero__tag {
  display: inline-block; font-size: .75rem; font-weight: 700;
  letter-spacing: .15em; text-transform: uppercase; color: var(--orange);
  margin-bottom: 20px; padding: 6px 14px;
  border: 1px solid rgba(250,167,56,.4); border-radius: 4px;
  background: rgba(250,167,56,.08);
}
.hero__title {
  font-size: clamp(2.2rem, 4.4vw, 3.7rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 0;
  line-height: 1.1;
  letter-spacing: .01em;
  max-width: 980px;
  text-wrap: balance;
}
.hero__title span { color: var(--orange); }
.hero__panel {
  margin-top: 22px;
  background: transparent;
  border: 0;
  padding: clamp(16px, 2.2vw, 24px) clamp(16px, 2.6vw, 28px);
  backdrop-filter: none;
}
.hero__desc {
  font-size: clamp(1.05rem, 1.65vw, 1.5rem);
  color: rgba(255,255,255,.94);
  max-width: 980px;
  margin-bottom: 8px;
  line-height: 1.38;
  font-weight: 400;
}
.hero__desc:last-of-type { margin-bottom: 0; }
.hero__highlight {
  margin-top: 14px;
  color: var(--orange);
  font-weight: 700;
  font-size: clamp(1.2rem, 1.9vw, 1.85rem);
  line-height: 1.3;
}
.hero__cta-banner {
  margin-top: 16px;
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  font-size: clamp(1.8rem, 3.4vw, 3.25rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  letter-spacing: .01em;
  padding: 6px 4px 14px;
  background: transparent;
  position: relative;
  transition: transform var(--transition), color var(--transition);
}
.hero__cta-banner::after {
  content: '';
  position: absolute;
  left: 4px;
  right: 4px;
  bottom: 2px;
  height: 6px;
  background: var(--orange);
}
.hero__cta-banner:hover {
  transform: translateY(-2px);
  color: var(--orange);
}
.hero__shape { position: absolute; border-radius: 50%; z-index: 1; filter: blur(80px); }
.hero__shape--1 { width: 400px; height: 400px; background: rgba(250,167,56,.15); top: -100px; right: -100px; }
.hero__shape--2 { width: 300px; height: 300px; background: rgba(51,51,51,.3); bottom: -80px; left: -80px; }

/* --- Sections --- */
.section { padding: 100px 0; }
.section--gray { background: var(--gray); }
.section--dark { background: var(--primary); color: var(--white); }
.section--darkalt { background: var(--dark); color: var(--white); }
.section__header { text-align: center; margin-bottom: 56px; }
.section__tag {
  display: inline-block; font-size: .7rem; font-weight: 700;
  letter-spacing: .15em; text-transform: uppercase; color: var(--orange); margin-bottom: 12px;
}
.section__title { font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 800; letter-spacing: -.01em; }
.section--dark .section__title { color: var(--white); }
.section__subtitle { font-size: 1.05rem; color: var(--gray-dark); margin-top: 12px; max-width: 560px; margin-inline: auto; }
.section--dark .section__subtitle { color: rgba(255,255,255,.6); }

/* --- Features --- */
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.feature {
  background: var(--white); border-radius: 12px; padding: 36px 28px;
  border: 1px solid rgba(0,0,0,.06); transition: all var(--transition);
  position: relative; overflow: hidden;
}
.feature::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--primary));
  transform: scaleX(0); transform-origin: left; transition: transform var(--transition);
}
.feature:hover::before { transform: scaleX(1); }
.feature:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,.08); }
.feature__icon {
  width: 48px; height: 48px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  margin-bottom: 18px; font-size: 1.4rem; color: var(--white);
}
.feature h3 { font-size: 1.1rem; margin-bottom: 10px; color: var(--text); }
.feature p { font-size: .9rem; color: var(--gray-dark); line-height: 1.7; }

/* --- Brands & Clients --- */
.brands-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(120px, 1fr));
  gap: 56px 44px;
  align-items: center;
  justify-items: center;
}
.clients-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 56px 44px;
  align-items: center;
}
.brands-grid img,
.clients-grid img {
  height: 104px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  opacity: .95;
  filter: none;
  transition: opacity var(--transition), transform var(--transition);
}
.brands-grid img:hover,
.clients-grid img:hover { opacity: 1; transform: scale(1.03); }

/* --- Solutions --- */
.solutions { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.solutions__card {
  padding: 24px; border-radius: 8px; border: 1px solid rgba(255,255,255,.1);
  transition: all var(--transition); background: rgba(255,255,255,.03);
}
.solutions__card:hover { background: rgba(255,255,255,.08); border-color: var(--orange); }
.solutions__card h3 { font-size: 1.05rem; margin-bottom: 8px; color: var(--white); }
.solutions__card p { font-size: .85rem; color: rgba(255,255,255,.6); margin-bottom: 12px; }
.solutions__link { display: inline-flex; align-items: center; gap: 6px; font-size: .85rem; font-weight: 600; color: var(--orange); }
.solutions__link svg { width: 18px; height: 18px; flex-shrink: 0; color: var(--orange); }
/* --- Stats --- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat {
  background: rgba(255,255,255,.05); border-radius: 12px; padding: 36px 24px;
  text-align: center; border: 1px solid rgba(255,255,255,.08);
}
.stat__number {
  font-size: clamp(2.2rem, 4vw, 3.2rem); font-weight: 900; color: var(--orange);
  line-height: 1; margin-bottom: 8px;
}
.stat__label { font-size: .9rem; color: rgba(255,255,255,.6); font-weight: 500; }

/* --- Footer --- */
.footer { background: var(--dark); color: rgba(255,255,255,.7); padding: 72px 0 32px; }
.footer__grid {
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px;
}
.footer__logo { margin-bottom: 16px; }
.footer__logo img {
  height: 36px;
  width: auto;
  filter: none;
}
.footer__desc { font-size: .9rem; line-height: 1.7; max-width: 320px; }
.footer__contact-item {
  display: flex; align-items: center; gap: 12px; font-size: .9rem; margin-bottom: 14px;
}
.footer__contact-item svg { width: 16px; height: 16px; flex-shrink: 0; color: var(--white); opacity: .5; }
.footer__contact-item a { transition: color var(--transition); }
.footer__contact-item a:hover { color: var(--orange); }
.footer h4 { color: var(--white); font-size: .9rem; font-weight: 700; letter-spacing: .05em; margin-bottom: 20px; }
.footer__social-item {
  display: flex; align-items: center; gap: 14px; font-size: .9rem; margin-bottom: 16px;
  transition: color var(--transition);
}
.footer__social-item:hover { color: var(--orange); }
.footer__social-item svg { width: 20px; height: 20px; flex-shrink: 0; }
.footer__link { display: flex; align-items: center; gap: 8px; font-size: .9rem; margin-bottom: 10px; transition: color var(--transition); }
.footer__link:hover { color: var(--orange); }
.footer__bar { border-top: 1px solid rgba(255,255,255,.08); padding-top: 24px; text-align: center; font-size: .8rem; }

/* --- Page Hero (inner pages) --- */
.page-hero {
  padding: calc(var(--nav-h) + 60px) 0 60px;
  background: linear-gradient(135deg, var(--primary) 0%, #444 100%);
  color: var(--white); position: relative; overflow: hidden;
}
.page-hero::after {
  content: ''; position: absolute; inset: 0; opacity: .05;
  background-image:
    radial-gradient(circle at 30% 40%, var(--orange) 1px, transparent 1px),
    radial-gradient(circle at 70% 70%, var(--white) 0.5px, transparent 0.5px);
  background-size: 50px 50px, 70px 70px;
}
.page-hero__content { position: relative; z-index: 1; }
.page-hero__title { font-size: clamp(2rem, 4vw, 3rem); font-weight: 900; margin-bottom: 12px; }
.page-hero__desc { font-size: 1.05rem; color: rgba(255,255,255,.7); max-width: 560px; }

/* --- About (Nosotros) --- */
.about-section { padding: 60px 0; }
.about-section .container { max-width: 860px; }
.about-section h2 { font-size: 1.8rem; font-weight: 800; margin-bottom: 16px; }
.about-section h2 span { color: var(--orange); }
.about-section p { font-size: 1rem; color: var(--gray-dark); line-height: 1.8; margin-bottom: 16px; }
.about-section ul { margin: 12px 0 20px 20px; }
.about-section li {
  font-size: .95rem; line-height: 1.8; color: var(--gray-dark); margin-bottom: 10px;
  position: relative; padding-left: 20px;
}
.about-section li::before { content: ''; position: absolute; left: 0; top: 12px; width: 6px; height: 6px; border-radius: 50%; background: var(--orange); }
.about-section .btn-download {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 28px; font-size: .9rem; font-weight: 700;
  background: var(--orange); color: var(--white); border-radius: var(--btn-radius);
  transition: all var(--transition); margin-top: 12px;
}
.about-section .btn-download:hover { background: var(--orange-light); }

/* --- Service Detail --- */
.service-detail { padding: 48px 0 80px; }
.service-detail .container { max-width: 820px; }
.service-detail h2 { font-size: 1.4rem; color: var(--text); margin: 36px 0 14px; }
.service-detail h3 { font-size: 1.15rem; color: var(--text); margin: 28px 0 12px; }
.service-detail p { font-size: .95rem; line-height: 1.8; color: var(--gray-dark); margin-bottom: 16px; }
.service-detail ul { margin: 12px 0 20px 20px; }
.service-detail li { font-size: .95rem; line-height: 1.7; color: var(--gray-dark); margin-bottom: 8px; position: relative; padding-left: 20px; }
.service-detail li::before { content: ''; position: absolute; left: 0; top: 10px; width: 6px; height: 6px; border-radius: 50%; background: var(--orange); }
.service-detail table { width: 100%; border-collapse: collapse; margin: 20px 0 28px; font-size: .9rem; }
.service-detail th { background: var(--primary); color: var(--white); padding: 12px 16px; text-align: left; font-weight: 600; }
.service-detail td { padding: 12px 16px; border-bottom: 1px solid var(--gray); }
.service-detail tr:hover td { background: rgba(250,167,56,.03); }
.service-detail .info-box {
  background: rgba(250,167,56,.06); border-left: 3px solid var(--orange);
  padding: 16px 20px; border-radius: 0 8px 8px 0; margin: 20px 0; font-size: .9rem;
}
.service-detail .info-box p { margin: 0; }
.service-detail .contact-cta {
  display: flex; align-items: center; gap: 12px; margin-top: 40px;
  padding: 20px 24px; background: var(--primary); border-radius: 12px; color: var(--white);
}
.service-detail .contact-cta p { color: rgba(255,255,255,.8); margin: 0; }
.service-detail .contact-cta a { color: var(--orange); font-weight: 600; }

/* --- Services Grid --- */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.service-card {
  background: var(--white); border-radius: 12px; padding: 32px 24px;
  border: 1px solid rgba(0,0,0,.06); transition: all var(--transition);
  display: flex; flex-direction: column;
}
.service-card[role="link"] { cursor: pointer; }
.service-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,.08); border-color: var(--orange); }
.service-card[role="link"]:focus-visible {
  outline: 3px solid rgba(250,167,56,.45);
  outline-offset: 3px;
}
.service-card__icon { width: 48px; height: 48px; border-radius: 10px; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, var(--orange), var(--orange-light)); margin-bottom: 16px; }
.service-card__icon svg { width: 24px; height: 24px; color: var(--white); }
.service-card h3 { font-size: 1.1rem; margin-bottom: 10px; }
.service-card p { font-size: .9rem; color: var(--gray-dark); line-height: 1.7; flex: 1; margin-bottom: 16px; }
.service-card__link { display: inline-flex; align-items: center; gap: 6px; font-size: .9rem; font-weight: 600; color: var(--orange); transition: gap var(--transition); }
.service-card__link:hover { gap: 10px; }
.service-card__list {
  list-style: none;
  margin: 6px 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
}
.service-card__list li {
  position: relative;
  padding-left: 18px;
  color: var(--gray-dark);
  line-height: 1.6;
  font-size: .95rem;
}
.service-card__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
}

/* --- Infrastructure --- */
.infra-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(300px, 1fr));
  gap: 24px;
}
.infra-card {
  background: var(--white);
  border-radius: 12px;
  padding: 30px 26px;
  border: 2px solid rgba(250,167,56,.9);
}
.infra-card__header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}
.infra-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--orange);
  color: var(--white);
  flex-shrink: 0;
}
.infra-card__icon svg {
  width: 24px;
  height: 24px;
}
.infra-card h3 {
  font-size: clamp(1.5rem, 2vw, 2rem);
}
.infra-card__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}
.infra-card__list--two-cols {
  grid-template-columns: repeat(2, minmax(180px, 1fr));
  gap: 10px 22px;
}
.infra-card__list li {
  position: relative;
  padding-left: 18px;
  color: var(--text);
  line-height: 1.5;
  font-size: clamp(1rem, 1.5vw, 1.15rem);
}
.infra-card__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #cf851f;
}

/* --- Contact --- */
.contact-info { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.contact-card {
  background: var(--white); border-radius: 12px; padding: 32px 24px; text-align: center;
  border: 1px solid rgba(0,0,0,.06); transition: all var(--transition);
}
.contact-card--link { cursor: pointer; }
.contact-card:hover { border-color: var(--orange); box-shadow: 0 8px 32px rgba(0,0,0,.06); }
.contact-card--link:focus-visible {
  outline: 3px solid rgba(250,167,56,.45);
  outline-offset: 3px;
}
.contact-card__icon { width: 52px; height: 52px; border-radius: 12px; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, var(--orange), var(--orange-light)); margin: 0 auto 16px; }
.contact-card__icon svg { width: 24px; height: 24px; color: var(--white); }
.contact-card h3 { font-size: 1rem; margin-bottom: 8px; }
.contact-card p, .contact-card a { font-size: .9rem; color: var(--gray-dark); }
.contact-card a:hover { color: var(--orange); }

/* --- Support Page --- */
.support-section { padding: 56px 0 80px; }
.support-wrap {
  background: var(--white);
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 35px rgba(0,0,0,.06);
  padding: 28px;
}
.support-intro {
  font-size: 1rem;
  color: var(--gray-dark);
  line-height: 1.7;
  margin-bottom: 18px;
  max-width: 760px;
}
.support-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.support-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: .95rem;
  font-weight: 700;
  color: var(--white);
  background: var(--primary);
  padding: 12px 18px;
  border-radius: var(--btn-radius);
}
.support-btn:hover { background: var(--orange); }
.support-note {
  font-size: .9rem;
  color: var(--gray-dark);
}

/* --- Animations --- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
@keyframes countUp { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

/* --- Responsive --- */
@media (max-width: 992px) {
  .features { grid-template-columns: 1fr; gap: 16px; }
  .solutions { grid-template-columns: 1fr; gap: 28px; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .brands-grid { grid-template-columns: repeat(4, minmax(120px, 1fr)); gap: 40px 28px; }
  .clients-grid { gap: 40px 28px; }
  .brands-grid img, .clients-grid img { height: 72px; max-width: 160px; }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .contact-info { grid-template-columns: 1fr; }
  .infra-grid { grid-template-columns: 1fr; }
  .infra-card__list--two-cols { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root { --nav-h: 84px; }
  .nav__logo img { height: 46px; }
  .page-home .nav__logo img { height: 60px; }
  .nav__links {
    position: fixed; top: var(--nav-h); left: 0; right: 0; bottom: 0;
    flex-direction: column; background: var(--white); padding: 32px 24px; gap: 20px;
    transform: translateX(100%); transition: transform var(--transition);
  }
  .nav__links.open { transform: translateX(0); }
  .nav__toggle { display: flex; }
  .hero { min-height: 78vh; }
  .hero__title { font-size: clamp(1.7rem, 8.2vw, 2.6rem); line-height: 1.14; }
  .hero__panel { margin-top: 14px; padding: 14px 14px 16px; background: transparent; }
  .hero__desc { font-size: clamp(.98rem, 4.3vw, 1.18rem); line-height: 1.35; }
  .hero__highlight { margin-top: 10px; font-size: clamp(1.05rem, 4.6vw, 1.25rem); }
  .hero__cta-banner {
    margin-top: 12px;
    width: auto;
    padding: 4px 2px 10px;
    font-size: clamp(1.35rem, 9.2vw, 2.2rem);
  }
  .hero__cta-banner::after {
    left: 2px;
    right: 2px;
    height: 4px;
    bottom: 1px;
  }
  .section { padding: 64px 0; }
  .brands-grid { grid-template-columns: repeat(3, minmax(100px, 1fr)); gap: 28px 18px; }
  .clients-grid { gap: 28px 18px; }
  .brands-grid img, .clients-grid img { height: 60px; max-width: 140px; }
  .stats { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .stat { padding: 24px 16px; }
}

@media (max-width: 480px) {
  .stats { grid-template-columns: 1fr 1fr; }
  .brands-grid { grid-template-columns: repeat(2, minmax(100px, 1fr)); gap: 24px 14px; }
  .clients-grid { gap: 24px 14px; }
  .brands-grid img, .clients-grid img { height: 52px; max-width: 120px; }
}

@media print {
  .nav, .hero__shape, .hero__pattern, .hero__grid { display: none; }
  .hero { min-height: auto; padding: 40px 0; }
  body { color: #000; }
}
