/* ============================================================
   RowadAI — Home Page CSS v2.0
   Premium Dark · Glass Cards · Elevated Design
   ============================================================ */
 
@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans+Arabic:wght@300;400;500;600;700&family=Cairo:wght@700;900&display=swap');
 
:root {
  --bg:       #04040c;
  --bg2:      #070712;
  --card:     rgba(14,14,28,.8);
  --card-solid: #0d0d1e;
  --surface:  rgba(20,20,40,.6);
  --border:   rgba(99,102,241,.12);
  --border2:  rgba(99,102,241,.25);
  --border3:  rgba(255,255,255,.06);
  --text:     #f0f0ff;
  --muted:    #7070a0;
  --muted2:   #a0a0c0;
  --accent:   #6366f1;
  --accent2:  #4f46e5;
  --accent3:  #818cf8;
  --success:  #10b981;
  --teal:     #14b8a6;
  --amber:    #f59e0b;
  --rose:     #f43f5e;
  --container: 1100px;
 
  /* Glass effect */
  --glass: rgba(255,255,255,.03);
  --glass-border: rgba(255,255,255,.07);
  --glass-hover: rgba(255,255,255,.06);
 
  /* Shadows */
  --sh-card: 0 0 0 1px rgba(99,102,241,.1), 0 8px 32px rgba(0,0,0,.4), inset 0 1px 0 rgba(255,255,255,.05);
  --sh-btn:  0 4px 20px rgba(99,102,241,.4);
  --sh-glow: 0 0 40px rgba(99,102,241,.15);
  
  /* إضافة transitions سلسة */
  --transition: all .3s cubic-bezier(0.4, 0, 0.2, 1);
}
 
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
 
body, .home-landing {
  font-family: 'IBM Plex Sans Arabic', sans-serif;
  background: var(--bg);
  color: var(--text);
  direction: rtl;
  line-height: 1.65;
  overflow-x: hidden;
}
 
.site-header { display: none !important; }
.site-title   { display: none !important; }
 
/* ══════════════════════════════
   BACKGROUNDS
══════════════════════════════ */
.home-grid-bg {
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(99,102,241,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(99,102,241,.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%);
}
/* Noise grain */
.home-grid-bg::after {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: .018; pointer-events: none;
}
 
.home-orb { position: fixed; border-radius: 50%; pointer-events: none; z-index: 0; }
.orb-1 {
  width: 900px; height: 900px; top: -350px; right: -300px;
  background: radial-gradient(circle at 30% 40%, rgba(99,102,241,.1) 0%, rgba(79,70,229,.04) 40%, transparent 70%);
  animation: orbPulse 8s ease-in-out infinite alternate;
}
.orb-2 {
  width: 600px; height: 600px; bottom: -200px; left: -200px;
  background: radial-gradient(circle, rgba(20,184,166,.07) 0%, transparent 65%);
  animation: orbFloat 12s ease-in-out infinite alternate;
}
.orb-3 {
  width: 400px; height: 400px; top: 50%; left: 40%;
  background: radial-gradient(circle, rgba(99,102,241,.05) 0%, transparent 65%);
  animation: orbFloat2 16s ease-in-out infinite alternate;
}
@keyframes orbFloat  { to { transform: translate(70px, -70px); } }
@keyframes orbFloat2 { to { transform: translate(-50px, 50px); } }
@keyframes orbPulse  { to { transform: scale(1.08); opacity: .85; } }
 
/* ══════════════════════════════
   LAYOUT
══════════════════════════════ */
.wrap { max-width: var(--container); margin: 0 auto; padding: 0 24px; position: relative; z-index: 1; }
.sec  { padding: 80px 0; }
 
/* ══════════════════════════════
   LOGIN BTN
══════════════════════════════ */
.home-login-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 16px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  background: var(--glass);
  color: var(--muted2);
  border: 1px solid var(--glass-border);
  transition: all .25s;
}
.home-login-btn:hover {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  transform: translateY(-1px);
}
 
/* ══════════════════════════════
   BUTTONS
══════════════════════════════ */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; padding: 13px 24px; border-radius: 14px;
  font-weight: 700; font-size: 14px; text-decoration: none;
  border: none; cursor: pointer;
  transition: all .22s; font-family: 'IBM Plex Sans Arabic', sans-serif;
  white-space: nowrap; position: relative; overflow: hidden;
}
.btn-primary {
  background: linear-gradient(135deg, var(--accent2), var(--accent));
  color: #fff;
  box-shadow: var(--sh-btn);
  transition: var(--transition);
}
.btn-primary::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.15), transparent);
  opacity: 0; transition: opacity .22s;
}
.btn-primary:hover { 
  transform: translateY(-3px) scale(1.02); 
  box-shadow: 0 12px 36px rgba(99,102,241,.6);
  background: linear-gradient(135deg, var(--accent), var(--accent3));
}
.btn-primary:hover::before { opacity: 1; }
.btn-primary:active { transform: translateY(-1px) scale(0.98); }
 
.btn-outline {
  background: var(--glass); 
  color: var(--muted2);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(12px);
  transition: var(--transition);
}
.btn-outline:hover { 
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(99,102,241,.08);
  box-shadow: 0 4px 16px rgba(99,102,241,.2);
}
 
.btn-wa {
  background: linear-gradient(135deg, #128c7e, #25d366);
  color: #fff; 
  box-shadow: 0 4px 20px rgba(37,211,102,.3);
  transition: var(--transition);
}
.btn-wa:hover { 
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 32px rgba(37,211,102,.5);
}
.btn-wa svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
 
/* ══════════════════════════════
   SECTION LABELS
══════════════════════════════ */
.sec-tag {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(99,102,241,.08);
  border: 1px solid rgba(99,102,241,.18);
  border-radius: 100px; padding: 5px 14px;
  font-size: 11px; color: var(--accent3); font-weight: 700;
  margin-bottom: 18px; letter-spacing: .6px; text-transform: uppercase;
}
.sec-h {
  font-family: 'Cairo', sans-serif;
  font-weight: 900; font-size: clamp(28px, 4.5vw, 46px);
  letter-spacing: -.8px; line-height: 1.6; margin-bottom: 14px;
}
.sec-h .hl {
  background: linear-gradient(135deg, var(--accent3), var(--accent), #c4b5fd);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.sec-s {
  font-size: 16px; color: var(--muted2); max-width: 480px;
  line-height: 1.9; letter-spacing: 0.3px; margin-bottom: 52px;
  text-align: center; margin-inline: auto;
}
.sec-center { text-align: center; }
.sec-center .sec-s { margin-inline: auto; }
 
/* ══════════════════════════════
   NAV
══════════════════════════════ */
.home-nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(4,4,12,.75); backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid var(--border3);
}
.home-nav-inner {
  max-width: var(--container); margin: 0 auto; padding: 0 24px;
  height: 64px; display: flex; align-items: center;
  justify-content: space-between; gap: 20px;
}
 
/* Logo */
.home-logo-wrap { display: flex; align-items: center; text-decoration: none; flex-shrink: 0; }
.home-logo-img  { height: 36px; width: auto; object-fit: contain; }
 
.home-nl { display: flex; align-items: center; gap: 32px; list-style: none; }
.home-nl a {
  font-size: 13px; color: var(--muted2); text-decoration: none;
  transition: color .2s; position: relative;
}
.home-nl a::after {
  content: ''; position: absolute; bottom: -2px; right: 0;
  width: 0; height: 1px; background: var(--accent3);
  transition: width .25s;
}
.home-nl a:hover { color: var(--text); }
.home-nl a:hover::after { width: 100%; }
.home-nav-r { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
 
/* ══════════════════════════════
   HERO
══════════════════════════════ */
.home-hero { padding: 120px 0 88px; text-align: center; }
 
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(16,185,129,.08);
  border: 1px solid rgba(16,185,129,.18);
  border-radius: 100px; padding: 7px 18px;
  font-size: 12px; color: var(--success); font-weight: 700;
  margin-bottom: 32px; letter-spacing: .3px;
  animation: fadeUp .5s ease both;
}
.hero-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--success); animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(16,185,129,.5); }
  50%      { box-shadow: 0 0 0 8px rgba(16,185,129,0); }
}
.home-hero h1 {
  font-family: 'Cairo', sans-serif;
  font-size: clamp(40px, 7vw, 80px);
  font-weight: 900; line-height: 1.6;
  letter-spacing: -2.5px; margin-bottom: 22px;
  animation: fadeUp .5s .08s ease both;
}
.home-hero h1 .line1 { display: block; color: var(--text); }
.home-hero h1 .grad  {
  display: block;
  background: linear-gradient(135deg, #93c5fd 0%, var(--accent3) 35%, var(--accent) 65%, #c4b5fd 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 24px rgba(99,102,241,.4));
}
 
.home-hero-sub {
  font-size: 18px; color: var(--muted2); max-width: 560px;
  margin: 0 auto 48px; line-height: 1.9; letter-spacing: 0.4px;
  animation: fadeUp .5s .16s ease both;
}
.home-hero-actions {
  display: flex; justify-content: center; gap: 12px; flex-wrap: wrap;
  animation: fadeUp .5s .24s ease both; margin-bottom: 72px;
}
 
/* Hero stats */
.hero-stats {
  display: inline-grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border3);
  border: 1px solid var(--border);
  border-radius: 24px; 
  overflow: hidden;
  animation: fadeUp .6s .32s ease both;
  box-shadow: 0 8px 32px rgba(99,102,241,.15);
}
.hs {
  background: linear-gradient(135deg, rgba(99,102,241,.04), rgba(20,184,166,.02));
  padding: 28px 32px; 
  text-align: center;
  transition: var(--transition);
  border-right: 1px solid var(--border3);
}
.hs:last-child { border-right: none; }
.hs:hover { 
  background: rgba(99,102,241,.1);
  transform: translateY(-2px);
}
.hs-n {
  font-family: 'Cairo', sans-serif;
  font-size: 32px; 
  font-weight: 900; 
  color: var(--text);
  line-height: 1; 
  margin-bottom: 6px;
}
.hs-n em { 
  font-style: normal; 
  color: var(--accent3); 
  font-size: 18px;
}
.hs-l    { 
  font-size: 13px; 
  color: var(--muted2);
  font-weight: 500;
}
 
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
 
/* ══════════════════════════════
   PRODUCTS
══════════════════════════════ */
.products-grid {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 20px;
}
 
/* Glass card base */
.glass-card {
  background: var(--card);
  border: 1px solid var(--border3);
  border-radius: 24px;
  backdrop-filter: blur(20px);
  box-shadow: var(--sh-card);
  transition: transform .3s, box-shadow .3s, border-color .3s;
}
.glass-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 0 1px rgba(99,102,241,.2), 0 20px 60px rgba(0,0,0,.5), var(--sh-glow);
  border-color: rgba(99,102,241,.2);
}
 
/* Main product card */
.pc-main {
  padding: 44px;
  position: relative; overflow: hidden;
}
.pc-main::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(99,102,241,.6), rgba(20,184,166,.4), transparent);
}
.pc-main::after {
  content: '';
  position: absolute; top: -80px; right: -80px;
  width: 240px; height: 240px; border-radius: 50%;
  background: radial-gradient(circle, rgba(99,102,241,.08) 0%, transparent 65%);
  pointer-events: none;
}
 
.pc-live-tag {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(16,185,129,.08); border: 1px solid rgba(16,185,129,.2);
  border-radius: 100px; padding: 5px 13px;
  font-size: 11px; color: var(--success); font-weight: 700;
  margin-bottom: 28px; letter-spacing: .4px;
}
.pc-live-dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--success); animation: pulse 1.5s infinite;
}
 
/* Product icon — بدل emoji بسيط */
.pc-icon-wrap {
  width: 56px; height: 56px; border-radius: 16px;
  display: grid; place-items: center; margin-bottom: 22px;
  position: relative;
}
.pc-icon-wrap.stores {
  background: linear-gradient(135deg, rgba(99,102,241,.2), rgba(79,70,229,.1));
  border: 1px solid rgba(99,102,241,.25);
  box-shadow: 0 0 20px rgba(99,102,241,.15);
}
.pc-icon-wrap svg { width: 26px; height: 26px; }
 
.pc-title {
  font-family: 'Cairo', sans-serif;
  font-size: 26px; font-weight: 900; letter-spacing: -.5px;
  margin-bottom: 12px; color: var(--text);
}
.pc-desc {
  font-size: 15px; color: var(--muted2); line-height: 1.75;
  margin-bottom: 30px; max-width: 400px;
}
 
/* Feature list */
.pc-feats { list-style: none; display: flex; flex-direction: column; gap: 11px; margin-bottom: 36px; }
.pc-feats li {
  display: flex; align-items: center; gap: 11px;
  font-size: 14px; color: var(--muted2);
}
.feat-check {
  width: 20px; height: 20px; border-radius: 6px; flex-shrink: 0;
  background: rgba(16,185,129,.1); border: 1px solid rgba(16,185,129,.2);
  display: grid; place-items: center;
}
.feat-check svg { width: 11px; height: 11px; }
.pc-actions { display: flex; gap: 10px; flex-wrap: wrap; }
 
/* Custom solution card */
.pc-custom {
  padding: 36px; display: flex; flex-direction: column;
}
 
.custom-visual {
  flex: 1; background: rgba(255,255,255,.02);
  border: 1px solid var(--border3); border-radius: 16px;
  padding: 18px; margin-bottom: 28px;
  display: flex; flex-direction: column; gap: 8px;
}
.cv-item {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 14px; border-radius: 12px;
  background: rgba(255,255,255,.02); border: 1px solid transparent;
  transition: all .2s; cursor: default;
}
.cv-item:hover {
  background: rgba(99,102,241,.06);
  border-color: rgba(99,102,241,.15);
}
.cv-icon-box {
  width: 34px; height: 34px; border-radius: 9px; flex-shrink: 0;
  display: grid; place-items: center; font-size: 16px;
}
.cv-icon-box.med   { background: rgba(244,63,94,.1); border: 1px solid rgba(244,63,94,.15); }
.cv-icon-box.corp  { background: rgba(245,158,11,.1); border: 1px solid rgba(245,158,11,.15); }
.cv-icon-box.other { background: rgba(99,102,241,.1); border: 1px solid rgba(99,102,241,.15); }
.cv-info { flex: 1; }
.cv-name { font-size: 13px; font-weight: 600; color: var(--text); }
.cv-desc { font-size: 11px; color: var(--muted); margin-top: 2px; }
.cv-arr  {
  width: 22px; height: 22px; border-radius: 6px;
  background: rgba(255,255,255,.04); border: 1px solid var(--border3);
  display: grid; place-items: center;
  font-size: 11px; color: var(--muted);
}
.cv-divider {
  text-align: center; font-size: 10px; color: var(--muted);
  padding: 2px 0; letter-spacing: 1px;
}
 
.pc-custom-title {
  font-family: 'Cairo', sans-serif;
  font-size: 22px; font-weight: 900; margin-bottom: 9px;
}
.pc-custom-desc {
  font-size: 14px; color: var(--muted2); line-height: 1.7; margin-bottom: 24px;
}
.btn-custom {
  width: 100%; background: var(--glass);
  border: 1px solid var(--glass-border); border-radius: 14px;
  padding: 14px; font-size: 14px; font-weight: 600;
  font-family: 'IBM Plex Sans Arabic', sans-serif;
  color: var(--muted2); cursor: pointer; transition: all .22s;
  display: flex; align-items: center; justify-content: center; gap: 9px;
}
.btn-custom:hover {
  background: rgba(99,102,241,.08);
  border-color: var(--border2); color: var(--accent3);
  box-shadow: 0 0 20px rgba(99,102,241,.1);
}
 
/* ══════════════════════════════
   WHY — 6 ميزات
══════════════════════════════ */
.why-grid { 
  display: grid; 
  grid-template-columns: repeat(3, 1fr); 
  gap: 20px;
}
 
.wc {
  background: var(--card); 
  border: 1px solid var(--border3);
  border-radius: 20px; 
  padding: 28px;
  backdrop-filter: blur(16px);
  transition: var(--transition);
  position: relative; 
  overflow: hidden;
}
.wc::before {
  content: ''; 
  position: absolute; 
  inset: 0; 
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(99,102,241,.08), transparent 60%);
  opacity: 0; 
  transition: opacity .3s ease;
}
.wc::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(99,102,241,.1), transparent 70%);
  border-radius: 50%;
  opacity: 0;
  transition: opacity .3s ease;
}
.wc:hover { 
  transform: translateY(-8px); 
  box-shadow: 0 16px 48px rgba(99,102,241,.15), var(--sh-glow);
  border-color: var(--border);
}
.wc:hover::before { opacity: 1; }
.wc:hover::after { opacity: 1; }
 
.wc-icon-wrap {
  width: 52px; 
  height: 52px; 
  border-radius: 16px;
  display: grid; 
  place-items: center; 
  margin-bottom: 18px;
  position: relative;
  transition: var(--transition);
}
.wc:hover .wc-icon-wrap {
  transform: scale(1.1) rotate(5deg);
}
.wc-icon-wrap svg { width: 24px; height: 24px; }
 
/* ألوان مختلفة لكل أيقونة */
.wc-icon-wrap.indigo { background: linear-gradient(135deg, rgba(99,102,241,.15), rgba(99,102,241,.08)); border: 1px solid rgba(99,102,241,.2); }
.wc-icon-wrap.teal   { background: linear-gradient(135deg, rgba(20,184,166,.15), rgba(20,184,166,.08));  border: 1px solid rgba(20,184,166,.2); }
.wc-icon-wrap.blue   { background: linear-gradient(135deg, rgba(59,130,246,.15), rgba(59,130,246,.08));  border: 1px solid rgba(59,130,246,.2); }
.wc-icon-wrap.violet { background: linear-gradient(135deg, rgba(167,139,250,.15), rgba(167,139,250,.08)); border: 1px solid rgba(167,139,250,.2); }
.wc-icon-wrap.green  { background: linear-gradient(135deg, rgba(16,185,129,.15), rgba(16,185,129,.08));  border: 1px solid rgba(16,185,129,.2); }
.wc-icon-wrap.rose   { background: linear-gradient(135deg, rgba(244,63,94,.15), rgba(244,63,94,.08));  border: 1px solid rgba(244,63,94,.15); }
 
.wc-title { 
  font-size: 16px; 
  font-weight: 700; 
  margin-bottom: 10px; 
  color: var(--text);
  transition: color .3s ease;
}
.wc:hover .wc-title { color: var(--accent3); }
.wc-desc  { 
  font-size: 14px; 
  color: var(--muted2); 
  line-height: 1.7;
}
 
/* ══════════════════════════════
   PROCESS
══════════════════════════════ */
.process-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
 
.pg {
  background: var(--card); border: 1px solid var(--border3);
  border-radius: 20px; padding: 28px 24px;
  backdrop-filter: blur(16px);
  transition: transform .28s, border-color .28s;
  position: relative;
}
.pg:hover { transform: translateY(-4px); border-color: var(--border); }
.pg::before {
  content: attr(data-step);
  position: absolute; top: 20px; left: 20px;
  font-family: 'Cairo', sans-serif; font-size: 11px; font-weight: 900;
  color: rgba(99,102,241,.3); letter-spacing: 1px;
}
 
.pg-icon-wrap {
  width: 44px; height: 44px; border-radius: 13px;
  display: grid; place-items: center; margin-bottom: 16px;
  background: rgba(99,102,241,.08); border: 1px solid rgba(99,102,241,.15);
}
.pg-icon-wrap svg { width: 20px; height: 20px; }
 
.pg-t { font-size: 15px; font-weight: 700; margin-bottom: 8px; color: var(--text); }
.pg-d { font-size: 13px; color: var(--muted2); line-height: 1.65; }
 
/* ══════════════════════════════
   TRUST
══════════════════════════════ */
.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
 
.tc {
  background: var(--card); 
  border: 1px solid var(--border3);
  border-radius: 20px; 
  padding: 28px;
  backdrop-filter: blur(16px);
  transition: var(--transition);
  display: flex; 
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
.tc::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 100px; height: 100px;
  background: radial-gradient(circle, rgba(99,102,241,.1), transparent 70%);
  opacity: 0;
  transition: opacity .3s ease;
}
.tc:hover { 
  transform: translateY(-6px); 
  box-shadow: 0 16px 48px rgba(99,102,241,.2), var(--sh-card);
  border-color: var(--border);
}
.tc:hover::before { opacity: 1; }
 
.tc-stars { margin-bottom: 14px; display: flex; gap: 3px; }
.tc-star  { width: 14px; height: 14px; color: var(--amber); }
.tc-text  {
  font-size: 14px; color: var(--muted2); line-height: 1.75;
  margin-bottom: 20px; flex: 1;
}
.tc-text strong { color: var(--text); }
.tc-foot  { display: flex; align-items: center; gap: 11px; }
.tc-av    {
  width: 38px; height: 38px; border-radius: 12px; flex-shrink: 0;
  display: grid; place-items: center;
  font-size: 15px; font-weight: 800; color: #fff;
}
.tc-av.a1 { background: linear-gradient(135deg, #6366f1, #4f46e5); }
.tc-av.a2 { background: linear-gradient(135deg, #14b8a6, #0d9488); }
.tc-av.a3 { background: linear-gradient(135deg, #f59e0b, #d97706); }
.tc-name  { font-size: 13px; font-weight: 700; color: var(--text); }
.tc-store { font-size: 11px; color: var(--muted); margin-top: 2px; }
.tc-badge {
  margin-right: auto; 
  flex-shrink: 0;
  background: linear-gradient(135deg, rgba(16,185,129,.12), rgba(16,185,129,.05));
  border: 1px solid rgba(16,185,129,.25);
  border-radius: 8px; 
  padding: 6px 12px;
  font-size: 12px; 
  color: var(--success); 
  font-weight: 700;
  transition: var(--transition);
}
.tc:hover .tc-badge {
  background: linear-gradient(135deg, rgba(16,185,129,.18), rgba(16,185,129,.08));
  border-color: var(--success);
}
 
/* ══════════════════════════════
   CTA FINAL
══════════════════════════════ */
.home-cta-box {
  background: linear-gradient(135deg, rgba(99,102,241,.05), rgba(20,184,166,.02));
  border: 1px solid var(--border3);
  border-radius: 32px; 
  padding: 80px 56px; 
  text-align: center;
  backdrop-filter: blur(20px);
  box-shadow: 0 0 0 1px rgba(99,102,241,.1), 0 16px 48px rgba(0,0,0,.3);
  position: relative; 
  overflow: hidden;
  transition: var(--transition);
}
.home-cta-box:hover {
  border-color: var(--border);
  box-shadow: 0 0 0 1px rgba(99,102,241,.2), 0 24px 64px rgba(99,102,241,.1);
}
.home-cta-box::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(99,102,241,.7), rgba(20,184,166,.5), transparent);
}
.home-cta-box::after {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(99,102,241,.06) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 50%, rgba(20,184,166,.04) 0%, transparent 50%);
}
 
.cta-h {
  font-family: 'Cairo', sans-serif;
  font-size: clamp(28px, 5vw, 50px); font-weight: 900;
  letter-spacing: -1.5px; line-height: 1.6;
  margin-bottom: 18px; position: relative; z-index: 1;
}
.cta-h .hl {
  background: linear-gradient(135deg, var(--accent3), var(--accent), #c4b5fd);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.cta-s {
  font-size: 17px; color: var(--muted2); margin-bottom: 40px;
  max-width: 460px; margin-inline: auto; line-height: 1.85; letter-spacing: 0.3px;
  position: relative; z-index: 1;
}
.cta-actions {
  display: flex; justify-content: center; gap: 12px;
  flex-wrap: wrap; position: relative; z-index: 1;
}
 
/* ══════════════════════════════
   FOOTER
══════════════════════════════ */
.home-footer {
  border-top: 1px solid var(--border3);
  padding: 56px 0 32px;
  background: rgba(4,4,12,.95);
  backdrop-filter: blur(20px);
  position: relative; z-index: 1;
}
.home-footer-top {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 48px;
}
.ft-logo-img { height: 32px; width: auto; object-fit: contain; margin-bottom: 12px; display: block; }
.ft-desc { font-size: 13px; color: var(--muted); line-height: 1.7; max-width: 210px; }
.ft-col-title {
  font-size: 11px; font-weight: 700; color: var(--muted2);
  margin-bottom: 16px; letter-spacing: .8px; text-transform: uppercase;
}
.ft-links { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.ft-links a {
  font-size: 13px; color: var(--muted); text-decoration: none;
  transition: color .2s;
}
.ft-links a:hover { color: var(--text); }
.home-footer-bottom {
  border-top: 1px solid var(--border3); padding-top: 24px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
}
.ft-copy { font-size: 12px; color: var(--muted); }
.ft-social { display: flex; gap: 8px; }
.ft-soc {
  width: 34px; height: 34px;
  background: var(--glass); border: 1px solid var(--glass-border);
  border-radius: 10px; display: grid; place-items: center;
  font-size: 14px; cursor: pointer; transition: all .2s; text-decoration: none;
  color: var(--muted2);
}
.ft-soc:hover { border-color: var(--border2); color: var(--text); transform: translateY(-2px); }
.ft-soc svg { width: 15px; height: 15px; }
 
/* ══════════════════════════════
   REVEAL ANIMATIONS
══════════════════════════════ */
.rev  { opacity: 0; transform: translateY(20px); transition: opacity .6s ease, transform .6s ease; }
.rev2 { opacity: 0; transform: translateY(20px); transition: opacity .6s .1s ease, transform .6s .1s ease; }
.rev3 { opacity: 0; transform: translateY(20px); transition: opacity .6s .2s ease, transform .6s .2s ease; }
.rev.vis, .rev2.vis, .rev3.vis { opacity: 1; transform: translateY(0); }
 
/* ══════════════════════════════
   RESPONSIVE
══════════════════════════════ */
@media (max-width: 960px) {
  .products-grid { grid-template-columns: 1fr; }
  .why-grid       { grid-template-columns: 1fr 1fr; }
  .process-grid   { grid-template-columns: 1fr 1fr; }
  .trust-grid     { grid-template-columns: 1fr; }
  .home-footer-top { grid-template-columns: 1fr 1fr; }
  .hero-stats     { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .home-nl        { display: none; }
  .why-grid       { grid-template-columns: 1fr; }
  .process-grid   { grid-template-columns: 1fr; }
  .home-hero h1   { font-size: 36px; letter-spacing: -1.5px; }
  .home-cta-box   { padding: 44px 24px; }
  .hero-stats     { grid-template-columns: repeat(2, 1fr); width: 100%; }
  .home-footer-top { grid-template-columns: 1fr; }
  .home-hero-actions { flex-direction: column; align-items: center; }
  .btn { width: 100%; max-width: 320px; }
}