/* ══════════════════════════════════════════════════════════════════════════
   Features section — the alternating video/text rows.

   Lived inline in store-product.php until the Prism rows moved to
   /figma-to-after-effects; two pages render the same component now, so the
   rules live in one file rather than being copied into the second page and
   drifting from the first.
   ══════════════════════════════════════════════════════════════════════════ */
/* ── Features Section ─────────────────────────────────────── */
.sf-section{max-width:1100px;margin:0 auto;padding:0 24px 80px}
.sf-heading{font-family:'Orbitron',sans-serif;font-size:clamp(22px,3vw,30px);font-weight:700;color:#fff;text-align:center;margin-bottom:64px;position:relative}
.sf-heading::after{content:'';display:block;width:56px;height:3px;background:linear-gradient(90deg,#1E90FF,#2A7DD8);border-radius:2px;margin:14px auto 0}
.sf-feature{display:grid;grid-template-columns:1fr 1fr;gap:56px;align-items:center;padding:56px 0;border-bottom:1px solid rgba(255,255,255,.06)}
.sf-feature:last-child{border-bottom:none;padding-bottom:0}
.sf-feature.sf-reverse .sf-media{order:2}
[dir="rtl"] .sf-feature.sf-reverse .sf-media{order:0}
.sf-media{border-radius:14px;overflow:hidden;aspect-ratio:16/9;background:#0a0a0a;position:relative}
.sf-video{width:100%;height:100%;object-fit:cover;display:block;border-radius:14px}
.sf-placeholder{width:100%;height:100%;background:#0d0d16;border:1px solid rgba(30,144,255,.18);border-radius:14px;display:flex;align-items:center;justify-content:center}
.sf-placeholder i{font-size:52px;color:rgba(30,144,255,.25)}
.sf-feat-number{font-family:'Orbitron',sans-serif;font-size:10px;font-weight:700;letter-spacing:2.5px;color:rgba(30,144,255,.45);text-transform:uppercase;margin-bottom:10px}
.sf-feat-title{font-family:'Orbitron',sans-serif;font-size:clamp(18px,2.2vw,26px);font-weight:700;color:#fff;margin-bottom:14px;line-height:1.2}
.sf-feat-title-link{color:inherit;text-decoration:none;border-bottom:2px solid transparent;transition:border-color .2s,color .2s}
.sf-feat-title-link:hover{color:#1E90FF;border-bottom-color:rgba(30,144,255,.4)}
.sf-feat-desc{font-family:'Exo 2',sans-serif;font-size:15px;color:rgba(255,255,255,.48);line-height:1.75;margin-bottom:20px}
.sf-feat-bullets{list-style:none;display:flex;flex-direction:column;gap:11px}
.sf-feat-bullets li{display:flex;align-items:flex-start;gap:12px;font-family:'Exo 2',sans-serif;font-size:14px;color:rgba(255,255,255,.55);line-height:1.55}
.sf-feat-bullets li::before{content:'';display:block;width:6px;height:6px;border-radius:50%;background:#1E90FF;flex-shrink:0;margin-top:6px}
@media(max-width:768px){
  .sf-feature{grid-template-columns:1fr;gap:28px;padding:40px 0}
  .sf-feature.sf-reverse .sf-media{order:unset}
  [dir="rtl"] .sf-feature.sf-reverse .sf-media{order:unset}
  .sf-heading{margin-bottom:40px}
}
@media(max-width:480px){.sf-placeholder i{font-size:38px}}
