/* ==========================================
   VARIABLES
   ========================================== */
:root {
  --navy:       #0d1e3d;
  --navy-mid:   #162f5e;
  --navy-dark:  #07111f;
  --teal:       #0d9488;
  --teal-light: #14b8a6;
  --white:      #ffffff;
  --gray-50:    #f8fafc;
  --gray-100:   #f1f5f9;
  --gray-200:   #e2e8f0;
  --text:       #0f172a;
  --text-muted: #64748b;
  --radius:     12px;
  --shadow-sm:  0 2px 12px rgba(0,0,0,0.06);
  --shadow:     0 4px 24px rgba(0,0,0,0.09);
  --shadow-lg:  0 8px 40px rgba(0,0,0,0.14);
  --ease:       0.3s ease;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
  font-size: 16px;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, 'Helvetica Neue', Arial, sans-serif;
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a   { text-decoration: none; color: inherit; }
ul  { list-style: none; }

/* ==========================================
   CONTAINER
   ========================================== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ==========================================
   TYPOGRAPHY
   ========================================== */
h1, h2, h3, h4 { line-height: 1.15; font-weight: 700; letter-spacing: -0.02em; }
h1 { font-size: clamp(2rem, 4vw, 3.2rem); }
h2 { font-size: clamp(1.75rem, 3vw, 2.5rem); }
h3 { font-size: 1.15rem; font-weight: 600; }
h4 { font-size: 0.9rem; font-weight: 600; }
p  { line-height: 1.75; color: var(--text-muted); }

.label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.75rem;
}
.label--light { color: var(--teal-light); }

/* ==========================================
   SECTION HEADER
   ========================================== */
.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 4rem;
}
.section-header h2   { margin-top: 0.4rem; margin-bottom: 1rem; }
.section-header p    { font-size: 1.05rem; }
.section-header--left { text-align: left; margin: 0 0 2rem; }
.section-header--left p { max-width: 500px; }

/* ==========================================
   ANIMATIONS
   ========================================== */
@keyframes heroIn {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal[data-delay="1"] { transition-delay: 0.10s; }
.reveal[data-delay="2"] { transition-delay: 0.20s; }
.reveal[data-delay="3"] { transition-delay: 0.30s; }
.reveal[data-delay="4"] { transition-delay: 0.40s; }
.reveal[data-delay="5"] { transition-delay: 0.50s; }
.reveal[data-delay="6"] { transition-delay: 0.60s; }

/* ==========================================
   BUTTONS
   ========================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.72rem 1.6rem;
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--ease);
  white-space: nowrap;
}

.btn--primary {
  background: linear-gradient(135deg, var(--teal) 0%, #0b8a7e 100%);
  color: var(--white);
  border-color: var(--teal);
  letter-spacing: 0.02em;
}
.btn--primary:hover {
  background: linear-gradient(135deg, #0b8a7e 0%, #097a70 100%);
  border-color: #0b7a70;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(13,148,136,0.4);
}

.btn--ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.45);
}
.btn--ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn--teal {
  background: linear-gradient(135deg, var(--teal) 0%, #0b8a7e 100%);
  color: var(--white);
  border-color: var(--teal);
  letter-spacing: 0.02em;
}
.btn--teal:hover {
  background: linear-gradient(135deg, var(--teal-light) 0%, var(--teal) 100%);
  border-color: var(--teal-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(13,148,136,0.45);
}

.btn--white {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}
.btn--white:hover {
  background: var(--gray-100);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.btn--outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.55);
}
.btn--outline-white:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
  transform: translateY(-2px);
}

/* ==========================================
   HEADER
   ========================================== */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: 84px;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(14,30,62,0.08);
  box-shadow: 0 1px 0 rgba(14,30,62,0.04);
  transition: box-shadow var(--ease), background var(--ease);
}
.header.scrolled {
  background: rgba(255,255,255,0.99);
  box-shadow: 0 4px 28px rgba(14,30,62,0.11);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  height: 84px;
}

.header__logo img {
  width: 230px;
  height: auto;
  max-height: 78px;
  object-fit: contain;
  transform: scale(1.25);
  transform-origin: left center;
}

/* Botón secundario del CTA final — duplica la misma acción */
.cta-btn-secondary { display: none; }

.header__nav-list {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.header__nav-list a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text);
  transition: color var(--ease);
  position: relative;
  padding-bottom: 2px;
}
.header__nav-list a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 2px;
  background: var(--teal);
  border-radius: 2px;
  transition: width var(--ease);
}
.header__nav-list a:hover { color: var(--teal); }
.header__nav-list a:hover::after { width: 100%; }

.header__right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.header__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  border-radius: 6px;
}
.header__hamburger span {
  display: block;
  width: 21px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--ease);
}
.header__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.header__hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.header__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ==========================================
   HERO
   ========================================== */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
}

.hero__content {
  background: linear-gradient(145deg, var(--navy-dark) 0%, var(--navy) 45%, var(--navy-mid) 100%);
  display: flex;
  align-items: center;
  padding: calc(84px + 5.5rem) 5rem 5.5rem;
  position: relative;
  overflow: hidden;
}

/* decorative glows */
.hero__content::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(13,148,136,0.14) 0%, transparent 60%);
  bottom: -180px; right: -160px;
  pointer-events: none;
}
.hero__content::after {
  content: '';
  position: absolute;
  width: 320px; height: 320px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.05);
  top: 60px; right: 40px;
  pointer-events: none;
}

.hero__image {
  position: relative;
  overflow: hidden;
}
.hero__image::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(7,17,31,0.55) 0%, transparent 40%),
    linear-gradient(to top, rgba(7,17,31,0.35) 0%, transparent 50%);
  pointer-events: none;
}

.hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal-light);
  margin-bottom: 1.25rem;
  animation: heroIn 0.7s ease 0.1s both;
}
.hero__tag::before {
  content: '';
  display: block;
  width: 22px; height: 2px;
  background: var(--teal-light);
  flex-shrink: 0;
}

.hero__headline {
  color: var(--white);
  max-width: 540px;
  margin-bottom: 1.75rem;
  line-height: 1.1;
  letter-spacing: -0.03em;
  animation: heroIn 0.7s ease 0.22s both;
}

.hero__sub {
  color: rgba(255,255,255,0.65);
  font-size: 1.05rem;
  max-width: 460px;
  margin-bottom: 2.25rem;
  line-height: 1.7;
  animation: heroIn 0.7s ease 0.36s both;
}

.hero__bullets {
  margin-bottom: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  animation: heroIn 0.7s ease 0.5s both;
}
.hero__bullets li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255,255,255,0.78);
  font-size: 0.9rem;
  font-weight: 500;
}
.hero__bullets li::before {
  content: '';
  display: block;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--teal-light);
  flex-shrink: 0;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: heroIn 0.7s ease 0.64s both;
}

.hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

/* ==========================================
   POSITIONING
   ========================================== */
.positioning {
  padding: 7rem 0;
  background: var(--white);
}
.positioning__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.positioning__text h2 {
  margin: 0.5rem 0 1.5rem;
}
.positioning__text p {
  margin-bottom: 1rem;
  font-size: 1rem;
}
.positioning__text p:last-child { margin-bottom: 0; }

.positioning__image {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: 0 20px 56px rgba(0,0,0,0.13);
}
.positioning__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ==========================================
   SOLUTIONS
   ========================================== */
.solutions {
  padding: 7rem 0;
  background: var(--gray-50);
}
.solutions__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.solution-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.25rem 1.75rem;
  box-shadow: var(--shadow-sm);
  border-top: 3px solid transparent;
  transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
}
.solution-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-top-color: var(--teal);
}

.solution-card__icon {
  width: 46px; height: 46px;
  background: rgba(13,148,136,0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--teal);
}
.solution-card h3 {
  color: var(--text);
  margin-bottom: 0.65rem;
}
.solution-card p { font-size: 0.88rem; line-height: 1.65; }

/* ==========================================
   PRODUCT
   ========================================== */
.product {
  padding: 7rem 0;
  background: var(--navy);
  background-image:
    linear-gradient(rgba(255,255,255,0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px);
  background-size: 44px 44px;
}
.product__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.product__text h2   { color: var(--white); margin: 0.5rem 0 1.5rem; }
.product__text > p  { color: rgba(255,255,255,0.62); font-size: 1rem; margin-bottom: 2rem; }

.product__points {
  margin-bottom: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.product__points li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: rgba(255,255,255,0.82);
  font-size: 0.95rem;
  font-weight: 500;
}
.product__points li::before {
  content: '';
  display: block;
  width: 20px; height: 2px;
  background: var(--teal-light);
  flex-shrink: 0;
}

.product__visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.product__img-card {
  background: linear-gradient(145deg, rgba(255,255,255,0.05) 0%, rgba(13,148,136,0.1) 60%, rgba(7,17,31,0.2) 100%);
  border: 1px solid rgba(20,184,166,0.18);
  border-radius: 28px;
  padding: 1.75rem;
  box-shadow:
    0 0 0 1px rgba(20,184,166,0.08),
    0 12px 56px rgba(0,0,0,0.4),
    0 0 80px rgba(13,148,136,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  position: relative;
  overflow: hidden;
}
.product__img-card::before {
  content: '';
  position: absolute;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(20,184,166,0.1) 0%, transparent 65%);
  bottom: -80px; right: -60px;
  pointer-events: none;
}

.product__img {
  width: 100%;
  max-width: 620px;
  height: auto;
  max-height: 520px;
  object-fit: contain;
  display: block;
  position: relative;
  z-index: 1;
}

.product__badge {
  position: relative;
  width: 100%;
  max-width: 340px;
  padding: 3.5rem 2.5rem;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(255,255,255,0.04) 0%, rgba(13,148,136,0.12) 100%);
  border: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  overflow: hidden;
}

.product__badge-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(20,184,166,0.18);
  pointer-events: none;
}
.product__badge-ring--1 { width: 220px; height: 220px; top: -60px; right: -60px; }
.product__badge-ring--2 { width: 150px; height: 150px; bottom: -40px; left: -40px; border-color: rgba(255,255,255,0.06); }

.product__badge-content { position: relative; z-index: 1; }
.product__badge-eyebrow {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 0.75rem;
}
.product__badge-name {
  display: block;
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--teal-light);
  line-height: 1;
  margin-bottom: 1rem;
}
.product__badge-brand {
  display: block;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  font-style: italic;
}

/* ==========================================
   BRANDS
   ========================================== */
.brands {
  padding: 7rem 0;
  background: var(--white);
}
.brands__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.brand-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.25rem 2.5rem;
  border-radius: 14px;
  border: 1px solid var(--gray-200);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: border-color var(--ease), box-shadow var(--ease), transform var(--ease);
  min-height: 108px;
}
.brand-item:hover {
  box-shadow: 0 6px 28px rgba(0,0,0,0.1);
  border-color: rgba(13,148,136,0.25);
  transform: translateY(-3px);
}
.brand-item img {
  height: 40px;
  max-width: 150px;
  object-fit: contain;
  transition: transform var(--ease), filter var(--ease);
}
.brand-item:hover img {
  transform: scale(1.04);
  filter: drop-shadow(0 4px 10px rgba(0,0,0,0.1));
}

/* ==========================================
   DIFFERENTIAL
   ========================================== */
.differential {
  padding: 7rem 0;
  background: var(--gray-50);
}
.differential__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.differential__image-wrap {
  position: relative;
}
.differential__image {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 3/4;
  box-shadow: 0 20px 56px rgba(0,0,0,0.16);
  position: relative;
}
.differential__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.differential__image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7,17,31,0.82) 0%, transparent 55%);
}
.differential__caption {
  position: absolute;
  bottom: 1.75rem;
  left: 1.75rem;
  right: 1.75rem;
  z-index: 1;
}
.differential__caption p {
  color: rgba(255,255,255,0.88);
  font-size: 0.88rem;
  font-weight: 500;
  line-height: 1.45;
}

.differential__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
  margin-top: 2rem;
}

.diff-card {
  background: var(--white);
  border-radius: 10px;
  padding: 1.4rem 1.25rem;
  box-shadow: var(--shadow-sm);
  transition: transform var(--ease), box-shadow var(--ease);
}
.diff-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.diff-card__icon {
  width: 34px; height: 34px;
  background: rgba(13,148,136,0.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
  color: var(--teal);
}
.diff-card h4 {
  color: var(--text);
  line-height: 1.4;
}

/* ==========================================
   CTA FINAL
   ========================================== */
.cta-final {
  padding: 7rem 0;
  background: linear-gradient(140deg, var(--navy) 0%, #1a3a6b 55%, #0b5c58 100%);
  position: relative;
  overflow: hidden;
}
.cta-final::before {
  content: '';
  position: absolute;
  width: 700px; height: 700px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.04);
  top: -280px; right: -200px;
  pointer-events: none;
}

.cta-final__inner {
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
  position: relative;
}
.cta-final__inner h2 { color: var(--white); margin: 0.5rem 0 1rem; }
.cta-final__inner p  { color: rgba(255,255,255,0.62); font-size: 1.05rem; margin-bottom: 2.5rem; }

.cta-final__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
  background: var(--navy-dark);
  border-top: 1px solid rgba(255,255,255,0.07);
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 2rem 0;
  flex-wrap: wrap;
}

.footer__logo img {
  height: 44px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1) opacity(0.9);
  display: block;
}

.footer__info {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer__wa {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--teal-light);
  transition: color var(--ease);
}
.footer__wa:hover { color: var(--teal); }
.footer__wa svg { flex-shrink: 0; }

.footer__location {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.83rem;
  color: rgba(255,255,255,0.42);
}
.footer__location svg { flex-shrink: 0; }

.footer__copy {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.2);
  white-space: nowrap;
}

/* ==========================================
   RESPONSIVE — TABLET 1024px
   ========================================== */
@media (max-width: 1024px) {
  .solutions__grid { grid-template-columns: repeat(2, 1fr); }
  .brands__grid    { grid-template-columns: repeat(2, 1fr); }
  .hero__content   { padding: calc(84px + 4rem) 3.5rem 4rem; }
  .header__logo img { width: 200px; max-height: 70px; }
}

/* ==========================================
   RESPONSIVE — MOBILE 768px
   ========================================== */
@media (max-width: 768px) {

  /* ---- Header ---- */
  .header__logo img {
    width: 185px;
    height: auto;
    max-height: 64px;
    transform: scale(1.25);
    transform-origin: left center;
  }
  .header__cta       { display: none; }
  .header__hamburger { display: flex; }

  .header__nav {
    display: none;
    position: fixed;
    top: 84px; left: 0; right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
    padding: 0.85rem 1.75rem 1.25rem;
    box-shadow: 0 8px 28px rgba(0,0,0,0.1);
  }
  .header__nav.open { display: block; }
  .header__nav-list  { flex-direction: column; align-items: flex-start; gap: 0; }
  .header__nav-list li { width: 100%; border-bottom: 1px solid var(--gray-100); }
  .header__nav-list a  { display: block; padding: 0.75rem 0; font-size: 0.9rem; }

  /* ---- Typography ---- */
  h1 { font-size: 2rem; line-height: 1.08; }
  h2 { font-size: 1.8rem; line-height: 1.1; }
  p  { font-size: 1rem; line-height: 1.55; }
  .label { font-size: 0.65rem; letter-spacing: 0.08em; margin-bottom: 0.5rem; }

  /* ---- Hero ---- */
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero__content {
    padding: calc(84px + 2.25rem) 1.5rem 2.75rem;
    min-height: 100svh;
  }
  .hero__image { display: none; }
  .hero__tag   { margin-bottom: 0.75rem; font-size: 0.65rem; }
  .hero__headline { margin-bottom: 1rem; }
  .hero__sub  { font-size: 1rem; margin-bottom: 1.25rem; line-height: 1.55; }
  .hero__bullets { gap: 0.45rem; margin-bottom: 1.75rem; }
  .hero__bullets li { font-size: 0.9rem; gap: 0.6rem; }
  .hero__btn-secondary { display: none; }
  .hero__actions { flex-direction: column; gap: 0.65rem; }
  .hero__actions .btn { text-align: center; justify-content: center; width: 100%; max-width: 300px; }

  /* ---- Positioning ---- */
  .positioning { padding: 3.5rem 0; }
  .positioning__inner { grid-template-columns: 1fr; gap: 1.75rem; }
  .positioning__image { order: -1; aspect-ratio: 16/9; }
  .positioning__text h2 { margin-bottom: 1rem; }
  .positioning__text p  { font-size: 0.98rem; margin-bottom: 0.75rem; }

  /* ---- Solutions ---- */
  .solutions { padding: 3.5rem 0; }
  .solutions__grid { grid-template-columns: 1fr; gap: 0.75rem; }
  .section-header { margin-bottom: 2rem; }
  .solution-card { padding: 1.25rem 1.2rem; }
  .solution-card__icon { width: 34px; height: 34px; border-radius: 8px; margin-bottom: 0.85rem; }
  .solution-card__icon svg { width: 18px; height: 18px; }
  .solution-card h3 { font-size: 0.95rem; margin-bottom: 0.35rem; }
  .solution-card p  { font-size: 0.875rem; line-height: 1.5; }

  /* ---- ATTUNE ---- */
  .product { padding: 3.5rem 0; }
  .product__inner { grid-template-columns: 1fr; gap: 1.75rem; }
  .product__visual { order: 1; }
  .product__img-card { padding: 1.25rem; }
  .product__img { max-height: 260px; max-width: 100%; }
  .product__text h2 { margin-bottom: 1rem; }
  .product__text > p { font-size: 0.98rem; margin-bottom: 1.5rem; }
  .product__points { gap: 0.6rem; margin-bottom: 2rem; }
  .product__points li { font-size: 0.875rem; }

  /* ---- Brands ---- */
  .brands { padding: 3.5rem 0; }
  .brands__grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
  .brand-item { padding: 1.1rem 1.25rem; min-height: 72px; }
  .brand-item img { height: 30px; }
  .brand-item img[alt="AlloSource"] { height: 42px; }

  /* ---- Differential ---- */
  .differential { padding: 3.5rem 0; }
  .differential__inner { grid-template-columns: 1fr; gap: 1.75rem; }
  .differential__image-wrap { order: -1; }
  .differential__image { aspect-ratio: 4/3; height: auto; margin-bottom: 1.5rem; }
  .differential__image img { width: 100%; height: 100%; object-fit: cover; object-position: center center; }
  .differential__content .section-header--left h2 { font-size: 1.85rem; line-height: 1.12; }
  .differential__content .section-header--left p { font-size: 1rem; line-height: 1.5; margin-bottom: 1rem; }
  .differential__grid  { grid-template-columns: 1fr 1fr; gap: 0.85rem; margin-top: 1rem; }
  .diff-card { padding: 1.25rem; }
  .diff-card__icon { width: 28px; height: 28px; margin-bottom: 0.5rem; }
  .diff-card__icon svg { width: 14px; height: 14px; }
  .diff-card h4 { font-size: 0.95rem; line-height: 1.3; }

  /* ---- CTA Final ---- */
  .cta-final { padding: 3.5rem 0; }
  .cta-final__inner h2 { margin-bottom: 0.75rem; }
  .cta-final__inner p  { font-size: 0.95rem; margin-bottom: 1.75rem; }
  .cta-final__actions  { flex-direction: column; align-items: center; }
  .cta-final__actions .btn { width: 100%; max-width: 290px; justify-content: center; }

  /* ---- Footer ---- */
  .footer__inner { flex-direction: column; align-items: flex-start; gap: 0.9rem; padding: 1.35rem 0; }
  .footer__info  { flex-direction: column; align-items: flex-start; gap: 0.6rem; }
  .footer__logo img { height: 34px; }
  .footer__wa    { font-size: 0.85rem; }
  .footer__location { font-size: 0.78rem; }
  .footer__copy  { order: 10; margin-top: 0.2rem; font-size: 0.72rem; }
}

/* ==========================================
   RESPONSIVE — SMALL MOBILE 480px
   ========================================== */
@media (max-width: 480px) {
  h1 { font-size: 1.85rem; }
  h2 { font-size: 1.65rem; }

  .container { padding: 0 1.25rem; }
  .hero__content { padding: calc(84px + 2rem) 1.25rem 2.5rem; }
  .differential__grid { grid-template-columns: 1fr; }
  .brands__grid { grid-template-columns: 1fr; }
}

/* FIX MOBILE DIFFERENTIAL IMAGE - FORCE */
@media (max-width: 768px) {
  .differential__image,
  .differential__image-wrap,
  .differential__image img {
    max-height: none !important;
  }

  .differential__image {
    aspect-ratio: 4 / 3 !important;
    height: auto !important;
    min-height: 300px !important;
    overflow: hidden !important;
  }

  .differential__image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center 38% !important;
  }
}

@media (max-width: 480px) {
  .differential__image {
    aspect-ratio: 1 / 1 !important;
    min-height: 340px !important;
  }

  .differential__image img {
    object-position: center 42% !important;
  }
}

/* FORCE HEADER LOGO SIZE */
.header__logo img,
.logo img,
.nav__logo img,
.site-logo img {
  width: 260px !important;
  max-width: 260px !important;
  height: auto !important;
  max-height: 92px !important;
  object-fit: contain !important;
  transform: scale(1.35) !important;
  transform-origin: left center !important;
}

.header__logo,
.logo,
.nav__logo,
.site-logo {
  min-width: 260px !important;
  overflow: visible !important;
}

@media (max-width: 768px) {
  .header__logo img,
  .logo img,
  .nav__logo img,
  .site-logo img {
    width: 205px !important;
    max-width: 205px !important;
    max-height: 72px !important;
    transform: scale(1.3) !important;
  }

  .header__logo,
  .logo,
  .nav__logo,
  .site-logo {
    min-width: 205px !important;
  }
}

@media (max-width: 480px) {
  .header__logo img,
  .logo img,
  .nav__logo img,
  .site-logo img {
    width: 190px !important;
    max-width: 190px !important;
    max-height: 68px !important;
    transform: scale(1.28) !important;
  }

  .header__logo,
  .logo,
  .nav__logo,
  .site-logo {
    min-width: 190px !important;
  }
}

/* FORCE HEADER LOGO MUCH BIGGER */
.header__logo img,
.logo img,
.nav__logo img,
.site-logo img,
.header img[alt*="AO"],
.header img[alt*="logo"],
.navbar img[alt*="AO"] {
  width: 340px !important;
  max-width: 340px !important;
  height: auto !important;
  max-height: 120px !important;
  object-fit: contain !important;
  transform: scale(1.7) !important;
  transform-origin: left center !important;
}

.header__logo,
.logo,
.nav__logo,
.site-logo {
  min-width: 300px !important;
  overflow: visible !important;
}

@media (max-width: 768px) {
  .header__logo img,
  .logo img,
  .nav__logo img,
  .site-logo img,
  .header img[alt*="AO"],
  .header img[alt*="logo"],
  .navbar img[alt*="AO"] {
    width: 250px !important;
    max-width: 250px !important;
    max-height: 95px !important;
    transform: scale(1.55) !important;
  }

  .header__logo,
  .logo,
  .nav__logo,
  .site-logo {
    min-width: 220px !important;
  }
}

@media (max-width: 480px) {
  .header__logo img,
  .logo img,
  .nav__logo img,
  .site-logo img,
  .header img[alt*="AO"],
  .header img[alt*="logo"],
  .navbar img[alt*="AO"] {
    width: 225px !important;
    max-width: 225px !important;
    max-height: 88px !important;
    transform: scale(1.5) !important;
  }

  .header__logo,
  .logo,
  .nav__logo,
  .site-logo {
    min-width: 200px !important;
  }
}

/* FINAL HEADER POSITION + MOBILE LOGO FIX */

/* Desktop: keep current logo size, only move header content closer to the edges */
@media (min-width: 769px) {
  .header__inner,
  .container.header__inner {
    max-width: none !important;
    width: 100% !important;
    padding-left: 5vw !important;
    padding-right: 5vw !important;
  }

  .header__logo img {
    width: 170px !important;
    max-width: 170px !important;
    max-height: 60px !important;
    transform: none !important;
  }
}

/* Mobile: make logo clearly bigger */
@media (max-width: 768px) {
  .header {
    height: 92px !important;
  }

  .header__inner,
  .container.header__inner {
    height: 92px !important;
    padding-left: 28px !important;
    padding-right: 28px !important;
  }

  .header__logo,
  .header__logo a {
    min-width: 230px !important;
    width: 230px !important;
    overflow: visible !important;
  }

  .header__logo img {
    width: 230px !important;
    max-width: 230px !important;
    max-height: 90px !important;
    height: auto !important;
    transform: scale(1.45) !important;
    transform-origin: left center !important;
    object-fit: contain !important;
  }

  .header__hamburger {
    transform: scale(1.05) !important;
  }
}

@media (max-width: 480px) {
  .header {
    height: 96px !important;
  }

  .header__inner,
  .container.header__inner {
    height: 96px !important;
    padding-left: 26px !important;
    padding-right: 26px !important;
  }

  .header__logo,
  .header__logo a {
    min-width: 220px !important;
    width: 220px !important;
  }

  .header__logo img {
    width: 220px !important;
    max-width: 220px !important;
    max-height: 88px !important;
    transform: scale(1.55) !important;
  }
}

/* MOVE HEADER A BIT MORE TO THE LEFT WITHOUT CHANGING LOGO SIZE */

/* Desktop */
@media (min-width: 769px) {
  .header__inner,
  .container.header__inner {
    padding-left: 2.2vw !important;
    padding-right: 5vw !important;
  }
}

/* Tablet / Mobile */
@media (max-width: 768px) {
  .header__inner,
  .container.header__inner {
    padding-left: 16px !important;
    padding-right: 24px !important;
  }

  .header__logo,
  .header__logo a {
    margin-left: 0 !important;
    padding-left: 0 !important;
  }
}

/* Small phones */
@media (max-width: 480px) {
  .header__inner,
  .container.header__inner {
    padding-left: 12px !important;
    padding-right: 20px !important;
  }
}

/* FINAL FIX: BIG LOGO + LEFT POSITION */

/* PC */
@media (min-width: 769px) {
  .header__inner,
  .container.header__inner {
    max-width: none !important;
    width: 100% !important;
    padding-left: 1.5vw !important;
    padding-right: 5vw !important;
  }

  .header__logo,
  .header__logo a {
    width: 300px !important;
    min-width: 300px !important;
    overflow: visible !important;
  }

  .header__logo img {
    width: 260px !important;
    max-width: 260px !important;
    max-height: 90px !important;
    height: auto !important;
    transform: none !important;
    object-fit: contain !important;
  }
}

/* CELULAR */
@media (max-width: 768px) {
  .header__inner,
  .container.header__inner {
    max-width: none !important;
    width: 100% !important;
    padding-left: 10px !important;
    padding-right: 24px !important;
  }

  .header__logo,
  .header__logo a {
    width: 260px !important;
    min-width: 260px !important;
    overflow: visible !important;
  }

  .header__logo img {
    width: 260px !important;
    max-width: 260px !important;
    max-height: 95px !important;
    height: auto !important;
    transform: none !important;
    object-fit: contain !important;
  }
}

/* CELULAR PEQUEÑO */
@media (max-width: 480px) {
  .header__inner,
  .container.header__inner {
    padding-left: 8px !important;
    padding-right: 22px !important;
  }

  .header__logo,
  .header__logo a {
    width: 245px !important;
    min-width: 245px !important;
  }

  .header__logo img {
    width: 245px !important;
    max-width: 245px !important;
    max-height: 90px !important;
  }
}

/* HERO BACKGROUND IMAGE */
.hero__content {
  background-image:
    linear-gradient(90deg, rgba(7, 17, 31, 0.92) 0%, rgba(13, 30, 61, 0.88) 48%, rgba(13, 30, 61, 0.72) 100%),
    url("assets/hero-bg-attune.png") !important;
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
}

@media (max-width: 768px) {
  .hero__content {
    background-image:
      linear-gradient(180deg, rgba(7, 17, 31, 0.94) 0%, rgba(13, 30, 61, 0.88) 55%, rgba(13, 30, 61, 0.82) 100%),
      url("assets/hero-bg-attune.png") !important;
    background-size: cover !important;
    background-position: center top !important;
  }
}

/* LIGHTER HERO BACKGROUND OVERRIDE */
.hero,
#inicio.hero {
  background-image:
    linear-gradient(
      90deg,
      rgba(7, 17, 31, 0.58) 0%,
      rgba(13, 30, 61, 0.46) 42%,
      rgba(13, 30, 61, 0.22) 100%
    ),
    url("assets/hero-bg-attune.png") !important;
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
}

@media (max-width: 768px) {
  .hero,
  #inicio.hero {
    background-image:
      linear-gradient(
        180deg,
        rgba(7, 17, 31, 0.62) 0%,
        rgba(13, 30, 61, 0.48) 55%,
        rgba(13, 30, 61, 0.32) 100%
      ),
      url("assets/hero-bg-attune.png") !important;
    background-position: center center !important;
    background-size: cover !important;
  }
}

/* HERO BG - MUCH LIGHTER OVERLAY */
.hero,
#inicio.hero {
  background-image:
    linear-gradient(
      90deg,
      rgba(7, 17, 31, 0.34) 0%,
      rgba(13, 30, 61, 0.24) 42%,
      rgba(13, 30, 61, 0.08) 100%
    ),
    url("assets/hero-bg-attune.png") !important;
  background-size: cover !important;
  background-position: left center !important;
  background-repeat: no-repeat !important;
}

@media (max-width: 768px) {
  .hero,
  #inicio.hero {
    background-image:
      linear-gradient(
        180deg,
        rgba(7, 17, 31, 0.44) 0%,
        rgba(13, 30, 61, 0.28) 55%,
        rgba(13, 30, 61, 0.14) 100%
      ),
      url("assets/hero-bg-attune.png") !important;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
  }
}

/* HERO BACKGROUND - MUCH LIGHTER */
.hero,
#inicio.hero {
  position: relative !important;
  overflow: hidden !important;
}

.hero::before,
#inicio.hero::before {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  z-index: 0 !important;
  pointer-events: none !important;
  background-image:
    linear-gradient(
      90deg,
      rgba(7, 17, 31, 0.16) 0%,
      rgba(7, 17, 31, 0.10) 28%,
      rgba(7, 17, 31, 0.04) 52%,
      rgba(7, 17, 31, 0.00) 100%
    ),
    url("assets/hero-bg-attune.png") !important;
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
}

.hero > *,
#inicio.hero > * {
  position: relative !important;
  z-index: 1 !important;
}

@media (max-width: 768px) {
  .hero::before,
  #inicio.hero::before {
    background-image:
      linear-gradient(
        180deg,
        rgba(7, 17, 31, 0.18) 0%,
        rgba(7, 17, 31, 0.10) 45%,
        rgba(7, 17, 31, 0.03) 100%
      ),
      url("assets/hero-bg-attune.png") !important;
    background-position: center center !important;
  }
}
