/*
 * NatTrade — home.css
 * أنماط الصفحة الرئيسية العامة
 * إصلاح: كانت مُضمَّنة في index.php كـ <style> inline بعد الـ Hero
 *
 * إصلاحات رئيسية:
 *  - توحيد --gold: #e8b84b (نفس hero.css) — كانت #f5c842 مختلفة
 *  - إزالة !important غير الضرورية
 *  - إضافة prefers-reduced-motion للعناصر العامة
 */

/* ── Reset محدود (بدون تأثير على #home) ── */
*, *::before, *::after {
  margin: 0; padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

/* ── متغيرات النظام (موحَّدة مع hero.css) ── */
:root {
  --gold:   #e8b84b;   /* إصلاح: كانت #f5c842 — الآن موحَّدة مع Hero */
  --gold2:  #d4a240;
  --cyan:   #00d4ff;
  --cyan2:  #0099cc;
  --green:  #00e676;
  --red:    #ff4444;
  --purple: #7c3aed;
  --bg:     #050a14;
  --card:   rgba(14,11,26,.75);
  --card2:  rgba(20,16,40,.8);
  --bdr:    rgba(232,184,75,.15);   /* إصلاح: موحَّد مع --gold الجديد */
  --bdr2:   rgba(0,212,255,.15);
  --muted:  rgba(232,224,240,.55);
}

/* ── أساس ── */
html { scroll-behavior: smooth; font-size: 15px; }
body {
  font-family: 'Cairo', sans-serif;
  background: #050a14; color: #e8e0f0;
  overflow-x: hidden; line-height: 1.7; min-height: 100vh;
}

/* ── عنصر مخفي بصرياً لقارئات الشاشة ── */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ── Layout ── */
.nt-wrap  { width: 100%; max-width: 1100px; margin: 0 auto; padding: 0 28px; }
section   { width: 100%; padding: 90px 0; position: relative; z-index: 1; background: transparent; }

/* ── Utility ── */
.u-mono   { font-family: 'Orbitron', monospace; }
.u-gold   { color: var(--gold); }
.u-cyan   { color: var(--cyan); }
.u-green  { color: var(--green); }
.u-red    { color: var(--red); }
.u-muted  { color: var(--muted); }

/* ── Divider ── */
.nt-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(232,184,75,.3), transparent);
  margin: 0; width: 100%;
}

/* ── Badge ── */
.nt-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(232,184,75,.08); border: 1px solid rgba(232,184,75,.25);
  color: var(--gold); padding: 6px 18px; border-radius: 30px;
  font-size: 13px; font-weight: 700; margin-bottom: 16px; letter-spacing: .5px;
  backdrop-filter: blur(8px); transition: box-shadow .3s, background .3s;
}
.nt-badge:hover { box-shadow: 0 0 20px rgba(232,184,75,.25); background: rgba(232,184,75,.14); }
.nt-badge--cyan { background: rgba(0,212,255,.07); border-color: rgba(0,212,255,.25); color: var(--cyan); }
.nt-badge--cyan:hover { box-shadow: 0 0 20px rgba(0,212,255,.25); }

/* ── Headings ── */
.nt-heading {
  font-size: clamp(26px,4.5vw,42px); font-weight: 800;
  line-height: 1.2; margin-bottom: 14px; letter-spacing: -.5px;
  transition: text-shadow .4s;
}
.nt-heading:hover { text-shadow: 0 0 30px rgba(232,184,75,.28), 0 0 55px rgba(232,184,75,.1); }
.nt-lead   { color: var(--muted); font-size: 15px; max-width: 600px; margin: 0 auto; line-height: 1.75; }
.nt-center { text-align: center; margin-bottom: 44px; }

/* ── Buttons ── */
.btn-nt-gold {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color: #050a14; font-weight: 800; font-size: 16px;
  padding: 15px 38px; border-radius: 50px;
  text-decoration: none; border: none; cursor: pointer;
  box-shadow: 0 4px 20px rgba(232,184,75,.25);
  transition: transform .25s, box-shadow .25s; position: relative; z-index: 1;
}
.btn-nt-gold:hover  { transform: translateY(-3px); box-shadow: 0 10px 35px rgba(232,184,75,.4); }
.btn-nt-gold:active { transform: translateY(0); }
.btn-nt-gold:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

.btn-nt-outline {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid rgba(232,184,75,.35); color: var(--gold);
  font-weight: 700; font-size: 15px; padding: 14px 30px; border-radius: 50px;
  text-decoration: none; background: transparent; backdrop-filter: blur(6px);
  transition: all .25s; cursor: pointer; position: relative; z-index: 1;
}
.btn-nt-outline:hover { background: rgba(232,184,75,.1); border-color: rgba(232,184,75,.6); transform: translateY(-2px); }
.btn-nt-outline:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

/* ── شريط الإحصائيات ── */
.stats-strip {
  width: 100%; background: rgba(14,11,26,.7);
  border-top: 1px solid var(--bdr); border-bottom: 1px solid var(--bdr);
  padding: 32px 0; backdrop-filter: blur(10px); position: relative; z-index: 1;
}
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px,1fr)); gap: 0; }
.stat-item  { text-align: center; padding: 8px 20px; border-left: 1px solid rgba(232,184,75,.1); transition: background .3s; }
.stat-item:last-child { border-left: none; }
.stat-item:hover { background: rgba(232,184,75,.04); }
.stat-num   { font-family: 'Orbitron', monospace; font-size: 26px; font-weight: 900; color: var(--gold); }
.stat-lbl   { font-size: 12px; color: var(--muted); margin-top: 5px; }

/* ── بطاقات ── */
.nt-card {
  background: rgba(14,11,26,.7); border: 1px solid rgba(232,184,75,.12);
  border-radius: 18px; padding: 26px;
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  transition: border-color .35s, transform .35s, box-shadow .35s;
}
.nt-card:hover { border-color: rgba(232,184,75,.38); transform: translateY(-5px); box-shadow: 0 12px 40px rgba(0,0,0,.35), 0 0 0 1px rgba(232,184,75,.08); }
.nt-card--cyan   { border-color: rgba(0,212,255,.15); }
.nt-card--cyan:hover { border-color: rgba(0,212,255,.42); box-shadow: 0 12px 40px rgba(0,212,255,.08); }
.nt-card--purple { border-color: rgba(124,58,237,.3); background: rgba(124,58,237,.06); }

/* ── Grid ── */
.g2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px,1fr)); gap: 22px; }
.g3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px,1fr)); gap: 20px; }

/* ── أزواج ── */
.pair-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(100px,1fr)); gap: 5px; }
.pair-tile { background: rgba(20,16,40,.75); border: 1px solid rgba(255,255,255,.07); border-radius: 16px; padding: 14px; text-align: center; backdrop-filter: blur(8px); transition: border-color .3s, transform .3s, box-shadow .3s; }
.pair-tile:hover { border-color: rgba(232,184,75,.3); transform: translateY(-4px); box-shadow: 0 8px 28px rgba(232,184,75,.1); }
.pair-emoji { font-size: 28px; margin-bottom: 4px; }
.pair-sym   { font-family: 'Orbitron', monospace; font-size: 13px; color: var(--gold); font-weight: 700; }
.pair-lev   { font-size: 11px; color: var(--muted); margin-top: 2px; }

/* ── Flow ── */
.nt-flow      { display: flex; align-items: center; gap: 0; flex-wrap: wrap; justify-content: center; margin: 26px 0; }
.nt-flow-node { background: rgba(20,16,40,.75); border: 1px solid rgba(255,255,255,.08); border-radius: 12px; padding: 12px 20px; font-size: 13px; text-align: center; min-width: 110px; backdrop-filter: blur(6px); transition: border-color .3s, background .3s; }
.nt-flow-node:hover { background: rgba(255,255,255,.05); border-color: rgba(255,255,255,.15); }
.nt-flow-node--gold { border-color: rgba(232,184,75,.4); color: var(--gold); font-weight: 700; }
.nt-flow-node--cyan { border-color: rgba(0,212,255,.3); color: var(--cyan); }
.nt-flow-arr  { color: var(--muted); padding: 0 8px; font-size: 20px; }

/* ── بوت ── */
.bot-top     { display: flex; align-items: center; gap: 16px; margin-bottom: 22px; padding-bottom: 20px; border-bottom: 1px solid rgba(255,255,255,.07); }
.bot-ico     { width: 56px; height: 56px; border-radius: 16px; display: flex; align-items: center; justify-content: center; font-size: 26px; flex-shrink: 0; }
.bot-ico--gold { background: rgba(232,184,75,.12); border: 1px solid rgba(232,184,75,.3); }
.bot-ico--cyan { background: rgba(0,212,255,.1); border: 1px solid rgba(0,212,255,.25); }
.bot-label   { font-family: 'Orbitron', monospace; font-size: 17px; font-weight: 900; }
.bot-sub     { font-size: 12px; color: var(--muted); margin-top: 4px; }

.score-row   { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.score-name  { font-size: 13px; color: var(--muted); }
.score-track { flex: 1; margin: 0 14px; height: 7px; background: rgba(255,255,255,.07); border-radius: 4px; overflow: hidden; }
.score-fill  { height: 100%; border-radius: 4px; transition: width .8s cubic-bezier(.22,1,.36,1); }
.score-pts   { font-family: 'Orbitron', monospace; font-size: 12px; font-weight: 700; min-width: 28px; text-align: left; }

.bot-grid    { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 18px; }
.bot-spec    { background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.07); border-radius: 12px; padding: 12px 14px; transition: border-color .3s, background .3s; }
.bot-spec:hover { background: rgba(255,255,255,.05); border-color: rgba(255,255,255,.12); }
.bot-spec-lbl { font-size: 11px; color: var(--muted); margin-bottom: 5px; }
.bot-spec-val { font-size: 14px; font-weight: 700; }

.prot-box    { background: rgba(255,68,68,.07); border: 1px solid rgba(255,68,68,.22); border-radius: 14px; padding: 16px 20px; margin-top: 18px; display: flex; align-items: flex-start; gap: 14px; }
.prot-ico    { font-size: 22px; flex-shrink: 0; margin-top: 2px; }
.prot-body   { font-size: 13px; line-height: 1.6; }
.prot-body strong { color: #ff6b6b; }

/* ── المستويات ── */
.lvl-flow { display: flex; align-items: center; gap: 0; margin: 30px 0; flex-wrap: wrap; }
.lvl-node { flex: 1; min-width: 130px; background: rgba(20,16,40,.75); border-radius: 14px; padding: 18px; text-align: center; border: 1px solid rgba(255,255,255,.07); backdrop-filter: blur(8px); transition: border-color .3s, transform .3s; }
.lvl-node:hover { border-color: rgba(232,184,75,.3); transform: translateY(-3px); }
.lvl-arrow { font-size: 22px; color: var(--gold); opacity: .45; padding: 0 8px; flex-shrink: 0; }
.lvl-num   { font-family: 'Orbitron', monospace; font-size: 26px; font-weight: 900; }
.lvl-txt   { font-size: 12px; color: var(--muted); margin-top: 6px; }

.pts-note  { background: rgba(232,184,75,.06); border: 1px solid rgba(232,184,75,.22); border-radius: 14px; padding: 18px 22px; margin-top: 22px; font-size: 14px; line-height: 1.65; }
.pts-note strong { color: var(--gold); }

/* ── مجتمع ── */
.comm-row   { display: flex; align-items: flex-start; gap: 16px; padding: 20px; background: rgba(20,16,40,.75); border-radius: 14px; border: 1px solid rgba(255,255,255,.07); backdrop-filter: blur(8px); transition: border-color .3s, transform .3s, box-shadow .3s; }
.comm-row:hover { border-color: rgba(0,212,255,.3); transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,212,255,.08); }
.comm-ico   { width: 44px; height: 44px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; background: rgba(0,212,255,.1); border: 1px solid rgba(0,212,255,.2); }
.comm-title { font-weight: 700; font-size: 14px; margin-bottom: 5px; }
.comm-desc  { font-size: 13px; color: var(--muted); line-height: 1.55; }

/* ── باقات الأسعار ── */
.pkg { background: rgba(14,11,26,.8); border: 1px solid var(--bdr); border-radius: 20px; padding: 32px 26px; position: relative; overflow: hidden; backdrop-filter: blur(12px); transition: transform .35s, box-shadow .35s, border-color .35s; }
.pkg:hover { transform: translateY(-6px); box-shadow: 0 16px 50px rgba(0,0,0,.4); }
.pkg--star { border-color: rgba(232,184,75,.45); background: linear-gradient(160deg, rgba(15,12,30,.9), rgba(21,15,36,.9)); }
.pkg--star:hover { box-shadow: 0 16px 50px rgba(232,184,75,.15); }
.pkg--star::before { content: 'الأكثر طلبًا'; position: absolute; top: 18px; left: 18px; background: var(--gold); color: #050a14; font-weight: 800; font-size: 11px; padding: 4px 14px; border-radius: 20px; }
.pkg-name   { font-family: 'Orbitron', monospace; font-size: 21px; font-weight: 900; margin-bottom: 8px; }
.pkg-price  { font-family: 'Orbitron', monospace; font-size: 36px; font-weight: 900; color: var(--gold); margin-bottom: 5px; }
.pkg-period { font-size: 13px; color: var(--muted); }
.pkg-list   { list-style: none; margin: 22px 0; display: flex; flex-direction: column; gap: 11px; }
.pkg-list li { display: flex; align-items: flex-start; gap: 11px; font-size: 14px; }
.pkg-list li .ok { color: var(--green); flex-shrink: 0; margin-top: 3px; }
.pkg-list li .no { color: var(--red); flex-shrink: 0; margin-top: 3px; }

/* ── خطوات البداية ── */
.steps-col { display: flex; flex-direction: column; gap: 0; position: relative; }
.steps-col::before { content: ''; position: absolute; right: 23px; top: 46px; bottom: 46px; width: 1px; background: linear-gradient(to bottom, transparent, rgba(232,184,75,.25), transparent); }
.step-row   { display: flex; gap: 20px; padding: 22px 0; align-items: flex-start; }
.step-circle { width: 48px; height: 48px; border-radius: 50%; background: rgba(20,16,40,.9); border: 2px solid var(--gold); display: flex; align-items: center; justify-content: center; font-family: 'Orbitron', monospace; font-weight: 900; font-size: 16px; color: var(--gold); flex-shrink: 0; position: relative; z-index: 1; box-shadow: 0 0 16px rgba(232,184,75,.2); transition: box-shadow .3s, background .3s; }
.step-row:hover .step-circle { box-shadow: 0 0 28px rgba(232,184,75,.4); background: rgba(232,184,75,.1); }
.step-content { padding-top: 10px; }
.step-ttl   { font-weight: 700; font-size: 15px; margin-bottom: 6px; }
.step-dsc   { font-size: 13px; color: var(--muted); line-height: 1.65; }

/* ── شفافية ── */
#honesty { background: rgba(14,11,26,.6) !important; border-top: 1px solid var(--bdr); border-bottom: 1px solid var(--bdr); backdrop-filter: blur(12px); }
.honest-cols  { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px,1fr)); gap: 0; }
.honest-col   { padding: 32px 30px; border-left: 1px solid rgba(255,255,255,.07); transition: background .3s; }
.honest-col:last-child { border-left: none; }
.honest-col:hover { background: rgba(255,255,255,.02); }
.honest-col-ttl { font-size: 15px; font-weight: 800; margin-bottom: 18px; padding-bottom: 12px; border-bottom: 1px solid rgba(255,255,255,.07); }
.honest-item  { display: flex; align-items: flex-start; gap: 11px; margin-bottom: 14px; font-size: 13px; line-height: 1.6; }
.honest-icon  { flex-shrink: 0; font-size: 14px; margin-top: 3px; }

/* ── تحذيرات ── */
.warn-box  { background: rgba(255,68,68,.06); border: 1px solid rgba(255,68,68,.2); border-radius: 14px; padding: 20px 24px; margin-top: 30px; }
.warn-ttl  { color: #ff6b6b; font-weight: 800; font-size: 15px; margin-bottom: 12px; display: flex; align-items: center; gap: 8px; }
.warn-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.warn-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; color: rgba(232,224,240,.75); }
.warn-list li::before { content: '⚠'; flex-shrink: 0; }

/* ── Reveal animation ── */
.reveal   { opacity: 0; transform: translateY(30px); transition: opacity .75s cubic-bezier(.22,1,.36,1), transform .75s cubic-bezier(.22,1,.36,1); }
.revealed { opacity: 1; transform: translateY(0); }

/* ── CTA نهائي ── */
#cta-final { text-align: center; padding: 100px 20px; position: relative; overflow: hidden; }
#cta-final::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(232,184,75,.08) 0%, transparent 70%); pointer-events: none; }
.cta-big   { font-size: clamp(28px,5vw,48px); font-weight: 800; margin-bottom: 18px; }

/* ── نموذج التواصل ── */
#contact      { padding: 90px 0; }
.contact-shell { max-width: 780px; margin: 0 auto; }
.cf-card { background: rgba(14,11,26,.75); border: 1px solid rgba(232,184,75,.15); border-radius: 22px; padding: 40px 36px; backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); transition: border-color .3s, box-shadow .3s; }
.cf-card:hover { border-color: rgba(232,184,75,.28); box-shadow: 0 12px 48px rgba(0,0,0,.35); }
.cf-row   { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 18px; }
.cf-field { display: flex; flex-direction: column; gap: 7px; }
.cf-lbl   { font-size: 13px; font-weight: 600; color: rgba(232,224,240,.75); letter-spacing: .3px; }
.cf-inp, .cf-txt { width: 100%; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); border-radius: 12px; padding: 12px 16px; color: #e8e0f0; font-family: 'Almarai', sans-serif; font-size: 14px; outline: none; transition: border-color .3s, box-shadow .3s, background .3s; direction: rtl; }
.cf-inp::placeholder, .cf-txt::placeholder { color: rgba(232,224,240,.3); }
.cf-inp:focus, .cf-txt:focus { border-color: rgba(232,184,75,.5); box-shadow: 0 0 0 3px rgba(232,184,75,.1); background: rgba(255,255,255,.08); }
.cf-txt   { resize: vertical; min-height: 130px; line-height: 1.65; }
.cf-btn   { display: inline-flex; align-items: center; gap: 10px; background: linear-gradient(135deg, var(--gold), var(--gold2)); color: #050a14; font-weight: 800; font-size: 15px; padding: 14px 42px; border-radius: 50px; border: none; cursor: pointer; box-shadow: 0 4px 20px rgba(232,184,75,.25); transition: transform .25s, box-shadow .25s; font-family: 'Almarai', sans-serif; }
.cf-btn:hover { transform: translateY(-3px); box-shadow: 0 10px 35px rgba(232,184,75,.4); }
.cf-btn:active { transform: translateY(0); }
.cf-btn:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
.cf-btn:disabled { opacity: .7; cursor: not-allowed; transform: none; }
.cf-alert { padding: 12px 18px; border-radius: 12px; font-size: 14px; margin-bottom: 20px; display: flex; align-items: center; gap: 10px; }
.cf-alert--ok  { background: rgba(0,230,118,.1); border: 1px solid rgba(0,230,118,.3); color: #00e676; }
.cf-alert--err { background: rgba(255,68,68,.1); border: 1px solid rgba(255,68,68,.3); color: #ff6b6b; }
.ci-grid  { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px,1fr)); gap: 18px; margin-top: 36px; }
.ci-tile  { background: rgba(14,11,26,.7); border: 1px solid rgba(255,255,255,.08); border-radius: 16px; padding: 24px 20px; text-align: center; backdrop-filter: blur(10px); transition: transform .3s, border-color .3s, box-shadow .3s; }
.ci-tile:hover { transform: translateY(-5px); border-color: rgba(0,212,255,.3); box-shadow: 0 8px 28px rgba(0,212,255,.1); }
.ci-icon  { font-size: 32px; margin-bottom: 12px; }
.ci-ttl   { font-weight: 700; font-size: 14px; margin-bottom: 8px; }
.ci-info  { font-size: 13px; color: var(--muted); line-height: 1.65; }

/* ── Footer ── */
footer { background: rgba(10,8,20,.9) !important; border-top: 1px solid var(--bdr); padding: 32px 20px; text-align: center; font-size: 13px; color: var(--muted); backdrop-filter: blur(12px); position: relative; z-index: 1; }
footer strong { color: var(--gold); }
footer a { transition: color .2s; }
footer a:hover { color: var(--gold) !important; }

/* ── FAQ ── */
.feature-card { background: rgba(14,11,26,.7); border: 1px solid rgba(232,184,75,.12); border-radius: 18px; padding: 26px; backdrop-filter: blur(12px); transition: border-color .35s, transform .35s, box-shadow .35s; position: relative; }
.feature-card:hover { border-color: rgba(232,184,75,.38); transform: translateY(-5px); box-shadow: 0 12px 40px rgba(0,0,0,.35); }
.feature-card h5 { font-weight: 700; font-size: 15px; margin-bottom: 10px; color: var(--gold); }

/* ── نص متدرج ── */
.gradient-text { background: linear-gradient(135deg, var(--gold), #00d4ff); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

/* ── Navbar dropdown ── */
.navbar .dropdown-menu { background: rgba(20,20,35,.95); backdrop-filter: blur(12px); border: 1px solid rgba(168,85,247,.3); border-radius: 16px; padding: 12px; min-width: 240px; box-shadow: 0 20px 40px rgba(0,0,0,.4); margin-top: 15px; animation: _ntFadeDown .3s ease; }
.navbar .dropdown-item { color: #e5e7eb; border-radius: 12px; padding: 10px 14px; transition: all .25s ease; font-weight: 500; }
.navbar .dropdown-item:hover { background: linear-gradient(135deg, #7C3AED, #A855F7); color: #fff; transform: translateX(-4px); }

/* ── Loading spinner ── */
.loading-spinner { display: inline-block; width: 16px; height: 16px; border: 2px solid rgba(0,0,0,.3); border-top-color: #050a14; border-radius: 50%; animation: _spin .6s linear infinite; }
@keyframes _spin       { to { transform: rotate(360deg); } }
@keyframes _ntFadeDown { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
@keyframes float       { 0%,100%{ transform: translateY(0); } 50%{ transform: translateY(-10px); } }
@keyframes _ntRipple   { to { transform: scale(2.2); opacity: 0; } }

/* ── Mobile ── */
@media (max-width: 768px) {
  section         { padding: 64px 0; }
  .honest-cols    { grid-template-columns: 1fr; }
  .honest-col     { border-left: none; border-bottom: 1px solid rgba(255,255,255,.07); }
  .stats-grid     { grid-template-columns: repeat(2,1fr); }
  .lvl-flow       { flex-direction: column; align-items: stretch; }
  .lvl-arrow      { transform: rotate(90deg); align-self: center; }
  .steps-col::before { right: 19px; opacity: .5; }
  .g2, .g3        { grid-template-columns: 1fr; }
  .pair-grid      { grid-template-columns: repeat(2,1fr); }
  .nt-flow        { gap: 6px; }
  .nt-flow-node   { min-width: 80px; padding: 8px 10px; font-size: 11px; }
  .nt-flow-arr    { padding: 0 3px; font-size: 14px; }
  .nt-wrap        { padding: 0 16px; }
  .cf-row         { grid-template-columns: 1fr; }
  .cf-card        { padding: 28px 20px; }
}
@media (max-width: 480px) {
  .pair-grid { grid-template-columns: 1fr 1fr; }
  .bot-grid  { grid-template-columns: 1fr 1fr; }
}

/* ── prefers-reduced-motion ── */
@media (prefers-reduced-motion: reduce) {
  .reveal          { transition: none !important; opacity: 1; transform: none; }
  .nt-card,
  .pair-tile,
  .comm-row,
  .btn-nt-gold,
  .btn-nt-outline,
  .nt-badge,
  .feature-card    { transition: none !important; }
  .score-fill      { transition: none !important; }
  @keyframes float { 0%,100%{ transform: none; } }
}

/* ══════════════ تحسينات الهاتف ══════════════ */

/* حجم خط أساسي مناسب للهاتف */
@media (max-width: 768px) {
  html { font-size: 14px; }

  /* padding أقل على الأقسام */
  section { padding: 48px 0; }
  .nt-wrap { padding: 0 14px; }

  /* heading أصغر */
  .nt-heading { font-size: clamp(22px,6vw,32px); }
  .nt-lead    { font-size: 14px; }

  /* stats strip — 2 في صف */
  .stats-grid { grid-template-columns: repeat(2,1fr); gap: 0; }
  .stats-strip { padding: 12px 0; }
  .stat-item  { border-left: none; border-bottom: 1px solid rgba(232,184,75,.1); padding: 6px 4px; }
  .stat-num   { font-size: 16px; }
  .stat-lbl   { font-size: 10px; }

  /* بطاقات — عمود واحد */
  .g2 { grid-template-columns: 1fr; gap: 14px; }
  .g3 { grid-template-columns: repeat(2,1fr); gap: 10px; }

  /* pair grid — 2 في صف */
  .pair-grid { grid-template-columns: repeat(2,1fr); gap: 8px; }
  .pair-tile { padding: 12px 8px; }
  .pair-emoji { font-size: 22px; }

  /* flow — عمودي */
  .nt-flow { flex-direction: column; align-items: stretch; gap: 4px; }
  .nt-flow-node { min-width: unset; text-align: center; }
  .nt-flow-arr  { transform: rotate(90deg); align-self: center; }

  /* باقات */
  .pkg { padding: 24px 18px; }
  .pkg-price { font-size: 28px; }

  /* خطوات */
  .steps-col::before { display: none; }
  .step-row   { gap: 14px; padding: 16px 0; }
  .step-circle { width: 40px; height: 40px; font-size: 14px; }

  /* نموذج التواصل */
  .cf-card { padding: 22px 14px; border-radius: 16px; }
  .cf-row  { grid-template-columns: 1fr; gap: 12px; }
  .cf-inp, .cf-txt { font-size: 16px; } /* 16px يمنع zoom تلقائي في iOS */

  /* buttons */
  .btn-nt-gold, .btn-nt-outline { padding: 13px 24px; font-size: 15px; width: 100%; justify-content: center; }

  /* honest cols */
  .honest-cols { grid-template-columns: 1fr; }
  .honest-col  { border-left: none; border-bottom: 1px solid rgba(255,255,255,.07); padding: 22px 0; }

  /* lvl flow */
  .lvl-flow  { flex-direction: column; }
  .lvl-arrow { transform: rotate(90deg); align-self: center; }
  .lvl-node  { min-width: unset; }

  /* comm-row */
  .comm-row { padding: 14px; gap: 12px; }

  /* bot-grid */
  .bot-grid { grid-template-columns: 1fr 1fr; }

  /* FAQ */
  .feature-card { padding: 18px; }
  .feature-card h5 { font-size: 14px; }

  /* ci-grid */
  .ci-grid { grid-template-columns: 1fr; gap: 12px; }
}

/* شاشات صغيرة جداً */
@media (max-width: 380px) {
  .nt-heading { font-size: 20px; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .pair-grid  { grid-template-columns: 1fr 1fr; }
  .pkg-price  { font-size: 24px; }
  .btn-nt-gold, .btn-nt-outline { padding: 12px 18px; font-size: 14px; }
}

/* منع zoom على iOS عند focus على input */
input, textarea, select {
  font-size: 16px !important;
}

/* تحسين اللمس */
a, button, [onclick] {
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}