/* NeoCronos — blocks: hero/lead and content sections */

/* ---- hero / lead ---- */
.lead {
  position: relative;
  padding-block: clamp(54px, 9vw, 104px);
  overflow: hidden;
}
.lead::before {
  content: "";
  position: absolute;
  top: -30%;
  right: -10%;
  width: 60vw;
  height: 60vw;
  max-width: 620px;
  max-height: 620px;
  background: radial-gradient(
    circle,
    var(--magenta-glow) 0%,
    transparent 62%
  );
  filter: blur(30px);
  opacity: 0.6;
  pointer-events: none;
  z-index: 0;
}
.lead-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: clamp(32px, 5vw, 56px);
  align-items: center;
  grid-template-columns: 1fr;
}
.lead-title span {
  display: block;
}
.lead-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin: 26px 0 30px;
  list-style: none;
  padding: 0;
  color: var(--chalk-dim);
  font-size: 0.94rem;
}
.lead-meta li {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
}
.lead-meta li::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--highlight-2);
  box-shadow: 0 0 10px var(--cyan-glow);
}
.lead-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.lead-figure {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--rule);
  box-shadow: 0 0 50px rgba(255, 46, 196, 0.18);
}
.lead-figure img {
  width: 100%;
  height: auto;
}

@media (min-width: 900px) {
  .lead-grid {
    grid-template-columns: 1.05fr 0.95fr;
  }
}

/* ---- generic section head ---- */
.block-head {
  max-width: 60ch;
  margin-bottom: clamp(28px, 4vw, 48px);
}
.block-head.center {
  margin-inline: auto;
  text-align: center;
}

/* ---- services grid ---- */
.service-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr;
}
.service-card {
  display: flex;
  flex-direction: column;
  padding: 26px 24px;
  background: var(--graphite-soft);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  transition: border-color 0.2s var(--ease), transform 0.2s var(--ease);
}
.service-card:hover {
  border-color: var(--highlight);
  transform: translateY(-3px);
}
.service-card h3 {
  margin-bottom: 10px;
}
.service-card p {
  color: var(--chalk-dim);
  font-size: 0.96rem;
  margin-bottom: 18px;
}
.service-card .price-tag {
  font-family: var(--ff-display);
  font-weight: 500;
  color: var(--highlight-2);
  font-size: 1.05rem;
  margin-bottom: 14px;
}
.service-card .card-link {
  margin-top: auto;
  font-weight: 500;
  color: var(--highlight);
}
.svc-ico {
  width: 42px;
  height: 42px;
  margin-bottom: 16px;
  color: var(--highlight);
}

@media (min-width: 640px) {
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 960px) {
  .service-grid.cols-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ---- proceso (steps) ---- */
.steps {
  counter-reset: step;
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
}
.steps li {
  position: relative;
  padding: 24px 24px 24px 70px;
  background: var(--graphite-soft);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  margin: 0;
}
.steps li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 22px;
  top: 22px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-family: var(--ff-display);
  font-weight: 700;
  color: var(--highlight);
  border: 1px solid var(--highlight);
  box-shadow: 0 0 16px var(--magenta-glow);
}
.steps h3 {
  font-size: 1.15rem;
  margin-bottom: 6px;
}
.steps p {
  margin: 0;
  color: var(--chalk-dim);
  font-size: 0.95rem;
}
@media (min-width: 820px) {
  .steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ---- stats ---- */
.stats {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, 1fr);
}
.stat {
  padding: 26px 20px;
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  background: linear-gradient(
    160deg,
    var(--graphite-soft),
    rgba(31, 224, 224, 0.04)
  );
}
.stat .num {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: clamp(2rem, 5vw, 2.7rem);
  color: var(--chalk);
  line-height: 1;
}
.stat .lbl {
  display: block;
  margin-top: 8px;
  color: var(--chalk-dim);
  font-size: 0.9rem;
}
@media (min-width: 760px) {
  .stats {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ---- team ---- */
.team-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: 1fr;
}
.team-card {
  background: var(--graphite-soft);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  overflow: hidden;
}
.team-card img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  border-bottom: 1px solid var(--rule);
}
.team-body {
  padding: 20px 22px 24px;
}
.team-body h3 {
  margin-bottom: 2px;
}
.team-role {
  color: var(--highlight-2);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.team-body p {
  color: var(--chalk-dim);
  font-size: 0.95rem;
  margin: 0;
}
@media (min-width: 700px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 760px;
  }
}

/* ---- pricing table ---- */
.price-wrap {
  overflow-x: auto;
  border: 1px solid var(--rule);
  border-radius: var(--radius);
}
.price-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 460px;
  font-size: 0.97rem;
}
.price-table caption {
  text-align: left;
  padding: 18px 22px 0;
  color: var(--chalk-dim);
  font-size: 0.9rem;
}
.price-table th,
.price-table td {
  text-align: left;
  padding: 15px 22px;
  border-bottom: 1px solid var(--rule);
}
.price-table thead th {
  font-family: var(--ff-display);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--chalk-dim);
}
.price-table tbody tr:last-child td {
  border-bottom: none;
}
.price-table td.price {
  font-family: var(--ff-display);
  font-weight: 500;
  color: var(--highlight-2);
  white-space: nowrap;
}

/* ---- faq ---- */
.faq {
  max-width: 800px;
}
.faq-item {
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  margin-bottom: 12px;
  background: var(--graphite-soft);
  overflow: hidden;
}
.faq-q {
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  color: var(--chalk);
  font-family: var(--ff-display);
  font-weight: 500;
  font-size: 1.05rem;
  padding: 20px 56px 20px 22px;
  position: relative;
  cursor: pointer;
}
.faq-q::after {
  content: "+";
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--highlight);
  font-size: 1.4rem;
  line-height: 1;
}
.faq-item[data-open="true"] .faq-q::after {
  content: "\2212";
}
.faq-a {
  display: none;
  padding: 0 22px 22px;
  color: var(--chalk-dim);
  font-size: 0.97rem;
}
.faq-item[data-open="true"] .faq-a {
  display: block;
}

/* ---- cta band ---- */
.cta-band {
  position: relative;
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: clamp(32px, 6vw, 56px);
  background: radial-gradient(
      120% 140% at 100% 0%,
      rgba(255, 46, 196, 0.16),
      transparent 55%
    ),
    radial-gradient(
      120% 140% at 0% 100%,
      rgba(31, 224, 224, 0.14),
      transparent 55%
    ),
    var(--graphite-soft);
  text-align: center;
}
.cta-band h2 {
  margin-bottom: 12px;
}
.cta-band p {
  color: var(--chalk-dim);
  max-width: 52ch;
  margin-inline: auto;
  margin-bottom: 26px;
}
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

/* ---- contacto info ---- */
.contact-grid {
  display: grid;
  gap: 28px;
  grid-template-columns: 1fr;
}
.contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.contact-list li {
  padding: 16px 0;
  border-bottom: 1px solid var(--rule);
}
.contact-list .k {
  display: block;
  color: var(--chalk-dim);
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.contact-list .v {
  font-size: 1.05rem;
  color: var(--chalk);
}
.contact-list .v a {
  color: var(--chalk);
}
.contact-list .v a:hover {
  color: var(--highlight-2);
}
@media (min-width: 880px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}

/* breadcrumbs (visual only) */
.crumbs {
  font-size: 0.86rem;
  color: var(--chalk-dim);
  padding-top: 22px;
}
.crumbs a {
  color: var(--chalk-dim);
}
.crumbs a:hover {
  color: var(--highlight-2);
}

/* prose article */
.prose {
  max-width: 70ch;
}
.prose h2 {
  margin-top: 1.6em;
}
.prose ul {
  color: var(--chalk-dim);
}

/* misc */
.divider-soft {
  border: none;
  border-top: 1px solid var(--rule);
  margin: 0;
}
.note-strip {
  border-left: 2px solid var(--highlight-2);
  padding: 4px 0 4px 18px;
  color: var(--chalk-dim);
  margin: 22px 0;
}
