/* Zelesi landing — marketing + producto */

:root {
  --bg: #0a0e14;
  --bg-elevated: #12181f;
  --surface: #181f29;
  --border: rgba(255, 255, 255, 0.07);
  --border-hover: rgba(255, 255, 255, 0.12);
  --text: #eef2f6;
  --text-muted: #8b9cb3;
  --accent: #3b82f6;
  --accent-hover: #60a5fa;
  --accent-soft: rgba(59, 130, 246, 0.12);
  --warm: #e8a317;
  --warm-soft: rgba(232, 163, 23, 0.1);
  --success: #3dd68c;
  --promo-fg: #ecfdf5;
  --promo-strong: #ffffff;
  --font-sans: "DM Sans", system-ui, -apple-system, sans-serif;
  --font-display: "Outfit", var(--font-sans);
  --radius: 16px;
  --radius-sm: 10px;
  --max: 1080px;
  --space: clamp(1.125rem, 4vw, 2.25rem);
  --section-y: clamp(3rem, 10vw, 5.25rem);
  --touch-min: 2.75rem;
  --sticky-cta-h: calc(3.5rem + env(safe-area-inset-bottom, 0px));
  --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.25);
  --shadow-mock: 0 20px 50px rgba(0, 0, 0, 0.45);
}

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

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

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

@media (max-width: 768px) {
  body {
    padding-bottom: var(--sticky-cta-h);
    font-size: 1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .btn {
    transition: none;
  }

  .btn:hover {
    transform: none;
  }
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

button:focus-visible {
  outline-offset: 2px;
}

img {
  max-width: 100%;
  height: auto;
}

.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;
}

.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.wrap {
  width: min(var(--max), 100% - 2 * var(--space));
  margin-inline: auto;
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(10, 14, 20, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

.site-header .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 1rem var(--space);
  max-width: calc(var(--max) + 2 * var(--space));
  margin-inline: auto;
}

.promo-strip {
  width: 100%;
  text-align: center;
  font-size: clamp(0.72rem, 2.8vw, 0.8125rem);
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.45;
  color: var(--promo-fg);
  background: linear-gradient(105deg, #065f46 0%, #059669 48%, #0d9488 100%);
  padding: 0.62rem var(--space);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.promo-strip strong {
  font-weight: 700;
  color: var(--promo-strong);
}

.logo-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.logo-link:hover {
  text-decoration: none;
  opacity: 0.9;
}

/* Misma marca que el front: texto “Zelesi”, azul #2563EB, ~text-xl / semibold */
.logo-word,
.logo-word-footer {
  font-family: inherit;
  font-weight: 600;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
  color: #2563eb;
}

.logo-word-footer {
  font-size: 1.15rem;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: var(--touch-min);
  padding: 0.5rem 1.25rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--bg);
  background: var(--text);
  border-radius: 999px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}

.header-cta:hover {
  opacity: 0.92;
  text-decoration: none;
}

/* Hero */

.hero {
  padding: clamp(2.5rem, 8vw, 5rem) var(--space) clamp(3rem, 10vw, 6rem);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: -40% 20% auto -20%;
  height: 80%;
  background: radial-gradient(ellipse, rgba(59, 130, 246, 0.18) 0%, transparent 65%);
  pointer-events: none;
}

.hero .wrap {
  position: relative;
}

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

.hero-copy {
  position: relative;
}

.hero-icp {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--warm);
  margin: 0 0 0.5rem;
}

.hero-badge {
  display: inline-block;
  padding: 0.35rem 0.85rem;
  margin-bottom: 1rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-soft);
  border-radius: 999px;
  border: 1px solid rgba(59, 130, 246, 0.25);
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.15rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.035em;
  margin: 0 0 1rem;
  max-width: 22ch;
}

.hero-lead {
  font-size: clamp(1.05rem, 2vw, 1.15rem);
  color: var(--text-muted);
  max-width: 52ch;
  margin: 0 0 1.25rem;
}

.hero-bullets {
  list-style: none;
  margin: 0 0 1.25rem;
  padding: 0;
  max-width: 52ch;
}

.hero-bullets li {
  position: relative;
  padding-left: 1.35rem;
  margin-bottom: 0.65rem;
  font-size: 0.98rem;
  color: var(--text);
  line-height: 1.5;
}

.hero-bullet-mark {
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}

.hero-law-teaser {
  font-size: 0.88rem;
  color: var(--text-muted);
  max-width: 52ch;
  margin: 0 0 1.5rem;
}

.hero-law-teaser a {
  font-weight: 600;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.hero-vision {
  font-size: 0.9rem;
  color: var(--text-muted);
  max-width: 52ch;
  margin: 0;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  font-style: italic;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: var(--touch-min);
  padding: 0.8rem 1.35rem;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  -webkit-tap-highlight-color: transparent;
}

.btn:hover {
  text-decoration: none;
  transform: translateY(-1px);
}

.btn-primary {
  color: #fff;
  background: linear-gradient(145deg, #2563eb 0%, #1d4ed8 55%, #1e40af 100%);
  box-shadow: 0 4px 20px rgba(37, 99, 235, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.btn-primary:hover {
  box-shadow: 0 6px 28px rgba(37, 99, 235, 0.42), inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.btn-ghost {
  color: var(--text);
  background: var(--surface);
  border: 1px solid var(--border);
}

.btn-block {
  width: 100%;
}

/* Social proof */

.section-social {
  background: var(--bg-elevated);
  border-block: 1px solid var(--border);
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.quote-card {
  margin: 0;
  padding: 1.5rem 1.6rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  border-left: 4px solid var(--accent);
  box-shadow: var(--shadow-card);
}

.quote-card p {
  margin: 0 0 1rem;
  font-size: 1rem;
  color: var(--text);
  line-height: 1.55;
}

.quote-card footer {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.stat-card {
  padding: 1.5rem 1.6rem;
  background: var(--warm-soft);
  border: 1px solid rgba(245, 158, 11, 0.28);
  border-radius: var(--radius);
}

.stat-card-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--warm);
  display: block;
  line-height: 1.1;
  margin-bottom: 0.5rem;
}

.stat-card-text {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.mid-cta {
  text-align: center;
}

/* Steps + mock */

.steps-grid {
  list-style: none;
  margin: 0 0 2.5rem;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
}

.step-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem 1.4rem;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.15);
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: var(--radius-sm);
  background: var(--accent-soft);
  color: var(--accent);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
}

.step-card h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  margin: 0 0 0.5rem;
}

.step-card p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--text-muted);
}

.mock-wrap {
  display: flex;
  justify-content: center;
}

.app-frame {
  width: 100%;
  max-width: 420px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-mock);
}

.app-frame-titlebar {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.65rem 1rem;
  background: #0f1419;
  border-bottom: 1px solid var(--border);
}

.app-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border);
}

.app-frame-title {
  flex: 1;
  min-width: 0;
  text-align: center;
  font-size: 0.7rem;
  color: var(--text-muted);
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding: 0 0.25rem;
}

@media (max-width: 380px) {
  .app-frame-title {
    font-size: 0.65rem;
  }
}

.mock-calendar {
  padding: 1.25rem 1.25rem 1.5rem;
}

.mock-cal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.mock-cal-week {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
}

.mock-cal-badge {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--success);
  background: rgba(52, 211, 153, 0.12);
  padding: 0.25rem 0.5rem;
  border-radius: 6px;
}

.mock-cal-slots {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mock-cal-slots li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.88rem;
}

.mock-cal-slots time {
  font-weight: 600;
  color: var(--text-muted);
  font-size: 0.82rem;
}

.mock-cal-slots span {
  color: var(--text);
}

.mock-cal-cta-row {
  border-bottom: none;
  padding-top: 1rem;
  justify-content: center;
}

.mock-cal-cta {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  font-size: 0.85rem;
  border-radius: var(--radius-sm);
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: clamp(1.5rem, 4vw, 2.5rem);
  align-items: start;
}

.mock-caption {
  margin: 0.85rem 0 0;
  font-size: 0.85rem;
  color: var(--text-muted);
  text-align: center;
  max-width: 420px;
  margin-inline: auto;
  line-height: 1.5;
}

.mock-requests {
  padding: 1rem 1.15rem 1.25rem;
}

.mock-requests-head {
  margin-bottom: 0.75rem;
  padding-bottom: 0.65rem;
  border-bottom: 1px solid var(--border);
}

.mock-requests-title {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text);
}

.mock-requests-sub {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.mock-request-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mock-request-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.82rem;
}

.mock-request-meta {
  color: var(--text-muted);
  text-align: left;
  flex: 1;
  line-height: 1.35;
}

.mock-badge {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  padding: 0.2rem 0.45rem;
  border-radius: 6px;
  white-space: nowrap;
}

.mock-badge--pending {
  color: #fbbf24;
  background: rgba(251, 191, 36, 0.14);
}

.mock-badge--ok {
  color: var(--success);
  background: rgba(52, 211, 153, 0.12);
}

.mock-requests-footer {
  padding-top: 0.85rem;
  text-align: center;
}

/* Product strip */

.section-product {
  background: var(--bg-elevated);
  border-block: 1px solid var(--border);
}

.feature-trio {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
}

.feature-card {
  padding: 1.4rem 1.35rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

@media (hover: hover) and (pointer: fine) {
  .feature-card:hover {
    border-color: var(--border-hover);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  }
}

.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  margin: 0 0 0.5rem;
}

.feature-card p {
  margin: 0;
  font-size: 0.93rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.section-label--spaced {
  margin-top: 0;
}

/* Bloque “En la app”: tres columnas misma anchura, tipografía unificada */

.experience-block {
  --exp-fs: 0.8125rem;
  --exp-fs-sm: 0.75rem;
  --exp-label: 0.6875rem;
  margin-top: 2.75rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border);
}

.experience-head {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.2vw, 1.55rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.22;
  margin: 0 0 0.45rem;
}

.experience-lead {
  margin: 0 0 1.75rem;
  max-width: 48ch;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--text-muted);
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.25rem, 4vw, 2rem);
  align-items: start;
}

@media (max-width: 720px) {
  .experience-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 1.75rem;
  }
}

.experience-col {
  display: flex;
  flex-direction: column;
  margin: 0;
  min-width: 0;
}

.experience-col-title {
  font-family: var(--font-display);
  font-size: var(--exp-label);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 0 0 0.65rem;
  line-height: 1.35;
}

.app-frame--experience {
  max-width: none;
  width: 100%;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  min-height: 16.5rem;
}

.app-frame--experience-tall {
  min-height: 0;
}

.app-frame-body {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  padding: 0.85rem 0.9rem 0.95rem;
  min-height: 0;
}

.app-frame-body--optimize {
  padding: 0.65rem 0.55rem 0.7rem;
  justify-content: space-between;
}

.experience-caption {
  margin: 0.75rem 0 0;
  font-size: var(--exp-fs-sm);
  line-height: 1.5;
  color: var(--text-muted);
}

/* Mocks dentro de experience: misma escala */

.experience-block .mock-assistant {
  padding: 0;
}

.experience-block .mock-assistant-hint {
  margin: 0 0 0.6rem;
  font-size: var(--exp-label);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--accent);
}

.experience-block .mock-assistant-steps {
  list-style: none;
  margin: 0;
  padding: 0;
}

.experience-block .mock-assistant-step {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  padding: 0.45rem 0;
  border-bottom: 1px solid var(--border);
  font-size: var(--exp-fs);
  line-height: 1.4;
  color: var(--text-muted);
}

.experience-block .mock-assistant-step:last-of-type {
  border-bottom: none;
}

.experience-block .mock-assistant-step--active {
  color: var(--text);
  font-weight: 600;
}

.experience-block .mock-assistant-step--done {
  opacity: 0.88;
}

.experience-block .mock-assistant-ic {
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  font-weight: 700;
  background: var(--accent-soft);
  color: var(--accent);
}

.experience-block .mock-assistant-step--done .mock-assistant-ic {
  background: rgba(52, 211, 153, 0.15);
  color: var(--success);
  font-size: 0.68rem;
}

.experience-block .mock-assistant-step--active .mock-assistant-ic {
  background: var(--accent);
  color: #fff;
}

.experience-block .mock-assistant-ic--muted {
  background: var(--bg-elevated);
  color: var(--text-muted);
}

.experience-block .mock-assistant-foot {
  margin: auto 0 0;
  padding-top: 0.65rem;
  font-size: var(--exp-fs-sm);
  color: var(--text-muted);
  line-height: 1.45;
}

/* Calendario casero: solicitudes por hueco → Optimizar → propuesta por slot */

.experience-block .mock-landlord-flow {
  padding: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.experience-block .mock-cal-phase-label {
  margin: 0 0 0.45rem;
  font-size: var(--exp-label);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  line-height: 1.3;
}

.experience-block .mock-cal-phase-label--after {
  margin-top: 0.5rem;
  color: var(--success);
}

.experience-block .mock-cal-slots-heavy,
.experience-block .mock-cal-slots-proposal {
  list-style: none;
  margin: 0;
  padding: 0;
}

.experience-block .mock-cal-slots-heavy li,
.experience-block .mock-cal-slots-proposal li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.5rem;
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--border);
  font-size: var(--exp-fs);
  line-height: 1.35;
}

.experience-block .mock-cal-slots-heavy li:last-child,
.experience-block .mock-cal-slots-proposal li:last-child {
  border-bottom: none;
}

.experience-block .mock-cal-slots-heavy time {
  font-weight: 600;
  color: var(--text-muted);
  font-size: 0.78rem;
  flex-shrink: 0;
}

.experience-block .mock-slot-badge {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--warm);
  background: var(--warm-soft);
  padding: 0.2rem 0.45rem;
  border-radius: 6px;
  white-space: nowrap;
}

.experience-block .mock-cal-optimize-bar {
  display: flex;
  justify-content: center;
  padding: 0.5rem 0 0.55rem;
  margin: 0.15rem 0 0.35rem;
  border-bottom: 1px solid var(--border);
}

.experience-block .mock-cal-cta--inline {
  padding: 0.42rem 1.1rem;
  font-size: 0.78rem;
}

.experience-block .mock-cal-slots-proposal time {
  font-weight: 600;
  color: var(--success);
  font-size: 0.78rem;
  flex-shrink: 0;
}

.experience-block .mock-cal-slots-proposal li span:last-child {
  color: var(--text);
  text-align: right;
  min-width: 0;
}

.experience-block .mock-landlord-flow-foot {
  margin: 0.55rem 0 0;
  font-size: var(--exp-fs-sm);
  color: var(--text-muted);
  text-align: center;
  line-height: 1.4;
}

/* Motor section */

.motor-aside {
  margin-top: 1.5rem;
  padding: 1.25rem 1.5rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  max-width: 65ch;
}

.motor-aside p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.98rem;
}

/* Tenant block */

.section-tenant {
  background: linear-gradient(180deg, var(--bg-elevated) 0%, var(--bg) 100%);
  border-block: 1px solid var(--border);
}

.tenant-benefits {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
  max-width: 52ch;
}

.tenant-benefits li {
  padding-left: 1.25rem;
  margin-bottom: 0.6rem;
  position: relative;
  color: var(--text-muted);
}

.tenant-benefits li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--success);
  font-weight: 700;
}

/* Legal short */

.section-legal .legal-more {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* Roadmap */

.section-roadmap {
  background: linear-gradient(180deg, var(--bg) 0%, rgba(59, 130, 246, 0.035) 45%, var(--bg) 100%);
  border-block: 1px solid var(--border);
}

.roadmap-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 272px), 1fr));
  gap: 1.25rem;
}

.roadmap-card {
  padding: 1.5rem 1.35rem 1.4rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  transition: border-color 0.2s ease;
}

@media (hover: hover) and (pointer: fine) {
  .roadmap-card:hover {
    border-color: var(--border-hover);
  }
}

.roadmap-pill {
  display: inline-block;
  margin-bottom: 0.8rem;
  padding: 0.3rem 0.7rem;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--accent);
  background: var(--accent-soft);
  border-radius: 999px;
  border: 1px solid rgba(59, 130, 246, 0.2);
}

.roadmap-card-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  margin: 0 0 0.5rem;
  line-height: 1.3;
  letter-spacing: -0.02em;
}

.roadmap-card-text {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.roadmap-foot {
  margin: 1.65rem 0 0;
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  max-width: 54ch;
  line-height: 1.5;
}

/* Sections common */

section {
  padding: var(--section-y) var(--space);
}

.section-label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--warm);
  margin: 0 0 0.75rem;
}

h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.35rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin: 0 0 1rem;
  line-height: 1.2;
}

.section-intro {
  color: var(--text-muted);
  max-width: 60ch;
  margin: 0 0 2rem;
}

.section-intro--tight {
  margin-bottom: 1rem;
}

.section-intro--tight:last-of-type {
  margin-bottom: 1.25rem;
}

/* Trust list */

.trust-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.25rem;
}

.trust-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1.35rem 1.5rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.trust-list .num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  width: 2.25rem;
  height: 2.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-soft);
  color: var(--accent);
  border-radius: var(--radius-sm);
}

.trust-list h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0 0 0.35rem;
}

.trust-list p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* CTA + form */

.cta {
  text-align: center;
  padding-bottom: clamp(3rem, 8vw, 5rem);
}

.cta h2 {
  max-width: 22ch;
  margin-inline: auto;
}

.promo-box {
  margin: 0 auto 2rem;
  max-width: 520px;
  padding: 1.5rem 1.75rem;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.18) 0%, rgba(59, 130, 246, 0.1) 100%);
  border: 1px solid rgba(16, 185, 129, 0.4);
  border-radius: var(--radius);
  text-align: center;
}

.promo-box p {
  margin: 0;
  font-size: 1rem;
  color: var(--text);
}

.promo-box .highlight {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.35rem;
  display: block;
  margin-bottom: 0.5rem;
  color: #ecfdf5;
}

.promo-urgency {
  font-size: 0.88rem !important;
  color: var(--text-muted) !important;
  margin-bottom: 0.75rem !important;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  align-items: center;
}

.lead-form {
  max-width: 420px;
  margin: 0 auto 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  text-align: left;
}

.lead-input,
.lead-select {
  width: 100%;
  padding: 0.85rem 1rem;
  font-family: inherit;
  font-size: 1rem;
  color: var(--text);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}

.lead-input::placeholder {
  color: var(--text-muted);
}

.lead-input:focus,
.lead-select:focus {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.form-fallback {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
}

/* FAQ */

.section-faq {
  padding-bottom: clamp(4rem, 10vw, 6rem);
}

.faq-list {
  max-width: 720px;
  margin: 0 auto;
}

.faq-item {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  margin-bottom: 0.65rem;
  overflow: hidden;
}

.faq-item summary {
  padding: 1rem 1.25rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  font-size: 1.25rem;
  color: var(--text-muted);
  font-weight: 400;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  margin: 0;
  padding: 0 1.25rem 1.15rem;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Footer */

footer {
  padding: 2rem var(--space) 2.5rem;
  border-top: 1px solid var(--border);
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
}

.footer-contact {
  margin: 0.5rem 0 0;
}

/* Sticky mobile CTA */

.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 0.65rem var(--space);
  padding-bottom: max(0.65rem, env(safe-area-inset-bottom, 0px));
  background: rgba(10, 14, 20, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--border);
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.45);
}

@media (max-width: 768px) {
  .sticky-cta {
    display: flex;
    justify-content: center;
  }

  .sticky-cta-btn {
    flex: 1;
    max-width: 400px;
  }
}

@media (min-width: 769px) {
  body {
    padding-bottom: 0;
  }
}

/* Móvil: lectura cómoda, CTAs a ancho completo, rejillas legibles */

@media (max-width: 560px) {
  .hero-actions,
  .cta-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn,
  .cta-actions .btn {
    width: 100%;
  }

  .mid-cta .btn {
    width: 100%;
  }

  #inquilinos .btn-primary {
    display: flex;
    width: 100%;
  }
}

@media (max-width: 480px) {
  .trust-list li {
    grid-template-columns: 1fr;
    gap: 0.65rem;
  }

  .social-grid {
    grid-template-columns: 1fr;
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }
}

.sticky-cta-btn {
  min-height: var(--touch-min);
}
