/* =========================================================
   CONTIPOS DIGITAL · Landing
   Paleta: Negro · Blanco · Rojo
   ========================================================= */

:root {
  --black: #0a0a0a;
  --black-2: #141414;
  --black-3: #1d1d1d;
  --white: #ffffff;
  --off-white: #f6f6f7;
  --grey-1: #e8e8ea;
  --grey-2: #b5b5b9;
  --grey-3: #6a6a72;
  --red: #e10600;
  --red-2: #ff1f1a;
  --red-soft: rgba(225, 6, 0, 0.12);

  --radius: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 4px 14px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 14px 40px rgba(0, 0, 0, 0.14);
  --shadow-lg: 0 24px 60px rgba(0, 0, 0, 0.22);

  --container: 1200px;
  --gutter: clamp(16px, 4vw, 32px);

  --t-fast: 180ms;
  --t-med: 320ms;
  --ease: cubic-bezier(.2,.7,.2,1);

  --font-sans: "Montserrat", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-display: "Poppins", "Montserrat", sans-serif;
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--black);
  background: var(--white);
  line-height: 1.55;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
ul { list-style: none; padding: 0; margin: 0; }
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.1; margin: 0; letter-spacing: -0.02em; }
p { margin: 0 0 1em; }

:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 3px;
  border-radius: 4px;
}

::selection { background: var(--red); color: var(--white); }

/* ---------- Skip link accesibilidad ---------- */
.skip-link {
  position: fixed; top: -100px; left: 16px;
  background: var(--black); color: var(--white);
  padding: 12px 18px; border-radius: 8px; z-index: 1000;
  transition: top var(--t-fast);
}
.skip-link:focus { top: 16px; }

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ---------- Reusable ---------- */
.text-red { color: var(--red); }
.text-stroke {
  -webkit-text-stroke: 2px var(--black);
  color: transparent;
}
.underline-red {
  background-image: linear-gradient(120deg, var(--red), var(--red));
  background-repeat: no-repeat;
  background-position: 0 100%;
  background-size: 100% 12px;
  padding-bottom: 2px;
}

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  color: var(--off-white);
  padding: 8px 14px; border-radius: 999px;
  font-size: 13px; font-weight: 500;
  letter-spacing: 0.02em;
  backdrop-filter: blur(6px);
}
.dot-pulse {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 0 rgba(225,6,0,0.7);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(225,6,0,0.7); }
  70% { box-shadow: 0 0 0 12px rgba(225,6,0,0); }
  100% { box-shadow: 0 0 0 0 rgba(225,6,0,0); }
}

.section-label {
  display: inline-block;
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--red);
  margin-bottom: 16px;
}
.section-label.light { color: var(--red-2); }

.section-title {
  font-size: clamp(1.9rem, 1rem + 2.6vw, 3rem);
  margin-bottom: 16px;
}
.section-title.light { color: var(--white); }

.section-lead {
  color: var(--grey-3);
  font-size: 1.05rem;
  max-width: 640px;
}
.section-head { margin-bottom: 56px; max-width: 760px; }
.section-head.center { text-align: center; margin-inline: auto; }

/* ---------- Botones ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.98rem;
  transition: transform var(--t-fast) var(--ease),
              background var(--t-fast),
              color var(--t-fast),
              box-shadow var(--t-med);
  white-space: nowrap;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(0,0,0,0.18);
}
.btn-primary:hover { background: var(--red-2); transform: translateY(-2px); }
.btn-primary:active { transform: translateY(0); }
.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.25);
}
.btn-ghost:hover { background: rgba(255,255,255,0.08); }
.btn-sm { padding: 10px 18px; font-size: 0.88rem; }
.btn-block { width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: 1px solid transparent;
  transition: background var(--t-med),
              border-color var(--t-med),
              backdrop-filter var(--t-med);
}
.site-header.scrolled {
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: rgba(255,255,255,0.06);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
  height: 72px;
}
.logo {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--white);
}
.logo img { height: 82px; width: auto; }
.logo-text {
  font-family: var(--font-display);
  font-weight: 700; letter-spacing: -0.02em;
  font-size: 0.95rem;
}
.logo-text .dot { color: var(--red); margin: 0 4px; }

.nav-primary ul {
  display: flex; gap: 32px;
}
.nav-primary a {
  color: var(--off-white);
  font-size: 0.95rem; font-weight: 500;
  position: relative; padding: 6px 0;
  transition: color var(--t-fast);
}
.nav-primary a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0;
  height: 2px; background: var(--red);
  transform: scaleX(0); transform-origin: right;
  transition: transform var(--t-med) var(--ease);
}
.nav-primary a:hover::after { transform: scaleX(1); transform-origin: left; }

.nav-toggle {
  display: none;
  background: transparent; border: 0; padding: 8px;
  flex-direction: column; gap: 5px;
}
.nav-toggle span {
  width: 24px; height: 2px; background: var(--white);
  display: block; transition: transform var(--t-fast);
}

.nav-mobile {
  background: var(--black);
  border-top: 1px solid rgba(255,255,255,0.08);
}
.nav-mobile ul {
  padding: 16px var(--gutter) 24px;
  display: flex; flex-direction: column; gap: 4px;
}
.nav-mobile a {
  color: var(--white);
  display: block; padding: 14px 8px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-weight: 500;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: var(--black);
  color: var(--white);
  overflow: hidden;
  padding: clamp(96px, 7vw, 120px) 0 0;
}
.hero-bg {
  position: absolute; inset: 0; pointer-events: none;
  background: url('../img/slider1.webp') center/cover no-repeat;
}
.hero-bg-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to right,
    rgba(10,10,10,0.92) 0%,
    rgba(10,10,10,0.80) 45%,
    rgba(10,10,10,0.55) 100%
  );
}

.hero-grid {
  position: relative;
  display: grid; grid-template-columns: 6fr 4fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
  padding-bottom: clamp(60px, 8vw, 100px);
}

.hero-title {
  font-size: clamp(2.4rem, 1.4rem + 3.6vw, 4.6rem);
  margin: 22px 0 22px;
  letter-spacing: -0.03em;
}
.hero-title .text-stroke {
  -webkit-text-stroke: 2px var(--white);
  color: transparent;
}
.hero-sub {
  font-size: clamp(1rem, 0.6rem + 0.6vw, 1.18rem);
  color: var(--grey-1);
  max-width: 540px;
  margin-bottom: 32px;
}
.hero-sub strong { color: var(--white); font-weight: 600; }

.hero-ctas {
  display: flex; flex-wrap: wrap; gap: 14px;
  margin-bottom: 48px;
}

.hero-trust {
  display: grid; grid-template-columns: repeat(3, auto);
  gap: 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  max-width: 540px;
}
.hero-trust li { display: flex; flex-direction: column; gap: 2px; }
.hero-trust strong {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 0.9rem + 1vw, 1.8rem);
  color: var(--white);
}
.hero-trust span {
  font-size: 0.82rem;
  color: var(--grey-2);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ---------- About ---------- */
.about {
  padding: clamp(80px, 10vw, 140px) 0;
  background: var(--white);
}
.about-grid {
  display: grid; grid-template-columns: 1fr 1.1fr;
  gap: clamp(32px, 6vw, 80px);
  align-items: center;
}
.about-visual-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--black);
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow-md);
}
.about-visual-wrap img {
  width: 100%; height: 100%; object-fit: cover;
}
.about-stat {
  position: absolute; bottom: 20px; left: 20px;
  background: var(--white);
  padding: 18px 22px;
  border-radius: var(--radius);
  display: flex; align-items: baseline; gap: 4px; flex-wrap: wrap;
  max-width: 240px;
  box-shadow: var(--shadow-md);
}
.about-stat .num {
  font-family: var(--font-display);
  font-size: 2.6rem; font-weight: 700; color: var(--red);
  line-height: 1;
}
.about-stat .plus { color: var(--red); font-weight: 700; font-size: 2rem; }
.about-stat small {
  flex-basis: 100%;
  color: var(--grey-3);
  font-size: 0.78rem;
  margin-top: 6px;
  line-height: 1.3;
}

.about-copy h2 { margin-bottom: 22px; }
.about-copy p { color: var(--grey-3); font-size: 1.05rem; }
.about-copy strong { color: var(--black); font-weight: 600; }

.check-list {
  display: flex; flex-direction: column; gap: 12px;
  margin-top: 24px;
}
.check-list li {
  display: flex; align-items: center; gap: 12px;
  font-weight: 500;
}
.check {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--red);
  position: relative; flex-shrink: 0;
}
.check::after {
  content: ""; position: absolute;
  left: 7px; top: 4px;
  width: 6px; height: 11px;
  border-right: 2px solid var(--white);
  border-bottom: 2px solid var(--white);
  transform: rotate(45deg);
}
.check-list.light li { color: var(--white); }

/* ---------- Services ---------- */
.services {
  padding: clamp(80px, 10vw, 140px) 0;
  background: var(--off-white);
  position: relative;
}
.bento-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
}
.service-card {
  grid-column: span 2;
  background: var(--white);
  border: 1px solid var(--grey-1);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  transition: transform var(--t-med) var(--ease),
              box-shadow var(--t-med),
              border-color var(--t-med);
  display: flex; flex-direction: column;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--red);
}

/* Bento large (cards destacadas que ocupan 4 cols) */
.bento-lg {
  grid-column: span 4;
  padding: 40px;
  display: flex;
  flex-direction: column;
}
.bento-lg .bento-content { display: flex; flex-direction: column; }
.bento-lg h3 { font-size: 1.85rem; }
.bento-lg p { font-size: 1.02rem; }

/* Fila superior: icono izquierda + badge derecha, misma altura */
.bento-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}
.bento-head .card-icon {
  margin-bottom: 0;
}

/* Badge inline (en flow) para las bento-lg — misma apariencia que .card-badge */
.card-badge-inline {
  background: var(--red);
  color: var(--white);
  padding: 6px 14px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 999px;
  white-space: nowrap;
  align-self: center;
}
.service-card.featured-light .card-badge-inline {
  background: var(--black);
  color: var(--white);
}

/* Featured oscura */
.service-card.featured {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
  box-shadow: var(--shadow-lg);
}
.service-card.featured:hover { transform: translateY(-10px); }
.service-card.featured > * { position: relative; z-index: 1; }

/* Featured "blanca" alternativa */
.service-card.featured-light {
  background: var(--white);
  color: var(--black);
  border: 1px solid var(--grey-1);
  box-shadow: var(--shadow-md);
}
.service-card.featured-light > * { position: relative; z-index: 1; }
.service-card.featured-light .card-badge {
  background: var(--black); color: var(--white);
}
.service-card.featured-light .card-note {
  background: var(--off-white);
  color: var(--black-2);
  border-left-color: var(--red);
}
.card-badge {
  position: absolute; top: -14px; right: 24px;
  background: var(--red);
  color: var(--white);
  padding: 6px 14px;
  font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  border-radius: 999px;
  white-space: nowrap;
  z-index: 2;
}
.card-icon {
  width: 64px; height: 64px;
  border-radius: 16px;
  background: var(--red);
  color: var(--white);
  display: grid; place-items: center;
  margin-bottom: 24px;
  transition: transform var(--t-med);
  box-shadow: 0 8px 18px rgba(0,0,0,0.12);
}
.service-card:hover .card-icon { transform: scale(1.08) rotate(-4deg); }
.card-icon img { width: 36px; height: 36px; }
.card-icon svg {
  width: 34px; height: 34px;
  display: block;
}
.service-card h3 {
  font-size: 1.5rem; margin-bottom: 12px;
}
.service-card p {
  color: var(--grey-3);
  font-size: 0.96rem;
}
.service-card.featured p { color: var(--grey-1); }
.service-card.featured strong { color: var(--white); }

.tag-list {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin: 16px 0 18px;
}
.tag-list li {
  font-size: 0.8rem; font-weight: 500;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--off-white);
  color: var(--grey-3);
  border: 1px solid var(--grey-1);
}
.service-card.featured .tag-list li {
  background: rgba(255,255,255,0.06);
  color: var(--white);
  border-color: rgba(255,255,255,0.14);
}

.card-note {
  background: var(--red-soft);
  border-left: 3px solid var(--red);
  padding: 12px 14px;
  font-size: 0.88rem;
  color: var(--white);
  border-radius: 8px;
  margin: 0 0 18px;
}
.service-card:not(.featured) .card-note { color: var(--black-2); }

.card-link {
  margin-top: auto;
  font-weight: 600;
  color: var(--red);
  display: inline-flex; gap: 6px; align-items: center;
  transition: gap var(--t-fast);
}
.service-card.featured .card-link { color: var(--red-2); }
.card-link:hover { gap: 12px; }

/* ---------- Method ---------- */
.method {
  padding: clamp(80px, 10vw, 140px) 0;
  background: var(--white);
}
.steps {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
  counter-reset: step;
}
.steps::before {
  content: "";
  position: absolute; top: 60px; left: 10%; right: 10%;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--grey-1) 0 8px, transparent 8px 16px);
  z-index: 0;
}
.step {
  background: var(--white);
  border: 1px solid var(--grey-1);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative; z-index: 1;
  transition: transform var(--t-med), border-color var(--t-med);
}
.step:hover { transform: translateY(-4px); border-color: var(--red); }
.step-num {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--white);
  background: var(--black);
  width: 64px; height: 64px;
  border-radius: 50%;
  display: grid; place-items: center;
  margin-bottom: 20px;
  border: 4px solid var(--white);
  box-shadow: 0 0 0 1px var(--grey-1);
  transition: background var(--t-med);
}
.step:hover .step-num { background: var(--red); }
.step h3 { font-size: 1.4rem; margin-bottom: 10px; }
.step p { color: var(--grey-3); margin: 0; }

/* ---------- Proof ---------- */
.proof {
  padding: clamp(80px, 10vw, 140px) 0;
  background: var(--off-white);
}
.logos-carousel {
  overflow: hidden;
  padding: 12px 0 60px;
  border-bottom: 1px solid var(--grey-1);
  margin-bottom: 60px;
  mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}
.logos-track {
  display: flex;
  align-items: center;
  gap: clamp(40px, 6vw, 80px);
  width: max-content;
  animation: scroll-logos 25s linear infinite;
}
.logos-track:hover {
  animation-play-state: paused;
}
.logos-track img {
  height: 40px; width: auto;
  filter: grayscale(1) contrast(0.8);
  opacity: 0.65;
  transition: filter var(--t-med), opacity var(--t-med), transform var(--t-med);
  flex-shrink: 0;
}
.logos-track img:hover {
  filter: none;
  opacity: 1;
  transform: scale(1.06);
}
@keyframes scroll-logos {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.testimonials {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.testimonial {
  background: var(--white);
  border: 1px solid var(--grey-1);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin: 0;
  position: relative;
  transition: transform var(--t-med), box-shadow var(--t-med);
}
.testimonial::before {
  content: "“";
  position: absolute; top: 8px; right: 22px;
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--red-soft);
  line-height: 1;
}
.testimonial:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.testimonial blockquote { margin: 0 0 20px; }
.testimonial p { color: var(--black-2); font-size: 0.98rem; }
.testimonial strong { color: var(--black); }
.testimonial figcaption {
  display: flex; align-items: center; gap: 12px;
  border-top: 1px solid var(--grey-1);
  padding-top: 16px;
}
.testimonial figcaption img {
  width: 44px; height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--white);
  box-shadow: 0 0 0 2px var(--red);
}
.testimonial figcaption div { display: flex; flex-direction: column; }
.testimonial figcaption strong { font-size: 0.95rem; }
.testimonial figcaption span { font-size: 0.82rem; color: var(--grey-3); }

/* ---------- CTA ---------- */
.cta {
  position: relative;
  padding: clamp(80px, 10vw, 140px) 0;
  background: var(--black);
  color: var(--white);
  overflow: hidden;
}
.cta-bg { position: absolute; inset: 0; pointer-events: none; }
.cta-bg .glow-red { top: -200px; left: -150px; opacity: 0.45; }

.cta-grid {
  position: relative;
  display: grid; grid-template-columns: 1.1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.cta-copy h2 { margin-bottom: 18px; }
.cta-lead {
  color: var(--grey-1);
  font-size: 1.08rem;
  max-width: 540px;
}
.cta-lead strong { color: var(--white); }

.cta-form {
  background: var(--white);
  color: var(--black);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.4);
  border: 1px solid rgba(255,255,255,0.1);
}
.cta-form h3 {
  font-size: 1.5rem; margin-bottom: 22px;
}
.field {
  display: flex; flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}
.field label {
  font-size: 0.85rem; font-weight: 600;
  color: var(--black-2);
}
.field label span { color: var(--red); }
.field input,
.field select {
  font-family: inherit;
  font-size: 0.98rem;
  padding: 12px 14px;
  border: 1px solid var(--grey-1);
  border-radius: 10px;
  background: var(--white);
  color: var(--black);
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
}
.field input:focus,
.field select:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 4px var(--red-soft);
  outline: none;
}
/* Fila de dos campos al 50% */
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

/* Checkbox personalizado accesible (input dentro del label) */
.field.check {
  flex-direction: row;
  margin: 8px 0 18px;
}
.check-label {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.88rem;
  color: var(--grey-3);
  font-weight: 400;
  cursor: pointer;
  line-height: 1.4;
  user-select: none;
  white-space: nowrap;
}
.check-label input[type="checkbox"] {
  /* Visualmente oculto, accesible y sigue recibiendo clicks vía label */
  position: absolute;
  width: 22px; height: 22px;
  margin: 0;
  padding: 0;
  opacity: 0;
  cursor: pointer;
  left: 0; top: 50%;
  transform: translateY(-50%);
  z-index: 1;
}
.check-label .check-box {
  flex-shrink: 0;
  width: 22px; height: 22px;
  border: 2px solid var(--grey-2);
  border-radius: 6px;
  background: var(--white);
  position: relative;
  transition: border-color var(--t-fast),
              background var(--t-fast),
              box-shadow var(--t-fast);
}
.check-label .check-box::after {
  content: "";
  position: absolute;
  left: 6px; top: 2px;
  width: 6px; height: 11px;
  border-right: 2px solid var(--white);
  border-bottom: 2px solid var(--white);
  transform: rotate(45deg) scale(0);
  transition: transform var(--t-fast) var(--ease);
}
.check-label:hover .check-box { border-color: var(--red); }
.check-label input:checked ~ .check-box {
  background: var(--red);
  border-color: var(--red);
}
.check-label input:checked ~ .check-box::after {
  transform: rotate(45deg) scale(1);
}
.check-label input:focus-visible ~ .check-box {
  outline: 3px solid var(--red);
  outline-offset: 3px;
}
.check-label .check-text { line-height: 1.4; }
.check-label a {
  color: var(--red);
  text-decoration: underline;
  font-weight: 500;
}

.form-foot {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.8rem; color: var(--grey-3);
  margin: 14px 0 0;
}
.form-foot svg { width: 16px; height: 16px; flex-shrink: 0; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--black);
  color: var(--grey-1);
  padding: 80px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 40px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand img { height: 36px; width: auto; margin-bottom: 16px; }
.footer-brand p { color: var(--grey-2); max-width: 320px; }

.site-footer h4 {
  color: var(--white);
  font-size: 0.95rem;
  margin-bottom: 18px;
  letter-spacing: 0.02em;
}
.site-footer nav ul,
.footer-contact ul {
  display: flex; flex-direction: column; gap: 10px;
}
.site-footer a {
  color: var(--grey-2);
  font-size: 0.92rem;
  transition: color var(--t-fast);
}
.site-footer a:hover { color: var(--white); }

.footer-bottom { padding: 24px 0; }
.footer-bottom .container {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 14px;
}
.footer-bottom small { color: var(--grey-3); font-size: 0.84rem; }
.footer-bottom ul {
  display: flex; gap: 22px;
}
.footer-bottom a { font-size: 0.84rem; color: var(--grey-3); }

/* ---------- WhatsApp FAB ---------- */
.wa-fab {
  position: fixed;
  right: 22px; bottom: 22px;
  z-index: 60;
  background: #25d366;
  color: #fff;
  border-radius: 999px;
  padding: 14px 18px 14px 14px;
  display: inline-flex; align-items: center; gap: 10px;
  box-shadow: 0 18px 40px rgba(37, 211, 102, 0.45);
  transition: transform var(--t-fast), box-shadow var(--t-fast);
  font-weight: 600;
}
.wa-fab:hover { transform: translateY(-3px) scale(1.02); }
.wa-fab svg { width: 28px; height: 28px; }
.wa-label { font-size: 0.92rem; }

/* ---------- Scroll progress ---------- */
.scroll-progress {
  position: fixed; top: 0; left: 0; right: 0;
  height: 3px; z-index: 70;
  background: transparent;
  pointer-events: none;
}
.scroll-progress .bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--red), var(--red-2));
  transition: width 100ms linear;
}

/* ---------- Animations init state ---------- */
[data-anim] { will-change: transform, opacity; }

/* ---------- Scroll-driven interaction states ---------- */

/* Section label accent bar */
.section-label {
  position: relative;
  padding-left: 18px;
  transition: color var(--t-med) var(--ease);
}
.section-label::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  width: 0;
  height: 2px;
  background: var(--red);
  transition: width 0.6s var(--ease);
  transform: translateY(-50%);
}
.section-label.is-active::before {
  width: 12px;
}

/* Check list items */
.check-list li {
  transition: transform var(--t-med) var(--ease), opacity var(--t-med);
}
.check-list li .check {
  transition: transform 0.4s var(--ease), background 0.4s;
}
.check-list.is-active li .check {
  transform: scale(1.15);
  background: var(--red);
}

/* Tag list items in service cards */
.tag-list li {
  transition: transform var(--t-fast) var(--ease), background var(--t-fast);
}
.service-card.is-active .tag-list li {
  transform: translateY(-2px);
}

/* Step numbers color transition */
.step-num {
  transition: color 0.5s var(--ease), background 0.5s var(--ease);
}
.step.is-active .step-num {
  color: var(--white);
  background: var(--red);
}

/* Service card icon pulse */
.card-icon {
  transition: transform 0.5s var(--ease);
}
.service-card.is-active .card-icon {
  transform: scale(1.08);
}

/* Testimonial reveal */
.testimonial {
  transition: border-color 0.6s var(--ease), box-shadow 0.6s var(--ease);
}
.testimonial.is-active {
  border-color: var(--red);
  box-shadow: 0 8px 30px rgba(225,6,0,0.08);
}

/* Card badge inline pulse */
.card-badge-inline {
  transition: background 0.5s, transform 0.5s var(--ease);
}
.service-card.is-active .card-badge-inline {
  background: var(--red);
  color: var(--white);
  transform: scale(1.05);
}

/* CTA form fields focus-enhance */
.cta-form .field input,
.cta-form .field select {
  transition: border-color var(--t-med), box-shadow var(--t-med), transform var(--t-fast);
}

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; }
  .about-grid,
  .cta-grid { grid-template-columns: 1fr; }
  .testimonials,
  .steps { grid-template-columns: repeat(2, 1fr); }
  .steps::before { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }

  .bento-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card { grid-column: span 1; }
  .bento-lg {
    grid-column: span 2;
    padding: 36px;
  }
}

@media (max-width: 720px) {
  .nav-primary,
  .header-inner > .btn { display: none; }
  .nav-toggle { display: inline-flex; }

  .hero-trust { grid-template-columns: 1fr 1fr; gap: 18px; }
  .testimonials,
  .steps { grid-template-columns: 1fr; }
  .bento-grid { grid-template-columns: 1fr; }
  .service-card,
  .bento-lg { grid-column: span 1; }
  .bento-lg { padding: 28px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom .container { justify-content: flex-start; }

  .cta-form { padding: 26px; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .wa-label { display: none; }
  .wa-fab { padding: 14px; }
}

/* ---------- Cookie banner ---------- */
.cookie-banner {
  position: fixed;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%) translateY(140%);
  width: min(960px, calc(100vw - 32px));
  background: var(--black);
  color: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 30px 70px rgba(0,0,0,0.45);
  z-index: 80;
  opacity: 0;
  transition: transform 380ms var(--ease), opacity 280ms var(--ease);
}
.cookie-banner.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}
.cookie-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 22px;
  padding: 20px 26px;
  align-items: center;
}
.cookie-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--red-soft);
  color: var(--red);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.cookie-text h3 {
  font-size: 1.1rem;
  margin: 0 0 4px;
  color: var(--white);
}
.cookie-text p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--grey-1);
  line-height: 1.5;
}
.cookie-text a { color: var(--red-2); text-decoration: underline; }
.cookie-actions {
  display: flex; gap: 10px; flex-shrink: 0;
}
.cookie-actions .btn { padding: 11px 20px; font-size: 0.9rem; }

.btn-ghost-dark {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.25);
}
.btn-ghost-dark:hover {
  background: rgba(255,255,255,0.08);
  transform: translateY(-2px);
}

@media (max-width: 720px) {
  .cookie-inner {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 18px 20px;
  }
  .cookie-icon { width: 44px; height: 44px; }
  .cookie-actions { flex-direction: column-reverse; }
  .cookie-actions .btn { width: 100%; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
  }
  html { scroll-behavior: auto; }
}

/* =========================================================
   NEWS / BLOG PAGES
   ========================================================= */

/* ---------- Page Hero (noticias) ---------- */
.page-hero {
  padding: clamp(120px, 12vw, 180px) 0 clamp(48px, 6vw, 80px);
  background: var(--off-white);
  border-bottom: 1px solid var(--grey-1);
}
.page-hero .section-label { margin-bottom: 12px; }
.page-hero .section-title {
  font-size: clamp(2rem, 1.2rem + 3vw, 3.4rem);
  max-width: 720px;
  margin-bottom: 16px;
}
.page-hero .section-lead {
  font-size: 1.08rem;
  max-width: 600px;
}

/* ---------- News Filters ---------- */
.news-filters {
  padding: 32px 0 0;
  background: var(--off-white);
  position: sticky;
  top: 72px;
  z-index: 10;
  border-bottom: 1px solid var(--grey-1);
}
.filter-list {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  padding-bottom: 16px;
}
.filter-btn {
  background: var(--white);
  border: 1px solid var(--grey-1);
  border-radius: 999px;
  padding: 8px 18px;
  font-family: inherit;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--grey-3);
  cursor: pointer;
  transition: all var(--t-fast) var(--ease);
}
.filter-btn:hover {
  border-color: var(--red);
  color: var(--red);
}
.filter-btn.active {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}

/* ---------- News Grid ---------- */
.news-grid-section {
  padding: clamp(48px, 6vw, 80px) 0;
  background: var(--off-white);
}
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.news-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* ---------- News Card ---------- */
.news-card {
  background: var(--white);
  border: 1px solid var(--grey-1);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--t-med) var(--ease),
              box-shadow var(--t-med),
              border-color var(--t-med);
}
.news-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--red);
}
.news-card-link {
  display: flex;
  flex-direction: column;
  height: 100%;
  color: inherit;
  text-decoration: none;
}
.news-card-img {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}
.news-card-img-placeholder {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  transition: transform var(--t-med) var(--ease);
}
.news-card:hover .news-card-img-placeholder {
  transform: scale(1.05);
}
.news-card-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--red);
  color: var(--white);
  padding: 5px 12px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 999px;
  z-index: 2;
}
.news-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.news-card-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 0.82rem;
  color: var(--grey-3);
}
.news-card-category {
  background: var(--red-soft);
  color: var(--red);
  padding: 3px 10px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.02em;
}
.news-card-title {
  font-size: 1.25rem;
  margin-bottom: 10px;
  line-height: 1.3;
  color: var(--black);
}
.news-card-excerpt {
  color: var(--grey-3);
  font-size: 0.94rem;
  margin-bottom: 16px;
  flex: 1;
}
.news-card-read-more {
  font-weight: 600;
  color: var(--red);
  display: inline-flex;
  gap: 6px;
  align-items: center;
  font-size: 0.92rem;
  transition: gap var(--t-fast);
}
.news-card:hover .news-card-read-more { gap: 12px; }

/* Featured news card (spans 2 cols) */
.news-card-featured {
  grid-column: span 2;
}
.news-card-featured .news-card-link {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.news-card-featured .news-card-img {
  aspect-ratio: auto;
  min-height: 280px;
}
.news-card-featured .news-card-title {
  font-size: 1.6rem;
}

/* Hidden card (for filter) */
.news-card.hidden {
  display: none;
}

/* ---------- Pagination ---------- */
.news-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 48px;
}
.pagination-btn {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--grey-1);
  background: var(--white);
  color: var(--grey-3);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: all var(--t-fast) var(--ease);
}
.pagination-btn:hover:not(:disabled) {
  border-color: var(--red);
  color: var(--red);
}
.pagination-btn.active {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.pagination-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

/* ---------- Newsletter CTA ---------- */
.news-cta {
  padding: clamp(60px, 8vw, 100px) 0;
  background: var(--white);
}
.news-cta-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  background: var(--black);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: clamp(32px, 5vw, 56px);
  position: relative;
  overflow: hidden;
}
.news-cta-inner::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, var(--red-soft) 0%, transparent 70%);
  pointer-events: none;
}
.news-cta-copy {
  position: relative;
  z-index: 1;
}
.news-cta-copy .section-title {
  color: var(--white);
  font-size: clamp(1.6rem, 1rem + 1.5vw, 2.4rem);
}
.news-cta-copy p {
  color: var(--grey-1);
  font-size: 1.02rem;
}
.news-cta-form {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 12px;
}
.news-cta-form .field {
  flex: 1;
  margin-bottom: 0;
}
.news-cta-form input {
  font-family: inherit;
  font-size: 0.98rem;
  padding: 14px 18px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  color: var(--white);
  width: 100%;
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
}
.news-cta-form input::placeholder {
  color: var(--grey-2);
}
.news-cta-form input:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 4px var(--red-soft);
  outline: none;
}
.news-cta-form .btn {
  white-space: nowrap;
}

/* ---------- Article Hero ---------- */
.article-hero {
  padding: clamp(120px, 12vw, 180px) 0 40px;
  background: var(--off-white);
}
.article-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--grey-3);
  margin-bottom: 24px;
}
.article-breadcrumb a {
  color: var(--grey-3);
  transition: color var(--t-fast);
}
.article-breadcrumb a:hover { color: var(--red); }
.article-breadcrumb span { color: var(--grey-1); }

.article-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 20px;
  font-size: 0.88rem;
  color: var(--grey-3);
}
.article-reading-time {
  display: flex;
  align-items: center;
  gap: 6px;
}
.article-reading-time::before {
  content: "📖";
  font-size: 1rem;
}

.article-title {
  font-size: clamp(2rem, 1.2rem + 3vw, 3.2rem);
  max-width: 800px;
  margin-bottom: 18px;
  line-height: 1.15;
}
.article-subtitle {
  font-size: 1.15rem;
  color: var(--grey-3);
  max-width: 700px;
  line-height: 1.6;
}

.article-author {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--grey-1);
}
.article-author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--white);
  box-shadow: 0 0 0 2px var(--red);
  flex-shrink: 0;
}
.article-author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.article-author strong {
  display: block;
  font-size: 0.95rem;
  color: var(--black);
}
.article-author span {
  font-size: 0.82rem;
  color: var(--grey-3);
}

/* ---------- Article Featured Image ---------- */
.article-featured-img {
  margin-top: 32px;
  margin-bottom: 0;
}
.article-featured-img-placeholder {
  width: 100%;
  aspect-ratio: 21 / 9;
  background: linear-gradient(135deg, var(--black) 0%, var(--red) 100%);
  border-radius: var(--radius-lg);
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-md);
}

/* ---------- Article Content Layout ---------- */
.article-content-section {
  padding: clamp(48px, 6vw, 80px) 0;
  background: var(--white);
}
.article-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
}

/* Sidebar */
.article-sidebar {
  position: sticky;
  top: 100px;
}
.article-share {
  margin-bottom: 32px;
}
.article-share h4,
.article-toc h4 {
  font-size: 0.85rem;
  color: var(--grey-3);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 14px;
}
.article-share ul {
  display: flex;
  gap: 8px;
}
.share-link {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--off-white);
  color: var(--grey-3);
  display: grid;
  place-items: center;
  transition: all var(--t-fast) var(--ease);
}
.share-link:hover {
  background: var(--red);
  color: var(--white);
  transform: translateY(-2px);
}

.article-toc ol {
  list-style: decimal;
  padding-left: 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.toc-link {
  font-size: 0.85rem;
  color: var(--grey-3);
  transition: color var(--t-fast);
  line-height: 1.4;
}
.toc-link:hover,
.toc-link.active {
  color: var(--red);
}

/* Article Body */
.article-body {
  max-width: 720px;
}
.article-body h2 {
  font-size: 1.7rem;
  margin: 48px 0 18px;
  scroll-margin-top: 100px;
}
.article-body h2:first-child {
  margin-top: 0;
}
.article-body p {
  color: var(--grey-3);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 1.2em;
}
.article-body strong {
  color: var(--black);
}
.article-body a {
  color: var(--red);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.article-body a:hover {
  color: var(--red-2);
}

.article-body blockquote {
  border-left: 4px solid var(--red);
  background: var(--off-white);
  padding: 20px 24px;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 28px 0;
  font-style: italic;
}
.article-body blockquote p {
  color: var(--black-2);
  margin: 0;
  font-size: 1.08rem;
}

.article-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5em;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.article-list li {
  position: relative;
  padding-left: 28px;
  color: var(--grey-3);
  font-size: 1.02rem;
  line-height: 1.6;
}
.article-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
}

.article-list-ol {
  padding-left: 20px;
  margin: 0 0 1.5em;
  display: flex;
  flex-direction: column;
  gap: 12px;
  list-style: none;
  counter-reset: ol-counter;
}
.article-list-ol li {
  position: relative;
  padding-left: 36px;
  color: var(--grey-3);
  font-size: 1.02rem;
  line-height: 1.6;
  counter-increment: ol-counter;
}
.article-list-ol li::before {
  content: counter(ol-counter);
  position: absolute;
  left: 0;
  top: 2px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--black);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  display: grid;
  place-items: center;
}

.article-body code {
  background: var(--off-white);
  padding: 2px 8px;
  border-radius: 6px;
  font-size: 0.9em;
  color: var(--red);
}

.article-tip {
  background: var(--red-soft);
  border: 1px solid rgba(225,6,0,0.15);
  border-left: 4px solid var(--red);
  padding: 18px 22px;
  border-radius: var(--radius);
  margin: 28px 0;
  font-size: 0.98rem;
  color: var(--black-2);
  line-height: 1.6;
}

.article-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid var(--grey-1);
}
.article-tag {
  font-size: 0.8rem;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--off-white);
  color: var(--grey-3);
  border: 1px solid var(--grey-1);
}

/* ---------- Related Articles ---------- */
.related-articles {
  padding: clamp(60px, 8vw, 100px) 0;
  background: var(--off-white);
}

/* ---------- CTA Compact ---------- */
.cta-compact {
  padding: clamp(60px, 8vw, 100px) 0;
}
.cta-compact-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.cta-compact-copy {
  max-width: 600px;
}
.cta-compact-copy .section-title {
  font-size: clamp(1.5rem, 1rem + 1.5vw, 2.2rem);
  margin-bottom: 8px;
}

/* ---------- Active nav link ---------- */
.nav-primary a.active {
  color: var(--white);
}
.nav-primary a.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* ===========================
   NEWS RESPONSIVE
   =========================== */
@media (max-width: 1024px) {
  .news-grid,
  .news-grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
  .news-card-featured {
    grid-column: span 2;
  }
  .news-card-featured .news-card-link {
    grid-template-columns: 1fr;
  }
  .news-card-featured .news-card-img {
    min-height: 220px;
    aspect-ratio: 16 / 9;
  }
  .news-cta-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .article-layout {
    grid-template-columns: 1fr;
  }
  .article-sidebar {
    position: static;
    display: flex;
    gap: 32px;
    align-items: flex-start;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--grey-1);
    margin-bottom: 8px;
  }
  .article-share { margin-bottom: 0; }
  .article-toc { display: none; }
}

@media (max-width: 720px) {
  .news-grid,
  .news-grid-3 {
    grid-template-columns: 1fr;
  }
  .news-card-featured {
    grid-column: span 1;
  }
  .news-card-featured .news-card-title {
    font-size: 1.3rem;
  }
  .news-cta-form {
    flex-direction: column;
  }
  .news-filters {
    top: 0;
    padding: 16px 0 0;
  }
  .filter-list {
    overflow-x: auto;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 12px;
  }
  .filter-list::-webkit-scrollbar { display: none; }
  .filter-btn { white-space: nowrap; }
  .article-sidebar {
    flex-direction: column;
    gap: 16px;
  }
  .article-title {
    font-size: clamp(1.6rem, 1rem + 2.5vw, 2.4rem);
  }
  .article-body h2 {
    font-size: 1.4rem;
  }
  .cta-compact-inner {
    flex-direction: column;
    text-align: center;
  }
  .cta-compact-copy {
    max-width: 100%;
  }
  .article-featured-img-placeholder {
    aspect-ratio: 16 / 9;
    border-radius: var(--radius);
  }
}
