/* ═══════════════════════════════════════════════════
   JANAZA LANDING PAGE — STYLES
   ═══════════════════════════════════════════════════ */

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

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

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: #1e293b;
  background: #ffffff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

/* ── CSS Variables ── */
:root {
  --teal:        #0d9488;
  --teal-light:  #2dd4bf;
  --teal-dark:   #0f766e;
  --green:       #16a34a;
  --blue:        #2563eb;
  --purple:      #7c3aed;
  --orange:      #ea580c;
  --slate-50:    #f8fafc;
  --slate-100:   #f1f5f9;
  --slate-200:   #e2e8f0;
  --slate-400:   #94a3b8;
  --slate-600:   #475569;
  --slate-700:   #334155;
  --slate-800:   #1e293b;
  --slate-900:   #0f172a;
  --radius:      12px;
  --shadow-sm:   0 1px 3px rgba(0,0,0,.08);
  --shadow-md:   0 4px 16px rgba(0,0,0,.10);
  --shadow-lg:   0 16px 48px rgba(0,0,0,.12);
  --transition:  0.2s ease;
}

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

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--teal);
  color: #fff;
  box-shadow: 0 4px 14px rgba(13,148,136,.35);
}
.btn-primary:hover {
  background: var(--teal-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(13,148,136,.45);
}
.btn-outline {
  border: 2px solid var(--slate-200);
  color: var(--slate-700);
}
.btn-outline:hover {
  border-color: var(--teal);
  color: var(--teal);
  transform: translateY(-1px);
}
.btn-large { padding: 15px 32px; font-size: 16px; }

/* ── Gradient Text ── */
.gradient-text {
  background: linear-gradient(135deg, var(--teal) 0%, #22d3ee 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Section Shared ── */
.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-tag {
  display: inline-block;
  background: #ccfbf1;
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 16px;
}
.section-tag.light {
  background: rgba(255,255,255,.2);
  color: #fff;
}
.section-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  line-height: 1.2;
  color: var(--slate-900);
  margin-bottom: 16px;
}
.section-subtitle {
  font-size: 18px;
  color: var(--slate-600);
  max-width: 560px;
  margin: 0 auto;
}

/* ═══════════════════════
   NAVBAR
════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
}
.navbar.scrolled {
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--slate-200);
  padding: 12px 0;
}
.nav-container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.nav-logo-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  object-fit: cover;
}
.nav-logo-text {
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -.02em;
  transition: color var(--transition);
}
.navbar.scrolled .nav-logo-text {
  color: var(--slate-900);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}
.nav-links a {
  font-size: 15px;
  font-weight: 500;
  color: rgba(255,255,255,.8);
  padding: 8px 12px;
  border-radius: 8px;
  transition: color var(--transition), background var(--transition);
}
.nav-links a:hover { color: var(--teal-light); background: rgba(255,255,255,.08); }
.navbar.scrolled .nav-links a { color: var(--slate-600); }
.navbar.scrolled .nav-links a:hover { color: var(--teal); background: #f0fdfa; }
.nav-cta { flex-shrink: 0; }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  margin-left: auto;
  padding: 4px;
  position: relative;
  z-index: 1100; /* always above the nav-links overlay */
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s;
}
.navbar.scrolled .nav-toggle span { background: var(--slate-700); }
/* When menu is open, keep the X white regardless of scroll state */
.navbar.menu-open .nav-toggle span { background: #fff; }

/* ── Mobile menu overlay (appended to <body> to avoid iOS Safari stacking-context bugs) ── */
#mobileMenu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--slate-900);
  z-index: 999; /* below navbar (1000) so the hamburger/X button in the navbar stays tappable */
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 16px;
  padding: 32px;
  -webkit-overflow-scrolling: touch;
}
#mobileMenu.active {
  display: flex;
}
#mobileMenu .nav-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-left: 0;
}
#mobileMenu .nav-links a {
  font-size: 22px;
  font-weight: 600;
  color: #fff;
  padding: 10px 20px;
  border-radius: 10px;
}
#mobileMenu .nav-links a:hover,
#mobileMenu .nav-links a:active {
  background: rgba(255,255,255,.1);
  color: var(--teal-light);
}
#mobileMenu .nav-cta {
  margin-top: 24px;
}

/* ═══════════════════════
   HERO
════════════════════════ */
.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(150deg, #0f172a 0%, #134e4a 60%, #0d9488 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
}
.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse 80% 80% at 80% 40%, rgba(45,212,191,.12) 0%, transparent 60%),
    radial-gradient(ellipse 60% 60% at 10% 60%, rgba(13,148,136,.15) 0%, transparent 50%);
  pointer-events: none;
}
.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.15);
  color: #99f6e4;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 24px;
  backdrop-filter: blur(8px);
}
.badge-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #2dd4bf;
  box-shadow: 0 0 8px #2dd4bf;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50%      { opacity: .6; transform: scale(1.3); }
}
.hero-title {
  font-size: clamp(36px, 5.5vw, 68px);
  font-weight: 800;
  line-height: 1.1;
  color: #fff;
  letter-spacing: -.03em;
  margin-bottom: 24px;
}
.hero-subtitle {
  font-size: 18px;
  color: rgba(255,255,255,.75);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 480px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.hero-actions .btn-outline {
  border-color: rgba(255,255,255,.25);
  color: rgba(255,255,255,.9);
}
.hero-actions .btn-outline:hover {
  border-color: var(--teal-light);
  color: var(--teal-light);
}
.hero-stores {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.store-badge img {
  height: 40px;
  width: auto;
  border-radius: 8px;
  opacity: .85;
  transition: opacity var(--transition);
}
.store-badge:hover img { opacity: 1; }

/* ── Phone Mockup ── */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}
.phone-mockup {
  position: relative;
  width: 280px;
}
.phone-glow {
  position: absolute;
  inset: -20px;
  background: radial-gradient(ellipse at center, rgba(45,212,191,.25) 0%, transparent 70%);
  pointer-events: none;
  border-radius: 50%;
}
.phone-frame {
  position: relative;
  background: #1a1a2e;
  border-radius: 44px;
  padding: 14px;
  box-shadow:
    0 0 0 2px rgba(255,255,255,.1),
    0 32px 80px rgba(0,0,0,.6),
    inset 0 1px 0 rgba(255,255,255,.1);
}
.phone-screen {
  background: #f8fafc;
  border-radius: 32px;
  overflow: hidden;
  min-height: 480px;
}
.app-preview { padding: 20px 16px; }
.app-header-preview {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid #e2e8f0;
}
.app-header-title {
  font-size: 15px;
  font-weight: 700;
  color: #0f172a;
}
.app-header-icon { font-size: 20px; }
.event-card-preview {
  background: #fff;
  border-radius: 14px;
  padding: 14px;
  margin-bottom: 10px;
  box-shadow: 0 2px 12px rgba(0,0,0,.07);
  border: 1px solid #f1f5f9;
  animation: slideInUp 0.5s ease both;
}
.event-card-preview.secondary { animation-delay: .15s; }
.event-card-time {
  font-size: 11px;
  color: var(--teal);
  font-weight: 600;
  margin-bottom: 4px;
}
.event-card-name {
  font-size: 14px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 6px;
}
.event-card-location {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  color: var(--slate-600);
  margin-bottom: 8px;
}
.event-card-badge {
  display: inline-block;
  background: #dcfce7;
  color: #15803d;
  font-size: 10px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 50px;
}
.event-card-badge.upcoming {
  background: #e0f2fe;
  color: #0369a1;
}
.notification-preview {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #0f172a;
  border-radius: 12px;
  padding: 10px 12px;
  margin-top: 12px;
  animation: slideInUp 0.5s ease .3s both;
}
.notification-icon { font-size: 18px; }
.notification-title { font-size: 12px; font-weight: 700; color: #fff; }
.notification-body  { font-size: 10px; color: rgba(255,255,255,.6); }
@keyframes slideInUp {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Hero Wave ── */
.hero-wave {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  line-height: 0;
}
.hero-wave svg { width: 100%; height: 80px; }

/* ═══════════════════════
   STATS
════════════════════════ */
.stats-section {
  background: #f8fafc;
  padding: 48px 0;
  border-bottom: 1px solid var(--slate-200);
}
.stats-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.stat-item {
  text-align: center;
  padding: 16px 48px;
}
.stat-number {
  font-size: 32px;
  font-weight: 800;
  color: var(--teal-dark);
  line-height: 1;
  margin-bottom: 4px;
  letter-spacing: -.02em;
}
.stat-label {
  font-size: 14px;
  color: var(--slate-600);
}
.stat-divider {
  width: 1px;
  height: 48px;
  background: var(--slate-200);
}

/* ═══════════════════════
   FEATURES
════════════════════════ */
.features {
  padding: 100px 0;
  background: #fff;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-card {
  background: var(--slate-50);
  border: 1px solid var(--slate-100);
  border-radius: 20px;
  padding: 32px;
  transition: transform var(--transition), box-shadow var(--transition);
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.feature-card--large {
  grid-column: span 2;
}
.feature-icon-wrap {
  width: 56px; height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.feature-icon-wrap.teal   { background: #ccfbf1; color: var(--teal-dark); }
.feature-icon-wrap.green  { background: #dcfce7; color: var(--green); }
.feature-icon-wrap.blue   { background: #dbeafe; color: var(--blue); }
.feature-icon-wrap.purple { background: #ede9fe; color: var(--purple); }
.feature-icon-wrap.orange { background: #ffedd5; color: var(--orange); }
.feature-card h3 {
  font-size: 19px;
  font-weight: 700;
  color: var(--slate-900);
  margin-bottom: 10px;
}
.feature-card p {
  font-size: 15px;
  color: var(--slate-600);
  line-height: 1.65;
}
.feature-tag-row { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 18px; }
.feature-tag {
  background: #ccfbf1;
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 50px;
}
.feature-platform-badges { display: flex; gap: 10px; margin-top: 18px; }
.platform-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
}
.platform-badge.ios     { background: #000; color: #fff; }
.platform-badge.android { background: #3ddc84; color: #000; }

/* ═══════════════════════
   HOW IT WORKS
════════════════════════ */
.how-it-works {
  padding: 100px 0;
  background: var(--slate-50);
}
.steps-grid {
  display: flex;
  align-items: flex-start;
  gap: 0;
  justify-content: center;
}
.step-card {
  flex: 1;
  max-width: 280px;
  text-align: center;
  padding: 32px 24px;
  background: #fff;
  border-radius: 20px;
  border: 1px solid var(--slate-100);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.step-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.step-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 8px;
  flex-shrink: 0;
  margin-top: 48px;
  opacity: .7;
}
.step-number {
  font-size: 13px;
  font-weight: 800;
  color: var(--teal);
  letter-spacing: .05em;
  margin-bottom: 16px;
}
.step-icon {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, #ccfbf1, #99f6e4);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--teal-dark);
}
.step-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--slate-900);
  margin-bottom: 10px;
}
.step-card p {
  font-size: 14px;
  color: var(--slate-600);
  line-height: 1.6;
}

/* ═══════════════════════
   QUOTE
════════════════════════ */
.quote-section {
  padding: 80px 0;
  background: #fff;
}
.quote-card {
  background: linear-gradient(135deg, var(--teal-dark), #0f4c75);
  border-radius: 24px;
  padding: 64px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
.quote-arabesque { flex-shrink: 0; }
.quote-arabesque.right { transform: scaleX(-1); }
blockquote { max-width: 600px; }
.arabic-text {
  font-family: 'Amiri', serif;
  font-size: clamp(28px, 4vw, 42px);
  color: #fff;
  margin-bottom: 16px;
  direction: rtl;
}
.quote-translation {
  font-size: 20px;
  color: rgba(255,255,255,.9);
  font-style: italic;
  margin-bottom: 12px;
}
blockquote cite {
font-size: 14px;
  color: rgba(255,255,255,.6);
  font-style: normal;
}

/* Quote navigation controls */
.quote-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 24px;
}
.quote-nav-btn {
  background: #fff;
  border: 1px solid var(--slate-200);
  color: var(--teal-dark);
  border-radius: 50%;
  width: 38px;
  height: 38px;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
  flex-shrink: 0;
}
.quote-nav-btn:hover {
  background: #f0fdfa;
  border-color: var(--teal);
  box-shadow: var(--shadow-md);
  transform: scale(1.08);
}
.quote-nav-btn:active {
  transform: scale(0.95);
}
.quote-counter {
  font-size: 13px;
  color: var(--slate-400);
  min-width: 48px;
  text-align: center;
  font-variant-numeric: tabular-nums;
}

/* ═══════════════════════
   DOWNLOAD
════════════════════════ */
.download {
  padding: 100px 0;
  background: var(--slate-50);
}
.download-card {
  background: linear-gradient(135deg, var(--slate-900), #134e4a);
  border-radius: 28px;
  padding: 64px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 64px;
  align-items: center;
  overflow: hidden;
  position: relative;
}
.download-card::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(45,212,191,.15) 0%, transparent 70%);
  pointer-events: none;
}
.download-title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: -.02em;
}
.download-subtitle {
  font-size: 17px;
  color: rgba(255,255,255,.7);
  margin-bottom: 36px;
  line-height: 1.6;
}
.download-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.store-button {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 24px;
  border-radius: 14px;
  font-weight: 600;
  transition: transform var(--transition), box-shadow var(--transition);
  min-width: 180px;
}
.store-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,.3);
}
.store-button.apple  { background: #fff; color: #000; }
.store-button.google { background: #fff; color: #000; }
.store-button-icon { flex-shrink: 0; }
.store-button-label { display: block; font-size: 11px; font-weight: 500; opacity: .65; }
.store-button-name  { display: block; font-size: 17px; font-weight: 700; line-height: 1.2; }
.download-note {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: rgba(255,255,255,.5);
}
.qr-placeholder {
  width: 160px; height: 160px;
  background: rgba(255,255,255,.07);
  border: 2px dashed rgba(255,255,255,.2);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.qr-inner {
  text-align: center;
  color: rgba(255,255,255,.4);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  line-height: 1.4;
}

/* ═══════════════════════
   FAQ
════════════════════════ */
.faq {
  padding: 100px 0;
  background: #fff;
}
.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.faq-item {
  border: 1px solid var(--slate-200);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 8px;
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  font-size: 16px;
  font-weight: 600;
  color: var(--slate-800);
  text-align: left;
  gap: 16px;
  transition: background var(--transition);
}
.faq-question:hover { background: var(--slate-50); }
.faq-icon {
  flex-shrink: 0;
  color: var(--slate-400);
  transition: transform 0.3s ease;
}
.faq-item.open .faq-icon { transform: rotate(180deg); color: var(--teal); }
.faq-item.open .faq-question { color: var(--teal-dark); background: #f0fdfa; }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}
.faq-answer p {
  padding: 0 24px 20px;
  font-size: 15px;
  color: var(--slate-600);
  line-height: 1.7;
}
.faq-item.open .faq-answer { max-height: 200px; }

/* ═══════════════════════
   FOOTER
════════════════════════ */
.footer {
  background: var(--slate-900);
  padding: 64px 0 32px;
  color: rgba(255,255,255,.7);
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  margin-bottom: 32px;
}
.footer-brand .nav-logo-text { color: #fff; }
.footer-tagline {
  font-size: 14px;
  color: rgba(255,255,255,.5);
  margin: 16px 0 12px;
  line-height: 1.6;
  max-width: 260px;
}
.footer-basmala {
  font-family: 'Amiri', serif;
  font-size: 20px;
  color: rgba(255,255,255,.35);
  direction: rtl;
}
.footer-links-group h4 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: rgba(255,255,255,.4);
  margin-bottom: 16px;
}
.footer-links-group li { margin-bottom: 10px; }
.footer-links-group a {
  font-size: 14px;
  color: rgba(255,255,255,.6);
  transition: color var(--transition);
}
.footer-links-group a:hover { color: var(--teal-light); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-copy { font-size: 13px; color: rgba(255,255,255,.35); }
.footer-store-links { display: flex; gap: 24px; }
.footer-store-link {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: rgba(255,255,255,.45);
  transition: color var(--transition);
}
.footer-store-link:hover { color: var(--teal-light); }

/* ═══════════════════════
   RESPONSIVE
════════════════════════ */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-card--large { grid-column: span 1; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .hero .container { grid-template-columns: 1fr; text-align: center; }
  .hero { min-height: auto; padding: 100px 0 60px; }
  .hero-subtitle { max-width: 100%; }
  .hero-actions { justify-content: center; }
  .hero-stores { justify-content: center; }
  .hero-visual { display: none; }
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .features-grid { grid-template-columns: 1fr; }
  .stats-grid { flex-direction: column; }
  .stat-divider { width: 60px; height: 1px; }
  .steps-grid { flex-direction: column; align-items: center; }
  .step-connector { transform: rotate(90deg); margin: 0; }
  .quote-card { padding: 40px 24px; flex-direction: column; gap: 16px; }
  .quote-arabesque { display: none; }
  .download-card { grid-template-columns: 1fr; padding: 40px 32px; }
  .download-visual { display: none; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .section-header { margin-bottom: 40px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .download-buttons { flex-direction: column; }
  .store-button { justify-content: center; }
  .footer-top { grid-template-columns: 1fr; }
  .stat-item { padding: 12px 24px; }
}
