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

:root {
  --font-display: "Outfit", system-ui, sans-serif;
  --font-body: "Source Sans 3", "Segoe UI", sans-serif;
  --navy: #12324a;
  --teal: #16a39a;
  --teal-dark: #13877f;
  --sand: #ede4d7;
  --accent-warm: #c2410c;

  --text: #0f172a;
  --muted: #64748b;
  --border: #e2e8f0;
  --bg: #f8fafc;
  --radius: 12px;
}

.text-gradient {
  background: linear-gradient(135deg, var(--teal), var(--navy));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: #fff;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
}

/* NAV */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-brand {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}
.nav-link {
  text-decoration: none;
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
  transition: color 0.15s;
}
.nav-link:hover {
  color: var(--text);
}
.btn-nav {
  background: var(--teal);
  color: #fff;
  text-decoration: none;
  padding: 10px 22px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  transition:
    background 0.15s,
    transform 0.1s;
}
.btn-nav:hover {
  background: var(--teal-dark);
  transform: translateY(-1px);
}

.nav-logo {
  display: block;
  height: 36px;
  width: auto;
}
.nav-brand-text {
  margin-left: 10px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 20px;
  color: var(--navy);
  letter-spacing: -0.5px;
}

/* HERO */
.hero {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  padding: 56px 24px 72px;
  overflow: hidden;
}
.hero-bg-blob {
  position: absolute;
  top: -100px;
  right: -200px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(22, 163, 154, 0.09) 0%, transparent 68%);
  pointer-events: none;
  z-index: 0;
}
.hero-grain {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  pointer-events: none;
  z-index: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.hero-inner {
  position: relative;
  z-index: 1;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(22, 163, 154, 0.08);
  color: var(--teal-dark);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 28px;
  border: 1px solid rgba(22, 163, 154, 0.22);
}
.hero h1 {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -1.5px;
  margin-bottom: 22px;
}
.hero-sub {
  font-size: 18px;
  color: var(--muted);
  max-width: 520px;
  margin-bottom: 38px;
  line-height: 1.75;
}
.hero-sub strong {
  color: var(--text);
  font-weight: 600;
}
.hero-actions {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.btn-hero {
  background: var(--teal);
  color: #fff;
  text-decoration: none;
  padding: 15px 30px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  transition:
    background 0.15s,
    transform 0.1s,
    box-shadow 0.15s;
  display: inline-block;
  box-shadow: 0 4px 20px rgba(22, 163, 154, 0.4);
}
.btn-hero:hover {
  background: var(--teal-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(22, 163, 154, 0.45);
}
.btn-hero-ghost {
  color: var(--muted);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: color 0.15s;
  padding: 8px 4px;
}
.btn-hero-ghost:hover {
  color: var(--teal);
}
.hero-trust {
  font-size: 14px;
  color: var(--muted);
  max-width: 520px;
  line-height: 1.55;
  margin: 0;
}

@keyframes landing-fade-up {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero-inner .hero-badge,
.hero-inner h1,
.hero-inner .hero-sub,
.hero-inner .hero-actions,
.hero-inner .hero-trust {
  animation: landing-fade-up 0.65s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.hero-inner .hero-badge {
  animation-delay: 0.05s;
}
.hero-inner h1 {
  animation-delay: 0.12s;
}
.hero-inner .hero-sub {
  animation-delay: 0.2s;
}
.hero-inner .hero-actions {
  animation-delay: 0.28s;
}
.hero-inner .hero-trust {
  animation-delay: 0.36s;
}
@media (prefers-reduced-motion: reduce) {
  .hero-inner .hero-badge,
  .hero-inner h1,
  .hero-inner .hero-sub,
  .hero-inner .hero-actions,
  .hero-inner .hero-trust,
  .hero-visual {
    animation: none;
  }
}

/* MOCKUP */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
  animation: landing-fade-up 0.75s cubic-bezier(0.22, 1, 0.36, 1) 0.18s both;
}
.mockup-container {
  position: relative;
}
.mockup-float-badge {
  position: absolute;
  top: -16px;
  right: -16px;
  background: linear-gradient(135deg, var(--navy), #1a4a6e);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  padding: 6px 14px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: 0 8px 24px rgba(18, 50, 74, 0.25);
  z-index: 2;
}
.mockup {
  background: #fff;
  border-radius: 18px;
  box-shadow:
    0 2px 4px rgba(0, 0, 0, 0.04),
    0 24px 64px rgba(22, 163, 154, 0.18),
    0 0 0 1px var(--border);
  width: 360px;
  overflow: hidden;
}
.mockup-bar {
  background: #f1f5f9;
  padding: 10px 14px;
  display: flex;
  gap: 6px;
}
.mockup-bar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.mockup-bar span:first-child {
  background: #fca5a5;
}
.mockup-bar span:nth-child(2) {
  background: #fcd34d;
}
.mockup-bar span:nth-child(3) {
  background: #86efac;
}
.mockup-body {
  padding: 24px;
}
.mockup-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
}
.mockup-row--header {
  padding-bottom: 14px;
}
.mockup-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
}
.mockup-badge {
  background: #dcfce7;
  color: #16a34a;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
}
.mockup-badge-outline {
  background: #f0fdf4;
  color: #16a34a;
  font-size: 12px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 20px;
  border: 1px solid #bbf7d0;
}
.mockup-divider {
  height: 1px;
  background: var(--border);
  margin: 6px 0;
}
.mockup-key {
  font-size: 12px;
  color: var(--muted);
}
.mockup-val {
  font-size: 13px;
  font-weight: 500;
}
.mockup-val--strong {
  font-size: 16px;
  font-weight: 800;
  color: var(--teal);
}
.mockup-time {
  font-size: 11px;
  color: var(--muted);
}
.mockup-row--footer {
  margin-top: 10px;
  align-items: center;
}
.mockup-chip {
  font-size: 11px;
  font-weight: 700;
  color: var(--navy);
  background: var(--sand);
  padding: 5px 11px;
  border-radius: 20px;
  border: 1px solid rgba(18, 50, 74, 0.12);
}

/* SOCIAL PROOF BAR */
.proof-bar {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg);
  padding: 28px 0;
}
.proof-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.proof-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 0 48px;
}
.proof-item strong {
  font-size: 17px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.3px;
  font-family: var(--font-display);
}
.proof-item span {
  font-size: 13px;
  color: var(--muted);
}
.proof-sep {
  width: 1px;
  height: 40px;
  background: var(--border);
  flex-shrink: 0;
}

/* SECTIONS */
.section-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}
.section-title {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  letter-spacing: -1px;
  text-align: center;
  margin-bottom: 12px;
}
.section-sub {
  text-align: center;
  color: var(--muted);
  font-size: 17px;
  margin-bottom: 60px;
}

/* HOW IT WORKS */
.how-it-works {
  padding: 100px 0;
  background: var(--bg);
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.step {
  text-align: center;
  padding: 36px 28px;
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  position: relative;
}
.step-num {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 800;
  margin: 0 auto 20px;
  font-family: var(--font-display);
  box-shadow: 0 4px 14px rgba(22, 163, 154, 0.35);
}
.step h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
}
.step p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
}

/* FEATURES */
.features {
  padding: 100px 0;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid var(--border);
  transition:
    box-shadow 0.2s,
    transform 0.2s;
}
.feature-card:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  transform: translateY(-3px);
}
.feature-icon {
  width: 46px;
  height: 46px;
  background: rgba(22, 163, 154, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--teal-dark);
}
.feature-card h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}
.feature-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

.features-grid--v2 {
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* PRODUCT TODAY */
.product-today {
  padding: 96px 0;
  background: linear-gradient(180deg, #fff 0%, var(--sand) 45%, var(--sand) 100%);
  border-top: 1px solid rgba(18, 50, 74, 0.06);
}
.product-today-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.product-pillar {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px 26px;
  border: 1px solid var(--border);
  box-shadow: 0 2px 16px rgba(18, 50, 74, 0.05);
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.product-pillar:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(18, 50, 74, 0.08);
}
.product-pillar--accent {
  border-color: rgba(22, 163, 154, 0.35);
  background: linear-gradient(145deg, #fff 0%, rgba(22, 163, 154, 0.06) 100%);
}
.product-pillar-title {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 12px;
  letter-spacing: -0.3px;
  color: var(--navy);
}
.product-pillar-lead {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.65;
  margin: 0;
}

/* PARA QUIÉN */
.para-quien {
  padding: 96px 0;
  background: var(--bg);
}
.para-quien-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.para-card {
  padding: 32px 28px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: #fff;
}
.para-card--featured {
  border-width: 2px;
  border-color: var(--navy);
  background: linear-gradient(180deg, #fff 0%, #f8fafc 100%);
}
.para-card-title {
  font-size: 17px;
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--navy);
}
.para-card-body {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.65;
  margin: 0;
}

/* ROADMAP */
.roadmap-strip {
  padding: 88px 0;
  background: var(--navy);
  color: #fff;
}
.section-title--light {
  color: #fff;
}
.section-sub--light {
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 48px;
}
.roadmap-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 920px;
  margin: 0 auto;
  text-align: left;
}
.roadmap-heading {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 16px;
}
.roadmap-col--next .roadmap-heading {
  color: rgba(22, 163, 154, 0.95);
}
.roadmap-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.roadmap-list li {
  font-size: 15px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.88);
  padding-left: 18px;
  position: relative;
}
.roadmap-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal);
}

/* PRICING */
.pricing {
  padding: 100px 0;
}
.pricing-grid {
  display: grid;
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}
.pricing-grid--empresas {
  grid-template-columns: repeat(3, 1fr);
  max-width: 1040px;
  align-items: stretch;
}
.pricing-grid--estudios {
  grid-template-columns: repeat(4, 1fr);
  max-width: 1200px;
  align-items: stretch;
}
.pricing-card--tier-pack {
  border: 1px solid rgba(217, 119, 6, 0.35);
  background: linear-gradient(135deg, #fffbeb 0%, #fff 55%);
}
.pricing-toggle-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 28px;
}
.pricing-toggle {
  display: inline-flex;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  background: #f8fafc;
}
.pricing-toggle-btn {
  border: none;
  background: transparent;
  padding: 12px 22px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  color: var(--muted);
  font-family: inherit;
}
.pricing-toggle-btn.is-active {
  background: var(--navy);
  color: #fff;
}
.pricing-panel[hidden] {
  display: none !important;
}
.pricing-card {
  border-radius: 16px;
  padding: 32px 28px;
  border: 1px solid var(--border);
  position: relative;
  display: flex;
  flex-direction: column;
}
.pricing-card--featured {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
  box-shadow: 0 12px 40px rgba(18, 50, 74, 0.3);
  transform: scale(1.02);
}
.pricing-card--featured .pricing-desc,
.pricing-card--featured .pricing-period {
  color: rgba(255, 255, 255, 0.65);
}
.pricing-card--featured .pricing-list li {
  color: rgba(255, 255, 255, 0.9);
}
.pricing-pill {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--teal);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 20px;
  white-space: nowrap;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.pricing-name {
  font-size: 12px;
  font-weight: 700;
  color: var(--muted);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.pricing-card--featured .pricing-name {
  color: rgba(255, 255, 255, 0.6);
}
.pricing-price {
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -2px;
  line-height: 1;
  margin-bottom: 4px;
}
.pricing-period {
  font-size: 14px;
  font-weight: 400;
  color: var(--muted);
  margin-bottom: 14px;
}
.pricing-desc {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 20px;
  min-height: 36px;
  line-height: 1.5;
}
.pricing-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 28px;
  flex: 1;
}
.pricing-list li {
  font-size: 13px;
  color: var(--text);
}
.pricing-list--no {
  color: var(--muted) !important;
  opacity: 0.7;
}
.pricing-card--featured .pricing-list li {
  color: rgba(255, 255, 255, 0.9);
}
.btn-pricing-outline {
  display: block;
  text-align: center;
  padding: 12px;
  border-radius: 10px;
  border: 1.5px solid var(--border);
  text-decoration: none;
  color: var(--text);
  font-weight: 600;
  font-size: 14px;
  transition:
    border-color 0.15s,
    color 0.15s;
}
.btn-pricing-outline:hover {
  border-color: var(--teal);
  color: var(--teal);
}
.btn-pricing-cta-free {
  display: block;
  text-align: center;
  padding: 12px 16px;
  border-radius: 10px;
  border: none;
  background: var(--teal);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  transition:
    opacity 0.15s,
    transform 0.1s;
  box-shadow: 0 2px 12px rgba(22, 163, 154, 0.35);
}
.btn-pricing-cta-free:hover {
  opacity: 0.92;
  transform: translateY(-1px);
  color: #fff;
}
.btn-pricing {
  display: block;
  text-align: center;
  padding: 12px;
  border-radius: 10px;
  background: #fff;
  text-decoration: none;
  color: var(--navy);
  font-weight: 700;
  font-size: 14px;
  transition:
    opacity 0.15s,
    transform 0.1s;
}
.btn-pricing:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}
/* Trial banner */
.trial-banner {
  display: flex;
  align-items: center;
  gap: 16px;
  background: linear-gradient(135deg, rgba(22, 163, 154, 0.08), rgba(22, 163, 154, 0.04));
  border: 1.5px solid rgba(22, 163, 154, 0.25);
  border-radius: 14px;
  padding: 18px 24px;
  margin-bottom: 40px;
}
.trial-banner-icon {
  width: 40px;
  height: 40px;
  background: rgba(22, 163, 154, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  flex-shrink: 0;
}
.trial-banner strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 2px;
}
.trial-banner span {
  font-size: 13px;
  color: var(--muted);
}

.pricing-tag-soon {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.55);
  white-space: nowrap;
}
.pricing-card:not(.pricing-card--featured) .pricing-tag-soon {
  color: var(--muted);
}
.pricing-tag-note {
  font-size: 11px;
  font-weight: 600;
  color: var(--muted);
}
.pricing-card--featured .pricing-tag-note {
  color: rgba(255, 255, 255, 0.55);
}
.pricing-list--soft {
  color: var(--muted);
  font-size: 13px;
}
.pricing-card--elite {
  border: 2px solid var(--navy);
  background: linear-gradient(180deg, #f8fafc 0%, #fff 45%);
}
.pricing-card--elite .pricing-name {
  color: var(--navy);
}

/* Estudio card */
.pricing-card--estudio {
  border: 2px solid var(--navy);
  background: #fff;
}
.pricing-card--estudio .pricing-name {
  color: var(--navy);
}
.pricing-price--custom {
  font-size: 30px !important;
  letter-spacing: -1px !important;
  color: var(--navy);
}
.btn-pricing-estudio {
  display: block;
  text-align: center;
  padding: 12px;
  border-radius: 10px;
  background: var(--navy);
  text-decoration: none;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  transition: opacity 0.15s;
}
.btn-pricing-estudio:hover {
  opacity: 0.85;
}

/* CTA */
.cta {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--navy) 0%, #1e4a6e 50%, var(--teal) 100%);
}
.cta-inner {
  text-align: center;
}
.cta h2 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 14px;
  color: #fff;
}
.cta p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 17px;
  margin-bottom: 36px;
}
.cta .btn-hero {
  background: #fff;
  color: var(--navy);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
}
.cta .btn-hero:hover {
  background: #f0fdf4;
  transform: translateY(-2px);
}
.cta-note {
  margin-top: 18px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
}

/* FOOTER */
.footer {
  border-top: 1px solid var(--border);
  padding: 36px 24px;
  background: #fafafa;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  row-gap: 12px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-logo {
  height: 28px;
  width: auto;
  display: block;
}
.footer-brand-text {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 17px;
  color: var(--navy);
  letter-spacing: -0.5px;
}
.footer-links {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}
.footer-links a {
  font-size: 13px;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.15s;
}
.footer-links a:hover {
  color: var(--teal-dark);
}
.footer-copy {
  font-size: 13px;
  color: var(--muted);
  margin: 0;
}

/* RESPONSIVE */
@media (max-width: 1100px) {
  .features-grid--v2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 1024px) {
  .product-today-grid,
  .para-quien-grid {
    grid-template-columns: 1fr;
  }
  .roadmap-cols {
    grid-template-columns: 1fr;
  }
  .pricing-grid--empresas {
    grid-template-columns: 1fr;
    max-width: 420px;
  }
  .pricing-grid--estudios {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 900px) {
  .pricing-grid--empresas {
    max-width: none;
  }
  .pricing-card--featured {
    transform: none;
  }
}

@media (max-width: 768px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 48px 24px 56px;
    gap: 36px;
  }
  .hero-visual {
    display: none;
  }
  .steps-grid {
    grid-template-columns: 1fr;
  }
  .features-grid,
  .features-grid--v2 {
    grid-template-columns: 1fr;
  }
  .pricing-grid--empresas,
  .pricing-grid--estudios {
    grid-template-columns: 1fr;
  }
  .proof-grid {
    flex-wrap: wrap;
    gap: 20px 32px;
    justify-content: center;
  }
  .proof-item {
    padding: 0 20px;
  }
  .proof-sep {
    display: none;
  }
  .footer-inner {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
  .footer-links {
    justify-content: center;
  }
  .footer-copy {
    margin-top: 8px;
  }
}

/* Misma barra de entorno que en app (landing no carga app.css) */
.env-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100000;
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.03em;
  padding: 7px 14px;
  color: #fff;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.12);
}
.env-banner--staging {
  background: #c2410c;
}
.env-banner--local {
  background: #6d28d9;
}
.env-banner--other {
  background: #475569;
}
.env-banner--beta {
  background: #0f766e;
}

.env-banner--maintenance {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  padding: 11px 18px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.35;
  color: #fffbeb;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.18);
  text-align: center;
  background: linear-gradient(110deg, #7c2d12 0%, #c2410c 38%, #ea580c 72%, #fb923c 100%);
  background-size: 200% 100%;
  animation: env-banner-maint-shift 10s ease-in-out infinite;
  box-shadow:
    0 4px 18px rgba(154, 52, 18, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
  border-bottom: 1px solid rgba(67, 20, 7, 0.35);
}

.env-banner--maintenance::before {
  content: "";
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background:
    rgba(255, 255, 255, 0.2)
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fffbeb' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M14.7 6.3a1 1 0 0 0 0 1.4l1.6 1.6a1 1 0 0 0 1.4 0l3.77-3.77a6 6 0 0 1-7.94 7.94l-6.91 6.91a2.12 2.12 0 0 1-3-3l6.91-6.91a6 6 0 0 1 7.94-7.94l-3.76 3.76z'/%3E%3C/svg%3E")
    center / 15px 15px no-repeat;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

@keyframes env-banner-maint-shift {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .env-banner--maintenance {
    animation: none;
    background-size: 100% 100%;
  }
}

body:has(> .env-banner) {
  padding-top: 32px;
}
body:has(> .env-banner) .nav {
  top: 32px;
}

@media print {
  .nav,
  .env-banner,
  .hero-visual,
  .proof-bar,
  .cta .btn-hero {
    break-inside: avoid;
  }
  .hero {
    grid-template-columns: 1fr;
  }
  .hero-bg-blob,
  .hero-grain {
    display: none !important;
  }
  body {
    background: #fff;
    color: #000;
    font-size: 12pt;
  }
  a {
    color: #000;
    text-decoration: underline;
  }
}
