:root {
  --bg: #f5f7fb;
  --surface: #ffffff;
  --text: #0b1f3a;
  --muted: #5f6b7a;
  --line: #dbe3ee;
  --primary: #1e88e5;
  --secondary: #7b1fa2;
  --success: #1f7a3d;
  --danger: #b3261e;
  --gradient: linear-gradient(135deg, #1e88e5 0%, #7b1fa2 100%);
  --shadow: 0 18px 44px rgba(11, 31, 58, 0.10);
  --radius: 20px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(245, 247, 251, 0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(219, 227, 238, 0.9);
}

.nav-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
}

.brand-mark {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, #3b82f6 0%, #7c3aed 100%);
  position: relative;
  box-shadow: 0 10px 24px rgba(30, 136, 229, 0.22);
  flex: 0 0 48px;
}

.brand-mark::before,
.brand-mark::after {
  content: "";
  position: absolute;
  background: rgba(255, 255, 255, 0.96);
  border-radius: 999px;
  transform-origin: center;
}

.brand-mark::before {
  width: 24px;
  height: 6px;
  left: 11px;
  top: 14px;
  transform: rotate(39deg);
}

.brand-mark::after {
  width: 24px;
  height: 6px;
  left: 11px;
  top: 28px;
  transform: rotate(-39deg);
}

.brand > span:last-child {
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1.1;
}

.brand-sub {
  display: block;
  margin-top: 4px;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--muted);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  color: var(--muted);
  font-weight: 600;
  font-size: 0.95rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: 0;
  border-radius: 999px;
  padding: 1rem 1.45rem;
  font-weight: 800;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, opacity .2s ease, background .2s ease;
  text-align: center;
  line-height: 1.2;
}

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

.btn-primary {
  background: var(--gradient);
  color: #fff;
  box-shadow: 0 8px 20px rgba(80, 100, 255, 0.25);
  font-weight: 700;
}

.btn-secondary {
  background: #f3f5f8;
  color: var(--text);
  border: 1px solid #d7dee9;
}

.btn-whatsapp {
  background: #25d366;
  color: #fff;
  box-shadow: 0 16px 30px rgba(37, 211, 102, 0.22);
}

.btn-whatsapp:hover {
  background: #1ebe5d;
}

.btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.btn-whatsapp svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.btn.full {
  width: 100%;
}

.hero {
  padding: 5rem 0 3rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2rem;
  align-items: center;
}

.eyebrow {
  display: inline-block;
  padding: .45rem .8rem;
  border-radius: 999px;
  background: rgba(30, 136, 229, 0.1);
  color: var(--primary);
  font-weight: 800;
  font-size: .85rem;
  margin-bottom: 1rem;
}

h1 {
  margin: 0;
  font-size: clamp(2.5rem, 6vw, 4.6rem);
  line-height: 1.02;
  letter-spacing: -0.045em;
  max-width: 13ch;
}

.hero p {
  max-width: 62ch;
  color: var(--muted);
  font-size: 1.08rem;
  margin: 1.15rem 0 1.6rem;
}

.hero-brand {
  margin-bottom: 1.25rem;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
  width: 100%;
  max-width: 340px;
}

.hero-actions .btn,
.hero-actions a.btn,
.hero-actions button.btn {
  width: 100%;
  min-width: 0;
  min-height: 54px;
  padding: 0.95rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 28px;
  box-sizing: border-box;
  white-space: nowrap;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  color: var(--muted);
  font-size: .94rem;
  font-weight: 700;
}

.hero-proof span::before {
  content: "✓ ";
  color: var(--success);
}

.hero-card,
.card,
.quote,
.faq-item,
.form-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 26px rgba(11, 31, 58, 0.05);
}

.hero-card {
  padding: 1.15rem;
}

.dashboard {
  background: #f8fbff;
  border: 1px solid #d7e4f5;
  border-radius: 22px;
  overflow: hidden;
}

.dash-top {
  padding: .95rem 1rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  background: #eef5fc;
  border-bottom: 1px solid #d7e4f5;
  font-size: .92rem;
}

.dash-title {
  font-weight: 800;
}

.dash-tag {
  background: var(--gradient);
  color: #fff;
  padding: .35rem .65rem;
  border-radius: 999px;
  font-size: .8rem;
  font-weight: 800;
}

.dash-body {
  padding: 1rem;
  display: grid;
  gap: .95rem;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .85rem;
}

.stat {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1rem;
}

.stat-label {
  color: var(--muted);
  font-size: .84rem;
}

.stat-value {
  font-size: 1.45rem;
  font-weight: 800;
  margin-top: .3rem;
}

.stat-note {
  color: var(--success);
  font-size: .82rem;
  font-weight: 700;
  margin-top: .25rem;
}

.panel-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: .85rem;
}

.panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1rem;
}

.panel h3 {
  margin: 0 0 .75rem;
  font-size: 1rem;
}

.bar-list,
.alert-list {
  display: grid;
  gap: .75rem;
}

.bar-track {
  margin-top: .35rem;
  height: 10px;
  border-radius: 999px;
  background: #edf2f8;
  overflow: hidden;
}

.bar-fill {
  height: 100%;
  border-radius: inherit;
  background: var(--gradient);
}

.alert-item {
  padding: .8rem .9rem;
  border-radius: 14px;
  background: #f8fbff;
  border: 1px solid #dde8f6;
  color: var(--muted);
  font-size: .92rem;
}

.section {
  padding: 4.5rem 0;
}

.section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 2.1rem;
}

.section-head h2 {
  margin: 0 0 .75rem;
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.section-head p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.grid-2,
.grid-3,
.industry-grid,
.steps,
.pricing-grid,
.results-grid {
  display: grid;
  gap: 1rem;
}

.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.industry-grid {
  grid-template-columns: repeat(2, 1fr);
}

.steps {
  grid-template-columns: repeat(4, 1fr);
}

.pricing-grid {
  grid-template-columns: repeat(4, 1fr);
}

.results-grid {
  grid-template-columns: repeat(4, 1fr);
}

.card {
  padding: 1.45rem;
  position: relative;
  overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease, background .22s ease;
}

.card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(30, 136, 229, 0.03) 0%, rgba(123, 31, 162, 0.03) 100%);
  opacity: 0;
  transition: opacity .22s ease;
  pointer-events: none;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(11, 31, 58, 0.12);
  border-color: rgba(30, 136, 229, 0.28);
}

.card:hover::after {
  opacity: 1;
}

.card > * {
  position: relative;
  z-index: 1;
}

.card h3,
.card h4 {
  margin: 0 0 .65rem;
  font-size: 1.1rem;
}

.card p,
.card li {
  color: var(--muted);
  margin: 0;
}

.icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(30, 136, 229, 0.10) 0%, rgba(123, 31, 162, 0.08) 100%);
  color: var(--primary);
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  font-size: 1.1rem;
  font-weight: 800;
  border: 1px solid rgba(30, 136, 229, 0.12);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.7);
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease;
}

.icon svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
}

.card:hover .icon {
  transform: scale(1.06);
  box-shadow: 0 10px 24px rgba(30, 136, 229, 0.16);
  background: linear-gradient(180deg, rgba(30, 136, 229, 0.14) 0%, rgba(123, 31, 162, 0.12) 100%);
}

.icon-box {
  width: 50px;
  height: 50px;
  background: #e3f2fd;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.problem-card {
  border-left: 5px solid rgba(180, 100, 0, 0.55);
}

.benefit-card {
  border-left: 5px solid rgba(46, 125, 50, 0.45);
}

.industry-card {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 16px;
  align-items: start;
  padding: 20px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid #e3e9f2;
}

.industry-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  background: linear-gradient(180deg, #eef5ff, #f6efff);
}

.industry-main h3 {
  margin: 0 0 6px;
  font-size: 1.05rem;
  font-weight: 800;
  color: #0f2343;
}

.industry-main p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #5d6b82;
}

.highlight {
  background: #edf6ff;
  border: 1px solid #d9e9fb;
  border-radius: 18px;
  padding: 1.15rem;
  color: var(--text);
  font-weight: 700;
}

.quote {
  padding: 1.4rem;
}

.quote p {
  margin: 0 0 .9rem;
  color: var(--text);
  font-weight: 600;
}

.quote small {
  color: var(--muted);
  font-weight: 700;
}

.dark-band {
  background: var(--text);
  color: #fff;
}

.dark-band .section-head p,
.dark-band .card p,
.dark-band .card li {
  color: rgba(255,255,255,0.74);
}

.dark-band .card {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.08);
  box-shadow: none;
}

.dark-band .icon {
  background: rgba(255,255,255,0.09);
  color: #fff;
}

.results-grid .card {
  text-align: center;
  padding: 1.5rem 1rem;
}

.result-number {
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: .45rem;
}

ul.clean {
  list-style: none;
  padding: 0;
  margin: .9rem 0 0;
  display: grid;
  gap: .7rem;
}

ul.clean li::before {
  content: "•";
  color: var(--primary);
  font-weight: 900;
  margin-right: .55rem;
}

.price {
  font-size: 1.6rem;
  font-weight: 800;
  margin: .7rem 0 .3rem;
}

.price small {
  font-size: .9rem;
  color: var(--muted);
  font-weight: 600;
}

.featured {
  position: relative;
  border-color: rgba(30, 136, 229, 0.35);
  box-shadow: 0 18px 32px rgba(30, 136, 229, 0.12);
}

.tag {
  display: inline-block;
  font-size: 0.7rem;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(255, 193, 7, 0.15);
  color: #f59e0b;
  font-weight: 600;
  margin-top: 10px;
}

.upcoming {
  opacity: 0.95;
}

.upcoming .link {
  display: inline-block;
  margin-top: 10px;
  font-size: 0.85rem;
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
}

.faq-item {
  padding: 1.1rem 1.2rem;
}

.faq-item h4 {
  margin: 0 0 .45rem;
  font-size: 1rem;
}

.faq-item p {
  margin: 0;
  color: var(--muted);
}

.form-wrap {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 1rem;
  align-items: start;
}

.form-card {
  padding: 1.5rem;
}

.form-card h3 {
  margin-top: 0;
  margin-bottom: .6rem;
  font-size: 1.5rem;
}

.form-card p {
  color: var(--muted);
  margin-top: 0;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.field {
  display: grid;
  gap: .45rem;
}

.field.full {
  grid-column: 1 / -1;
}

label {
  font-weight: 700;
  font-size: .95rem;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: .95rem 1rem;
  font: inherit;
  color: var(--text);
  background: #fff;
}

textarea {
  min-height: 130px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(30, 136, 229, 0.12);
}

.alert {
  border-radius: 14px;
  padding: .95rem 1rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.alert.success {
  background: rgba(31, 122, 61, 0.1);
  color: var(--success);
  border: 1px solid rgba(31, 122, 61, 0.25);
}

.alert.error {
  background: rgba(179, 38, 30, 0.08);
  color: var(--danger);
  border: 1px solid rgba(179, 38, 30, 0.22);
}

.mini-card {
  background: #f8fbff;
  border: 1px solid #dde8f6;
  border-radius: 18px;
  padding: 1rem;
}

.mini-card h4 {
  margin: 0 0 .45rem;
}

.mini-card p {
  margin: 0;
  color: var(--muted);
}

.privacy-check {
  margin-top: 1rem;
  display: flex;
  justify-content: center;
}

.privacy-check label {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  font-weight: 600;
  color: var(--text);
  text-align: center;
}

.privacy-check input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin: 0;
  flex: 0 0 auto;
}

.footer {
  background: #0b1f3a;
  color: #fff;
  padding: 50px 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}

.footer h3,
.footer h4 {
  margin-bottom: 10px;
}

.footer p {
  font-size: 0.9rem;
  opacity: 0.85;
}

.footer ul {
  list-style: none;
  padding: 0;
}

.footer ul li {
  margin-bottom: 6px;
}

.footer a {
  color: #fff;
  text-decoration: none;
  opacity: 0.8;
}

.footer a:hover {
  opacity: 1;
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 1.5rem;
}

.footer-bottom {
  margin-top: 30px;
  text-align: center;
  font-size: 0.8rem;
  opacity: 0.6;
}

.menu-toggle {
  display: none;
  background: transparent;
  border: 0;
  font-size: 1.8rem;
  color: var(--text);
  cursor: pointer;
  line-height: 1;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 0.9rem;
  padding: 1rem;
  border-top: 1px solid var(--line);
  background: rgba(245, 247, 251, 0.98);
}

.mobile-menu a {
  font-weight: 700;
  color: var(--text);
}

.mobile-menu.is-open {
  display: flex;
}

.required {
  color: #d93025;
  font-weight: 700;
}

.insight-card {
  position: relative;
  background: linear-gradient(135deg, #f7f9fc, #eef2f8);
  border-radius: 20px;
  padding: 1.6rem 1.6rem 1.6rem 1.4rem;
  border: 1px solid #e3e9f2;
  box-shadow: 0 10px 30px rgba(10, 30, 80, 0.08);
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease;
}

.insight-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(10, 30, 80, 0.12);
}

/* barra lateral de impacto */
.insight-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 20px;
  bottom: 20px;
  width: 4px;
  border-radius: 4px;
  background: linear-gradient(180deg, #5b7cff, #7c4dff);
}

/* texto */
.insight-card p {
  font-size: 1.05rem;
  font-weight: 600;
  color: #0f1c2e;
  line-height: 1.5;
  margin: 0;
}

/* palabras clave */
.insight-highlight {
  color: #5b7cff;
  font-weight: 800;
}

/* ===== Próximos servicios: estilo base también para desktop ===== */
.industry-card.upcoming {
  display: grid;
  grid-template-columns: 72px 1fr;
  column-gap: 20px;
  row-gap: 14px;
  align-items: start;
  padding: 24px 26px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid #e3e9f2;
  box-sizing: border-box;
}

.industry-card.upcoming .industry-icon {
  grid-column: 1;
  grid-row: 1;
  width: 68px;
  height: 68px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  background: linear-gradient(180deg, #eef5ff, #f7eefc);
}

.industry-card.upcoming .industry-main {
  grid-column: 2;
  grid-row: 1;
  min-width: 0;
}

.industry-card.upcoming .industry-main h3 {
  margin: 0 0 12px;
  font-size: 1.05rem;
  line-height: 1.3;
  font-weight: 800;
  color: #0f2343;
}

.industry-card.upcoming .industry-main p {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.65;
  color: #5d6b82;
}

.industry-card.upcoming .industry-meta {
  grid-column: 2;
  grid-row: 2;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 0;
  min-width: 0;
}

.industry-card.upcoming .tag {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 700;
  background: #fff3d9;
  color: #d48806;
  line-height: 1;
  margin: 0;
}

.industry-card.upcoming .link {
  display: inline-flex;
  align-items: center;
  margin: 0;
  font-weight: 700;
  text-decoration: none;
  color: #316bff;
  line-height: 1.3;
  white-space: nowrap;
}

.industry-card.upcoming .link:hover {
  text-decoration: underline;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.pricing-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 22px 20px 18px;
  border-radius: 22px;
  border: 1px solid #e3eaf5;
  background: #ffffff;
  box-shadow: 0 10px 25px rgba(15, 35, 67, 0.06);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease, background .22s ease;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(15, 35, 67, 0.09);
  border-color: #c7d7ef;
}

/* Card destacada */
.pricing-card.featured {
  border: 2px solid #316bff;
  box-shadow: 0 18px 40px rgba(49, 107, 255, 0.18);
  transform: translateY(-6px) scale(1.02);
  z-index: 2;
}

/* Quitamos el badge automático viejo */
.pricing-card.featured::before {
  content: none;
}

/* -------------------------
   BLOQUE SUPERIOR
------------------------- */

.plan-top {
  display: flex;
  flex-direction: column;
  min-height: 220px;
}

.plan-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-height: 32px;
  margin-bottom: 12px;
}

.plan-head h3 {
  margin: 0;
  font-size: 1.15rem;
  line-height: 1.2;
  font-weight: 800;
  color: #0f2343;
}

.plan-head-stack {
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  gap: 8px;
  min-height: 52px;
}

.plan-kicker {
  margin: 0 0 10px;
  font-size: 1.08rem;
  line-height: 1.35;
  font-weight: 800;
  color: #44536b;
  min-height: 58px;
}

.plan-desc {
  margin: 0;
  font-size: 0.97rem;
  line-height: 1.68;
  color: #5e6c84;
  min-height: 112px;
}

/* -------------------------
   PRECIO
------------------------- */

.plan-price-wrap {
  margin-top: 18px;
  min-height: 86px;
}

.pricing-card .price {
  font-size: 2.2rem;
  font-weight: 900;
  color: #0b2450;
}

.pricing-card .price small {
  font-size: 0.8rem;
  color: #7a8699;
}

.price-note {
  margin-top: 8px;
  font-size: 0.8rem;
  line-height: 1.45;
  color: #7a8699;
  min-height: 36px;
}

/* -------------------------
   LISTA DE FEATURES
------------------------- */

.pricing-card .features {
  flex: 1;
  margin: 16px 0 20px;
  padding: 0;
  list-style: none;
  display: block;
}

.pricing-card .features li {
  position: relative;
  margin: 0 0 12px;
  padding-left: 16px;
  font-size: 0.96rem;
  line-height: 1.65;
  color: #4e5d75;
}

.pricing-card .features li:last-child {
  margin-bottom: 0;
}

.pricing-card .features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #316bff;
  transform: translateY(-50%);
}

/* Referencia a otro plan */
.plan-ref {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 999px;
  font-size: 0.74rem;
  line-height: 1.2;
  font-weight: 700;
  background: rgba(49, 107, 255, 0.1);
  color: #316bff;
  vertical-align: middle;
}

/* Badge manual dentro del HTML */
.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.38rem 0.72rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #2f80ed, #7b2cbf);
  color: #ffffff;
  font-size: 0.72rem;
  line-height: 1;
  font-weight: 800;
  white-space: nowrap;
  box-shadow: 0 6px 16px rgba(90, 74, 204, 0.18);
}

/* -------------------------
   BOTONES
------------------------- */

.pricing-card .btn {
  border-radius: 12px;
  font-weight: 700;
  letter-spacing: 0.3px;
}


@media (max-width: 1100px) {
  .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1040px) {
  .hero-grid,
  .panel-grid,
  .grid-3,
  .steps,
  .results-grid,
  .form-wrap {
    grid-template-columns: 1fr;
  }

  .grid-2,
  .industry-grid,
  .stats,
  .pricing-grid,
  .form-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 780px) {
.insight-card {
    padding: 1.4rem;
  }

  .insight-card p {
    font-size: 1.08rem;
  }
  
  .nav-links {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    padding: 0;
    border-radius: 12px;
  }

  .nav-inner {
    min-height: 72px;
    gap: 0.75rem;
  }

  .brand {
    gap: 0.7rem;
    min-width: 0;
  }

  .brand-mark {
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
  }

  .brand > span:last-child {
    min-width: 0;
  }

  .brand > span:last-child strong,
  .brand > span:last-child span {
    display: block;
  }

  .brand-sub {
    font-size: 0.68rem;
    line-height: 1.15;
  }

  .hero {
    padding-top: 2.5rem;
    padding-bottom: 2rem;
  }

  .hero-grid,
  .panel-grid,
  .grid-3,
  .steps,
  .results-grid,
  .form-wrap,
  .grid-2,
  .industry-grid,
  .stats,
  .pricing-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  h1 {
    max-width: none;
    font-size: clamp(2.2rem, 10vw, 3.6rem);
    line-height: 1.02;
  }

  .hero p {
    font-size: 1rem;
    margin: 1rem 0 1.4rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    max-width: 100%;
  }

  .hero-actions .btn,
  .hero-actions a.btn,
  .hero-actions button.btn {
    width: 100%;
    min-width: 0;
  }

  .hero-proof {
    gap: 0.65rem 1rem;
    font-size: 0.9rem;
  }

  .hero-logo {
    max-width: 200px;
  }

  .industry-card.upcoming {
    grid-template-columns: 64px 1fr;
    column-gap: 16px;
    row-gap: 12px;
    padding: 20px;
  }

  .industry-card.upcoming .industry-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }

  .industry-card.upcoming .industry-main h3 {
    font-size: 1rem;
    margin-bottom: 8px;
  }

  .industry-card.upcoming .industry-main p {
    font-size: 0.95rem;
    line-height: 1.55;
  }

  .industry-card.upcoming .industry-meta {
    gap: 10px;
  }

  .footer-top {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .pricing-card {
    padding: 20px 18px 18px;
    border-radius: 20px;
  }

  .plan-top,
  .plan-kicker,
  .plan-desc,
  .plan-price-wrap,
  .price-note {
    min-height: 0;
  }

  .plan-head {
    min-height: auto;
  }

  .plan-head h3 {
    font-size: 1.08rem;
  }

  .plan-kicker {
    font-size: 1rem;
    margin-bottom: 8px;
  }

  .plan-desc {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .pricing-card .price {
    font-size: 1.8rem;
  }

  .pricing-card .features {
    margin: 14px 0 18px;
  }

  .pricing-card .features li {
    font-size: 0.94rem;
    line-height: 1.6;
  }
}

@media (max-width: 600px) {
  .industry-card {
    grid-template-columns: 48px 1fr;
    gap: 12px;
    padding: 16px;
  }

  .industry-icon {
    width: 48px;
    height: 48px;
    font-size: 1.3rem;
  }
  
  .industry-card.upcoming {
    grid-template-columns: 56px 1fr;
    column-gap: 14px;
    row-gap: 12px;
    padding: 18px;
  }

  .industry-card.upcoming .industry-icon {
    width: 52px;
    height: 52px;
    font-size: 1.35rem;
  }

  .industry-card.upcoming .industry-meta {
    grid-column: 1 / -1;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .industry-card.upcoming .link {
    white-space: normal;
  }
}

@media (max-width: 480px) {
  .pricing-card {
    padding: 18px 16px 16px;
  }

  .pricing-card .price {
    font-size: 1.65rem;
  }

  .badge {
    font-size: 0.68rem;
    padding: 0.34rem 0.64rem;
  }
}

@media (min-width: 769px) {
  .hero-actions {
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    max-width: none;
  }

  .hero-actions .btn,
  .hero-actions a.btn,
  .hero-actions button.btn {
    width: auto;
    min-width: 190px;
  }
}

