/* ============================================================
   dliilh — Main Stylesheet
   Direction: RTL (Arabic-first)
   Theme: Steel Teal #2e5266 + Warm Gold | Gulf Premium
   ============================================================ */

/* ---- Reset & Base ---- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Noto Sans Arabic', 'Segoe UI', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-primary);
  background: var(--bg-white);
  direction: rtl;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* LTR override for English pages */
html[dir="ltr"] body { direction: ltr; }

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }

/* ---- CSS Variables ---- */
/* Brand primary from dliilhlogo.svg rect fill: #2e5266 (dark steel teal) */
/* Logo file: assets/logos/dliilhlogo.svg */
:root {
  --primary:        #2e5266;
  --primary-dark:   #1c3d4f;
  --primary-light:  #3f7d9a;

  --accent:         #C8932A;
  --accent-light:   #E5AD45;
  --accent-dark:    #A6781F;

  --bg-white:  #FFFFFF;
  --bg-light:  #F4F7FB;
  --bg-alt:    #EEF2F8;
  --bg-dark:   #0d1e28;
  --bg-darker: #070f15;

  --text-primary:   #0f2030;
  --text-secondary: #2d4d60;
  --text-muted:     #5e8090;
  --text-white:     #FFFFFF;
  --text-white-muted: rgba(255,255,255,0.68);

  --border:       #D8E2F0;
  --border-light: #EEF2F8;

  --shadow-sm:   0 2px 8px  rgba(46,82,102,0.07);
  --shadow-md:   0 4px 24px rgba(46,82,102,0.11);
  --shadow-lg:   0 8px 48px rgba(46,82,102,0.16);
  --shadow-gold: 0 4px 24px rgba(200,147,42,0.30);

  --radius-sm:   8px;
  --radius-md:   14px;
  --radius-lg:   20px;
  --radius-xl:   28px;
  --radius-full: 9999px;

  --transition:      0.3s ease;
  --transition-fast: 0.15s ease;

  --nav-height:    70px;
  --container-max: 1180px;
  --section-py:    96px;
}

/* ---- Typography ---- */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.35;
  color: var(--text-primary);
}

.section-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  color: var(--accent);
  text-transform: uppercase;
  background: rgba(200,147,42,0.10);
  padding: 4px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 12px;
}

.section-heading {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.section-subheading {
  font-size: 1.03rem;
  color: var(--text-secondary);
  max-width: 600px;
  line-height: 1.85;
}

.text-center .section-subheading { margin: 0 auto; }
.text-center { text-align: center; }

.section-header { margin-bottom: 60px; }

/* ---- Layout ---- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

section { padding: var(--section-py) 0; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-md);
  font-size: 1rem;
  font-weight: 600;
  font-family: inherit;
  transition: all var(--transition);
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--accent);
  color: white;
  box-shadow: var(--shadow-gold);
}
.btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(200,147,42,0.40);
}

.btn-secondary {
  background: transparent;
  color: white;
  border-color: rgba(255,255,255,0.32);
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.10);
  border-color: rgba(255,255,255,0.55);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn-outline:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-2px);
}

.btn-lg { padding: 17px 40px; font-size: 1.08rem; border-radius: var(--radius-lg); }
.btn-sm { padding: 10px 22px; font-size: 0.9rem; }

/* ---- Store Buttons ---- */
.store-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 22px;
  background: rgba(255,255,255,0.09);
  border: 1.5px solid rgba(255,255,255,0.22);
  border-radius: var(--radius-md);
  color: white;
  transition: all var(--transition);
  min-width: 158px;
}
.store-btn:hover {
  background: rgba(255,255,255,0.17);
  border-color: rgba(255,255,255,0.42);
  transform: translateY(-2px);
}
.store-btn-icon { width: 26px; height: 26px; flex-shrink: 0; opacity: 0.88; }
.store-btn-text small {
  display: block;
  font-size: 0.67rem;
  opacity: 0.70;
  line-height: 1;
  margin-bottom: 2px;
}
.store-btn-text strong { font-size: 0.93rem; font-weight: 600; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; right: 0; left: 0;
  height: var(--nav-height);
  z-index: 1000;
  transition: background var(--transition), box-shadow var(--transition);
}

.navbar.transparent { background: transparent; }

.navbar.scrolled {
  background: rgba(7,14,22,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 24px rgba(0,0,0,0.28);
}

.navbar.light {
  background: var(--bg-white);
  border-bottom: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-height);
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

/* Logo — in RTL this renders on the right side naturally */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

/* Real SVG logo from assets/logos/dliilhlogo.svg */
.nav-logo-img {
  width: 38px;
  height: 38px;
  border-radius: 9px;
  flex-shrink: 0;
  display: block;
  object-fit: cover;
}

/* Wordmark logo (dliilh_logo_ar.svg / dliilh_logo_en.svg) */
.nav-wordmark {
  height: 34px;
  width: auto;
  max-width: 110px;
  display: block;
  object-fit: contain;
  flex-shrink: 0;
}
.navbar.light .nav-wordmark { filter: brightness(0); }
.footer-brand .nav-wordmark { height: 38px; max-width: 125px; }

.nav-logo-text {
  font-size: 1.25rem;
  font-weight: 800;
  color: white;
  line-height: 1;
}
.nav-logo-text span {
  display: block;
  font-size: 0.60rem;
  font-weight: 400;
  opacity: 0.62;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.navbar.light .nav-logo-text { color: var(--primary); }

/* Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav-links a {
  padding: 8px 15px;
  border-radius: var(--radius-sm);
  font-size: 0.93rem;
  font-weight: 500;
  color: rgba(255,255,255,0.80);
  transition: all var(--transition-fast);
}
.nav-links a:hover,
.nav-links a.active {
  color: white;
  background: rgba(255,255,255,0.10);
}
.navbar.light .nav-links a { color: var(--text-secondary); }
.navbar.light .nav-links a:hover,
.navbar.light .nav-links a.active {
  color: var(--primary);
  background: var(--bg-alt);
}

/* Nav CTA */
.nav-cta {}

/* Language Switcher */
.lang-switcher { display: flex; align-items: center; }
.lang-switcher a {
  display: inline-flex;
  align-items: center;
  padding: 6px 13px;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255,255,255,0.72);
  transition: all var(--transition-fast);
  letter-spacing: 0.06em;
}
.lang-switcher a:hover {
  color: white;
  border-color: rgba(255,255,255,0.52);
  background: rgba(255,255,255,0.09);
}
.navbar.light .lang-switcher a {
  border-color: var(--border);
  color: var(--text-secondary);
}
.navbar.light .lang-switcher a:hover {
  color: var(--primary);
  background: var(--bg-alt);
  border-color: var(--border);
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background var(--transition-fast);
}
.nav-toggle:hover { background: rgba(255,255,255,0.10); }
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: all var(--transition);
}
.navbar.light .nav-toggle span { background: var(--primary); }

.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.nav-mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-height);
  right: 0; left: 0;
  background: rgba(7,14,22,0.97);
  backdrop-filter: blur(16px);
  padding: 16px 24px 28px;
  border-top: 1px solid rgba(255,255,255,0.07);
  box-shadow: 0 12px 40px rgba(0,0,0,0.35);
  z-index: 999;
  transform: translateY(-8px);
  opacity: 0;
  transition: all var(--transition);
}
.nav-mobile-menu.open {
  display: block;
  transform: translateY(0);
  opacity: 1;
}
.nav-mobile-menu a {
  display: block;
  padding: 13px 4px;
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color var(--transition-fast);
}
.nav-mobile-menu a:last-child { border-bottom: none; }
.nav-mobile-menu a:hover { color: white; }
.nav-mobile-menu .mobile-cta { margin-top: 18px; display: flex; }

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  background: linear-gradient(145deg, var(--bg-darker) 0%, var(--bg-dark) 55%, var(--primary-dark) 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-height);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 15% 80%, rgba(200,147,42,0.07) 0%, transparent 55%),
    radial-gradient(circle at 85% 15%, rgba(63,125,154,0.18) 0%, transparent 55%),
    radial-gradient(circle at 50% 50%, rgba(26,53,96,0.10) 0%, transparent 70%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 56px;
  padding: 80px 0 64px;
}

.hero-content { max-width: 580px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(200,147,42,0.11);
  border: 1px solid rgba(200,147,42,0.24);
  color: var(--accent-light);
  font-size: 0.82rem;
  font-weight: 500;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 22px;
}
.hero-badge-dot {
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: badge-pulse 2s ease-in-out infinite;
}

@keyframes badge-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.75); }
}

.hero h1 {
  font-size: clamp(2.2rem, 5.5vw, 3.7rem);
  font-weight: 800;
  color: white;
  line-height: 1.22;
  margin-bottom: 20px;
}
.hero h1 .highlight { color: var(--accent-light); }

.hero-desc {
  font-size: 1.08rem;
  color: var(--text-white-muted);
  line-height: 1.9;
  margin-bottom: 38px;
  max-width: 490px;
}

.hero-cta { display: flex; flex-direction: column; gap: 20px; }
.hero-cta .store-buttons { gap: 12px; }
.hero-note {
  font-size: 0.80rem;
  color: rgba(255,255,255,0.38);
}

/* ---- Phone Mockup ---- */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.phone-wrapper { position: relative; }

.phone-glow {
  position: absolute;
  inset: -40px;
  background: radial-gradient(circle, rgba(200,147,42,0.13) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.phone-frame {
  width: 244px;
  height: 496px;
  border: 2px solid rgba(255,255,255,0.13);
  border-radius: 42px;
  background: linear-gradient(175deg, #0b1e2c 0%, #18384d 55%, #2e5266 100%);
  position: relative;
  overflow: hidden;
  box-shadow:
    0 0 0 6px rgba(255,255,255,0.04),
    0 32px 80px rgba(0,0,0,0.55),
    inset 0 1px 0 rgba(255,255,255,0.08);
}

.phone-notch {
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 68px; height: 20px;
  background: #080f1e;
  border-radius: 0 0 14px 14px;
  z-index: 2;
}

.phone-screen {
  position: absolute;
  inset: 22px 10px 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.phone-header {
  background: rgba(255,255,255,0.07);
  border-radius: 10px;
  height: 40px;
  display: flex;
  align-items: center;
  padding: 0 12px;
  gap: 8px;
}
.phone-header-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); opacity: 0.85; }
.phone-header-bar { flex: 1; height: 5px; background: rgba(255,255,255,0.09); border-radius: 3px; }

.phone-search {
  background: rgba(255,255,255,0.06);
  border-radius: 10px;
  height: 32px;
  display: flex;
  align-items: center;
  padding: 0 10px;
  gap: 7px;
}
.phone-search-bar { flex: 1; height: 5px; background: rgba(255,255,255,0.08); border-radius: 3px; }

.phone-cats { display: flex; gap: 6px; }
.phone-cat { flex: 1; height: 26px; background: rgba(255,255,255,0.06); border-radius: 8px; }
.phone-cat.active { background: rgba(200,147,42,0.28); }

.phone-card {
  background: rgba(255,255,255,0.06);
  border-radius: 10px;
  height: 70px;
  padding: 10px;
  display: flex;
  gap: 8px;
}
.phone-card-img {
  width: 50px;
  border-radius: 8px;
  background: rgba(200,147,42,0.18);
  flex-shrink: 0;
}
.phone-card-content {
  display: flex; flex-direction: column;
  gap: 6px; justify-content: center; flex: 1;
}
.phone-card-title { height: 6px; background: rgba(255,255,255,0.17); border-radius: 3px; width: 70%; }
.phone-card-sub   { height: 5px; background: rgba(255,255,255,0.08); border-radius: 3px; width: 50%; }
.phone-card-sub2  { height: 5px; background: rgba(255,255,255,0.05); border-radius: 3px; width: 38%; }

.phone-bottom-nav {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 48px;
  background: rgba(8,16,32,0.85);
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 0 16px;
  backdrop-filter: blur(10px);
}
.phone-nav-dot { width: 22px; height: 22px; border-radius: 6px; background: rgba(255,255,255,0.08); }
.phone-nav-dot.active { background: var(--accent); opacity: 0.82; }

/* ============================================================
   WHAT IS SECTION
   ============================================================ */
.what-section { background: var(--bg-white); }

.what-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.what-visual { position: relative; }

.what-card-stack { position: relative; height: 360px; }

.what-card {
  position: absolute;
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 26px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
}
.what-card.card-main { top: 0; right: 0; width: 86%; z-index: 2; }
.what-card.card-back {
  bottom: 0; left: 0; width: 80%; z-index: 1;
  background: var(--bg-light);
  transform: rotate(-2.5deg);
  box-shadow: var(--shadow-sm);
}

.what-card-icon {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
}
.what-card-icon svg { width: 24px; height: 24px; fill: none; stroke: white; stroke-width: 2; }
.what-card h4 { font-size: 0.98rem; font-weight: 600; color: var(--text-primary); margin-bottom: 6px; }
.what-card p  { font-size: 0.86rem; color: var(--text-muted); line-height: 1.65; }

.stat-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--bg-dark);
  color: white;
  font-size: 0.79rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  margin-top: 14px;
}
.stat-pill-dot { width: 6px; height: 6px; background: var(--accent); border-radius: 50%; }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how-section { background: var(--bg-light); }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 31px; right: 10%; left: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--border-light), var(--accent-light), var(--border-light));
  z-index: 0;
}

.step-card { text-align: center; position: relative; z-index: 1; }

.step-number {
  width: 64px; height: 64px;
  margin: 0 auto 20px;
  background: var(--bg-white);
  border: 2px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--primary);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.step-card:hover .step-number {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
  transform: scale(1.08);
  box-shadow: var(--shadow-md);
}

.step-card h3 { font-size: 1.07rem; font-weight: 700; color: var(--text-primary); margin-bottom: 10px; }
.step-card p  { font-size: 0.91rem; color: var(--text-secondary); line-height: 1.8; }

/* ============================================================
   FEATURES
   ============================================================ */
.features-section { background: var(--bg-white); }

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.feature-card {
  background: var(--bg-white);
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; right: 0; left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--transition);
}
.feature-card:hover {
  border-color: var(--border);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.feature-card:hover::before { transform: scaleX(1); }

.feature-icon {
  width: 52px; height: 52px;
  border-radius: 13px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.feature-icon svg { width: 26px; height: 26px; fill: none; stroke-width: 1.8; }

.icon-navy   { background: rgba(26,53,96,0.08); }   .icon-navy svg   { stroke: var(--primary); }
.icon-gold   { background: rgba(200,147,42,0.10); }  .icon-gold svg   { stroke: var(--accent-dark); }
.icon-teal   { background: rgba(13,148,136,0.09); }  .icon-teal svg   { stroke: #0D9488; }
.icon-purple { background: rgba(124,58,237,0.08); }  .icon-purple svg { stroke: #7C3AED; }
.icon-rose   { background: rgba(225,29,72,0.08); }   .icon-rose svg   { stroke: #E11D48; }
.icon-green  { background: rgba(22,163,74,0.08); }   .icon-green svg  { stroke: #16A34A; }

.feature-card h3 { font-size: 1.03rem; font-weight: 700; color: var(--text-primary); margin-bottom: 9px; }
.feature-card p  { font-size: 0.89rem; color: var(--text-secondary); line-height: 1.78; }

/* ============================================================
   AUDIENCE
   ============================================================ */
.audience-section {
  background: var(--bg-dark);
  position: relative;
  overflow: hidden;
}
.audience-section::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 90% 10%, rgba(200,147,42,0.06) 0%, transparent 50%),
    radial-gradient(circle at 10% 90%, rgba(63,125,154,0.14) 0%, transparent 50%);
  pointer-events: none;
}
.audience-section .section-heading  { color: white; }
.audience-section .section-subheading { color: var(--text-white-muted); }
.audience-section .section-label   { color: var(--accent-light); background: rgba(200,147,42,0.11); }

.audience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.audience-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  text-align: center;
  transition: all var(--transition);
  backdrop-filter: blur(8px);
}
.audience-card:hover {
  background: rgba(255,255,255,0.09);
  border-color: rgba(200,147,42,0.28);
  transform: translateY(-4px);
}
.audience-emoji { font-size: 2.3rem; margin-bottom: 14px; display: block; }
.audience-card h4 { font-size: 0.94rem; font-weight: 600; color: white; margin-bottom: 7px; }
.audience-card p  { font-size: 0.82rem; color: rgba(255,255,255,0.50); line-height: 1.65; }

/* ============================================================
   WHY SECTION
   ============================================================ */
.why-section { background: var(--bg-light); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.why-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: var(--bg-white);
  padding: 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  transition: all var(--transition);
}
.why-item:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }

.why-icon {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.why-icon svg { width: 22px; height: 22px; fill: none; stroke: white; stroke-width: 2; }

.why-content h4 { font-size: 0.99rem; font-weight: 700; color: var(--text-primary); margin-bottom: 6px; }
.why-content p  { font-size: 0.89rem; color: var(--text-secondary); line-height: 1.75; }

/* ============================================================
   SCREENSHOTS SECTION
   ============================================================ */
.screenshots-section { background: var(--bg-white); overflow: hidden; }

.screenshots-phones {
  display: flex;
  gap: 24px;
  justify-content: center;
  align-items: flex-start;
  padding: 10px 0 4px;
}

/* REPLACE: Replace .screen-phone inner content with real <img> screenshots when ready */
.screen-phone {
  width: 210px;
  height: 430px;
  border: 2px solid var(--border);
  border-radius: 36px;
  background: linear-gradient(170deg, var(--bg-dark), var(--primary-dark));
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  flex-shrink: 0;
  transition: all var(--transition);
}
.screen-phone:hover { transform: translateY(-8px); box-shadow: 0 20px 60px rgba(26,53,96,0.24); }
.screen-phone.featured {
  width: 230px;
  height: 470px;
  margin-top: -20px;
  border-color: var(--accent);
  box-shadow: 0 8px 48px rgba(26,53,96,0.22), 0 0 0 1px rgba(200,147,42,0.4);
}

.screen-notch {
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 56px; height: 16px;
  background: rgba(0,0,0,0.65);
  border-radius: 0 0 10px 10px;
  z-index: 2;
}

.screen-inner {
  position: absolute;
  inset: 18px 8px 8px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.screen-bar {
  height: 36px;
  background: rgba(255,255,255,0.07);
  border-radius: 9px;
}
.screen-row {
  display: flex;
  gap: 6px;
}
.screen-tag {
  flex: 1;
  height: 22px;
  background: rgba(255,255,255,0.05);
  border-radius: 6px;
}
.screen-tag.hl { background: rgba(200,147,42,0.22); }

.screen-block {
  height: 80px;
  background: rgba(255,255,255,0.05);
  border-radius: 10px;
}
.screen-block.tall { height: 110px; }
.screen-block.accent { background: rgba(200,147,42,0.10); }

.screen-placeholder-label {
  position: absolute;
  bottom: 16px; left: 50%;
  transform: translateX(-50%);
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.40);
  font-size: 0.68rem;
  padding: 3px 12px;
  border-radius: 20px;
  white-space: nowrap;
}

.screenshots-note {
  text-align: center;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 28px;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-section { background: var(--bg-light); }

.faq-list { max-width: 760px; margin: 0 auto; }

.faq-item {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  margin-bottom: 10px;
  overflow: hidden;
  transition: box-shadow var(--transition);
}
.faq-item:hover { box-shadow: var(--shadow-sm); }
.faq-item.open   { box-shadow: var(--shadow-md); border-color: var(--border); }

.faq-question {
  width: 100%;
  text-align: right;
  padding: 20px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.96rem;
  font-weight: 600;
  color: var(--text-primary);
  cursor: pointer;
  transition: color var(--transition-fast);
  background: none;
  border: none;
  font-family: inherit;
}
.faq-question:hover { color: var(--primary); }
.faq-item.open .faq-question { color: var(--primary); }

.faq-icon {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--bg-alt);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: all var(--transition);
}
.faq-icon svg { width: 14px; height: 14px; stroke: var(--text-muted); fill: none; stroke-width: 2.5; transition: transform var(--transition); }
.faq-item.open .faq-icon { background: var(--primary); }
.faq-item.open .faq-icon svg { stroke: white; transform: rotate(45deg); }

.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-item.open .faq-answer { max-height: 300px; }

.faq-answer-inner {
  padding: 0 22px 20px;
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.82;
  border-top: 1px solid var(--border-light);
  padding-top: 16px;
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--bg-dark) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(200,147,42,0.08) 0%, transparent 62%);
  pointer-events: none;
}

.cta-section .section-label { color: var(--accent-light); background: rgba(200,147,42,0.11); }
.cta-section h2 { font-size: clamp(1.8rem, 4vw, 2.7rem); font-weight: 800; color: white; margin-bottom: 14px; }
.cta-section p  {
  font-size: 1.03rem;
  color: rgba(255,255,255,0.62);
  max-width: 500px;
  margin: 0 auto 36px;
  line-height: 1.85;
}
.cta-section .store-buttons { justify-content: center; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--bg-darker);
  color: rgba(255,255,255,0.60);
  padding: 64px 0 32px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 28px;
}

.footer-brand .nav-logo { margin-bottom: 14px; display: inline-flex; }
.footer-brand p {
  font-size: 0.87rem;
  line-height: 1.82;
  color: rgba(255,255,255,0.45);
  max-width: 255px;
}

.footer-col h5 {
  font-size: 0.82rem;
  font-weight: 700;
  color: rgba(255,255,255,0.85);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 9px; }
.footer-col ul a { font-size: 0.87rem; color: rgba(255,255,255,0.46); transition: color var(--transition-fast); }
.footer-col ul a:hover { color: rgba(255,255,255,0.88); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom p { font-size: 0.80rem; color: rgba(255,255,255,0.30); }

.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: 0.80rem; color: rgba(255,255,255,0.30); transition: color var(--transition-fast); }
.footer-bottom-links a:hover { color: rgba(255,255,255,0.68); }

/* ============================================================
   INNER PAGE HERO
   ============================================================ */
.page-hero {
  background: linear-gradient(145deg, var(--bg-darker) 0%, var(--bg-dark) 100%);
  padding: calc(var(--nav-height) + 60px) 0 80px;
  text-align: center;
}
.page-hero h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 800; color: white; margin-bottom: 14px; }
.page-hero p  { font-size: 1.03rem; color: rgba(255,255,255,0.60); max-width: 540px; margin: 0 auto; line-height: 1.85; }
.page-hero .section-label { color: var(--accent-light); background: rgba(200,147,42,0.11); }

/* ============================================================
   CONTENT PAGES (Privacy, Terms)
   ============================================================ */
.content-page { padding: 72px 0 96px; }

.content-body { max-width: 800px; margin: 0 auto; }

.content-body h2 {
  font-size: 1.38rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 44px 0 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--border-light);
}
.content-body h2:first-child { margin-top: 0; }

.content-body p  { font-size: 0.94rem; color: var(--text-secondary); line-height: 1.88; margin-bottom: 14px; }
.content-body strong { color: var(--text-primary); }

.content-body ul {
  list-style: disc;
  padding-right: 22px;
  margin-bottom: 14px;
}
.content-body ul li { font-size: 0.94rem; color: var(--text-secondary); line-height: 1.82; margin-bottom: 5px; }

.legal-note {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 15px 18px;
  font-size: 0.84rem;
  color: var(--text-muted);
  margin: 22px 0;
  border-inline-start: 3px solid var(--accent);
}
.legal-note strong {
  color: var(--accent-dark);
  display: block;
  margin-bottom: 3px;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-story { padding: 80px 0; background: var(--bg-white); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-text h2 { font-size: clamp(1.5rem, 3.5vw, 2.1rem); font-weight: 800; margin-bottom: 20px; }
.about-text p  { font-size: 0.96rem; color: var(--text-secondary); line-height: 1.88; margin-bottom: 16px; }

.about-stat-row {
  display: flex;
  gap: 24px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.about-stat {
  text-align: center;
  background: var(--bg-light);
  border-radius: var(--radius-lg);
  padding: 20px 28px;
  flex: 1;
  min-width: 100px;
}
.about-stat strong { display: block; font-size: 1.8rem; font-weight: 800; color: var(--primary); }
.about-stat span   { font-size: 0.82rem; color: var(--text-muted); }

.about-visual-block {
  background: linear-gradient(145deg, var(--bg-dark), var(--primary-dark));
  border-radius: var(--radius-xl);
  min-height: 360px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px;
  text-align: center;
  gap: 16px;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.about-visual-block::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 60% 30%, rgba(200,147,42,0.09) 0%, transparent 60%);
}
.about-visual-icon {
  font-size: 3.5rem;
  position: relative; z-index: 1;
}
.about-visual-block h3 { color: white; font-size: 1.3rem; font-weight: 700; position: relative; z-index: 1; }
.about-visual-block p  { color: rgba(255,255,255,0.55); font-size: 0.88rem; max-width: 220px; line-height: 1.7; position: relative; z-index: 1; }

.about-values { background: var(--bg-light); padding: 80px 0; }

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.value-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  transition: all var(--transition);
}
.value-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.value-icon { font-size: 2rem; margin-bottom: 14px; display: block; }
.value-card h3 { font-size: 1.01rem; font-weight: 700; color: var(--text-primary); margin-bottom: 8px; }
.value-card p  { font-size: 0.87rem; color: var(--text-muted); line-height: 1.72; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-section { padding: 80px 0; background: var(--bg-white); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 64px;
  align-items: start;
}

.contact-info h3 { font-size: 1.28rem; font-weight: 700; color: var(--text-primary); margin-bottom: 12px; }
.contact-info p  { font-size: 0.94rem; color: var(--text-secondary); line-height: 1.82; margin-bottom: 30px; }

.contact-methods { display: flex; flex-direction: column; gap: 14px; }

.contact-method {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 15px 16px;
  background: var(--bg-light);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  transition: all var(--transition);
  text-decoration: none;
}
.contact-method:hover { box-shadow: var(--shadow-sm); border-color: var(--border); }

.contact-method-icon {
  width: 40px; height: 40px;
  background: var(--primary);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-method-icon svg { width: 18px; height: 18px; fill: none; stroke: white; stroke-width: 2; }
.contact-method-text small { display: block; font-size: 0.73rem; color: var(--text-muted); margin-bottom: 2px; }
.contact-method-text strong { font-size: 0.91rem; color: var(--text-primary); font-weight: 600; }

/* Contact Form */
.contact-form-card {
  background: var(--bg-white);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-light);
}
.contact-form-card h3 { font-size: 1.18rem; font-weight: 700; color: var(--text-primary); margin-bottom: 26px; }

.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 0.87rem; font-weight: 600; color: var(--text-primary); margin-bottom: 6px; }

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  font-size: 0.94rem;
  font-family: inherit;
  color: var(--text-primary);
  background: var(--bg-white);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  direction: rtl;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(26,53,96,0.08);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-muted); }
.form-group textarea { resize: vertical; min-height: 120px; }

.form-submit {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 4px;
}
.form-submit .btn { min-width: 150px; justify-content: center; }
.form-disclaimer { font-size: 0.77rem; color: var(--text-muted); line-height: 1.62; }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.10s; }
.reveal-delay-2 { transition-delay: 0.20s; }
.reveal-delay-3 { transition-delay: 0.30s; }
.reveal-delay-4 { transition-delay: 0.40s; }
.reveal-delay-5 { transition-delay: 0.50s; }

/* ============================================================
   LTR (ENGLISH) OVERRIDES
   ============================================================ */
html[dir="ltr"] .faq-question { text-align: left; }
html[dir="ltr"] .form-group input,
html[dir="ltr"] .form-group select,
html[dir="ltr"] .form-group textarea { direction: ltr; text-align: left; }
html[dir="ltr"] .content-body ul { padding-left: 22px; padding-right: 0; }
html[dir="ltr"] .steps-grid::before { background: linear-gradient(90deg, var(--border-light), var(--accent-light), var(--border-light)); }
html[dir="ltr"] .nav-logo-text { font-family: 'Segoe UI', system-ui, sans-serif; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  :root { --section-py: 72px; }

  .hero-grid     { grid-template-columns: 1fr; text-align: center; }
  .hero-visual   { display: none; }
  .hero-desc     { margin: 0 auto 36px; }
  .hero-cta      { align-items: center; }
  .store-buttons { justify-content: center; }

  .what-grid     { grid-template-columns: 1fr; }
  .what-visual   { display: none; }

  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .audience-grid { grid-template-columns: repeat(2, 1fr); }

  .footer-top    { grid-template-columns: 1fr 1fr; gap: 32px; }

  .about-grid    { grid-template-columns: 1fr; }
  .contact-grid  { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root { --section-py: 56px; }

  .nav-links      { display: none; }
  .nav-cta        { display: none; }
  .lang-switcher  { display: none; }
  .nav-toggle     { display: flex; }

  .steps-grid         { grid-template-columns: 1fr; }
  .steps-grid::before { display: none; }
  .features-grid      { grid-template-columns: 1fr; }
  .audience-grid      { grid-template-columns: 1fr 1fr; }
  .why-grid           { grid-template-columns: 1fr; }
  .values-grid        { grid-template-columns: 1fr; }

  .screenshots-phones { gap: 14px; }
  .screen-phone:not(.featured) { display: none; }

  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .contact-form-card { padding: 24px 20px; }
  .about-stat-row { gap: 14px; }
}

@media (max-width: 480px) {
  :root { --section-py: 48px; }

  .hero h1 { font-size: 2rem; }
  .audience-grid { grid-template-columns: 1fr; }
  .store-buttons { flex-direction: column; width: 100%; }
  .store-btn { justify-content: center; }

  .form-submit { flex-direction: column; align-items: stretch; }
  .form-submit .btn { width: 100%; }
}
