/* ═══════════════════════════════════════════════════════
   NT Landing Pages — Design System
   Light theme · Startup grade · Open Sans / Gotham fallback
═══════════════════════════════════════════════════════ */

/* ── Variables ── */
:root {
  --bg:          #ffffff;
  --bg-2:        #f8fafc;
  --bg-3:        #f1f5f9;
  --border:      #e2e8f0;
  --text:        #0f172a;
  --text-2:      #475569;
  --text-3:      #94a3b8;
  --primary:     #437397;
  --primary-dk:  #2b5574;
  --primary-deep:#060b35;
  --accent:      #0a2777;
  --cyan:        #7f9fc0;
  --green:       #059669;
  --radius:      12px;
  --radius-lg:   20px;
  --shadow:      0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
  --shadow-md:   0 4px 6px rgba(0,0,0,.07), 0 2px 4px rgba(0,0,0,.06);
  --shadow-lg:   0 10px 15px rgba(0,0,0,.07), 0 4px 6px rgba(0,0,0,.05);
  --transition:  200ms cubic-bezier(.4,0,.2,1);
}

/* ── Reset & base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Open Sans', Arial, sans-serif; background: var(--bg); color: var(--text); line-height: 1.6; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

/* ── Typography ── */
.display { font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 800; line-height: 1.1; letter-spacing: -.03em; }
.headline { font-size: clamp(1.75rem, 3.5vw, 2.75rem); font-weight: 700; line-height: 1.2; letter-spacing: -.02em; }
.title { font-size: clamp(1.25rem, 2vw, 1.75rem); font-weight: 600; line-height: 1.3; }
.label { font-size: .75rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--primary); }
.body-lg { font-size: 1.125rem; color: var(--text-2); line-height: 1.7; }
.body { font-size: 1rem; color: var(--text-2); line-height: 1.7; }
.small { font-size: .875rem; color: var(--text-2); }

/* ── Gradient text ── */
.gradient-text { background: linear-gradient(135deg, var(--primary), var(--accent)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

/* ── Layout ── */
.container { max-width: 1280px; margin: 0 auto; padding: 0 5%; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
section { padding: 96px 0; }
section.dense { padding: 64px 0; }

/* ── Navbar ── */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: #060b35; backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition), box-shadow var(--transition);
  padding: 0 5%;
}
#navbar.scrolled { border-color: rgba(255,255,255,.14); box-shadow: var(--shadow); }
.nav-inner { max-width: 1280px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; height: 68px; }
.nav-logo { height: 56px; width: auto; }
.nav-links { display: flex; gap: 2rem; list-style: none; align-items: center; }
.nav-links li { position: relative; }
.nav-links a { font-size: .9rem; font-weight: 500; color: #ffffff; transition: color var(--transition); }
.nav-links a:hover { color: rgba(255,255,255,.78); }
.nav-presence-trigger { appearance: none; background: transparent; border: 0; color: #ffffff; cursor: pointer; font: inherit; font-size: .9rem; font-weight: 500; padding: 0; transition: color var(--transition); }
.nav-presence-trigger:hover,
.nav-presence:focus-within .nav-presence-trigger { color: rgba(255,255,255,.78); }
.nav-presence-menu { position: absolute; top: calc(100% + .85rem); left: 50%; transform: translateX(-50%) translateY(6px); min-width: 230px; padding: .7rem .85rem; border-radius: 12px; background: rgba(6, 11, 53, .58); border: 1px solid rgba(255,255,255,.14); box-shadow: 0 16px 32px rgba(6,11,53,.18); backdrop-filter: blur(10px); opacity: 0; visibility: hidden; pointer-events: none; transition: opacity var(--transition), transform var(--transition), visibility var(--transition); }
.nav-presence:hover .nav-presence-menu,
.nav-presence:focus-within .nav-presence-menu { opacity: 1; visibility: visible; pointer-events: auto; transform: translateX(-50%) translateY(0); }
.nav-presence-menu a { display: flex; align-items: center; gap: .65rem; color: #ffffff; padding: .35rem 0; white-space: nowrap; text-shadow: 0 1px 3px rgba(6,11,53,.45); }
.nav-presence-menu a:hover { color: rgba(255,255,255,.78); }
.nav-presence-menu .flag { width: 22px; height: 15px; flex: 0 0 22px; display: inline-flex; align-items: center; justify-content: center; overflow: hidden; border-radius: 2px; box-shadow: 0 0 0 1px rgba(255,255,255,.28); }
.nav-presence-menu .flag img { width: 100%; height: 100%; object-fit: cover; display: block; }
.nav-cta { display: flex; gap: .75rem; align-items: center; }
.nav-mobile-btn { display: none; background: none; border: none; cursor: pointer; color: #ffffff; }
#navbar .btn-ghost { color: #ffffff; }
#navbar .btn-ghost:hover { color: rgba(255,255,255,.82); background: rgba(255,255,255,.1); }
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-mobile-btn { display: block; }
  #navbar.open .nav-links { display: flex; flex-direction: column; position: absolute; top: 68px; left: 0; right: 0; background: #060b35; padding: 1.5rem 5%; border-bottom: 1px solid rgba(255,255,255,.14); gap: 1rem; }
  #navbar.open .nav-cta { display: flex; padding: 0 5% 1.5rem; background: #060b35; position: absolute; top: calc(68px + 7 * 2.5rem + 1.5rem); left: 0; right: 0; }
  #navbar.open .nav-presence { width: 100%; }
  #navbar.open .nav-presence-trigger { width: 100%; text-align: left; }
  #navbar.open .nav-presence-menu { left: 0; top: calc(100% + .5rem); transform: translateY(6px); }
  #navbar.open .nav-presence:hover .nav-presence-menu,
  #navbar.open .nav-presence:focus-within .nav-presence-menu { transform: translateY(0); }
}

/* ── Buttons ── */
.btn { display: inline-flex; align-items: center; gap: .5rem; padding: .75rem 1.5rem; border-radius: 8px; font-weight: 600; font-size: .9rem; cursor: pointer; transition: all var(--transition); border: none; }
.btn-primary { background: var(--primary); color: #fff; font-weight: 700; }
.btn-primary:hover { background: var(--primary-dk); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-outline { background: transparent; color: var(--text); border: 1.5px solid var(--border); }
.btn-outline:hover { border-color: var(--primary); color: var(--primary); }
.btn-lg { padding: .875rem 2rem; font-size: 1rem; border-radius: 10px; }
.btn-ghost { background: transparent; color: var(--text-2); padding: .75rem 1rem; }
.btn-ghost:hover { color: var(--text); background: var(--bg-2); }

/* ── Hero ── */
.hero { min-height: 100vh; display: flex; align-items: center; padding-top: 96px; padding-bottom: 80px; background: var(--bg); }
.hero-video { position: relative; min-height: 82vh; overflow: hidden; background: var(--primary-deep); }
.hero-video::after { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(6,11,53,.22), rgba(6,11,53,.08)); pointer-events: none; }
.hero-carousel { position: relative; min-height: 82vh; z-index: 0; overflow: hidden; }
.hero-carousel-track { display: flex; min-height: 82vh; transition: transform .82s cubic-bezier(.22,1,.36,1); will-change: transform; }
.hero-slide { position: relative; flex: 0 0 100%; min-height: 82vh; overflow: hidden; background: var(--primary-deep); }
.hero-video-media,
.hero-slide-media { position: absolute; inset: 0; z-index: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-carousel-controls { position: absolute; left: 1rem; right: 1rem; top: 0; bottom: 0; z-index: 3; display: flex; align-items: center; justify-content: space-between; gap: 1rem; pointer-events: none; }
.hero-carousel-btn { width: 44px; height: 44px; border: 0; background: transparent; color: #fff; font-size: 3.1rem; line-height: 1; display: inline-flex; align-items: center; justify-content: center; cursor: pointer; text-shadow: 0 10px 24px rgba(6,11,53,.55); transition: transform var(--transition), color var(--transition); pointer-events: auto; }
.hero-carousel-btn:hover { transform: translateY(-1px) scale(1.08); color: rgba(255,255,255,.86); }
.hero-carousel-dots { position: absolute; left: 50%; bottom: 2rem; transform: translateX(-50%); display: flex; align-items: center; gap: .58rem; padding: .55rem .75rem; border-radius: 999px; background: rgba(6,11,53,.34); backdrop-filter: blur(10px); pointer-events: auto; }
.hero-carousel-dots button { width: 10px; height: 10px; padding: 0; border-radius: 50%; border: 1px solid rgba(255,255,255,.75); background: transparent; cursor: pointer; transition: width var(--transition), background var(--transition); }
.hero-carousel-dots button.is-active { width: 28px; border-radius: 999px; background: #fff; }
.hero-slide-product::after { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(90deg, rgba(4,8,36,.78) 0%, rgba(4,8,36,.5) 42%, rgba(4,8,36,.12) 100%); pointer-events: none; }
.hero-product-content { position: relative; z-index: 2; min-height: 82vh; display: flex; flex-direction: column; justify-content: center; width: 100%; max-width: 1600px; padding: 92px 5% 64px; color: #fff; }
.hero-product-logo { max-width: 80vw; height: auto; margin: 0 0 3rem; transform: translateY(-.75rem); filter: drop-shadow(0 14px 28px rgba(2,6,24,.36)); }
.hero-product-logo-hospitality { width: clamp(276px, 30vw, 444px); }
.hero-product-logo-identity { width: clamp(240px, 26vw, 390px); }
.hero-product-content p { max-width: 1480px; margin: 0; color: rgba(255,255,255,.9); font-size: clamp(2.04rem, 2.9vw, 2.56rem); line-height: 1.28; font-weight: 400; text-align: left; text-shadow: 0 10px 26px rgba(6,11,53,.44); }
.hero-product-cta { display: inline-flex; align-items: center; justify-content: center; width: fit-content; margin: 6.3rem 0 0; min-width: 180px; padding: .92rem 1.65rem; border-radius: 999px; background: #2b5574; color: #fff; font-size: 1rem; font-weight: 800; box-shadow: 0 16px 34px rgba(43,85,116,.34); text-decoration: none; transition: transform var(--transition), background var(--transition), box-shadow var(--transition); }
.hero-product-cta:hover { transform: translateY(-2px); background: #376b91; box-shadow: 0 20px 40px rgba(43,85,116,.42); }
.hero-video-content { position: relative; z-index: 2; min-height: 82vh; display: flex; flex-direction: column; justify-content: center; width: 100%; max-width: 1600px; padding: 92px 5% 64px; color: #ffffff; }
.hero-video-content h1 { max-width: 740px; font-size: clamp(2rem, 4.16vw, 4rem); font-weight: 800; line-height: 1.02; letter-spacing: 0; text-wrap: balance; margin: 0 0 4.2rem; padding-left: 0; text-shadow: 0 16px 36px rgba(6,11,53,.46); }
.hero-video-content p { max-width: 1480px; font-size: clamp(2.04rem, 2.9vw, 2.56rem); line-height: 1.28; color: rgba(255,255,255,.9); text-shadow: 0 10px 26px rgba(6,11,53,.44); }
@media (max-width: 640px) {
  .hero-video-content p { font-size: clamp(1.38rem, 7vw, 2.04rem); }
  .hero-carousel-controls { left: 1rem; right: 1rem; top: 0; bottom: 0; }
  .hero-carousel-dots { bottom: 1rem; }
  .hero-carousel-btn { width: 38px; height: 38px; font-size: 1.65rem; }
  .hero-slide-product::after { background: linear-gradient(180deg, rgba(4,8,36,.82) 0%, rgba(4,8,36,.46) 58%, rgba(4,8,36,.22) 100%); }
  .hero-product-content { width: 100%; padding: 88px 1.2rem 118px; }
  .hero-product-logo { margin-bottom: 2.4rem; transform: translateY(-.5rem); }
  .hero-product-logo-hospitality { width: min(246px, 76vw); }
  .hero-product-logo-identity { width: min(220px, 70vw); }
  .hero-product-content p { max-width: 100%; text-align: left; font-size: clamp(1.38rem, 7vw, 2.04rem); }
  .hero-product-cta { margin: 5.1rem 0 0; min-width: 156px; padding: .82rem 1.35rem; }
}
.hero-video > .container { display: none; }
.hero-badge { display: inline-flex; align-items: center; gap: .5rem; background: #eef4fb; color: var(--primary); padding: .375rem 1rem; border-radius: 100px; font-size: .8rem; font-weight: 600; margin-bottom: 1.5rem; }
.hero-badge .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--primary); }
.hero-display { font-size: clamp(2.28rem, 4.2vw, 3.16rem); font-weight: 700; line-height: 1.01; letter-spacing: 0; max-width: 720px; }
.hero-sub { font-size: clamp(.95rem, 1.2vw, 1.02rem); color: var(--text-2); max-width: 680px; margin: 1.5rem 0 2rem; line-height: 1.65; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-image { border-radius: var(--radius-lg); box-shadow: 0 25px 50px rgba(6,11,53,.25), 0 8px 16px rgba(0,0,0,.12); border: 1px solid rgba(216,228,243,.35); overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.12fr .88fr; gap: 3.5rem; align-items: center; }
@media (max-width: 900px) { .hero-grid { grid-template-columns: 1fr; } .hero-image { max-width: 600px; } }

/* ── Stats bar ── */
.global-presence { background: var(--bg); min-height: 82vh; display: flex; align-items: center; padding: 2rem 0 0; overflow: hidden; color: var(--text); }
.global-presence .container { max-width: none; width: 100%; padding: 0; }
.global-presence-title { margin: 0; padding: 0; color: #fff; font-size: clamp(1.5rem, 3.12vw, 3rem); line-height: 1.02; font-weight: 800; letter-spacing: 0; text-align: center; text-shadow: 0 10px 26px rgba(2,6,24,.42); }
.global-presence-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0; align-items: stretch; min-height: 82vh; }
.global-presence-map { min-height: 62vh; margin: 0; display: flex; align-items: stretch; justify-content: stretch; overflow: hidden; }
.global-presence-map img { display: block; width: 100%; height: 100%; object-fit: cover; filter: drop-shadow(0 26px 42px rgba(0,0,0,.18)); transform: none; transform-origin: center; }
.global-presence-content { transform: none; }
.global-presence-metrics-panel { min-height: 82vh; padding: clamp(1.35rem, 2.5vw, 2rem) clamp(3rem, 6vw, 6rem) clamp(3rem, 6vw, 6rem); background: linear-gradient(90deg, rgba(6,20,51,.16), rgba(6,20,51,.3)), url("../../imagenes/+200 mill.png") center / cover no-repeat; display: flex; flex-direction: column; align-items: stretch; justify-content: flex-start; }
.global-presence-metrics { width: 100%; flex: 1; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(3.5rem, 8vw, 7rem) clamp(4rem, 7vw, 7rem); align-content: center; font-family: 'Open Sans', sans-serif; }
.global-presence-metric { min-height: auto; padding: 0; border: 0; background: transparent; box-shadow: none; backdrop-filter: none; display: flex; flex-direction: column; justify-content: center; }
.global-presence-number { color: #fff; font-size: clamp(2.08rem, 3.52vw, 4rem); line-height: .95; font-weight: 400; letter-spacing: 0; text-shadow: 0 8px 20px rgba(2,6,24,.42); }
.global-presence-label { margin-top: .6rem; color: rgba(255,255,255,.9); font-size: clamp(.95rem, 1.1vw, 1.15rem); font-weight: 600; line-height: 1.35; text-shadow: 0 8px 18px rgba(2,6,24,.38); }
@media (max-width: 640px) {
  .global-presence { min-height: auto; padding: 1.6rem 0 0; }
  .global-presence-title { margin-bottom: 0; }
  .global-presence-grid { grid-template-columns: 1fr; gap: 0; }
  .global-presence-content { order: 1; transform: none; }
  .global-presence-map { order: 2; min-height: 44vh; justify-content: center; max-height: none; }
  .global-presence-map img { width: 100%; max-height: none; transform: none; }
  .global-presence-metrics-panel { min-height: 56vh; padding: 1.25rem 1.2rem 2rem; }
  .global-presence-metrics { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .85rem; }
  .global-presence-number { font-size: clamp(2rem, 12vw, 3.25rem); }
}

.stats-bar { background: var(--bg-2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 2rem 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; text-align: center; }
.stat-number { font-size: 2rem; font-weight: 800; color: var(--primary); letter-spacing: -.02em; }
.stat-label { font-size: .8rem; color: var(--text-2); margin-top: .25rem; font-weight: 500; }
@media (max-width: 640px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }

/* ── Logos strip ── */
.logos-strip { background: var(--bg); border-bottom: 1px solid var(--border); padding: 2.5rem 0; }
.logos-label { text-align: center; font-size: .75rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--text-3); margin-bottom: 2rem; }
.logos-row { display: flex; align-items: center; justify-content: center; gap: 3rem; flex-wrap: wrap; }
.logos-row img { height: 28px; width: auto; opacity: .45; filter: grayscale(1); transition: all var(--transition); }
.logos-row img:hover { opacity: .9; filter: none; }

/* ── Section headers ── */
.section-header { text-align: center; max-width: 640px; margin: 0 auto 4rem; }
.section-header .label { margin-bottom: .75rem; }
.section-header .headline { margin-bottom: 1rem; }
.section-header .body-lg { }

/* ── Experience editorial ── */
.experience-editorial { background: linear-gradient(135deg, #07142b 0%, #111827 58%, #0b2540 100%); color: #fff; overflow: hidden; }
.experience-editorial-grid { display: grid; grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr); gap: clamp(3rem, 7vw, 7rem); align-items: center; min-height: 560px; }
.experience-editorial-copy { max-width: 540px; }
.experience-eyebrow { margin-bottom: 1.1rem; color: #7fcdff; font-size: .78rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.experience-editorial-copy h2 { margin: 0; color: #fff; font-size: clamp(1.5rem, 3.12vw, 3rem); line-height: 1.02; font-weight: 800; letter-spacing: 0; text-wrap: balance; }
.experience-editorial-copy h3 { margin: 1.6rem 0 1rem; color: rgba(255,255,255,.84); font-size: clamp(1.15rem, 1.8vw, 1.55rem); line-height: 1.25; font-weight: 700; }
.experience-editorial-copy > p:last-of-type { max-width: 520px; color: rgba(255,255,255,.68); font-size: 1rem; line-height: 1.75; }
.experience-editorial-visual { min-width: 0; }
.experience-carousel { position: relative; width: min(calc(100% - 5rem), 620px); aspect-ratio: 1.24 / 1; margin-left: auto; margin-right: 4rem; overflow: visible; }
.experience-carousel-track { position: relative; width: 100%; height: 100%; }
.experience-slide { position: absolute; inset: 0; z-index: 1; border-radius: 18px; border: 1px solid rgba(255,255,255,.16); box-shadow: 0 24px 60px rgba(0,0,0,.28); overflow: hidden; background: rgba(255,255,255,.06); opacity: 0; transform: translateX(2.2rem) scale(.92); transition: opacity .9s ease, transform .9s cubic-bezier(.22,1,.36,1), z-index .9s; pointer-events: none; }
.experience-slide::after { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(6,11,53,.02), rgba(6,11,53,.2)); pointer-events: none; }
.experience-slide.is-active { z-index: 3; opacity: 1; transform: translateX(0) scale(1); }
.experience-slide.is-next { z-index: 2; opacity: .7; transform: translateX(5rem) scale(.94); }
.experience-slide img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.04); transition: transform 5.8s ease; }
.experience-slide.is-active img { transform: scale(1.1); }
.experience-slide span { position: absolute; left: 1.6rem; right: 1.6rem; bottom: 1.4rem; z-index: 2; color: #fff; font-size: clamp(1.35rem, 2.4vw, 2.35rem); line-height: 1.05; font-weight: 800; text-shadow: 0 10px 26px rgba(2,6,24,.55); }
@media (max-width: 860px) {
  .experience-editorial-grid { grid-template-columns: 1fr; min-height: auto; gap: 2.5rem; }
  .experience-editorial-copy { max-width: none; }
  .experience-editorial-copy h2 { font-size: clamp(2.1rem, 11vw, 3.3rem); }
  .experience-carousel { width: calc(100% - 2.2rem); aspect-ratio: 1.05 / 1; margin-left: 0; margin-right: 2.2rem; }
  .experience-slide.is-next { transform: translateX(2.2rem) scale(.94); }
  .experience-slide span { left: 1rem; right: 1rem; bottom: 1rem; }
}

/* ── Products grid ── */
.products-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5rem; }
.product-card { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 2rem; transition: all var(--transition); cursor: default; }
.product-card:hover { box-shadow: var(--shadow-lg); border-color: #b9cde2; transform: translateY(-2px); }
.product-card-icon-wrap { width: 52px; height: 52px; border-radius: 14px; background: linear-gradient(135deg,#eef4fb,#d8e4f3); display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem; }
.product-card-icon-wrap svg { width: 26px; height: 26px; color: var(--primary); }
.product-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: .5rem; color: var(--text-1); }
.product-card p { font-size: .9rem; color: var(--text-2); line-height: 1.6; margin-bottom: 1.25rem; }
.product-card-link { display: inline-flex; align-items: center; gap: .375rem; font-size: .85rem; font-weight: 600; color: var(--primary); }
.product-card-link:hover { gap: .6rem; }
.product-tag { display: inline-block; background: #eef4fb; color: var(--primary); font-size: .7rem; font-weight: 600; padding: .2rem .6rem; border-radius: 4px; letter-spacing: .04em; text-transform: uppercase; }

/* ── Why NT ── */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.why-card { padding: 2rem; background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius-lg); }
.why-card .icon-wrap { width: 44px; height: 44px; background: #eef4fb; border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem; color: var(--primary); }
.why-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: .5rem; }
.why-card p { font-size: .9rem; color: var(--text-2); line-height: 1.6; }
#por-que-next .feature-card { position: relative; min-height: 190px; overflow: hidden; cursor: pointer; display: flex; flex-direction: column; justify-content: center; }
#por-que-next .feature-card .icon-wrap { width: 99px; height: 99px; border-radius: 18px; margin-left: auto; margin-right: auto; }
#por-que-next .feature-card .icon-wrap svg { width: 50px !important; height: 50px !important; }
#por-que-next .feature-card h3 { text-align: center; margin-bottom: 0; }
#por-que-next .feature-card .card-detail { position: absolute; inset: 0; z-index: 2; margin: 0; padding: 2rem; background: rgba(8,22,60,.92); color: #fff; opacity: 0; transform: translateY(20px); transition: opacity .3s ease, transform .3s ease; display: flex; align-items: center; justify-content: center; text-align: center; }
#por-que-next .feature-card:hover .card-detail { opacity: 1; transform: translateY(0); }
.product-logo-card { position: relative; isolation: isolate; text-align: center; display: flex; flex-direction: column; align-items: center; min-height: 260px; overflow: hidden; background-position: center; background-size: cover; background-repeat: no-repeat; transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease, background-size .4s ease; }
.product-logo-card::before { content: ""; position: absolute; inset: 0; z-index: -1; background: rgba(255,255,255,.72); transition: background .3s ease; }
.product-logo-card:hover { transform: translateY(-6px) scale(1.02); border-color: rgba(67,115,151,.55); box-shadow: 0 20px 40px rgba(6,11,53,.22); background-size: auto 108%; }
.product-logo-card:hover::before { background: rgba(255,255,255,.58); }
.product-logo-card h3 { margin-top: .25rem; font-size: 1.05rem; }
.product-logo-card p { margin-top: .2rem; color: #000; font-size: 1.215rem; line-height: 1.45; }
.product-logo-card .product-card-link { margin-top: auto; }
.product-logo-wrap { height: 95px; width: 100%; margin-bottom: 1.25rem; display: flex; align-items: center; justify-content: center; }
.product-logo-wrap img { width: auto; height: 63px; max-width: 330px; object-fit: contain; }
.product-logo-placeholder { width: 190px; height: 60px; margin-left: auto; margin-right: auto; border: 1px dashed #b9cde2; border-radius: 10px; color: var(--primary); background: #eef4fb; font-weight: 800; font-size: .95rem; letter-spacing: 0; }
#facto-hospitality.product-logo-card { background-image: url("../../imagenes/hospitalityminiaturainiatura.jpg"); }
#facto-identity.product-logo-card { background-image: url("../../imagenes/puiminiaturainiatura.png"); }
#facto-data.product-logo-card { background-image: url("../../imagenes/factodataminiatura.jpg"); }
#facto-valid.product-logo-card { background-image: url("../../imagenes/factovalidminiatura.png"); }
#facto-nomina.product-logo-card { background-image: url("../../imagenes/factonominaminiatura.jpg"); }
#facto-orders.product-logo-card { background-image: url("../../imagenes/factoordersminiatura.jpg"); }
#facto-ia.product-logo-card { background-image: url("../../imagenes/factoiaminiatura.jpg"); }
#facto-business.product-logo-card { background-image: url("../../imagenes/factobusinessminiatura.jpg"); }
@media (max-width: 768px) { .why-grid { grid-template-columns: 1fr; } }

/* ── Feature split ── */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.split.reverse { direction: rtl; }
.split.reverse > * { direction: ltr; }
.split-img { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); border: 1px solid var(--border); }
.feature-list { list-style: none; space: 1rem; margin: 1.5rem 0 2rem; }
.feature-list li { display: flex; align-items: flex-start; gap: .75rem; margin-bottom: .875rem; font-size: .95rem; color: var(--text-2); }
.feature-list li svg { flex-shrink: 0; margin-top: 2px; color: var(--primary); }
@media (max-width: 860px) { .split { grid-template-columns: 1fr; gap: 2.5rem; } .split.reverse { direction: ltr; } }

/* ── Testimonial ── */
.testimonial { background: linear-gradient(135deg, #eef4fb 0%, #d8e4f3 100%); border-radius: var(--radius-lg); padding: 3rem; max-width: 760px; margin: 0 auto; text-align: center; }
.testimonial blockquote { font-size: 1.2rem; font-weight: 500; color: var(--text); line-height: 1.7; margin-bottom: 1.5rem; }
.testimonial cite { font-size: .9rem; color: var(--text-2); font-style: normal; font-weight: 600; }

/* ── Presence ── */
.presence-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 1rem; align-items: stretch; }
.presence-card {
  min-height: 180px;
  background: linear-gradient(145deg, #ffffff 0%, #eef3f8 54%, #e3eaf2 100%);
  border: 1px solid rgba(161, 176, 195, .95);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow:
    inset 2px 2px 0 rgba(255,255,255,1),
    inset -2px -2px 0 rgba(96,115,139,.18),
    0 18px 36px rgba(15,23,42,.1),
    0 2px 0 rgba(255,255,255,.9);
}
.presence-card .country-code { font-size: 1.75rem; font-weight: 900; color: var(--primary); letter-spacing: -.02em; margin-bottom: .25rem; line-height: 1; }
.presence-card .country-name { font-size: .95rem; font-weight: 700; min-height: 1.25rem; display: flex; align-items: center; justify-content: center; }
.presence-card .country-reg { min-height: 2.1rem; font-size: .75rem; color: var(--cyan); margin-top: .45rem; font-weight: 600; line-height: 1.35; display: flex; align-items: center; justify-content: center; text-align: center; }
.presence-status { width: 100%; min-height: 1.25rem; display: inline-flex; align-items: center; justify-content: center; gap: .45rem; margin-top: .8rem; }
.presence-status span { min-width: 0; font-size: .72rem !important; color: var(--text-3) !important; font-weight: 600 !important; line-height: 1.2; text-align: left; }
.presence-card .status-dot { width: 8px; height: 8px; flex: 0 0 8px; border-radius: 50%; margin: 0; }
.status-active { background: var(--green); }
.status-soon { background: #f59e0b; }

/* ── Contact ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 4rem; align-items: start; }
.contact-info h2 { margin-bottom: 1rem; }
.contact-info p { color: var(--text-2); margin-bottom: 2rem; line-height: 1.7; }
.contact-item { display: flex; gap: .75rem; align-items: flex-start; margin-bottom: 1.25rem; }
.contact-item svg { flex-shrink: 0; color: var(--primary); margin-top: 2px; }
.contact-item span { font-size: .9rem; color: var(--text-2); }
.form-card { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 2.5rem; box-shadow: var(--shadow); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-size: .85rem; font-weight: 600; margin-bottom: .4rem; color: var(--text); }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: .75rem 1rem; border: 1.5px solid var(--border); border-radius: 8px; font-size: .9rem; font-family: inherit; color: var(--text); background: var(--bg-2); transition: border-color var(--transition); outline: none; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--primary); background: var(--bg); }
.form-group textarea { resize: vertical; min-height: 120px; }
@media (max-width: 768px) { .contact-grid { grid-template-columns: 1fr; } .form-row { grid-template-columns: 1fr; } }

/* ── Footer ── */
footer { background: var(--primary-deep); color: rgba(255,255,255,.9); padding: 4rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr repeat(5, 1fr); gap: 2.5rem; margin-bottom: 3rem; }
.footer-logo { width: min(260px, 100%); height: auto; margin-bottom: 1rem; object-fit: contain; }
.footer-desc { font-size: .85rem; color: rgba(255,255,255,.5); line-height: 1.7; }
.footer-col h5 { font-size: .75rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: rgba(255,255,255,.4); margin-bottom: 1rem; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: .5rem; }
.footer-col a { font-size: .875rem; color: rgba(255,255,255,.6); transition: color var(--transition); }
.footer-col a:hover { color: rgba(255,255,255,.9); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding-top: 2rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer-bottom p { font-size: .8rem; color: rgba(255,255,255,.35); }
@media (max-width: 768px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }

/* ── Utilities ── */
.text-center { text-align: center; }
.mt-1 { margin-top: .5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-4 { margin-bottom: 2rem; }
.bg-light { background: var(--bg-2); }
#por-que-next { background: url("../../imagenes/wallpapernext3.png") center / cover no-repeat; }
#por-que-next .section-header { max-width: 980px; }
#por-que-next .section-header .label { color: #fff; font-size: 1.125rem; }
#por-que-next .section-header .headline { color: #fff; font-size: clamp(1.5rem, 3.12vw, 3rem); line-height: 1.02; font-weight: 800; letter-spacing: 0; text-shadow: 0 10px 26px rgba(2,6,24,.42); }
.divider { height: 1px; background: var(--border); }

/* ── Whatsapp float button ── */
.whatsapp-btn { position: fixed; bottom: .55rem; right: 2rem; z-index: 50; width: 52px; height: 52px; background: #25d366; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 12px rgba(37,211,102,.4); transition: transform var(--transition); }
.whatsapp-btn:hover { transform: scale(1.1); }
.whatsapp-btn svg { color: white; }

/* ── Animations (AOS supplement) ── */
[data-aos] { will-change: transform, opacity; }


/* ─────────────────────────────────────────────────────
   KONFIO PATTERNS — Floating tab, Bottom bar, Steps, Trust
───────────────────────────────────────────────────── */

/* Hero gradient (no heavy image) */
.hero-gradient {
  background: linear-gradient(135deg, #060b35 0%, #0a2777 55%, #2b5574 100%);
}
.hero-gradient .hero-display,
.hero-gradient .hero-sub,
.hero-gradient .trust-badge {
  color: #fff;
}
.hero-gradient .hero-sub,
.hero-gradient .trust-badge {
  color: rgba(216,228,243,.86);
}
.hero-gradient .gradient-text {
  background: linear-gradient(135deg, #ffffff, #b9cde2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-gradient .btn-outline {
  background: rgba(43,85,116,.9);
  border-color: transparent;
  color: #fff;
}
.hero-gradient .btn-outline:hover {
  background: rgba(6,11,53,.8);
  color: #fff;
}
.hero-gradient .pill {
  background: rgba(238,244,251,.14);
  border-color: rgba(216,228,243,.28);
  color: #fff;
}
.hero-panel {
  max-width: 110%;
  background: rgba(255,255,255,.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 20px;
  padding: 2rem;
}
.hero-panel-title {
  color: #fff;
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 1.75rem;
  text-align: center;
}
.hero-panel-list {
  display: grid;
  gap: 1.15rem;
}
.hero-panel-item {
  display: flex;
  align-items: center;
  gap: .85rem;
  color: #fff;
  font-size: .9rem;
  font-weight: 600;
}
.hero-panel-item svg {
  width: 2.5rem;
  height: 2.5rem;
  padding: .65rem;
  color: #d8e4f3;
  background: rgba(10,39,119,.2);
  border-radius: 10px;
  flex: 0 0 auto;
}
@media (max-width: 900px) {
  .hero { min-height: auto; }
  .hero-panel { display: none; }
}

/* Sticky bottom bar */
.bottom-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 49;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--border);
  padding: .875rem 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  transform: translateY(100%);
  transition: transform .35s cubic-bezier(.4,0,.2,1);
  box-shadow: 0 -4px 16px rgba(0,0,0,.06);
}
.bottom-bar.visible { transform: translateY(0); }
.bottom-bar-text { font-size: .9rem; font-weight: 600; color: var(--text); }
.bottom-bar-sub { font-size: .8rem; color: var(--text-2); margin-top: .1rem; }
.bottom-bar-actions { display: flex; gap: .75rem; align-items: center; flex-shrink: 0; }
.bottom-bar .bottom-bar-actions { padding-right: 5rem; }
@media (max-width: 600px) {
  .bottom-bar { flex-direction: column; text-align: center; padding: 1rem 5%; }
  .bottom-bar-actions { width: 100%; justify-content: center; }
  .bottom-bar .bottom-bar-actions { padding-right: 0; }
}

/* Trust badges */
.trust-row {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 1.25rem;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .78rem;
  font-weight: 500;
  color: var(--text-2);
}
.trust-badge svg { color: var(--green); flex-shrink: 0; }

/* 3-step process */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
}
.step-card {
  text-align: center;
  padding: 2.45rem 1.8rem;
  min-height: 270px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 18px 36px rgba(6, 11, 53, .05);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.step-card:hover {
  transform: translateY(-6px);
  border-color: rgba(43, 85, 116, .28);
  box-shadow: 0 24px 48px rgba(6, 11, 53, .1);
}
.step-icon {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.15rem;
  color: var(--primary);
  background: linear-gradient(135deg, rgba(67, 115, 151, .14), rgba(62, 138, 179, .2));
  box-shadow: inset 0 0 0 1px rgba(67, 115, 151, .12);
}
.step-card h3 { font-size: 1.08rem; font-weight: 800; margin-bottom: .65rem; }
.step-card p { font-size: .94rem; color: var(--text-2); line-height: 1.65; }
@media (max-width: 640px) {
  .steps-grid { grid-template-columns: 1fr; }
  .step-card { min-height: 230px; }
}

/* Animated arrow on buttons */
.btn .arrow-icon {
  transition: transform .2s cubic-bezier(.4,0,.2,1);
  display: inline-flex;
}
.btn:hover .arrow-icon { transform: translateX(4px); }

/* Client logos strip — with real images */
.clients-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: nowrap;
}
.clients-grid img {
  width: clamp(74px, 7vw, 104px);
  height: 48px;
  object-fit: contain;
  opacity: .5;
  filter: grayscale(1);
  transition: all var(--transition);
}
.clients-grid a { display: inline-flex; align-items: center; justify-content: center; }
.clients-grid img:hover { opacity: 1; filter: none; transform: translateY(-2px); }
@media (max-width: 900px) {
  .clients-grid { flex-wrap: wrap; }
}

/* Feature pill tag */
.pill {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: #eef4fb;
  color: var(--primary);
  border: 1px solid #b9cde2;
  padding: .3rem .9rem;
  border-radius: 100px;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
