/* ─────────────────────────────────────────────────────────────
 * Rumbalia · Landing comercial (B2B para agencias de viaje)
 * ───────────────────────────────────────────────────────────── */

.landing-root {
  --grad: linear-gradient(135deg, #0ea5e9 0%, #06b6d4 50%, #0891b2 100%);
  --ink: #0f172a;
  --muted: #64748b;
  --line: #e2e8f0;
  --bg: #f5f7fb;
  --surface: #ffffff;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--bg);
  min-height: 100vh;
}
.landing-root * { box-sizing: border-box; }

/* ── Navbar ── */
.landing-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.landing-nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.landing-brand {
  font-family: "Fraunces", Georgia, serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: #0ea5e9;
  text-decoration: none;
}
.landing-brand span { color: var(--ink); }
.landing-nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
  font-size: 14px;
  font-weight: 500;
}
.landing-nav-links a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.15s;
}
.landing-nav-links a:hover { color: var(--ink); }
.landing-nav-cta {
  background: #0ea5e9;
  color: #fff;
  padding: 10px 20px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: background 0.15s, transform 0.15s;
}
.landing-nav-cta:hover { background: #0284c7; transform: translateY(-1px); }

@media (max-width: 720px) {
  .landing-nav-links { display: none; }
}

/* ── Hero ── */
.landing-hero {
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px 32px 64px;
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 64px;
  align-items: center;
}
.landing-hero-eyebrow {
  display: inline-block;
  background: #e0f2fe;
  color: #0369a1;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 20px;
}
.landing-hero-title {
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -1.5px;
  margin: 0 0 20px;
  color: var(--ink);
}
.landing-hero-title .accent {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.landing-hero-sub {
  font-size: 20px;
  line-height: 1.55;
  color: var(--muted);
  margin: 0 0 32px;
  max-width: 560px;
}
.landing-hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.landing-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 28px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.15s;
  border: none;
  cursor: pointer;
}
.landing-btn.primary {
  background: var(--grad);
  color: #fff;
  box-shadow: 0 10px 30px rgba(14, 165, 233, 0.35);
}
.landing-btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(14, 165, 233, 0.45);
}
.landing-btn.secondary {
  background: #fff;
  color: var(--ink);
  border: 1.5px solid var(--line);
}
.landing-btn.secondary:hover { border-color: #0ea5e9; color: #0ea5e9; }

.landing-hero-trust {
  display: flex;
  gap: 24px;
  font-size: 13px;
  color: var(--muted);
  flex-wrap: wrap;
}
.landing-hero-trust span::before { content: "✓ "; color: #10b981; font-weight: 700; }

/* ── Mockup móvil ── */
.landing-phone-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}
.landing-phone {
  width: min(320px, 85vw);
  height: 650px;
  max-height: 80vh;
  background: #1a1a2e;
  border-radius: 42px;
  padding: 14px;
  box-shadow:
    0 40px 80px rgba(15, 23, 42, 0.25),
    0 20px 40px rgba(14, 165, 233, 0.15),
    inset 0 0 0 2px rgba(255, 255, 255, 0.08);
  position: relative;
  transform: rotate(-2deg);
  transition: transform 0.4s ease;
}
.landing-phone:hover { transform: rotate(0deg) scale(1.02); }
.landing-phone::before {
  content: "";
  position: absolute;
  top: 22px;
  left: 50%;
  transform: translateX(-50%);
  width: 110px;
  height: 24px;
  background: #1a1a2e;
  border-radius: 0 0 16px 16px;
  z-index: 10;
}
.landing-phone-screen {
  width: 100%;
  height: 100%;
  background: #fff;
  border-radius: 30px;
  overflow: hidden;
  position: relative;
}
.landing-phone-screen iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.landing-phone-fallback {
  width: 100%;
  height: 100%;
  background: var(--grad);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 40px 24px;
  color: #fff;
}
.landing-phone-fallback h4 {
  font-family: "Fraunces", Georgia, serif;
  font-size: 28px;
  margin: 0 0 8px;
}
.landing-phone-fallback p { font-size: 14px; opacity: 0.85; margin: 0; }

@media (min-width: 1440px) {
  .landing-hero {
    max-width: 1400px;
    padding: 100px 48px 80px;
    gap: 80px;
  }
  .landing-hero-title { font-size: 68px; }
  .landing-section { max-width: 1400px; padding: 110px 48px; }
  .landing-nav-inner { max-width: 1400px; padding: 22px 48px; }
  .landing-footer-inner { max-width: 1400px; }
  .landing-footer-bottom { max-width: 1400px; }
  .landing-phone { width: 360px; height: 720px; }
}

@media (min-width: 1800px) {
  .landing-hero {
    max-width: 1600px;
    padding: 120px 64px 96px;
    gap: 100px;
  }
  .landing-hero-title { font-size: 76px; }
  .landing-section { max-width: 1600px; padding: 120px 64px; }
  .landing-nav-inner { max-width: 1600px; padding: 24px 64px; }
  .landing-footer-inner { max-width: 1600px; }
  .landing-footer-bottom { max-width: 1600px; }
}

@media (max-width: 960px) {
  .landing-hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 48px 24px 32px;
    gap: 40px;
  }
  .landing-hero-sub { margin-left: auto; margin-right: auto; }
  .landing-hero-actions, .landing-hero-trust { justify-content: center; }
  .landing-phone { transform: none; }
  .landing-section { padding: 64px 24px; }
}

/* ── Features ── */
.landing-section {
  max-width: 1280px;
  margin: 0 auto;
  padding: 96px 32px;
}
.landing-section h2 {
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 700;
  letter-spacing: -1px;
  text-align: center;
  margin: 0 0 12px;
  line-height: 1.1;
}
.landing-section-sub {
  text-align: center;
  color: var(--muted);
  font-size: 18px;
  max-width: 640px;
  margin: 0 auto 56px;
  line-height: 1.5;
}
.landing-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}
.landing-feature {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 32px 28px;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.landing-feature:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.08);
  border-color: #0ea5e9;
}
.landing-feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, #e0f2fe, #bae6fd);
  display: grid;
  place-items: center;
  font-size: 26px;
  margin-bottom: 20px;
}
.landing-feature h3 {
  font-family: "Fraunces", Georgia, serif;
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 10px;
  color: var(--ink);
}
.landing-feature p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
  margin: 0;
}

@media (max-width: 880px) {
  .landing-features { grid-template-columns: 1fr; }
}

/* ── How it works ── */
.landing-how {
  background: #fff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.landing-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
}
.landing-step { text-align: center; }
.landing-step-num {
  display: inline-grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--grad);
  color: #fff;
  font-family: "Fraunces", Georgia, serif;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
}
.landing-step h3 {
  font-family: "Fraunces", Georgia, serif;
  font-size: 22px;
  margin: 0 0 10px;
}
.landing-step p { color: var(--muted); font-size: 15px; line-height: 1.55; margin: 0; }
@media (max-width: 880px) {
  .landing-steps { grid-template-columns: 1fr; gap: 40px; }
}

/* ── Pricing ── */
.landing-pricing {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
  max-width: 1100px;
  margin: 0 auto;
}
.landing-price-card {
  background: var(--surface);
  border: 1.5px solid var(--line);
  border-radius: 22px;
  padding: 36px 28px;
  position: relative;
  transition: transform 0.2s;
}
.landing-price-card.featured {
  border-color: #0ea5e9;
  box-shadow: 0 20px 60px rgba(14, 165, 233, 0.18);
  transform: scale(1.04);
}
.landing-price-card.featured::before {
  content: "Más popular";
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--grad);
  color: #fff;
  padding: 6px 16px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}
.landing-price-name {
  font-family: "Fraunces", Georgia, serif;
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 6px;
}
.landing-price-tagline {
  color: var(--muted);
  font-size: 14px;
  margin: 0 0 24px;
}
.landing-price-value {
  font-family: "Fraunces", Georgia, serif;
  font-size: 44px;
  font-weight: 700;
  letter-spacing: -1.5px;
  line-height: 1;
  margin-bottom: 4px;
}
.landing-price-value small {
  font-size: 16px;
  color: var(--muted);
  font-weight: 500;
  letter-spacing: 0;
}
.landing-price-period { font-size: 13px; color: var(--muted); margin: 0 0 28px; }
.landing-price-features {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
}
.landing-price-features li {
  padding: 8px 0;
  font-size: 14px;
  color: var(--ink);
  border-bottom: 1px dashed var(--line);
}
.landing-price-features li::before {
  content: "✓ ";
  color: #10b981;
  font-weight: 700;
  margin-right: 6px;
}
.landing-price-cta {
  display: block;
  text-align: center;
  padding: 14px;
  border-radius: 11px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.15s;
}
.landing-price-card:not(.featured) .landing-price-cta {
  background: #f1f5f9;
  color: var(--ink);
}
.landing-price-card:not(.featured) .landing-price-cta:hover { background: #e0f2fe; color: #0369a1; }
.landing-price-card.featured .landing-price-cta {
  background: var(--grad);
  color: #fff;
}
@media (max-width: 900px) {
  .landing-pricing { grid-template-columns: 1fr; }
  .landing-price-card.featured { transform: none; }
}

/* ── CTA final ── */
.landing-cta {
  background: var(--grad);
  color: #fff;
  padding: 80px 24px;
  text-align: center;
}
.landing-cta h2 {
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  letter-spacing: -1px;
  margin: 0 0 16px;
  color: #fff;
}
.landing-cta p {
  font-size: 18px;
  opacity: 0.92;
  max-width: 600px;
  margin: 0 auto 36px;
  line-height: 1.5;
}
.landing-cta-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.landing-cta-actions .landing-btn.primary {
  background: #fff;
  color: #0ea5e9;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.25);
}
.landing-cta-actions .landing-btn.primary:hover { background: #f8fafc; }
.landing-cta-actions .landing-btn.secondary {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
}
.landing-cta-actions .landing-btn.secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: #fff;
  color: #fff;
}

/* ── Footer ── */
.landing-footer {
  background: #0f172a;
  color: #cbd5e1;
  padding: 48px 24px 28px;
}
.landing-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  align-items: flex-start;
}
.landing-footer-brand { flex: 1; min-width: 260px; }
.landing-footer-brand h4 {
  font-family: "Fraunces", Georgia, serif;
  color: #fff;
  font-size: 24px;
  margin: 0 0 8px;
  letter-spacing: -0.5px;
}
.landing-footer-brand p { color: #94a3b8; font-size: 14px; margin: 0 0 12px; max-width: 320px; line-height: 1.5; }
.landing-footer-links {
  display: flex;
  gap: 60px;
  flex-wrap: wrap;
}
.landing-footer-col h5 {
  color: #fff;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0 0 14px;
}
.landing-footer-col a {
  display: block;
  color: #94a3b8;
  text-decoration: none;
  font-size: 14px;
  padding: 5px 0;
  transition: color 0.15s;
}
.landing-footer-col a:hover { color: #0ea5e9; }
.landing-footer-bottom {
  max-width: 1200px;
  margin: 40px auto 0;
  padding-top: 24px;
  border-top: 1px solid #1e293b;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: #64748b;
}

/* ─────────────────────────────────────────────────────────────
 * Agency Home (página pública por agencia)
 * Prefijo .ah-* para no colisionar con la landing comercial.
 * Usa --brand definido inline por JS según agency.themeColor.
 * ───────────────────────────────────────────────────────────── */

.agency-page {
  --brand: #0ea5e9;
  --brand-dark: #0369a1;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #0f172a;
  background: #f8fafc;
  min-height: 100vh;
}
.agency-page * { box-sizing: border-box; }

/* Navbar */
.ah-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid #e2e8f0;
}
.ah-nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.ah-nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.ah-logo {
  height: 40px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
}
.ah-logo-placeholder {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  color: #fff;
  display: grid;
  place-items: center;
  font-family: "Fraunces", Georgia, serif;
  font-size: 20px;
  font-weight: 700;
}
.ah-nav-name {
  font-family: "Fraunces", Georgia, serif;
  font-size: 22px;
  font-weight: 700;
  color: #0f172a;
  letter-spacing: -0.3px;
  white-space: nowrap;
}
.ah-nav-links {
  display: flex;
  gap: 28px;
  margin-left: auto;
  margin-right: 12px;
}
.ah-nav-links a {
  color: #64748b;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.15s;
}
.ah-nav-links a:hover { color: var(--brand); }
.ah-nav-cta {
  background: var(--brand);
  color: #fff;
  padding: 10px 18px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
}
.ah-nav-cta:hover { background: var(--brand-dark); }

@media (max-width: 780px) {
  .ah-nav-links { display: none; }
  .ah-nav-name { font-size: 18px; }
}

/* Hero */
.ah-hero {
  max-width: 1280px;
  margin: 0 auto;
  padding: 72px 32px 56px;
  display: grid;
  grid-template-columns: 1.05fr 0.85fr;
  gap: 56px;
  align-items: center;
}
.ah-hero-kicker {
  display: inline-block;
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.12), rgba(14, 165, 233, 0.04));
  color: var(--brand-dark);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 18px;
  border: 1px solid rgba(14, 165, 233, 0.2);
}
.ah-hero-title {
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(38px, 5vw, 62px);
  font-weight: 700;
  letter-spacing: -1.5px;
  line-height: 1.02;
  margin: 0 0 20px;
  color: #0f172a;
}
.ah-accent {
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.ah-hero-sub {
  font-size: 19px;
  line-height: 1.55;
  color: #475569;
  margin: 0 0 30px;
  max-width: 540px;
}
.ah-hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.ah-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 26px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
  border: none;
  cursor: pointer;
}
.ah-btn.primary {
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  color: #fff;
  box-shadow: 0 10px 28px rgba(14, 165, 233, 0.3);
}
.ah-btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(14, 165, 233, 0.4);
}
.ah-btn.secondary {
  background: #fff;
  color: #0f172a;
  border: 1.5px solid #e2e8f0;
}
.ah-btn.secondary:hover {
  border-color: var(--brand);
  color: var(--brand);
}
.ah-hero-trust {
  display: flex;
  gap: 22px;
  font-size: 13px;
  color: #64748b;
  flex-wrap: wrap;
}
.ah-hero-trust span::before {
  content: "✓ ";
  color: #10b981;
  font-weight: 700;
}

/* Phone mockup */
.ah-hero-phone-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}
.ah-phone {
  width: min(320px, 85vw);
  height: 650px;
  max-height: 80vh;
  background: #1a1a2e;
  border-radius: 42px;
  padding: 14px;
  box-shadow:
    0 40px 80px rgba(15, 23, 42, 0.25),
    0 20px 40px rgba(14, 165, 233, 0.15),
    inset 0 0 0 2px rgba(255, 255, 255, 0.08);
  position: relative;
  transform: rotate(-2deg);
  transition: transform 0.4s ease;
}
.ah-phone:hover { transform: rotate(0deg) scale(1.02); }
.ah-phone::before {
  content: "";
  position: absolute;
  top: 22px;
  left: 50%;
  transform: translateX(-50%);
  width: 110px;
  height: 24px;
  background: #1a1a2e;
  border-radius: 0 0 16px 16px;
  z-index: 10;
}
.ah-phone-screen {
  width: 100%;
  height: 100%;
  background: #fff;
  border-radius: 30px;
  overflow: hidden;
}
.ah-phone-screen iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.ah-phone-fallback {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 40px 24px;
  color: #fff;
}
.ah-phone-fallback h4 {
  font-family: "Fraunces", Georgia, serif;
  font-size: 26px;
  margin: 0 0 10px;
}
.ah-phone-fallback p { font-size: 14px; opacity: 0.92; margin: 0; }

@media (max-width: 960px) {
  .ah-hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 40px 24px;
    gap: 40px;
  }
  .ah-hero-sub { margin-left: auto; margin-right: auto; }
  .ah-hero-actions, .ah-hero-trust { justify-content: center; }
  .ah-phone { transform: none; }
}

/* Features */
.ah-features,
.ah-trips,
.ah-about,
.ah-contact {
  max-width: 1280px;
  margin: 0 auto;
  padding: 70px 32px;
}
.ah-features h2,
.ah-trips h2,
.ah-about h2,
.ah-contact h2 {
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  letter-spacing: -1px;
  text-align: center;
  margin: 0 0 10px;
  color: #0f172a;
}
.ah-section-sub {
  text-align: center;
  color: #64748b;
  font-size: 17px;
  max-width: 620px;
  margin: 0 auto 48px;
  line-height: 1.5;
}
.ah-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.ah-feature {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  padding: 28px 26px;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.ah-feature:hover {
  transform: translateY(-3px);
  border-color: var(--brand);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
}
.ah-feature-ic {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.15), rgba(14, 165, 233, 0.05));
  display: grid;
  place-items: center;
  font-size: 26px;
  margin-bottom: 18px;
}
.ah-feature h3 {
  font-family: "Fraunces", Georgia, serif;
  font-size: 19px;
  font-weight: 700;
  margin: 0 0 8px;
  color: #0f172a;
}
.ah-feature p {
  color: #64748b;
  font-size: 14px;
  line-height: 1.55;
  margin: 0;
}

/* Trips grid */
.ah-trips {
  background: #fff;
  max-width: none;
  padding: 80px 32px;
}
.ah-trips h2,
.ah-trips .ah-section-sub {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}
.ah-trip-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 18px;
  max-width: 1280px;
  margin: 0 auto;
}
.ah-trip-card {
  display: flex;
  align-items: stretch;
  gap: 0;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.ah-trip-card:hover {
  transform: translateY(-3px);
  border-color: var(--brand);
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.1);
}
.ah-trip-bar {
  width: 6px;
  background: var(--brand);
  flex-shrink: 0;
}
.ah-trip-body {
  flex: 1;
  padding: 20px 24px;
  min-width: 0;
}
.ah-trip-title {
  font-family: "Fraunces", Georgia, serif;
  font-size: 19px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 4px;
}
.ah-trip-sub {
  font-size: 13px;
  color: #475569;
  margin-bottom: 8px;
}
.ah-trip-meta {
  font-size: 12px;
  color: #94a3b8;
}
.ah-trip-arrow {
  display: flex;
  align-items: center;
  padding: 0 22px;
  font-size: 22px;
  color: var(--brand);
}
.ah-trips-empty {
  text-align: center;
  color: #94a3b8;
  font-style: italic;
  padding: 30px 0;
}

/* About */
.ah-about {
  background: #f8fafc;
}
.ah-about p {
  max-width: 760px;
  margin: 0 auto;
  font-size: 17px;
  line-height: 1.65;
  color: #334155;
  text-align: center;
}

/* Contact */
.ah-contact {
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.06), rgba(14, 165, 233, 0.02));
  border-top: 1px solid rgba(14, 165, 233, 0.15);
  border-bottom: 1px solid rgba(14, 165, 233, 0.15);
  max-width: none;
  padding: 80px 32px;
}
.ah-contact h2,
.ah-contact .ah-section-sub {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.ah-contact-actions {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
  max-width: 900px;
  margin: 0 auto;
}
.ah-contact-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 22px;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  text-decoration: none;
  color: #0f172a;
  font-size: 14px;
  transition: transform 0.15s, border-color 0.15s, box-shadow 0.15s;
}
.ah-contact-btn:hover {
  transform: translateY(-2px);
  border-color: var(--brand);
  box-shadow: 0 10px 28px rgba(14, 165, 233, 0.15);
}
.ah-contact-btn .ic {
  font-size: 26px;
  line-height: 1;
}
.ah-contact-btn b {
  font-size: 13px;
  font-weight: 700;
}
.ah-contact-btn.static {
  cursor: default;
}
.ah-contact-btn.static:hover {
  transform: none;
  border-color: #e2e8f0;
  box-shadow: none;
}

/* Footer */
.ah-footer {
  background: #0f172a;
  color: #cbd5e1;
  padding: 36px 32px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 13px;
}
.ah-footer strong { color: #fff; }
.ah-powered a {
  color: var(--brand);
  text-decoration: none;
  font-weight: 700;
}
.ah-powered a:hover { text-decoration: underline; }

/* Agency home · XL breakpoints */
@media (min-width: 1440px) {
  .ah-nav-inner,
  .ah-hero,
  .ah-features,
  .ah-trips h2,
  .ah-trips .ah-section-sub,
  .ah-trip-grid,
  .ah-about p,
  .ah-about,
  .ah-contact h2,
  .ah-contact .ah-section-sub,
  .ah-contact-actions {
    max-width: 1400px;
  }
  .ah-hero { padding: 96px 48px 80px; gap: 80px; }
  .ah-hero-title { font-size: 68px; }
  .ah-features,
  .ah-about,
  .ah-trips,
  .ah-contact { padding: 100px 48px; }
  .ah-phone { width: 360px; height: 720px; }
}

@media (min-width: 1800px) {
  .ah-nav-inner,
  .ah-hero,
  .ah-features,
  .ah-trips h2,
  .ah-trips .ah-section-sub,
  .ah-trip-grid,
  .ah-about p,
  .ah-about,
  .ah-contact h2,
  .ah-contact .ah-section-sub,
  .ah-contact-actions {
    max-width: 1600px;
  }
  .ah-hero { padding: 120px 64px 96px; }
  .ah-hero-title { font-size: 76px; }
}

/* ═══════════════════════════════════════════════════════════════
 * NUEVAS SECCIONES LANDING COMERCIAL
 * ═══════════════════════════════════════════════════════════════ */

/* ── Stats bar ── */
.landing-stats-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  background: #0f172a;
  padding: 24px 32px;
}
.landing-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 0 32px;
}
.landing-stat strong {
  font-size: 28px;
  font-weight: 800;
  color: #0ea5e9;
  font-family: "Fraunces", serif;
  line-height: 1;
}
.landing-stat span {
  font-size: 12px;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  font-weight: 500;
}
.landing-stat-div {
  width: 1px;
  height: 36px;
  background: #1e293b;
}
@media (max-width: 640px) {
  .landing-stat-div { display: none; }
  .landing-stat { padding: 10px 20px; }
  .landing-stats-bar { gap: 0; }
}

/* ── Problema (before/after) ── */
.landing-problem { background: #f8fafc; }
.landing-problem-inner {
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: start;
}
.landing-problem-side {
  background: #fff;
  border-radius: 20px;
  padding: 28px 28px 24px;
  box-shadow: 0 2px 16px rgba(0,0,0,.06);
}
.landing-problem-side.old { border-top: 3px solid #f87171; }
.landing-problem-side.new { border-top: 3px solid #34d399; }
.landing-problem-label {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.4px;
  margin-bottom: 16px;
  padding: 6px 12px;
  border-radius: 8px;
  display: inline-block;
}
.landing-problem-label.bad  { background: #fee2e2; color: #b91c1c; }
.landing-problem-label.good { background: #dcfce7; color: #166534; }
.landing-problem-list {
  list-style: none;
  padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 10px;
}
.landing-problem-list li {
  font-size: 14px;
  color: #374151;
  line-height: 1.5;
  padding-left: 0;
}
.landing-problem-arrow {
  font-size: 28px;
  color: #0ea5e9;
  font-weight: 800;
  align-self: center;
  padding-top: 20px;
}
@media (max-width: 720px) {
  .landing-problem-inner { grid-template-columns: 1fr; }
  .landing-problem-arrow { text-align: center; font-size: 22px; padding: 0; }
}

/* ── Features grid 8 tarjetas ── */
.landing-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
  max-width: 1100px;
  margin: 40px auto 0;
}
.landing-feature-card {
  background: #fff;
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
  border: 1px solid #f1f5f9;
  transition: transform 0.2s, box-shadow 0.2s;
}
.landing-feature-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(0,0,0,.10);
}
.lfc-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
}
.landing-feature-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 8px;
}
.landing-feature-card p {
  font-size: 13.5px;
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}

/* ── Editor section ── */
.landing-editor-section {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 56px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}
.landing-editor-text h2 { text-align: left; }
.landing-editor-text p { color: #64748b; line-height: 1.7; margin: 16px 0 20px; }
.landing-editor-points {
  list-style: none;
  padding: 0; margin: 0 0 24px;
  display: flex; flex-direction: column; gap: 10px;
}
.landing-editor-points li {
  font-size: 14px;
  color: #374151;
  line-height: 1.55;
  padding-left: 20px;
  position: relative;
}
.landing-editor-points li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #0ea5e9;
  font-weight: 800;
}
@media (max-width: 880px) {
  .landing-editor-section { grid-template-columns: 1fr; }
  .landing-editor-text h2 { text-align: center; }
}

/* ── Browser mockup ── */
.lm-browser {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,.15), 0 4px 16px rgba(0,0,0,.08);
  overflow: hidden;
  border: 1px solid #e2e8f0;
}
.lm-browser-bar {
  background: #f1f5f9;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid #e2e8f0;
}
.lm-browser-dots { display: flex; gap: 6px; }
.lm-browser-dots span {
  width: 10px; height: 10px; border-radius: 50%;
  background: #e2e8f0;
}
.lm-browser-dots span:nth-child(1) { background: #f87171; }
.lm-browser-dots span:nth-child(2) { background: #fbbf24; }
.lm-browser-dots span:nth-child(3) { background: #34d399; }
.lm-browser-url {
  flex: 1;
  background: #fff;
  border-radius: 6px;
  padding: 5px 12px;
  font-size: 12px;
  color: #64748b;
  border: 1px solid #e2e8f0;
  font-family: monospace;
}
.lm-browser-screen {
  display: flex;
  min-height: 340px;
}
.lm-editor-sidebar {
  width: 160px;
  background: #f8fafc;
  border-right: 1px solid #e2e8f0;
  padding: 12px 0;
  flex-shrink: 0;
}
.lm-sidebar-item {
  padding: 9px 16px;
  font-size: 12px;
  color: #64748b;
  cursor: pointer;
}
.lm-sidebar-item.active {
  background: #e0f2fe;
  color: #0284c7;
  font-weight: 700;
  border-right: 3px solid #0284c7;
}
.lm-add {
  color: #0ea5e9 !important;
  font-weight: 600;
  margin-top: 4px;
}
.lm-editor-main {
  flex: 1;
  padding: 16px;
  overflow: hidden;
}
.lm-editor-header { margin-bottom: 14px; }
.lm-editor-title {
  font-size: 15px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 2px;
}
.lm-editor-sub { font-size: 12px; color: #64748b; margin-bottom: 8px; }
.lm-editor-tags { display: flex; gap: 6px; flex-wrap: wrap; }
.lm-tag {
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 99px;
}
.lm-tag.blue { background: #dbeafe; color: #1d4ed8; }
.lm-tag.gray { background: #f1f5f9; color: #475569; }
.lm-activity-card {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #f8fafc;
  border-radius: 10px;
  padding: 10px 12px;
  margin-bottom: 8px;
  border: 1px solid #f1f5f9;
}
.lm-act-time { font-size: 11px; font-weight: 700; color: #0ea5e9; min-width: 38px; }
.lm-act-body { flex: 1; min-width: 0; }
.lm-act-title { font-size: 12px; font-weight: 700; color: #1e293b; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.lm-act-meta { font-size: 11px; color: #94a3b8; margin-top: 2px; }
.lm-act-badge {
  font-size: 10px;
  font-weight: 800;
  padding: 3px 7px;
  border-radius: 6px;
  flex-shrink: 0;
}
.lm-act-badge.pdf  { background: #fee2e2; color: #b91c1c; }
.lm-act-badge.map  { background: #dcfce7; color: #166534; }
.lm-act-badge.photo { background: #e0f2fe; color: #0369a1; }
.lm-add-activity {
  font-size: 12px;
  color: #0ea5e9;
  font-weight: 700;
  padding: 8px 12px;
  border: 1.5px dashed #bae6fd;
  border-radius: 10px;
  text-align: center;
  cursor: pointer;
}

/* ── App section (traveler view) ── */
.landing-app-section {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 56px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}
.landing-app-text h2 { text-align: left; }
.landing-app-text p { color: #64748b; line-height: 1.7; margin: 16px 0 24px; }
.landing-app-points { display: flex; flex-direction: column; gap: 14px; }
.landing-app-point {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 14px;
  color: #374151;
  line-height: 1.55;
}
.lap-num {
  width: 28px; height: 28px;
  background: linear-gradient(135deg, #0ea5e9, #06b6d4);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.lm-phone-tall { height: 580px; width: 280px; }
.lm-phone-screen-tall { overflow: hidden; background: #fff; }
.lm-app-topbar {
  display: flex;
  align-items: center;
  padding: 12px 12px 10px;
  gap: 8px;
}
.lm-app-back { color: rgba(255,255,255,.8); font-size: 18px; }
.lm-app-title { flex: 1; color: #fff; font-size: 14px; font-weight: 700; text-align: center; }
.lm-app-menu { color: rgba(255,255,255,.8); font-size: 16px; }
.lm-app-hero {
  padding: 16px;
  text-align: center;
  padding-bottom: 20px;
}
.lm-app-hero-day { font-size: 10px; font-weight: 700; color: rgba(255,255,255,.7); letter-spacing: 1px; text-transform: uppercase; }
.lm-app-hero-name { font-size: 22px; font-weight: 800; color: #fff; font-family: "Fraunces", serif; }
.lm-app-hero-date { font-size: 12px; color: rgba(255,255,255,.75); margin-top: 2px; }
.lm-app-hero-countdown {
  display: inline-block;
  margin-top: 8px;
  background: rgba(255,255,255,.2);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 99px;
}
.lm-app-activities { padding: 12px 10px 0; }
.lm-app-act {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 10px;
}
.lm-app-act-time { font-size: 10px; font-weight: 700; color: #94a3b8; min-width: 34px; padding-top: 2px; }
.lm-app-act-dot { width: 8px; height: 8px; border-radius: 50%; margin-top: 4px; flex-shrink: 0; }
.lm-app-act-body { flex: 1; background: #f8fafc; border-radius: 10px; padding: 8px 10px; }
.lm-app-act-title { font-size: 12px; font-weight: 700; color: #1e293b; }
.lm-app-act-sub { font-size: 10px; color: #94a3b8; margin-top: 2px; }
.lm-app-act-tag {
  display: inline-block;
  margin-top: 5px;
  font-size: 10px;
  font-weight: 700;
  color: #7c3aed;
  background: #f3e8ff;
  padding: 2px 8px;
  border-radius: 99px;
}
.lm-app-bottombar {
  display: flex;
  border-top: 1px solid #f1f5f9;
  padding: 8px 0 4px;
  margin-top: 6px;
}
.lm-app-bb-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  color: #94a3b8;
  font-size: 9px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}
.lm-app-bb-item.active { color: #7c3aed; }
@media (max-width: 880px) {
  .landing-app-section { grid-template-columns: 1fr; }
  .landing-app-mockup-wrap { display: flex; justify-content: center; }
  .landing-app-text h2 { text-align: center; }
}

/* ── Comparativa ── */
.landing-compare-section { background: #f8fafc; }
.landing-compare-table {
  max-width: 860px;
  margin: 40px auto 0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,.08);
}
.lct-header, .lct-row {
  display: grid;
  grid-template-columns: 2fr 1.5fr 1.5fr 1.5fr;
}
.lct-header {
  background: #0f172a;
  font-size: 13px;
  font-weight: 700;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.lct-col {
  padding: 14px 16px;
  font-size: 14px;
  border-bottom: 1px solid #f1f5f9;
}
.lct-header .lct-col { border-bottom: none; color: #64748b; }
.lct-feat { color: #374151; font-weight: 600; background: #fff; }
.lct-them { color: #94a3b8; text-align: center; background: #fff; }
.lct-us {
  background: #e0f2fe;
  color: #0369a1;
  font-weight: 700;
  text-align: center;
}
.lct-header .lct-us { background: #0ea5e9; color: #fff; }
.lct-row:last-child .lct-col { border-bottom: none; }
.lct-row:nth-child(even) .lct-feat,
.lct-row:nth-child(even) .lct-them { background: #f8fafc; }
.lct-row:nth-child(even) .lct-us { background: #bae6fd; }
@media (max-width: 640px) {
  .lct-header, .lct-row { grid-template-columns: 1.5fr 1fr 1fr; }
  .lct-header .lct-them:first-of-type,
  .lct-row .lct-them:first-of-type { display: none; }
}

/* ── FAQ ── */
.landing-faq-section { max-width: 740px; margin-left: auto; margin-right: auto; }
.landing-faq { display: flex; flex-direction: column; gap: 0; margin-top: 40px; }
.landing-faq-item {
  border-bottom: 1px solid #e2e8f0;
}
.landing-faq-item:first-child { border-top: 1px solid #e2e8f0; }
.landing-faq-item summary {
  padding: 18px 4px;
  font-size: 16px;
  font-weight: 600;
  color: #0f172a;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.landing-faq-item summary::-webkit-details-marker { display: none; }
.landing-faq-item summary::after {
  content: "+";
  font-size: 22px;
  color: #0ea5e9;
  font-weight: 300;
  flex-shrink: 0;
  transition: transform 0.2s;
}
.landing-faq-item[open] summary::after { transform: rotate(45deg); }
.landing-faq-item p {
  font-size: 15px;
  color: #64748b;
  line-height: 1.7;
  padding: 0 4px 18px;
  margin: 0;
}

/* ── CTA final ── */
.landing-cta-inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}
.landing-cta-note {
  margin-top: 16px;
  font-size: 14px;
  color: rgba(255,255,255,.7);
}
.landing-cta-note a { color: #fff; font-weight: 700; }

/* ── Pricing badge ── */
.landing-price-badge {
  display: inline-block;
  background: linear-gradient(135deg, #0ea5e9, #06b6d4);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 99px;
  margin-bottom: 10px;
}
.landing-pricing-note {
  text-align: center;
  margin-top: 28px;
  font-size: 14px;
  color: #64748b;
}
.landing-pricing-note a { color: #0ea5e9; font-weight: 600; }

/* ── Paste-to-app section ── */
.landing-paste-section {
  background: #fff;
  padding: 96px 24px;
}
.landing-paste-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 860px) {
  .landing-paste-inner { grid-template-columns: 1fr; gap: 48px; }
}

/* Left: text + source pills */
.landing-paste-text h2 {
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(28px, 4vw, 38px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--ink);
  margin: 10px 0 16px;
}
.landing-paste-text p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--muted);
  margin: 0 0 28px;
}
.landing-paste-sources {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.lps-item {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 8px 14px 8px 10px;
  font-size: 13px;
  font-weight: 600;
  color: #334155;
}
.lps-icon {
  width: 32px;
  height: 32px;
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Right: visual flow */
.landing-paste-flow {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.lpf-step {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.lpf-box {
  border-radius: 14px;
  padding: 16px 18px;
  font-size: 12.5px;
  line-height: 1.65;
}
.lpf-box.input {
  background: #f8fafc;
  border: 1.5px solid #e2e8f0;
  font-family: "SFMono-Regular", Consolas, monospace;
  color: #475569;
}
.lpf-box.output {
  background: #f0fdf4;
  border: 1.5px solid #bbf7d0;
  color: #1e3a2f;
}
.lpf-box-label {
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: #94a3b8;
  margin-bottom: 8px;
}
.lpf-box.output .lpf-box-label { color: #4ade80; }
.lpf-text { white-space: pre-wrap; }

/* Arrow between boxes */
.lpf-arrow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 8px 0;
  position: relative;
}
.lpf-arrow-line {
  width: 2px;
  height: 28px;
  background: linear-gradient(to bottom, #cbd5e1, #22d3ee);
  border-radius: 2px;
}
.lpf-arrow-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, #0ea5e9, #06b6d4);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 99px;
}

/* Day/activity output */
.lpf-days { display: flex; flex-direction: column; gap: 10px; }
.lpf-day {
  background: rgba(255,255,255,0.7);
  border-radius: 8px;
  padding: 8px 10px;
  border: 1px solid #d1fae5;
}
.lpf-day-header {
  font-size: 11.5px;
  font-weight: 700;
  color: #065f46;
  margin-bottom: 6px;
}
.lpf-act {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11.5px;
  color: #1e3a2f;
  padding: 2px 0;
}
.lpf-time {
  font-weight: 700;
  color: #0ea5e9;
  font-size: 11px;
  min-width: 36px;
}
.lpf-badge {
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  padding: 2px 6px;
  border-radius: 5px;
  margin-left: auto;
  flex-shrink: 0;
}
.lpf-badge.pdf  { background: #fef9c3; color: #a16207; }
.lpf-badge.map  { background: #dbeafe; color: #1d4ed8; }
.lpf-badge.photo { background: #f3e8ff; color: #7c3aed; }
.lpf-badge.rest { background: #fee2e2; color: #b91c1c; }

/* Result badge below the flow */
.lpf-result {
  display: flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #0ea5e9, #06b6d4);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  border-radius: 12px;
  padding: 12px 18px;
  margin-top: 14px;
}
