/* Arabic font import — must be first */
@import url('https://fonts.googleapis.com/css2?family=Tajawal:wght@400;500;600;700;800&display=swap');

/* ============================================
   Circle Theme — Design System & Landing Page
   ============================================ */

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

:root {
  /* Primary */
  --primary: #6366F1;
  --primary-light: #818CF8;
  --primary-dark: #4F46E5;
  --primary-glow: rgba(99, 102, 241, 0.15);

  /* Accent */
  --accent-pink: #EC4899;
  --accent-purple: #8B5CF6;

  /* Status */
  --success: #059669;
  --success-light: rgba(5, 150, 105, 0.10);
  --warning: #D97706;
  --danger: #DC2626;
  --info: #2563EB;

  /* Neutrals */
  --bg: #F8FAFC;
  --surface: rgba(255, 255, 255, 0.75);
  --border: #E2E8F0;
  --text-primary: #0F172A;
  --text-secondary: #475569;
  --text-tertiary: #94A3B8;
  --white: #FFFFFF;

  /* Typography */
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Radius */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-2xl: 1.5rem;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0,0,0,0.05);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.07), 0 2px 4px -2px rgba(0,0,0,0.05);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.08), 0 4px 6px -4px rgba(0,0,0,0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.10), 0 8px 10px -6px rgba(0,0,0,0.05);
  --shadow-glow: 0 0 30px rgba(99, 102, 241, 0.15);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font);
  color: var(--text-primary);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--primary-dark); }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* --- Utility --- */
.text-center { text-align: center; }
.text-gradient {
  background: linear-gradient(135deg, #6366F1 0%, #EC4899 40%, #F59E0B 70%, #10B981 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ============================================
   LANGUAGE TOGGLE
   ============================================ */
.lang-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  padding: 0;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-full);
  background: var(--white);
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
  font-family: var(--font);
}
.lang-toggle:hover {
  border-color: var(--primary-light);
  box-shadow: var(--shadow-sm);
  transform: translateY(-1px);
}
.lang-toggle-label {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1;
}

/* ============================================
   RTL SUPPORT
   ============================================ */

[dir="rtl"] body {
  font-family: 'Tajawal', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* Flip the feature row reversed order for RTL */
[dir="rtl"] .feature-row.reversed .feature-text { order: 2; }
[dir="rtl"] .feature-row.reversed .feature-visual { order: 1; }

/* Feature list checkmarks: flip to right side */
[dir="rtl"] .feature-list li {
  flex-direction: row-reverse;
  text-align: right;
}

/* Trust items */
[dir="rtl"] .trust-item {
  flex-direction: row-reverse;
}

/* Nav logo */
[dir="rtl"] .nav-logo {
  flex-direction: row-reverse;
}

/* Footer logo */
[dir="rtl"] .footer-logo {
  flex-direction: row-reverse;
}

/* Footer inner: flip order */
[dir="rtl"] .footer-inner {
  flex-direction: row-reverse;
}

/* Footer links: reverse order */
[dir="rtl"] .footer-links {
  flex-direction: row-reverse;
}

/* Nav links: reverse gap direction handled automatically by flexbox in RTL */

/* Phone frame perspective flip */
[dir="rtl"] .phone-frame {
  transform: rotateY(5deg) rotateX(2deg);
}
[dir="rtl"] .phone-frame:nth-child(2) {
  transform: rotateY(-5deg) rotateX(2deg);
}
[dir="rtl"] .phone-frame:hover,
[dir="rtl"] .phone-frame:nth-child(2):hover {
  transform: rotateY(0) rotateX(0) translateY(-8px);
}

/* Gallery scroll direction */
[dir="rtl"] .gallery-scroll {
  direction: rtl;
}

/* Mobile menu in RTL */
@media (max-width: 768px) {
  [dir="rtl"] .nav-links.open {
    text-align: right;
  }
  [dir="rtl"] .phone-frame,
  [dir="rtl"] .phone-frame:nth-child(2) {
    transform: none;
  }
}

/* Adjust section text alignment for RTL */
[dir="rtl"] .feature-text {
  text-align: right;
}

/* ============================================
   NAVIGATION
   ============================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(248, 250, 252, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
.site-header.scrolled { box-shadow: var(--shadow-md); }

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-weight: 700;
  font-size: 1.375rem;
  color: var(--text-primary);
}
.nav-logo img { height: 36px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}
.nav-links a {
  color: var(--text-secondary);
  font-weight: 500;
  font-size: 0.9375rem;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--primary); }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.5rem;
  background: linear-gradient(135deg, #6366F1, #7C3AED);
  color: var(--white) !important;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.9375rem;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: var(--shadow-md);
}
.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
  color: var(--white) !important;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}
.mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  margin: 5px 0;
  border-radius: 2px;
  transition: 0.3s;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  padding: 10rem 0 6rem;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(99,102,241,0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(236,72,153,0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 60% 80%, rgba(16,185,129,0.05) 0%, transparent 50%),
    var(--bg);
}

.hero-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  background: linear-gradient(135deg, rgba(16,185,129,0.12), rgba(59,130,246,0.12));
  border: 1px solid rgba(16,185,129,0.2);
  border-radius: var(--radius-full);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--success);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(16,185,129,0.15); }
  50% { box-shadow: 0 0 0 8px rgba(16,185,129,0); }
}

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2.5rem;
  background: linear-gradient(135deg, #6366F1 0%, #8B5CF6 50%, #EC4899 100%);
  background-size: 200% auto;
  color: var(--white);
  border: none;
  border-radius: var(--radius-full);
  font-family: var(--font);
  font-weight: 700;
  font-size: 1.125rem;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, background-position 0.5s;
  box-shadow: var(--shadow-lg), 0 0 30px rgba(99,102,241,0.2);
  animation: ctaShimmer 3s ease infinite;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl), 0 0 40px rgba(99,102,241,0.3);
  color: var(--white);
}
@keyframes ctaShimmer {
  0% { background-position: 0% center; }
  50% { background-position: 100% center; }
  100% { background-position: 0% center; }
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: var(--white);
  color: var(--text-primary);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  font-family: var(--font);
  font-weight: 600;
  font-size: 1.0625rem;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
  box-shadow: var(--shadow-sm);
}
.btn-secondary:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-light);
  color: var(--primary);
}

.hero-note {
  font-size: 0.875rem;
  color: var(--text-tertiary);
  margin-top: 0.75rem;
}

/* Hero Phone Mockup */
.hero-mockup {
  margin-top: 4rem;
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  perspective: 1000px;
}

.phone-frame {
  width: 260px;
  border-radius: 2rem;
  overflow: hidden;
  box-shadow: var(--shadow-xl), 0 0 60px rgba(99,102,241,0.12);
  border: 8px solid #1a1a2e;
  background: #1a1a2e;
  transform: rotateY(-5deg) rotateX(2deg);
  transition: transform 0.4s ease;
}
.phone-frame:hover {
  transform: rotateY(0) rotateX(0) translateY(-8px);
}
.phone-frame:nth-child(2) {
  transform: rotateY(5deg) rotateX(2deg);
}
.phone-frame:nth-child(2):hover {
  transform: rotateY(0) rotateX(0) translateY(-8px);
}
.phone-frame img {
  width: 100%;
  display: block;
}

/* ============================================
   TRUST BAR
   ============================================ */
.trust-bar {
  padding: 3rem 0;
  border-bottom: 1px solid var(--border);
  background: var(--white);
}

.trust-items {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-secondary);
  font-weight: 500;
  font-size: 0.9375rem;
}

.trust-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}
.trust-icon.encrypted { background: rgba(99,102,241,0.1); }
.trust-icon.offline { background: rgba(5,150,105,0.1); }
.trust-icon.unlimited { background: rgba(245,158,11,0.1); }
.trust-icon.fast { background: rgba(236,72,153,0.1); }
.trust-icon.free { background: rgba(16,185,129,0.1); }

/* ============================================
   SECTION SHARED
   ============================================ */
.section {
  padding: 6rem 0;
}
.section:nth-child(even) {
  background: var(--white);
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
}

.section-label {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: var(--primary-glow);
  color: var(--primary);
  border-radius: var(--radius-full);
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 1rem;
}

.section-header h2 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.section-header p {
  font-size: 1.125rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ============================================
   FEATURE ROW (alternating image + text)
   ============================================ */
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 6rem;
}
.feature-row:last-child { margin-bottom: 0; }
.feature-row.reversed .feature-text { order: 2; }
.feature-row.reversed .feature-visual { order: 1; }

.feature-text h3 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}

.feature-text p {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.feature-list {
  list-style: none;
  padding: 0;
}
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.5rem 0;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.6;
}
.feature-list li::before {
  content: '';
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-top: 2px;
  border-radius: var(--radius-full);
  background: var(--primary-glow);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%236366F1'%3E%3Cpath fill-rule='evenodd' d='M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z' clip-rule='evenodd'/%3E%3C/svg%3E");
  background-size: 14px;
  background-position: center;
  background-repeat: no-repeat;
}

.feature-visual {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.feature-phone {
  width: 220px;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 6px solid #1a1a2e;
  background: #1a1a2e;
  transition: transform 0.3s ease;
}
.feature-phone:hover { transform: translateY(-6px); }
.feature-phone img { width: 100%; display: block; }

.feature-phone.secondary {
  width: 180px;
  margin-top: 2rem;
  opacity: 0.9;
}

/* ============================================
   FEATURE GRID (overview cards)
   ============================================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.feature-card {
  padding: 2rem;
  border-radius: var(--radius-2xl);
  background: var(--white);
  border: 1px solid var(--border);
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-light);
}

.feature-card-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
}

.feature-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.feature-card p {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Card color variants */
.card-indigo .feature-card-icon { background: linear-gradient(135deg, rgba(99,102,241,0.12), rgba(99,102,241,0.04)); }
.card-green .feature-card-icon { background: linear-gradient(135deg, rgba(5,150,105,0.12), rgba(5,150,105,0.04)); }
.card-amber .feature-card-icon { background: linear-gradient(135deg, rgba(245,158,11,0.12), rgba(245,158,11,0.04)); }
.card-pink .feature-card-icon { background: linear-gradient(135deg, rgba(236,72,153,0.12), rgba(236,72,153,0.04)); }
.card-purple .feature-card-icon { background: linear-gradient(135deg, rgba(139,92,246,0.12), rgba(139,92,246,0.04)); }
.card-blue .feature-card-icon { background: linear-gradient(135deg, rgba(37,99,235,0.12), rgba(37,99,235,0.04)); }

/* ============================================
   SCREENSHOT GALLERY
   ============================================ */
.gallery-scroll {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  padding: 1rem 0 2rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--primary-light) transparent;
}
.gallery-scroll::-webkit-scrollbar { height: 6px; }
.gallery-scroll::-webkit-scrollbar-track { background: transparent; }
.gallery-scroll::-webkit-scrollbar-thumb { background: var(--primary-light); border-radius: 3px; }

.gallery-phone {
  flex-shrink: 0;
  width: 200px;
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 5px solid #1a1a2e;
  background: #1a1a2e;
  scroll-snap-align: start;
  transition: transform 0.3s;
}
.gallery-phone:hover { transform: scale(1.03); }
.gallery-phone img { width: 100%; display: block; }

/* ============================================
   MENA REGION SECTION
   ============================================ */
.mena-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1rem;
  max-width: 800px;
  margin: 0 auto;
}

.mena-card {
  padding: 1.25rem 1rem;
  text-align: center;
  border-radius: var(--radius-xl);
  background: var(--white);
  border: 1px solid var(--border);
  transition: transform 0.2s, box-shadow 0.2s;
}
.mena-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.mena-card .flag { font-size: 2rem; margin-bottom: 0.5rem; }
.mena-card .country { font-weight: 600; font-size: 0.875rem; color: var(--text-primary); }
.mena-card .currency { font-size: 0.8125rem; color: var(--text-tertiary); margin-top: 0.25rem; }

/* ============================================
   STATS BAR
   ============================================ */
.stats-bar {
  padding: 4rem 0;
  background: linear-gradient(135deg, #6366F1 0%, #7C3AED 50%, #8B5CF6 100%);
  color: var(--white);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 0.9375rem;
  opacity: 0.85;
  font-weight: 500;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  padding: 6rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(99,102,241,0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 50%, rgba(236,72,153,0.04) 0%, transparent 50%),
    var(--bg);
}

.cta-section h2 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.cta-section p {
  font-size: 1.125rem;
  color: var(--text-secondary);
  max-width: 550px;
  margin: 0 auto 2rem;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  padding: 3rem 0;
  border-top: 1px solid var(--border);
  background: var(--white);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--text-primary);
}
.footer-logo img { height: 28px; }

.footer-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}
.footer-links a {
  color: var(--text-secondary);
  font-size: 0.875rem;
  font-weight: 500;
}
.footer-links a:hover { color: var(--primary); }

.footer-copy {
  font-size: 0.8125rem;
  color: var(--text-tertiary);
}

/* ============================================
   ANIMATIONS (scroll-triggered)
   ============================================ */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* stagger children */
.stagger-children .fade-up:nth-child(1) { transition-delay: 0s; }
.stagger-children .fade-up:nth-child(2) { transition-delay: 0.1s; }
.stagger-children .fade-up:nth-child(3) { transition-delay: 0.2s; }
.stagger-children .fade-up:nth-child(4) { transition-delay: 0.3s; }
.stagger-children .fade-up:nth-child(5) { transition-delay: 0.4s; }
.stagger-children .fade-up:nth-child(6) { transition-delay: 0.5s; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .feature-row { grid-template-columns: 1fr; gap: 2.5rem; }
  .feature-row.reversed .feature-text { order: 1; }
  .feature-row.reversed .feature-visual { order: 2; }
  .feature-visual { justify-content: center; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .mobile-menu-btn { display: block; }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 1.5rem;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
    gap: 1rem;
  }

  .hero { padding: 8rem 0 4rem; }
  .hero h1 { font-size: 2.25rem; }
  .hero-subtitle { font-size: 1.0625rem; }

  .hero-mockup { gap: 0.75rem; }
  .phone-frame { width: 180px; border-width: 6px; border-radius: 1.5rem; }
  .phone-frame, .phone-frame:nth-child(2) { transform: none; }

  .section { padding: 4rem 0; }
  .section-header { margin-bottom: 2.5rem; }

  .features-grid { grid-template-columns: 1fr; }
  .feature-phone { width: 180px; }
  .feature-phone.secondary { width: 150px; }

  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-number { font-size: 2rem; }

  .hero-actions { flex-direction: column; }
  .btn-primary, .btn-secondary { width: 100%; justify-content: center; }
}

@media (max-width: 480px) {
  .trust-items { gap: 1.5rem; }
  .mena-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-phone { width: 160px; }
}
