/* ==========================================================================
   ProTax Accounting Group — Design System
   Palette: verde vibrante · negro profundo · blanco cálido
   Type: Manrope (sans) + Caveat (script accent)
   ========================================================================== */

:root {
  /* Green scale */
  --green-50:  #F0FDF4;
  --green-100: #DCFCE7;
  --green-200: #BBF7D0;
  --green-400: #4ADE80;
  --green-500: #22C55E;   /* primary */
  --green-600: #16A34A;   /* hover */
  --green-700: #15803D;
  --green-900: #14532D;

  /* Neutrals */
  --ink-950: #0A0A0A;      /* near-black */
  --ink-900: #171717;
  --ink-800: #262626;
  --ink-700: #404040;
  --ink-600: #525252;
  --ink-500: #737373;
  --ink-400: #A3A3A3;
  --ink-300: #D4D4D4;
  --ink-200: #E5E5E5;
  --ink-100: #F5F5F5;
  --ink-50:  #FAFAFA;
  --white:   #FFFFFF;

  /* Semantic */
  --bg:            #FFFFFF;
  --bg-soft:       #FAFAFA;
  --bg-dark:       var(--ink-950);
  --fg:            var(--ink-950);
  --fg-muted:      var(--ink-600);
  --brand:         var(--green-500);
  --brand-hover:   var(--green-600);
  --border:        var(--ink-200);
  --border-strong: var(--ink-300);

  /* Radii */
  --r-sm: 6px;
  --r-md: 10px;
  --r-lg: 16px;
  --r-xl: 24px;
  --r-full: 999px;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0,0,0,.05);
  --shadow-md: 0 8px 24px -8px rgba(0,0,0,.12), 0 2px 6px rgba(0,0,0,.04);
  --shadow-lg: 0 30px 60px -20px rgba(0,0,0,.25), 0 10px 20px -12px rgba(0,0,0,.10);
  --shadow-green: 0 20px 40px -12px rgba(34,197,94,.35);

  /* Type */
  --font-sans: "Manrope", "Helvetica Neue", Arial, sans-serif;
  --font-script: "Caveat", "Brush Script MT", cursive;

  /* Spacing rhythm */
  --nav-h: 96px;
  --section-y: clamp(72px, 10vw, 128px);
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--fg);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg { display: block; max-width: 100%; }

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

button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ---------- Typography helpers ---------- */

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--brand);
}
.eyebrow::before {
  content: "";
  width: 24px; height: 2px;
  background: var(--brand);
  display: inline-block;
}

h1, h2, h3, h4 {
  font-family: var(--font-sans);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.08;
  margin: 0;
  text-wrap: balance;
}
h1 { font-size: clamp(40px, 6vw, 76px); }
h2 { font-size: clamp(32px, 4.4vw, 54px); }
h3 { font-size: clamp(22px, 2.2vw, 28px); font-weight: 700; }
h4 { font-size: 18px; font-weight: 700; }

p { margin: 0; text-wrap: pretty; }

.script {
  font-family: var(--font-script);
  font-weight: 400;
  color: var(--brand);
  font-size: 1.15em;
  line-height: 1;
}

/* ---------- Layout ---------- */

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

section { padding: var(--section-y) 0; }

.grid { display: grid; gap: 24px; }

/* ---------- Nav ---------- */

.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.85);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px;
}
.nav-logo {
  color: var(--ink-950);
  height: 68px;
  max-width: 280px;
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}
.nav-logo svg { height: 100%; width: auto; }
.nav-logo img {
  height: 100%;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  display: block;
}
@media (max-width: 1100px) { .nav-logo { height: 60px; max-width: 240px; } }
@media (max-width: 900px)  { .nav-logo { height: 52px; max-width: 200px; } }
@media (max-width: 500px)  { .nav-logo { height: 44px; max-width: 170px; } }
.nav-links {
  display: flex; align-items: center; gap: 32px;
  list-style: none; padding: 0; margin: 0;
  font-size: 14px; font-weight: 600;
}
.nav-links a {
  color: var(--ink-800);
  transition: color .15s;
  position: relative;
}
.nav-links a:hover { color: var(--brand); }
.nav-cta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}
.nav-cta .btn { min-width: 200px; }
.nav-phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  color: var(--ink-950);
  font-size: 22px;
  letter-spacing: -0.5px;
  padding: 6px 4px;
  transition: color .15s;
  line-height: 1;
}
.nav-phone:hover { color: var(--brand); }
.nav-phone svg {
  width: 28px;
  height: 28px;
  color: #fff;
  background: var(--brand);
  border-radius: 50%;
  padding: 6px;
  box-shadow: 0 4px 12px rgba(34,197,94,.35);
  flex-shrink: 0;
}
@media (max-width: 900px) { .nav-phone { font-size: 18px; } .nav-phone svg { width: 24px; height: 24px; padding: 5px; } }

.nav-toggle {
  display: none;
  width: 40px; height: 40px;
  border-radius: var(--r-md);
  background: var(--ink-100);
}
.nav-toggle svg { margin: auto; width: 20px; height: 20px; }

@media (max-width: 900px) {
  .nav-links, .nav-phone { display: none; }
  .nav-toggle { display: flex; }
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 24px;
  border-radius: var(--r-full);
  font-weight: 700; font-size: 15px;
  letter-spacing: -0.01em;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  white-space: nowrap;
  cursor: pointer;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary {
  background: var(--brand);
  color: var(--white);
  box-shadow: var(--shadow-green);
}
.btn-primary:hover { background: var(--brand-hover); transform: translateY(-1px); }
.btn-secondary {
  background: var(--ink-950);
  color: var(--white);
}
.btn-secondary:hover { background: var(--ink-800); transform: translateY(-1px); }
.btn-outline {
  background: transparent;
  color: var(--ink-950);
  border: 2px solid var(--ink-950);
  padding: 12px 22px;
}
.btn-outline:hover { background: var(--ink-950); color: var(--white); }
.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,.25);
}
.btn-ghost:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.5); }
.btn-lg { padding: 18px 32px; font-size: 16px; }

/* ---------- Hero ---------- */

.hero {
  background: var(--bg-dark);
  color: var(--white);
  position: relative;
  overflow: hidden;
  padding: clamp(80px, 12vw, 140px) 0 clamp(100px, 14vw, 160px);
}
.hero::before {
  /* Diagonal green shape */
  content: "";
  position: absolute;
  top: -20%; right: -10%;
  width: 60%; height: 140%;
  background: linear-gradient(135deg, var(--green-500) 0%, var(--green-700) 100%);
  transform: skewX(-12deg);
  opacity: 0.9;
  z-index: 0;
}
.hero::after {
  /* Subtle grid pattern */
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 48px 48px;
  z-index: 0;
  pointer-events: none;
}
.hero .container { position: relative; z-index: 1; }

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
}

.hero-eyebrow {
  color: var(--green-400);
  border: 1px solid rgba(74,222,128,.3);
  background: rgba(34,197,94,.08);
  padding: 8px 14px;
  border-radius: var(--r-full);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.hero-eyebrow::before { display: none; }
.hero-eyebrow .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--green-400);
  box-shadow: 0 0 12px var(--green-400);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero h1 {
  margin-top: 24px;
  color: var(--white);
}
.hero h1 .highlight { color: var(--green-400); }
.hero h1 .script { display: block; font-size: 0.72em; margin-top: -6px; }

.hero-lead {
  margin-top: 24px;
  font-size: clamp(17px, 1.4vw, 20px);
  color: rgba(255,255,255,.75);
  max-width: 520px;
  line-height: 1.55;
}

.hero-actions {
  margin-top: 40px;
  display: flex; flex-wrap: wrap; gap: 16px;
}

.hero-meta {
  margin-top: 48px;
  display: flex; flex-wrap: wrap; gap: 32px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,.1);
}
.hero-meta-item { display: flex; align-items: center; gap: 12px; }
.hero-meta-item .icon {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(34,197,94,.15);
  color: var(--green-400);
  display: grid; place-items: center;
}
.hero-meta-item .icon svg { width: 18px; height: 18px; }
.hero-meta-item .label { font-size: 12px; color: rgba(255,255,255,.5); text-transform: uppercase; letter-spacing: 1px; }
.hero-meta-item .value { font-size: 15px; font-weight: 700; color: var(--white); }

/* Hero visual card */
.hero-card {
  background: rgba(255,255,255,.04);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r-xl);
  padding: 32px;
  position: relative;
}

/* ========================================================================
   SENIOR PROMO CARD — Warm coral/orange design with couple photo
   Cálido, dignified, contrasts against green hero
   ======================================================================== */
:root {
  --coral-500: #F97316;      /* main orange/coral */
  --coral-400: #FB923C;
  --coral-300: #FDBA74;
  --coral-100: #FED7AA;
  --coral-50:  #FFF7ED;
  --coral-700: #C2410C;
}

.senior-promo {
  background: linear-gradient(180deg, #FFF7ED 0%, #FFEDD5 100%);
  border: none;
  padding: 0;
  overflow: hidden;
  position: relative;
  border-radius: var(--r-xl);
  box-shadow: 0 30px 60px -15px rgba(0,0,0,0.35), 0 0 0 1px rgba(249,115,22,0.15);
  animation: promoGlow 3s ease-in-out infinite;
}
@keyframes promoGlow {
  0%, 100% { box-shadow: 0 30px 60px -15px rgba(0,0,0,0.35), 0 0 0 1px rgba(249,115,22,0.15); }
  50%      { box-shadow: 0 30px 60px -15px rgba(0,0,0,0.35), 0 0 30px 4px rgba(251,146,60,0.35), 0 0 0 2px rgba(249,115,22,0.4); }
}

/* Corner ribbon */
.senior-promo-ribbon {
  position: absolute;
  top: 16px; left: -6px;
  background: linear-gradient(90deg, var(--coral-500), var(--coral-400));
  color: var(--white);
  padding: 8px 18px 8px 14px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  z-index: 5;
  clip-path: polygon(0 0, 100% 0, calc(100% - 10px) 50%, 100% 100%, 0 100%);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 12px rgba(249,115,22,0.5);
}
.senior-promo-ribbon svg { width: 12px; height: 12px; }
.senior-promo-ribbon::after {
  content: "";
  position: absolute;
  bottom: -6px; left: 0;
  border-top: 6px solid var(--coral-700);
  border-left: 6px solid transparent;
}

/* Photo header */
.senior-promo-photo {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: #f5f5f5;
}
.senior-promo-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}
.senior-promo-photo::after {
  /* Bottom fade for smooth transition to card body */
  content: "";
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 60%;
  background: linear-gradient(180deg, transparent 0%, rgba(255,247,237,0.4) 60%, #FFF7ED 100%);
  pointer-events: none;
}

.senior-promo-inner {
  padding: 4px 28px 28px;
  position: relative;
  z-index: 1;
}

/* Header block */
.senior-promo-header {
  text-align: center;
  padding-bottom: 18px;
  border-bottom: 1px dashed rgba(249,115,22,0.3);
  margin-bottom: 18px;
}
.senior-promo-subtitle {
  color: var(--coral-700);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.senior-promo-title {
  color: var(--ink-950);
  font-size: 24px;
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}
.senior-promo-title .script {
  display: block;
  font-family: var(--font-script);
  font-size: 26px;
  color: var(--coral-500);
  font-weight: 700;
  margin-top: -2px;
}

/* Price */
.senior-promo-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 6px;
  margin-top: 8px;
}
.senior-promo-price .from { font-size: 12px; color: var(--ink-600); text-transform: uppercase; letter-spacing: 1.5px; font-weight: 700; align-self: center; margin-right: 4px; }
.senior-promo-price .cur { font-size: 24px; font-weight: 800; color: var(--ink-950); }
.senior-promo-price .amt {
  font-size: 68px;
  font-weight: 900;
  color: var(--coral-500);
  line-height: 1;
  letter-spacing: -0.04em;
  text-shadow: 0 2px 4px rgba(249,115,22,0.15);
}
.senior-promo-price .old { font-size: 14px; text-decoration: line-through; color: var(--ink-500); font-weight: 700; align-self: center; margin-left: 6px; }
.senior-promo-audience {
  color: var(--ink-700);
  font-size: 13px;
  margin-top: 6px;
  font-weight: 600;
}

/* Documents section */
.senior-promo-section {
  margin-bottom: 14px;
}
.senior-promo-section h4 {
  color: var(--coral-700);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.senior-promo-section h4 svg { width: 14px; height: 14px; }
.senior-promo-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 6px;
}
.senior-promo-section li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  color: var(--ink-800);
  line-height: 1.4;
}
.senior-promo-section li svg {
  width: 16px; height: 16px;
  color: var(--coral-500);
  flex-shrink: 0;
  margin-top: 2px;
}

/* Deadline warning */
.senior-promo-deadline {
  background: linear-gradient(135deg, #FEE2E2 0%, #FECACA 100%);
  border: 1.5px solid #F87171;
  border-radius: var(--r-md);
  padding: 12px 14px;
  margin: 14px 0;
  display: flex;
  align-items: center;
  gap: 12px;
}
.senior-promo-deadline .deadline-icon {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: #DC2626;
  color: var(--white);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  animation: pulse 2s infinite;
}
.senior-promo-deadline .deadline-icon svg { width: 20px; height: 20px; }
.senior-promo-deadline .deadline-text { line-height: 1.3; }
.senior-promo-deadline .deadline-label { font-size: 10px; color: #B91C1C; text-transform: uppercase; letter-spacing: 1.5px; font-weight: 800; }
.senior-promo-deadline .deadline-value { color: #7F1D1D; font-weight: 900; font-size: 14.5px; }

/* CTA */
.senior-promo-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 15px;
  background: linear-gradient(90deg, var(--coral-500), var(--coral-400));
  color: var(--white);
  text-align: center;
  border-radius: var(--r-full);
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.3px;
  transition: all .2s;
  box-shadow: 0 8px 20px -6px rgba(249,115,22,0.55);
}
.senior-promo-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px -6px rgba(249,115,22,0.65);
  filter: brightness(1.05);
}
.senior-promo-cta svg { width: 16px; height: 16px; }

/* Small foot note */
.senior-promo-note {
  text-align: center;
  font-size: 11.5px;
  color: var(--ink-600);
  margin-top: 10px;
  font-style: italic;
}
.hero-card-header {
  display: flex; justify-content: space-between; align-items: flex-start;
  margin-bottom: 24px;
}
.hero-card-tag {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--green-500);
  color: var(--white);
  padding: 6px 12px;
  border-radius: var(--r-full);
  font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
}
.hero-card-title { color: var(--white); margin-bottom: 4px; font-size: 14px; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,.5); font-weight: 600; }
.hero-card-price {
  display: flex; align-items: baseline; gap: 8px;
  margin-bottom: 8px;
}
.hero-card-price .amount {
  font-size: clamp(64px, 8vw, 96px);
  font-weight: 900;
  color: var(--green-400);
  line-height: 1;
  letter-spacing: -0.04em;
}
.hero-card-price .currency {
  font-size: 32px; font-weight: 800; color: var(--white);
}
.hero-card-price .period {
  font-size: 18px; color: rgba(255,255,255,.6); font-weight: 600;
}
.hero-card-sub { color: rgba(255,255,255,.6); font-size: 14px; margin-bottom: 24px; }

.hero-card-features {
  list-style: none; padding: 0; margin: 0;
  display: grid; gap: 12px;
}
.hero-card-features li {
  display: flex; align-items: center; gap: 12px;
  font-size: 14px; color: rgba(255,255,255,.85);
}
.hero-card-features li svg {
  width: 18px; height: 18px; color: var(--green-400); flex-shrink: 0;
}
.hero-card-footer {
  margin-top: 24px; padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.1);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 13px; color: rgba(255,255,255,.6);
}

/* ---------- Trust bar ---------- */

.trust-bar {
  background: var(--ink-950);
  color: rgba(255,255,255,.7);
  padding: 24px 0;
  border-top: 1px solid rgba(255,255,255,.06);
}
.trust-bar-inner {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 20px;
}
.trust-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 600;
  color: rgba(255,255,255,.75);
  letter-spacing: 0.5px;
}
.trust-item svg { width: 20px; height: 20px; color: var(--green-400); }
.trust-item strong { color: var(--white); font-weight: 800; }

/* ---------- Section headers ---------- */

.section-head {
  max-width: 720px;
  margin-bottom: 56px;
}
.section-head.centered { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { margin-top: 16px; }
.section-head p {
  margin-top: 20px;
  font-size: 18px;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* ---------- Services grid ---------- */

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 900px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .services-grid { grid-template-columns: 1fr; } }

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  transition: all .25s ease;
  position: relative;
  overflow: hidden;
}
.service-card:hover {
  border-color: var(--green-500);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.service-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
  background: var(--brand);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform .3s ease;
}
.service-card:hover::before { transform: scaleY(1); }
.service-icon {
  width: 56px; height: 56px;
  border-radius: var(--r-md);
  background: var(--green-50);
  color: var(--green-600);
  display: grid; place-items: center;
  margin-bottom: 20px;
}
.service-icon svg { width: 26px; height: 26px; }
.service-card h3 { margin-bottom: 10px; }
.service-card p { color: var(--fg-muted); font-size: 15px; }
.service-link {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 20px;
  color: var(--brand);
  font-weight: 700; font-size: 14px;
}
.service-link svg { width: 14px; height: 14px; transition: transform .2s; }
.service-card:hover .service-link svg { transform: translateX(4px); }

/* ---------- Pricing ---------- */

.pricing-wrap {
  background: linear-gradient(135deg, var(--ink-950) 0%, #0f1f14 100%);
  color: var(--white);
  border-radius: var(--r-xl);
  padding: clamp(40px, 6vw, 72px);
  position: relative;
  overflow: hidden;
}
.pricing-wrap::before {
  content: "";
  position: absolute;
  bottom: -30%; right: -20%;
  width: 60%; height: 120%;
  background: radial-gradient(circle, rgba(34,197,94,.25) 0%, transparent 60%);
  z-index: 0;
}
.pricing-inner {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 900px) {
  .pricing-inner { grid-template-columns: 1fr; gap: 40px; }
}
.pricing-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--green-500);
  color: var(--white);
  padding: 8px 16px;
  border-radius: var(--r-full);
  font-size: 12px; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase;
}
.pricing-title { color: var(--white); margin: 24px 0 20px; }
.pricing-title .script { display: block; font-size: 0.8em; }
.pricing-price {
  display: flex; align-items: baseline; gap: 8px;
  margin: 16px 0 8px;
}
.pricing-price .currency { font-size: 40px; font-weight: 800; color: var(--white); }
.pricing-price .amount {
  font-size: clamp(96px, 12vw, 148px);
  font-weight: 900;
  color: var(--green-400);
  line-height: 0.9;
  letter-spacing: -0.05em;
}
.pricing-price .period {
  font-size: 20px; color: rgba(255,255,255,.6); font-weight: 700;
}
.pricing-sub {
  color: rgba(255,255,255,.7); font-size: 15px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.1);
  margin-top: 16px;
}
.pricing-actions {
  display: flex; flex-wrap: wrap; gap: 12px;
  margin-top: 28px;
}

.pricing-features {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px 20px;
}
@media (max-width: 600px) { .pricing-features { grid-template-columns: 1fr; } }
.pricing-features li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14.5px; color: rgba(255,255,255,.9);
  line-height: 1.4;
}
.pricing-features li .check {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--green-500);
  color: var(--white);
  display: grid; place-items: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.pricing-features li .check svg { width: 12px; height: 12px; }

/* ---------- Industries ---------- */

.industries {
  background: var(--bg-soft);
}
.industries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 900px) { .industries-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px) { .industries-grid { grid-template-columns: repeat(2, 1fr); } }

.industry-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 28px 20px;
  text-align: center;
  border: 1px solid var(--border);
  transition: all .25s ease;
  cursor: default;
}
.industry-card:hover {
  transform: translateY(-4px);
  border-color: var(--green-400);
  background: var(--green-50);
}
.industry-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--ink-950);
  color: var(--green-400);
  display: grid; place-items: center;
  margin: 0 auto 16px;
  transition: all .25s ease;
}
.industry-card:hover .industry-icon {
  background: var(--green-500);
  color: var(--white);
}
.industry-icon svg { width: 28px; height: 28px; }
.industry-card .name {
  font-weight: 700;
  font-size: 14px;
  color: var(--ink-900);
  letter-spacing: 0.3px;
}

/* ---------- Process ---------- */

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
@media (max-width: 900px) { .process-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .process-grid { grid-template-columns: 1fr; } }

.process-step {
  position: relative;
  padding: 32px 24px;
  background: var(--white);
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
}
.process-num {
  font-family: var(--font-sans);
  font-size: 52px;
  font-weight: 900;
  color: var(--green-500);
  line-height: 1;
  letter-spacing: -0.04em;
  opacity: 0.9;
}
.process-step h4 {
  margin: 12px 0 8px;
  font-size: 18px;
}
.process-step p {
  color: var(--fg-muted);
  font-size: 14.5px;
}

/* ---------- About / Founder ---------- */

.about {
  background: var(--white);
  position: relative;
  overflow: hidden;
}
.about::before {
  /* Subtle dark panel behind the photo side to echo the portrait's studio backdrop */
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 42%;
  height: 100%;
  background: linear-gradient(135deg, #0a0a0a 0%, #12241a 100%);
  z-index: 0;
}
@media (max-width: 900px) { .about::before { display: none; } }
.about .container { position: relative; z-index: 1; }

.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 72px;
  align-items: center;
}
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
}
.about-photo-wrap {
  position: relative;
  padding: 20px;
}
.about-photo {
  position: relative;
  aspect-ratio: 3/4;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: #0a0a0a;
  box-shadow: 0 30px 80px -20px rgba(0,0,0,.5), 0 0 0 1px rgba(255,255,255,.05);
}
.about-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 55% 30%;
}
/* Green corner accent - top left */
.about-photo-wrap::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 60px; height: 60px;
  border-top: 3px solid var(--brand);
  border-left: 3px solid var(--brand);
  border-top-left-radius: var(--r-lg);
  z-index: 2;
}
/* Green corner accent - bottom right */
.about-photo-wrap::after {
  content: "";
  position: absolute;
  bottom: 0; right: 0;
  width: 60px; height: 60px;
  border-bottom: 3px solid var(--brand);
  border-right: 3px solid var(--brand);
  border-bottom-right-radius: var(--r-lg);
  z-index: 2;
}
/* Floating credentials card on top of photo */
.about-credential {
  position: absolute;
  bottom: 44px; left: -20px;
  z-index: 3;
  background: var(--white);
  padding: 14px 20px;
  border-radius: var(--r-md);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 14px;
  border-left: 3px solid var(--brand);
}
@media (max-width: 500px) { .about-credential { left: 0; } }
.about-credential .avatar-mark {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--green-50);
  color: var(--brand);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.about-credential .avatar-mark svg { width: 20px; height: 20px; }
.about-credential .cred-text { line-height: 1.25; }
.about-credential .cred-name { font-weight: 800; font-size: 14px; color: var(--ink-950); }
.about-credential .cred-role { font-size: 11px; color: var(--fg-muted); letter-spacing: 1px; text-transform: uppercase; font-weight: 600; margin-top: 2px; }
/* .about-badge removed — replaced by .about-credential */

.about-content h2 { margin-top: 16px; }
.about-content .script { font-size: 40px; display: block; margin-top: 8px; }
.about-quote {
  margin-top: 28px;
  padding: 24px 28px;
  background: var(--green-50);
  border-left: 4px solid var(--brand);
  border-radius: var(--r-md);
  font-size: 17px;
  font-style: italic;
  color: var(--ink-800);
  line-height: 1.55;
}
.about-signature {
  margin-top: 20px;
  display: flex; align-items: center; gap: 16px;
}
.about-signature .name {
  font-family: var(--font-script);
  font-size: 34px;
  color: var(--ink-950);
  line-height: 1;
}
.about-signature .title { font-size: 14px; color: var(--fg-muted); font-weight: 600; }

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.about-stat .val { font-size: 32px; font-weight: 900; color: var(--brand); letter-spacing: -0.02em; line-height: 1; }
.about-stat .lbl { font-size: 13px; color: var(--fg-muted); margin-top: 6px; }

/* ---------- Testimonials ---------- */

/* ================= TESTIMONIALS — Rediseño emotivo ================= */
.testimonials {
  background: var(--bg-soft);
  position: relative;
  overflow: hidden;
}
.testimonials::before {
  /* Big quote mark in the background */
  content: "\201C";
  position: absolute;
  top: -60px; left: -30px;
  font-family: Georgia, serif;
  font-size: 500px;
  color: var(--green-500);
  opacity: 0.04;
  line-height: 1;
  pointer-events: none;
}

/* Featured testimonial - full width, dramatic */
.testimonial-featured {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: 0;
  margin-bottom: 32px;
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}
@media (max-width: 900px) { .testimonial-featured { grid-template-columns: 1fr; } }

.testimonial-featured-photo {
  background: linear-gradient(135deg, var(--green-500), var(--green-700));
  min-height: 320px;
  position: relative;
  overflow: hidden;
}
.testimonial-featured-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.testimonial-featured-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,.4) 100%);
}
.testimonial-featured-badge {
  position: absolute;
  top: 20px; left: 20px;
  background: rgba(255,255,255,0.95);
  color: var(--green-700);
  padding: 6px 12px;
  border-radius: var(--r-full);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  z-index: 2;
  box-shadow: var(--shadow-sm);
}
.testimonial-featured-badge svg { width: 12px; height: 12px; }
.testimonial-featured-body {
  padding: clamp(28px, 4vw, 48px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}
.testimonial-featured-body::before {
  content: "\201C";
  position: absolute;
  top: 12px; left: 32px;
  font-family: Georgia, serif;
  font-size: 120px;
  color: var(--green-100);
  line-height: 1;
  pointer-events: none;
}
.testimonial-featured-stars {
  display: flex;
  gap: 4px;
  color: #F59E0B;
  margin-bottom: 18px;
  position: relative;
}
.testimonial-featured-stars svg { width: 20px; height: 20px; }
.testimonial-featured-quote {
  font-size: clamp(19px, 2.2vw, 24px);
  line-height: 1.5;
  color: var(--ink-900);
  font-weight: 500;
  margin-bottom: 24px;
  position: relative;
  font-style: italic;
}
.testimonial-featured-highlight {
  background: linear-gradient(120deg, transparent 0%, transparent 50%, var(--green-100) 50%, var(--green-100) 100%);
  padding: 0 4px;
  font-weight: 700;
  font-style: normal;
  color: var(--ink-950);
}
.testimonial-featured-author {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 12px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.testimonial-featured-avatar {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-500), var(--green-700));
  color: var(--white);
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 18px;
  flex-shrink: 0;
}
.testimonial-featured-name { font-weight: 800; font-size: 17px; color: var(--ink-950); }
.testimonial-featured-role { font-size: 13.5px; color: var(--fg-muted); margin-top: 2px; }
.testimonial-featured-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--green-50);
  color: var(--green-700);
  padding: 3px 10px;
  border-radius: var(--r-full);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-top: 6px;
}
.testimonial-featured-tag svg { width: 12px; height: 12px; }

/* Grid of shorter testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 900px) { .testimonials-grid { grid-template-columns: 1fr; } }

.testimonial {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 32px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all .25s ease;
}
.testimonial:hover {
  transform: translateY(-4px);
  border-color: var(--green-400);
  box-shadow: var(--shadow-md);
}
.testimonial::before {
  content: "\201C";
  position: absolute;
  top: 12px; right: 20px;
  font-family: Georgia, serif;
  font-size: 80px;
  color: var(--green-100);
  line-height: 1;
  pointer-events: none;
}
.testimonial-stars {
  display: flex; gap: 3px;
  color: #F59E0B;
  margin-bottom: 16px;
  position: relative;
}
.testimonial-stars svg { width: 16px; height: 16px; }
.testimonial-quote {
  font-size: 16px;
  color: var(--ink-800);
  line-height: 1.65;
  flex: 1;
  position: relative;
  font-style: italic;
}
.testimonial-quote strong {
  font-style: normal;
  background: linear-gradient(120deg, transparent 0%, transparent 50%, var(--green-100) 50%, var(--green-100) 100%);
  padding: 0 3px;
  color: var(--ink-950);
}
.testimonial-author {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  display: flex; align-items: center; gap: 14px;
}
.testimonial-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-500), var(--green-700));
  color: var(--white);
  display: grid; place-items: center;
  font-weight: 800;
  font-size: 16px;
  flex-shrink: 0;
}
.testimonial-name {
  font-weight: 800;
  font-size: 15px;
  color: var(--ink-950);
  display: flex;
  align-items: center;
  gap: 6px;
}
.testimonial-name .verified {
  width: 16px; height: 16px;
  background: var(--brand);
  color: var(--white);
  border-radius: 50%;
  display: grid;
  place-items: center;
}
.testimonial-name .verified svg { width: 10px; height: 10px; }
.testimonial-role { font-size: 13px; color: var(--fg-muted); margin-top: 2px; }

/* Trust bar under testimonials */
.testimonial-trust {
  margin-top: 48px;
  padding: 32px;
  background: var(--white);
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
@media (max-width: 700px) { .testimonial-trust { grid-template-columns: repeat(2, 1fr); } }
.testimonial-trust-item .val {
  font-size: 36px;
  font-weight: 900;
  color: var(--brand);
  letter-spacing: -0.02em;
  line-height: 1;
}
.testimonial-trust-item .lbl {
  font-size: 13px;
  color: var(--fg-muted);
  margin-top: 8px;
  font-weight: 600;
}

/* ---------- FAQ ---------- */

.faq-wrap {
  max-width: 820px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-question {
  width: 100%;
  padding: 24px 0;
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px;
  text-align: left;
  font-size: 17px;
  font-weight: 700;
  color: var(--ink-900);
  transition: color .15s;
}
.faq-question:hover { color: var(--brand); }
.faq-icon {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--green-50);
  color: var(--brand);
  display: grid; place-items: center;
  flex-shrink: 0;
  transition: all .2s;
}
.faq-icon svg { width: 14px; height: 14px; transition: transform .2s; }
.faq-item.open .faq-icon {
  background: var(--brand);
  color: var(--white);
}
.faq-item.open .faq-icon svg { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
}
.faq-item.open .faq-answer { max-height: 400px; }
.faq-answer-inner {
  padding: 0 0 24px;
  font-size: 15.5px;
  color: var(--fg-muted);
  line-height: 1.65;
  padding-right: 52px;
}

/* ---------- Final CTA ---------- */

.cta-final {
  background: var(--ink-950);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.cta-final::before {
  content: "";
  position: absolute;
  top: -50%; left: -20%;
  width: 60%; height: 200%;
  background: radial-gradient(circle, rgba(34,197,94,.2) 0%, transparent 60%);
  z-index: 0;
}
.cta-final .container { position: relative; z-index: 1; }
.cta-final-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 900px) { .cta-final-grid { grid-template-columns: 1fr; } }
.cta-final h2 { color: var(--white); }
.cta-final h2 .highlight { color: var(--green-400); }
.cta-final p {
  margin-top: 20px;
  font-size: 18px;
  color: rgba(255,255,255,.7);
  max-width: 520px;
}
.cta-final-actions {
  margin-top: 32px;
  display: flex; flex-wrap: wrap; gap: 14px;
}
.cta-contact-card {
  background: rgba(255,255,255,.04);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-lg);
  padding: 32px;
}
.cta-contact-card h4 {
  color: var(--white);
  margin-bottom: 20px;
}
.contact-line {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.contact-line:last-child { border-bottom: none; }
.contact-line .icon {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--green-500);
  color: var(--white);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.contact-line .icon svg { width: 18px; height: 18px; }
.contact-line .label { font-size: 12px; color: rgba(255,255,255,.5); text-transform: uppercase; letter-spacing: 1px; }
.contact-line .value { font-weight: 700; color: var(--white); font-size: 15px; }

/* ---------- Footer ---------- */

.footer {
  background: #050505;
  color: rgba(255,255,255,.7);
  padding: 56px 0 28px;
  border-top: 1px solid rgba(255,255,255,.06);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
  align-items: start;
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px 24px; } }
@media (max-width: 500px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-brand svg { color: var(--white); height: 44px; margin-bottom: 20px; }
.footer-brand .brand-logo { height: 120px; width: auto; margin-bottom: 24px; display: block; }
.footer-brand p { font-size: 14px; line-height: 1.6; max-width: 320px; }
.footer-brand .socials {
  display: flex; gap: 12px;
  margin-top: 24px;
}
.footer-brand .socials a {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,.06);
  color: var(--white);
  display: grid; place-items: center;
  transition: all .2s;
}
.footer-brand .socials a:hover { background: var(--green-500); }
.footer-brand .socials svg { width: 18px; height: 18px; }

.footer h5 {
  color: var(--white);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin: 0 0 20px;
}
.footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.footer ul a { font-size: 14px; transition: color .15s; }
.footer ul a:hover { color: var(--green-400); }

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,.06);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-size: 13px;
  color: rgba(255,255,255,.5);
}

/* ---------- Sticky WhatsApp / Call FAB ---------- */

.fab {
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 40;
  display: flex; flex-direction: column; gap: 12px;
}
.fab a {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--green-500);
  color: var(--white);
  display: grid; place-items: center;
  box-shadow: var(--shadow-green);
  transition: transform .2s;
}
.fab a:hover { transform: scale(1.08); background: var(--green-600); }
.fab a svg { width: 26px; height: 26px; }

/* ==========================================================================
   BLOG — Índice y artículos
   ========================================================================== */

.blog-hero {
  background: var(--ink-950);
  color: var(--white);
  padding: clamp(80px, 10vw, 120px) 0 clamp(60px, 8vw, 80px);
  position: relative;
  overflow: hidden;
}
.blog-hero::before {
  content: "";
  position: absolute;
  top: -30%; right: -15%;
  width: 50%; height: 160%;
  background: linear-gradient(135deg, var(--green-500), var(--green-700));
  transform: skewX(-12deg);
  opacity: 0.85;
}
.blog-hero .container { position: relative; z-index: 1; }
.blog-hero h1 { color: var(--white); }
.blog-hero h1 .script { display: block; font-size: 0.65em; color: var(--green-400); }
.blog-hero p {
  margin-top: 20px;
  font-size: 19px;
  color: rgba(255,255,255,.75);
  max-width: 640px;
}

/* Blog cards grid */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 900px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .blog-grid { grid-template-columns: 1fr; } }

.blog-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: all .25s ease;
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  transform: translateY(-4px);
  border-color: var(--green-400);
  box-shadow: var(--shadow-md);
}
.blog-card-cover {
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, var(--green-500), var(--green-700));
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  color: rgba(255,255,255,.9);
}
.blog-card-cover::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(-45deg, rgba(255,255,255,0.08) 0 1px, transparent 1px 12px);
}
.blog-card-cover svg { width: 64px; height: 64px; opacity: .5; position: relative; z-index: 1; }
.blog-card-cover.dark {
  background: linear-gradient(135deg, var(--ink-950), #12241a);
}
.blog-card-cover.dark svg { color: var(--green-400); opacity: .7; }

.blog-card-body { padding: 24px 24px 28px; display: flex; flex-direction: column; flex: 1; }
.blog-card-meta {
  display: flex; align-items: center; gap: 12px;
  font-size: 12px; color: var(--fg-muted);
  margin-bottom: 12px;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  font-weight: 600;
}
.blog-card-meta .category {
  background: var(--green-50);
  color: var(--green-700);
  padding: 3px 10px;
  border-radius: var(--r-full);
  letter-spacing: 0.5px;
}
.blog-card h3 {
  font-size: 20px;
  line-height: 1.3;
  margin-bottom: 10px;
}
.blog-card h3 a { color: inherit; transition: color .15s; }
.blog-card h3 a:hover { color: var(--brand); }
.blog-card-excerpt {
  color: var(--fg-muted);
  font-size: 14.5px;
  line-height: 1.55;
  flex: 1;
}
.blog-card-footer {
  margin-top: 20px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 13px;
  color: var(--fg-muted);
}
.blog-card-footer .read-more {
  color: var(--brand);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.blog-card-footer .read-more svg { width: 14px; height: 14px; transition: transform .2s; }
.blog-card:hover .read-more svg { transform: translateX(4px); }

/* Featured / hero post */
.blog-featured {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 0;
  margin-bottom: 48px;
  transition: all .25s ease;
}
@media (max-width: 900px) { .blog-featured { grid-template-columns: 1fr; } }
.blog-featured:hover {
  border-color: var(--green-400);
  box-shadow: var(--shadow-md);
}
.blog-featured-cover {
  background: linear-gradient(135deg, var(--ink-950), #12241a);
  min-height: 320px;
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
}
.blog-featured-cover::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(34,197,94,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(34,197,94,.06) 1px, transparent 1px);
  background-size: 24px 24px;
}
.blog-featured-cover .icon-wrap {
  position: relative;
  z-index: 1;
  color: var(--green-400);
}
.blog-featured-cover .icon-wrap svg { width: 100px; height: 100px; opacity: .8; }
.blog-featured-body { padding: clamp(28px, 4vw, 48px); display: flex; flex-direction: column; justify-content: center; }
.blog-featured-body .featured-badge {
  display: inline-flex;
  background: var(--green-500);
  color: var(--white);
  padding: 5px 12px;
  border-radius: var(--r-full);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  align-items: center;
  gap: 6px;
  margin-bottom: 16px;
  width: fit-content;
}
.blog-featured-body h2 {
  font-size: clamp(24px, 3vw, 34px);
  margin-bottom: 16px;
  line-height: 1.15;
}
.blog-featured-body h2 a { color: inherit; }
.blog-featured-body h2 a:hover { color: var(--brand); }
.blog-featured-body .excerpt {
  color: var(--fg-muted);
  font-size: 16.5px;
  line-height: 1.6;
  margin-bottom: 24px;
}

/* Article view */
.article {
  padding: 72px 0 40px;
}
.article-header {
  max-width: 780px;
  margin: 0 auto 40px;
  text-align: center;
}
.article-header .breadcrumb {
  justify-content: center;
  color: var(--fg-muted);
  margin-bottom: 20px;
}
.article-header .breadcrumb a { color: var(--brand); }
.article-header .category {
  display: inline-flex;
  background: var(--green-50);
  color: var(--green-700);
  padding: 6px 14px;
  border-radius: var(--r-full);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.article-header h1 {
  font-size: clamp(32px, 4.5vw, 52px);
  margin-bottom: 24px;
  line-height: 1.1;
}
.article-header .meta {
  display: flex;
  justify-content: center;
  gap: 24px;
  align-items: center;
  color: var(--fg-muted);
  font-size: 14px;
  flex-wrap: wrap;
}
.article-header .meta .author {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.article-header .meta .avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-500), var(--green-700));
  color: var(--white);
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 13px;
}
.article-header .meta .author-name { font-weight: 700; color: var(--ink-900); }

.article-cover {
  max-width: 900px;
  margin: 0 auto 48px;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--ink-950), #12241a);
  border-radius: var(--r-xl);
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
}
.article-cover::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(34,197,94,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(34,197,94,.06) 1px, transparent 1px);
  background-size: 32px 32px;
}
.article-cover svg { width: 120px; height: 120px; color: var(--green-400); opacity: .7; position: relative; z-index: 1; }

.article-body {
  max-width: 720px;
  margin: 0 auto;
  font-size: 17px;
  line-height: 1.75;
  color: var(--ink-800);
}
.article-body > p { margin-bottom: 22px; }
.article-body h2 {
  font-size: 28px;
  margin: 44px 0 18px;
  color: var(--ink-950);
  scroll-margin-top: 120px;
}
.article-body h3 {
  font-size: 22px;
  margin: 36px 0 14px;
  color: var(--ink-950);
}
.article-body ul, .article-body ol {
  margin: 18px 0 22px;
  padding-left: 24px;
}
.article-body li { margin-bottom: 10px; }
.article-body strong { color: var(--ink-950); }
.article-body a { color: var(--brand); text-decoration: underline; text-underline-offset: 3px; }
.article-body a:hover { color: var(--brand-hover); }
.article-body blockquote {
  border-left: 4px solid var(--brand);
  background: var(--green-50);
  padding: 20px 24px;
  margin: 28px 0;
  border-radius: 0 var(--r-md) var(--r-md) 0;
  font-style: italic;
  color: var(--ink-800);
}
.article-body .callout {
  background: linear-gradient(135deg, var(--ink-950), #12241a);
  color: var(--white);
  padding: 28px 32px;
  border-radius: var(--r-lg);
  margin: 32px 0;
  border-left: 4px solid var(--green-400);
}
.article-body .callout strong { color: var(--green-400); }
.article-body .callout p:last-child { margin-bottom: 0; }
.article-body .step {
  display: flex;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
.article-body .step:last-of-type { border-bottom: none; }
.article-body .step-num {
  flex-shrink: 0;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--brand);
  color: var(--white);
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: 18px;
}
.article-body .step-body h3 { margin: 0 0 8px; font-size: 19px; }
.article-body .step-body p { margin-bottom: 0; }

.article-tags {
  max-width: 720px;
  margin: 48px auto 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 24px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.article-tags .tag {
  padding: 6px 14px;
  background: var(--ink-100);
  color: var(--ink-700);
  border-radius: var(--r-full);
  font-size: 13px;
  font-weight: 600;
}

/* Comment / Q&A system */
.qa-section {
  max-width: 720px;
  margin: 60px auto 0;
}
.qa-section h2 {
  font-size: 28px;
  margin-bottom: 8px;
}
.qa-section > p {
  color: var(--fg-muted);
  margin-bottom: 32px;
}
.qa-form {
  background: var(--bg-soft);
  border-radius: var(--r-lg);
  padding: 28px;
  margin-bottom: 40px;
  border: 1px solid var(--border);
}
.qa-form .field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}
@media (max-width: 500px) { .qa-form .field-row { grid-template-columns: 1fr; } }
.qa-form input, .qa-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  font-family: inherit;
  font-size: 14.5px;
  background: var(--white);
  color: var(--fg);
  transition: border-color .15s;
}
.qa-form input:focus, .qa-form textarea:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(34,197,94,.12);
}
.qa-form textarea {
  min-height: 100px;
  resize: vertical;
  margin-bottom: 14px;
}
.qa-form-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.qa-form-actions .note {
  font-size: 12.5px;
  color: var(--fg-muted);
}

.qa-list { margin-top: 24px; }
.qa-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 20px 22px;
  margin-bottom: 14px;
}
.qa-item-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}
.qa-item .qa-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--ink-800), var(--ink-950));
  color: var(--white);
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 13px;
  flex-shrink: 0;
}
.qa-item .qa-name { font-weight: 700; color: var(--ink-950); font-size: 14.5px; }
.qa-item .qa-date { color: var(--fg-muted); font-size: 12.5px; }
.qa-item .qa-text {
  color: var(--ink-800);
  font-size: 15px;
  line-height: 1.6;
}
.qa-reply {
  margin-top: 14px;
  margin-left: 20px;
  padding: 14px 18px;
  background: var(--green-50);
  border-left: 3px solid var(--brand);
  border-radius: 0 var(--r-md) var(--r-md) 0;
}
.qa-reply .qa-item-header { margin-bottom: 8px; }
.qa-reply .qa-avatar { background: linear-gradient(135deg, var(--green-500), var(--green-700)); }
.qa-reply .qa-name { color: var(--green-700); }
.qa-reply .qa-badge {
  display: inline-block;
  background: var(--brand);
  color: var(--white);
  font-size: 10px;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: var(--r-full);
  letter-spacing: 1px;
  margin-left: 6px;
  text-transform: uppercase;
}
.qa-empty {
  text-align: center;
  padding: 40px 20px;
  color: var(--fg-muted);
  font-size: 14.5px;
}

/* ==========================================================================
   SUBSCRIBE MODAL
   ========================================================================== */
.sub-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  transition: opacity .3s ease;
}
.sub-modal-overlay.show {
  display: flex;
  opacity: 1;
}
.sub-modal {
  background: var(--white);
  border-radius: var(--r-xl);
  max-width: 480px;
  width: 100%;
  overflow: hidden;
  position: relative;
  transform: translateY(20px);
  transition: transform .3s ease;
  box-shadow: 0 30px 80px -20px rgba(0,0,0,.4);
}
.sub-modal-overlay.show .sub-modal { transform: translateY(0); }
.sub-modal-close {
  position: absolute;
  top: 16px; right: 16px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.15);
  color: var(--white);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background .15s;
  z-index: 2;
}
.sub-modal-close:hover { background: rgba(255,255,255,.3); }
.sub-modal-close svg { width: 18px; height: 18px; }
.sub-modal-header {
  background: linear-gradient(135deg, var(--ink-950), #12241a);
  color: var(--white);
  padding: 40px 32px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.sub-modal-header::before {
  content: "";
  position: absolute;
  top: -30%; right: -20%;
  width: 60%; height: 160%;
  background: linear-gradient(135deg, var(--green-500), var(--green-700));
  transform: skewX(-12deg);
  opacity: 0.4;
}
.sub-modal-header > * { position: relative; z-index: 1; }
.sub-modal-icon {
  width: 68px; height: 68px;
  border-radius: 50%;
  background: var(--green-500);
  color: var(--white);
  display: grid;
  place-items: center;
  margin: 0 auto 20px;
  box-shadow: 0 8px 24px rgba(34,197,94,.35);
}
.sub-modal-icon svg { width: 32px; height: 32px; }
.sub-modal-header h3 {
  color: var(--white);
  font-size: 26px;
  margin-bottom: 10px;
  line-height: 1.2;
}
.sub-modal-header .script {
  font-size: 24px;
  color: var(--green-400);
  display: block;
}
.sub-modal-header p {
  color: rgba(255,255,255,.75);
  font-size: 14.5px;
  line-height: 1.55;
}
.sub-modal-body {
  padding: 32px 32px 36px;
  margin-top: -30px;
  position: relative;
  z-index: 2;
}
.sub-modal-benefits {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: grid;
  gap: 10px;
}
.sub-modal-benefits li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--ink-800);
}
.sub-modal-benefits svg {
  width: 18px; height: 18px;
  color: var(--brand);
  flex-shrink: 0;
}
.sub-modal-form input[type="email"] {
  width: 100%;
  padding: 15px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  font-size: 15px;
  font-family: inherit;
  color: var(--fg);
  background: var(--white);
  margin-bottom: 12px;
  transition: border-color .15s;
}
.sub-modal-form input[type="email"]:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(34,197,94,.12);
}
.sub-modal-form .btn {
  width: 100%;
  padding: 15px;
  font-size: 15px;
}
.sub-modal-footer {
  margin-top: 14px;
  font-size: 11.5px;
  color: var(--fg-muted);
  text-align: center;
  line-height: 1.5;
}
.sub-modal-success {
  text-align: center;
  padding: 20px 0;
  display: none;
}
.sub-modal-success.show { display: block; }
.sub-modal-success .check-badge {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--green-500);
  color: var(--white);
  display: grid;
  place-items: center;
  margin: 0 auto 16px;
}
.sub-modal-success .check-badge svg { width: 30px; height: 30px; }
.sub-modal-success h4 { font-size: 20px; margin-bottom: 8px; color: var(--ink-950); }
.sub-modal-success p { color: var(--fg-muted); font-size: 14px; }

/* ==========================================================================
   FÁCILBOOKS HERO CARD — variante para el hero de index.html
   Sigue la misma estructura que .senior-promo pero con colores FácilBooks
   ========================================================================== */

.fb-hero-card {
  background: linear-gradient(180deg, #FFFFFF 0%, #F9FBF6 100%);
  border: none;
  padding: 0;
  overflow: hidden;
  position: relative;
  border-radius: var(--r-xl);
  box-shadow: 0 30px 60px -15px rgba(0,0,0,0.35), 0 0 0 1px rgba(22, 163, 74, 0.15);
  animation: fbHeroGlow 3.2s ease-in-out infinite;
}
@keyframes fbHeroGlow {
  0%, 100% { box-shadow: 0 30px 60px -15px rgba(0,0,0,0.35), 0 0 0 1px rgba(22, 163, 74, 0.15); }
  50%      { box-shadow: 0 30px 60px -15px rgba(0,0,0,0.35), 0 0 30px 4px rgba(132, 204, 22, 0.4), 0 0 0 2px rgba(22, 163, 74, 0.5); }
}

/* Corner ribbon - green gradient */
.fb-hero-card .ribbon {
  position: absolute;
  top: 16px; left: -6px;
  background: linear-gradient(90deg, #16A34A, #84CC16);
  color: #fff;
  padding: 8px 18px 8px 14px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  z-index: 5;
  clip-path: polygon(0 0, 100% 0, calc(100% - 10px) 50%, 100% 100%, 0 100%);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 12px rgba(22, 163, 74, 0.5);
}
.fb-hero-card .ribbon svg { width: 12px; height: 12px; }
.fb-hero-card .ribbon::after {
  content: "";
  position: absolute;
  bottom: -6px; left: 0;
  border-top: 6px solid #14532D;
  border-left: 6px solid transparent;
}

/* Product image - full flyer */
.fb-hero-card .photo {
  position: relative;
  aspect-ratio: 1/1;
  overflow: hidden;
  background: #0a0a0a;
}
.fb-hero-card .photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.fb-hero-card .inner {
  padding: 20px 24px 24px;
}

/* Header block */
.fb-hero-card .header {
  text-align: center;
  padding-bottom: 16px;
  border-bottom: 1px dashed rgba(22, 163, 74, 0.25);
  margin-bottom: 16px;
}
.fb-hero-card .subtitle {
  color: #15803D;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.fb-hero-card .title {
  color: #0a0a0a;
  font-size: 22px;
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.fb-hero-card .title .brand {
  background: linear-gradient(135deg, #16A34A, #84CC16);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Price row */
.fb-hero-card .price-row {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 6px;
  margin-top: 8px;
}
.fb-hero-card .price-row .from { font-size: 12px; color: #525252; text-transform: uppercase; letter-spacing: 1.5px; font-weight: 700; align-self: center; margin-right: 4px; }
.fb-hero-card .price-row .cur { font-size: 22px; font-weight: 800; color: #0a0a0a; }
.fb-hero-card .price-row .amt {
  font-size: 60px;
  font-weight: 900;
  color: #16A34A;
  line-height: 1;
  letter-spacing: -0.04em;
  background: linear-gradient(135deg, #16A34A, #84CC16);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.fb-hero-card .price-row .old { font-size: 14px; text-decoration: line-through; color: #737373; font-weight: 700; align-self: center; margin-left: 6px; }

.fb-hero-card .audience {
  color: #525252;
  font-size: 13px;
  margin-top: 6px;
  font-weight: 600;
}

/* Coupon block - dark/gold like the flyer */
.fb-hero-card .coupon {
  background: linear-gradient(135deg, #0a0a0a, #1a1a1a);
  color: #fff;
  border-radius: 10px;
  padding: 14px;
  margin: 16px 0;
  text-align: center;
  border: 2px dashed #FBBF24;
}
.fb-hero-card .coupon .use {
  font-size: 10px;
  font-weight: 800;
  color: #FBBF24;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.fb-hero-card .coupon .code {
  font-family: 'Courier New', monospace;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 3px;
  color: #fff;
  margin-bottom: 4px;
}
.fb-hero-card .coupon .save {
  font-size: 12px;
  color: #FBBF24;
  font-weight: 700;
}

/* Features list */
.fb-hero-card .features {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
  display: grid;
  gap: 8px;
}
.fb-hero-card .features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  color: #262626;
  line-height: 1.4;
}
.fb-hero-card .features li svg {
  width: 16px; height: 16px;
  color: #16A34A;
  flex-shrink: 0;
  margin-top: 2px;
}

/* CTA button */
.fb-hero-card .cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 15px;
  background: linear-gradient(90deg, #16A34A, #15803D);
  color: #fff;
  text-align: center;
  border-radius: 999px;
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.3px;
  transition: all .2s;
  box-shadow: 0 8px 20px -6px rgba(22, 163, 74, 0.55);
}
.fb-hero-card .cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px -6px rgba(22, 163, 74, 0.65);
  filter: brightness(1.05);
}
.fb-hero-card .cta svg { width: 16px; height: 16px; }

.fb-hero-card .note {
  text-align: center;
  font-size: 11.5px;
  color: #525252;
  margin-top: 10px;
  font-style: italic;
}

/* ==========================================================================
   FÁCILBOOKS PROMO BANNER — Homepage (sección aparte)
   ========================================================================== */

.fb-promo-section {
  padding: 80px 0;
  background:
    radial-gradient(ellipse at top left, rgba(132, 204, 22, 0.08) 0%, transparent 55%),
    radial-gradient(ellipse at bottom right, rgba(251, 191, 36, 0.06) 0%, transparent 55%),
    linear-gradient(180deg, #ffffff 0%, #f9fbf6 100%);
  position: relative;
  overflow: hidden;
}
.fb-promo-section::before {
  content: "";
  position: absolute;
  top: -60px; right: -60px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(251, 191, 36, 0.15) 0%, transparent 70%);
  pointer-events: none;
  filter: blur(30px);
}

.fb-promo-grid {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 60px;
  align-items: center;
  position: relative;
}
@media (max-width: 900px) {
  .fb-promo-grid { grid-template-columns: 1fr; gap: 40px; }
}

.fb-promo-content .fb-promo-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(90deg, #FBBF24, #FCD34D);
  color: #78350F;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
  box-shadow: 0 6px 16px -6px rgba(251, 191, 36, 0.4);
}
.fb-promo-content .fb-promo-eyebrow svg { width: 14px; height: 14px; }

.fb-promo-content h2 {
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 20px;
  color: var(--ink-950);
  text-wrap: balance;
}
.fb-promo-content h2 .brand {
  background: linear-gradient(135deg, #16A34A 0%, #84CC16 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.fb-promo-content .fb-promo-lead {
  font-size: 17px;
  color: var(--fg-muted);
  line-height: 1.6;
  margin: 0 0 24px;
  max-width: 520px;
}
.fb-promo-content .fb-promo-lead strong { color: var(--ink-950); }

/* Price row */
.fb-promo-price-row {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 24px 0 28px;
  padding: 20px 24px;
  background: linear-gradient(90deg, rgba(22, 163, 74, 0.05), rgba(132, 204, 22, 0.08));
  border: 1px solid rgba(22, 163, 74, 0.15);
  border-radius: 16px;
}
.fb-promo-price-row .old {
  font-size: 22px;
  color: var(--ink-500);
  text-decoration: line-through;
  font-weight: 700;
}
.fb-promo-price-row .arrow {
  color: var(--ink-500);
  font-size: 20px;
}
.fb-promo-price-row .new {
  font-size: 48px;
  font-weight: 900;
  color: #16A34A;
  letter-spacing: -0.03em;
  line-height: 1;
  background: linear-gradient(135deg, #16A34A, #84CC16);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.fb-promo-price-row .with-code {
  font-size: 12px;
  color: var(--ink-700);
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 4px;
}

/* Coupon badge */
.fb-promo-coupon {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  background: var(--ink-950);
  color: var(--white);
  border-radius: 12px;
  margin-bottom: 24px;
  border: 2px dashed #FBBF24;
}
.fb-promo-coupon .label {
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #FBBF24;
  font-weight: 800;
}
.fb-promo-coupon .code {
  font-family: 'Courier New', monospace;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 3px;
  color: var(--white);
}
.fb-promo-coupon .save {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  font-weight: 600;
}

.fb-promo-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.fb-promo-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px 32px;
  background: linear-gradient(135deg, #16A34A 0%, #15803D 100%);
  color: var(--white);
  border-radius: 999px;
  font-weight: 800;
  font-size: 16px;
  transition: all 0.2s;
  box-shadow: 0 12px 24px -8px rgba(22, 163, 74, 0.5);
}
.fb-promo-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px -8px rgba(22, 163, 74, 0.65);
}
.fb-promo-cta svg { width: 18px; height: 18px; }

.fb-promo-cta-alt {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 24px;
  background: transparent;
  color: var(--ink-950);
  border: 2px solid var(--ink-950);
  border-radius: 999px;
  font-weight: 800;
  font-size: 15px;
  transition: all 0.2s;
}
.fb-promo-cta-alt:hover {
  background: var(--ink-950);
  color: var(--white);
}

.fb-promo-features {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 8px;
}
.fb-promo-feature {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--ink-700);
}
.fb-promo-feature svg {
  width: 16px;
  height: 16px;
  color: #16A34A;
}

/* Promo image */
.fb-promo-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow:
    0 30px 60px -15px rgba(0,0,0,0.25),
    0 60px 120px -40px rgba(22, 163, 74, 0.15);
  transition: transform 0.4s ease;
  cursor: pointer;
}
.fb-promo-image:hover {
  transform: translateY(-6px) scale(1.02);
}
.fb-promo-image img {
  display: block;
  width: 100%;
  height: auto;
}
.fb-promo-image::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  border: 1px solid rgba(22, 163, 74, 0.1);
  pointer-events: none;
}
.fb-promo-image .zoom-hint {
  position: absolute;
  bottom: 20px; right: 20px;
  background: rgba(0,0,0,0.7);
  color: var(--white);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.3px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  opacity: 0;
  transition: opacity 0.3s;
  backdrop-filter: blur(8px);
}
.fb-promo-image:hover .zoom-hint { opacity: 1; }
.fb-promo-image .zoom-hint svg { width: 14px; height: 14px; }

/* ==========================================================================
   PRICING TIERS (3 planes mensuales)
   ========================================================================== */

.tiers-wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}
@media (max-width: 900px) { .tiers-wrap { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; } }

.tier {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 36px 28px 32px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: all .25s ease;
}
.tier:hover {
  transform: translateY(-4px);
  border-color: var(--green-400);
  box-shadow: var(--shadow-md);
}
.tier.featured {
  background: linear-gradient(180deg, var(--ink-950) 0%, #0f1f14 100%);
  color: var(--white);
  border-color: var(--brand);
  transform: scale(1.04);
  box-shadow: 0 20px 40px -12px rgba(34,197,94,0.35);
}
.tier.featured:hover {
  transform: scale(1.04) translateY(-4px);
}
@media (max-width: 900px) { .tier.featured { transform: none; } .tier.featured:hover { transform: translateY(-4px); } }

.tier-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--brand);
  color: var(--white);
  padding: 6px 16px;
  border-radius: var(--r-full);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  box-shadow: 0 4px 12px rgba(34,197,94,0.35);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}
.tier-badge svg { width: 12px; height: 12px; }

.tier-name {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 8px;
}
.tier.featured .tier-name { color: var(--green-400); }

.tier-tagline {
  font-size: 15px;
  color: var(--fg-muted);
  margin-bottom: 20px;
  line-height: 1.4;
}
.tier.featured .tier-tagline { color: rgba(255,255,255,.65); }

.tier-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 4px;
}
.tier-price .cur {
  font-size: 24px;
  font-weight: 800;
  color: var(--ink-950);
}
.tier.featured .tier-price .cur { color: var(--white); }
.tier-price .amt {
  font-size: 56px;
  font-weight: 900;
  color: var(--ink-950);
  line-height: 1;
  letter-spacing: -0.03em;
}
.tier.featured .tier-price .amt { color: var(--white); }
.tier-price .per {
  font-size: 16px;
  color: var(--fg-muted);
  font-weight: 600;
  margin-left: 4px;
}
.tier.featured .tier-price .per { color: rgba(255,255,255,.6); }

.tier-note {
  font-size: 12px;
  color: var(--fg-muted);
  padding-bottom: 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--border);
}
.tier.featured .tier-note {
  color: rgba(255,255,255,.55);
  border-color: rgba(255,255,255,.1);
}

.tier-features {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: grid;
  gap: 12px;
  flex: 1;
}
.tier-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14.5px;
  color: var(--ink-800);
  line-height: 1.5;
}
.tier.featured .tier-features li { color: rgba(255,255,255,.9); }
.tier-features li svg {
  width: 18px; height: 18px;
  color: var(--brand);
  flex-shrink: 0;
  margin-top: 2px;
}
.tier.featured .tier-features li svg { color: var(--green-400); }
.tier-features li strong { color: var(--ink-950); font-weight: 700; }
.tier.featured .tier-features li strong { color: var(--white); }
.tier-features li.section-head-li {
  padding-top: 12px;
  margin-top: 4px;
  border-top: 1px dashed var(--border);
  font-size: 11.5px;
  font-weight: 800;
  color: var(--brand);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.tier.featured .tier-features li.section-head-li {
  border-color: rgba(255,255,255,.1);
  color: var(--green-400);
}
.tier-features li.section-head-li svg { display: none; }

.tier-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 14px 20px;
  border-radius: var(--r-full);
  font-weight: 800;
  font-size: 14.5px;
  transition: all .2s;
  text-align: center;
}
.tier-cta.primary {
  background: var(--brand);
  color: var(--white);
  box-shadow: 0 8px 20px -6px rgba(34,197,94,0.5);
}
.tier-cta.primary:hover {
  background: var(--brand-hover);
  transform: translateY(-2px);
}
.tier-cta.dark {
  background: var(--white);
  color: var(--ink-950);
}
.tier-cta.dark:hover {
  background: var(--green-400);
  transform: translateY(-2px);
}
.tier-cta.outline {
  background: transparent;
  color: var(--ink-950);
  border: 2px solid var(--ink-950);
}
.tier-cta.outline:hover {
  background: var(--ink-950);
  color: var(--white);
}
.tier-cta svg { width: 16px; height: 16px; }

.tier-secondary {
  text-align: center;
  margin-top: 12px;
  font-size: 12.5px;
  color: var(--fg-muted);
}
.tier.featured .tier-secondary { color: rgba(255,255,255,.55); }
.tier-secondary a {
  color: var(--brand);
  font-weight: 700;
}
.tier.featured .tier-secondary a { color: var(--green-400); }

/* ==========================================================================
   SERVICES CATALOG (grid of individual services with prices)
   ========================================================================== */

.svc-category {
  margin-bottom: 56px;
}
.svc-category-title {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--border);
}
.svc-category-title .num {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--green-50);
  color: var(--brand);
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: 14px;
  letter-spacing: -0.02em;
  flex-shrink: 0;
}
.svc-category-title h3 {
  font-size: 24px;
  margin: 0;
  color: var(--ink-950);
}
.svc-category-subtitle {
  color: var(--fg-muted);
  font-size: 15px;
  margin-bottom: 20px;
  line-height: 1.6;
}

.svc-catalog {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
@media (max-width: 700px) { .svc-catalog { grid-template-columns: 1fr; } }

.svc-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 18px 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  transition: all .15s ease;
}
.svc-item:hover {
  border-color: var(--green-400);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}
.svc-item-info h4 {
  font-size: 15px;
  color: var(--ink-950);
  margin: 0 0 4px;
  line-height: 1.3;
  font-weight: 700;
}
.svc-item-info .note {
  font-size: 12.5px;
  color: var(--fg-muted);
  line-height: 1.4;
}
.svc-item-price {
  text-align: right;
  min-width: 100px;
}
.svc-item-price .price {
  font-size: 20px;
  font-weight: 900;
  color: var(--brand);
  letter-spacing: -0.02em;
  line-height: 1;
  white-space: nowrap;
}
.svc-item-price .period {
  font-size: 11px;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 3px;
  font-weight: 600;
}
.svc-item-price .pay-btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 6px 10px;
  background: var(--brand);
  color: var(--white);
  border-radius: var(--r-full);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.5px;
  margin-top: 6px;
  transition: all .15s;
  white-space: nowrap;
}
.svc-item-price .pay-btn:hover {
  background: var(--brand-hover);
  transform: scale(1.05);
}
.svc-item-price .pay-btn svg { width: 10px; height: 10px; }
.svc-item.has-stripe { border-color: var(--green-200); background: linear-gradient(180deg, #fff 0%, var(--green-50) 100%); }
.svc-item.has-stripe:hover { border-color: var(--brand); }
.svc-item.quote .svc-item-price .price {
  font-size: 15px;
  color: var(--ink-700);
}

.pricing-cta {
  margin-top: 48px;
  padding: 32px 36px;
  background: linear-gradient(135deg, var(--ink-950), #12241a);
  border-radius: var(--r-lg);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.pricing-cta h3 { color: var(--white); font-size: 22px; margin: 0 0 6px; }
.pricing-cta p { color: rgba(255,255,255,.7); font-size: 15px; margin: 0; }
.pricing-cta .actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ==========================================================================
   CALENDARIO CONTRIBUTIVO
   ========================================================================== */

.cal-hero {
  background: var(--ink-950);
  color: var(--white);
  padding: clamp(80px, 10vw, 120px) 0 clamp(60px, 8vw, 90px);
  position: relative;
  overflow: hidden;
}
.cal-hero::before {
  content: "";
  position: absolute;
  top: -30%; right: -15%;
  width: 50%; height: 160%;
  background: linear-gradient(135deg, var(--green-500), var(--green-700));
  transform: skewX(-12deg);
  opacity: 0.85;
}
.cal-hero .container { position: relative; z-index: 1; }
.cal-hero h1 { color: var(--white); }
.cal-hero h1 .script { display: block; font-size: 0.6em; color: var(--green-400); }
.cal-hero .lead {
  margin-top: 20px;
  font-size: 19px;
  color: rgba(255,255,255,.75);
  max-width: 660px;
  line-height: 1.55;
}
.cal-hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 44px;
  max-width: 720px;
}
@media (max-width: 700px) { .cal-hero-stats { grid-template-columns: repeat(2, 1fr); } }
.cal-hero-stat {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  padding: 20px;
  border-radius: var(--r-md);
  text-align: center;
}
.cal-hero-stat .val { font-size: 32px; font-weight: 900; color: var(--green-400); line-height: 1; }
.cal-hero-stat .lbl { font-size: 12px; color: rgba(255,255,255,.6); margin-top: 8px; text-transform: uppercase; letter-spacing: 1px; font-weight: 600; }

/* Legend */
.cal-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
  padding: 16px 20px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
}
.cal-legend-title {
  font-size: 12px;
  font-weight: 800;
  color: var(--ink-700);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-right: 8px;
  align-self: center;
}
.cal-legend-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--ink-700);
  font-weight: 600;
}
.cal-legend-dot {
  width: 12px; height: 12px;
  border-radius: 50%;
  flex-shrink: 0;
}

/* Category filter */
.cal-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}
.cal-filter button {
  padding: 8px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--r-full);
  background: var(--white);
  color: var(--ink-700);
  font-size: 13.5px;
  font-weight: 700;
  cursor: pointer;
  transition: all .15s;
  font-family: inherit;
}
.cal-filter button:hover { border-color: var(--brand); color: var(--brand); }
.cal-filter button.active {
  background: var(--brand);
  color: var(--white);
  border-color: var(--brand);
}

/* Timeline months */
.cal-timeline {
  position: relative;
}
.cal-month {
  margin-bottom: 40px;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--white);
  scroll-margin-top: 120px;
}
.cal-month-header {
  background: linear-gradient(135deg, var(--ink-950), #12241a);
  color: var(--white);
  padding: 20px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.cal-month-header .month-name {
  font-size: 26px;
  font-weight: 900;
  letter-spacing: -0.02em;
}
.cal-month-header .month-name .year {
  color: var(--green-400);
  font-weight: 700;
  margin-left: 8px;
}
.cal-month-header .month-count {
  background: rgba(34,197,94,0.15);
  color: var(--green-400);
  padding: 4px 12px;
  border-radius: var(--r-full);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  border: 1px solid rgba(74,222,128,0.3);
}
.cal-month-body { padding: 8px 0; }

/* Deadline row */
.cal-deadline {
  display: grid;
  grid-template-columns: 100px 1fr auto;
  gap: 20px;
  padding: 20px 28px;
  border-bottom: 1px solid var(--border);
  align-items: center;
  transition: background .15s;
}
@media (max-width: 700px) { .cal-deadline { grid-template-columns: 80px 1fr; } .cal-deadline .cal-action { grid-column: 1 / -1; } }
.cal-deadline:last-child { border-bottom: none; }
.cal-deadline:hover { background: var(--bg-soft); }
.cal-deadline.past { opacity: 0.5; }
.cal-deadline.past .cal-date-day { text-decoration: line-through; }
.cal-deadline.urgent { background: linear-gradient(90deg, #FEF3C7 0%, transparent 100%); }
.cal-deadline.urgent:hover { background: linear-gradient(90deg, #FDE68A 0%, transparent 100%); }

.cal-date {
  text-align: center;
  padding: 10px 12px;
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--r-md);
}
.cal-date .cal-date-day {
  font-size: 28px;
  font-weight: 900;
  color: var(--ink-950);
  line-height: 1;
  letter-spacing: -0.02em;
}
.cal-date .cal-date-month {
  font-size: 11px;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 700;
  margin-top: 4px;
}
.cal-deadline.federal .cal-date { border-color: #3B82F6; }
.cal-deadline.federal .cal-date-month { color: #3B82F6; }
.cal-deadline.estatal .cal-date { border-color: var(--brand); }
.cal-deadline.estatal .cal-date-month { color: var(--brand); }
.cal-deadline.ivu .cal-date { border-color: #A855F7; }
.cal-deadline.ivu .cal-date-month { color: #A855F7; }
.cal-deadline.patronal .cal-date { border-color: #F59E0B; }
.cal-deadline.patronal .cal-date-month { color: #F59E0B; }
.cal-deadline.municipal .cal-date { border-color: #EF4444; }
.cal-deadline.municipal .cal-date-month { color: #EF4444; }
.cal-deadline.corp .cal-date { border-color: #EC4899; }
.cal-deadline.corp .cal-date-month { color: #EC4899; }

.cal-info { flex: 1; }
.cal-info .cal-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 3px 10px;
  border-radius: var(--r-full);
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.cal-deadline.federal .cal-tag { background: #DBEAFE; color: #1E40AF; }
.cal-deadline.estatal .cal-tag { background: var(--green-50); color: var(--green-700); }
.cal-deadline.ivu .cal-tag { background: #F3E8FF; color: #6B21A8; }
.cal-deadline.patronal .cal-tag { background: #FEF3C7; color: #92400E; }
.cal-deadline.municipal .cal-tag { background: #FEE2E2; color: #991B1B; }
.cal-deadline.corp .cal-tag { background: #FCE7F3; color: #9F1239; }

.cal-info h4 {
  font-size: 17px;
  color: var(--ink-950);
  margin: 0 0 4px;
  line-height: 1.3;
}
.cal-info p {
  font-size: 14px;
  color: var(--fg-muted);
  margin: 0;
  line-height: 1.5;
}
.cal-info .cal-badge-recurring {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  color: var(--ink-500);
  font-weight: 600;
  margin-left: 8px;
}
.cal-info .cal-badge-recurring svg { width: 12px; height: 12px; }

.cal-action .btn {
  padding: 10px 18px;
  font-size: 13.5px;
}

/* Sticky mini nav for months */
.cal-nav {
  position: sticky;
  top: 96px;
  z-index: 30;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
  margin-bottom: 32px;
}
.cal-nav-scroll {
  display: flex;
  gap: 6px;
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: thin;
}
.cal-nav-scroll a {
  padding: 6px 12px;
  border-radius: var(--r-full);
  font-size: 12.5px;
  font-weight: 700;
  color: var(--ink-700);
  white-space: nowrap;
  transition: all .15s;
  border: 1px solid var(--border);
  flex-shrink: 0;
}
.cal-nav-scroll a:hover { background: var(--green-50); color: var(--brand); border-color: var(--green-400); }
.cal-nav-scroll a.current { background: var(--brand); color: var(--white); border-color: var(--brand); }

/* ---------- Utilities ---------- */

.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
