:root {
  --blue: #00407d;
  --blue-dark: #002d57;
  --blue-soft: #e2eaf3;
  --black: #111213;
  --orange: #ff7a1a;
  --bg: #ffffff;
  --paper: #ffffff;
  --panel: #f4f6f9;
  --ink: #16191f;
  --ink-soft: #575e6b;
  --ink-faint: #8b93a3;
  --line: #e3e7ee;

  --font: "Manrope", -apple-system, BlinkMacSystemFont, sans-serif;

  --radius-lg: 18px;
  --radius-md: 12px;
  --radius-sm: 8px;
  --shadow-soft: 0 14px 32px rgba(0, 30, 60, 0.12);
  --header-h: 74px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 130px; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
h1, h2, h3, h4 {
  font-family: var(--font);
  margin: 0;
  color: var(--blue);
  font-weight: 800;
  line-height: 1.2;
}
p { margin: 0; }
:focus-visible { outline: 3px solid var(--orange); outline-offset: 2px; }
.no-scroll { overflow: hidden; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

.stitch { height: 8px; background-image: repeating-linear-gradient(90deg, var(--orange) 0 9px, transparent 9px 18px); border-radius: 4px; }

.eyebrow { font-weight: 800; font-size: 0.76rem; letter-spacing: 1.3px; text-transform: uppercase; color: var(--orange); }
.section { max-width: 1240px; margin: 0 auto; padding: 74px 24px; }
.section__head { max-width: 640px; margin-bottom: 38px; }
.section__head.center { max-width: 640px; margin: 0 auto 42px; text-align: center; }
.section__title { font-size: clamp(1.7rem, 2.8vw, 2.3rem); margin-top: 8px; }
.section__lead { color: var(--ink-soft); font-size: 1rem; margin-top: 12px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 6px;
  font-weight: 800;
  font-size: 0.9rem;
  transition: transform 0.16s ease, box-shadow 0.16s ease, background 0.16s ease;
  white-space: nowrap;
}
.btn--blue { background: var(--blue); color: #fff; }
.btn--blue:hover { background: var(--blue-dark); transform: translateY(-2px); }
.btn--white { background: #fff; color: var(--blue); box-shadow: var(--shadow-soft); }
.btn--white:hover { background: var(--blue-soft); transform: translateY(-2px); }
.btn--outline { background: transparent; color: var(--blue); border: 2px solid var(--blue); }
.btn--outline:hover { background: var(--blue); color: #fff; transform: translateY(-2px); }
.btn--black { background: var(--black); color: #fff; }
.btn--black:hover { background: #000; transform: translateY(-2px); }
.btn--sm { padding: 9px 18px; font-size: 0.8rem; }
.btn--block { width: 100%; }
.btn:active { transform: translateY(0); }

.header { position: sticky; top: 0; z-index: 60; }
.header__nav-bar { background: var(--blue); }
.header__nav-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 10px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: var(--header-h);
}
.brand img { height: 46px; width: auto; }
.nav { display: flex; align-items: center; gap: 2px; flex-wrap: wrap; }
.nav > li { position: relative; }
.nav > li > a, .nav > li > button {
  display: flex;
  align-items: center;
  gap: 5px;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.2px;
  color: #fff;
  padding: 10px 12px;
  border-radius: 6px;
  transition: background 0.2s ease;
  text-transform: uppercase;
}
.nav > li > a:hover, .nav > li > button:hover, .nav > li.is-open > button { background: rgba(255,255,255,0.14); }
.nav__chevron { width: 12px; height: 12px; transition: transform 0.2s ease; }
.nav > li.is-open .nav__chevron { transform: rotate(180deg); }
.nav__mega {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  padding: 12px;
  min-width: 230px;
  display: none;
  z-index: 70;
}
.nav > li.is-open .nav__mega { display: block; }
.nav__mega a {
  display: block;
  padding: 9px 12px;
  border-radius: 8px;
  font-size: 0.83rem;
  font-weight: 700;
  color: var(--ink-soft);
  text-transform: none;
}
.nav__mega a:hover { background: var(--panel); color: var(--blue); }
.burger { display: none; width: 40px; height: 40px; align-items: center; justify-content: center; color: #fff; border-radius: 999px; flex-shrink: 0; }
.burger:hover { background: rgba(255,255,255,0.14); }

.header__info-bar { background: var(--black); }
.header__info-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 10px 24px;
  display: flex;
  align-items: center;
  gap: 26px;
  flex-wrap: wrap;
  font-size: 0.8rem;
  color: #cfd3da;
}
.header__info-inner > a, .header__info-inner > span { display: flex; align-items: center; gap: 7px; }
.header__info-inner svg { width: 15px; height: 15px; color: var(--orange); flex-shrink: 0; }
.header__info-inner a:hover { color: #fff; }
.header__search { margin-left: auto; position: relative; }
.header__search-box {
  display: flex;
  align-items: center;
  background: #fff;
  border: 1px solid #fff;
  border-radius: 999px;
  padding: 5px 5px 5px 16px;
  width: 260px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.header__search-box:focus-within { border-color: var(--orange); box-shadow: 0 0 0 3px rgba(255,122,26,0.18); }
.header__search-box input {
  flex: 1;
  background: transparent;
  border: none;
  color: var(--ink-soft);
  font-family: var(--font);
  font-size: 0.82rem;
  outline: none;
  min-width: 0;
}
.header__search-box input::placeholder { color: var(--ink-soft); }
.header__search-box button {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: transparent;
  color: var(--ink-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.header__search-box button:hover { color: var(--blue); }
.header__search-box svg { width: 14px; height: 14px; }
.search-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: 320px;
  max-height: 420px;
  overflow-y: auto;
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  z-index: 90;
  padding: 8px;
}
.search-dropdown a { display: flex; align-items: center; gap: 12px; padding: 8px; border-radius: 8px; }
.search-dropdown a:hover { background: var(--panel); }
.search-dropdown a img { width: 42px; height: 42px; border-radius: 8px; object-fit: cover; background: var(--panel); flex-shrink: 0; }
.search-dropdown a .no-img { width: 42px; height: 42px; border-radius: 8px; background: var(--panel); flex-shrink: 0; display: flex; align-items: center; justify-content: center; color: var(--ink-faint); }
.search-dropdown a .no-img svg { width: 18px; height: 18px; }
.search-dropdown a span { font-size: 0.82rem; font-weight: 700; color: var(--ink); line-height: 1.3; }
.search-empty { padding: 18px 10px; text-align: center; color: var(--ink-soft); font-size: 0.85rem; }

/* Hero a lo Amazon: tarjetas blancas identicas, 3 por fila, a lo ancho de la pagina */
.hero-panels { max-width: 1900px; margin: 0 auto; padding: 26px 32px; display: grid; grid-template-columns: repeat(6, 1fr); grid-auto-rows: 1fr; gap: 22px; align-items: stretch; }
.hero-card { grid-column: span 2; }
.hero-card:nth-child(4) { grid-column: 2 / span 2; }
.hero-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 20px 20px 18px; display: flex; flex-direction: column; transition: transform 0.2s ease, box-shadow 0.2s ease; }
.hero-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft); }
.hero-card h1, .hero-card h3 { color: var(--ink); font-size: 1.3rem; line-height: 1.25; margin: 0 0 14px; min-height: 2.5em; }
.hero-card__media { position: relative; flex: 0 0 auto; height: 300px; border-radius: var(--radius-md); overflow: hidden; background: var(--blue-soft); }
.hero-card__media img { width: 100%; height: 100%; object-fit: cover; transition: filter 0.25s ease; }
.hero-card:hover .hero-card__media img { filter: brightness(0.7); }
.hero-card__promo { position: absolute; left: 14px; bottom: 14px; margin: 0; background: var(--orange); color: #fff; font-weight: 800; font-size: 0.82rem; padding: 6px 13px; border-radius: 999px; }
.hero-card__link { margin-top: 16px; color: var(--blue); font-weight: 800; font-size: 0.92rem; display: inline-flex; align-items: center; gap: 6px; }
.hero-card__link svg { width: 14px; height: 14px; }
.hero-card:hover .hero-card__link { color: var(--orange); }

.perks { background: var(--panel); }
.perks__grid { max-width: 1220px; margin: 0 auto; padding: 36px 24px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.perk { display: flex; align-items: center; gap: 13px; }
.perk .icon { width: 44px; height: 44px; border-radius: 10px; background: var(--blue-soft); color: var(--blue); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.perk .icon svg { width: 21px; height: 21px; }
.perk strong { display: block; font-size: 0.86rem; color: var(--blue); }
.perk span { font-size: 0.76rem; color: var(--ink-soft); }

.cat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 20px; }
.cat-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; transition: transform 0.2s ease, box-shadow 0.2s ease; }
.cat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft); }
.cat-card__img { aspect-ratio: 4/3; background: var(--blue-soft); overflow: hidden; }
.cat-card__img img { width: 100%; height: 100%; object-fit: cover; }
.cat-card__body { padding: 16px 18px 20px; }
.cat-card__body h3 { font-size: 1rem; }
.cat-card__count { display: inline-block; margin-top: 10px; font-size: 0.72rem; font-weight: 800; color: var(--blue); background: var(--blue-soft); padding: 3px 10px; border-radius: 999px; }

.product-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 270px)); gap: 22px; }
.product-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; display: flex; flex-direction: column; transition: transform 0.2s ease, box-shadow 0.2s ease; }
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft); }
.product-card__img { aspect-ratio: 1/1; background: var(--panel); overflow: hidden; }
.product-card__img img { width: 100%; height: 100%; object-fit: cover; }
.product-card__body { padding: 16px 18px 18px; flex: 1; display: flex; flex-direction: column; }
.product-card__body h3 { font-size: 0.9rem; line-height: 1.35; flex: 1; color: var(--ink); font-weight: 700; }
.product-card .btn { margin-top: 14px; }

.hub-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 22px; }
.hub-card { background: var(--blue); color: #fff; border-radius: var(--radius-lg); padding: 26px 24px; }
.hub-card h3 { color: #fff; font-size: 1.06rem; }
.hub-card p { color: #b9cbe0; font-size: 0.84rem; margin-top: 8px; }
.hub-card ul { margin-top: 16px; display: flex; flex-direction: column; gap: 6px; }
.hub-card ul a { font-size: 0.84rem; font-weight: 700; color: #e3ecf6; display: flex; align-items: center; gap: 6px; }
.hub-card ul a:hover { color: var(--orange); }
.hub-card ul a svg { width: 13px; height: 13px; }

.page-hero { max-width: 1080px; margin: 0 auto; padding: 44px 24px 8px; }
.page-hero .crumbs { font-size: 0.78rem; color: var(--ink-faint); font-weight: 700; margin-bottom: 12px; }
.page-hero .crumbs a { color: var(--ink-soft); }
.page-hero .crumbs a:hover { color: var(--blue); }
.page-hero h1 { font-size: clamp(1.7rem, 3.2vw, 2.3rem); }
.page-hero p { color: var(--ink-soft); font-size: 0.96rem; margin-top: 12px; max-width: 62ch; }

.subcats { display: flex; flex-wrap: wrap; gap: 10px; margin: 24px 0 6px; }
.subcats a { font-size: 0.8rem; font-weight: 700; padding: 8px 15px; border-radius: 999px; border: 1px solid var(--line); background: var(--paper); color: var(--ink-soft); }
.subcats a:hover, .subcats a.active { background: var(--blue); border-color: var(--blue); color: #fff; }

.empty-cat { background: var(--paper); border: 1.5px dashed var(--line); border-radius: var(--radius-lg); padding: 56px 30px; text-align: center; max-width: 560px; margin: 20px auto 0; }
.empty-cat .icon { width: 52px; height: 52px; border-radius: 50%; background: var(--blue-soft); color: var(--blue); display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; }
.empty-cat .icon svg { width: 24px; height: 24px; }
.empty-cat h3 { font-size: 1.05rem; }
.empty-cat p { color: var(--ink-soft); font-size: 0.88rem; margin-top: 8px; }
.empty-cat .btn { margin-top: 18px; }

.pd-wrap { max-width: 1180px; margin: 0 auto; padding: 10px 24px 0; }
.pd { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 46px; }
.pd__img { border-radius: var(--radius-lg); overflow: hidden; background: var(--panel); aspect-ratio: 1/1; box-shadow: var(--shadow-soft); position: sticky; top: 100px; align-self: start; }
.pd__img img { width: 100%; height: 100%; object-fit: cover; }
.pd__title { font-size: clamp(1.3rem, 2.2vw, 1.7rem); text-transform: uppercase; padding-bottom: 14px; border-bottom: 3px solid var(--blue); margin-bottom: 22px; }
.pd-form { background: var(--panel); border-radius: var(--radius-lg); padding: 26px; }
.pd-form__row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.pd-form label { display: block; font-weight: 700; font-size: 0.78rem; margin-bottom: 6px; color: var(--ink-soft); }
.pd-form input, .pd-form textarea {
  width: 100%;
  padding: 11px 13px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  background: #fff;
  font-family: var(--font);
  font-size: 0.9rem;
  color: var(--ink);
  resize: vertical;
}
.pd-form input:focus, .pd-form textarea:focus { outline: 2px solid var(--blue); outline-offset: 1px; }
.pd-form .form-row { margin-bottom: 14px; }
.pd-form .form-note { font-size: 0.74rem; color: var(--ink-faint); margin-top: 10px; }

.specs-wrap { max-width: 1180px; margin: 0 auto; padding: 50px 24px 80px; }
.specs-wrap h2 { font-size: 1.1rem; letter-spacing: 0.5px; text-transform: uppercase; color: var(--ink); border-bottom: 2px solid var(--line); padding-bottom: 14px; margin-bottom: 22px; }
.specs-wrap h3 { font-size: 1.3rem; margin-bottom: 16px; }
.specs-table { width: 100%; border-collapse: collapse; font-size: 0.86rem; }
.specs-table th, .specs-table td { border: 1px solid var(--line); padding: 12px; text-align: left; vertical-align: top; white-space: pre-line; }
.specs-table th { background: var(--panel); font-weight: 800; color: var(--blue); }
.specs-table tr:nth-child(even) td { background: #fafbfc; }
.specs-empty { color: var(--ink-soft); font-size: 0.92rem; background: var(--panel); border-radius: var(--radius-md); padding: 24px; }

.about-strip { background: var(--blue); color: #fff; }
.about-strip__inner { max-width: 1100px; margin: 0 auto; padding: 66px 24px; text-align: center; }
.about-strip .eyebrow { color: var(--orange); }
.about-strip h2 { color: #fff; margin-top: 10px; font-size: clamp(1.6rem, 2.8vw, 2.2rem); }
.about-strip p { color: #c3d4e8; margin: 16px auto 0; max-width: 60ch; font-size: 0.98rem; }

.clients-section { background: var(--panel); padding: 70px 0 76px; overflow: hidden; }
.clients-section__head { max-width: 760px; margin: 38px auto 0; padding: 0 24px; text-align: center; }
.clients-carousel {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}
.clients-carousel__track { display: flex; width: max-content; animation: clients-scroll 48s linear infinite; will-change: transform; }
.clients-carousel__group { display: flex; flex-shrink: 0; gap: 22px; padding-right: 22px; }
.clients-carousel__group li {
  width: clamp(168px, 18vw, 220px);
  height: 120px;
  padding: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: 0 8px 22px rgba(0, 30, 60, 0.07);
}
.clients-carousel__group img { width: 100%; height: 100%; object-fit: contain; }
.clients-carousel:hover .clients-carousel__track { animation-play-state: paused; }

@keyframes clients-scroll {
  to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .clients-carousel { overflow-x: auto; -webkit-mask-image: none; mask-image: none; }
  .clients-carousel__track { animation: none !important; transform: none; }
}

.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 40px; align-items: flex-start; }
.contact-info-card { background: var(--blue); color: #fff; border-radius: var(--radius-lg); padding: 34px 28px; }
.contact-info-card h3 { color: #fff; font-size: 1.15rem; margin-bottom: 18px; }
.contact-info-row { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 18px; }
.contact-info-row svg { width: 18px; height: 18px; color: var(--orange); flex-shrink: 0; margin-top: 2px; }
.contact-info-row strong { display: block; font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.5px; color: #9fb6cf; margin-bottom: 2px; }
.contact-info-row span, .contact-info-row a { color: #fff; font-size: 0.92rem; font-weight: 700; }
.contact-form { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 30px; box-shadow: var(--shadow-soft); }
.form-row { margin-bottom: 16px; }
.form-row label { display: block; font-weight: 700; font-size: 0.8rem; margin-bottom: 6px; }
.form-row input, .form-row textarea {
  width: 100%; padding: 11px 13px; border-radius: var(--radius-sm); border: 1px solid var(--line);
  background: var(--panel); font-family: var(--font); font-size: 0.9rem; color: var(--ink); resize: vertical;
}
.form-row input:focus, .form-row textarea:focus { outline: 2px solid var(--blue); outline-offset: 1px; background: #fff; }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-note { font-size: 0.74rem; color: var(--ink-faint); text-align: center; margin-top: 12px; }

.map-embed { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-soft); margin-top: 42px; }
.map-embed iframe { width: 100%; height: 320px; border: 0; display: block; }

.footer { background: var(--black); color: #b6bac2; padding: 56px 24px 22px; }
.footer__grid { max-width: 1260px; margin: 0 auto; display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr; gap: 34px; }
.footer__brand img { height: 40px; width: auto; margin-bottom: 14px; }
.footer p { color: #8b909b; font-size: 0.85rem; line-height: 1.6; }
.footer h4 { font-family: var(--font); font-size: 0.76rem; letter-spacing: 0.5px; text-transform: uppercase; color: var(--orange); margin-bottom: 14px; }
.footer ul li { margin-bottom: 9px; }
.footer ul li.with-icon { display: flex; align-items: flex-start; gap: 8px; }
.footer ul li svg { width: 14px; height: 14px; flex-shrink: 0; margin-top: 2px; color: var(--orange); }
.footer ul a { color: #a7abb4; font-size: 0.84rem; transition: color 0.2s ease; }
.footer ul a:hover { color: var(--orange); }
.footer__socials { display: flex; gap: 10px; margin-top: 16px; }
.footer__socials a { width: 35px; height: 35px; border-radius: 50%; background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; }
.footer__socials a:hover { background: var(--orange); }
.footer__socials svg { width: 15px; height: 15px; color: #fff; }
.footer__bottom {
  max-width: 1260px; margin: 36px auto 0; padding-top: 18px; border-top: 1px solid rgba(255,255,255,0.08);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; font-size: 0.76rem; color: #646871;
}
.footer__bottom a { color: #93979f; font-weight: 700; }
.footer__bottom a:hover { color: var(--orange); }

.fab-whatsapp {
  position: fixed; right: 20px; bottom: 20px; width: 56px; height: 56px; border-radius: 50%; background: #25d366;
  display: flex; align-items: center; justify-content: center; box-shadow: 0 10px 26px rgba(0,0,0,0.28); z-index: 70;
  transition: transform 0.2s ease;
}
.fab-whatsapp:hover { transform: translateY(-3px); }
.fab-whatsapp svg { width: 27px; height: 27px; }

.fab-shop {
  position: fixed; right: 20px; bottom: 90px; width: 56px; height: 56px; border-radius: 50%; background: var(--blue);
  display: flex; align-items: center; justify-content: center; box-shadow: 0 10px 26px rgba(0,0,0,0.28); z-index: 70;
  transition: transform 0.2s ease, background 0.2s ease;
}
.fab-shop:hover { transform: translateY(-3px); background: var(--blue-dark); }
.fab-shop svg { width: 24px; height: 24px; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.55s ease, transform 0.55s ease; }
.reveal.is-revealed { opacity: 1; transform: translateY(0); }

@media (max-width: 980px) {
  .hero-panels { grid-template-columns: repeat(4, 1fr); }
  .hero-card:nth-child(4) { grid-column: auto / span 2; }
  .hero-card:nth-child(5) { grid-column: 2 / span 2; }
  .hero-card__media { height: 230px; }
  .perks__grid { grid-template-columns: repeat(2, 1fr); }
  .pd { grid-template-columns: 1fr; }
  .pd__img { position: static; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  .nav { display: none; }
  .burger { display: flex; }
  .nav.is-mobile-open {
    display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0;
    background: var(--blue-dark); padding: 8px 20px 18px; gap: 2px; z-index: 65;
  }
  .nav.is-mobile-open > li { width: 100%; }
  .nav.is-mobile-open > li > a, .nav.is-mobile-open > li > button { width: 100%; padding: 12px 6px; border-bottom: 1px solid rgba(255,255,255,0.12); justify-content: space-between; }
  .nav.is-mobile-open .nav__mega { position: static; box-shadow: none; background: transparent; padding: 4px 0 4px 14px; display: none; }
  .nav.is-mobile-open .nav__mega a { color: #cfe0f2; }
  .nav.is-mobile-open > li.is-open .nav__mega { display: block; }
  .header__info-inner { font-size: 0.72rem; gap: 14px; }
  .hero-panels { grid-template-columns: repeat(4, 1fr); padding: 20px; gap: 14px; }
  .hero-card { padding: 14px 14px 13px; }
  .hero-card h1, .hero-card h3 { font-size: 1rem; margin-bottom: 10px; }
  .hero-card__media { height: 160px; }
  .footer__grid { grid-template-columns: 1fr; gap: 28px; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .form-row-2, .pd-form__row-2 { grid-template-columns: 1fr; }
  .perks__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 520px) {
  .section { padding: 50px 20px; }
  .product-grid { grid-template-columns: minmax(230px, 270px); justify-content: center; }
  .clients-section { padding: 52px 0 58px; }
  .clients-section__head { margin-top: 30px; padding: 0 20px; }
  .clients-carousel__group { gap: 14px; padding-right: 14px; }
  .clients-carousel__group li { width: 158px; height: 104px; padding: 10px; }
  .contact-form { padding: 22px; }
  .contact-info-card { padding: 26px 22px; }
  .perks__grid { grid-template-columns: 1fr; }
  .hero-panels { grid-template-columns: 1fr; }
  .hero-card, .hero-card:nth-child(4), .hero-card:nth-child(5) { grid-column: auto; }
  .hero-card__media { height: 210px; }
  .header__search { display: none; }
  .fab-shop { width: 50px; height: 50px; right: 14px; bottom: 82px; }
  .fab-shop svg { width: 21px; height: 21px; }
  .fab-whatsapp { width: 50px; height: 50px; right: 14px; bottom: 16px; }
  .fab-whatsapp svg { width: 24px; height: 24px; }
}
