/* ============================================================
   WinLocalbiz PR — Static site stylesheet
   Translates the design-system React components into reusable
   CSS classes. Tokens are imported from the design system.
   ============================================================ */
@import url("fonts.css");
@import url("colors.css");
@import url("typography.css");
@import url("spacing.css");
@import url("base.css");

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.container-narrow { max-width: var(--container-narrow); }
.section { padding: var(--section-y) var(--gutter); }
.section--white { background: var(--white); }
.section--tight { padding-top: 0; }
body { background: var(--surface-page); }

.section-head { text-align: center; max-width: 660px; margin: 0 auto 44px; }
.section-head--left { text-align: left; margin-left: 0; }
.eyebrow { font-family: var(--font-body); font-size: var(--fs-eyebrow); font-weight: 700;
  letter-spacing: var(--ls-eyebrow); text-transform: uppercase; color: var(--brand-action); margin-bottom: 12px; }
.eyebrow--cyan { color: var(--cyan-400); }
.lead { font-size: var(--fs-lead); color: var(--slate-500); line-height: var(--lh-snug); }
.text-gradient { background: var(--brand-gradient); -webkit-background-clip: text; background-clip: text; color: transparent; }

/* ---------- Buttons ---------- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 26px; font-family: var(--font-body); font-size: 15px; font-weight: 600;
  border-radius: var(--radius-pill); border: 1.5px solid transparent; cursor: pointer;
  text-decoration: none; white-space: nowrap; line-height: 1;
  transition: all var(--dur-base) var(--ease-out); }
.btn:hover { text-decoration: none; }
.btn svg { width: 18px; height: 18px; flex: none; }
.btn-sm { padding: 8px 16px; font-size: 13px; }
.btn-lg { padding: 16px 34px; font-size: 17px; }
.btn-block { width: 100%; }

.btn-primary { background: var(--brand-action); color: #fff; box-shadow: var(--shadow-brand); }
.btn-primary:hover { background: var(--brand-action-hover); color: #fff; transform: translateY(-1px); }
.btn-secondary { background: transparent; color: var(--indigo-700); border-color: var(--indigo-700); }
.btn-secondary:hover { background: var(--indigo-700); color: #fff; }
.btn-gradient { background: var(--brand-gradient); color: #fff; box-shadow: var(--shadow-brand); }
.btn-gradient:hover { color: #fff; transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--brand-action); }
.btn-ghost:hover { background: var(--indigo-50); }
.btn-ondark { background: #fff; color: var(--indigo-700); }
.btn-ondark:hover { background: var(--indigo-50); color: var(--indigo-700); transform: translateY(-1px); }
.btn-outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.5); }
.btn-outline-light:hover { background: rgba(255,255,255,.12); color: #fff; }
.btn .arrow { transition: transform var(--dur-base) var(--ease-out); }
.btn:hover .arrow { transform: translateX(3px); }

/* ---------- Badges & grade chips ---------- */
.badge { display: inline-flex; align-items: center; gap: 6px; padding: 5px 12px;
  font-family: var(--font-body); font-size: 12px; font-weight: 600; border-radius: 999px;
  background: var(--indigo-50); color: var(--indigo-700); }
.badge--brand { background: var(--blue-500); color: #fff; }
.badge--success { background: var(--green-100); color: var(--green-600); }
.pill-tag { display: inline-flex; align-items: center; gap: 8px; background: var(--indigo-50);
  color: var(--indigo-700); font-size: 13px; font-weight: 600; padding: 7px 14px;
  border-radius: 999px; border: 1px solid var(--indigo-100); }
.pill-tag svg { width: 15px; height: 15px; }

.grade { display: inline-grid; place-items: center; width: 28px; height: 28px; border-radius: 999px;
  color: #fff; font-family: var(--font-display); font-weight: 700; font-size: 14px; flex: none; }
.grade--a, .grade--b { background: var(--green-500); }
.grade--c, .grade--d { background: var(--amber-500); }
.grade--f { background: var(--red-500); }

/* ---------- Header / Nav ---------- */
.nav { position: sticky; top: 0; z-index: 50; background: transparent;
  border-bottom: 1px solid transparent; transition: all var(--dur-base) var(--ease-out); }
.nav.scrolled { background: rgba(251,249,244,.85); backdrop-filter: saturate(150%) blur(10px);
  border-bottom: 1px solid var(--cream-300); }
.nav-inner { max-width: var(--container); margin: 0 auto; padding: 14px var(--gutter);
  display: flex; align-items: center; gap: 24px; }
.nav-logo img { width: 220px; height: auto; display: block; object-fit: contain; }
.nav-links { display: flex; gap: 26px; margin-left: 18px; }
.nav-links a { font-size: 15px; font-weight: 500; color: var(--slate-700); }
.nav-links a:hover { color: var(--indigo-700); text-decoration: none; }
.nav-right { margin-left: auto; display: flex; gap: 12px; align-items: center; }
.nav-login { font-size: 15px; font-weight: 600; color: var(--indigo-700); }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; color: var(--indigo-700); padding: 6px; }
.nav-toggle svg { width: 26px; height: 26px; }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; padding-top: 24px; padding-bottom: var(--section-y); }
.hero-swirl { position: absolute; top: 30px; left: -20px; width: 260px; opacity: .6; pointer-events: none; }
.hero-grid { max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter);
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: start; }
.hero h1 { font-family: var(--font-display); font-weight: 800; font-size: var(--fs-display);
  line-height: 1.04; letter-spacing: -0.02em; color: var(--indigo-700); margin: 20px 0 0; }
.hero p.lead { margin: 20px 0 0; max-width: 480px; line-height: 1.5; }
.hero-cta { display: flex; gap: 12px; margin-top: 30px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 28px; margin-top: 34px; flex-wrap: wrap; }
.hero-stats .num { font-family: var(--font-display); font-weight: 800; font-size: 24px; color: var(--indigo-700); }
.hero-stats .lbl { font-size: 13px; color: var(--slate-500); }
.hero-visual { position: relative; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.hero-glow { position: absolute; width: 360px; height: 360px; border-radius: 50%;
  background: radial-gradient(circle, rgba(77,107,255,.16), transparent 70%); }
.float-card { position: absolute; background: #fff; border-radius: var(--radius-md);
  box-shadow: var(--shadow-md); padding: 10px 14px; display: flex; align-items: center; gap: 10px; }
.float-card .ic { width: 32px; height: 32px; border-radius: 999px; display: grid; place-items: center; flex: none; }
.float-card .t1 { font-weight: 700; font-size: 14px; color: var(--slate-900); }
.float-card .t2 { font-size: 11px; color: var(--slate-500); }

/* ---------- Report card (Tu Diagnóstico Digital) ---------- */
.report-card { background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
  overflow: hidden; width: 100%; max-width: 340px; }
.report-card__head { background: var(--brand-action); color: #fff; padding: 14px 20px;
  display: flex; align-items: center; gap: 10px; font-family: var(--font-display); font-weight: 700; font-size: 17px; }
.report-card__head svg { width: 18px; height: 18px; }
.report-card__body { padding: 20px; }
.report-card__top { display: flex; align-items: center; gap: 16px; margin-bottom: 16px; }
.report-card__biz { font-weight: 700; color: var(--slate-900); font-size: 16px; }
.report-card__addr { color: var(--slate-500); font-size: 13px; }
.report-card__ov { color: var(--slate-400); font-size: 12px; margin-top: 6px; }
.report-row { display: flex; align-items: center; justify-content: space-between; padding: 9px 0;
  border-top: 1px solid var(--border-subtle); }
.report-row:first-of-type { border-top: none; }
.report-row span { font-size: 14px; color: var(--slate-700); font-weight: 500; }
.score-ring { position: relative; width: 84px; height: 84px; flex: none; }
.score-ring svg { transform: rotate(-90deg); }
.score-ring .val { position: absolute; inset: 0; display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 800; font-size: 22px; color: var(--indigo-700); }

/* ---------- Proof bar ---------- */
.proofbar { background: var(--white); border-top: 1px solid var(--cream-300);
  border-bottom: 1px solid var(--cream-300); padding: 22px var(--gutter); }
.proofbar-inner { max-width: var(--container); margin: 0 auto; display: flex; align-items: center;
  gap: 30px; flex-wrap: wrap; justify-content: center; }
.proofbar .label { font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--slate-400); }
.proofbar a, .proofbar .item { font-weight: 600; color: var(--slate-500); font-size: 15px; }
.proofbar a:hover { color: var(--indigo-700); text-decoration: none; }

/* ---------- Grids & cards ---------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 48px; align-items: center; }
.service-card { background: #fff; border-radius: var(--radius-lg); padding: var(--space-6);
  box-shadow: var(--shadow-sm); display: flex; flex-direction: column; gap: var(--space-3); height: 100%;
  transition: all var(--dur-base) var(--ease-out); }
.service-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.service-card .ic { width: 52px; height: 52px; border-radius: var(--radius-md); display: grid; place-items: center; }
.service-card .ic svg { width: 26px; height: 26px; }
.service-card h3 { font-family: var(--font-display); font-size: 19px; font-weight: 700;
  color: var(--indigo-700); margin: 0; letter-spacing: -0.01em; }
.service-card p { font-size: 15px; color: var(--slate-500); line-height: 1.55; margin: 0; flex: 1; }
.service-card .more { font-size: 14px; font-weight: 600; color: var(--brand-action);
  display: inline-flex; align-items: center; gap: 6px; }
.service-card:hover .more .arrow { transform: translateX(3px); }
/* accent helpers */
.ac-blue   { background: color-mix(in srgb, var(--blue-500) 14%, white); color: var(--blue-500); }
.ac-indigo { background: color-mix(in srgb, var(--indigo-700) 14%, white); color: var(--indigo-700); }
.ac-amber  { background: color-mix(in srgb, var(--amber-500) 16%, white); color: #9a6710; }
.ac-violet { background: color-mix(in srgb, var(--violet-500) 14%, white); color: var(--violet-500); }
.ac-green  { background: color-mix(in srgb, var(--green-500) 14%, white); color: var(--green-600); }
.ac-cyan   { background: color-mix(in srgb, var(--cyan-500) 16%, white); color: #0c6c7a; }
.ac-red    { background: var(--red-100); color: var(--red-500); }

/* ---------- How it works ---------- */
.step { text-align: center; padding: 0 12px; }
.step .circle { width: 64px; height: 64px; border-radius: 999px; background: var(--indigo-50);
  color: var(--indigo-700); display: grid; place-items: center; margin: 0 auto 18px; position: relative; }
.step .circle svg { width: 28px; height: 28px; }
.step .n { position: absolute; top: -6px; right: -6px; width: 26px; height: 26px; border-radius: 999px;
  background: var(--brand-action); color: #fff; font-family: var(--font-display); font-weight: 700;
  font-size: 14px; display: grid; place-items: center; }
.step h3 { font-family: var(--font-display); font-weight: 700; font-size: 19px; color: var(--indigo-700); margin: 0 0 8px; }
.step p { font-size: 15px; color: var(--slate-500); line-height: 1.55; margin: 0; }

/* ---------- AI section ---------- */
.ai-panel { max-width: var(--container); margin: 0 auto; border-radius: var(--radius-xl);
  background: var(--indigo-900); color: #fff; overflow: hidden; position: relative; }
.ai-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center;
  padding: clamp(2rem, 4vw, 3.5rem); }
.ai-panel h2 { color: #fff; }
.ai-panel .lead { color: var(--indigo-200); }
.ai-sparkle { position: absolute; top: 28px; right: 40px; width: 60px; color: var(--cyan-400); opacity: .8; }
.ai-caps { display: flex; flex-direction: column; gap: 12px; margin: 24px 0 28px; }
.ai-caps .row { display: flex; align-items: center; gap: 12px; }
.ai-caps .chk { width: 26px; height: 26px; border-radius: 999px; background: var(--cyan-500);
  color: #06343b; display: grid; place-items: center; flex: none; }
.ai-caps .chk svg { width: 16px; height: 16px; }
.ai-caps span.txt { font-size: 16px; color: rgba(255,255,255,.94); }
.chatbox { background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
  width: 100%; max-width: 360px; overflow: hidden; }
.chatbox__head { background: var(--slate-900); color: #fff; padding: 12px 16px; font-size: 14px; }
.chatbox__head .on { font-size: 12px; color: #9fe6b0; display: flex; align-items: center; gap: 6px; margin-top: 4px; }
.chatbox__head .dot { width: 7px; height: 7px; border-radius: 999px; background: #3ddc84; }
.chatbox__body { padding: 16px; background: var(--slate-100); }
.chatbox__msg { background: #fff; border-radius: 14px; padding: 12px 14px; font-size: 14px;
  color: var(--slate-700); box-shadow: var(--shadow-xs); line-height: 1.5; }
.chatbox__input { display: flex; gap: 8px; margin-top: 14px; }
.chatbox__input .field { flex: 1; background: #fff; border: 1px solid var(--slate-200);
  border-radius: 999px; padding: 10px 14px; font-size: 13px; color: var(--slate-400); }
.chatbox__input .send { background: var(--brand-action); color: #fff; border-radius: 999px;
  padding: 10px 16px; font-size: 13px; font-weight: 600; }

/* ---------- Pricing ---------- */
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; align-items: stretch; }
.price-card { position: relative; background: #fff; color: var(--slate-700); border-radius: var(--radius-lg);
  padding: var(--space-6); box-shadow: var(--shadow-sm); border: 1px solid var(--border-subtle);
  display: flex; flex-direction: column; gap: 16px; height: 100%; }
.price-card--featured { background: var(--indigo-700); color: #fff; border: none; box-shadow: var(--shadow-lg); }
.price-card__tag { position: absolute; top: 16px; right: 16px; background: var(--cyan-500); color: #06343b;
  font-size: 11px; font-weight: 700; padding: 4px 11px; border-radius: 999px; }
.price-card .name { font-family: var(--font-display); font-weight: 700; font-size: 18px; color: var(--indigo-700); }
.price-card--featured .name { color: #fff; }
.price-card .desc { font-size: 14px; color: var(--slate-500); margin-top: 4px; }
.price-card--featured .desc { color: var(--indigo-200); }
.price-card .price { display: flex; align-items: baseline; gap: 4px; }
.price-card .price b { font-family: var(--font-display); font-weight: 800; font-size: 38px;
  letter-spacing: -0.02em; color: var(--indigo-700); }
.price-card--featured .price b { color: #fff; }
.price-card .price .per { font-size: 15px; color: var(--slate-500); }
.price-card--featured .price .per { color: var(--indigo-200); }
.price-card ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.price-card li { display: flex; align-items: flex-start; gap: 9px; font-size: 14px; line-height: 1.4; color: var(--slate-700); }
.price-card--featured li { color: rgba(255,255,255,.92); }
.price-card li::before { content: "✓"; color: var(--green-500); font-weight: 800; flex: none; }
.price-card--featured li::before { color: var(--cyan-400); }

/* ---------- Testimonials ---------- */
.testimonial { background: #fff; border-radius: var(--radius-lg); padding: var(--space-6);
  box-shadow: var(--shadow-sm); margin: 0; display: flex; flex-direction: column; gap: 16px; height: 100%; }
.testimonial .stars { display: flex; gap: 2px; font-size: 17px; color: var(--yellow-400); }
.testimonial blockquote { margin: 0; font-size: 16px; line-height: 1.55; color: var(--slate-700); flex: 1; }
.testimonial figcaption { display: flex; align-items: center; gap: 12px; }
.testimonial .av { width: 44px; height: 44px; border-radius: 999px; display: grid; place-items: center;
  color: #fff; font-weight: 700; font-family: var(--font-display); flex: none; }
.testimonial .nm { display: block; font-weight: 700; color: var(--slate-900); font-size: 14px; }
.testimonial .bz { display: block; color: var(--slate-500); font-size: 13px; }

/* ---------- Final CTA ---------- */
.final-cta { padding: 0 var(--gutter) var(--section-y); }
.final-cta__band { max-width: var(--container); margin: 0 auto; background: var(--brand-gradient);
  border-radius: var(--radius-xl); padding: clamp(2.5rem, 5vw, 4rem); text-align: center;
  color: #fff; position: relative; overflow: hidden; }
.final-cta__band h2 { color: #fff; font-size: clamp(1.7rem,1.2rem+2vw,2.6rem); line-height: 1.12;
  margin: 0 auto; max-width: 640px; }
.final-cta__band p { color: rgba(255,255,255,.88); font-size: 17px; max-width: 520px; margin: 14px auto 0; }
.final-cta__btns { display: flex; gap: 12px; justify-content: center; margin-top: 28px; flex-wrap: wrap; }

/* ---------- Forms ---------- */
.lead-card { background: #fff; border-radius: var(--radius-xl); box-shadow: var(--shadow-lg);
  padding: 28px; border: 1px solid var(--cream-300); }
.lead-card h3 { font-family: var(--font-display); font-weight: 700; font-size: 20px; color: var(--indigo-700); margin: 0 0 4px; }
.lead-card > p { font-size: 14px; color: var(--slate-500); margin: 0 0 18px; }
.field { display: block; margin-bottom: 12px; }
.field > span { display: block; font-size: 13px; font-weight: 600; color: var(--slate-700); margin-bottom: 6px; }
.field input, .field select, .field textarea { width: 100%; box-sizing: border-box;
  border: 1.5px solid var(--slate-200); border-radius: var(--radius-md); padding: 11px 14px;
  font-size: 15px; font-family: var(--font-body); outline: none; background: #fff; color: var(--slate-700);
  transition: border-color var(--dur-fast), box-shadow var(--dur-fast); }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--brand-action); box-shadow: var(--focus-ring); }
.form-fine { font-size: 12px; color: var(--slate-400); text-align: center; margin: 8px 0 0; }
.form-success { text-align: center; padding: 20px 0; }
.form-success .chk { width: 56px; height: 56px; border-radius: 999px; background: var(--green-100);
  color: var(--green-600); display: grid; place-items: center; margin: 0 auto 14px; }
.form-success .chk svg { width: 28px; height: 28px; }
.form-success .t { font-family: var(--font-display); font-weight: 700; font-size: 19px; color: var(--indigo-700); }
.hidden { display: none !important; }

/* ---------- Pains (landing) ---------- */
.pain-card { background: #fff; border-radius: var(--radius-lg); padding: var(--space-6);
  box-shadow: var(--shadow-sm); display: flex; flex-direction: column; gap: 12px; }
.pain-card .ic { width: 48px; height: 48px; border-radius: var(--radius-md); display: grid; place-items: center;
  background: var(--red-100); color: var(--red-500); }
.pain-card .ic svg { width: 24px; height: 24px; }
.pain-card h3 { font-family: var(--font-display); font-weight: 700; font-size: 18px; color: var(--indigo-700); margin: 0; }
.pain-card p { font-size: 15px; color: var(--slate-500); line-height: 1.55; margin: 0; }

/* ---------- Offer block (landing) ---------- */
.offer-list { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.offer-list .row { display: flex; align-items: flex-start; gap: 10px; }
.offer-list .row::before { content: "✓"; color: var(--green-500); font-weight: 800; margin-top: 1px; }
.offer-list .row span { font-size: 15px; color: var(--slate-700); line-height: 1.4; }
.offer-price { background: var(--indigo-700); border-radius: var(--radius-xl); padding: 36px; color: #fff; text-align: center; }
.offer-price .from { font-size: 14px; color: var(--indigo-200); text-transform: uppercase; letter-spacing: .1em; font-weight: 700; }
.offer-price .amt { font-family: var(--font-display); font-weight: 800; font-size: 56px; letter-spacing: -0.02em; line-height: 1; margin: 8px 0; }
.offer-price .amt small { font-size: 20px; color: var(--indigo-200); }
.offer-price p { color: var(--indigo-200); font-size: 15px; margin: 0 0 24px; }

/* ---------- Check list (generic) ---------- */
.checklist { display: flex; flex-direction: column; gap: 12px; margin: 0; padding: 0; list-style: none; }
.checklist li { display: flex; align-items: flex-start; gap: 12px; font-size: 16px; color: var(--slate-700); }
.checklist li .chk { width: 24px; height: 24px; border-radius: 999px; background: var(--green-100);
  color: var(--green-600); display: grid; place-items: center; flex: none; margin-top: 1px; }
.checklist li .chk svg { width: 15px; height: 15px; }

/* ---------- Page hero (internal pages) ---------- */
.page-hero { padding: 56px var(--gutter) 0; }
.page-hero .inner { max-width: var(--container); margin: 0 auto; text-align: center; max-width: 760px; }
.page-hero h1 { font-family: var(--font-display); font-weight: 800; font-size: var(--fs-h1);
  letter-spacing: -0.02em; color: var(--indigo-700); margin: 16px 0 0; }
.page-hero p { margin: 16px auto 0; max-width: 600px; }

/* ---------- Footer ---------- */
.footer { background: var(--indigo-900); color: #fff; padding: 64px var(--gutter) 32px; }
.footer-inner { max-width: var(--container); margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.footer-grid img { height: 32px; width: auto; }
.footer-about { color: var(--indigo-200); font-size: 14px; line-height: 1.6; margin-top: 16px; max-width: 260px; }
.footer-col h4 { font-weight: 700; font-size: 14px; margin: 0 0 14px; font-family: var(--font-display); color: #fff; }
.footer-col a { display: block; color: var(--indigo-200); font-size: 14px; margin-bottom: 9px; }
.footer-col a:hover { color: #fff; text-decoration: none; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); padding-top: 24px; display: flex;
  justify-content: space-between; flex-wrap: wrap; gap: 12px; color: var(--indigo-200); font-size: 13px; }
.footer-bottom .tag { font-weight: 600; }

/* ---------- Report modal ---------- */
.modal-overlay { position: fixed; inset: 0; z-index: 100; background: rgba(12,16,102,.45);
  backdrop-filter: blur(4px); display: none; place-items: center; padding: 20px; }
.modal-overlay.open { display: grid; }
.modal { position: relative; background: #fff; border-radius: var(--radius-xl); box-shadow: var(--shadow-lg);
  width: 100%; max-width: 460px; overflow: hidden; }
.modal-close { position: absolute; top: 12px; right: 12px; z-index: 2; width: 36px; height: 36px;
  display: grid; place-items: center; border: none; border-radius: 999px; cursor: pointer;
  background: var(--slate-100); color: var(--slate-500); font-size: 24px; line-height: 1;
  transition: all var(--dur-fast) var(--ease-out); }
.modal-close:hover { background: var(--slate-200); color: var(--slate-900); }
.modal-text-close { display: block; width: 100%; margin-top: 12px; padding: 8px; border: none;
  background: none; cursor: pointer; color: var(--slate-500); font-family: var(--font-body);
  font-size: 14px; font-weight: 600; }
.modal-text-close:hover { color: var(--indigo-700); text-decoration: underline; }
.modal .pad { padding: 32px; }
.modal img.lg { height: 28px; }
.modal h3 { font-family: var(--font-display); font-weight: 800; font-size: 24px; color: var(--indigo-700);
  margin: 20px 0 6px; letter-spacing: -0.02em; }
.modal p.sub { color: var(--slate-500); font-size: 15px; margin: 0 0 22px; }

/* ---------- Animations ---------- */
.reveal { opacity: 0; transform: translateY(14px); transition: opacity .5s var(--ease-out), transform .5s var(--ease-out); }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 920px) {
  .hero-grid, .ai-grid, .grid-2 { grid-template-columns: 1fr !important; }
  .grid-3 { grid-template-columns: 1fr; }
  .nav-links, .nav-login { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav.menu-open .nav-links { display: flex; position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; gap: 0; background: var(--cream-50); border-bottom: 1px solid var(--cream-300);
    padding: 8px var(--gutter) 16px; margin: 0; }
  .nav.menu-open .nav-links a { padding: 12px 0; border-bottom: 1px solid var(--cream-200); }
  .hero-grid { gap: 32px; }
  .hero-visual { margin-top: 8px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .offer-list { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .grid-4 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .final-cta__btns { flex-direction: column; }
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  * { scroll-behavior: auto !important; }
}

/* ============================================================
   Extensiones — templates de servicio / industria / institucionales
   ============================================================ */
/* Landing hero (servicio/industria) */
.lp-hero { padding: 48px 0 var(--section-y); }
.lp-hero .hero-grid { align-items: start; }
.hb-list { display: flex; flex-direction: column; gap: 10px; margin-top: 24px; }
.hb-row { display: flex; align-items: center; gap: 10px; font-size: 16px; color: var(--slate-700); }
.hb-chk { width: 24px; height: 24px; border-radius: 999px; background: var(--green-100); color: var(--green-600);
  display: grid; place-items: center; flex: none; }
.hb-chk svg { width: 15px; height: 15px; }

/* Page hero pill centering */
.page-hero .pill-tag { margin: 0 auto; }

/* Problem / solution */
.solve-card { background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); padding: var(--space-6); }
.solve-ic { width: 52px; height: 52px; border-radius: var(--radius-md); background: color-mix(in srgb, var(--green-500) 14%, white);
  color: var(--green-600); display: grid; place-items: center; margin-bottom: 12px; }
.solve-ic svg { width: 26px; height: 26px; }
.solve-card h3 { font-family: var(--font-display); font-weight: 700; font-size: 20px; color: var(--indigo-700); margin: 0 0 8px; }
.solve-card p { color: var(--slate-500); margin: 0 0 18px; }

/* Includes list (2-col) */
.offer-list2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 28px; max-width: 880px; margin: 0 auto; }
.offer-row { display: flex; align-items: flex-start; gap: 10px; font-size: 16px; color: var(--slate-700); }
.ofk { width: 22px; height: 22px; border-radius: 999px; background: var(--green-100); color: var(--green-600);
  display: grid; place-items: center; flex: none; margin-top: 2px; }
.ofk svg { width: 14px; height: 14px; }

/* "Lo que estás perdiendo" */
.losing-card { background: #fff; border: 1px solid var(--red-100); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm); padding: var(--space-7); }
.losing-card h2 { text-align: center; margin-bottom: 20px; }
.losing { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.losing li { display: flex; align-items: flex-start; gap: 12px; font-size: 16px; color: var(--slate-700); }
.los-x { width: 22px; height: 22px; border-radius: 999px; background: var(--red-100); color: var(--red-500);
  display: grid; place-items: center; flex: none; font-size: 12px; font-weight: 800; margin-top: 2px; }

/* Plan recomendado (industria) */
.plan-reco { background: var(--indigo-900); border-radius: var(--radius-xl); padding: clamp(2rem,4vw,3rem);
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 32px; align-items: center; }
.plan-reco h2 { font-size: var(--fs-h2); }
.plan-reco__cta { display: flex; flex-direction: column; gap: 12px; }

/* AI add-ons */
.addon-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; max-width: 880px; margin: 0 auto; }
.addon { display: flex; align-items: center; gap: 14px; background: #fff; border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm); padding: 16px 18px; }
.addon .ic { width: 44px; height: 44px; border-radius: var(--radius-md); display: grid; place-items: center; flex: none; }
.addon .ic svg { width: 22px; height: 22px; }
.addon strong { display: block; color: var(--indigo-700); font-family: var(--font-display); font-size: 16px; }
.addon span { font-size: 14px; color: var(--slate-500); }

/* Route cards (contacto) */
.route-card { background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); padding: var(--space-6);
  display: flex; flex-direction: column; gap: 12px; align-items: flex-start; height: 100%; }
.route-card .ic { width: 52px; height: 52px; border-radius: var(--radius-md); display: grid; place-items: center; }
.route-card .ic svg { width: 26px; height: 26px; }
.route-card h3 { font-family: var(--font-display); font-weight: 700; font-size: 19px; color: var(--indigo-700); margin: 0; }
.route-card p { font-size: 15px; color: var(--slate-500); line-height: 1.55; margin: 0; flex: 1; }

/* Stats */
.statgrid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center; }
.statbox .num { font-family: var(--font-display); font-weight: 800; font-size: 40px; color: var(--indigo-700); letter-spacing: -0.02em; }
.statbox .lbl { font-size: 14px; color: var(--slate-500); }

/* FAQ */
.faq { max-width: 760px; margin: 0 auto; }
.faq-item { border: 1px solid var(--border-subtle); border-radius: var(--radius-md); background: #fff;
  margin-bottom: 12px; box-shadow: var(--shadow-xs); overflow: hidden; }
.faq-item summary { list-style: none; cursor: pointer; padding: 18px 20px; font-family: var(--font-display);
  font-weight: 600; font-size: 17px; color: var(--indigo-700); display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-size: 22px; color: var(--brand-action); font-weight: 400; flex: none; transition: transform var(--dur-base); }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-a { padding: 0 20px 18px; color: var(--slate-700); line-height: 1.6; }

/* Video slot */
.video-slot { display: grid; grid-template-columns: 1.3fr 1fr; gap: 32px; align-items: center; max-width: 1000px; margin: 0 auto; }
.video-frame { position: relative; aspect-ratio: 16/9; border-radius: var(--radius-lg); overflow: hidden;
  background: linear-gradient(135deg, var(--indigo-700), var(--violet-500)); box-shadow: var(--shadow-md);
  display: grid; place-items: center; }
.video-play { width: 72px; height: 72px; border-radius: 999px; background: rgba(255,255,255,.92); color: var(--indigo-700);
  display: grid; place-items: center; box-shadow: var(--shadow-lg); }
.video-play svg { width: 40px; height: 40px; }
.video-meta h3 { font-family: var(--font-display); font-weight: 700; font-size: 22px; color: var(--indigo-700); margin: 0 0 10px; }
.video-meta p { color: var(--slate-500); margin: 0 0 16px; }

/* Gracias */
.form-success__big { display: flex; justify-content: center; margin-bottom: 8px; }
.form-success__big .chk { width: 72px; height: 72px; border-radius: 999px; background: var(--green-100);
  color: var(--green-600); display: grid; place-items: center; }
.form-success__big .chk svg { width: 38px; height: 38px; }

/* Responsive additions */
@media (max-width: 920px) {
  .offer-list2, .addon-grid, .plan-reco, .video-slot { grid-template-columns: 1fr; }
  .statgrid { grid-template-columns: repeat(2, 1fr); }
  .plan-reco__cta { flex-direction: row; flex-wrap: wrap; }
}
@media (max-width: 560px) {
  .statgrid { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   2ª PASADA — Vida visual, profundidad y microinteracciones
   ============================================================ */

/* ---- Scroll reveal con stagger por grupo ---- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s var(--ease-out), transform .6s var(--ease-out); will-change: opacity, transform; }
.reveal.in { opacity: 1; transform: none; }
.grid-3 > .reveal:nth-child(2), .grid-4 > .reveal:nth-child(2), .grid-2 > .reveal:nth-child(2) { transition-delay: .07s; }
.grid-3 > .reveal:nth-child(3), .grid-4 > .reveal:nth-child(3) { transition-delay: .14s; }
.grid-3 > .reveal:nth-child(4), .grid-4 > .reveal:nth-child(4) { transition-delay: .21s; }
.grid-3 > .reveal:nth-child(5), .grid-4 > .reveal:nth-child(5) { transition-delay: .28s; }
.grid-3 > .reveal:nth-child(6) { transition-delay: .35s; }
.ai-caps .row { opacity: 0; transform: translateX(-10px); transition: all .5s var(--ease-out); }
.ai-panel.in .ai-caps .row { opacity: 1; transform: none; }
.ai-panel.in .ai-caps .row:nth-child(2){transition-delay:.08s}
.ai-panel.in .ai-caps .row:nth-child(3){transition-delay:.16s}
.ai-panel.in .ai-caps .row:nth-child(4){transition-delay:.24s}
.ai-panel.in .ai-caps .row:nth-child(5){transition-delay:.32s}

/* ---- Hero aurora (fondo suave, vivo, no ruidoso) ---- */
.hero { background:
    radial-gradient(60% 80% at 85% 0%, rgba(46,46,240,.07), transparent 60%),
    radial-gradient(50% 60% at 0% 30%, rgba(24,194,216,.10), transparent 60%); }
.hero-aurora { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 0; }
.hero-aurora span { position: absolute; border-radius: 50%; filter: blur(60px); opacity: .5; animation: floatBlob 14s var(--ease-in-out) infinite; }
.hero-aurora .b1 { width: 340px; height: 340px; background: rgba(77,107,255,.30); top: -60px; right: 6%; }
.hero-aurora .b2 { width: 300px; height: 300px; background: rgba(24,194,216,.26); bottom: -80px; left: 2%; animation-delay: -5s; }
.hero-aurora .b3 { width: 240px; height: 240px; background: rgba(126,58,240,.18); top: 30%; left: 40%; animation-delay: -9s; }
.hero > .hero-grid, .hero > .hero-swirl { position: relative; z-index: 1; }
@keyframes floatBlob { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(20px,-24px) scale(1.08); } }

/* ---- Cards con más profundidad y respuesta ---- */
.service-card, .price-card, .testimonial, .route-card, .pain-card { border-top: 3px solid transparent; }
.service-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-5px); border-top-color: var(--brand-action); }
.service-card .ic, .route-card .ic { transition: transform var(--dur-base) var(--ease-out); }
.service-card:hover .ic, .route-card:hover .ic { transform: scale(1.08) rotate(-3deg); }
.price-card { transition: transform var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out); }
.price-card:not(.price-card--featured):hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-top-color: var(--brand-action); }
.pain-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

/* ---- Botón primario con brillo sutil al hover ---- */
.btn-primary, .btn-gradient { position: relative; overflow: hidden; }
.btn-primary::after, .btn-gradient::after { content: ""; position: absolute; top: 0; left: -120%; width: 60%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,.35), transparent); transform: skewX(-18deg); transition: left .6s var(--ease-out); }
.btn-primary:hover::after, .btn-gradient:hover::after { left: 130%; }

/* ---- Tratamiento de imágenes: disco de color (circle-crop) ---- */
.img-disc { border-radius: 50%; aspect-ratio: 1; object-fit: cover; display: block; }
.disc-wrap { position: relative; display: inline-grid; place-items: center; }
.disc-wrap::before { content: ""; position: absolute; inset: -10px; border-radius: 50%; background: var(--disc, var(--cyan-500)); z-index: 0; }
.disc-wrap > * { position: relative; z-index: 1; }

/* ---- Imagen enmarcada (mockup / cover) ---- */
.img-frame { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); display: block; width: 100%; height: auto; }
.img-float { animation: floatY 6s var(--ease-in-out) infinite; }
@keyframes floatY { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }

/* ---- Banda foto + texto (humano/local) ---- */
.photo-band { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.photo-band__img { position: relative; }
.photo-band__img img { border-radius: var(--radius-xl); box-shadow: var(--shadow-lg); width: 100%; height: auto; display: block; }
.photo-band__img .badge-float { position: absolute; bottom: -18px; left: -18px; background: #fff; border-radius: var(--radius-md);
  box-shadow: var(--shadow-md); padding: 12px 16px; display: flex; align-items: center; gap: 10px; }
.photo-band__img .badge-float .ic { width: 38px; height: 38px; border-radius: 999px; background: var(--green-100); color: var(--green-600); display: grid; place-items: center; }
.photo-band__img .badge-float .ic svg { width: 20px; height: 20px; }
.photo-band__img .badge-float b { display: block; font-family: var(--font-display); color: var(--slate-900); font-size: 15px; }
.photo-band__img .badge-float span { font-size: 12px; color: var(--slate-500); }

/* ---- Video click-to-play ---- */
.video-embed { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg);
  aspect-ratio: 16/9; background-size: cover; background-position: center; cursor: pointer; }
.video-embed::before { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(12,16,102,.15), rgba(12,16,102,.45)); transition: opacity var(--dur-base); }
.video-embed .vplay { position: absolute; inset: 0; display: grid; place-items: center; z-index: 2; }
.video-embed .vplay span { width: 80px; height: 80px; border-radius: 999px; background: rgba(255,255,255,.94); color: var(--brand-action);
  display: grid; place-items: center; box-shadow: var(--shadow-lg); transition: transform var(--dur-base) var(--ease-out); }
.video-embed:hover .vplay span { transform: scale(1.1); }
.video-embed .vplay span svg { width: 38px; height: 38px; margin-left: 4px; }
.video-embed .vlabel { position: absolute; left: 18px; bottom: 16px; z-index: 2; color: #fff; font-weight: 600; font-family: var(--font-display);
  font-size: 15px; display: flex; align-items: center; gap: 8px; }
.video-embed.playing::before, .video-embed.playing .vplay, .video-embed.playing .vlabel { opacity: 0; pointer-events: none; }
.video-embed video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

/* ---- Avatar real en testimonios ---- */
.testimonial .av.av--img { background-size: cover; background-position: center; color: transparent; }

/* ---- Counters ---- */
.count { font-variant-numeric: tabular-nums; }

/* ---- Módulo para vendedores ---- */
.seller-block { background: linear-gradient(135deg, var(--indigo-900), var(--indigo-700)); border-radius: var(--radius-xl);
  padding: clamp(2rem,4vw,3rem); color: #fff; display: grid; grid-template-columns: 1.2fr 1fr; gap: 32px; align-items: center; }
.seller-block h2 { color: #fff; }
.seller-block .lead { color: var(--indigo-200); }
.seller-list { list-style: none; padding: 0; margin: 18px 0 0; display: grid; gap: 12px; }
.seller-list li { display: flex; gap: 10px; align-items: flex-start; color: rgba(255,255,255,.94); }
.seller-list li::before { content: "✓"; color: var(--cyan-400); font-weight: 800; }

/* ---- Pictograma de marca (png) ---- */
.brand-ic { width: 30px; height: 30px; object-fit: contain; }

/* ---- Sticky mobile CTA ---- */
.mobile-cta { position: fixed; left: 0; right: 0; bottom: 0; z-index: 60; display: none;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom)); gap: 10px;
  background: rgba(251,249,244,.94); backdrop-filter: saturate(150%) blur(10px); border-top: 1px solid var(--cream-300);
  transform: translateY(110%); transition: transform var(--dur-base) var(--ease-out); }
.mobile-cta.show { transform: none; }
.mobile-cta .btn { flex: 1; }

/* ---- Proof bar interactiva ---- */
.proofbar a { transition: color var(--dur-fast), transform var(--dur-fast); }
.proofbar a:hover { transform: translateY(-1px); }

/* ---- Responsive 2ª pasada ---- */
@media (max-width: 920px) {
  .photo-band, .seller-block { grid-template-columns: 1fr; }
  .mobile-cta { display: flex; }
  .hero-aurora .b3 { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-aurora span, .img-float { animation: none; }
  .reveal, .ai-caps .row { opacity: 1 !important; transform: none !important; transition: none; }
  .btn-primary::after, .btn-gradient::after { display: none; }
}

/* ---- Hero stage: Agente Localbiz + Reporte flotante ---- */
.hero-stage { position: relative; width: min(470px, 100%); margin: 0 auto; }
.hero-agent { width: 100%; height: auto; display: block; filter: drop-shadow(0 22px 44px rgba(12,16,102,.16)); }
.hero-report { position: absolute; left: -16%; bottom: 2%; width: 252px; z-index: 3; }
.hero-float2 { position: absolute; top: 6%; right: -2%; z-index: 3; }
@media (max-width: 920px) {
  .hero-stage { width: 100%; max-width: 360px; }
  .hero-report { position: static; width: 100%; max-width: 320px; margin: -48px auto 0; }
  .hero-float2 { display: none; }
}

/* ---- Team avatars row (about) ---- */
.team-row { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.team-av { width: 88px; height: 88px; border-radius: 50%; background-size: cover; background-position: center;
  box-shadow: var(--shadow-md); border: 3px solid #fff; transition: transform var(--dur-base) var(--ease-out); }
.team-av:hover { transform: translateY(-4px) scale(1.04); }

/* ============================================================
   AI Workforce — AgentCard (roster) + página de detalle
   ============================================================ */
.agent-card { background: var(--surface-card); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm);
  padding: var(--space-6); display: flex; flex-direction: column; gap: var(--space-4); height: 100%;
  border-top: 3px solid transparent; transition: transform var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out), border-color var(--dur-base); text-decoration: none; }
.agent-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-top-color: var(--brand-action); text-decoration: none; }
.agent-card__head { display: flex; align-items: center; gap: 16px; }
.agent-av { width: 56px; height: 56px; border-radius: 50%; flex: none; background-size: cover; background-position: center;
  box-shadow: var(--shadow-xs); border: 2px solid #fff; transition: transform var(--dur-base) var(--ease-out); }
.agent-card:hover .agent-av { transform: scale(1.06); }
.agent-card__head h3 { font-family: var(--font-display); font-weight: 700; font-size: 21px; color: var(--indigo-700); margin: 0; letter-spacing: -0.01em; line-height: 1.15; }
.autonomy { display: flex; align-items: center; gap: 8px; }
.autonomy .lbl { font-size: 14px; font-weight: 600; color: var(--slate-700); }
.autonomy .dots { display: inline-flex; gap: 5px; }
.auto-dot { width: 11px; height: 11px; border-radius: 50%; background: var(--slate-200); }
.auto-dot.on { background: var(--indigo-700); }
.agent-card p.desc { font-size: 15px; color: var(--slate-500); line-height: 1.55; margin: 0; flex: 1; }
.chan-row { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.chan-chip { width: 28px; height: 28px; border-radius: 50%; flex: none; color: #fff; display: grid; place-items: center;
  font-size: 12px; font-weight: 700; }
.chan-chip svg { width: 15px; height: 15px; }
.chan-note { font-size: 13px; color: var(--slate-500); }
.agent-card__more { font-size: 14px; font-weight: 600; color: var(--brand-action); display: inline-flex; align-items: center; gap: 6px; }
.agent-card:hover .agent-card__more .arrow { transform: translateX(3px); }

/* Detalle de agente */
.agent-hero { position: relative; overflow: hidden; }
.agent-hero .pill-tag { background: var(--cyan-100); color: #0c6c7a; border-color: transparent; }
.agent-portrait { position: relative; width: min(360px,100%); margin: 0 auto; }
.agent-portrait .ring { position: absolute; inset: -6%; border-radius: 50%; background: var(--disc, var(--cyan-500)); opacity: .14; }
.agent-portrait img { position: relative; width: 100%; border-radius: 50%; display: block; box-shadow: var(--shadow-lg); border: 6px solid #fff; }
.agent-portrait .auton-card { position: absolute; right: -10px; bottom: 8%; background: #fff; border-radius: var(--radius-md);
  box-shadow: var(--shadow-md); padding: 12px 16px; }
.agent-portrait .auton-card .lbl { font-size: 12px; color: var(--slate-500); margin-bottom: 6px; }
.cap-card { background: var(--cream-50); border-radius: var(--radius-lg); padding: var(--space-6); box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; gap: 12px; transition: transform var(--dur-base) var(--ease-out), box-shadow var(--dur-base); }
.cap-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.cap-card .ic { width: 52px; height: 52px; border-radius: var(--radius-md); display: grid; place-items: center; }
.cap-card .ic svg { width: 26px; height: 26px; }
.cap-card h3 { font-family: var(--font-display); font-weight: 700; font-size: 18px; color: var(--indigo-700); margin: 0; }
.cap-card p { font-size: 15px; color: var(--slate-500); line-height: 1.55; margin: 0; }
.usecase { background: var(--white); border-radius: var(--radius-lg); padding: var(--space-6); box-shadow: var(--shadow-sm); }
.usecase .tag { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 8px; }
.usecase p { font-size: 15px; color: var(--slate-700); line-height: 1.55; margin: 0; }
@media (max-width: 920px) { .agent-portrait .auton-card { right: 0; } }

/* ---- Paquetes (deck) — detalles de card ---- */
.price-card .value { font-size: 13px; color: var(--slate-400); margin-top: 4px; }
.price-card .value s { color: var(--slate-400); }
.price-card .price-sub { font-size: 13px; color: var(--slate-500); margin-top: 2px; }
.price-card--featured .price-sub { color: var(--indigo-200); }
.price-support { font-size: 14px; color: var(--slate-400); margin-top: auto; }
.price-card--featured .price-support { color: var(--indigo-200); }
.price-ai { font-size: 13px; font-weight: 600; color: #0c6c7a; background: var(--cyan-100);
  border-radius: 999px; padding: 8px 12px; text-align: center; }
.price-card--featured .price-ai { color: #06343b; background: var(--cyan-400); }
.price-note-box { background: var(--cream-100); border-radius: 14px; padding: 14px 16px; font-size: 13px;
  color: var(--slate-600); line-height: 1.45; margin-top: auto; }
.price-card--featured .price-note-box { background: rgba(255,255,255,.10); color: rgba(255,255,255,.9); }
.pkg-note { background: var(--indigo-50); border: 1px solid var(--indigo-100); border-radius: 16px;
  padding: 16px 24px; font-size: 15px; color: var(--indigo-700); margin-top: 24px; }
.price-card .price b.range { font-size: 30px; }
.pricerow { display: flex; justify-content: space-between; font-size: 14px; padding: 4px 0; }

/* ---- Enriquecimiento Claude Design: VerticalCard + showcase + reporte en servicios ---- */
.vertical-card { background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow-sm);
  padding: var(--space-6); display: flex; flex-direction: column; align-items: flex-start; gap: 12px;
  height: 100%; text-decoration: none; border-top: 3px solid transparent;
  transition: transform var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out), border-color var(--dur-base); }
.vertical-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-top-color: var(--cyan-500); text-decoration: none; }
.vcard-icon { width: 84px; height: 84px; border-radius: 50%; object-fit: cover; box-shadow: var(--shadow-sm);
  transition: transform var(--dur-base) var(--ease-out); }
.vertical-card:hover .vcard-icon { transform: scale(1.06); }
.vertical-card h3 { font-family: var(--font-display); font-weight: 700; font-size: 19px; color: var(--indigo-700); margin: 0; }
.vertical-card p { font-size: 15px; color: var(--slate-500); line-height: 1.55; margin: 0; flex: 1; }

.show-card { background: var(--cream-50); border: 1px solid var(--cream-300); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-sm); transition: transform var(--dur-base) var(--ease-out), box-shadow var(--dur-base); }
.show-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.show-card img { width: 100%; height: 200px; object-fit: cover; object-position: top; display: block; background: var(--slate-100); }
.show-card .body { padding: 18px 20px; }
.show-card .body h3 { font-family: var(--font-display); font-weight: 700; font-size: 17px; color: var(--indigo-700); margin: 0; }
.show-card .body p { font-size: 14px; color: var(--slate-500); margin: 6px 0 0; line-height: 1.5; }

/* Lista de notas A/C/F (bloque Reporte en Servicios) */
.grade-list { display: flex; flex-direction: column; gap: 12px; }
.grade-list .row { display: flex; align-items: center; gap: 12px; }
.grade-list .row span.txt { font-size: 16px; color: var(--slate-700); }
.grade-list .row span.txt b { color: var(--slate-900); }

/* "Y mucho más" card (roster agentes) */
.more-agents { background: var(--indigo-700); border-radius: var(--radius-lg); padding: var(--space-6); color: #fff;
  display: flex; flex-direction: column; justify-content: center; gap: 12px; height: 100%; }
.more-agents .ic { width: 44px; height: 44px; border-radius: 999px; background: rgba(255,255,255,.14); color: var(--cyan-400); display: grid; place-items: center; }
.more-agents .ic svg { width: 24px; height: 24px; }
.more-agents h3 { font-family: var(--font-display); font-weight: 700; font-size: 20px; color: #fff; margin: 0; }
.more-agents p { font-size: 15px; color: var(--indigo-200); line-height: 1.55; margin: 0; }
.more-agents a { color: var(--cyan-400); font-weight: 600; font-size: 14px; }

/* ---- Panel Tu Diagnóstico Digital (Nosotros) ---- */
.report-band { background: var(--indigo-900); border-radius: var(--radius-xl); padding: clamp(2rem,4vw,3.5rem);
  color: #fff; display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.report-band h2 { color: #fff; }
@media (max-width: 920px) { .report-band { grid-template-columns: 1fr; } }

/* ---- Agentes AI hero: título más ancho (≤4 líneas) ---- */
.agent-hero .hero-grid { grid-template-columns: 1.25fr 0.75fr; gap: 40px; }
.agent-hero h1 { font-size: clamp(2rem, 1.5rem + 2vw, 3rem); max-width: 660px; }
@media (max-width: 920px) { .agent-hero .hero-grid { grid-template-columns: 1fr; } }

.wlb-crumbs{background:#f4f6f7;border-bottom:1px solid #e3e9ec;font-size:13px}
.wlb-crumbs .container{padding:10px var(--gutter)}
.wlb-crumbs__nav,.wlb-crumbs a,.wlb-crumbs span{color:#5d6873}
.wlb-crumbs a{text-decoration:none}
.wlb-crumbs a:hover{color:#0e7c8c;text-decoration:underline}
.wlb-crumbs .breadcrumb_last{color:#0f172a;font-weight:600}

/* ---------- Blog / archive pagination (on-brand) ---------- */
.pagination { margin-top: 40px; }
.pagination .screen-reader-text { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; white-space: nowrap; }
/* Scoped override: the_posts_pagination() wraps links in .nav-links, which collides with the
   header menu (base styles + hidden on mobile). These rules win by specificity (.pagination .nav-links). */
.pagination .nav-links { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 10px; margin: 0; }
.pagination .page-numbers {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  min-width: 46px; height: 46px; padding: 0 15px;
  border: 1px solid var(--slate-200); border-radius: 12px; background: #fff;
  color: var(--indigo-700); font-family: var(--font-body); font-size: 15px; font-weight: 600;
  line-height: 1; text-decoration: none; transition: all var(--dur-base) var(--ease-out); }
.pagination a.page-numbers:hover { border-color: var(--indigo-300); background: var(--indigo-50); transform: translateY(-1px); text-decoration: none; }
.pagination .page-numbers.current { background: var(--brand-action); border-color: var(--brand-action); color: #fff; box-shadow: var(--shadow-brand); }
.pagination .page-numbers.dots { min-width: auto; padding: 0 4px; border-color: transparent; background: transparent; color: var(--slate-400); }
.pagination a.page-numbers.prev, .pagination a.page-numbers.next { color: var(--brand-action); padding: 0 20px; }
.pagination a.page-numbers.prev:hover, .pagination a.page-numbers.next:hover { background: var(--brand-action); border-color: var(--brand-action); color: #fff; }
.pagination .page-numbers .arrow { display: inline-block; transition: transform var(--dur-base) var(--ease-out); }
.pagination a.page-numbers.next:hover .arrow { transform: translateX(3px); }
.pagination a.page-numbers.prev:hover .arrow { transform: translateX(-3px); }
.pagination .page-numbers:focus-visible { outline: none; box-shadow: var(--focus-ring); }
@media (max-width: 560px) {
  .pagination .page-numbers { min-width: 42px; height: 42px; padding: 0 12px; font-size: 14px; }
  .pagination a.page-numbers.prev, .pagination a.page-numbers.next { padding: 0 14px; }
}

/* ---------- Blog card cover image ---------- */
.service-card.has-cover { padding-top: 0; overflow: hidden; }
.service-card__media { display: block; margin: 0 calc(-1 * var(--space-6)); aspect-ratio: 16 / 10; overflow: hidden; background: var(--indigo-50); }
.service-card__media img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform var(--dur-base) var(--ease-out); }
.service-card:hover .service-card__media img { transform: scale(1.04); }
