/* ════════════════════════════════════════════════
   YANAKURI OIL — Landing Page
   Modern · Minimal · Full-width responsive
   ════════════════════════════════════════════════ */

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

:root {
  --navy:      #0B1A3D;
  --navy-mid:  #142B5C;
  --navy-lt:   #1C3568;
  --gold:      #C9A84C;
  --gold-lt:   #DFC06A;
  --gold-dk:   #A07B28;
  --white:     #FFFFFF;
  --bg-light:  #F6F5F2;
  --bg-warm:   #EEECE6;
  --charcoal:  #141428;
  --text:      #2A2A38;
  --text-mid:  #5C5C72;
  --text-lt:   #8E8EA4;
  --border:    rgba(0, 0, 0, 0.07);
  --border-lt: rgba(255, 255, 255, 0.1);
  --radius-sm: 6px;
  --radius:    12px;
  --radius-lg: 18px;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05);
  --shadow:    0 8px 32px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.12);
  --font-display: "Barlow Condensed", sans-serif;
  --font-body: "Inter", sans-serif;
  --transition: 0.25s ease;
  --nav-h: 72px;
  --pad-x: clamp(20px, 5vw, 80px);
  --container: 1440px;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: clamp(15px, 1.05vw, 16px);
  line-height: 1.65;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font-family: inherit; }

/* ─── Layout — full width ─────────────────────── */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
}

.container-narrow {
  max-width: 900px;
}

.section {
  width: 100%;
  padding: clamp(64px, 8vw, 112px) 0;
}

.section-light { background: var(--bg-light); }
.section-dark  { background: var(--navy); }
.section-navy  { background: var(--navy); }
.section-faq   { background: var(--white); }

/* ─── Section headers ─────────────────────────── */
.section-header {
  margin-bottom: clamp(40px, 5vw, 64px);
  max-width: 720px;
}

.section-header--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-header--center .section-desc {
  margin-left: auto;
  margin-right: auto;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-dk);
  margin-bottom: 14px;
}

.section-tag-light { color: var(--gold-lt); }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 700;
  line-height: 1.08;
  color: var(--charcoal);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.section-title.light { color: var(--white); }

.section-desc {
  font-size: clamp(16px, 1.4vw, 18px);
  color: var(--text-mid);
  max-width: 580px;
  line-height: 1.75;
}

.section-desc.light { color: rgba(255, 255, 255, 0.62); }

/* ─── Buttons ─────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--gold);
  color: var(--navy);
  font-size: 15px;
  font-weight: 600;
  padding: 15px 30px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  white-space: nowrap;
}

.btn-primary:hover {
  background: var(--gold-lt);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201, 168, 76, 0.35);
}

.btn-primary:active { transform: translateY(0); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: transparent;
  color: rgba(255, 255, 255, 0.8);
  font-size: 15px;
  font-weight: 500;
  padding: 15px 24px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.22);
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.35);
}

.btn-nav {
  background: var(--gold) !important;
  color: var(--navy) !important;
  font-weight: 600 !important;
  padding: 10px 22px !important;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
}

.btn-nav:hover { background: var(--gold-lt) !important; }

/* ─── Reveal ──────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay   { transition-delay: 0.12s; }
.reveal-delay-2 { transition-delay: 0.24s; }
.reveal-delay-3 { transition-delay: 0.36s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}


/* ════════════════════════════════════════════════
   NAVBAR
   ════════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000;
  padding: 18px 0;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
}

.navbar.scrolled {
  background: rgba(11, 26, 61, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06);
  padding: 12px 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.logo-img {
  height: 52px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
  display: block;
  mix-blend-mode: lighten;
}

.logo-img-sm {
  height: 44px;
}

.logo-name {
  display: block;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.06em;
  line-height: 1.1;
}

.logo-sub {
  display: block;
  font-size: 10px;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.06em;
  line-height: 1.2;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.5vw, 36px);
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  transition: color var(--transition);
  white-space: nowrap;
}

.nav-links a:hover { color: var(--gold); }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 1001;
}

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

.burger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--navy);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
  padding: var(--pad-x);
}

.mobile-menu.open {
  display: flex;
  opacity: 1;
  pointer-events: all;
}

.mobile-menu a {
  font-family: var(--font-display);
  font-size: clamp(24px, 6vw, 32px);
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.03em;
  transition: color var(--transition);
}

.mobile-menu a:hover { color: var(--gold); }

.btn-mobile-cta {
  background: var(--gold) !important;
  color: var(--navy) !important;
  padding: 14px 40px !important;
  border-radius: var(--radius) !important;
  font-size: 18px !important;
  margin-top: 8px;
}


/* ════════════════════════════════════════════════
   HERO — full viewport width
   ════════════════════════════════════════════════ */
.hero {
  position: relative;
  width: 100%;
  min-height: 100svh;
  display: flex;
  align-items: center;
  background:
    var(--navy)
    url('Img/FondoYanakuriweb.png') center center / cover no-repeat;
  padding: calc(var(--nav-h) + 48px) 0 clamp(80px, 10vw, 120px);
  overflow: hidden;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right,
      rgba(11, 26, 61, 0.88) 0%,
      rgba(11, 26, 61, 0.72) 45%,
      rgba(11, 26, 61, 0.25) 75%,
      rgba(11, 26, 61, 0.10) 100%),
    radial-gradient(ellipse 70% 55% at 85% 35%, rgba(201, 168, 76, 0.06) 0%, transparent 65%);
  pointer-events: none;
}

.hero-grid-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 20%, transparent 80%);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: clamp(40px, 6vw, 80px);
  position: relative;
  z-index: 1;
  width: 100%;
}

.hero-content { max-width: 720px; }

.hero-logo {
  height: clamp(64px, 8vw, 88px);
  width: auto;
  object-fit: contain;
  margin-bottom: 28px;
  mix-blend-mode: lighten;
  filter: drop-shadow(0 4px 24px rgba(201, 168, 76, 0.25));
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  padding: 8px 16px;
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: 100px;
}

.eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  animation: pulse 2s ease infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 5.5vw, 80px);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.025em;
  color: var(--white);
  margin-bottom: 24px;
}

.hero-title em {
  font-style: normal;
  color: var(--gold);
}

.hero-sub {
  font-size: clamp(16px, 1.6vw, 19px);
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.75;
  max-width: 540px;
  margin-bottom: 36px;
}

.hero-sub strong {
  color: var(--gold-lt);
  font-weight: 600;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.hero-friction {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
}

.hero-friction svg { color: var(--gold); flex-shrink: 0; }

.hero-friction span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.hero-stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  min-width: 200px;
}

.stat-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 22px 28px;
  text-align: center;
  backdrop-filter: blur(8px);
  transition: border-color var(--transition), background var(--transition);
}

.stat-card:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(201, 168, 76, 0.25);
}

.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(26px, 2.5vw, 34px);
  font-weight: 700;
  color: var(--gold);
  line-height: 1.1;
  margin-bottom: 4px;
}

.stat-label {
  display: block;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.48);
  line-height: 1.4;
}

.hero-wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: clamp(48px, 6vw, 80px);
  background: var(--bg-light);
  clip-path: polygon(0 100%, 100% 30%, 100% 100%);
  pointer-events: none;
}


/* ════════════════════════════════════════════════
   TRUST BAR
   ════════════════════════════════════════════════ */
.trust-bar {
  width: 100%;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}

.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.trust-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-lt);
  white-space: nowrap;
}

.trust-items {
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 40px);
  flex-wrap: wrap;
  flex: 1;
  justify-content: flex-end;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-mid);
}

.trust-item svg {
  color: var(--gold-dk);
  flex-shrink: 0;
}


/* ════════════════════════════════════════════════
   PAS
   ════════════════════════════════════════════════ */
.pas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2vw, 24px);
}

.pas-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  padding: clamp(24px, 3vw, 36px);
  transition: box-shadow var(--transition), transform var(--transition);
}

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

.pas-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.pas-problem .pas-icon   { background: #FEE2E2; color: #B91C1C; }
.pas-agitation .pas-icon { background: #FEF3C7; color: #92400E; }
.pas-solution .pas-icon  { background: #D1FAE5; color: #065F46; }

.pas-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-lt);
  margin-bottom: 10px;
}

.pas-problem .pas-label   { color: #B91C1C; }
.pas-agitation .pas-label { color: #92400E; }
.pas-solution .pas-label  { color: #065F46; }

.pas-card h3 {
  font-family: var(--font-display);
  font-size: clamp(20px, 2vw, 24px);
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1.2;
  margin-bottom: 12px;
}

.pas-card p {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 16px;
}

.pas-card blockquote {
  font-size: 14px;
  font-style: italic;
  color: var(--text-lt);
  border-left: 2px solid var(--border);
  padding-left: 14px;
  line-height: 1.55;
}

.pas-solution {
  border-top: 3px solid var(--gold);
  background: linear-gradient(180deg, rgba(201, 168, 76, 0.04) 0%, var(--white) 40%);
}

.pas-solution blockquote.quote-positive {
  border-color: #059669;
  color: #065F46;
}


/* ════════════════════════════════════════════════
   ABOUT
   ════════════════════════════════════════════════ */
.about-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}

.about-values {
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.value-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.value-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(201, 168, 76, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}

.value-item strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 3px;
}

.value-item p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.52);
  line-height: 1.55;
}

.mission-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-lt);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 3vw, 32px);
  margin-bottom: 16px;
}

.vision-card { margin-bottom: 0; }

.mission-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.mission-card p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.75;
}


/* ════════════════════════════════════════════════
   PRODUCTOS
   ════════════════════════════════════════════════ */
.product-category { margin-bottom: clamp(40px, 5vw, 56px); }
.product-category:last-child { margin-bottom: 0; }

.cat-header {
  margin-bottom: 28px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border);
}

.cat-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-dk);
  display: block;
  margin-bottom: 6px;
}

.cat-desc { font-size: 15px; color: var(--text-mid); }

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(12px, 1.5vw, 20px);
}

.product-grid-6 {
  grid-template-columns: repeat(3, 1fr);
}

.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  padding: clamp(20px, 2.5vw, 28px);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.product-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: rgba(201, 168, 76, 0.25);
}

.product-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(11, 26, 61, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  margin-bottom: 16px;
}

.product-card h4 {
  font-family: var(--font-display);
  font-size: clamp(16px, 1.5vw, 19px);
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 8px;
  line-height: 1.25;
}

.product-card-sm h4 { font-size: 15px; }

.product-card p {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.65;
}


/* ════════════════════════════════════════════════
   BENEFICIOS
   ════════════════════════════════════════════════ */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 2vw, 24px);
  margin-bottom: 48px;
}

.benefit-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-lt);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 2.5vw, 32px);
  transition: background var(--transition), border-color var(--transition);
}

.benefit-card:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(201, 168, 76, 0.3);
}

.benefit-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: rgba(201, 168, 76, 0.12);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.benefit-card h3 {
  font-family: var(--font-display);
  font-size: clamp(18px, 1.6vw, 22px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.2;
}

.benefit-card p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.7;
  margin-bottom: 14px;
}

.benefit-gain {
  font-size: 12px;
  font-weight: 600;
  color: #34D399;
}

.sectors {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.sector-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.65);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-lt);
  padding: 10px 20px;
  border-radius: 100px;
}

.sector-tag svg { color: var(--gold); flex-shrink: 0; }


/* ════════════════════════════════════════════════
   PROCESO
   ════════════════════════════════════════════════ */
.process-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 2vw, 32px);
}

.process-line {
  position: absolute;
  top: 36px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: linear-gradient(to right, var(--gold), rgba(201, 168, 76, 0.15));
  z-index: 0;
}

.process-step {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 8px;
}

.step-bubble {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--gold);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
  flex-shrink: 0;
}

.step-num {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  color: var(--gold-dk);
  letter-spacing: 0.05em;
  line-height: 1;
}

.step-icon { color: var(--navy); }

.step-body h3 {
  font-family: var(--font-display);
  font-size: clamp(17px, 1.5vw, 20px);
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 8px;
  line-height: 1.2;
}

.step-body p {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.65;
  margin-bottom: 10px;
}

.step-cue {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  color: var(--gold-dk);
  background: rgba(201, 168, 76, 0.1);
  padding: 5px 12px;
  border-radius: 100px;
}


/* ════════════════════════════════════════════════
   TESTIMONIOS
   ════════════════════════════════════════════════ */
.testi-section { border-top: 1px solid var(--border); }

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2vw, 24px);
  margin-bottom: 48px;
}

.testi-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 2.5vw, 32px);
  transition: transform var(--transition), box-shadow var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}

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

.testi-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.testi-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--av-bg, #dbeafe);
  color: var(--av-text, #1e40af);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  flex-shrink: 0;
}

.testi-name { font-size: 14px; font-weight: 600; color: var(--charcoal); }
.testi-role { font-size: 12px; color: var(--text-lt); line-height: 1.4; }
.testi-stars { color: var(--gold); font-size: 14px; letter-spacing: 2px; margin-bottom: 12px; }

.testi-text {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 16px;
  flex: 1;
}

.testi-badge {
  font-size: 11px;
  font-weight: 600;
  color: var(--navy);
  background: rgba(11, 26, 61, 0.06);
  padding: 5px 12px;
  border-radius: 100px;
  align-self: flex-start;
}

.sectors-strip {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.strip-label {
  font-size: 12px;
  color: var(--text-lt);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  white-space: nowrap;
}

.strip-tags { display: flex; gap: 8px; flex-wrap: wrap; }

.strip-tags span {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-mid);
  background: var(--white);
  border: 1px solid var(--border);
  padding: 6px 14px;
  border-radius: 100px;
}


/* ════════════════════════════════════════════════
   FAQ
   ════════════════════════════════════════════════ */
.faq-inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: start;
}

.faq-header { position: sticky; top: calc(var(--nav-h) + 24px); }

.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:first-child { border-top: 1px solid var(--border); }

.faq-question {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0;
  text-align: left;
  font-size: clamp(15px, 1.3vw, 17px);
  font-weight: 500;
  color: var(--charcoal);
  transition: color var(--transition);
}

.faq-question:hover { color: var(--navy); }
.faq-question[aria-expanded="true"] { color: var(--navy); }

.faq-icon {
  flex-shrink: 0;
  color: var(--gold-dk);
  transition: transform var(--transition);
}

.faq-question[aria-expanded="true"] .faq-icon { transform: rotate(180deg); }

.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-answer.open {
  max-height: 320px;
  padding-bottom: 22px;
}

.faq-answer p {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.75;
}


/* ════════════════════════════════════════════════
   CTA / CONTACTO — full width
   ════════════════════════════════════════════════ */
.cta-section {
  width: 100%;
  background: var(--navy);
  padding: clamp(72px, 9vw, 120px) 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: clamp(48px, 6vw, 80px);
  background: var(--white);
  clip-path: polygon(0 0, 100% 70%, 100% 0);
  pointer-events: none;
}

.cta-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 100%, rgba(201, 168, 76, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.cta-block {
  text-align: center;
  position: relative;
  z-index: 1;
}

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.5vw, 60px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.08;
  letter-spacing: -0.02em;
  max-width: 800px;
  margin: 0 auto 18px;
}

.cta-sub {
  font-size: clamp(16px, 1.4vw, 18px);
  color: rgba(255, 255, 255, 0.58);
  margin-bottom: clamp(40px, 5vw, 56px);
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.contact-form-wrapper {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: clamp(24px, 3vw, 48px);
  text-align: left;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}

.contact-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 3vw, 40px);
  box-shadow: var(--shadow-lg);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 16px;
}

.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--charcoal);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text);
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  outline: none;
  transition: border-color var(--transition), background var(--transition), box-shadow var(--transition);
  resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-lt); }

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--navy);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(11, 26, 61, 0.08);
}

.form-group input.error,
.form-group textarea.error { border-color: #DC2626; }

/* Honeypot — invisible para humanos, accesible para bots */
.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.form-submit-row {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 8px;
  flex-wrap: wrap;
}

.btn-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--navy);
  color: var(--white);
  font-size: 15px;
  font-weight: 600;
  padding: 14px 30px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
  white-space: nowrap;
}

.btn-submit:hover { background: var(--navy-mid); transform: translateY(-1px); }
.btn-submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

.form-note {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--text-lt);
}

.form-note svg { color: #059669; flex-shrink: 0; }

.form-success {
  display: none;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  padding: 14px 18px;
  background: #D1FAE5;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 600;
  color: #065F46;
}

.form-success.visible { display: flex; }
.form-success svg { color: #059669; flex-shrink: 0; }

.contact-info-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-lt);
  border-radius: var(--radius-lg);
  padding: 28px;
  height: fit-content;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.info-item:first-child { padding-top: 0; }
.info-item:last-child { border-bottom: none; padding-bottom: 0; }

.info-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(201, 168, 76, 0.12);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.info-item .info-label {
  display: block;
  font-size: 10px;
  color: rgba(255, 255, 255, 0.42);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 3px;
}

.info-item strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
}


/* ════════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════════ */
.footer {
  width: 100%;
  background: var(--charcoal);
  color: rgba(255, 255, 255, 0.52);
  padding: clamp(48px, 6vw, 72px) 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: clamp(40px, 5vw, 80px);
  padding-bottom: 48px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-tagline {
  font-size: 14px;
  line-height: 1.65;
  max-width: 300px;
  margin-bottom: 8px;
}

.footer-year { font-size: 12px; color: rgba(255, 255, 255, 0.28); }

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 3vw, 48px);
}

.footer-col h4 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.footer-col a {
  display: block;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.48);
  margin-bottom: 10px;
  transition: color var(--transition);
}

.footer-col a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 20px 0;
}

.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-bottom p { font-size: 12px; color: rgba(255, 255, 255, 0.28); }


/* ─── Floating actions ────────────────────────── */
.back-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--navy);
  border: 1px solid rgba(201, 168, 76, 0.35);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity var(--transition), transform var(--transition), background var(--transition);
  z-index: 100;
  box-shadow: var(--shadow);
}

.back-top.visible {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}

.back-top:hover { background: var(--navy-mid); }

.whatsapp-float {
  position: fixed;
  bottom: 28px;
  left: 28px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  padding: 12px;
  border-radius: 50%;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
  z-index: 100;
  width: 48px;
  overflow: hidden;
  transition: width 0.35s ease, padding 0.35s ease, border-radius 0.35s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.whatsapp-float:hover {
  width: 185px;
  padding: 12px 18px 12px 14px;
  border-radius: 100px;
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg { flex-shrink: 0; }

.whatsapp-label {
  white-space: nowrap;
  flex-shrink: 0;
}



/* ════════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════════ */

/* Large screens — use full width grids */
@media (min-width: 1400px) {
  .hero-inner { grid-template-columns: 1.2fr auto; }
  .hero-stats { min-width: 220px; }
}

/* Tablet */
@media (max-width: 1024px) {
  .nav-links { display: none; }
  .burger { display: flex; }

  .hero-inner { grid-template-columns: 1fr; }
  .hero-stats {
    grid-template-columns: repeat(3, 1fr);
    min-width: unset;
    width: 100%;
  }

  .pas-grid { grid-template-columns: 1fr; }
  .about-inner { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .product-grid-6 { grid-template-columns: repeat(2, 1fr); }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .process-track { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .process-line { display: none; }
  .process-step { align-items: flex-start; text-align: left; }
  .testi-grid { grid-template-columns: 1fr; }
  .faq-inner { grid-template-columns: 1fr; gap: 32px; }
  .faq-header { position: static; }
  .contact-form-wrapper { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
}

/* Mobile */
@media (max-width: 640px) {
  :root { --pad-x: 20px; }

  .logo-img { height: 40px; }
  .logo-img-sm { height: 36px; }
  .logo-name { font-size: 15px; }
  .hero-logo { height: 56px; margin-bottom: 20px; }

  .hero { min-height: auto; padding-bottom: 72px; }
  .hero-wave { height: 40px; }
  .hero-stats { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .btn-primary, .btn-ghost { width: 100%; justify-content: center; }

  .trust-bar-inner { justify-content: center; }
  .trust-label { width: 100%; text-align: center; }
  .trust-items { justify-content: center; }

  .about-values { grid-template-columns: 1fr; }
  .product-grid,
  .product-grid-6 { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }
  .process-track { grid-template-columns: 1fr; gap: 28px; }

  .form-row { grid-template-columns: 1fr; }
  .form-submit-row { flex-direction: column; align-items: stretch; }
  .btn-submit { width: 100%; }

  .footer-links { grid-template-columns: 1fr 1fr; }
  .footer-bottom .container { flex-direction: column; text-align: center; }

  .cta-section::before { display: none; }

  .whatsapp-float {
    bottom: 16px;
    left: 16px;
    padding: 12px;
  }

  .whatsapp-float:hover {
    width: 48px;
    padding: 12px;
    border-radius: 50%;
  }

  .back-top {
    bottom: 16px;
    right: 16px;
  }
}

@media (max-width: 400px) {
  .footer-links { grid-template-columns: 1fr; }
}
