/* ============================
   Aselio QR Landing Page CSS
   - Header arka planı daha açık soft degrade (logo koyu olduğu için)
   - Daha geniş görünüm
   - Footer sadece alt bar
   - Tema Carousel (3 tema, ortadaki önde) + YÜKSEK DİKEY ALAN
   - Modal: fixed + büyük dikey önizleme
   - KALDIRILDI: mock-bottom alanı (Tarama/Seçim/Sipariş kutuları)
   - FIX2: Carousel'de sayfa üzerinde de görsellerin köşeleri kesin oval görünsün
   ============================ */

:root{
  --bg1:#0b1a3a;
  --bg2:#0b2a55;
  --bg3:#123b6e;
  --bg4:#0b1f40;

  --card: rgba(255,255,255,.92);
  --line: rgba(255,255,255,.18);

  --text:#071733;
  --soft:#334a6b;

  --accent:#2b79ff;
  --accent2:#79a7ff;

  --pill: rgba(43,121,255,.14);
  --shadow: 0 16px 45px rgba(0,0,0,.22);

  --hdr-bg1: rgba(255,255,255,.88);
  --hdr-bg2: rgba(240,247,255,.82);
  --hdr-line: rgba(10,40,90,.10);
  --hdr-text: #0a2b66;
  --hdr-pill: rgba(31,111,235,.10);

  /* Oval köşe ayarı */
  --theme-radius: 30px;
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
html{ overflow-x:hidden; }

body.lp{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  color:#eaf2ff;
  background:
    radial-gradient(900px 520px at 10% 10%, rgba(43,121,255,.30), transparent 60%),
    radial-gradient(800px 560px at 88% 12%, rgba(121,167,255,.26), transparent 62%),
    radial-gradient(700px 520px at 60% 92%, rgba(43,121,255,.18), transparent 55%),
    linear-gradient(180deg, var(--bg1) 0%, var(--bg2) 35%, var(--bg3) 70%, var(--bg4) 100%);
  overflow-x:hidden;
}

.lp{ position:relative; }

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

.lp-container{
  width:100%;
  max-width: 1680px;
  margin:0 auto;
  padding:0 14px;
}
@media (min-width: 1400px){
  .lp-container{ padding:0 10px; }
}

.hero-left h1,
.section-head h2,
.cta-inner h2{
  text-transform: capitalize;
  letter-spacing: -0.35px;
}

/* HEADER */
.lp-header{
  position:sticky; top:0; z-index:50;
  background: linear-gradient(90deg, var(--hdr-bg1), var(--hdr-bg2));
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom:1px solid var(--hdr-line);
  transition: box-shadow .15s ease, background-color .15s ease;
}
.lp-header.scrolled{
  box-shadow: 0 14px 40px rgba(0,0,0,.18);
  background: linear-gradient(90deg, rgba(255,255,255,.94), rgba(235,245,255,.90));
}
.header-inner{
  display:flex; align-items:center; justify-content:space-between;
  gap:14px; padding:14px 0;
}

.brand.brand-only-logo{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:8px 12px;
  border-radius:14px;
  background: rgba(255,255,255,.70);
  border: 1px solid rgba(10,40,90,.10);
}
.brand-logo{
  width:84px;
  height:56px;
  object-fit:contain;
  display:block;
}

.header-actions{
  display:flex; align-items:center; gap:14px; flex-wrap:wrap; justify-content:flex-end;
}
.header-actions .link{
  color: var(--hdr-text);
  font-weight:1000;
  font-size:13px;
  padding:8px 10px;
  border-radius:10px;
  text-transform: capitalize;
}
.header-actions .link:hover{
  text-decoration:none;
  background: var(--hdr-pill);
}

/* Buttons */
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:11px 16px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.10);
  color:#fff;
  font-weight:1000;
  box-shadow: 0 10px 26px rgba(0,0,0,.18);
  transition: transform .06s ease, background-color .15s ease, border-color .15s ease, filter .15s ease;
}
.btn:hover{ text-decoration:none; background: rgba(255,255,255,.14); }
.btn:active{ transform: translateY(1px); }

.btn-accent{
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  border-color: transparent;
  color:#fff;
}
.btn-accent:hover{ filter:brightness(1.05); }

.btn-ghost{
  background: rgba(10,40,90,.06);
  border-color: rgba(10,40,90,.12);
  color: var(--hdr-text);
  box-shadow: 0 10px 26px rgba(0,0,0,.10);
}
.btn-ghost:hover{ background: rgba(10,40,90,.10); }

/* Hero */
.hero{
  position:relative;
  padding: 38px 0 22px;
  overflow:hidden;
}
.hero-grid{
  display:grid;
  grid-template-columns: 1fr;
  gap:18px;
  align-items:stretch;
}
.pill{
  display:inline-flex; align-items:center;
  border:1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.10);
  color: rgba(234,242,255,.90);
  padding:8px 12px;
  border-radius:999px;
  font-weight:1000;
  font-size:12px;
  text-transform: capitalize;
}
.hero-left h1{
  margin:14px 0 0;
  font-size: 32px;
  line-height: 1.10;
  font-weight: 1100;
  color:#fff;
}
.lead{
  margin:12px 0 0;
  color: rgba(234,242,255,.84);
  line-height:1.75;
  font-size:15px;
  max-width: 70ch;
}
.hero-cta{ margin-top:16px; display:flex; gap:12px; flex-wrap:wrap; }

/* bullets */
.hero-bullets{ margin-top:14px; display:grid; gap:10px; }
.bullet{
  display:flex; gap:10px; align-items:flex-start;
  padding:12px 12px;
  border-radius:16px;
  background: rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.14);
  box-shadow: 0 12px 30px rgba(0,0,0,.16);
}
.b-ico{
  width:34px; height:34px; display:flex; align-items:center; justify-content:center;
  border-radius:14px;
  background: rgba(43,121,255,.18);
  border:1px solid rgba(255,255,255,.16);
}
.b-title{ font-weight:1100; color:#fff; text-transform: capitalize; }
.b-sub{ margin-top:2px; color: rgba(234,242,255,.78); font-size:13px; line-height:1.5; text-transform: capitalize; }

.trust{ margin-top:16px; display:grid; grid-template-columns: 1fr; gap:12px; }
.trust-card{
  background: rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.16);
  border-radius:16px;
  padding:13px 14px;
  box-shadow: 0 12px 30px rgba(0,0,0,.18);
}
.trust-title{ font-weight:1100; color:#fff; text-transform: capitalize; }
.trust-sub{ margin-top:2px; color: rgba(234,242,255,.78); font-size:12px; text-transform: capitalize; }

/* Mock */
.mock-card{
  background: rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.16);
  border-radius:20px;
  box-shadow: var(--shadow);
  overflow:hidden;
}
.mock-top{
  display:flex; align-items:center; gap:8px;
  padding:12px 14px;
  border-bottom:1px solid rgba(255,255,255,.14);
  background: linear-gradient(90deg, rgba(43,121,255,.18), rgba(121,167,255,.14));
}
.dot{ width:10px; height:10px; border-radius:999px; display:inline-block; }
.d1{ background:#ff5f57; } .d2{ background:#febc2e; } .d3{ background:#28c840; }
.mock-title{ margin-left:6px; color: rgba(234,242,255,.86); font-size:12px; font-weight:900; text-transform: capitalize; }

/* Theme Carousel */
.theme-carousel{
  position:relative;
  padding: 14px 14px 10px;
  background: rgba(255,255,255,.06);
  border-top: 1px solid rgba(255,255,255,.12);
}
.tc-stage{
  position:relative;
  height: 640px;
  overflow:hidden;
  border-radius: 18px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.08);
}
.tc-track{ position:absolute; inset:0; }

/* =========================================================
   FIX2 (Kesin çözüm):
   Köşe oval görünmüyorsa genelde sebep:
   - img'nin kendisi oval ama "kare" beyaz arka plan resmin içinde
   - VEYA border-radius, figcaption yüzünden algı bozuluyor
   Çözüm: OVAL görünmesi gereken şey 'resmin kendi içeriği' değil,
   "önizleme kartı" olmalı. Bu yüzden img'yi bir wrapper ile kırpıyoruz:
   .tc-frame => overflow:hidden + radius
   ========================================================= */

/* Figure */
.tc-item{
  position:absolute;
  top:50%;
  left:50%;
  width: 62%;
  max-width: 560px;
  transform: translate(-50%,-50%) scale(.88);
  opacity: .45;
  filter: saturate(.95) contrast(.98);
  transition: transform .35s ease, opacity .35s ease, filter .35s ease;
  cursor:pointer;
  user-select:none;
}

/* Yeni wrapper görevi: img'yi kesin kırp */
.tc-item img{
  width:100%;
  height: 560px;
  object-fit: contain;
  display:block;

  /* ÖNEMLİ: img yerine "clip-path" ile kırpma => her durumda oval görünür */
  border-radius: var(--theme-radius);
  clip-path: inset(0 round var(--theme-radius));

  background: rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.12);
}

.tc-item figcaption{
  margin-top:10px;
  text-align:center;
  font-weight:1000;
  color: rgba(234,242,255,.90);
}

/* Aktif kart */
.tc-item.is-active{
  transform: translate(-50%,-50%) scale(1);
  opacity: 1;
  filter: none;
  z-index: 3;
}
.tc-item.is-active img{
  box-shadow: 0 26px 70px rgba(0,0,0,.40);
}

/* Sol / Sağ */
.tc-item.is-left{ transform: translate(calc(-50% - 280px), -50%) scale(.90); opacity: .65; z-index: 2; }
.tc-item.is-right{ transform: translate(calc(-50% + 280px), -50%) scale(.90); opacity: .65; z-index: 2; }

.tc-nav{
  position:absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border:1px solid rgba(255,255,255,.16);
  background: rgba(0,0,0,.18);
  color:#fff;
  font-size: 30px;
  line-height: 1;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  z-index: 6;
}
.tc-nav:hover{ background: rgba(0,0,0,.28); }
.tc-nav.prev{ left: 16px; }
.tc-nav.next{ right: 16px; }

.tc-dots{
  display:flex;
  gap:8px;
  justify-content:center;
  padding-top: 10px;
}
.tc-dots .dot{
  width:10px; height:10px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.22);
  background: rgba(255,255,255,.18);
  cursor:pointer;
}
.tc-dots .dot.active{
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  border-color: transparent;
  transform: scale(1.1);
}
.tc-hint{
  margin-top: 8px;
  text-align:center;
  font-size: 12px;
  color: rgba(234,242,255,.72);
}

/* KALDIRILDI: mock-bottom alanı (güvence için) */
.mock-bottom{ display:none !important; }

/* Orbs */
.orb{
  position:absolute;
  width: clamp(280px, 40vw, 560px);
  height: clamp(280px, 40vw, 560px);
  border-radius: 999px;
  filter: blur(34px);
  opacity: .40;
  pointer-events:none;
  transform: translateZ(0);
}
.o1{ left: clamp(-260px, -18vw, -140px); top: -170px; background: rgba(43,121,255,.36); }
.o2{ right: clamp(-280px, -20vw, -150px); top: -200px; background: rgba(121,167,255,.30); }
.o3{ left: 18%; bottom: clamp(-420px, -32vw, -260px); background: rgba(43,121,255,.22); }

/* Sections */
.section{ padding: 38px 0; }
.section.alt{
  background: rgba(255,255,255,.06);
  border-top:1px solid rgba(255,255,255,.10);
  border-bottom:1px solid rgba(255,255,255,.10);
}
.section-head h2{
  margin:0;
  font-size:24px;
  font-weight:1100;
  color:#fff;
}
.section-head p{
  margin:10px 0 0;
  color: rgba(234,242,255,.80);
  line-height:1.75;
  font-size:14px;
  max-width: 110ch;
}

.grid{ display:grid; gap:14px; margin-top:18px; }

.card{
  background: var(--card);
  border:1px solid rgba(255,255,255,.16);
  border-radius:18px;
  box-shadow: 0 18px 48px rgba(0,0,0,.18);
  padding:16px;
  color: var(--text);
}
.card h3{ margin:0; font-size:16px; font-weight:1100; text-transform: capitalize; }
.card p{ margin:8px 0 0; color: var(--soft); line-height:1.65; font-size:13.5px; text-transform: capitalize; }

/* Icon */
.icon{
  width:46px; height:46px; border-radius:16px;
  background: rgba(43,121,255,.14);
  border:1px solid rgba(43,121,255,.18);
  display:flex; align-items:center; justify-content:center;
  margin-bottom:10px;
}
.icon svg{ width:21px; height:21px; fill: var(--accent); }

/* Steps */
.steps{ margin-top:18px; display:grid; gap:14px; }
.step{
  background: rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.16);
  border-radius:18px;
  box-shadow: 0 18px 48px rgba(0,0,0,.16);
  padding:16px;
}
.step h3{ margin:0; color:#fff; font-size:15px; font-weight:1100; text-transform: capitalize; }
.step p{ margin:8px 0 0; color: rgba(234,242,255,.78); line-height:1.65; font-size:13.5px; text-transform: capitalize; }
.step-no{
  width:34px; height:34px; border-radius:999px;
  background: rgba(43,121,255,.18);
  border:1px solid rgba(255,255,255,.16);
  display:flex; align-items:center; justify-content:center;
  font-weight:1100;
  margin-bottom:10px;
  color:#fff;
}

/* Showcase */
.showcase-grid{ margin-top:18px; display:grid; gap:14px; }
.showcase-card{
  padding:16px;
  border-radius:18px;
  background: rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.16);
  box-shadow: 0 18px 48px rgba(0,0,0,.16);
}
.sc-head{ font-weight:1100; color:#fff; margin-bottom:10px; text-transform: capitalize; }
.sc-body ul{ margin:0; padding-left:18px; color: rgba(234,242,255,.82); line-height:1.7; }
.sc-body li{ margin:6px 0; text-transform: capitalize; }
.sc-body .btn{ margin-top:10px; }

/* CTA */
.cta{ padding: 40px 0; }
.cta-inner{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  align-items:center;
  justify-content:space-between;
  background: linear-gradient(90deg, rgba(43,121,255,.16), rgba(121,167,255,.12));
  border:1px solid rgba(255,255,255,.16);
  border-radius:20px;
  box-shadow: 0 22px 60px rgba(0,0,0,.22);
  padding:18px;
}
.cta-inner h2{ margin:0; font-size:22px; font-weight:1100; color:#fff; text-transform: capitalize; }
.cta-inner p{ margin:8px 0 0; color: rgba(234,242,255,.82); line-height:1.7; font-size:14px; text-transform: capitalize; }
.cta-actions{ display:flex; gap:10px; flex-wrap:wrap; }

/* Footer */
.lp-footer{
  padding: 14px 0 18px;
  border-top:1px solid rgba(255,255,255,.12);
  background: linear-gradient(180deg, rgba(7,23,51,.22), rgba(7,23,51,.45));
}
.footer-bottom{
  margin-top:0;
  padding-top:0;
  border-top:none;
  display:flex;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
  color: rgba(234,242,255,.78);
  font-size:12px;
}
.footer-mini a{ color: rgba(234,242,255,.90); text-decoration:none; }
.footer-mini a:hover{ text-decoration:underline; }

/* THEME MODAL */
body.no-scroll{ overflow:hidden; }

.theme-modal{
  position:fixed;
  inset:0;
  display:none;
  z-index: 9999;
}
.theme-modal.open{ display:block; }

.theme-modal-backdrop{
  position:absolute;
  inset:0;
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(4px);
}

.theme-modal-panel{
  position:absolute;
  top:50%;
  left:50%;
  transform: translate(-50%,-50%);
  width: min(980px, 92vw);
  height: min(92vh, 920px);
  border-radius: 22px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(10,25,50,.55);
  box-shadow: 0 30px 120px rgba(0,0,0,.55);
}

.theme-modal-body{
  position:absolute;
  inset: 56px 70px 56px 70px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:10px;
}

.theme-modal-img{
  width: auto;
  height: 85vh;
  max-height: 70vh;
  max-width: 100%;
  object-fit: contain;
  border-radius: var(--theme-radius);
  border:1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.06);
  box-shadow: 0 30px 120px rgba(0,0,0,.60);
}

.theme-modal-title{
  font-weight:1100;
  color: rgba(234,242,255,.95);
  font-size: 16px;
  text-transform: capitalize;
}
.theme-modal-sub{
  font-size:12px;
  color: rgba(234,242,255,.72);
  text-transform: capitalize;
}

.theme-modal-close{
  position:absolute;
  top: 12px;
  right: 12px;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border:1px solid rgba(255,255,255,.16);
  background: rgba(0,0,0,.25);
  color:#fff;
  font-size: 28px;
  line-height: 1;
  cursor:pointer;
}
.theme-modal-close:hover{ background: rgba(0,0,0,.35); }

.theme-modal-nav{
  position:absolute;
  top:50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 999px;
  border:1px solid rgba(255,255,255,.16);
  background: rgba(0,0,0,.25);
  color:#fff;
  font-size: 32px;
  line-height: 1;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
}
.theme-modal-nav:hover{ background: rgba(0,0,0,.35); }
.theme-modal-nav.prev{ left: 14px; }
.theme-modal-nav.next{ right: 14px; }

/* Responsive */
@media (min-width: 820px){
  .hero-grid{ grid-template-columns: 1.05fr .95fr; gap:22px; align-items:start; }
  .hero-left h1{ font-size: 50px; }
  .lead{ font-size: 16px; }
  .trust{ grid-template-columns: repeat(3, 1fr); }
  .grid.features{ grid-template-columns: repeat(3, 1fr); }
  .grid.benefits{ grid-template-columns: repeat(4, 1fr); }
  .steps{ grid-template-columns: repeat(5, 1fr); }
  .showcase-grid{ grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 920px){
  .tc-stage{ height: 560px; }
  .tc-item{ width: 82%; }
  .tc-item img{ height: 500px; }
  .tc-item.is-left{ transform: translate(calc(-50% - 200px), -50%) scale(.90); }
  .tc-item.is-right{ transform: translate(calc(-50% + 200px), -50%) scale(.90); }

  .theme-modal-panel{ width: 94vw; height: 92vh; }
  .theme-modal-body{ inset: 56px 18px 56px 18px; }
  .theme-modal-img{ max-height: 72vh; }
}

@media (max-width: 620px){
  .header-actions .link{ display:none; }
  .lp-container{ padding:0 12px; }
  .brand-logo{ width:70px; height:50px; }

  .tc-stage{ height: 520px; }
  .tc-item img{ height: 460px; }
}

@media (max-width: 560px){
  .tc-item.is-left{ transform: translate(calc(-50% - 120px), -50%) scale(.86); opacity:.35; }
  .tc-item.is-right{ transform: translate(calc(-50% + 120px), -50%) scale(.86); opacity:.35; }
  .tc-nav{ width:42px; height:42px; font-size:28px; }
  .theme-modal-nav{ width:46px; height:46px; font-size:30px; }
}