/* ============================================================
   style-pm-ui.css — Landing baja autonomos
   CSS vanilla: todas las clases Tailwind reescritas
   ============================================================ */

/* ── Design Tokens ── */
:root {
  --blue-950: #002A66;
  --blue-900: #002A66;
  --blue-700: #5A97BD;
  --blue-50:  #e7f4ff;

  --green-500: #D1D546;
  --green-600: #5A97BD;
  --green-200: #D1D546;
  --green-50:  #eef8f3;

  --gray-600:  #707070;
  --border:    #EFEFEF;
  --border-green: #D1D546;
  --bg-page:   #ffffff;
  --bg-card:   #EFEFEF;
  --white:     #ffffff;

  --radius-sm:   .75rem;
  --radius-md:   1rem;
  --radius-lg:   1.75rem;
  --radius-xl:   2rem;
  --radius-2xl:  2.25rem;
  --radius-full: 9999px;

  --shadow-sm:   0 1px 2px rgba(0,0,0,.05);
  --shadow-md:   0 4px 6px -1px rgba(0,0,0,.07);
  --shadow-lg:   0 10px 25px -5px rgba(0,42,102,.12);
  --shadow-xl:   0 20px 40px -10px rgba(0,42,102,.2);
  --shadow-green:0 12px 30px -8px rgba(209,213,70,.15);
  --shadow-hero: 0 25px 50px -12px rgba(0,42,102,.2);

  --font-sans: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* ── Reset ── */
.ui-landing *, .ui-landing *::before, .ui-landing *::after { box-sizing: border-box; margin: 0; padding: 0; }
.ui-landing { scroll-behavior: smooth; scroll-padding-top: 5rem; }
.ui-landing {
  font-family: var(--font-sans);
  color: var(--blue-950);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.ui-landing img, .ui-landing svg { display: block; max-width: 100%; }
.ui-landing a { color: inherit; text-decoration: none; }
.ui-landing ul { list-style: none; }

/* ── Utility: sr-only ── */
.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; }

/* ── Container ── */
.ui-container { width: 100%; max-width: 80rem; margin-inline: auto; padding-inline: 1rem; }
@media (min-width: 640px)  { .ui-container { padding-inline: 1.5rem; } }
@media (min-width: 1024px) { .ui-container { padding-inline: 2rem; } }

/* ── Header ── */
.ui-header {
  position: sticky; top: 0; z-index: 40;
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}
.ui-header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 4.5rem;
  max-width: 80rem; margin-inline: auto;
  padding-inline: 1rem;
}
@media (min-width: 640px)  { .ui-header-inner { padding-inline: 1.5rem; } }
@media (min-width: 1024px) { .ui-header-inner { padding-inline: 2rem; } }

/* ── Brand ── */
.ui-brand { display: flex; align-items: center; gap: 1.25rem; }
.ui-brand-logo {
  height: 4rem;
  width: auto;
}
.ui-brand-icon {
  display: grid; place-items: center;
  width: 2.75rem; height: 2.75rem;
  border-radius: var(--radius-lg);
  background: var(--blue-900); color: var(--white);
  box-shadow: 0 10px 15px -3px rgba(0,42,102,.2);
}
.ui-brand-icon svg { width: 1.5rem; height: 1.5rem; }
.ui-brand-text { line-height: 1.2; }
.ui-brand-name  { font-size: 1rem; font-weight: 800; letter-spacing: -.025em; color: var(--blue-900); }
.ui-brand-tag   { font-size: .75rem; font-weight: 600; text-transform: uppercase; letter-spacing: .18em; color: var(--green-500); }
.ui-brand-tagline {
  font-family: 'ZillaSlab-Bold';
  font-size: 1.125rem;
  font-weight: 800;
  letter-spacing: -.025em;
  color: var(--blue-900);
  line-height: 1.2;
}

/* ── Buttons ── */
.ui-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .875rem 1.5rem;
  border-radius: var(--radius-full);
  font-size: .875rem; font-weight: 700;
  cursor: pointer; border: none; transition: all .2s;
  white-space: nowrap;
  text-decoration: none;
}
.ui-btn:focus-visible { outline: 4px solid rgba(209,213,70,.3); outline-offset: 2px; }
.ui-btn-primary {
  background: #D1D546; color: #ffffff;
  box-shadow: 0 8px 20px -4px rgba(0,42,102,.15);
}
.ui-btn-primary:hover { background: #5A97BD; transform: translateY(-1px); }
.ui-btn-secondary {
  background: var(--white); color: var(--blue-900);
  border: 1px solid #b8d8ee;
}
.ui-btn-secondary:hover { border-color: var(--green-500); color: var(--green-600); transform: translateY(-1px); }
.ui-btn-white {
  background: #D1D546; color: #ffffff;
  box-shadow: 0 10px 30px -6px rgba(0,42,102,.15);
  padding: 1rem 1.75rem;
}
.ui-btn-white:hover { background: #5A97BD; }
.ui-btn-header {
  display: none;
  background: #002A66; color: #ffffff !important;
  padding: .75rem 1.25rem; border-radius: var(--radius-full);
  font-size: .875rem; font-weight: 700;
  text-decoration: none;
}
.ui-btn-header:hover { background: #5A97BD; color: #ffffff !important; }
.ui-btn-header:active { background: #002A66; color: #ffffff !important; }
@media (min-width: 640px) { .ui-btn-header { display: inline-flex; } }

/* ── Hero ── */
.ui-hero {
  position: relative; overflow: hidden;
  background: var(--white);
}
.ui-hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 20% 10%, rgba(209,213,70,.16), transparent 34%),
    radial-gradient(circle at 85% 15%, rgba(0,42,102,.13), transparent 30%);
}
.ui-hero-content {
  display: flex; flex-direction: column;
}

.ui-hero-grid {
  position: relative;
  display: grid; gap: 2.5rem;
  max-width: 80rem; margin-inline: auto;
  padding: 3rem 1rem;
}
@media (min-width: 640px) { .ui-hero-grid { padding-inline: 1.5rem; } }
@media (min-width: 1024px) {
  .ui-hero-grid { grid-template-columns: 1.05fr .95fr; padding: 5rem 2rem; align-items: start; }
  .ui-hero { overflow: visible !important; }
  .ui-hero-content {
    position: -webkit-sticky; position: sticky; top: 5rem; align-self: start;
    max-height: calc(100vh - 2rem);
  }
  .ui-hero-content > * { flex-shrink: 0; }
}

.ui-hero-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  width: fit-content;
  margin-bottom: 1.25rem;
  padding: .5rem 1rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-green);
  background: var(--green-50);
  font-size: .875rem; font-weight: 700; color: var(--green-600);
}
.ui-hero-badge svg { width: 1rem; height: 1rem; }

.ui-hero-title {
  max-width: 48rem;
  font-size: 2rem !important; font-weight: 800; letter-spacing: -.045em;
  color: var(--blue-950); line-height: 1.15 !important;
}
@media (min-width: 640px)  { .ui-hero-title { font-size: 2.5rem !important; } }
@media (min-width: 1024px) { .ui-hero-title { font-size: 3.25rem !important; line-height: 1.02 !important; } }

.ui-hero-subtitle {
  margin-top: 1.5rem; max-width: 42rem;
  font-size: 1.125rem !important; line-height: 2;
  color: var(--gray-600);
}

.ui-hero-checks {
  margin-top: 1.75rem;
  display: grid; gap: .75rem;
  font-size: 1rem; font-weight: 600; color: var(--blue-900);
}
@media (min-width: 640px) { .ui-hero-checks { grid-template-columns: 1fr 1fr; } }
.ui-hero-check {
  display: flex; align-items: center; gap: .75rem;
}
.ui-check-icon {
  display: grid; place-items: center; flex-shrink: 0;
  width: 1.5rem; height: 1.5rem;
  border-radius: var(--radius-full);
  background: var(--green-500); color: var(--white);
}
.ui-check-icon svg { width: 1rem; height: 1rem; }

.ui-hero-ctas {
  margin-top: 2.25rem;
  display: flex; flex-direction: column; gap: .75rem;
}
@media (min-width: 640px) { .ui-hero-ctas { flex-direction: row; } }

.ui-hero-example {
  margin-top: 2.5rem;
  padding: 1.25rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--bg-card);
  box-shadow: var(--shadow-sm);
}
.ui-hero-example-label {
  font-size: .875rem !important; font-weight: 700; text-transform: uppercase;
  letter-spacing: .18em; color: var(--blue-700);
}
.ui-hero-example-amount {
  margin-top: .5rem;
  font-size: 1.5rem !important; font-weight: 800; color: var(--blue-900); line-height: 1.4;
}
.ui-hero-example-note {
  margin-top: .5rem;
  font-size: .875rem; line-height: 1.5; color: var(--gray-600);
}

.ui-hero-form-col { padding-left: 0; }
@media (min-width: 1024px) { .ui-hero-form-col { padding-left: 1rem; } }

/* ── Form ── */
.ui-quote-form {
  scroll-margin-top: 7rem;
  padding: 1.25rem;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  background: var(--white);
  box-shadow: var(--shadow-hero);
}
@media (min-width: 640px) { .ui-quote-form { padding: 1.75rem; } }

.ui-form-badge {
  margin-bottom: 1.25rem;
  padding: .75rem 1rem;
  border-radius: .875rem;
  background: var(--green-50);
  font-size: .875rem; font-weight: 600; color: var(--green-600);
}
.ui-form-title { font-size: 1.5rem; font-weight: 700; letter-spacing: -.025em; color: var(--blue-950); }
.ui-form-subtitle { margin-top: .5rem; font-size: .875rem; line-height: 1.5; color: var(--gray-600); }
.ui-form-grid { margin-top: 1.5rem; display: grid; gap: 1rem; }
.ui-form-row { display: grid; gap: 1rem; }
@media (min-width: 640px) { .ui-form-row { grid-template-columns: 1fr 1fr; } }

.ui-form-field { display: grid; gap: .5rem; }
.ui-form-field label { font-size: .875rem; font-weight: 600; color: var(--blue-950); }
.ui-form-field input,
.ui-form-field select {
  height: 3rem; padding-inline: 1rem;
  border-radius: var(--radius-md);
  border: 1px solid #cdddeb;
  font-size: 1rem; font-family: inherit;
  outline: none; background: var(--white);
  transition: border-color .2s, box-shadow .2s;
}
.ui-form-field input::placeholder { color: #94a3b8; }
.ui-form-field input:focus,
.ui-form-field select:focus {
  border-color: var(--blue-700);
  box-shadow: 0 0 0 4px rgba(90,151,189,.12);
}
.ui-form-field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%2352647a' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right .75rem center; padding-right: 2.5rem; }

.ui-form-legal { margin-top: 1.25rem; display: flex; flex-direction: column; gap: .75rem; font-size: .75rem; line-height: 1.5; color: var(--gray-600); }
.ui-form-legal label { display: flex; gap: .75rem; cursor: pointer; }
.ui-form-legal input[type="checkbox"] {
  margin-top: .2rem; width: 1rem; height: 1rem; flex-shrink: 0;
  accent-color: var(--green-500);
  border-radius: .25rem;
}

.ui-form-submit {
  margin-top: 1.5rem;
  display: flex; align-items: center; justify-content: center; gap: .5rem;
  width: 100%;
  padding: 1rem; border-radius: var(--radius-md);
  background: var(--green-500); color: var(--white);
  font-size: 1rem; font-weight: 700;
  border: none; cursor: pointer;
  box-shadow: var(--shadow-green);
  transition: background .2s;
  font-family: inherit;
}
.ui-form-submit:hover { background: var(--green-600); }
.ui-form-submit:focus-visible { outline: 4px solid rgba(209,213,70,.3); outline-offset: 2px; }
.ui-form-submit svg { width: 1.25rem; height: 1.25rem; }

.ui-form-disclaimer { margin-top: .75rem; text-align: center; font-size: .75rem; font-weight: 500; color: var(--gray-600); }

.ui-form-success {
  display: none;
  margin-top: 1rem;
  padding: .75rem 1rem;
  border-radius: var(--radius-md);
  background: var(--green-50);
  font-size: .875rem; font-weight: 600; color: var(--green-600);
}
.ui-form-success.visible { display: block; }

/* ── CF7 Form Overrides ── */
.ui-hero-form-col {
  padding: 1.75rem;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  background: var(--white);
  box-shadow: var(--shadow-hero);
}
@media (min-width: 640px) { .ui-hero-form-col { padding: 1.75rem; } }

.ui-hero-form-col .ui-form-badge { margin-bottom: 1.25rem; }
.ui-hero-form-col .ui-form-title { font-size: 1.5rem; font-weight: 700; letter-spacing: -.025em; color: var(--blue-950); }
.ui-hero-form-col .ui-form-subtitle { margin-top: .5rem; margin-bottom: 1.25rem; font-size: .875rem; line-height: 1.5; color: var(--gray-600); }

.ui-hero-form-col .wpcf7 { padding: 0; border: none; border-radius: 0; background: transparent; box-shadow: none; }

.ui-hero-form-col .wpcf7 p { margin-bottom: 1rem; }

.ui-hero-form-col .wpcf7 label {
  font-size: 1.2rem;
  font-weight: 600; color: var(--blue-950);
  display: block; margin-bottom: .25rem;
}

.ui-hero-form-col .wpcf7 input[type="text"],
.ui-hero-form-col .wpcf7 input[type="email"],
.ui-hero-form-col .wpcf7 input[type="tel"] {
  width: 100%; height: 3rem; padding-inline: 0;
  border-radius: 0;
  border: none;
  border-bottom: 1px solid var(--blue-950);
  font-size: 1rem; font-family: inherit; background: transparent;
  outline: none; transition: border-color .2s;
  color: var(--blue-950);
}
.ui-hero-form-col .wpcf7 input::placeholder { color: #989898; }
.ui-hero-form-col .wpcf7 input:focus {
  border-bottom-color: var(--green-500);
  border-bottom-width: 2px;
  box-shadow: none;
}

.ui-hero-form-col .wpcf7 select {
  width: 100%; height: 3rem; padding-inline: 0;
  border-radius: 0;
  border: none;
  border-bottom: 1px solid var(--blue-950);
  font-size: 1rem; font-family: inherit; background: transparent;
  outline: none; transition: border-color .2s;
  color: var(--blue-950); padding-right: 2rem;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%23707070' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right .25rem center;
}
.ui-hero-form-col .wpcf7 select:focus {
  border-bottom-color: var(--green-500);
  border-bottom-width: 2px;
  box-shadow: none;
}

.ui-hero-form-col .wpcf7 .leyenda {
  font-size: .75rem; color: var(--gray-600);
}

.ui-hero-form-col .wpcf7 .wpcf7-list-item { margin: 0; }
.ui-hero-form-col .wpcf7 .wpcf7-list-item label {
  display: flex; gap: .75rem; align-items: flex-start;
  font-weight: 400; cursor: pointer;
  font-size: .65rem; line-height: 1.4; color: var(--gray-600);
  margin-bottom: .5rem;
}
.ui-hero-form-col .wpcf7 .wpcf7-list-item input[type="checkbox"] {
  margin-top: .2rem; width: 1rem; height: 1rem; flex-shrink: 0;
  accent-color: var(--green-500); border-radius: .25rem;
}
.ui-hero-form-col .wpcf7 .wpcf7-list-item a {
  color: var(--blue-950); text-decoration: underline; font-weight: 600;
}

.ui-hero-form-col .wpcf7 a[style*="font-size"] {
  font-size: inherit !important;
  font-family: inherit !important;
}

.page-id-93903 .wpcf7-acceptance * { font-size: 13px !important; color: #707070 !important; }

.ui-hero-form-col .wpcf7-form p + p { margin-top: .5rem !important; }

.ui-hero-form-col .wpcf7 .wpcf7-submit {
  width: 100%; padding: 1rem;
  border-radius: var(--radius-md);
  background: #D1D546; color: #ffffff;
  font-size: 1rem; font-weight: 700;
  border: none; cursor: pointer;
  box-shadow: 0 8px 20px -4px rgba(0,42,102,.15);
  transition: background .2s;
  font-family: inherit;
  margin-top: .5rem;
}
.ui-hero-form-col .wpcf7 .wpcf7-submit:hover { background: #5A97BD; }

.ui-hero-form-col .wpcf7 .wpcf7-spinner { display: none; }

.ui-hero-form-col .wpcf7 .wpcf7-response-output {
  margin: 1rem 0 0;
  padding: .75rem 1rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-green);
  background: var(--green-50);
  font-size: .875rem; font-weight: 600; color: var(--green-600);
  text-align: center;
}

/* ── Sections ── */
.ui-section { padding-block: 4rem; }
.ui-section-white { background: var(--white); }
.ui-section-blue  { background: var(--blue-900); color: var(--white); }

.ui-section-label {
  font-size: .875rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .2em; color: var(--green-500);
}
.ui-section-label-light { color: var(--green-200); }

.ui-landing h2.ui-section-title {
  margin-top: .75rem;
  font-size: 2.125rem !important; font-weight: 800; letter-spacing: -.025em; line-height: 1.15 !important;
  color: var(--blue-950);
}
@media (min-width: 640px) { .ui-landing h2.ui-section-title { font-size: 2.75rem !important; } }
@media (min-width: 1024px) { .ui-landing h2.ui-section-title { font-size: 3.25rem !important; } }
.ui-section-blue .ui-section-title { color: var(--white) !important; }

.ui-section-desc {
  margin-top: 1rem;
  font-size: 1.125rem !important; line-height: 2; color: var(--gray-600);
}
@media (min-width: 1024px) { .ui-section-desc { max-width: 42rem; } }
.ui-section-blue .ui-section-desc { color: rgba(219,234,254,.9); }

.ui-section-header-center { text-align: center; max-width: 42rem; margin-inline: auto; }

/* ── Plans grid ── */
.ui-plans-grid {
  margin-top: 2.5rem;
  display: grid; gap: 1.25rem;
}
@media (min-width: 1024px) { .ui-plans-grid { grid-template-columns: repeat(3, 1fr); } }

.ui-plan-card {
  position: relative;
  padding: 1.5rem;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: transform .2s, box-shadow .2s;
}
.ui-plan-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-xl); }
.ui-plan-card.recommended {
  border-color: var(--green-500);
  box-shadow: 0 0 0 4px rgba(209,213,70,.08);
}
.ui-plan-badge {
  position: absolute; top: 1.25rem; right: 1.25rem;
  padding: .25rem .75rem;
  border-radius: var(--radius-full);
  background: var(--green-500); color: var(--white);
  font-size: .75rem; font-weight: 800; text-transform: uppercase; letter-spacing: .025em;
}
.ui-plan-name { font-size: 1.5rem; font-weight: 800; color: var(--blue-900); }
.ui-plan-price-tag { margin-top: .75rem; font-size: .875rem !important; font-weight: 700; text-transform: uppercase; letter-spacing: .15em; color: var(--green-500); }
.ui-plan-daily { margin-top: .5rem; font-size: 2.25rem !important; font-weight: 800; letter-spacing: -.025em; color: var(--blue-950); }
.ui-plan-desc { margin-top: 1rem; min-height: 3.5rem; font-size: .875rem !important; color: var(--gray-600); }
.ui-plan-features { margin-top: 1.5rem; display: flex; flex-direction: column; gap: .75rem; font-size: .875rem; font-weight: 600; color: var(--blue-950); }
.ui-plan-features li { display: flex; gap: .75rem; align-items: flex-start; }
.ui-plan-features svg { width: 1.25rem; height: 1.25rem; flex-shrink: 0; color: var(--green-500); margin-top: .125rem; }
.ui-plan-cta { margin-top: 1.75rem; width: 100%; }

/* ── Problem / Solution ── */
.ui-problem-grid {
  display: grid; gap: 2rem;
}
@media (min-width: 1024px) { .ui-problem-grid { grid-template-columns: .9fr 1.1fr; } }
.ui-problem-cards { display: grid; gap: 1.25rem; }
@media (min-width: 640px) { .ui-problem-cards { grid-template-columns: 1fr 1fr; } }
.ui-problem-card {
  padding: 1.75rem; border-radius: var(--radius-xl);
}
.ui-problem-card-light { background: var(--bg-page); }
.ui-problem-card-dark  { background: var(--blue-900); color: var(--white); }
.ui-problem-card h3 { font-size: 1.25rem; font-weight: 700; }
.ui-problem-card-dark h3 { color: var(--white); }
.ui-problem-card-light h3 { color: var(--blue-900); }
.ui-problem-card p {
  margin-top: .75rem; line-height: 1.75; font-size: .875rem !important;
}
.ui-problem-card-light p { color: var(--gray-600); }
.ui-problem-card-dark  p { color: rgba(219,234,254,.9); }

/* ── Benefits ── */
.ui-benefits-grid {
  margin-top: 2.5rem;
  display: grid; gap: 1.25rem;
}
@media (min-width: 640px)  { .ui-benefits-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .ui-benefits-grid { grid-template-columns: repeat(4, 1fr); } }
.ui-benefit-card {
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}
.ui-benefit-icon {
  display: grid; place-items: center;
  width: 3rem; height: 3rem;
  border-radius: var(--radius-md);
  background: var(--blue-50); color: var(--blue-700);
}
.ui-benefit-icon svg { width: 1.5rem; height: 1.5rem; }
.ui-benefit-card h3 { margin-top: 1.25rem; font-size: 1.125rem; font-weight: 800; color: var(--blue-950); }
.ui-benefit-card p { margin-top: .75rem; font-size: .875rem; line-height: 1.5; color: var(--gray-600); }

/* ── Why ── */
.ui-why-grid {
  display: grid; gap: 2.5rem;
}
@media (min-width: 1024px) { .ui-why-grid { grid-template-columns: .85fr 1.15fr; } }
.ui-why-reasons { display: grid; gap: 1rem; }
@media (min-width: 640px) { .ui-why-reasons { grid-template-columns: 1fr 1fr; } }
.ui-why-card {
  padding: 1.25rem;
  border-radius: 1.5rem;
  border: 1px solid rgba(255,255,255,.15);
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(8px);
}
.ui-why-card svg { width: 1.5rem; height: 1.5rem; color: var(--green-200); }
.ui-why-card p { margin-top: 1rem; font-size: .875rem !important; font-weight: 600; line-height: 1.75; }

/* ── Steps ── */
.ui-steps-grid {
  margin-top: 2.5rem;
  display: grid; gap: 1.25rem;
}
@media (min-width: 1024px) { .ui-steps-grid { grid-template-columns: repeat(3, 1fr); } }
.ui-step-card {
  padding: 1.75rem;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}
.ui-step-head { display: flex; align-items: center; justify-content: space-between; }
.ui-step-number { font-size: 1.5rem; font-weight: 800; letter-spacing: .1em; color: var(--green-500); }
.ui-step-head svg { width: 1.75rem; height: 1.75rem; color: var(--blue-700); }
.ui-step-card h3 { margin-top: 2rem; font-size: 1.25rem; font-weight: 800; color: var(--blue-900); }
.ui-step-card p { margin-top: .75rem; line-height: 1.75; color: var(--gray-600); }

/* ── FAQ ── */
.ui-faq-grid {
  display: grid; gap: 2.5rem;
}
@media (min-width: 1024px) { .ui-faq-grid { grid-template-columns: .8fr 1.2fr; } }
.ui-faq-list { display: flex; flex-direction: column; gap: .75rem; }
.ui-faq-inline-cta { margin-top: 1.75rem; }
details.ui-faq-item {
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: var(--bg-card);
}
details.ui-faq-item > summary {
  padding: 1.25rem;
  list-style: none;
  cursor: pointer;
  font-size: 1.125rem; font-weight: 700; color: var(--blue-900);
}
details.ui-faq-item > summary::-webkit-details-marker { display: none; }
.ui-faq-q { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.ui-faq-chevron { width: 1.25rem; height: 1.25rem; flex-shrink: 0; transition: transform .2s; color: var(--gray-600); }
details.ui-faq-item[open] .ui-faq-chevron { transform: rotate(90deg); }
details.ui-faq-item > .ui-faq-a { padding: 0 1.25rem 1.25rem; line-height: 1.75; color: var(--gray-600); }

/* ── Final CTA ── */
.ui-cta-banner {
  overflow: hidden;
  padding: 2rem;
  border-radius: var(--radius-2xl);
  background: var(--blue-900); color: var(--white);
  box-shadow: var(--shadow-hero);
}
@media (min-width: 640px)  { .ui-cta-banner { padding: 3rem; } }
@media (min-width: 1024px) {
  .ui-cta-banner {
    display: grid; grid-template-columns: 1fr auto;
    align-items: center; gap: 2.5rem;
  }
}
.ui-landing .ui-cta-banner h2 { font-size: 1.75rem !important; font-weight: 800; letter-spacing: -.025em; color: var(--white) !important; }
@media (min-width: 640px) { .ui-landing .ui-cta-banner h2 { font-size: 2.25rem !important; } }
.ui-cta-banner p { margin-top: 1rem; max-width: 42rem; line-height: 2; color: rgba(219,234,254,.9); }
.ui-cta-banner .ui-btn-white { margin-top: 1.75rem; }
@media (min-width: 1024px) { .ui-cta-banner .ui-btn-white { margin-top: 0; } }

/* ── Footer ── */
.ui-footer {
  border-top: 1px solid var(--border);
  background: var(--white);
  padding: 2rem 1rem;
  text-align: center;
  font-size: .875rem; color: var(--gray-600);
}
@media (min-width: 640px) { .ui-footer { padding-inline: 1.5rem; } }
.ui-footer p:first-child { font-weight: 600; color: var(--blue-900); }
.ui-footer p:last-child { margin-top: .5rem; }

/* ── Mobile sticky CTA ── */
.ui-mobile-cta {
  display: flex; align-items: center; justify-content: center; gap: .5rem;
  position: fixed; left: 1rem; right: 1rem; bottom: 1rem; z-index: 50;
  padding: 1rem 1.5rem;
  border-radius: var(--radius-full);
  background: #D1D546; color: #ffffff;
  font-size: 1rem; font-weight: 800;
  box-shadow: 0 20px 40px -8px rgba(0,42,102,.25);
  transition: background .2s;
  text-decoration: none;
}
.ui-mobile-cta:hover { background: #5A97BD; color: #ffffff; }
.ui-mobile-cta:focus-visible { outline: 4px solid rgba(209,213,70,.3); outline-offset: 2px; }
.ui-mobile-cta svg { width: 1.25rem; height: 1.25rem; }
@media (min-width: 640px) { .ui-mobile-cta { display: none; } }

/* ── Icon sizing helpers ── */
.ui-icon-xs  { width: .75rem;  height: .75rem; }
.ui-icon-sm  { width: 1rem;    height: 1rem; }
.ui-icon-md  { width: 1.25rem; height: 1.25rem; }
.ui-icon-lg  { width: 1.5rem;  height: 1.5rem; }
.ui-icon-xl  { width: 1.75rem; height: 1.75rem; }

/* Landing baja autonomos v2 — page-id-93903 */
.page-id-93903 #header-container,
.page-id-93903 .newsletter-section,
.page-id-93903 .menu-responsive { display: none !important; }

/* Landing baja autonomos v2 — page-id-61711 */
.page-id-61711 #header-container,
.page-id-61711 .newsletter-section,
.page-id-61711 .menu-responsive { display: none !important; }

.page-id-94196 #header-container,
.page-id-94196 .newsletter-section,
.page-id-94196 .menu-responsive { display: none !important; }

.page-id-94194 #header-container,
.page-id-94194 .newsletter-section,
.page-id-94194 .menu-responsive { display: none !important; }

.page-id-94179 #header-container,
.page-id-94179 .newsletter-section,
.page-id-94179 .menu-responsive { display: none !important; }

.page-id-94212 #header-container,
.page-id-94212 .newsletter-section,
.page-id-94212 .menu-responsive { display: none !important; }

.page-id-74813 #header-container,
.page-id-74813 .newsletter-section,
.page-id-74813 .menu-responsive { display: none !important; }

.page-id-74841 #header-container,
.page-id-74841 .newsletter-section,
.page-id-74841 .menu-responsive { display: none !important; }

.page-id-74843 #header-container,
.page-id-74843 .newsletter-section,
.page-id-74843 .menu-responsive { display: none !important; }

.page-id-74824 #header-container,
.page-id-74824 .newsletter-section,
.page-id-74824 .menu-responsive { display: none !important; }

@media only screen and (min-width: 1024px) {
  .page-id-93903 #page { overflow-x: visible !important; }
}

@media only screen and (min-width: 992px) {
  .page-id-93903 .ui-landing p {
    font-size: 13px;
    line-height: 21px;
  }
}

.page-id-93903 .container-fluid {
  margin-left: auto;
  margin-right: auto;
  padding-left: 0;
  padding-right: 0;
  width: 100%;
  left: 0;
  right: 0;
}
