/* ============================================================
   PROCESA | Tecnología para la Industria Alimentaria
   styles.css — Versión 1.0
   ============================================================ */

/* ── RESET & BASE ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --white:       #FFFFFF;
  --blue:        #1C355E;
  --blue-mid:    #244575;
  --blue-light:  #EEF2F8;
  --red:         #CE0E2D;
  --red-dark:    #a80b24;
  --gray-bg:     #F5F6F7;
  --gray-border: #E2E5EA;
  --gray-text:   #4A4A4A;
  --gray-muted:  #7A8190;

  --font: 'Inter', system-ui, -apple-system, sans-serif;
  --radius: 8px;
  --radius-lg: 14px;
  --shadow-sm: 0 1px 4px rgba(0,0,0,.07);
  --shadow:    0 4px 16px rgba(0,0,0,.09);
  --shadow-lg: 0 8px 32px rgba(0,0,0,.12);

  --header-h: 72px;
  --section-gap: 80px;
}

html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }

body {
  font-family: var(--font);
  color: var(--gray-text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
address { font-style: normal; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

main {
  overflow-x: clip;
  max-width: 100%;
}

/* ── CONTAINER ────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── BUTTONS ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius);
  font-size: .95rem;
  font-weight: 600;
  letter-spacing: .01em;
  transition: background .18s, transform .15s, box-shadow .18s;
  white-space: nowrap;
  cursor: pointer;
  text-decoration: none;
}

.btn--red {
  background: var(--red);
  color: var(--white);
}
.btn--red:hover { background: var(--red-dark); transform: translateY(-1px); box-shadow: 0 4px 14px rgba(206,14,45,.35); }

.btn--blue {
  background: var(--blue);
  color: var(--white);
}
.btn--blue:hover { background: var(--blue-mid); transform: translateY(-1px); box-shadow: 0 4px 14px rgba(28,53,94,.35); }

.btn--outline-dark {
  background: transparent;
  color: var(--blue);
  border: 2px solid var(--blue);
}
.btn--outline-dark:hover { background: var(--blue); color: var(--white); }

.btn--outline {
  background: transparent;
  color: var(--blue);
  border: 2px solid var(--blue);
}
.btn--outline:hover { background: var(--blue); color: var(--white); }

.btn--sm { padding: 9px 16px; font-size: .875rem; }
.btn--lg { padding: 15px 32px; font-size: 1.05rem; }

/* ── SECTION HEADERS ──────────────────────────────────────── */
.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--blue);
  letter-spacing: .02em;
  margin-bottom: 12px;
  text-wrap: balance;
}

.section-rule {
  display: block;
  width: 48px;
  height: 4px;
  background: var(--red);
  border-radius: 2px;
  margin: 0 auto;
}

/* ── HEADER ───────────────────────────────────────────────── */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 1px 8px rgba(0,0,0,.1);
  height: var(--header-h);
}

.header__inner {
  display: flex;
  align-items: center;
  gap: 24px;
  height: 100%;
}

/* LOGO */
.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo__img {
  display: block;
  height: 44px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
}

.logo__img--footer {
  height: 48px;
  max-width: 200px;
}

/* LOGO DISTRIBUIDOR */
.header__distribuidor {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.header__distribuidor-sep {
  display: block;
  width: 1px;
  height: 32px;
  background: var(--gray-border);
}

.header__distribuidor-logo {
  height: 36px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  display: block;
}

/* NAV */
.nav { margin-left: auto; }

.nav__list {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav__link {
  display: block;
  padding: 6px 14px;
  font-size: .9rem;
  font-weight: 500;
  color: var(--gray-text);
  border-radius: 6px;
  transition: color .15s, background .15s;
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transition: transform .2s;
  border-radius: 1px;
}

.nav__link:hover { color: var(--blue); }
.nav__link:hover::after { transform: scaleX(1); }

.nav__link--active { color: var(--blue); font-weight: 600; }
.nav__link--active::after { transform: scaleX(1); }

.header__cta { margin-left: 12px; }

/* HAMBURGER */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  margin-left: auto;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--blue);
  border-radius: 2px;
  transition: transform .25s, opacity .2s;
}

.hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; }
.hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── HERO ─────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 520px;
  padding: 72px 0;
  overflow: hidden;
}

/* Degradé blanco — siempre encima de las slides */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0.97) 0%,
    rgba(255, 255, 255, 0.92) 28%,
    rgba(255, 255, 255, 0.55) 48%,
    rgba(255, 255, 255, 0.15) 62%,
    transparent 78%
  );
  pointer-events: none;
}

/* Contenedor de slides */
.hero__slides {
  position: absolute;
  inset: 0;
  z-index: 1;
}

/* Slide individual */
.hero__slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease;
  /* Ken Burns: paneo suave de derecha a izquierda */
  animation: kenburns 9s ease-in-out infinite;
  animation-play-state: paused;   /* arranca solo cuando está activo */
}

.hero__slide--active {
  opacity: 1;
  animation-play-state: running;
}

@keyframes kenburns {
  0%   { transform: scale(1.06)  translateX(2%); }
  100% { transform: scale(1.12) translateX(-3%); }
}

.hero__inner {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  min-height: 380px;
}

.hero__content {
  max-width: 540px;
}

.hero__title {
  font-size: clamp(1.9rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--blue);
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero__desc {
  font-size: 1rem;
  color: var(--blue);
  opacity: .85;
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 500px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* ── PRODUCTS ─────────────────────────────────────────────── */
.products {
  padding: var(--section-gap) 0;
  background: var(--white);
}

/* CAROUSEL */
.carousel {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
}

.carousel__arrow {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--gray-border);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .15s, border-color .15s, transform .15s;
  z-index: 2;
}

.carousel__arrow:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
  transform: scale(1.05);
}

.carousel__track-wrap {
  overflow: hidden;
  flex: 1;
}

.carousel__track {
  display: flex;
  gap: 18px;
  transition: transform .35s cubic-bezier(.4,0,.2,1);
  will-change: transform;
}

/* PRODUCT CARD */
.product-card {
  flex: 0 0 calc(25% - 14px);
  background: var(--white);
  border: 1px solid var(--gray-border);
  border-radius: var(--radius-lg);
  padding: 20px 16px 16px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow .2s, transform .2s;
  box-shadow: var(--shadow-sm);
}

.product-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--blue);
  color: var(--white);
  font-size: .7rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.product-card__img-wrap {
  width: 100%;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gray-bg);
  border-radius: var(--radius);
  overflow: hidden;
  padding: 16px;
  margin-top: 8px;
}

.product-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-card__name {
  font-size: .88rem;
  font-weight: 700;
  color: var(--blue);
  text-align: center;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: .03em;
}

.product-card__cta {
  width: 100%;
  justify-content: center;
  margin-top: auto;
}

.products__footer {
  text-align: center;
  margin-top: 40px;
}

/* ── WHY / NOSOTROS ───────────────────────────────────────── */
.why {
  padding: 56px 0 64px;
  background: var(--white);
  border-top: 1px solid var(--gray-border);
}

.why__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px 24px;
}

.why-card {
  text-align: center;
  padding: 0 12px;
}

.why-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  width: 80px;
  height: 80px;
  background: var(--blue-light);
  border-radius: var(--radius);
}

.why-card__icon img {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

.why-card__title {
  font-size: .95rem;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 10px;
  line-height: 1.35;
}

.why-card__text {
  font-size: .875rem;
  color: var(--gray-muted);
  line-height: 1.65;
}

/* ── MISSION ──────────────────────────────────────────────── */
.mission {
  padding: var(--section-gap) 0;
  background: var(--white);
}

.accordion-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.accordion {
  border: 1px solid var(--gray-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.accordion__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 22px 24px;
  background: var(--white);
  cursor: pointer;
  transition: background .15s;
}

.accordion__trigger:hover { background: var(--gray-bg); }
.accordion__trigger[aria-expanded="true"] { background: var(--blue); color: var(--white); }
.accordion__trigger[aria-expanded="true"] .accordion__label { color: var(--white); }
.accordion__trigger[aria-expanded="true"] .accordion__chevron { transform: rotate(180deg); color: var(--white); }
.accordion__trigger[aria-expanded="true"] .accordion__icon-wrap { background: rgba(255,255,255,.15); color: var(--white); }

.accordion__trigger-inner {
  display: flex;
  align-items: center;
  gap: 16px;
}

.accordion__icon-wrap {
  width: 48px;
  height: 48px;
  background: var(--blue-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  flex-shrink: 0;
  transition: background .15s, color .15s;
}

.accordion__label {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--blue);
  transition: color .15s;
}

.accordion__chevron {
  color: var(--gray-muted);
  transition: transform .25s, color .15s;
  flex-shrink: 0;
}

.accordion__body {
  padding: 0 24px;
  overflow: hidden;
  max-height: 0;
  transition: max-height .35s ease, padding .25s;
}

.accordion__body:not([hidden]) {
  max-height: 300px;
  padding: 20px 24px;
}

.accordion__body[hidden] { display: block !important; }

.accordion__body p {
  font-size: .95rem;
  color: var(--gray-text);
  line-height: 1.7;
}

/* ── TESTIMONIALS ─────────────────────────────────────────── */
.testimonials {
  padding: var(--section-gap) 0;
  background: var(--white);
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--gray-border);
  border-radius: var(--radius-lg);
  padding: 28px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.testimonial-card__quote {
  color: var(--red);
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 1;
  margin-right: 2px;
}

.testimonial-card__text {
  font-size: .92rem;
  line-height: 1.7;
  color: var(--gray-text);
}

.testimonial-card__footer {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.testimonial-card__client {
  display: block;
  font-size: .9rem;
  font-weight: 700;
  color: var(--blue);
}

.testimonial-card__location {
  display: block;
  font-size: .82rem;
  color: var(--blue-mid);
  opacity: .75;
}

/* ── VENTAJAS ─────────────────────────────────────────────── */
.ventajas {
  padding: var(--section-gap) 0;
  background: var(--blue-light);
}

.ventajas__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.ventajas__list {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.ventaja-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.ventaja-item__icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--blue);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(28,53,94,.18);
}

.ventaja-item__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 6px;
}

.ventaja-item__text {
  font-size: .9rem;
  color: var(--gray-text);
  line-height: 1.65;
}

.ventajas__map {
  display: flex;
  justify-content: center;
}

.venezuela-map-wrap {
  text-align: center;
  width: 100%;
  max-width: 440px;
}

.map-label {
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--blue);
  margin-bottom: 10px;
}

.map-sublabel {
  font-size: .82rem;
  color: var(--gray-muted);
  margin-top: 8px;
}

.venezuela-svg {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  background: rgba(28,53,94,.06);
  padding: 16px;
  filter: drop-shadow(0 6px 24px rgba(28,53,94,.18));
}

/* ── BRANDS ───────────────────────────────────────────────── */
.brands {
  padding: var(--section-gap) 0;
  background: var(--white);
}

.section-sub {
  margin-top: 12px;
  font-size: .95rem;
  color: var(--gray-muted);
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.brands__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.brand-card {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px 24px;
  border: 1.5px solid var(--gray-border);
  border-radius: var(--radius-lg);
  background: var(--white);
  transition: box-shadow .2s, border-color .2s, transform .2s;
  box-shadow: var(--shadow-sm);
}

.brand-card:hover {
  box-shadow: var(--shadow);
  border-color: var(--blue);
  transform: translateY(-3px);
}

.brand-card__logo {
  max-height: 64px;
  max-width: 100%;
  width: auto;
  object-fit: contain;
  filter: none;
  transition: filter .2s;
}

/* ── CTA BAND ─────────────────────────────────────────────── */
.cta-band {
  background: var(--blue);
  padding: 64px 0;
}

.cta-band__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.cta-band__title {
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.25;
  margin-bottom: 10px;
}

.cta-band__desc {
  font-size: 1rem;
  color: rgba(255,255,255,.75);
}

/* ── FOOTER ───────────────────────────────────────────────── */
.footer {
  background: var(--blue);
  padding-top: 56px;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.3fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}

.footer__tagline {
  font-size: .82rem;
  color: rgba(255,255,255,.55);
  margin-top: 14px;
  margin-bottom: 16px;
}

.footer__wa-icon {
  display: inline-flex;
  color: rgba(255,255,255,.6);
  transition: color .15s;
}

.footer__wa-icon:hover { color: var(--white); }

.footer__nav-title {
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(255,255,255,.5);
  margin-bottom: 16px;
}

.footer__nav-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__nav-list a {
  font-size: .9rem;
  color: rgba(255,255,255,.75);
  transition: color .15s;
}

.footer__nav-list a:hover { color: var(--white); }

.footer__contact-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .875rem;
  color: rgba(255,255,255,.75);
  line-height: 1.5;
}

.footer__contact-list svg { flex-shrink: 0; margin-top: 2px; color: rgba(255,255,255,.5); }

.footer__contact-list a {
  color: rgba(255,255,255,.75);
  transition: color .15s;
}

.footer__contact-list a:hover { color: var(--white); }

.footer__bottom {
  padding: 20px 0;
  text-align: center;
}

.footer__bottom p {
  font-size: .78rem;
  color: rgba(255,255,255,.4);
}

/* ── WHATSAPP FLOAT ───────────────────────────────────────── */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 24px;
  z-index: 999;
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: 0 4px 18px rgba(37,211,102,.5);
  transition: transform .2s, box-shadow .2s;
}

.wa-float:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 24px rgba(37,211,102,.65);
}

.wa-float::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: rgba(37,211,102,.2);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: .8; }
  50% { transform: scale(1.2); opacity: 0; }
}

/* ── RESPONSIVE ───────────────────────────────────────────── */

/* Tablet (≤1024px) */
@media (max-width: 1024px) {
  .why__grid { grid-template-columns: repeat(2, 1fr); }

  .ventajas__layout { grid-template-columns: 1fr; gap: 40px; }
  .ventajas__map { order: -1; }
  .venezuela-map-wrap { max-width: 380px; margin: 0 auto; }

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

  .product-card { flex: 0 0 calc(33.33% - 12px); }

  .accordion-grid { grid-template-columns: 1fr; }
}

/* Large tablet / small desktop */
@media (max-width: 900px) {
  .hero {
    min-height: auto;
    padding: 56px 0 48px;
  }

  .hero::before {
    background: linear-gradient(
      to bottom,
      rgba(255, 255, 255, 0.96) 0%,
      rgba(255, 255, 255, 0.88) 55%,
      rgba(255, 255, 255, 0.75) 100%
    );
  }

  .hero__inner {
    min-height: auto;
  }

  .footer__inner { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}

/* Mobile (≤768px) */
@media (max-width: 768px) {
  :root {
    --section-gap: 48px;
    --header-h: 64px;
  }

  .container { padding: 0 20px; }

  /* Header mobile */
  .header { height: var(--header-h); }

  .header__inner { gap: 12px; }

  .logo__img {
    height: 38px;
    max-width: 150px;
  }

  .header__distribuidor-logo {
    height: 28px;
    max-width: 100px;
  }

  .header__distribuidor-sep { height: 24px; }

  .header__cta { display: none; }
  .hamburger { display: flex; }

  .nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    transform: translateX(100%);
    transition: transform .3s cubic-bezier(.4,0,.2,1);
    z-index: 999;
    overflow-y: auto;
    padding: 32px 24px;
    margin-left: 0;
  }

  .nav.is-open { transform: translateX(0); }

  .nav__list {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }

  .nav__link {
    display: block;
    padding: 16px 4px;
    font-size: 1.1rem;
    width: 100%;
    border-bottom: 1px solid var(--gray-border);
  }

  .nav__link::after { bottom: 0; left: 0; right: auto; width: 0; }

  /* Hero */
  .hero {
    min-height: auto;
    padding: 40px 0 36px;
  }

    .hero::before {
    background: linear-gradient(
      to bottom,
      rgba(255, 255, 255, 0.96) 0%,
      rgba(255, 255, 255, 0.88) 55%,
      rgba(255, 255, 255, 0.75) 100%
    );
  }

  .hero__inner {
    min-height: auto;
  }

  .hero__content { max-width: 100%; }

  .hero__title {
    font-size: clamp(1.55rem, 6.5vw, 2rem);
    margin-bottom: 16px;
  }

  .hero__desc {
    font-size: .95rem;
    margin-bottom: 24px;
    max-width: 100%;
  }

  .hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero__actions .btn {
    width: 100%;
    justify-content: center;
    white-space: normal;
    text-align: center;
  }

  /* Section headers */
  .section-header { margin-bottom: 32px; }

  .section-title {
    font-size: clamp(1.15rem, 4.8vw, 1.45rem);
    letter-spacing: .01em;
    line-height: 1.25;
  }

  /* Why */
  .why {
    padding: 40px 0 44px;
  }

  .why__grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .why-card {
    padding: 0;
    max-width: 360px;
    margin: 0 auto;
  }

  .why-card__title { font-size: 1rem; }

  .why-card__text {
    font-size: .9rem;
    padding: 0 4px;
  }

  /* Products */
  .products { padding: 44px 0 var(--section-gap); }

  .carousel { gap: 8px; }

  .product-card { flex: 0 0 calc(50% - 9px); }

  .product-card__name { font-size: .82rem; }

  .btn--sm {
    white-space: normal;
    text-align: center;
    line-height: 1.3;
  }

  /* Testimonials */
  .testimonials__grid { grid-template-columns: 1fr; }

  /* Brands */
  .brands__grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .brand-card { padding: 20px 16px; }
  .brand-card__logo { max-height: 50px; }

  /* CTA band */
  .cta-band { padding: 48px 0; }

  .cta-band__inner { flex-direction: column; text-align: center; }

  .cta-band__title { font-size: clamp(1.15rem, 5vw, 1.45rem); }

  .btn--lg {
    width: 100%;
    justify-content: center;
    white-space: normal;
    text-align: center;
  }

  /* Footer */
  .footer__inner { grid-template-columns: 1fr; gap: 32px; }
}

/* Small mobile (≤480px) */
@media (max-width: 480px) {
  .container { padding: 0 16px; }

  .product-card { flex: 0 0 100%; }

  .carousel__arrow { width: 36px; height: 36px; }

  .wa-float { bottom: 20px; right: 16px; width: 52px; height: 52px; }

  .logo__img {
    height: 34px;
    max-width: 130px;
  }

  .logo__img--footer {
    height: 38px;
    max-width: 150px;
  }

  .why-card__icon img {
    width: 64px;
    height: 64px;
  }

  .why-card__icon {
    width: 64px;
    height: 64px;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  html { scroll-behavior: auto; }
}
