*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --navy:       #0f2548;
  --navy-mid:   #1a3a6b;
  --navy-light: #1e4480;
  --blue:       #2563eb;
  --blue-light: #eff4ff;
  --blue-mid:   #dbeafe;
  --white:      #fafbfd;
  --off:        #f4f6fb;
  --text:       #0f1f35;
  --muted:      #5a7090;
  --border:     #e2e8f4;
  --accent:     #2563eb;
  --orange:     #f97316;
  --orange-hot: #ea580c;
}
html { scroll-behavior: smooth; }
body { font-family: 'Plus Jakarta Sans', sans-serif; color: var(--text); background: var(--white); -webkit-font-smoothing: antialiased; }

/* ── NAV ── */
nav.site-nav {
  position: fixed; top: 0; width: 100%; z-index: 100;
  background: rgba(250,251,253,0.95); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5%; height: 64px;
  overflow: visible;
}

/* Barra de admin de WordPress (usuario logueado) */
body.admin-bar nav.site-nav {
  top: 32px;
}
@media screen and (max-width: 782px) {
  body.admin-bar nav.site-nav {
    top: 46px;
  }
}
.nav-logo {
  display: flex; align-items: center; text-decoration: none;
  flex-shrink: 0; min-width: 120px; padding: 0 20px 0 0;
  overflow: visible;
}
.nav-logo-img {
  height: 46px;
  width: auto;
  max-width: none;
  display: block; object-fit: contain;
}
body.home .nav-logo {
  min-width: 200px;
  padding: 0 28px 0 0;
}
body.home .nav-logo-img {
  height: 50px;
  width: auto;
}
.nav-right { display: flex; gap: 28px; align-items: center; }
.nav-links { display: flex; gap: 28px; list-style: none; align-items: center; margin: 0; padding: 0; }
.nav-links li { list-style: none; margin: 0; padding: 0; }
.nav-links a { text-decoration: none; color: var(--muted); font-weight: 500; font-size: 0.88rem; transition: color .2s; }
.nav-links a:hover,
.nav-links a.active,
.nav-links .current-menu-item > a { color: var(--navy); font-weight: 700; }
.nav-cta {
  background: var(--navy); color: white; border: none; border-radius: 8px;
  padding: 9px 20px; font-size: 0.85rem; font-weight: 700; cursor: pointer;
  transition: background .2s; font-family: inherit; letter-spacing: 0.01em;
  text-decoration: none; display: inline-block; white-space: nowrap;
}
.nav-cta:hover { background: var(--blue); }
.nav-platform-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--blue);
  border: 1px solid var(--blue); border-radius: 999px;
  padding: 8px 18px; font-size: 0.85rem; font-weight: 700;
  text-decoration: none; white-space: nowrap;
  transition: background .2s, color .2s;
}
.nav-platform-icon { width: 16px; height: 16px; flex-shrink: 0; }
.nav-platform-btn:hover { background: var(--blue); color: #fff; }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  background: var(--navy);
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  padding: 100px 5% 60px;
  gap: 40px;
  position: relative;
  overflow: hidden;
}
.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center right;
  opacity: 0.55;
  z-index: 0;
  pointer-events: none;
}
.hero-bg-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  /* strong dark on left for text, fades to transparent on right */
  background: linear-gradient(
    to right,
    rgba(10, 22, 50, 0.97) 0%,
    rgba(10, 22, 50, 0.92) 30%,
    rgba(10, 22, 50, 0.55) 55%,
    rgba(10, 22, 50, 0.1) 80%,
    transparent 100%
  );
}
.hero-left { position: relative; z-index: 2; }
.hero-eyebrow {
  display: flex; align-items: center; gap: 12px;
  border-left: 2px solid var(--blue);
  padding: 3px 0 3px 14px;
  margin-bottom: 28px;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
}
.hero-eyebrow-label {
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.hero-eyebrow-sep {
  color: rgba(255,255,255,0.55);
  font-weight: 500;
  padding-left: 12px;
  border-left: 1px solid rgba(255,255,255,0.2);
}
.hero h1 {
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-weight: 900;
  color: white;
  line-height: 1.08;
  letter-spacing: -0.025em;
  margin-bottom: 24px;
  text-wrap: pretty;
}
.hero h1 em {
  font-style: normal;
  color: #60a5fa;
}
.hero-desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
  max-width: 560px;
  margin-bottom: 40px;
}
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-primary {
  background: white; color: var(--navy);
  border: none; border-radius: 9px;
  padding: 14px 28px; font-size: 0.95rem; font-weight: 700;
  cursor: pointer; transition: transform .2s, box-shadow .2s;
  text-decoration: none; display: inline-block; font-family: inherit;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(0,0,0,0.25); }
.btn-ghost {
  background: transparent; color: rgba(255,255,255,0.8);
  border: 1.5px solid rgba(255,255,255,0.25);
  border-radius: 9px; padding: 14px 28px;
  font-size: 0.95rem; font-weight: 600; cursor: pointer;
  transition: all .2s; text-decoration: none; display: inline-block; font-family: inherit;
}
.btn-ghost:hover { border-color: rgba(255,255,255,0.6); color: white; }

/* Hero right — hidden when image is used as bg */
.hero-right { display: none; }

/* ── STATS ── */
.stats-band { background: #0a1c38; padding: 44px 5%; border-top: 1px solid rgba(255,255,255,0.05); }
.stats-inner { display: flex; justify-content: center; flex-wrap: wrap; max-width: 960px; margin: 0 auto; }
.stat-item { flex: 1; min-width: 160px; text-align: center; padding: 16px 20px; }
.stat-num { font-size: 2.6rem; font-weight: 900; color: white; line-height: 1; letter-spacing: -0.03em; }
.stat-label { font-size: 0.78rem; color: rgba(255,255,255,0.45); margin-top: 6px; line-height: 1.5; font-weight: 500; }
.stat-divider { width: 1px; background: rgba(255,255,255,0.08); margin: 10px 0; }

/* ── CLIENTS ── */
.clients-band { background: var(--off); padding: 48px 5% 20px; text-align: center; }
.clients-label {
  display: inline-block;
  background: var(--blue-light); color: var(--blue);
  border-radius: 5px; padding: 4px 12px;
  font-size: 0.7rem; font-weight: 800; letter-spacing: 0.1em;
  text-transform: uppercase; margin-bottom: 24px;
}
.clients-logos {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
  max-width: 820px;
  margin: 0 auto;
}
.client-chip {
  grid-column: span 2;
  background: white; border: 1px solid var(--border);
  border-radius: 999px; padding: 10px 22px;
  font-size: 0.86rem; font-weight: 600; color: var(--navy);
  box-shadow: 0 1px 3px rgba(15,37,72,0.05);
  transition: border-color .2s, box-shadow .2s, transform .2s;
  text-align: center;
}
.client-chip:nth-child(4) { grid-column: 2 / span 2; }
.client-chip:nth-child(5) { grid-column: 4 / span 2; }
.client-chip:hover {
  border-color: var(--blue);
  box-shadow: 0 6px 16px rgba(37,99,235,0.14);
  transform: translateY(-2px);
}
@media (max-width: 640px) {
  .clients-logos { grid-template-columns: 1fr; }
  .client-chip,
  .client-chip:nth-child(4),
  .client-chip:nth-child(5) { grid-column: auto; }
}

.el-promo-band {
  padding: 0 5% 56px;
  background: var(--off);
}
.el-promo-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: nowrap;
  padding: 22px 28px;
  border-radius: 16px;
  background: linear-gradient(135deg, #0f2b4a 0%, #1a4a7a 100%);
  color: #fff;
  box-shadow: 0 8px 32px rgba(15, 43, 74, 0.18);
}
.el-promo-copy {
  flex: 1;
  min-width: 0;
}
.el-promo-copy p {
  margin: 8px 0 0;
  font-size: clamp(0.92rem, 1.05vw, 1.02rem);
  line-height: 1.45;
  color: rgba(255,255,255,0.92);
}
.el-promo-copy .section-tag {
  background: linear-gradient(135deg, #fb923c 0%, var(--orange) 55%, var(--orange-hot) 100%);
  color: #fff;
  box-shadow: 0 2px 10px rgba(249, 115, 22, 0.45);
}
.el-promo-cta {
  white-space: nowrap;
  flex-shrink: 0;
  background: var(--orange);
  color: #fff;
  box-shadow: 0 6px 18px rgba(249, 115, 22, 0.35);
}
.el-promo-cta:hover {
  background: var(--orange-hot);
  color: #fff;
  box-shadow: 0 10px 28px rgba(234, 88, 12, 0.4);
}
@media (max-width: 900px) {
  .el-promo-inner { flex-wrap: wrap; }
}
@media (max-width: 640px) {
  .el-promo-inner { flex-direction: column; align-items: flex-start; }
}

/* ── SECTIONS SHARED ── */
section { padding: 88px 5%; }
.section-tag {
  display: inline-block;
  background: var(--blue-light); color: var(--blue);
  border-radius: 5px; padding: 4px 12px;
  font-size: 0.7rem; font-weight: 800; letter-spacing: 0.1em;
  text-transform: uppercase; margin-bottom: 16px;
}
h2 { font-size: clamp(1.8rem, 2.8vw, 2.5rem); font-weight: 800; color: var(--navy); line-height: 1.15; letter-spacing: -0.02em; margin-bottom: 14px; }
.subtitle { color: var(--muted); font-size: 1.02rem; line-height: 1.75; max-width: 580px; }
.center { text-align: center; }
.center .subtitle { margin: 0 auto; }

/* ── MÓDULOS ── */
.modulos-bg { background: var(--off); }
.tabs-wrap { max-width: 1080px; margin: 48px auto 0; }
.tabs { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 32px; }
.tab-btn {
  background: white; border: 1.5px solid var(--border);
  border-radius: 7px; padding: 8px 18px;
  font-size: 0.82rem; font-weight: 700; color: var(--muted);
  cursor: pointer; transition: all .15s; font-family: inherit;
  letter-spacing: 0.01em;
}
.tab-btn.active { background: var(--navy); color: white; border-color: var(--navy); }
.tab-btn:hover:not(.active) { border-color: var(--navy); color: var(--navy); }
.tab-content { display: none; }
.tab-content.active { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 16px; }
.mod-card {
  background: white; border-radius: 14px; padding: 26px;
  border: 1px solid var(--border); transition: transform .2s, box-shadow .2s;
}
.mod-card:hover { transform: translateY(-3px); box-shadow: 0 10px 28px rgba(15,37,72,0.08); }
.mod-icon-wrap {
  width: 40px; height: 40px; border-radius: 10px;
  background: var(--blue-light); display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.mod-icon-wrap svg { width: 20px; height: 20px; stroke: var(--blue); stroke-width: 2; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.mod-card h3 { font-size: 0.95rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.mod-card p { font-size: 0.84rem; color: var(--muted); line-height: 1.65; }
.mod-tags { display: flex; flex-wrap: wrap; gap: 5px; margin-top: 14px; }
.mod-tag { background: var(--blue-light); color: var(--blue); border-radius: 4px; padding: 2px 9px; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.03em; }

/* ── EDE ── */
.ede-bg { background: white; }
.ede-section {
  background: var(--navy);
  border-radius: 20px; padding: 64px 52px;
  max-width: 1080px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center;
}
.ede-section h2 { color: white; }
.ede-section .subtitle { color: rgba(255,255,255,0.6); }
.ede-pills { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 28px; }
.ede-pill {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  color: rgba(255,255,255,0.8); border-radius: 6px;
  padding: 6px 14px; font-size: 0.8rem; font-weight: 600;
}
.ede-right { display: flex; flex-direction: column; gap: 12px; }
.ede-item {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 12px; padding: 18px 20px; color: white;
}
.ede-item strong { font-size: 0.88rem; display: block; margin-bottom: 4px; font-weight: 700; }
.ede-item span { font-size: 0.78rem; opacity: 0.6; line-height: 1.5; display: block; }
.ede-check { display: flex; align-items: flex-start; gap: 12px; }
.ede-check-icon { width: 18px; height: 18px; flex-shrink: 0; margin-top: 1px; }

/* ── APP MÓVIL ── */
.app-section {
  background: linear-gradient(180deg, #f8faff 0%, var(--off) 45%, #f4f6fb 100%);
  padding-bottom: 72px;
}
.app-header { margin-bottom: 36px; }
.app-tabs-wrap { display: flex; justify-content: center; margin-bottom: 36px; }
.app-tabs {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 6px;
  box-shadow: 0 4px 20px rgba(15, 37, 72, 0.06);
}
.app-tab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: none;
  background: transparent;
  color: var(--muted);
  font-family: inherit;
  font-size: 0.88rem;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: 999px;
  cursor: pointer;
  transition: background .2s, color .2s, box-shadow .2s;
  white-space: nowrap;
}
.app-tab svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}
.app-tab:hover { color: var(--navy); }
.app-tab.active {
  background: var(--blue-light);
  color: var(--blue);
  box-shadow: inset 0 0 0 1px rgba(37, 99, 235, 0.08);
}
.app-showcase {
  position: relative;
  max-width: 1100px;
  margin: 0 auto 40px;
  padding: 0 24px;
}
.app-showcase-decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.app-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.45;
}
.app-blob-1 {
  width: 320px;
  height: 320px;
  background: #93c5fd;
  top: 10%;
  left: 8%;
}
.app-blob-2 {
  width: 280px;
  height: 280px;
  background: #c4b5fd;
  top: 20%;
  right: 10%;
}
.app-dots {
  position: absolute;
  width: 120px;
  height: 120px;
  opacity: 0.35;
  background-image: radial-gradient(circle, #94a3b8 1.5px, transparent 1.5px);
  background-size: 14px 14px;
}
.app-dots-left { left: 0; top: 30%; }
.app-dots-right { right: 0; top: 20%; }
.app-showcase-img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  max-width: 980px;
  height: auto;
  margin: 0 auto;
}
.app-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  max-width: 1080px;
  margin: 0 auto;
  background: white;
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(15, 37, 72, 0.06);
  overflow: hidden;
}
.app-feature {
  padding: 28px 24px;
  text-align: center;
  border-right: 1px solid var(--border);
}
.app-feature:last-child { border-right: none; }
.app-feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 11px;
  background: var(--blue-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}
.app-feature-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--blue);
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.app-feature h3 {
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
}
.app-feature p {
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.6;
}
.app-cta { margin-top: 44px; }
.app-cta .btn-primary { background: var(--navy); color: #fff; }
.app-cta .btn-primary:hover { background: var(--blue); }

/* ── TESTIMONIOS ── */
.test-bg { background: white; }
.test-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; max-width: 1080px; margin: 52px auto 0; }
.test-card { background: var(--off); border-radius: 16px; padding: 32px; border: 1px solid var(--border); transition: transform .2s, box-shadow .2s; }
.test-card:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(15,37,72,0.08); }
.test-stars { display: flex; gap: 3px; margin-bottom: 18px; }
.test-stars span { width: 14px; height: 14px; display: inline-block; }
.test-card p { font-size: 0.92rem; color: var(--text); line-height: 1.75; margin-bottom: 24px; }
.test-author { display: flex; align-items: center; gap: 12px; border-top: 1px solid var(--border); padding-top: 20px; }
.test-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--navy); display: flex; align-items: center;
  justify-content: center; font-size: 0.88rem; font-weight: 800; color: white; flex-shrink: 0;
}
.test-avatar-photo { object-fit: cover; display: block; background: var(--off); }
.test-name { font-size: 0.85rem; font-weight: 700; color: var(--navy); }
.test-role { font-size: 0.75rem; color: var(--muted); margin-top: 2px; }

/* ── SOPORTE ── */
.soporte-bg { background: var(--off); }
.soporte-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 16px; max-width: 1080px; margin: 52px auto 0; }
.soporte-card { background: white; border-radius: 14px; padding: 30px; border: 1px solid var(--border); transition: transform .2s, box-shadow .2s; }
.soporte-card:hover { transform: translateY(-3px); box-shadow: 0 10px 28px rgba(15,37,72,0.07); }
.soporte-card.dark { background: var(--navy); border-color: var(--navy); }
.s-icon {
  width: 44px; height: 44px; border-radius: 11px;
  display: flex; align-items: center; justify-content: center;
  background: var(--blue-light); margin-bottom: 18px;
}
.s-icon svg { width: 22px; height: 22px; stroke: var(--blue); stroke-width: 2; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.soporte-card.dark .s-icon { background: rgba(255,255,255,0.1); }
.soporte-card.dark .s-icon svg { stroke: white; }
.soporte-card h3 { font-size: 0.92rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.soporte-card.dark h3 { color: white; }
.soporte-card p { font-size: 0.83rem; color: var(--muted); line-height: 1.65; }
.soporte-card.dark p { color: rgba(255,255,255,0.6); }

/* ── ECOSISTEMA ── */
.eco-bg { background: white; }
.eco-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; max-width: 980px; margin: 52px auto 0; }
.eco-card { background: var(--navy); border-radius: 16px; padding: 36px 24px; text-align: center; color: white; transition: transform .2s; }
.eco-card:hover { transform: translateY(-3px); }
.eco-card.main { background: var(--blue); }
.eco-icon {
  background: transparent;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  min-height: 92px;
  padding: 0;
}
.eco-logo {
  height: 84px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.95;
}
.eco-logo-zeibook {
  height: 84px;
  width: auto;
  max-width: 300px;
  filter: brightness(0) invert(1);
  opacity: 1;
}
.eco-icon svg { width: 24px; height: 24px; stroke: white; stroke-width: 1.8; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.eco-card h3 { font-size: 0.95rem; font-weight: 800; margin-bottom: 8px; }
.eco-card p { font-size: 0.8rem; opacity: 0.65; line-height: 1.6; }

/* ── CONTACTO ── */
.contact-bg { background: var(--off); }
.contact-bg .btn-primary { background: var(--navy); color: #fff; margin-top: 32px; }
.contact-bg .btn-primary:hover { background: var(--blue); }
label { display: block; font-size: 0.82rem; font-weight: 700; color: var(--navy); margin-bottom: 6px; letter-spacing: 0.01em; }
input, select, textarea {
  width: 100%; padding: 11px 15px;
  border: 1.5px solid var(--border); border-radius: 9px;
  font-size: 0.9rem; color: var(--text); font-family: inherit;
  transition: border-color .2s, box-shadow .2s; background: var(--white);
}
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(37,99,235,0.1); }
textarea { resize: vertical; min-height: 96px; }

/* ── FOOTER ── */
.site-footer {
  position: relative;
  overflow: hidden;
  background: #0a1c38;
  color: rgba(255,255,255,0.55);
  padding: 56px 5% 0;
}
.footer-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px);
  background-size: 18px 18px;
  background-position: right -10px top 20px;
  mask-image: radial-gradient(ellipse 50% 70% at 92% 40%, #000 0%, transparent 72%);
  -webkit-mask-image: radial-gradient(ellipse 50% 70% at 92% 40%, #000 0%, transparent 72%);
  opacity: 0.5;
}
.footer-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 1fr 1.2fr auto;
  gap: 40px;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-col-brand { padding-right: 20px; }
.footer-col-cta {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  padding-top: 28px;
}
.footer-desc { font-size: 0.85rem; line-height: 1.7; margin-top: 16px; color: rgba(255,255,255,0.5); }
.footer-heading {
  color: rgba(255,255,255,0.55);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 12px; margin: 0; padding: 0; }
.footer-links a {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: #fff;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color .2s;
}
.footer-links a:hover { color: rgba(255,255,255,0.75); }
.footer-chevron { opacity: 0.7; }
.footer-eco-logos { display: flex; align-items: center; gap: 22px; margin-bottom: 16px; }
.footer-eco-logos img { height: 68px; width: auto; filter: brightness(0) invert(1); opacity: 0.75; }
.footer-email {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 600;
  margin-bottom: 18px;
  transition: opacity .2s;
}
.footer-email:hover { opacity: 0.85; color: #fff; }
.footer-socials { display: flex; gap: 10px; }
.footer-socials a {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s, color .2s;
}
.footer-socials a:hover { background: rgba(255,255,255,0.16); color: #fff; }
.footer-cta {
  display: inline-block;
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.35);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 700;
  padding: 11px 20px;
  border-radius: 10px;
  white-space: nowrap;
  transition: background .2s, border-color .2s;
}
.footer-cta:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.6);
  color: #fff;
}
.footer-bottom {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 0 24px;
  font-size: 0.78rem;
  text-align: center;
  color: rgba(255,255,255,0.38);
}

/* ── TOAST ── */
.toast {
  position: fixed; bottom: 28px; right: 28px;
  background: var(--navy); color: white;
  padding: 14px 22px; border-radius: 10px; font-weight: 600;
  font-size: 0.87rem; box-shadow: 0 8px 28px rgba(0,0,0,0.2);
  transform: translateY(80px); opacity: 0; transition: all .35s;
  z-index: 999; display: flex; align-items: center; gap: 10px;
}
.toast.show { transform: translateY(0); opacity: 1; }

@media (max-width: 1100px) {
  .nav-links { gap: 14px; }
  .nav-links a { font-size: 0.8rem; }
  .nav-right { gap: 10px; min-width: 0; }
  .nav-cta { padding: 8px 14px; font-size: 0.78rem; }
  .nav-platform-btn { padding: 7px 12px; font-size: 0.76rem; }
}

@media (max-width: 900px) {
  .nav-links li:nth-child(n+5) { display: none; }
}

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; padding-bottom: 40px; }
  .hero-right { display: none; }
  .ede-section { grid-template-columns: 1fr; padding: 36px 24px; gap: 36px; }
  .app-features { grid-template-columns: 1fr 1fr; }
  .app-feature:nth-child(2) { border-right: none; }
  .app-feature:nth-child(1),
  .app-feature:nth-child(2) { border-bottom: 1px solid var(--border); }
  .eco-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; row-gap: 36px; }
  .footer-col-brand { grid-column: 1 / -1; padding-right: 0; }
  .footer-col-cta {
    grid-column: 1 / -1;
    justify-content: flex-start;
    padding-top: 0;
  }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .nav-links { display: none; }
  .stats-inner { flex-direction: column; align-items: center; }
  .app-tabs { flex-wrap: wrap; justify-content: center; border-radius: 16px; }
  .app-tab { padding: 8px 16px; font-size: 0.82rem; }
  .app-features { grid-template-columns: 1fr; }
  .app-feature { border-right: none; border-bottom: 1px solid var(--border); }
  .app-feature:last-child { border-bottom: none; }
}
