/* =============================================
   TECNOLOGIE PAGE — estilos específicos
   Hereda paleta/tipografía de ../home/css/style.css
   ============================================= */

/* ── Nav active state ── */
.nav-active { color: var(--accent) !important; }

/* ── HERO ──────────────────────────────────── */
#tech-hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: calc(var(--nav-h) + 40px) 40px 60px;
  background:
    radial-gradient(circle at 78% 30%, rgba(0,173,180,0.10), transparent 42%),
    linear-gradient(115deg, #060a0b 0%, #0a1213 55%, #0e1e20 100%);
}
#tech-hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  pointer-events: none;
  z-index: 1;
}
.th-inner {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
}
.th-eyebrow {
  display: inline-block;
  background: var(--accent);
  color: #061012;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.16em;
  padding: 5px 13px;
  border-radius: 1px;
  margin-bottom: 18px;
}
.th-title {
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  max-width: 640px;
}
.th-title .accent { color: var(--accent); }
.th-sub {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255,255,255,0.74);
  max-width: 560px;
}
.th-sub em { color: var(--accent); font-style: italic; }

/* ── STATS ─────────────────────────────────── */
#tech-stats {
  background: var(--bg-light);
  padding: 52px 40px;
  border-bottom: 1px solid #e2e5e4;
}
.stats-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  text-align: center;
}
/* Entrada animada de cada dato (además del count-up) */
.stat.reveal {
  opacity: 0;
  transform: translateY(24px) scale(0.94);
  transition: opacity 0.65s ease, transform 0.65s cubic-bezier(0.2, 0.8, 0.3, 1);
}
.stat.reveal.is-visible {
  opacity: 1;
  transform: none;
}
/* Hover lift sobre la estadística ya revelada */
.stat.reveal.is-visible:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 32px rgba(0,173,180,0.11);
  transition: transform 0.22s ease, box-shadow 0.22s ease, opacity 0.65s ease;
}
.stat-num {
  display: block;
  font-size: clamp(40px, 5vw, 62px);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text-dark);
  line-height: 1;
  margin-bottom: 10px;
  font-variant-numeric: tabular-nums;
}
.stat-label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--accent);
}

/* ── COMPARATIVA ───────────────────────────── */
#compare {
  position: relative;
  overflow: hidden;
  padding: 64px 40px;
  /* Negro-verde oscuro + luz volumétrica entrando por la esquina derecha */
  background:
    radial-gradient(ellipse 60% 48% at 100% 0%, rgba(160,255,246,0.17), transparent 68%),
    radial-gradient(ellipse 46% 36% at 88% 8%, rgba(0,183,190,0.14), transparent 62%),
    linear-gradient(158deg, #04080a 0%, #071013 42%, #0a1a16 100%);
}
#compare-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  pointer-events: none;
  z-index: 0;
}
/* Rayos de luz volumétrica desde la esquina superior derecha */
.cmp-rays {
  position: absolute;
  top: -12%;
  right: -40px;
  width: 58%;
  height: 130%;
  z-index: 0;
  pointer-events: none;
}
.cmp-rays span {
  position: absolute;
  top: -8%;
  height: 125%;
  background: linear-gradient(to bottom, rgba(190,255,250,0.30) 0%, rgba(190,255,250,0.07) 46%, transparent 74%);
  transform: rotate(37deg);
  transform-origin: top right;
  filter: blur(20px);
}
.cmp-rays span:nth-child(1) { right: 30px;  width: 110px; opacity: 0.55; }
.cmp-rays span:nth-child(2) { right: 210px; width: 64px;  opacity: 0.38; }
.cmp-rays span:nth-child(3) { right: 350px; width: 42px;  opacity: 0.26; }
.compare-inner {
  position: relative;
  z-index: 1;
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}
.section-title-dark {
  font-size: clamp(19px, 2.2vw, 26px);
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 10px;
}
.section-title-dark .accent { color: var(--accent); }
.compare-sub {
  font-size: 12.5px;
  color: rgba(255,255,255,0.55);
  margin-bottom: 36px;
}
/* Cristal: semitraslúcido con blur, deja ver partículas y luz detrás */
.cmp-table {
  position: relative;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(9,15,16,0.46);
  backdrop-filter: blur(10px) saturate(1.15);
  -webkit-backdrop-filter: blur(10px) saturate(1.15);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.07),
    0 18px 44px rgba(0,0,0,0.35);
}
/* Acabado noised sutil sobre el cristal */
.cmp-table::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)'/%3E%3C/svg%3E");
}
.cmp-head,
.cmp-row {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  align-items: center;
}
.cmp-head {
  background: rgba(16,24,26,0.55);
  padding: 14px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.10);
}
.cmp-h-them {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.45);
}
.cmp-h-us {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--accent);
}
.cmp-row {
  padding: 13px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.cmp-row.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.cmp-row:last-child { border-bottom: none; }
.cmp-feature {
  font-size: 12.5px;
  font-weight: 700;
  color: rgba(255,255,255,0.85);
  text-align: left;
}
.cmp-no {
  font-size: 11px;
  font-weight: 800;
  color: #e05c5c;
  letter-spacing: 0.08em;
}
.cmp-yes {
  font-size: 16px;
  font-weight: 800;
  color: var(--accent);
  transform: scale(0);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1) 0.25s;
}
.cmp-row.is-visible .cmp-yes { transform: scale(1); }

/* ── FEATURES — bloques grandes con imagen real ── */
#tech-features {
  background: var(--bg-light);
  padding: 72px 40px;
}
.feats-inner {
  max-width: 1080px;
  margin: 0 auto;
}
#tech-features .section-title-dark {
  color: var(--text-dark);
  text-align: center;
  margin-bottom: 8px;
}
.feats-sub {
  text-align: center;
  font-size: 12.5px;
  color: #6c7779;
  margin-bottom: 56px;
}
.featx-row {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 52px;
  align-items: center;
  margin-bottom: 72px;
  opacity: 1;
  transform: none;
}
.featx-row.is-visible {
  opacity: 1;
  transform: none;
}
.featx-row > .featx-media,
.featx-row > .featx-copy {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.featx-row.is-visible > .featx-media,
.featx-row.is-visible > .featx-copy {
  opacity: 1;
  transform: none;
}
.featx-row:last-child { margin-bottom: 8px; }
/* Alternar: imagen a la derecha en filas --flip */
.featx-row--flip .featx-media { order: 2; }
.featx-row--flip .featx-copy  { order: 1; }
.featx-media {
  position: relative;
}
.featx-media img {
  width: 100%;
  display: block;
  border-radius: 10px;
  border: 1px solid #dbe1e0;
  box-shadow: 0 16px 44px rgba(14,28,30,0.14);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.featx-media picture {
  display: contents;
}
.featx-media:hover img {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 26px 58px rgba(14,28,30,0.22);
}
.featx-caption {
  display: block;
  margin-top: 10px;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #8a9496;
  text-align: center;
}
.featx-num {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--accent);
  border: 1.5px solid rgba(0,173,180,0.4);
  border-radius: 999px;
  padding: 4px 14px;
  margin-bottom: 14px;
}
.featx-copy h3 {
  font-size: clamp(16px, 1.8vw, 21px);
  font-weight: 800;
  letter-spacing: 0.02em;
  color: var(--text-dark);
  margin-bottom: 12px;
  line-height: 1.25;
}
.featx-copy p {
  font-size: 13px;
  line-height: 1.75;
  color: #5d6769;
  margin-bottom: 12px;
}
.featx-copy em { color: var(--accent-dim); font-style: italic; }
.featx-example {
  border-left: 3px solid var(--accent);
  padding: 10px 16px;
  background: rgba(0,173,180,0.06);
  border-radius: 0 6px 6px 0;
  font-size: 12px !important;
  color: #4c5556 !important;
}

/* ── CTA GALLERIA ──────────────────────────── */
#tech-cta {
  background: var(--bg-light);
  padding: 0 40px 56px;
}
.tech-cta-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
#tech-cta .stories-gallery-cta { margin-top: 0; }
.tech-cta-home {
  text-align: center;
  margin-top: 22px;
}
.tech-cta-home a {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #6c7779;
  transition: color 0.2s;
}
.tech-cta-home a:hover { color: var(--accent-dim); }

/* ── RESPONSIVE ────────────────────────────── */
@media (max-width: 768px) {
  #tech-hero { padding: calc(var(--nav-h) + 28px) 20px 44px; min-height: 440px; }
  #tech-stats { padding: 40px 20px; }
  .stats-inner { gap: 20px; }
  #compare { padding: 48px 20px; }
  .cmp-head, .cmp-row { padding-inline: 14px; }
  #tech-features { padding: 48px 20px; }
  .featx-row {
    grid-template-columns: 1fr;
    gap: 22px;
    margin-bottom: 52px;
  }
  .featx-row--flip .featx-media { order: 1; }
  .featx-row--flip .featx-copy  { order: 2; }
  #tech-cta { padding: 0 20px 44px; }
}
@media (max-width: 540px) {
  .stats-inner { grid-template-columns: 1fr; gap: 30px; }
  .cmp-head, .cmp-row { grid-template-columns: 1.3fr 0.8fr 0.9fr; }
}


/* ══════════════════════════════════════════════════
   MOBILE REFINEMENT — tecnologie
   ══════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .th-sub { font-size: 14px; }
  .stat-label { font-size: 12px; }
  .compare-sub { font-size: 12px; margin-bottom: 28px; }
  .cmp-feature, .cmp-no { font-size: 12px; }
  .cmp-h-them, .cmp-h-us { font-size: 10.5px; }
  .feats-sub { font-size: 12px; margin-bottom: 40px; }
  .featx-row { gap: 20px; margin-bottom: 52px; }
  .featx-caption { font-size: 12px; }
  .featx-copy p { font-size: 13px; }
  .tech-cta-home a { display: inline-block; font-size: 12px; padding: 12px; }
}
@media (max-width: 540px) {
  #tech-hero { min-height: 0; padding: calc(var(--nav-h) + 24px) 20px 40px; }
  .th-title { font-size: 28px; }
  .stats-inner { grid-template-columns: repeat(3, 1fr); gap: 12px; }
  .stat-num { font-size: 34px; }
  .stat-label { font-size: 10px; letter-spacing: 0.06em; }
  .cmp-head, .cmp-row { grid-template-columns: 1.4fr 0.7fr 0.9fr; padding-inline: 12px; }
  .cmp-feature { font-size: 11.5px; }
  .stories-gallery-cta { flex-direction: column; align-items: stretch; text-align: center; }
}

.featx-media img.img-lifted {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 26px 58px rgba(14,28,30,0.22);
}

/* ══════════════════════════════════════════════════
   DESTELLOS DIAGONALES — sección features
   Misma técnica que .cmp-rays de la tabla comparativa:
   haces angostos paralelos que se desvanecen a lo largo,
   en azul petróleo oscuro para contrastar con el blanco.
   Cada tecnología recibe la luz de una esquina distinta.
   ══════════════════════════════════════════════════ */
#tech-features { position: relative; overflow: hidden; }
.featx-row {
  position: relative;
}
.featx-media, .featx-copy { position: relative; z-index: 2; }
.featx-media {
  isolation: isolate;
}
/* Placa opaca de separación: cubre los haces antes de que alcancen el
   borde de cualquier captura y evita falsas continuidades con la foto. */
.featx-media::before {
  content: '';
  position: absolute;
  z-index: -1;
  top: -8px;
  right: -8px;
  bottom: 24px;
  left: -8px;
  border-radius: 14px;
  background: var(--bg-light);
}
#tech-features .section-title-dark,
#tech-features .feats-sub { position: relative; z-index: 2; }

/* ============================================================
   LEGIBILITY PASS — secondary copy and functional content
   ============================================================ */
.th-sub { font-size: 16px; }
.stat-label { font-size: 12px; }
.compare-sub { font-size: 14px; }
.cmp-h-them,
.cmp-h-us { font-size: 11px; }
.cmp-feature { font-size: 13.5px; }
.cmp-no { font-size: 12px; }
.feats-sub { font-size: 14px; }
.featx-caption { font-size: 11.5px; }
.featx-copy h3 { font-size: clamp(17px, 1.9vw, 22px); }
.featx-copy p { font-size: 14px; }
.featx-example { font-size: 13px !important; }
.tech-cta-home a { font-size: 12px; }

@media (max-width: 768px) {
  .th-sub { font-size: 15px; }
  .stat-label { font-size: 11px; }
  .compare-sub { font-size: 13.5px; }
  .cmp-h-them,
  .cmp-h-us { font-size: 11px; }
  .cmp-feature,
  .cmp-no { font-size: 13px; }
  .feats-sub { font-size: 13.5px; }
  .featx-caption { font-size: 12.5px; }
  .featx-copy h3 { font-size: 18px; }
  .featx-copy p { font-size: 14px; line-height: 1.72; }
  .featx-example { font-size: 13.5px !important; }
  .tech-cta-home a { font-size: 13px; }
}

.featx-row::before,
.featx-row::after {
  content: '';
  position: absolute;
  pointer-events: none;
  z-index: 0;
  background-repeat: no-repeat;
}

/* Tres haces con núcleo definido y halo corto: reflejo, no mancha. */
.featx-row::before {
  width: 220px;
  height: 420px;
  background-image:
    linear-gradient(to bottom, rgba(6,48,102,0.28) 0%, rgba(8,66,130,0.11) 48%, transparent 82%),
    linear-gradient(to bottom, rgba(20,104,190,0.72) 0%, rgba(12,79,157,0.22) 50%, transparent 88%),
    linear-gradient(to bottom, rgba(6,48,102,0.22) 0%, rgba(8,66,130,0.08) 44%, transparent 76%),
    linear-gradient(to bottom, rgba(20,104,190,0.60) 0%, rgba(12,79,157,0.18) 46%, transparent 82%),
    linear-gradient(to bottom, rgba(6,48,102,0.17) 0%, rgba(8,66,130,0.06) 40%, transparent 68%),
    linear-gradient(to bottom, rgba(20,104,190,0.48) 0%, rgba(12,79,157,0.14) 42%, transparent 74%);
  background-size:
    30px 100%, 3px 92%,
    18px 82%, 2px 78%,
    10px 66%, 1px 58%;
  background-position:
    0 0, 13px 0,
    84px 0, 92px 0,
    138px 0, 142px 0;
  filter: blur(2.5px) drop-shadow(0 0 9px rgba(12,82,157,0.18));
}

/* Eco fino en la esquina opuesta para equilibrar la composición. */
.featx-row::after {
  width: 26px;
  height: 260px;
  background-image:
    linear-gradient(to bottom, rgba(6,48,102,0.19) 0%, rgba(8,66,130,0.06) 48%, transparent 78%),
    linear-gradient(to bottom, rgba(20,104,190,0.48) 0%, rgba(12,79,157,0.12) 50%, transparent 84%);
  background-size: 18px 100%, 2px 88%;
  background-position: 0 0, 8px 0;
  filter: blur(2px) drop-shadow(0 0 7px rgba(12,82,157,0.14));
}

/* 01 · Wishlist — racimo colgando de arriba-derecha */
.feats-inner .featx-row:nth-of-type(1)::before {
  top: -70px; right: -30px;
  transform: rotate(33deg);
  transform-origin: top right;
}
.feats-inner .featx-row:nth-of-type(1)::after {
  display: none;
}

/* 02 · Analytics — racimo desde arriba-izquierda */
.feats-inner .featx-row:nth-of-type(2)::before {
  top: -70px; left: -30px;
  transform: rotate(-33deg);
  transform-origin: top left;
}
.feats-inner .featx-row:nth-of-type(2)::after {
  bottom: -50px; right: 40px;
  transform: rotate(-33deg) scaleY(-1);
}

/* 03 · Self hosting — racimo subiendo desde abajo-derecha */
.feats-inner .featx-row:nth-of-type(3)::before {
  bottom: -70px; right: -20px;
  transform: rotate(-33deg) scaleY(-1);
  transform-origin: bottom right;
}
.feats-inner .featx-row:nth-of-type(3)::after {
  top: -50px; left: 50px;
  transform: rotate(-33deg);
}

/* 04 · JavaScripts & AI — racimo desde arriba-izquierda, más vertical */
.feats-inner .featx-row:nth-of-type(4)::before {
  top: -70px; left: -10px;
  transform: rotate(-22deg);
  transform-origin: top left;
}
.feats-inner .featx-row:nth-of-type(4)::after {
  bottom: -50px; right: 30px;
  transform: rotate(-22deg) scaleY(-1);
}

/* Desktop: prolongar las trayectorias fuera de cada bloque para que el
   origen y el final nunca aparezcan cortados dentro del lienzo visible. */
@media (min-width: 769px) {
  .featx-row::before {
    height: 760px;
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 11%, #000 82%, transparent 100%);
    mask-image: linear-gradient(to bottom, transparent 0%, #000 11%, #000 82%, transparent 100%);
  }
  .featx-row::after {
    height: 520px;
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 13%, #000 78%, transparent 100%);
    mask-image: linear-gradient(to bottom, transparent 0%, #000 13%, #000 78%, transparent 100%);
  }

  .feats-inner .featx-row:nth-of-type(1)::before { top: -310px; right: -70px; }
  .feats-inner .featx-row:nth-of-type(2)::before { top: -80px; left: -70px; }
  .feats-inner .featx-row:nth-of-type(2)::after  { bottom: -245px; right: -25px; }

  .feats-inner .featx-row:nth-of-type(3)::before { bottom: -310px; right: -55px; }
  .feats-inner .featx-row:nth-of-type(3)::after  { top: -245px; left: -20px; }

  .feats-inner .featx-row:nth-of-type(4)::before { top: -300px; left: -55px; }
  .feats-inner .featx-row:nth-of-type(4)::after  { bottom: -245px; right: -20px; }
}

/* Móvil: reflejos más cortos y con menor densidad visual. */
@media (max-width: 768px) {
  .featx-row::before {
    width: 155px;
    height: 250px;
    background-size:
      21px 100%, 2px 92%,
      12px 82%, 1.5px 78%,
      7px 66%, 1px 58%;
    background-position:
      0 0, 9px 0,
      56px 0, 61px 0,
      94px 0, 97px 0;
    filter: blur(2px) drop-shadow(0 0 6px rgba(12,82,157,0.13));
    opacity: 0.68;
  }
  .featx-row::after {
    width: 18px;
    height: 145px;
    background-size: 12px 100%, 1.5px 88%;
    background-position: 0 0, 5px 0;
    filter: blur(1.5px) drop-shadow(0 0 5px rgba(12,82,157,0.10));
    opacity: 0.55;
  }

  /* El primer destello nace fuera del borde superior de la sección para
     que en pantallas angostas no aparezca como un segmento recortado. */
  .feats-inner .featx-row:nth-of-type(1)::before {
    top: -175px;
    right: -18px;
    height: 350px;
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 9%, #000 84%, transparent 100%);
    mask-image: linear-gradient(to bottom, transparent 0%, #000 9%, #000 84%, transparent 100%);
  }
}

/* ══════════════════════════════════════════════════
   LETRA MÁS GRANDE EN MÓVIL — pedido del cliente (2ª vez)
   Bloque final para ganar la cascada. Ver mismo bloque en
   home/css/style.css (heredado por esta página) para el
   tamaño base del body y textos compartidos.
   ══════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .th-title { font-size: 32px; }
  .th-sub { font-size: 16.5px; line-height: 1.6; }

  .stat-num { font-size: 36px; }
  .stat-label { font-size: 12.5px; }

  .cmp-feature { font-size: 14.5px; }

  .featx-copy h3 { font-size: 20px; }
  .featx-copy p { font-size: 15.5px; }
  .featx-caption { font-size: 12px; }
}

/* ============================================================
   TYPE SCALE ALIGNMENT — match the visual weight of Home
   ============================================================ */
@media (min-width: 769px) {
  #tech-hero {
    min-height: 620px;
  }
  .th-eyebrow {
    font-size: 11.5px;
    padding: 6px 15px;
  }
  .th-title {
    max-width: 820px;
    font-size: clamp(44px, 5.5vw, 68px);
    line-height: 1.08;
    margin-bottom: 26px;
  }
  .th-sub {
    max-width: 680px;
    font-size: 18px;
    line-height: 1.65;
  }
  .stat-label {
    font-size: 14px;
  }
  .section-title-dark {
    font-size: clamp(30px, 3vw, 38px);
    line-height: 1.14;
    margin-bottom: 14px;
  }
  .compare-sub,
  .feats-sub {
    font-size: 16px;
    line-height: 1.55;
  }
  .cmp-h-them,
  .cmp-h-us {
    font-size: 12.5px;
  }
  .cmp-feature {
    font-size: 15.5px;
  }
  .cmp-no {
    font-size: 13.5px;
  }
  .cmp-yes {
    font-size: 18px;
  }
  .feats-inner {
    max-width: 1200px;
  }
  .featx-row {
    gap: 60px;
    margin-bottom: 84px;
  }
  .featx-caption {
    margin-top: 13px;
    font-size: 14px;
    line-height: 1.5;
  }
  .featx-num {
    font-size: 13px;
  }
  .featx-copy h3 {
    font-size: clamp(24px, 2.3vw, 30px);
    line-height: 1.2;
    margin-bottom: 16px;
  }
  .featx-copy p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 15px;
  }
  .featx-example {
    padding: 13px 18px;
    font-size: 15.5px !important;
    line-height: 1.65;
  }
  .tech-cta-home a {
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .th-title {
    font-size: 34px;
  }
  .cmp-feature {
    font-size: 15px;
  }
  .featx-caption {
    font-size: 13.5px;
    line-height: 1.5;
  }
  .featx-copy h3 {
    font-size: 22px;
  }
  .featx-copy p {
    font-size: 16px;
  }
  .featx-example {
    font-size: 14.5px !important;
  }
}
