:root {
      --bio: #0EB8AD;
      --bio-dim: rgba(14, 184, 173, .12);
      --bio-border: rgba(14, 184, 173, .3);
    }
    /* ── HERO ── */
    .hero-eq {
      position: relative;
      min-height: 100svh;
      display: flex;
      align-items: center;
      padding: 100px 0 80px;
      background: #050F0E;
      overflow: hidden;
    }
    .hero-eq-orb {
      position: absolute;
      right: -40px;
      top: 50%;
      transform: translateY(-50%);
      width: min(640px, 90vw);
      pointer-events: none;
      opacity: .18;
    }
    .hero-eq-orb img {
      width: 100%;
      height: auto;
      display: block;
    }
    .hero-eq-orb::after {
      content: '';
      position: absolute;
      inset: -20%;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(14, 184, 173, .3) 0%, transparent 70%);
    }
    .hero-eq-content {
      position: relative;
      z-index: 1;
      max-width: 600px;
    }
.hero-eq .hero-eyebrow {
      color: var(--bio);
    }
    .hero-eq .hero-title {
      color: var(--white);
      letter-spacing: -.01em;
    }
    .hero-eq .hero-sub {
      color: rgba(255, 255, 255, .75);
    }
    .eq-badge {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: var(--bio-dim);
      border: 1px solid var(--bio-border);
      border-radius: 99px;
      padding: 8px 20px;
      margin-bottom: 28px;
      font-size: .82rem;
      color: var(--bio);
      font-weight: 600;
      letter-spacing: .06em;
    }
    /* ── TECNOLOGIAS ── */
    .eq-tech {
      padding: var(--section-py) 0;
      background: var(--bg-alt);
    }
    .eq-tech-inner {
      display: grid;
      grid-template-columns: 1fr 1.1fr;
      gap: 64px;
      align-items: center;
    }
    @media (max-width: 860px) {
      .eq-tech-inner {
        grid-template-columns: 1fr;
        gap: 36px;
      }
    }
    .eq-tech-img {
      border-radius: var(--radius);
      overflow: hidden;
      aspect-ratio: 4/3;
      background: #06100F;
    }
    .eq-tech-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .eq-tech-texto .section-label {
      display: block;
      font-size: .72rem;
      font-weight: 600;
      letter-spacing: .14em;
      text-transform: uppercase;
      color: var(--bio);
      margin-bottom: 14px;
    }
    .eq-tech-texto h2 {
      font-family: var(--font-serif);
      font-size: clamp(1.8rem, 3.5vw, 2.6rem);
      font-weight: 500;
      color: var(--text);
      line-height: 1.15;
      margin-bottom: 20px;
    }
    .eq-tech-texto p {
      font-size: .93rem;
      color: var(--text-muted);
      line-height: 1.75;
    }
    .eq-tech-texto p+p {
      margin-top: 14px;
    }
    .eq-techs-list {
      display: flex;
      flex-direction: column;
      gap: 12px;
      margin-top: 24px;
    }
    .eq-tech-item {
      background: var(--bg-dark);
      border: 1px solid rgba(14, 184, 173, .15);
      border-radius: 10px;
      padding: 16px 20px;
    }
    .eq-tech-item h4 {
      font-family: var(--font-sans);
      font-size: .82rem;
      font-weight: 700;
      color: var(--bio);
      letter-spacing: .08em;
      text-transform: uppercase;
      margin-bottom: 4px;
    }
    .eq-tech-item p {
      font-size: .84rem;
      color: rgba(255, 255, 255, .6);
      line-height: 1.55;
      margin: 0;
    }
    /* ── SKUs ── */
    .eq-skus {
      padding: var(--section-py) 0;
      background: var(--bg-dark);
    }
    .eq-skus-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      margin-top: 48px;
    }
    @media (max-width: 860px) {
      .eq-skus-grid {
        grid-template-columns: 1fr;
      }
    }
    .eq-sku-card {
      border-radius: var(--radius);
      overflow: hidden;
      border: 1px solid rgba(255, 255, 255, .08);
      transition: border-color .25s;
    }
    .eq-sku-card:hover {
      border-color: var(--bio-border);
    }
    .eq-sku-img {
      aspect-ratio: 4/3;
      overflow: hidden;
      background: #040C0B;
    }
    .eq-sku-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .eq-sku-body {
      padding: 22px 20px 24px;
      background: #0A1F1E;
    }
    .eq-sku-badge {
      display: inline-block;
      font-size: .7rem;
      font-weight: 700;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: #fff;
      border-radius: 4px;
      padding: 3px 10px;
      margin-bottom: 12px;
    }
    .eq-sku-badge.s100 {
      background: #2D7A45;
    }
    .eq-sku-badge.s300 {
      background: #B8620A;
    }
    .eq-sku-badge.s500 {
      background: #1B5C9E;
    }
    .eq-sku-card h3 {
      font-family: var(--font-serif);
      font-size: 1.45rem;
      font-weight: 600;
      color: var(--white);
      margin-bottom: 6px;
    }
    .eq-sku-card .eq-sku-tag {
      font-size: .78rem;
      color: var(--bio);
      font-weight: 600;
      margin-bottom: 14px;
      display: block;
    }
    .eq-sku-specs {
      list-style: none;
      padding: 0;
      display: flex;
      flex-direction: column;
      gap: 6px;
    }
    .eq-sku-specs li {
      font-size: .82rem;
      color: rgba(255, 255, 255, .6);
      line-height: 1.45;
      display: flex;
      align-items: flex-start;
      gap: 8px;
    }
    .eq-sku-specs li::before {
      content: '·';
      color: var(--bio);
      flex-shrink: 0;
      font-weight: 700;
    }
    /* ── FICHA ── */
    .eq-ficha {
      padding: var(--section-py) 0;
      background: var(--bg-alt);
    }
    .eq-ficha-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: start;
    }
    @media (max-width: 860px) {
      .eq-ficha-inner {
        grid-template-columns: 1fr;
        gap: 40px;
      }
    }
    .eq-specs-list {
      display: flex;
      flex-direction: column;
      border: 1px solid rgba(14, 184, 173, .2);
      border-radius: var(--radius);
      overflow: hidden;
    }
    .eq-spec-row {
      display: grid;
      grid-template-columns: 160px 1fr;
      border-bottom: 1px solid rgba(14, 184, 173, .08);
    }
    .eq-spec-row:last-child {
      border-bottom: none;
    }
    .eq-spec-label {
      padding: 14px 18px;
      font-size: .75rem;
      font-weight: 600;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: var(--bio);
      background: rgba(14, 184, 173, .08);
      border-right: 1px solid rgba(14, 184, 173, .08);
    }
    .eq-spec-value {
      padding: 14px 18px;
      font-size: .88rem;
      color: var(--text-muted);
      line-height: 1.5;
    }
    /* ── CTA ── */
    .eq-cta {
      padding: 90px 0;
      background: var(--bg-dark);
      text-align: center;
    }
    .eq-cta h2 {
      font-family: var(--font-serif);
      font-size: clamp(2rem, 5vw, 3rem);
      font-weight: 500;
      color: var(--white);
      margin-bottom: 14px;
    }
    .eq-cta p {
      font-size: 1rem;
      color: rgba(255, 255, 255, .6);
      margin-bottom: 40px;
    }
    .eq-cta-btns {
      display: flex;
      gap: 16px;
      justify-content: center;
      flex-wrap: wrap;
    }
    .hero-eq .btn-primary,
    .eq-cta .btn-primary {
      background: var(--bio);
      color: #fff;
    }
    .hero-eq .btn-primary:hover,
    .eq-cta .btn-primary:hover {
      background: #0DA099;
    }
