/* ═══════════════════════════════════════════════════════════
   FEATURES PAGE STYLES
   ═══════════════════════════════════════════════════════════ */

.feat-detail{display:grid;grid-template-columns:1fr 1fr;gap:64px;align-items:center;padding:70px 0;border-bottom:1px solid var(--border);}
.feat-detail:last-child{border-bottom:none;}
.feat-detail.rev{direction:rtl;}
.feat-detail.rev>*{direction:ltr;}
.fd-img{background:linear-gradient(135deg,var(--orange-l),var(--orange-ll));border-radius:var(--radius-lg);padding:32px;display:flex;align-items:center;justify-content:center;min-height:280px;border:1px solid var(--border);position:relative;overflow:hidden;}
.fd-img::before{content:'';position:absolute;width:200px;height:200px;background:radial-gradient(circle,rgba(239,128,25,.18) 0%,transparent 70%);top:-30px;right:-30px;border-radius:50%;}
.fd-img::after{content:'';position:absolute;width:160px;height:160px;background:radial-gradient(circle,rgba(251,191,36,.15) 0%,transparent 70%);bottom:-20px;left:-20px;border-radius:50%;}
.fd-icon{font-size:4.5rem;position:relative;z-index:1;filter:drop-shadow(0 8px 16px rgba(239,128,25,.25));}
.fd-tag{display:inline-block;font-size:.72rem;font-weight:700;background:var(--orange-l);color:var(--orange-d);padding:4px 12px;border-radius:100px;letter-spacing:.05em;margin-bottom:12px;text-transform:uppercase;}
.fd-title{font-family:var(--h);font-size:1.6rem;font-weight:800;color:var(--text);letter-spacing:-.02em;margin-bottom:12px;}
.fd-desc{font-size:.925rem;color:var(--muted);line-height:1.8;margin-bottom:20px;}
.fd-pts{display:flex;flex-direction:column;gap:10px;}
.fd-pt{display:flex;align-items:flex-start;gap:10px;font-size:.875rem;color:var(--text2);}
.fd-pt::before{content:'✓';color:var(--green);font-weight:800;flex-shrink:0;font-size:.85rem;background:var(--green-l);width:18px;height:18px;border-radius:50%;display:flex;align-items:center;justify-content:center;}
