/* =========================================
   Innovo Hub — Landing Page
   Brand: #1A3C6E · Accent #F59E0B
   Tajawal (AR) · Inter (EN) · RTL default
   ========================================= */

:root {
  --primary:      #1A3C6E;
  --primary-dark: #122c52;
  --primary-mid:  #2456a0;
  --accent:       #F59E0B;
  --accent-dark:  #d97706;
  --text:         #0F172A;
  --text-muted:   #64748B;
  --bg:           #F8FAFC;
  --white:        #FFFFFF;
  --border:       #E2E8F0;
  --shadow-sm:    0 1px 3px rgba(0,0,0,.07);
  --shadow-md:    0 8px 24px rgba(0,0,0,.09);
  --shadow-lg:    0 20px 60px rgba(0,0,0,.13);
  --radius:       14px;
  --radius-sm:    8px;
  --radius-lg:    24px;
  --ease:         cubic-bezier(.25,.46,.45,.94);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Tajawal', system-ui, sans-serif;
  color: var(--text);
  background: var(--white);
  direction: rtl;
  overflow-x: hidden;
  line-height: 1.7;
}
body.lang-en { direction: ltr; font-family: 'Inter', system-ui, sans-serif; }

a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; padding: 0; margin: 0; }

.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }

/* =========================================
   NAVBAR
   ========================================= */
.navbar {
  position: fixed; top: 0; right: 0; left: 0; z-index: 1000;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  height: 66px;
  transition: border-color .3s, box-shadow .3s;
}
.navbar.scrolled { border-color: var(--border); box-shadow: 0 2px 20px rgba(0,0,0,.07); }

.navbar-inner { display: flex; align-items: center; justify-content: space-between; height: 66px; }

.navbar-brand {
  display: flex; align-items: center; gap: 10px;
  font-weight: 800; font-size: 1.25rem; color: var(--primary);
}
.brand-icon {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-mid) 100%);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 16px;
  box-shadow: 0 4px 10px rgba(26,60,110,.35);
}

.navbar-nav { display: flex; align-items: center; gap: 4px; }
@media (max-width: 780px) { .navbar-nav.desktop-nav { display: none; } }

.nav-link {
  font-size: 0.9rem; font-weight: 500; color: var(--text-muted);
  padding: 6px 12px; border-radius: 8px;
  transition: color .2s, background .2s;
}
.nav-link:hover, .nav-link.active-nav { color: var(--primary); background: rgba(26,60,110,.06); }

.navbar-actions { display: flex; align-items: center; gap: 10px; }

.lang-btn {
  background: none; border: 1.5px solid var(--border); border-radius: 8px;
  padding: 5px 13px; font-size: 0.82rem; font-weight: 700;
  color: var(--text-muted); cursor: pointer; font-family: inherit;
  transition: border-color .2s, color .2s;
}
.lang-btn:hover { border-color: var(--primary); color: var(--primary); }

.btn-nav-cta {
  background: var(--primary); color: var(--white);
  padding: 8px 20px; border-radius: 10px;
  font-size: 0.88rem; font-weight: 700;
  display: flex; align-items: center; gap: 7px;
  transition: background .2s, transform .2s; white-space: nowrap;
}
.btn-nav-cta:hover { background: var(--primary-dark); color: var(--white); transform: translateY(-1px); }

.hamburger { display: none; background: none; border: none; cursor: pointer; padding: 6px; flex-direction: column; gap: 5px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--primary); border-radius: 2px; transition: all .3s; }
@media (max-width: 780px) { .hamburger { display: flex; } .btn-nav-cta { padding: 7px 14px; font-size: 0.82rem; } }

.mobile-nav {
  display: none; position: fixed; top: 66px; right: 0; left: 0;
  background: var(--white); border-bottom: 1px solid var(--border);
  padding: 16px 24px 20px; box-shadow: var(--shadow-md); z-index: 999;
}
.mobile-nav.open { display: block; }
.mobile-nav a { display: block; padding: 12px 0; font-weight: 500; border-bottom: 1px solid var(--border); }
.mobile-nav a:last-child { border: none; }


/* =========================================
   HERO — asymmetric, editorial
   ========================================= */
.hero {
  min-height: 100vh;
  background: linear-gradient(140deg, var(--primary-dark) 0%, var(--primary) 50%, #1e5298 100%);
  display: flex; align-items: center;
  position: relative; overflow: hidden;
  padding: 90px 0 120px;
}

/* Subtle dot-grid texture */
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.1) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

.hero-grid {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 420px; gap: 60px; align-items: center;
}
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { display: flex; justify-content: center; }
}

/* Text side */
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.82rem; font-weight: 700; color: var(--accent);
  margin-bottom: 22px;
  letter-spacing: .04em;
}
.hero-eyebrow-dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--accent);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .5; transform: scale(1.4); }
}

.hero h1 {
  font-size: clamp(2.6rem, 5.5vw, 4rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.18;
  margin-bottom: 20px;
  letter-spacing: -.01em;
}
.hero h1 em { font-style: normal; color: var(--accent); }

.hero-desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,.72);
  margin-bottom: 36px;
  max-width: 480px;
  line-height: 1.85;
}

.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }
@media (max-width: 960px) { .hero-ctas { justify-content: center; } }

.btn-store {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--white); color: var(--primary);
  padding: 12px 20px; border-radius: 12px;
  font-weight: 700; font-size: 0.88rem;
  box-shadow: 0 4px 16px rgba(0,0,0,.18);
  transition: transform .2s, box-shadow .2s;
}
.btn-store:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(0,0,0,.22); color: var(--primary); }
.btn-store i { font-size: 1.4rem; }
.btn-store-text { line-height: 1.25; }
.btn-store-text small { display: block; font-size: 0.65rem; font-weight: 500; color: var(--text-muted); }

.btn-store-ghost {
  background: rgba(255,255,255,.1);
  border: 1.5px solid rgba(255,255,255,.25);
  color: var(--white);
  box-shadow: none;
}
.btn-store-ghost:hover { background: rgba(255,255,255,.18); color: var(--white); }
.btn-store-ghost i, .btn-store-ghost .btn-store-text small { color: rgba(255,255,255,.6); }


/* Phone visual */
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.phone-mockup {
  width: 280px;
  filter: drop-shadow(0 24px 40px rgba(0,0,0,.4));
}


/* Wave at bottom of hero */
.hero-wave {
  position: absolute; bottom: -1px; right: 0; left: 0;
  line-height: 0; z-index: 3;
}
.hero-wave svg { display: block; width: 100%; }


/* =========================================
   STATS — overlaps hero via negative margin
   ========================================= */
.stats {
  position: relative; z-index: 10;
  margin-top: -56px;
  padding-bottom: 80px;
  background: transparent;
}

.stats-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.8);
}
@media (max-width: 640px) { .stats-card { grid-template-columns: repeat(2, 1fr); } }

.stat-item {
  padding: 32px 20px;
  text-align: center;
  position: relative;
}
.stat-item + .stat-item::before {
  content: '';
  position: absolute; top: 20%; bottom: 20%; right: 0;
  width: 1px; background: var(--border);
}
body.lang-en .stat-item + .stat-item::before { right: auto; left: 0; }
@media (max-width: 640px) {
  .stat-item:nth-child(2)::before { display: none; }
  .stat-item:nth-child(3)::before { display: none; }
}

.stat-icon { font-size: 1.5rem; color: var(--accent); margin-bottom: 8px; }
.stat-number {
  font-size: 2.2rem; font-weight: 900;
  color: var(--primary); line-height: 1;
  margin-bottom: 6px; direction: ltr; display: block;
}
.stat-label { font-size: 0.82rem; color: var(--text-muted); font-weight: 600; }


/* =========================================
   HOW IT WORKS
   ========================================= */
.how-it-works { padding: 80px 0 100px; background: var(--bg); }

.section-header { margin-bottom: 56px; }
.section-header.centered { text-align: center; }
.section-header.centered .section-sub { margin: 0 auto; }

.overline {
  font-size: 0.75rem; font-weight: 800; letter-spacing: .12em;
  text-transform: uppercase; color: var(--accent);
  margin-bottom: 12px; display: block;
}

.section-title {
  font-size: clamp(1.75rem, 3.5vw, 2.4rem);
  font-weight: 900; color: var(--text);
  line-height: 1.25; margin-bottom: 14px;
}
.section-sub {
  font-size: 1rem; color: var(--text-muted);
  max-width: 540px; line-height: 1.8;
}

.steps-track {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; position: relative;
}
@media (max-width: 720px) { .steps-track { grid-template-columns: 1fr; } }

/* dashed connector line between steps */
.steps-track::before {
  content: '';
  position: absolute;
  top: 28px;
  right: calc(16.6% + 12px);
  left:  calc(16.6% + 12px);
  height: 1px;
  background: repeating-linear-gradient(90deg, var(--accent) 0, var(--accent) 6px, transparent 6px, transparent 14px);
  opacity: .45;
}
@media (max-width: 720px) { .steps-track::before { display: none; } }

.step-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px 28px;
  position: relative; z-index: 1;
  transition: box-shadow .25s var(--ease), border-color .25s;
}
.step-card:hover { box-shadow: var(--shadow-md); border-color: rgba(26,60,110,.18); }

.step-num {
  width: 54px; height: 54px; border-radius: 50%;
  background: var(--primary); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.15rem; font-weight: 900;
  margin-bottom: 20px;
  box-shadow: 0 4px 14px rgba(26,60,110,.32);
  flex-shrink: 0;
}
.step-card h3 { font-size: 1.05rem; font-weight: 800; color: var(--text); margin-bottom: 10px; }
.step-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.75; }

/* arrow between steps */
.step-arrow {
  display: none; /* visible via ::before pseudo */
}


/* =========================================
   SERVICES / CATEGORIES
   ========================================= */
.services-section { padding: 80px 0 100px; background: var(--white); }

.categories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 960px) { .categories-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px) { .categories-grid { grid-template-columns: repeat(2, 1fr); } }

.category-card {
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 16px;
  text-align: center;
  cursor: default;
  transition: border-color .25s, background .25s;
  position: relative; overflow: hidden;
}
/* sliding background reveal on hover */
.category-card::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(26,60,110,.05), rgba(26,60,110,.09));
  opacity: 0;
  transition: opacity .25s;
}
.category-card:hover { border-color: var(--primary); }
.category-card:hover::after { opacity: 1; }
.category-card:hover .cat-icon { background: var(--primary); color: var(--white); }

.cat-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: rgba(26,60,110,.08);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; color: var(--primary);
  margin: 0 auto 14px;
  transition: background .25s, color .25s;
}
.category-card h3 { font-size: 0.88rem; font-weight: 700; color: var(--text); position: relative; z-index: 1; }


/* =========================================
   FEATURES — bento grid (not uniform 3-col)
   ========================================= */
.features-section { padding: 80px 0 100px; background: var(--bg); }

/* Two-column editorial layout for the header */
.features-intro {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 40px; align-items: end; margin-bottom: 48px;
}
@media (max-width: 720px) { .features-intro { grid-template-columns: 1fr; } }
.features-intro-right { color: var(--text-muted); font-size: 0.95rem; line-height: 1.85; padding-bottom: 4px; }

/* Bento grid */
.features-bento {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: auto;
  gap: 16px;
}
@media (max-width: 860px) { .features-bento { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .features-bento { grid-template-columns: 1fr; } }

.f-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  position: relative; overflow: hidden;
}

/* Left accent line that slides in on hover */
.f-card::before {
  content: '';
  position: absolute; top: 0; bottom: 0; right: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--primary) 0%, var(--accent) 100%);
  transform: scaleY(0); transform-origin: top;
  transition: transform .3s var(--ease);
}
body.lang-en .f-card::before { right: auto; left: 0; }
.f-card:hover::before { transform: scaleY(1); }
.f-card:hover { box-shadow: var(--shadow-md); }

.f-icon {
  width: 46px; height: 46px; border-radius: 12px;
  background: rgba(26,60,110,.08);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; color: var(--primary);
  margin-bottom: 16px;
  transition: background .25s, color .25s, transform .25s;
}
.f-card:hover .f-icon { background: var(--primary); color: var(--white); transform: rotate(-6deg) scale(1.05); }

.f-card h3 { font-size: 0.98rem; font-weight: 800; color: var(--text); margin-bottom: 8px; }
.f-card p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.75; }

/* Bento spanning */
.f-card-wide    { grid-column: span 4; }
.f-card-narrow  { grid-column: span 2; }
.f-card-third   { grid-column: span 2; }

/* Large highlighted card */
.f-card-hero {
  grid-column: span 3;
  background: linear-gradient(140deg, var(--primary-dark) 0%, var(--primary) 100%);
  border-color: transparent; color: var(--white);
}
.f-card-hero::before { display: none; }
.f-card-hero .f-icon { background: rgba(255,255,255,.15); color: var(--white); }
.f-card-hero:hover .f-icon { background: var(--accent); color: var(--primary); }
.f-card-hero h3 { color: var(--white); font-size: 1.15rem; }
.f-card-hero p { color: rgba(255,255,255,.75); }
.f-card-hero:hover { box-shadow: var(--shadow-lg); }

.f-card-accent {
  grid-column: span 3;
  background: rgba(245,158,11,.07);
  border-color: rgba(245,158,11,.25);
}
.f-card-accent .f-icon { background: rgba(245,158,11,.15); color: var(--accent-dark); }
.f-card-accent:hover .f-icon { background: var(--accent); color: var(--white); }

@media (max-width: 860px) {
  .f-card-wide, .f-card-narrow, .f-card-third, .f-card-hero, .f-card-accent {
    grid-column: span 1;
  }
}


/* =========================================
   APP DOWNLOAD
   ========================================= */
.app-download {
  padding: 100px 0;
  background: var(--primary-dark);
  position: relative; overflow: hidden;
}
.app-download::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 90% 10%,  rgba(245,158,11,.14) 0%, transparent 40%),
    radial-gradient(circle at 5%  90%,  rgba(255,255,255,.04) 0%, transparent 40%);
}

/* Top wave */
.app-wave-top {
  position: absolute; top: -1px; right: 0; left: 0;
  line-height: 0; transform: rotate(180deg);
}
.app-wave-top svg { display: block; width: 100%; }

.app-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center; position: relative; z-index: 2;
}
@media (max-width: 860px) {
  .app-inner { grid-template-columns: 1fr; text-align: center; }
  .app-badges { justify-content: center !important; }
}

.app-text h2 { font-size: clamp(1.9rem, 4vw, 2.7rem); font-weight: 900; color: var(--white); margin-bottom: 14px; line-height: 1.3; }
.app-text p  { font-size: 1rem; color: rgba(255,255,255,.72); margin-bottom: 32px; line-height: 1.85; }
.app-badges  { display: flex; gap: 12px; flex-wrap: wrap; }

.app-visual { display: flex; justify-content: center; }
.app-visual img { max-height: 400px; filter: drop-shadow(0 20px 40px rgba(0,0,0,.4)); }
.app-visual-placeholder {
  width: 220px; height: 380px;
  background: rgba(255,255,255,.07);
  border: 1.5px solid rgba(255,255,255,.15);
  border-radius: 32px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.3); font-size: 3rem;
}


/* =========================================
   TESTIMONIALS
   ========================================= */
.testimonials { padding: 80px 0 100px; background: var(--white); }

.testimonials-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
@media (max-width: 860px) { .testimonials-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .testimonials-grid { grid-template-columns: 1fr; } }

.t-card {
  border: 1px solid var(--border); border-radius: var(--radius);
  padding: 26px 22px; display: flex; flex-direction: column; gap: 14px;
  transition: box-shadow .25s, border-color .25s;
  position: relative;
}
.t-card:hover { box-shadow: var(--shadow-md); border-color: rgba(26,60,110,.15); }

/* Big faded quotation mark — decorative, not repeated on every element */
.t-card::before {
  content: '\201C';
  position: absolute; top: 10px;
  font-size: 5rem; line-height: 1;
  color: var(--primary); opacity: .06;
  font-family: Georgia, serif;
}
/* RTL: right-aligned; LTR: left-aligned */
[dir="rtl"] .t-card::before { right: 16px; }
[dir="ltr"] .t-card::before { left: 16px; }

.t-stars { display: flex; gap: 2px; }
.t-stars i { color: var(--accent); font-size: 0.82rem; }

.t-quote { font-size: 0.94rem; color: var(--text); line-height: 1.8; flex: 1; }

.t-author { display: flex; align-items: center; gap: 10px; border-top: 1px solid var(--border); padding-top: 14px; }
.t-avatar {
  width: 40px; height: 40px; border-radius: 50%; object-fit: cover;
  background: rgba(26,60,110,.08); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  color: var(--primary); font-size: 1rem;
}
.t-avatar img { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; }
.t-name { font-weight: 700; font-size: 0.88rem; color: var(--text); }
.t-role { font-size: 0.78rem; color: var(--text-muted); }


/* =========================================
   FAQ
   ========================================= */
.faq-section { padding: 80px 0 100px; background: var(--bg); }

.faq-wrap { display: grid; grid-template-columns: 1fr 2fr; gap: 60px; align-items: start; }
@media (max-width: 780px) { .faq-wrap { grid-template-columns: 1fr; gap: 36px; } }

.faq-sidebar { position: sticky; top: 90px; }
.faq-sidebar .section-title { margin-bottom: 12px; }
.faq-sidebar p { font-size: 0.92rem; color: var(--text-muted); line-height: 1.8; margin-bottom: 24px; }

.faq-contact-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.88rem; font-weight: 700; color: var(--primary);
  padding: 10px 18px; border-radius: 10px;
  border: 1.5px solid rgba(26,60,110,.2);
  transition: background .2s, border-color .2s;
}
.faq-contact-link:hover { background: rgba(26,60,110,.06); border-color: var(--primary); }

.faq-list { display: flex; flex-direction: column; gap: 10px; }

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden; background: var(--white);
  transition: box-shadow .2s;
}
.faq-item.open { box-shadow: var(--shadow-sm); border-color: rgba(26,60,110,.15); }

.faq-question {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 20px; cursor: pointer;
  font-weight: 600; font-size: 0.95rem; color: var(--text);
  gap: 12px; user-select: none;
  transition: color .2s;
}
.faq-item.open .faq-question { color: var(--primary); }

.faq-chevron {
  width: 26px; height: 26px; border-radius: 50%;
  background: rgba(26,60,110,.08); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem; color: var(--primary);
  transition: transform .3s, background .2s;
}
.faq-item.open .faq-chevron { transform: rotate(-180deg); background: var(--primary); color: var(--white); }

.faq-answer {
  max-height: 0; overflow: hidden; padding: 0 20px;
  transition: max-height .35s ease, padding .35s ease;
}
.faq-item.open .faq-answer { max-height: 400px; padding: 0 20px 18px; }
.faq-answer p { font-size: 0.92rem; color: var(--text-muted); line-height: 1.8; }


/* =========================================
   FOOTER
   ========================================= */
.footer { background: #0c1e3c; color: rgba(255,255,255,.75); padding: 72px 0 0; }

.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.6fr;
  gap: 48px; padding-bottom: 48px;
}
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; gap: 28px; } }

.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-logo .icon {
  width: 34px; height: 34px; background: var(--accent); border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; color: var(--primary-dark);
}
.footer-logo span { font-size: 1.15rem; font-weight: 800; color: var(--white); }
.footer-tagline { font-size: 0.86rem; line-height: 1.85; color: rgba(255,255,255,.55); margin-bottom: 22px; }

.social-links { display: flex; gap: 8px; }
.social-links a {
  width: 34px; height: 34px; border-radius: 8px;
  background: rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.65); font-size: 0.85rem;
  transition: background .2s, color .2s;
}
.social-links a:hover { background: var(--accent); color: var(--primary-dark); }

.footer-col h4 {
  font-size: 0.75rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: .08em; color: rgba(255,255,255,.4);
  margin-bottom: 18px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  font-size: 0.87rem; color: rgba(255,255,255,.6);
  transition: color .2s;
}
.footer-col ul li a:hover { color: var(--accent); }

.footer-contact-row { display: flex; align-items: flex-start; gap: 9px; margin-bottom: 11px; font-size: 0.87rem; }
.footer-contact-row i { color: var(--accent); margin-top: 3px; flex-shrink: 0; }
.footer-contact-row a { color: rgba(255,255,255,.6); transition: color .2s; }
.footer-contact-row a:hover { color: var(--accent); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 20px 0;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 10px;
  font-size: 0.8rem; color: rgba(255,255,255,.35);
}
.footer-bottom a { color: rgba(255,255,255,.35); transition: color .2s; }
.footer-bottom a:hover { color: var(--accent); }
.footer-bottom-links { display: flex; gap: 20px; }


/* =========================================
   SCROLL TO TOP
   ========================================= */
.scroll-top {
  position: fixed; bottom: 28px;
  width: 42px; height: 42px;
  background: var(--primary); color: var(--white);
  border: none; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; z-index: 500;
  opacity: 0; transform: translateY(14px);
  transition: opacity .3s, transform .3s, background .2s;
  box-shadow: var(--shadow-md); font-size: 0.85rem;
}
.scroll-top.visible { opacity: 1; transform: translateY(0); }
.scroll-top:hover { background: var(--primary-dark); }

[dir="rtl"] .scroll-top { left: 28px; }
[dir="ltr"] .scroll-top { right: 28px; }


/* =========================================
   Responsive helpers
   ========================================= */
@media (max-width: 480px) {
  .hero { padding: 80px 0 100px; }
  .hero h1 { font-size: 2.2rem; }
  .section-title { font-size: 1.65rem; }
  .btn-store { padding: 10px 16px; font-size: 0.84rem; }
}
