@charset "UTF-8";
/* app-landing.css — Arsis Yazılım mobil uygulama tanıtım sayfası
   Aktif tema (QuantumKockarLight) CSS değişkenlerini kullanır; sadece bu
   sayfaya özel bileşenleri (cihaz çerçevesi, mağaza rozetleri, ekran galerisi)
   tanımlar. Tüm kurallar .app-landing altında kapsüllenmiştir. */

.app-landing { --app-bezel: linear-gradient(165deg, #20202a 0%, #0c0c12 100%); }

/* ─── HERO ─────────────────────────────────────────────── */
.app-hero {
  display: grid; grid-template-columns: 1.05fr .95fr; align-items: center;
  gap: 56px; padding: 56px 0 44px;
}
.app-hero-content { position: relative; z-index: 1; }
.app-hero h1 {
  font-size: 54px; line-height: 1.05; font-weight: 800;
  letter-spacing: -.03em; margin-bottom: 20px;
}
.app-hero h1 .highlight {
  background: var(--grad); -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.app-hero p { color: var(--muted); font-size: 18px; line-height: 1.8; max-width: 520px; margin-bottom: 30px; }
.app-hero-note {
  margin-top: 20px; font-size: 13px; color: var(--muted-2);
  display: flex; gap: 10px; align-items: center; flex-wrap: wrap;
}
.app-hero-note span { display: inline-flex; align-items: center; gap: 6px; }
.app-hero-visual { display: flex; justify-content: center; position: relative; }

/* ─── CİHAZ ÇERÇEVESİ (telefon) ─────────────────────────── */
.app-frame {
  position: relative; border-radius: 36px; background: var(--app-bezel);
  padding: 9px; border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 40px 80px -36px rgba(150,40,20,.5), 0 8px 24px -12px rgba(0,0,0,.35);
}
.app-frame img { display: block; width: 100%; border-radius: 28px; }
.app-hero-phone { width: 300px; max-width: 78vw; transform: rotate(-2deg); transition: transform .45s cubic-bezier(.16,1,.3,1); }
.app-hero-phone:hover { transform: rotate(0); }

/* ─── MAĞAZA ROZETLERİ ──────────────────────────────────── */
.store-badges { display: flex; gap: 14px; flex-wrap: wrap; }
.app-hero .store-badges { justify-content: flex-start; }
.store-badge {
  display: inline-flex; align-items: center; gap: 12px; min-width: 186px;
  background: #111318; color: #fff; border: 1px solid rgba(255,255,255,.14);
  border-radius: 15px; padding: 11px 20px;
  transition: transform .2s, box-shadow .2s, background .2s;
}
.store-badge:hover { transform: translateY(-3px); color: #fff; background: #1b1e25; box-shadow: 0 14px 30px -12px rgba(0,0,0,.55); }
.store-badge svg { width: 27px; height: 27px; flex-shrink: 0; }
.store-badge-txt { display: flex; flex-direction: column; line-height: 1.15; text-align: left; }
.store-badge-txt small { font-size: 11px; opacity: .82; font-weight: 500; }
.store-badge-txt strong { font-size: 16.5px; font-weight: 700; letter-spacing: -.01em; }

/* ─── EKRAN GÖRÜNTÜSÜ GALERİSİ ──────────────────────────── */
.app-shots { display: flex; gap: 24px; flex-wrap: wrap; justify-content: center; }
.app-shot { width: 215px; transition: transform .3s cubic-bezier(.16,1,.3,1); }
.app-shot:hover { transform: translateY(-7px); }
.app-shot .app-frame { padding: 7px; border-radius: 30px; }
.app-shot .app-frame img { border-radius: 24px; }
.app-shot figcaption { text-align: center; margin-top: 14px; font-size: 13.5px; color: var(--muted); font-weight: 500; }

/* ─── DUYARLI ───────────────────────────────────────────── */
@media (max-width: 860px) {
  .app-hero { grid-template-columns: 1fr; text-align: center; gap: 40px; padding-top: 32px; }
  .app-hero p { margin-left: auto; margin-right: auto; }
  .app-hero .store-badges, .app-hero-note { justify-content: center; }
  .app-hero h1 { font-size: 41px; }
  .app-hero-visual { order: -1; }
}
@media (max-width: 480px) {
  .store-badge { min-width: 0; flex: 1 1 100%; justify-content: center; }
  .app-hero h1 { font-size: 33px; }
  .app-shot { width: 100%; max-width: 260px; }
}
