/* ── Hero dos columnas ── */
.hero { padding: 56px 32px 48px; }
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 40px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}
.hero-left .eyebrow,
.hero-left h1,
.hero-left p { text-align: left; }

/* ── CTA card ── */
.cta-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 28px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  overflow: hidden;
}
.cta-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), #25d366);
}
.cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-dim);
  border-radius: 20px;
  padding: 4px 12px;
  width: fit-content;
}
.cta-title {
  font-family: 'Syne', sans-serif;
  font-size: 19px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.25;
}
.cta-sub {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.55;
}
.cta-features { display: flex; flex-direction: column; gap: 8px; }
.cta-feat {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  color: var(--text);
}
.cta-check {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: rgba(74,222,128,.15);
  color: #4ade80;
  font-size: 10px;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.cta-btn-wa {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #25d366;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  border-radius: 10px;
  padding: 13px 20px;
  text-decoration: none;
  transition: background .18s, transform .18s;
  margin-top: 4px;
}
.cta-btn-wa:hover { background: #1ebe5d; transform: translateY(-1px); }
.cta-btn-mail {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--accent-dim);
  color: var(--accent);
  font-weight: 600;
  font-size: 13px;
  border-radius: 10px;
  padding: 11px 20px;
  text-decoration: none;
  transition: background .18s;
}
.cta-btn-mail:hover { background: var(--accent-dim2); }

@media (max-width: 820px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-left .eyebrow,
  .hero-left h1,
  .hero-left p { text-align: center; }
}

/* ── cta-btn-mail as button ── */
.cta-btn-mail {
  border: none;
  cursor: pointer;
  font-family: inherit;
  width: 100%;
}

/* ── Contact modal ── */
.contact-modal { max-width: 560px; }

.cf-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 16px;
}
.cf-full { grid-column: 1 / -1; }

.cf-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 6px;
  letter-spacing: .03em;
  text-transform: uppercase;
}
.cf-req { color: var(--accent); }

.cf-input {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px 12px;
  font-size: 13.5px;
  color: var(--text);
  font-family: inherit;
  outline: none;
  transition: border-color .15s;
  box-sizing: border-box;
}
.cf-input:focus { border-color: var(--accent); }
.cf-input::placeholder { color: var(--muted); opacity: .6; }
.cf-textarea { resize: vertical; min-height: 72px; }

.cf-checks {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.cf-check-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  color: var(--text);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 5px 10px;
  cursor: pointer;
  transition: border-color .15s, background .15s;
}
.cf-check-item:has(input:checked) {
  border-color: var(--accent);
  background: var(--accent-dim);
  color: var(--accent);
}
.cf-check-item input { accent-color: var(--accent); }

.cf-error {
  background: rgba(248,113,113,.1);
  border: 1px solid rgba(248,113,113,.3);
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 13px;
  color: #f87171;
  margin-bottom: 12px;
}

.cf-submit {
  width: 100%;
  background: var(--accent);
  color: #000;
  font-weight: 700;
  font-size: 14px;
  font-family: inherit;
  border: none;
  border-radius: 10px;
  padding: 14px;
  cursor: pointer;
  transition: opacity .18s, transform .18s;
}
.cf-submit:hover { opacity: .88; transform: translateY(-1px); }
.cf-submit:disabled { opacity: .5; cursor: not-allowed; transform: none; }

.cf-privacy {
  text-align: center;
  font-size: 11px;
  color: var(--muted);
  margin-top: 10px;
  opacity: .7;
}

/* result states */
.cf-result {
  text-align: center;
  padding: 20px 0 8px;
}
.cf-result-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  font-size: 24px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.cf-success-icon { background: rgba(74,222,128,.15); color: #4ade80; }
.cf-fail-icon { background: rgba(248,113,113,.15); color: #f87171; }
.cf-result-title { font-family: 'Syne', sans-serif; font-size: 20px; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.cf-result-sub { font-size: 13.5px; color: var(--muted); line-height: 1.6; }

@media (max-width: 560px) {
  .cf-grid { grid-template-columns: 1fr; }
}

/* ══ PRICING SECTION ══ */
.pricing-section {
  max-width: 1100px;
  margin: 0 auto 64px;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}

/* Tabla de módulos */
.pricing-table {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
}
.pt-group-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 14px 18px 6px;
  background: var(--bg);
  border-top: 1px solid var(--border);
}
.pt-group-label:first-child { border-top: none; }
.pt-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border-top: 1px solid var(--border);
  transition: background .15s;
}
.pt-row:hover { background: var(--accent-dim); }
.pt-icon { font-size: 16px; flex-shrink: 0; width: 22px; text-align: center; }
.pt-name { flex: 1; font-size: 13px; color: var(--text); }
.pt-badge {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  padding: 2px 7px;
  border-radius: 20px;
  flex-shrink: 0;
}
.pt-hours {
  font-size: 11px;
  color: var(--muted);
  flex-shrink: 0;
  min-width: 28px;
  text-align: right;
}
.pt-price {
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  flex-shrink: 0;
  min-width: 90px;
  text-align: right;
}
.pt-note {
  font-size: 11px;
  color: var(--muted);
  padding: 12px 18px;
  border-top: 1px solid var(--border);
  background: var(--bg);
}

/* Paquetes */
.pricing-packs {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.pack-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 20px 22px;
  position: relative;
  transition: border-color .2s;
}
.pack-card:hover { border-color: var(--accent); }
.pack-featured {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent);
}
.pack-popular {
  position: absolute;
  top: -1px; right: 20px;
  background: var(--accent);
  color: #000;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .05em;
  padding: 3px 12px;
  border-radius: 0 0 8px 8px;
}
.pack-header { margin-bottom: 12px; }
.pack-name {
  font-family: 'Syne', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
}
.pack-modules { font-size: 12px; color: var(--muted); margin-top: 2px; }
.pack-includes {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 14px;
}
.pack-item { font-size: 12.5px; color: var(--muted); }
.pack-pricing { margin-bottom: 14px; }
.pack-original {
  font-size: 12px;
  color: var(--muted);
  text-decoration: line-through;
  min-height: 18px;
}
.pack-price {
  font-family: 'Syne', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.1;
}
.pack-save {
  font-size: 11px;
  color: #fa0606; /* var(--accent); */
  font-weight: 600;
  margin-top: 2px;
}
.pack-cta {
  width: 100%;
  background: var(--accent-dim);
  color: var(--accent);
  border: 1px solid var(--accent);
  border-radius: 9px;
  padding: 10px;
  font-size: 13px;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  transition: background .18s;
}
.pack-cta:hover { background: var(--accent); color: #000; }

@media (max-width: 900px) {
  .pricing-section { grid-template-columns: 1fr; }
}