/* ========================================
   Zikirmatik — Landing Page Styles
   ======================================== */

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Core palette */
  --bg-deep: #060612;
  --bg-card: #0d0d1f;
  --bg-card-hover: #131330;
  --bg-elevated: #16163a;

  /* Accent */
  --accent: #a78bfa;
  --accent-bright: #c4b5fd;
  --accent-dim: #7c5cfc;
  --accent-glow: rgba(167, 139, 250, 0.15);
  --gold: #f0c060;
  --gold-dim: rgba(240, 192, 96, 0.12);
  --green: #34d399;
  --green-dim: rgba(52, 211, 153, 0.12);

  /* Text */
  --text-primary: #f0eef6;
  --text-secondary: #9994b8;
  --text-muted: #5e587a;

  /* Spacing */
  --section-padding: 120px 24px;
  --container: 1140px;

  /* Typography */
  --font-display: 'Outfit', sans-serif;
  --font-arabic: 'Amiri', serif;

  /* Transitions */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  text-decoration: none;
  color: inherit;
}

/* ========================================
   Ambient Background
   ======================================== */
.ambient-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.4;
}

.orb-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(124, 92, 252, 0.3), transparent 70%);
  top: -200px;
  right: -100px;
  animation: orbFloat 20s ease-in-out infinite;
}

.orb-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(240, 192, 96, 0.15), transparent 70%);
  bottom: 30%;
  left: -150px;
  animation: orbFloat 25s ease-in-out infinite reverse;
}

.orb-3 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(52, 211, 153, 0.1), transparent 70%);
  bottom: -200px;
  right: 20%;
  animation: orbFloat 22s ease-in-out infinite 5s;
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(40px, -30px) scale(1.05); }
  66% { transform: translate(-20px, 20px) scale(0.95); }
}

/* ========================================
   Navigation
   ======================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 24px;
  transition: background 0.4s, backdrop-filter 0.4s, box-shadow 0.4s;
}

.navbar.scrolled {
  background: rgba(6, 6, 18, 0.85);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.04);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 1.15rem;
}

.logo-img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  border-radius: 8px;
  flex-shrink: 0;
}

.logo-img--footer {
  width: 28px;
  height: 28px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--text-secondary);
  transition: color 0.3s;
  letter-spacing: 0.01em;
}

.nav-links a:hover {
  color: var(--text-primary);
}

.nav-cta {
  background: var(--accent-dim);
  color: #fff !important;
  padding: 8px 20px;
  border-radius: 100px;
  font-weight: 500 !important;
  transition: background 0.3s, transform 0.2s !important;
}

.nav-cta:hover {
  background: var(--accent);
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.menu-toggle span {
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: 0.3s;
}

/* ========================================
   Hero
   ======================================== */
.hero {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 24px 80px;
  max-width: var(--container);
  margin: 0 auto;
  gap: 60px;
}

.hero-content {
  flex: 1;
  max-width: 560px;
}

.hero-badge {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--accent-bright);
  background: var(--accent-glow);
  border: 1px solid rgba(167, 139, 250, 0.15);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 28px;
  letter-spacing: 0.05em;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-out) 0.2s forwards;
}

.hero-arabic {
  display: block;
  font-family: var(--font-arabic);
  font-size: 1.8rem;
  color: var(--gold);
  margin-bottom: 12px;
  font-weight: 400;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-out) 0.3s forwards;
}

.hero-title {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-out) 0.4s forwards;
}

.hero-desc {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 480px;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-out) 0.5s forwards;
}

.hero-actions {
  display: flex;
  gap: 14px;
  margin-bottom: 56px;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-out) 0.6s forwards;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 14px;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s var(--ease-out);
  border: none;
}

.btn-primary {
  background: var(--accent-dim);
  color: #fff;
  box-shadow: 0 4px 24px rgba(124, 92, 252, 0.3);
}

.btn-primary:hover {
  background: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(124, 92, 252, 0.4);
}

.btn-ghost {
  background: rgba(255,255,255,0.05);
  color: var(--text-secondary);
  border: 1px solid rgba(255,255,255,0.08);
}

.btn-ghost:hover {
  background: rgba(255,255,255,0.1);
  color: var(--text-primary);
}

/* Stats */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-out) 0.7s forwards;
}

.stat-num {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-primary);
}

.stat-plus {
  font-size: 1.2rem;
  color: var(--accent);
  font-weight: 600;
}

.stat-label {
  display: block;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 2px;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.08);
}

/* ---- Hero Phone — Real Screenshots ---- */
.hero-phone-real {
  position: relative;
  width: 280px;
  perspective: 900px;
}

.hero-phone-frame {
  width: 280px;
  border-radius: 40px;
  overflow: hidden;
  border: 2px solid rgba(255,255,255,0.10);
  box-shadow:
    0 40px 100px rgba(124, 92, 252, 0.25),
    0 0 0 1px rgba(255,255,255,0.04),
    inset 0 1px 0 rgba(255,255,255,0.08);
  position: relative;
  background: #060612;
  transform-style: preserve-3d;
  transition: transform 0.12s ease-out;
  will-change: transform;
}

.hero-phone-slide {
  width: 100%;
  display: block;
  position: absolute;
  top: 0; left: 0;
  opacity: 0;
  transition: opacity 0.7s ease;
}

.hero-phone-slide:first-child {
  position: relative; /* keeps frame height */
}

.hero-phone-slide.active {
  opacity: 1;
  position: relative;
}

/* keep height stable when non-active images are absolute */
.hero-phone-frame {
  overflow: hidden;
}

.hero-phone-dots {
  display: flex;
  justify-content: center;
  gap: 7px;
  margin-top: 16px;
}

.hero-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  transition: all 0.3s;
  cursor: pointer;
  border: none;
  display: inline-block;
}

.hero-dot.active {
  background: var(--accent);
  width: 20px;
  border-radius: 3px;
}

/* ========================================
   Section Headers
   ======================================== */
.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 16px;
}

.section-header h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

/* ========================================
   Features
   ======================================== */
.features {
  position: relative;
  z-index: 1;
  padding: var(--section-padding);
  max-width: var(--container);
  margin: 0 auto;
}

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

.feature-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.04);
  border-radius: 20px;
  padding: 36px 28px;
  transition: all 0.4s var(--ease-out);
  opacity: 0;
  transform: translateY(30px);
}

.feature-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.feature-card:hover {
  background: var(--bg-card-hover);
  border-color: rgba(167, 139, 250, 0.12);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--accent-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--accent);
}

.feature-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

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

/* ========================================
   Screens / Showcase
   ======================================== */
.screens {
  position: relative;
  z-index: 1;
  padding: var(--section-padding);
  max-width: 1200px;
  margin: 0 auto;
}

.screens-showcase {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  perspective: 1200px;
}

.screen-item {
  width: 240px;
  transition: all 0.5s var(--ease-out);
  opacity: 0.5;
  transform: scale(0.9);
  cursor: pointer;
}

.screen-item.active {
  width: 280px;
  opacity: 1;
  transform: scale(1);
}

.screen-item::after {
  content: attr(data-label);
  display: block;
  text-align: center;
  margin-top: 16px;
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
  transition: color 0.3s;
}

.screen-item.active::after {
  color: var(--accent);
}

.screen-frame {
  background: #0a0a1a;
  border-radius: 28px;
  border: 2px solid rgba(255,255,255,0.06);
  overflow: hidden;
  aspect-ratio: 9/18;
  position: relative;
}

.screen-item.active .screen-frame {
  border-color: rgba(167, 139, 250, 0.2);
  box-shadow: 0 20px 80px rgba(124, 92, 252, 0.15);
}

.screen-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.screen-theme-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 10px;
  position: absolute;
  bottom: -24px;
  left: 0;
  right: 0;
}

.theme-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  cursor: pointer;
  opacity: 0.4;
  transition: opacity 0.3s, transform 0.3s;
  border: none;
}

.theme-dot.active {
  opacity: 1;
  transform: scale(1.3);
}

.screen-item {
  position: relative;
  padding-bottom: 0;
}

/* Screen Placeholders */
.screen-placeholder {
  width: 100%;
  height: 100%;
  padding: 20px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.sp-circle {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 2px solid rgba(124, 92, 252, 0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.sp-arabic {
  font-family: var(--font-arabic);
  font-size: 1.3rem;
  color: var(--text-primary);
}

.sp-count {
  font-size: 0.65rem;
  color: var(--text-muted);
}

.sp-search {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border-radius: 10px;
  padding: 8px 12px;
  font-size: 0.6rem;
  color: var(--text-muted);
}

.sp-prayer {
  width: 100%;
  background: rgba(240, 192, 96, 0.08);
  border-radius: 10px;
  padding: 8px 12px;
  font-size: 0.55rem;
  color: var(--gold);
  font-weight: 500;
}

.sp-daily {
  width: 100%;
  background: linear-gradient(135deg, rgba(167, 139, 250, 0.08), rgba(240, 192, 96, 0.08));
  border-radius: 14px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.sp-daily-tag {
  font-size: 0.5rem;
  color: var(--accent);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.sp-daily-arabic {
  font-family: var(--font-arabic);
  font-size: 1rem;
  color: var(--gold);
  line-height: 1.5;
}

.sp-daily-name {
  font-size: 0.6rem;
  color: var(--text-secondary);
}

.sp-quick {
  display: flex;
  gap: 6px;
  width: 100%;
}

.sp-chip {
  flex: 1;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 10px;
  padding: 8px;
  font-family: var(--font-arabic);
  font-size: 0.7rem;
  color: var(--text-secondary);
  text-align: center;
  line-height: 1.4;
}

.sp-chip small {
  display: block;
  font-family: var(--font-display);
  font-size: 0.55rem;
  color: var(--text-muted);
  margin-top: 2px;
}

.sp-chip.accent {
  border-color: rgba(240, 192, 96, 0.15);
  color: var(--gold);
}

.sp-chip.accent small {
  color: var(--gold);
  opacity: 0.6;
}

.sp-community-title {
  font-size: 1rem;
  font-weight: 700;
  align-self: flex-start;
  margin-bottom: 4px;
}

.sp-community-card {
  width: 100%;
  background: rgba(255,255,255,0.03);
  border-radius: 12px;
  padding: 12px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.sp-community-card.done {
  border: 1px solid rgba(52, 211, 153, 0.2);
  background: rgba(52, 211, 153, 0.05);
}

.sp-check {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--green);
  color: #000;
  font-size: 0.7rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-weight: 700;
}

.sp-infinity {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--accent-dim);
  color: #fff;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.sp-community-card strong {
  font-size: 0.7rem;
  display: block;
}

.sp-community-card small {
  font-size: 0.55rem;
  color: var(--text-muted);
}

/* ========================================
   Community
   ======================================== */
.community {
  position: relative;
  z-index: 1;
  padding: var(--section-padding);
}

.community-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 80px;
}

.community-text {
  flex: 1;
}

.community-text h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.community-text p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 420px;
}

.community-badges {
  display: flex;
  gap: 12px;
}

.badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 100px;
  padding: 8px 16px;
}

.badge-emoji {
  font-size: 1.1rem;
}

.badge-text {
  font-size: 0.8rem;
  color: var(--text-secondary);
}

/* Community Cards */
.community-visual {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.comm-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 20px;
  padding: 24px;
  transition: all 0.4s var(--ease-out);
}

.comm-card:hover {
  border-color: rgba(167, 139, 250, 0.15);
  transform: translateX(4px);
}

.comm-avatar-stack {
  display: flex;
  margin-bottom: 14px;
}

.comm-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 600;
  color: #fff;
  border: 2px solid var(--bg-card);
  margin-left: -8px;
}

.comm-avatar:first-child {
  margin-left: 0;
}

.comm-info {
  margin-bottom: 14px;
}

.comm-info strong {
  font-size: 1rem;
  display: block;
  margin-bottom: 4px;
}

.comm-status {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.comm-status.done {
  color: var(--green);
  font-weight: 500;
}

.comm-bar {
  height: 4px;
  background: rgba(255,255,255,0.06);
  border-radius: 4px;
  margin-bottom: 8px;
  overflow: hidden;
}

.comm-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent-dim), var(--accent));
  border-radius: 4px;
  transition: width 1.5s var(--ease-out);
}

.comm-count {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ========================================
   Download / CTA
   ======================================== */
.download {
  position: relative;
  z-index: 1;
  padding: var(--section-padding);
}

.download-inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  background: linear-gradient(135deg, var(--bg-card) 0%, rgba(124, 92, 252, 0.06) 100%);
  border: 1px solid rgba(167, 139, 250, 0.1);
  border-radius: 32px;
  padding: 72px 48px;
  position: relative;
  overflow: hidden;
}

.download-inner::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(240, 192, 96, 0.08), transparent 70%);
  pointer-events: none;
}

.download-arabic {
  font-family: var(--font-arabic);
  font-size: 1.5rem;
  color: var(--gold);
  display: block;
  margin-bottom: 24px;
  opacity: 0.8;
}

.download h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.download p {
  color: var(--text-secondary);
  margin-bottom: 36px;
  font-size: 1.05rem;
}

.download-buttons {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.store-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  padding: 14px 24px;
  transition: all 0.3s var(--ease-out);
  color: var(--text-primary);
}

.store-btn:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(167, 139, 250, 0.3);
  transform: translateY(-2px);
}

.store-btn small {
  display: block;
  font-size: 0.65rem;
  color: var(--text-muted);
  line-height: 1;
}

.store-btn strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1;
}

/* ========================================
   Footer
   ======================================== */
.footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(255,255,255,0.04);
  padding: 64px 24px 0;
}

.footer-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 48px;
  padding-bottom: 48px;
}

.footer-brand {
  max-width: 280px;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-top: 0;
  line-height: 1.6;
}

.footer-links {
  display: flex;
  gap: 64px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col h4 {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.footer-col a {
  font-size: 0.88rem;
  color: var(--text-secondary);
  transition: color 0.3s;
}

.footer-col a:hover {
  color: var(--text-primary);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.04);
  padding: 20px 0;
  text-align: center;
  max-width: var(--container);
  margin: 0 auto;
}

.footer-bottom p {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ========================================
   Animations
   ======================================== */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ========================================
   Responsive
   ======================================== */
@media (max-width: 900px) {
  .hero {
    flex-direction: column;
    text-align: center;
    padding-top: 100px;
    gap: 48px;
  }

  .hero-content {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-desc {
    max-width: 100%;
  }

  .hero-stats {
    justify-content: center;
  }

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

  .community-inner {
    flex-direction: column;
    text-align: center;
    gap: 48px;
  }

  .community-text p {
    max-width: 100%;
  }

  .community-badges {
    justify-content: center;
  }

  .screens-showcase {
    gap: 12px;
  }

  .screen-item {
    width: 160px;
  }

  .screen-item.active {
    width: 200px;
  }

  .footer-inner {
    flex-direction: column;
  }

  .footer-links {
    gap: 36px;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(6, 6, 18, 0.97);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 32px 24px;
    gap: 24px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
  }

  .nav-links.open {
    display: flex;
  }

  .menu-toggle {
    display: flex;
  }
}

@media (max-width: 600px) {
  :root {
    --section-padding: 80px 16px;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .screens-showcase {
    flex-direction: column;
    align-items: center;
  }

  .screen-item,
  .screen-item.active {
    width: 240px;
  }

  .download-inner {
    padding: 48px 24px;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .btn {
    justify-content: center;
  }

  .download-buttons {
    flex-direction: column;
    align-items: center;
  }
}
/* ========================================
   Scroll Progress Bar
   ======================================== */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  z-index: 999;
  background: rgba(255,255,255,0.04);
}

.scroll-progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--accent-dim), var(--accent), var(--gold));
  transition: width 0.1s linear;
  box-shadow: 0 0 8px rgba(167, 139, 250, 0.6);
}

/* ========================================
   Islamic Geometric Overlay
   ======================================== */
.geometric-overlay {
  position: absolute;
  inset: 0;
  opacity: 1;
  pointer-events: none;
}

.geo-pattern {
  width: 100%;
  height: 100%;
}

/* ========================================
   Testimonials
   ======================================== */
.testimonials {
  position: relative;
  z-index: 1;
  padding: var(--section-padding);
  overflow: hidden;
}

/* fade edges */
.testimonials::before,
.testimonials::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 140px;
  z-index: 2;
  pointer-events: none;
}
.testimonials::before {
  left: 0;
  background: linear-gradient(to right, var(--bg-deep), transparent);
}
.testimonials::after {
  right: 0;
  background: linear-gradient(to left, var(--bg-deep), transparent);
}

/* marquee rows */
.marquee-row {
  overflow: hidden;
  margin-bottom: 16px;
}

@keyframes marqueeLeft {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes marqueeRight {
  from { transform: translateX(-50%); }
  to   { transform: translateX(0); }
}

.marquee-track {
  display: flex;
  gap: 16px;
  width: max-content;
}

.marquee-left {
  animation: marqueeLeft 48s linear infinite;
}
.marquee-right {
  animation: marqueeRight 52s linear infinite;
}

/* pause on hover */
.marquee-row:hover .marquee-track {
  animation-play-state: paused;
}

/* card */
.t-card {
  flex-shrink: 0;
  width: 320px;
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 20px;
  padding: 24px 26px 20px;
  position: relative;
  transition: border-color 0.3s, transform 0.3s;
  cursor: default;
}

.t-card:hover {
  border-color: rgba(167,139,250,0.18);
  transform: translateY(-3px);
}

.t-card--gold {
  border-color: rgba(240,192,96,0.14);
  background: linear-gradient(135deg, var(--bg-card) 0%, rgba(240,192,96,0.03) 100%);
}

.t-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold);
  background: rgba(240,192,96,0.1);
  border: 1px solid rgba(240,192,96,0.2);
  padding: 4px 10px;
  border-radius: 100px;
  margin-bottom: 14px;
}

.t-quote {
  font-size: 3rem;
  line-height: 0.6;
  color: var(--accent-dim);
  opacity: 0.4;
  font-family: Georgia, serif;
  margin-bottom: 12px;
  display: block;
}

.t-card p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 20px;
}

.t-author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.t-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

.t-author > div:nth-child(2) {
  flex: 1;
}

.t-author strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-primary);
}

.t-author span {
  font-size: 0.72rem;
  color: var(--text-muted);
}

.t-stars {
  font-size: 0.75rem;
  color: var(--accent);
  letter-spacing: 1px;
  flex-shrink: 0;
}

.t-stars--gold {
  color: var(--gold);
}

/* ========================================
   FAQ
   ======================================== */
.faq {
  position: relative;
  z-index: 1;
  padding: var(--section-padding);
}

.faq-geo-border {
  height: 40px;
  margin-bottom: 0;
  opacity: 0.7;
}

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

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

.faq-item {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 0.3s;
}

.faq-item.open {
  border-color: rgba(167, 139, 250, 0.15);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 28px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-display);
  font-size: 0.98rem;
  font-weight: 500;
  color: var(--text-primary);
  gap: 16px;
  transition: color 0.3s;
}

.faq-question:hover {
  color: var(--accent-bright);
}

.faq-icon {
  flex-shrink: 0;
  color: var(--accent);
  transition: transform 0.4s var(--ease-out);
  display: flex;
}

.faq-item.open .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-answer p {
  padding: 0 28px 24px;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.75;
}

/* ========================================
   Responsive — Testimonials & FAQ
   ======================================== */
@media (max-width: 900px) {
  .testimonial-card {
    width: calc(80vw - 32px);
    min-width: 280px;
  }
}

@media (max-width: 600px) {
  .testimonial-card {
    width: calc(100vw - 80px);
  }

  .faq-question {
    padding: 18px 20px;
    font-size: 0.9rem;
  }

  .faq-answer p {
    padding: 0 20px 20px;
  }
}
/* ========================================
   App Showcase — Profil & İstatistik
   ======================================== */
.app-showcase {
  position: relative;
  z-index: 1;
  padding: var(--section-padding);
}

.app-showcase-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 64px;
}

.app-showcase-phone {
  flex: 0 0 auto;
  position: sticky;
  top: 100px;
}

.showcase-phone-wrap {
  width: 260px;
  border-radius: 36px;
  overflow: hidden;
  border: 2px solid rgba(255,255,255,0.08);
  box-shadow: 0 40px 100px rgba(124, 92, 252, 0.18), 0 0 0 1px rgba(255,255,255,0.04);
}

.showcase-phone-wrap img {
  width: 100%;
  display: block;
}

.app-showcase-text {
  flex: 1;
  min-width: 0;
}

.app-showcase-text h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 16px 0 20px;
}

.app-showcase-text p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 520px;
}

.stat-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.stat-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px;
  overflow: hidden;
  transition: all 0.3s var(--ease-out);
  cursor: default;
  display: flex;
  flex-direction: column;
}

.stat-card:hover {
  border-color: rgba(167, 139, 250, 0.2);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(124, 92, 252, 0.12);
}

/* Image container — natural ratio, no cropping */
.stat-card-img {
  overflow: hidden;
  background: #0a0a1a;
  line-height: 0;
}

.stat-card-img--short {
  /* seri widget is already short naturally */
}

.stat-card-img img {
  width: 100%;
  height: auto;
  display: block;
}

.stat-card span {
  display: block;
  padding: 10px 14px 12px;
  font-size: 0.78rem;
  color: var(--text-secondary);
  font-weight: 500;
  line-height: 1.4;
}

/* ========================================
   Zen Mod Showcase
   ======================================== */
.zen-showcase {
  position: relative;
  z-index: 1;
  padding: var(--section-padding);
  background: rgba(0, 0, 0, 0.35);
  border-top: 1px solid rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.zen-showcase-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 80px;
}

.zen-showcase-text {
  flex: 1;
}

.zen-showcase-text h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 16px 0 20px;
}

.zen-showcase-text p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 440px;
}

.zen-feat-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.zen-feat-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.zen-feat-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--text-muted);
  flex-shrink: 0;
}

.zen-showcase-phone {
  flex: 0 0 auto;
  position: relative;
}

.zen-phone-glow {
  position: absolute;
  width: 280px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(255,255,255,0.04) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.zen-phone-wrap {
  border-color: rgba(255,255,255,0.06) !important;
  box-shadow: 0 40px 100px rgba(0,0,0,0.7), inset 0 1px 0 rgba(255,255,255,0.05) !important;
}

/* ========================================
   Zikir AI Showcase
   ======================================== */
.ai-showcase {
  position: relative;
  z-index: 1;
  padding: var(--section-padding);
}

.ai-showcase-header {
  margin-bottom: 60px !important;
}

.ai-showcase-layout {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 64px;
}

.ai-showcase-text {
  flex: 1;
  padding-top: 8px;
}

.ai-showcase-text p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 28px;
}

.ai-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 36px;
}

.ai-chip {
  background: var(--bg-card);
  border: 1px solid rgba(167, 139, 250, 0.18);
  border-radius: 100px;
  padding: 9px 18px;
  font-size: 0.85rem;
  color: var(--accent-bright);
  transition: all 0.3s;
  cursor: default;
}

.ai-chip:hover {
  background: var(--accent-glow);
  border-color: rgba(167, 139, 250, 0.35);
}

.ai-info-row {
  display: flex;
  gap: 20px;
}

.ai-info-item {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  padding: 16px 24px;
  text-align: center;
  flex: 1;
}

.ai-info-item--accent {
  border-color: rgba(167, 139, 250, 0.2);
  background: var(--accent-glow);
}

.ai-info-num {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1;
  margin-bottom: 6px;
}

.ai-info-item--accent .ai-info-num {
  color: var(--accent-bright);
}

.ai-info-label {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.ai-showcase-chat {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.ai-chat-q {
  align-self: flex-end;
  max-width: 72%;
}

.ai-chat-q img {
  width: 100%;
  border-radius: 18px 18px 4px 18px;
  display: block;
}

.ai-chat-a {
  align-self: flex-start;
  max-width: 95%;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(167, 139, 250, 0.1);
}

.ai-chat-a img {
  width: 100%;
  display: block;
}

.ai-chat-a--second {
  border-color: rgba(240, 192, 96, 0.12);
}

/* ========================================
   Community — Phone Frames (updated)
   ======================================== */
.comm-phones-row {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.comm-phone-frame {
  flex: 1;
  border-radius: 28px;
  overflow: hidden;
  border: 2px solid rgba(255,255,255,0.07);
  box-shadow: 0 24px 60px rgba(0,0,0,0.4);
  background: #111;
  transition: all 0.4s var(--ease-out);
  position: relative;
}

.comm-phone-frame:hover {
  border-color: rgba(167, 139, 250, 0.2);
  transform: translateY(-4px);
  box-shadow: 0 32px 80px rgba(124, 92, 252, 0.15);
}

.comm-phone-frame img {
  width: 100%;
  display: block;
}

.comm-phone-label {
  display: block;
  text-align: center;
  padding: 12px 8px;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-muted);
  background: rgba(0,0,0,0.4);
}

/* ========================================
   Responsive — New Sections
   ======================================== */
@media (max-width: 900px) {
  .app-showcase-inner,
  .zen-showcase-inner {
    flex-direction: column;
    gap: 48px;
    align-items: center;
    text-align: center;
  }

  .app-showcase-text p,
  .zen-showcase-text p {
    max-width: 100%;
  }

  .showcase-phone-wrap {
    width: 240px;
  }

  .ai-showcase-layout {
    flex-direction: column;
    gap: 40px;
  }

  .ai-chat-q {
    max-width: 85%;
  }

  .ai-chat-a {
    max-width: 100%;
  }

  .comm-phones-row {
    flex-direction: column;
    gap: 16px;
    max-width: 320px;
    margin: 0 auto;
  }

  .stat-cards-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .screens-showcase {
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 40px;
    padding-left: 16px;
    padding-right: 16px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .screens-showcase::-webkit-scrollbar {
    display: none;
  }

  .showcase-phone-wrap {
    width: 200px;
  }

  .ai-info-row {
    flex-direction: column;
  }
}

/* ========================================
   Zikir AI — 2-column conversation layout
   ======================================== */
.ai-showcase-chat {
  flex: 1.2;
}

.ai-conv-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items: start;
}

.ai-conv-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* second col slightly offset down */
.ai-conv-col:nth-child(2) {
  margin-top: 32px;
}

.ai-conv-q-label {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--accent-bright);
  background: var(--accent-glow);
  border: 1px solid rgba(167, 139, 250, 0.2);
  border-radius: 12px 12px 12px 4px;
  padding: 10px 14px;
  line-height: 1.45;
  font-style: italic;
}

.ai-conv-q-label svg {
  flex-shrink: 0;
  margin-top: 1px;
  opacity: 0.7;
}

.ai-conv-img-wrap {
  border-radius: 4px 16px 16px 16px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

.ai-conv-img-wrap img {
  width: 100%;
  display: block;
}

/* remove old chat styles if they conflict */
.ai-chat-q, .ai-chat-a { display: none; }

@media (max-width: 900px) {
  .ai-conv-cols {
    grid-template-columns: 1fr;
  }
  .ai-conv-col:nth-child(2) {
    margin-top: 0;
  }
}

/* AI showcase — text above, chat below (full-width) */
.ai-showcase-layout {
  flex-direction: column !important;
  gap: 48px !important;
}

.ai-showcase-text {
  max-width: 640px;
}

.ai-showcase-chat {
  flex: unset;
  width: 100%;
}

.ai-conv-cols {
  max-width: var(--container);
}

/* ========================================
   Zikir AI — Redesigned layout
   ======================================== */
.ai-showcase {
  position: relative;
  z-index: 1;
  padding: 120px 24px 140px;
  overflow: hidden;
}

.ai-hero-row {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 72px;
}

/* Left text column */
.ai-hero-left {
  flex: 0 0 360px;
}

.ai-hero-left .section-tag {
  margin-bottom: 16px;
  display: inline-block;
}

.ai-hero-left h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.ai-hero-left p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 32px;
}

.ai-badge-row {
  display: flex;
  gap: 12px;
}

.ai-badge {
  flex: 1;
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  padding: 18px 20px;
  text-align: center;
}

.ai-badge--gold {
  border-color: rgba(167, 139, 250, 0.2);
  background: var(--accent-glow);
}

.ai-badge-num {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 6px;
  color: var(--text-primary);
}

.ai-badge--gold .ai-badge-num {
  color: var(--accent-bright);
}

.ai-badge-label {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* Right phone pair */
.ai-hero-right {
  flex: 1;
  min-width: 0;
}

.ai-phone-pair {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.ai-phone-card {
  flex: 1;
  background: #0e0e20;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 32px 80px rgba(0,0,0,0.5);
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}

.ai-phone-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 48px 100px rgba(0,0,0,0.6), 0 0 0 1px rgba(167,139,250,0.12);
}

.ai-phone-card--right {
  margin-top: 48px;
}

.ai-phone-topbar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 18px 10px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  background: rgba(255,255,255,0.02);
}

.ai-phone-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent-dim);
  box-shadow: 0 0 6px var(--accent-dim);
}

.ai-phone-title {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-secondary);
  letter-spacing: 0.04em;
}

.ai-user-bubble {
  margin: 14px 14px 8px auto;
  max-width: 85%;
  background: var(--accent-dim);
  color: #fff;
  font-size: 0.82rem;
  line-height: 1.5;
  padding: 10px 14px;
  border-radius: 16px 16px 4px 16px;
  text-align: right;
  align-self: flex-end;
  display: block;
  width: fit-content;
}

.ai-response-img {
  flex: 1;
}

.ai-response-img img {
  width: 100%;
  display: block;
}

/* Responsive */
@media (max-width: 1000px) {
  .ai-hero-row {
    flex-direction: column;
    gap: 48px;
    align-items: flex-start;
  }
  .ai-hero-left {
    flex: unset;
    width: 100%;
    max-width: 520px;
  }
  .ai-hero-right {
    width: 100%;
  }
}

@media (max-width: 600px) {
  .ai-phone-pair {
    flex-direction: column;
    gap: 24px;
  }
  .ai-phone-card--right {
    margin-top: 0;
  }
}

/* ========================================
   Profil — Bento Grid
   ======================================== */
.stat-bento {
  display: grid;
  grid-template-columns: 3fr 2fr;
  grid-template-rows: auto auto;
  gap: 10px;
}

/* first row: wide left, narrow right */
.stat-card--wide  { /* natural placement */ }
.stat-card--narrow { /* natural placement */ }

/* swap columns on second row */
.stat-card:nth-child(3) { order: 3; }
.stat-card:nth-child(4) { order: 4; }

/* second row: narrow left, wide right — swap columns */
.stat-bento .stat-card:nth-child(3) {
  grid-column: 1;
}
.stat-bento .stat-card:nth-child(4) {
  grid-column: 2;
}

/* Actually just use explicit grid areas for clarity */
.stat-bento {
  grid-template-areas:
    "a b"
    "c d";
}
.stat-bento .stat-card:nth-child(1) { grid-area: a; }
.stat-bento .stat-card:nth-child(2) { grid-area: b; }
.stat-bento .stat-card:nth-child(3) { grid-area: c; }
.stat-bento .stat-card:nth-child(4) { grid-area: d; }

/* Override grid columns for bento */
.stat-bento {
  grid-template-columns: 55% 45%;
}

/* All stat-card images: fixed height + cover */
.stat-card-img {
  overflow: hidden;
  background: #0c0c1e;
  line-height: 0;
}

.stat-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top left;
  display: block;
}

/* ========================================
   Sticky phone — Zen & Profil sections
   ======================================== */
.app-showcase-phone,
.zen-showcase-phone {
  position: sticky;
  top: 110px;
  align-self: flex-start;
}

/* Zen phone: add subtle float animation */
@keyframes floatPhone {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-10px); }
}

.zen-showcase-phone .showcase-phone-wrap {
  animation: floatPhone 5s ease-in-out infinite;
}

/* Profil phone: subtle tilt on scroll (JS will handle, CSS just sets transform-origin) */
.app-showcase-phone .showcase-phone-wrap {
  transform-origin: bottom center;
  transition: transform 0.1s linear;
}

/* ========================================
   Responsive bento
   ======================================== */
@media (max-width: 900px) {
  .stat-bento {
    grid-template-columns: 1fr 1fr;
    grid-template-areas: unset;
  }
  .stat-bento .stat-card { grid-area: unset !important; }
}

@media (max-width: 600px) {
  .stat-bento {
    grid-template-columns: 1fr;
  }
}

/* Profil phone: smooth perspective tilt on scroll */
.app-showcase-phone .showcase-phone-wrap {
  transition: transform 0.25s ease-out;
  will-change: transform;
}

/* hero-visual wrapper */
.hero-visual {
  position: relative;
  flex-shrink: 0;
  opacity: 0;
  animation: fadeUp 1s var(--ease-out) 0.5s forwards;
}

.phone-glow {
  position: absolute;
  width: 340px;
  height: 340px;
  background: radial-gradient(circle, rgba(124, 92, 252, 0.22), transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  filter: blur(60px);
  pointer-events: none;
}

/* Hero slide crossfade — all images stacked, active on top */
.hero-phone-frame {
  position: relative;
}

.hero-phone-slide {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  opacity: 0;
  transition: opacity 0.8s ease;
  display: block;
}

/* First slide stays in flow for height; others are absolute */
.hero-phone-slide:first-child {
  position: relative;
  opacity: 0;
}

.hero-phone-slide.active {
  opacity: 1;
  position: absolute;
  z-index: 2;
}

/* First slide active — back to relative for layout */
.hero-phone-slide:first-child.active {
  position: relative;
}

/* Profil phone — smooth tilt transition */
.app-showcase-phone .showcase-phone-wrap {
  transition: transform 0.18s ease-out;
  will-change: transform;
  transform-style: preserve-3d;
}

/* ========================================
   Phone animations — scroll reveal + float
   ======================================== */

/* Profil phone: slide in from right on reveal, then float */
@keyframes phoneSlideIn {
  from {
    opacity: 0;
    transform: translateX(48px) translateY(0px);
  }
  to {
    opacity: 1;
    transform: translateX(0px) translateY(0px);
  }
}

@keyframes phoneFloat {
  0%, 100% { transform: translateY(0px);   }
  50%       { transform: translateY(-12px); }
}

.app-showcase-phone .showcase-phone-wrap {
  opacity: 0;
  transform: translateX(48px);
  transition: none;
  will-change: transform;
}

.app-showcase-phone .showcase-phone-wrap.phone-revealed {
  animation:
    phoneSlideIn 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards,
    phoneFloat   6s ease-in-out 1s infinite;
}

/* Zen phone already has float, just add slide-in from left */
@keyframes phoneSlideInLeft {
  from {
    opacity: 0;
    transform: translateX(-48px);
  }
  to {
    opacity: 1;
    transform: translateX(0px);
  }
}

.zen-showcase-phone .showcase-phone-wrap {
  opacity: 0;
  animation: none;
}

.zen-showcase-phone .showcase-phone-wrap.phone-revealed {
  animation:
    phoneSlideInLeft 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards,
    floatPhone       5s ease-in-out 1s infinite;
}

/* Reset tilt styles */
.app-showcase-phone .showcase-phone-wrap {
  transform-style: flat;
}

/* ========================================
   Profil — Feature List (replaces bento)
   ======================================== */
.profil-features {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 8px;
}

.profil-feat {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 18px;
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 14px;
  transition: all 0.3s var(--ease-out);
}

.profil-feat:hover {
  border-color: rgba(167,139,250,0.18);
  background: var(--bg-card-hover);
  transform: translateX(4px);
}

.profil-feat-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(124, 92, 252, 0.12);
  border: 1px solid rgba(124, 92, 252, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}

.profil-feat-body {
  flex: 1;
}

.profil-feat-body strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 3px;
}

.profil-feat-body span {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ========================================
   Download — Social Row
   ======================================== */
.download-social-row {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.dl-social-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.04);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: all 0.3s var(--ease-out);
}

.dl-social-btn:hover {
  transform: translateY(-2px);
  color: var(--text-primary);
}

.dl-social--instagram:hover {
  border-color: rgba(225,48,108,0.4);
  background: rgba(225,48,108,0.08);
  color: #f472b6;
}

.dl-social--twitter:hover {
  border-color: rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.07);
  color: var(--text-primary);
}

.dl-social--facebook:hover {
  border-color: rgba(24,119,242,0.4);
  background: rgba(24,119,242,0.08);
  color: #60a5fa;
}

/* ========================================
   Download — Support Cards
   ======================================== */
.download-support-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 20px;
}

.dl-support-card {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px;
  padding: 14px 16px;
  text-align: left;
  transition: all 0.3s var(--ease-out);
  color: var(--text-primary);
}

.dl-support-card:hover {
  background: rgba(167,139,250,0.06);
  border-color: rgba(167,139,250,0.2);
  transform: translateY(-2px);
}

.dl-support-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(124,92,252,0.12);
  border: 1px solid rgba(124,92,252,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}

.dl-support-card > div {
  flex: 1;
  min-width: 0;
}

.dl-support-card strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.dl-support-card span {
  font-size: 0.72rem;
  color: var(--text-muted);
  line-height: 1.4;
  display: block;
}

.dl-support-arrow {
  color: var(--text-muted);
  flex-shrink: 0;
  transition: transform 0.3s, color 0.3s;
}

.dl-support-card:hover .dl-support-arrow {
  transform: translateX(3px);
  color: var(--accent);
}

/* Divider between store buttons and social */
.download-social-row::before {
  content: '';
  display: block;
  width: 100%;
  height: 1px;
  background: rgba(255,255,255,0.06);
  margin-bottom: 18px;
  grid-column: 1 / -1;
  order: -1;
}

/* Responsive */
@media (max-width: 640px) {
  .download-support-row {
    grid-template-columns: 1fr;
  }
  .download-social-row {
    gap: 8px;
  }
  .dl-social-btn span {
    display: none;
  }
  .dl-social-btn {
    width: 44px;
    height: 44px;
    justify-content: center;
    padding: 0;
    border-radius: 50%;
  }
}
/* ========================================
   MOBILE RESPONSIVE — Kapsamlı Düzeltmeler
   ======================================== */

/* ---- 900px: Tablet + Büyük Mobil ---- */
@media (max-width: 900px) {

  /* Hero phone */
  .hero-phone-real { width: 240px; }
  .hero-phone-frame { width: 240px; }

  /* Screens showcase — yatay scroll */
  .screens-showcase {
    overflow-x: auto;
    flex-wrap: nowrap;
    justify-content: flex-start;
    padding: 0 16px 24px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 12px;
  }
  .screens-showcase::-webkit-scrollbar { display: none; }
  .screen-item { flex-shrink: 0; width: 180px; }
  .screen-item.active { width: 200px; }

  /* Profil showcase */
  .app-showcase-inner {
    flex-direction: column-reverse;
    align-items: center;
    gap: 40px;
    text-align: center;
  }
  .app-showcase-phone { position: static; }
  .profil-feat:hover { transform: none; }

  /* Zen showcase */
  .zen-showcase-inner {
    flex-direction: column;
    align-items: center;
    gap: 40px;
    text-align: center;
  }
  .zen-feat-list { align-items: flex-start; max-width: 400px; margin: 0 auto; }

  /* AI showcase */
  .ai-hero-row {
    flex-direction: column;
    gap: 40px;
  }
  .ai-hero-left { flex: unset; width: 100%; }
  .ai-phone-pair { justify-content: center; }
  .ai-phone-card { max-width: 280px; }

  /* Community */
  .community-inner { flex-direction: column; text-align: center; gap: 40px; }
  .comm-phones-row { justify-content: center; }

  /* Download */
  .download-inner { padding: 56px 28px; }
}

/* ---- 600px: Mobil ---- */
@media (max-width: 600px) {

  :root { --section-padding: 72px 16px; }

  /* === NAVBAR === */
  .navbar { padding: 0 16px; }
  .logo-text { font-size: 1rem; }
  .logo-img { width: 28px; height: 28px; }

  /* === HERO === */
  .hero {
    padding: 90px 16px 60px;
    gap: 36px;
    min-height: unset;
  }
  .hero-arabic { font-size: 1.4rem; }
  .hero-title { font-size: 2.2rem; letter-spacing: -0.02em; }
  .hero-desc { font-size: 0.95rem; }
  .hero-badge { font-size: 0.72rem; }
  .hero-actions { flex-direction: column; width: 100%; gap: 10px; }
  .btn { justify-content: center; width: 100%; }
  .hero-stats { gap: 20px; }
  .stat-num { font-size: 1.3rem; }
  .stat-label { font-size: 0.7rem; }
  .stat-divider { height: 30px; }

  /* Hero phone */
  .hero-phone-real { width: 200px; }
  .hero-phone-frame { width: 200px; }
  .hero-phone-dots { margin-top: 12px; }

  /* === FEATURES === */
  .features-grid { grid-template-columns: 1fr; gap: 10px; }
  .feature-card { padding: 22px 20px; }

  /* === SCREENS === */
  .section-header h2 { font-size: 1.8rem; }
  .screens-showcase { padding: 0 12px 24px; }
  .screen-item { width: 160px; }
  .screen-item.active { width: 180px; }

  /* === PROFİL SHOWCASE === */
  .app-showcase { padding: 72px 16px; }
  .app-showcase-inner { gap: 32px; }
  .showcase-phone-wrap { width: 220px; }
  .app-showcase-text h2 { font-size: 1.8rem; }
  .profil-feat { padding: 14px 14px; gap: 12px; }
  .profil-feat-icon { width: 34px; height: 34px; }
  .profil-feat-body strong { font-size: 0.85rem; }
  .profil-feat-body span { font-size: 0.75rem; }

  /* === ZEN SHOWCASE === */
  .zen-showcase { padding: 72px 16px; }
  .zen-showcase-inner { gap: 32px; }
  .zen-showcase-text h2 { font-size: 1.8rem; }
  .zen-showcase-text p { font-size: 0.92rem; }

  /* === AI SHOWCASE === */
  .ai-showcase { padding: 72px 16px; }
  .ai-hero-left h2 { font-size: 1.8rem; }
  .ai-hero-left p { font-size: 0.92rem; }
  .ai-phone-pair {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  .ai-phone-card { max-width: 100%; width: 100%; }
  .ai-phone-card--right { margin-top: 0; }
  .ai-badge-row { gap: 8px; }
  .ai-badge { padding: 14px 16px; }
  .ai-badge-num { font-size: 1.6rem; }
  .ai-chips { gap: 7px; }
  .ai-chip { font-size: 0.78rem; padding: 7px 13px; }

  /* === COMMUNITY === */
  .community { padding: 72px 16px; }
  .community-text h2 { font-size: 1.8rem; }
  .comm-phones-row {
    flex-direction: column;
    align-items: center;
    gap: 14px;
    width: 100%;
  }
  .comm-phone-frame { max-width: 280px; width: 100%; }

  /* === TESTİMONİALS === */
  .testimonials { padding: 72px 0; }
  .testimonials .section-header { padding: 0 16px; }
  .t-card { width: 280px; padding: 20px 20px 16px; }
  .testimonials::before,
  .testimonials::after { width: 60px; }

  /* === FAQ === */
  .faq { padding: 72px 16px; }
  .faq-question { padding: 18px 18px; font-size: 0.88rem; }
  .faq-answer p { padding: 0 18px 18px; font-size: 0.85rem; }

  /* === DOWNLOAD === */
  .download { padding: 72px 16px; }
  .download-inner { padding: 44px 20px; border-radius: 22px; }
  .download h2 { font-size: 1.7rem; }
  .download-buttons { flex-direction: column; align-items: center; gap: 10px; }
  .store-btn { width: 100%; max-width: 260px; justify-content: center; }

  /* === FOOTER === */
  .footer { padding: 48px 16px 0; }
  .footer-inner { flex-direction: column; gap: 36px; padding-bottom: 36px; }
  .footer-links { flex-wrap: wrap; gap: 28px; }
  .footer-col { min-width: 120px; }
  .footer-bottom { padding: 16px 0 24px; }
  .footer-bottom p { font-size: 0.78rem; }
  .footer-brand { max-width: 100%; }

  /* === SECTION HEADERS === */
  .section-header { margin-bottom: 40px; }
  .section-header h2 { font-size: 1.8rem; }
  .section-tag { font-size: 0.68rem; }
}

/* ---- 400px: Küçük Ekranlar ---- */
@media (max-width: 400px) {
  .hero-title { font-size: 1.9rem; }
  .hero-phone-real, .hero-phone-frame { width: 180px; }
  .t-card { width: 260px; }
  .showcase-phone-wrap { width: 190px; }
  .ai-phone-pair { gap: 16px; }
}

/* ---- Genel: Dokunmatik cihazlar için hover kaldır ---- */
@media (hover: none) {
  .feature-card:hover,
  .comm-phone-frame:hover,
  .profil-feat:hover,
  .ai-phone-card:hover,
  .dl-support-card:hover,
  .t-card:hover { transform: none; }
}

/* ========================================
   MOBİL — Yatay taşma önleme
   ======================================== */
@media (max-width: 600px) {
  /* Hero görseli container dışına taşmasın */
  .hero { overflow: hidden; }

  /* Screens showcase yatay scroll — body clip etmesin */
  .screens { overflow: hidden; }

  /* Marquee satırları tam genişlikte kalsın */
  .marquee-row { margin: 0; }
  .marquee-track { padding: 4px 0; }

  /* Phone wrap overflow fix */
  .hero-phone-real { overflow: visible; }

  /* App showcase telefon sticky kaldır */
  .app-showcase-phone { position: static !important; }
  .zen-showcase-phone { position: static !important; }

  /* Float animation on mobile: daha az hareket */
  .zen-showcase-phone .showcase-phone-wrap.phone-revealed {
    animation: phoneSlideInLeft 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards,
               phoneFloat 7s ease-in-out 1s infinite;
  }
  @keyframes phoneFloat {
    0%, 100% { transform: translateY(0px); }
    50%       { transform: translateY(-6px); }
  }
}

/* ========================================
   MOBİL — Screens Carousel (600px altı)
   ======================================== */
@media (max-width: 600px) {

  /* Profil section — telefonu mobilden kaldır */
  .app-showcase-phone {
    display: none;
  }

  .app-showcase-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .app-showcase-text {
    width: 100%;
  }

  .app-showcase-text h2 {
    font-size: 1.75rem;
  }

  /* Screens — tek ekran tap carousel */
  .screens-showcase {
    display: block;
    position: relative;
    overflow: visible;
    padding: 0;
    perspective: none;
  }

  .screen-item {
    display: none;
    width: 100%;
    opacity: 1;
    transform: none;
    cursor: default;
  }

  .screen-item.active {
    display: block;
    width: 100%;
    transform: none;
  }

  .screen-frame {
    width: 220px;
    margin: 0 auto;
    border-radius: 32px;
    border: 2px solid rgba(167,139,250,0.2);
    box-shadow: 0 24px 60px rgba(124,92,252,0.18), 0 0 0 1px rgba(255,255,255,0.04);
    aspect-ratio: 9/18;
  }

  .screen-item.active .screen-frame {
    border-color: rgba(167,139,250,0.3);
    box-shadow: 0 32px 80px rgba(124,92,252,0.22);
  }

  .screen-item::after {
    margin-top: 14px;
    font-size: 0.82rem;
    color: var(--accent);
  }

  /* Mobile carousel nav */
  .screens-mobile-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 28px;
  }

  .smn-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--text-secondary);
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s;
    line-height: 1;
  }

  .smn-btn:hover,
  .smn-btn:active {
    background: var(--accent-glow);
    border-color: rgba(167,139,250,0.3);
    color: var(--text-primary);
  }

  .smn-dots {
    display: flex;
    gap: 7px;
    align-items: center;
  }

  .smn-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    transition: all 0.3s;
    cursor: pointer;
    border: none;
    padding: 0;
  }

  .smn-dot.active {
    background: var(--accent);
    width: 20px;
    border-radius: 3px;
  }

  /* theme dots on mobile — slightly bigger hit area */
  .screen-theme-dots {
    position: static;
    margin-top: 10px;
    justify-content: center;
  }

  .theme-dot {
    width: 10px;
    height: 10px;
  }
}

/* 600px üstünde mobile nav gizle */
@media (min-width: 601px) {
  .screens-mobile-nav {
    display: none;
  }
}

/* ========================================
   MOBİL — 3 bölüm düzeltmesi
   ======================================== */
@media (max-width: 600px) {

  /* ---- 1. ZEN MOD — Telefonu kaldır ---- */
  .zen-showcase-phone {
    display: none;
  }

  .zen-showcase-inner {
    flex-direction: column;
    gap: 0;
  }

  .zen-showcase-text {
    text-align: left;
  }

  /* Özellik listesi ikon + metin */
  .zen-feat-item {
    font-size: 0.9rem;
  }

  /* ---- 2. TESTİMONİALS — Kart küçült ---- */
  .t-card {
    width: 72vw;
    max-width: 280px;
    padding: 18px 18px 14px;
  }

  .t-quote {
    font-size: 2rem;
    margin-bottom: 8px;
  }

  .t-card p {
    font-size: 0.82rem;
    line-height: 1.6;
    margin-bottom: 14px;
    /* En fazla 4 satır göster */
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .t-avatar {
    width: 30px;
    height: 30px;
    font-size: 0.72rem;
  }

  .t-author strong { font-size: 0.8rem; }
  .t-author span   { font-size: 0.68rem; }
  .t-stars         { font-size: 0.7rem; }
  .t-badge         { font-size: 0.6rem; padding: 3px 8px; }

  .marquee-row { margin-bottom: 10px; }
  .marquee-track { gap: 10px; }

  /* Fade kenarları daralt */
  .testimonials::before,
  .testimonials::after { width: 28px; }

  /* ---- 3. COMMUNITY — Yan yana yatay scroll ---- */
  .community-visual {
    width: 100%;
    overflow: hidden;
  }

  .comm-phones-row {
    flex-direction: row !important;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 12px;
    padding: 0 4px 8px;
    scroll-snap-type: x mandatory;
    align-items: flex-start;
  }

  .comm-phones-row::-webkit-scrollbar { display: none; }

  .comm-phone-frame {
    flex: 0 0 72vw;
    max-width: 240px;
    min-width: 180px;
    scroll-snap-align: center;
    border-radius: 20px;
  }

  .comm-phone-label {
    padding: 9px 10px;
    font-size: 0.72rem;
  }

  /* Community metin merkeze */
  .community-inner {
    text-align: center;
  }
  .community-badges {
    justify-content: center;
  }
}

/* ========================================
   MOBİL — Profil strip + AI tek kart
   ======================================== */

/* Profil stat strip — sadece mobilde görünür */
.profil-mobile-strip {
  display: none;
}

@media (max-width: 600px) {

  /* ---- Profil stat görseli yatay şerit ---- */
  .profil-mobile-strip {
    display: block;
    margin-top: 20px;
    margin-left: -16px;
    margin-right: -16px;
  }

  .profil-strip-track {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 0 16px 4px;
    scroll-snap-type: x proximity;
  }

  .profil-strip-track::-webkit-scrollbar { display: none; }

  .profil-strip-card {
    flex: 0 0 56vw;
    max-width: 220px;
    min-width: 150px;
    scroll-snap-align: start;
    background: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 14px;
    overflow: hidden;
  }

  .profil-strip-card img {
    width: 100%;
    display: block;
  }

  .profil-strip-card span {
    display: block;
    padding: 8px 12px;
    font-size: 0.72rem;
    color: var(--text-muted);
    font-weight: 500;
  }

  /* ---- Zikir AI — sadece ilk kartı göster ---- */
  .ai-phone-card--right {
    display: none;
  }

  .ai-phone-pair {
    justify-content: center;
  }

  .ai-phone-card--left {
    max-width: 100%;
    width: 100%;
  }

  /* AI sol metin tam genişlik */
  .ai-hero-left {
    max-width: 100%;
  }
}

/* ========================================
   MOBİL — Son Dokunuşlar
   ======================================== */
@media (max-width: 600px) {

  /* Profil istatistik görselleri kaldırıldı — strip CSS artık kullanılmıyor */
  .profil-mobile-strip { display: none !important; }

  /* ---- Hero iyileştirme ---- */
  .hero-arabic { font-size: 1.3rem; margin-bottom: 8px; }
  .hero-badge  { margin-bottom: 20px; }

  /* Hero istatistikleri kompakt sat */
  .hero-stats  { gap: 16px; flex-wrap: nowrap; }
  .stat        { text-align: center; }
  .stat-num    { font-size: 1.25rem; }
  .stat-plus   { font-size: 1rem; }

  /* ---- Section tag & başlık tutarlılığı ---- */
  .section-tag { font-size: 0.65rem; letter-spacing: 0.1em; }

  /* ---- Features grid küçük padding ---- */
  .feature-card { padding: 20px 16px; gap: 10px; }
  .feature-card h3 { font-size: 0.95rem; }
  .feature-card p  { font-size: 0.82rem; }

  /* ---- Screens — aktif kart etiket rengi ---- */
  .screen-item::after { color: var(--text-muted); font-size: 0.78rem; }
  .screen-item.active::after { color: var(--accent); font-weight: 600; }

  /* ---- Profil feats daha kompakt ---- */
  .profil-features { gap: 5px; }

  /* ---- Zen feat list daha sıkı ---- */
  .zen-feat-list { gap: 12px; }
  .zen-feat-item { font-size: 0.88rem; }
  .zen-feat-dot  { flex-shrink: 0; }

  /* ---- AI bölümü badges daha ince ---- */
  .ai-badge-row { gap: 8px; }
  .ai-badge     { padding: 12px 14px; border-radius: 12px; }
  .ai-badge-num { font-size: 1.5rem; }
  .ai-badge-label { font-size: 0.7rem; }

  /* AI chips wrap daha iyi */
  .ai-chips { gap: 6px; }
  .ai-chip  { font-size: 0.75rem; padding: 6px 12px; }

  /* ---- Community metin boyutları ---- */
  .community-text h2 { font-size: 1.8rem; }
  .community-text p  { font-size: 0.9rem; }
  .badge-text        { font-size: 0.75rem; }

  /* ---- Testimonials bant hızları ---- */
  .marquee-left  { animation-duration: 32s; }
  .marquee-right { animation-duration: 36s; }

  /* ---- FAQ kompakt ---- */
  .faq-question { padding: 16px 16px; }
  .faq-icon svg { width: 17px; height: 17px; }

  /* ---- Download ---- */
  .download-arabic { font-size: 1.1rem; margin-bottom: 16px; }
  .download h2     { font-size: 1.6rem; }
  .download p      { font-size: 0.9rem; margin-bottom: 24px; }
  .store-btn       { padding: 12px 20px; }
  .store-btn strong { font-size: 0.88rem; }
  .store-btn small  { font-size: 0.6rem; }

  /* ---- Footer ---- */
  .footer-logo .logo-text { font-size: 0.95rem; }
  .footer-brand > p       { font-size: 0.8rem; }
  .footer-col h4          { font-size: 0.8rem; }
  .footer-col a           { font-size: 0.82rem; }

  /* ---- Scroll progress daha ince ---- */
  .scroll-progress { height: 2px; }
}