/* ==========================================================================
   Pasaje360 — Landing de inversores
   Capa semántica + componentes, construida sobre /brand/tokens.css
   (no se redefinen primitivos: solo se referencian con var(--p360-*))
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@500;600;700;800&family=Inter:wght@400;500;600;700&display=swap');

:root {
  /* ---- Semántico: superficie ---- */
  --surface-page: var(--p360-white);
  --surface-alt: var(--p360-primary-050);
  --surface-dark: var(--p360-primary-900);
  --surface-dark-2: var(--p360-primary-700);

  /* ---- Semántico: tarjetas ---- */
  --card-bg: var(--p360-white);
  --card-border: var(--p360-border);
  --card-shadow: var(--p360-shadow-md);
  --card-shadow-hover: var(--p360-shadow-lg);
  --card-radius: var(--p360-radius-lg);

  /* ---- Semántico: texto ---- */
  --text-heading: var(--p360-text);
  --text-body: var(--p360-text-secondary);
  --text-on-dark: var(--p360-white);
  --text-on-dark-secondary: rgba(255, 255, 255, 0.72);

  /* ---- Semántico: botones ----
     Regla de accesibilidad del brand kit: texto blanco SOLO sobre azul marino.
     El naranja nunca lleva texto blanco encima. */
  --btn-primary-bg: var(--p360-primary-700);
  --btn-primary-bg-hover: var(--p360-primary-900);
  --btn-primary-text: var(--p360-white);

  --btn-secondary-bg: transparent;
  --btn-secondary-border: var(--p360-primary-700);
  --btn-secondary-text: var(--p360-primary-700);
  --btn-secondary-bg-hover: var(--p360-primary-050);

  --btn-ghost-text: var(--p360-white);
  --btn-ghost-border: rgba(255, 255, 255, 0.35);

  /* ---- Semántico: badges / acentos ----
     El naranja se usa como ícono/borde/subrayado, el texto siempre en navy. */
  --badge-bg: var(--p360-accent-050);
  --badge-text: var(--p360-primary-700);
  --badge-icon: var(--p360-accent-600);
  --badge-border: rgba(255, 122, 51, 0.35);

  /* ---- Semántico: nav / footer ---- */
  --nav-bg: rgba(255, 255, 255, 0.86);
  --nav-border: var(--p360-border);
  --footer-bg: var(--p360-primary-900);
  --footer-text: rgba(255, 255, 255, 0.72);

  --container-max: 1180px;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ==========================================================================
   Reset ligero
   ========================================================================== */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--p360-font-body);
  font-size: var(--p360-text-base);
  line-height: var(--p360-leading-body);
  color: var(--text-body);
  background: var(--surface-page);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 {
  font-family: var(--p360-font-display);
  color: var(--text-heading);
  line-height: var(--p360-leading-heading);
  margin: 0;
}
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; cursor: pointer; }

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--p360-space-5);
}

section { position: relative; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--p360-space-2);
  font-family: var(--p360-font-body);
  font-weight: var(--p360-weight-semibold);
  font-size: var(--p360-text-xs);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--badge-text);
  background: var(--badge-bg);
  border: 1px solid var(--badge-border);
  border-radius: var(--p360-radius-full);
  padding: var(--p360-space-2) var(--p360-space-4);
}
.eyebrow .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--badge-icon);
  flex: none;
}

.section-head {
  max-width: 640px;
  margin: 0 auto var(--p360-space-8);
  text-align: center;
}
.section-head h2 {
  font-size: var(--p360-text-3xl);
  font-weight: var(--p360-weight-semibold);
  margin-top: var(--p360-space-4);
}
.section-head p {
  margin-top: var(--p360-space-3);
  font-size: var(--p360-text-lg);
  color: var(--text-body);
}
.section-alt { background: var(--surface-alt); }

/* ==========================================================================
   Botones
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--p360-space-2);
  font-weight: var(--p360-weight-semibold);
  font-size: var(--p360-text-base);
  padding: 14px 28px;
  border-radius: var(--p360-radius-md);
  border: 1.5px solid transparent;
  transition: transform 200ms var(--ease-out), background 200ms var(--ease-out), box-shadow 200ms var(--ease-out), border-color 200ms var(--ease-out);
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
  background: var(--btn-primary-bg);
  color: var(--btn-primary-text);
  box-shadow: var(--p360-shadow-md);
}
.btn-primary:hover { background: var(--btn-primary-bg-hover); box-shadow: var(--p360-shadow-lg); }

.btn-secondary {
  background: var(--btn-secondary-bg);
  color: var(--btn-secondary-text);
  border-color: var(--btn-secondary-border);
}
.btn-secondary:hover { background: var(--btn-secondary-bg-hover); }

.btn-ghost {
  background: transparent;
  color: var(--btn-ghost-text);
  border-color: var(--btn-ghost-border);
}
.btn-ghost:hover { border-color: rgba(255,255,255,0.7); }

.btn-sm { padding: 10px 20px; font-size: var(--p360-text-sm); }

/* ==========================================================================
   Nav
   ========================================================================== */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--nav-bg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--nav-border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav-logo img { height: 30px; width: auto; }
.nav-links {
  display: flex;
  align-items: center;
  gap: var(--p360-space-7);
}
.nav-links a {
  font-size: var(--p360-text-sm);
  font-weight: var(--p360-weight-medium);
  color: var(--text-heading);
  transition: color 150ms var(--ease-out);
}
.nav-links a:hover { color: var(--p360-primary-700); }
.nav-cta { display: flex; align-items: center; gap: var(--p360-space-4); }
.nav-toggle {
  display: none;
  background: none;
  border: none;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
}
.nav-toggle svg { width: 22px; height: 22px; color: var(--text-heading); }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  padding: var(--p360-space-9) 0 var(--p360-space-9);
  background:
    radial-gradient(1100px 500px at 85% -10%, rgba(255, 122, 51, 0.08), transparent 60%),
    radial-gradient(900px 500px at -10% 20%, rgba(27, 58, 107, 0.06), transparent 60%),
    var(--surface-page);
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: var(--p360-space-9);
  align-items: center;
}
.hero-copy h1 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: var(--p360-weight-bold);
  letter-spacing: -0.01em;
  margin-top: var(--p360-space-5);
}
/* El naranja nunca es color de texto (regla de marca): el énfasis se marca con
   un subrayado decorativo en acento, el texto permanece en navy/casi-negro. */
.hero-copy h1 .accent {
  color: var(--p360-primary-700);
  background-image: linear-gradient(var(--p360-accent-600), var(--p360-accent-600));
  background-repeat: no-repeat;
  background-size: 100% 10px;
  background-position: 0 92%;
}
.hero-copy p.lede {
  margin-top: var(--p360-space-5);
  font-size: var(--p360-text-lg);
  max-width: 46ch;
}
.hero-actions {
  display: flex;
  gap: var(--p360-space-4);
  margin-top: var(--p360-space-7);
  flex-wrap: wrap;
}
.hero-trust {
  display: flex;
  gap: var(--p360-space-6);
  margin-top: var(--p360-space-8);
  padding-top: var(--p360-space-6);
  border-top: 1px solid var(--card-border);
  flex-wrap: wrap;
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: var(--p360-space-3);
}
.hero-trust-item svg { width: 20px; height: 20px; color: var(--p360-primary-700); flex: none; }
.hero-trust-item span { font-size: var(--p360-text-sm); color: var(--text-body); font-weight: var(--p360-weight-medium); }

/* Hero visual: browser-frame mockup + floating card */
.hero-visual { position: relative; }
.browser-frame {
  background: var(--card-bg);
  border-radius: var(--card-radius);
  box-shadow: var(--card-shadow-hover);
  border: 1px solid var(--card-border);
  overflow: hidden;
  transform: rotate(0.4deg);
}
.browser-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 16px;
  background: var(--p360-primary-050);
  border-bottom: 1px solid var(--card-border);
}
.browser-bar span {
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--p360-border);
}
.browser-bar .url {
  margin-left: var(--p360-space-3);
  font-size: 11px;
  color: var(--text-body);
  background: var(--p360-white);
  border: 1px solid var(--card-border);
  border-radius: var(--p360-radius-full);
  padding: 4px 12px;
  font-family: monospace;
}
.browser-frame img { width: 100%; height: auto; }

.floating-card {
  position: absolute;
  bottom: -36px;
  left: -36px;
  width: 46%;
  background: var(--card-bg);
  border-radius: var(--p360-radius-md);
  box-shadow: var(--card-shadow-hover);
  border: 1px solid var(--card-border);
  overflow: hidden;
  animation: float 5s ease-in-out infinite;
}
.floating-card img { width: 100%; height: auto; }
.floating-card .tag {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--p360-white);
  color: var(--badge-text);
  font-size: 11px;
  font-weight: var(--p360-weight-semibold);
  padding: 4px 10px;
  border-radius: var(--p360-radius-full);
  box-shadow: var(--p360-shadow-sm);
  display: flex;
  align-items: center;
  gap: 5px;
}
.floating-card .tag .live-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--p360-success);
  box-shadow: 0 0 0 3px rgba(30, 142, 90, 0.18);
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ==========================================================================
   Problema / oportunidad
   ========================================================================== */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--p360-space-6);
}
.problem-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--card-radius);
  padding: var(--p360-space-6);
  box-shadow: var(--card-shadow);
}
.problem-index {
  display: block;
  font-family: var(--p360-font-display);
  font-size: 44px;
  font-weight: var(--p360-weight-bold);
  color: var(--p360-primary-100);
  line-height: 1;
  margin-bottom: var(--p360-space-4);
}
.problem-card h3 { font-size: var(--p360-text-lg); font-weight: var(--p360-weight-semibold); }
.problem-card p { margin-top: var(--p360-space-3); font-size: var(--p360-text-sm); }
.problem-card .old-way {
  display: inline-block;
  margin-top: var(--p360-space-4);
  font-size: 11px;
  font-weight: var(--p360-weight-semibold);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--p360-error);
  background: #FCEDED;
  padding: 3px 10px;
  border-radius: var(--p360-radius-full);
}

.problem-resolve {
  margin-top: var(--p360-space-8);
  text-align: center;
  font-family: var(--p360-font-display);
  font-size: var(--p360-text-xl);
  font-weight: var(--p360-weight-semibold);
  color: var(--p360-primary-700);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
/* El naranja marca el énfasis con subrayado, no con el color del texto */
.problem-resolve .accent {
  color: var(--p360-primary-700);
  background-image: linear-gradient(var(--p360-accent-600), var(--p360-accent-600));
  background-repeat: no-repeat;
  background-size: 100% 8px;
  background-position: 0 90%;
}

/* ==========================================================================
   Product tour
   ========================================================================== */
.tour-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--p360-space-8);
  align-items: center;
  padding: var(--p360-space-8) 0;
  border-bottom: 1px solid var(--card-border);
}
.tour-row:last-child { border-bottom: none; }
.tour-row:nth-child(even) .tour-media { order: 2; }
.tour-row:nth-child(even) .tour-copy { order: 1; }

.tour-step {
  display: inline-flex;
  align-items: center;
  gap: var(--p360-space-2);
  font-size: var(--p360-text-xs);
  font-weight: var(--p360-weight-bold);
  letter-spacing: 0.08em;
  color: var(--p360-primary-700);
  text-transform: uppercase;
}
.tour-step::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--p360-accent-600);
  flex: none;
}
.tour-copy h3 {
  margin-top: var(--p360-space-3);
  font-size: var(--p360-text-2xl);
  font-weight: var(--p360-weight-semibold);
}
.tour-copy p {
  margin-top: var(--p360-space-3);
  font-size: var(--p360-text-base);
  max-width: 46ch;
}
.tour-media {
  border-radius: var(--card-radius);
  box-shadow: var(--card-shadow);
  border: 1px solid var(--card-border);
  overflow: hidden;
  background: var(--card-bg);
  transition: transform 300ms var(--ease-out), box-shadow 300ms var(--ease-out);
}
.tour-media:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: var(--card-shadow-hover);
}
.tour-media img { width: 100%; height: auto; }

/* ==========================================================================
   Diferenciales (bento)
   ========================================================================== */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, minmax(170px, auto));
  gap: var(--p360-space-5);
}
.bento-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--card-radius);
  padding: var(--p360-space-6);
  box-shadow: var(--card-shadow);
  transition: transform 250ms var(--ease-out), box-shadow 250ms var(--ease-out), border-color 250ms var(--ease-out);
}
.bento-card:hover {
  transform: translateY(-4px) scale(1.015);
  box-shadow: var(--card-shadow-hover);
  border-color: rgba(255, 122, 51, 0.35);
}
.bento-card .icon-wrap {
  width: 44px; height: 44px;
  border-radius: var(--p360-radius-md);
  background: var(--badge-bg);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: var(--p360-space-5);
}
.bento-card .icon-wrap svg { width: 22px; height: 22px; color: var(--badge-icon); }
.bento-card h3 { font-size: var(--p360-text-base); font-weight: var(--p360-weight-semibold); }
.bento-card p { margin-top: var(--p360-space-2); font-size: var(--p360-text-sm); }

/* Tarjeta 1: destacada, ancla visual del grid (asimetría intencional, no cuadrícula uniforme) */
.bento-card--featured {
  grid-column: 1 / 3;
  grid-row: 1 / 3;
  background: var(--surface-dark-2);
  background-image: radial-gradient(420px 260px at 100% 0%, rgba(255,122,51,0.16), transparent 65%);
  border: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--p360-space-7);
}
.bento-card--featured:hover { border-color: transparent; }
.bento-label {
  display: inline-flex;
  align-items: center;
  gap: var(--p360-space-2);
  font-size: 11px;
  font-weight: var(--p360-weight-bold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-on-dark-secondary);
  margin-bottom: var(--p360-space-4);
}
.bento-label::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--p360-accent-600);
  flex: none;
}
.bento-card--featured h3 { color: var(--text-on-dark); font-size: var(--p360-text-2xl); max-width: 20ch; }
.bento-card--featured p { color: var(--text-on-dark-secondary); margin-top: var(--p360-space-4); font-size: var(--p360-text-base); max-width: 42ch; }

/* Tarjeta 4: ancha al pie, equilibra el grid */
.bento-grid > :nth-child(4) { grid-column: 3 / 5; grid-row: 2; }
.bento-grid > :nth-child(2) { grid-column: 3; grid-row: 1; }
.bento-grid > :nth-child(3) { grid-column: 4; grid-row: 1; }

/* ==========================================================================
   Modelo de negocio
   ========================================================================== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--p360-space-6);
  align-items: stretch;
}
.pricing-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--card-radius);
  padding: var(--p360-space-6);
  box-shadow: var(--card-shadow);
  display: flex;
  flex-direction: column;
  transition: transform 250ms var(--ease-out), box-shadow 250ms var(--ease-out);
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: var(--card-shadow-hover); }
.pricing-card.is-featured {
  border-color: var(--p360-primary-700);
  box-shadow: var(--card-shadow-hover);
  position: relative;
}
.pricing-card.is-featured::before {
  content: 'Más elegido';
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--p360-primary-700);
  color: var(--p360-white);
  font-size: 11px;
  font-weight: var(--p360-weight-semibold);
  padding: 4px 14px;
  border-radius: var(--p360-radius-full);
  letter-spacing: 0.03em;
}
.pricing-tier {
  display: inline-flex;
  align-items: center;
  gap: var(--p360-space-2);
  font-size: var(--p360-text-sm);
  font-weight: var(--p360-weight-semibold);
  color: var(--p360-primary-700);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.pricing-tier::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--p360-accent-600);
  flex: none;
}
.pricing-card h3 { margin-top: var(--p360-space-2); font-size: var(--p360-text-xl); font-weight: var(--p360-weight-semibold); }
.pricing-card .fleet-size { margin-top: var(--p360-space-1); font-size: var(--p360-text-sm); color: var(--text-body); }
.pricing-price {
  margin-top: var(--p360-space-5);
  display: flex;
  align-items: baseline;
  gap: var(--p360-space-2);
}
.pricing-price .amount { font-family: var(--p360-font-display); font-size: var(--p360-text-3xl); font-weight: var(--p360-weight-bold); color: var(--text-heading); }
.pricing-price .unit { font-size: var(--p360-text-sm); color: var(--text-body); }
.pricing-fee { margin-top: var(--p360-space-2); font-size: var(--p360-text-sm); color: var(--text-body); }
.pricing-fee strong { color: var(--p360-primary-700); }
.pricing-features { margin-top: var(--p360-space-6); flex: 1; }
.pricing-features li {
  display: flex;
  gap: var(--p360-space-3);
  align-items: flex-start;
  font-size: var(--p360-text-sm);
  padding: var(--p360-space-2) 0;
}
.pricing-features li svg { width: 18px; height: 18px; color: var(--p360-success); flex: none; margin-top: 1px; }
.pricing-card .btn { margin-top: var(--p360-space-6); width: 100%; }
.pricing-note {
  text-align: center;
  margin-top: var(--p360-space-6);
  font-size: var(--p360-text-sm);
  color: var(--text-body);
  font-style: italic;
}

/* ==========================================================================
   CTA final
   ========================================================================== */
.cta-final {
  background: var(--footer-bg);
  background-image: radial-gradient(700px 400px at 15% 0%, rgba(255,122,51,0.14), transparent 60%);
  padding: var(--p360-space-9) 0;
  text-align: center;
}
.cta-final h2 {
  color: var(--text-on-dark);
  font-size: var(--p360-text-3xl);
  font-weight: var(--p360-weight-semibold);
  max-width: 640px;
  margin: 0 auto;
}
.cta-final p {
  color: var(--text-on-dark-secondary);
  margin-top: var(--p360-space-4);
  font-size: var(--p360-text-lg);
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.cta-final .cta-actions {
  margin-top: var(--p360-space-7);
  display: flex;
  gap: var(--p360-space-4);
  justify-content: center;
  flex-wrap: wrap;
}
.cta-final .btn-primary {
  background: var(--p360-white);
  color: var(--p360-primary-700);
}
.cta-final .btn-primary:hover { background: var(--p360-primary-050); }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: var(--footer-bg);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: var(--p360-space-7) 0;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--p360-space-4);
}
.footer-inner img { height: 26px; }
.footer-inner .meta { font-size: var(--p360-text-sm); color: var(--footer-text); }
.footer-links { display: flex; gap: var(--p360-space-5); }
.footer-links a { font-size: var(--p360-text-sm); color: var(--footer-text); transition: color 150ms; }
.footer-links a:hover { color: var(--p360-white); }

/* ==========================================================================
   Scroll reveal
   ========================================================================== */
/* El ocultamiento inicial solo aplica si el JS realmente corrió y agregó
   la clase "js" al <html> (ver index.html). Sin JS (bloqueado, falla, o
   un lector/exportador que no lo ejecuta) el contenido queda visible por
   defecto en vez de quedar atrapado en opacity:0 para siempre. */
.js [data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms var(--ease-out), transform 700ms var(--ease-out);
}
.js [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}
[data-reveal-group] > * { transition-delay: calc(var(--i, 0) * 80ms); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  [data-reveal] { opacity: 1; transform: none; transition: none; }
  .floating-card { animation: none; }
  .btn, .tour-media, .bento-card, .pricing-card { transition: none; }
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { margin-top: var(--p360-space-8); }
  .problem-grid { grid-template-columns: 1fr; }
  .bento-grid { grid-template-columns: 1fr; grid-template-rows: none; }
  .bento-card--featured,
  .bento-grid > :nth-child(2),
  .bento-grid > :nth-child(3),
  .bento-grid > :nth-child(4) { grid-column: 1; grid-row: auto; }
  .pricing-grid { grid-template-columns: 1fr; }
  .tour-row { grid-template-columns: 1fr; }
  .tour-row:nth-child(even) .tour-media,
  .tour-row:nth-child(even) .tour-copy { order: initial; }
  .nav-links {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--p360-white);
    border-bottom: 1px solid var(--nav-border);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    box-shadow: var(--p360-shadow-md);
  }
  .nav-links.is-open { display: flex; }
  .nav-links a {
    width: 100%;
    padding: var(--p360-space-4) var(--p360-space-5);
    border-bottom: 1px solid var(--nav-border);
  }
  .nav-toggle { display: flex; }
}

@media (max-width: 560px) {
  .bento-grid { grid-template-columns: 1fr; }
  .hero-actions .btn { width: 100%; }
  .hero-trust { flex-direction: column; gap: var(--p360-space-3); }
  .floating-card { left: 0; bottom: -24px; width: 55%; }
  .footer-inner { flex-direction: column; text-align: center; }
}
