
    :root{
      --fontBody:"Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
      --fontHead:"Sora","Space Grotesk","Inter", system-ui, sans-serif;
      --bg:#0b0d10;
      --bg2:#07080b;
      --panel: rgba(255,255,255,.05);
      --panel2: rgba(255,255,255,.04);
      --border: rgba(255,255,255,.10);
      --border2: rgba(255,255,255,.08);
      --text:#e9edf6;
      --muted: rgba(233,237,246,.72);
      --muted2: rgba(233,237,246,.55);
      --accent:#ff9500;
      --accent2:#d97706;
      --good:#22c55e;
      --shadow: 0 20px 80px rgba(0,0,0,.55);
      --shadow2: 0 10px 30px rgba(0,0,0,.45);
      --r: 18px;
      --r2: 24px;
      --max: 1200px;
    
      --heroSlideUrl: url("assets/img/hero/slider-1.jpg");
    }

    *{ box-sizing:border-box }
    html,body{ overflow-x:hidden }
    body{
      margin:0;
      font-family: var(--fontBody);
      color:var(--text);
      background:
        radial-gradient(900px 500px at 12% 18%, rgba(255,149,0,.12), transparent 60%),
        radial-gradient(900px 500px at 88% 18%, rgba(90,160,255,.12), transparent 62%),
        radial-gradient(900px 600px at 50% 110%, rgba(255,149,0,.08), transparent 55%),
        linear-gradient(180deg, var(--bg), var(--bg2));
      font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
      overflow-x:hidden;
    }
    a{ color:inherit; text-decoration:none }
    button, input, select{ font:inherit }
    .wrap{ max-width:var(--max); margin:0 auto; padding:0 22px }
    .row{ display:flex; gap:16px }
    .grid{ display:grid; gap:16px }

    .topbar{
      position:sticky; top:0; z-index:1000;
      backdrop-filter: blur(10px);
      background: rgba(10,12,16,.70);
      border-bottom: 1px solid rgba(255,255,255,.06);
    }
    .topbar .inner{
      height:74px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:18px;
    }

    .brand{
      display:flex; align-items:center; gap:12px;
      min-width: 0;
    }
    .brand-badge{
      width:44px; height:44px; border-radius:14px;
      background: linear-gradient(180deg, rgba(255,255,255,.10), rgba(255,255,255,.04));
      border:1px solid rgba(255,255,255,.10);
      display:grid; place-items:center;
      box-shadow: var(--shadow2);
      overflow:hidden;
    }

    .brand-badge.wide{
      width:240px; height:44px; border-radius:12px;
      padding: 4px 10px;
      background: transparent;
      border: none;
      box-shadow: none;
      display:flex; align-items:center; justify-content:center;
    }
    .brand-badge.wide img{ width:100%; height:100%; object-fit:contain }
    @media (max-width: 640px){
      .brand-badge.wide{ width:140px; height:44px; border-radius:12px; padding:4px 10px; background:transparent; border:none; box-shadow:none; display:flex; align-items:center; justify-content:center; }
    }
    .brand-badge img{ width:100%; height:100%; object-fit:contain; padding:6px; display:block }
    .brand-text{ display:flex; flex-direction:column; line-height:1.1 }
    .brand-title{ font-weight:800; letter-spacing:.2px }
    .brand-sub{ font-size:12px; color:var(--muted2) }

    .brand-title, .hero-title, .sec-title, .features-title, .qr-title{
      font-family: var(--fontHead);
    }


    .nav{
      display:flex; align-items:center; gap:18px;
      color: rgba(233,237,246,.86);
      font-weight:600;
      font-size:14px;
      white-space:nowrap;
    }
    .nav a{
      padding:10px 10px;
      border-radius:12px;
      opacity:.9;
    }
    .nav a:hover{ background: rgba(255,255,255,.06) }
    .nav .ddnav{ position:relative }
    
    .nav .ddnav > button{
      position:relative; z-index: 61;
      border:0; background:transparent; color:inherit;
      padding:10px 10px;
      border-radius:12px;
      cursor:pointer;
      font-weight:700;
      opacity:.9;
      display:flex; align-items:center; gap:6px;
    }
    .nav .ddnav > button:hover{ background: rgba(255,255,255,.06) }
    .nav .ddnav .menu{
      position:absolute; top:42px; left:0;
      min-width: 220px;
      z-index: 60;
      background: rgba(12,14,18,.96);
      border:1px solid rgba(255,255,255,.10);
      border-radius: 16px;
      box-shadow: var(--shadow);
      padding:8px;
      display:none;
    }
    .nav .ddnav.open .menu{ display:block }

    @media (hover:hover) and (pointer:fine){
      .nav .ddnav::after{
        content:"";
        position:absolute;
        left:0; right:0;
        top:34px;
        height:18px;
        z-index: 59;
      }

      .nav .ddnav .menu{ display:block; opacity:0; transform: translateY(-6px); pointer-events:none; transition: opacity .15s ease, transform .15s ease; }
      .nav .ddnav:hover .menu{ opacity:1; transform: translateY(0); pointer-events:auto; }
      .nav .ddnav.open .menu{ opacity:1; transform: translateY(0); pointer-events:auto; }
    }

    .nav .ddnav .menu a{
      display:flex; gap:10px; align-items:center;
      padding:10px 10px;
      border-radius:12px;
      font-weight:700;
      font-size:14px;
    }
    .nav .ddnav .menu a:hover{ background: rgba(255,255,255,.06) }
    .nav .ddnav .menu .item{
      display:flex; width:100%; gap:10px; align-items:center;
      padding:10px 10px;
      border-radius:12px;
      font-weight:700;
      font-size:14px;
      border:0;
      background:transparent;
      color: rgba(233,237,246,.88);
      cursor:pointer;
      text-align:left;
    }
    .nav .ddnav .menu .item:hover{ background: rgba(255,255,255,.06) }
    .pill{
      display:inline-flex; align-items:center; gap:10px;
      padding:9px 12px;
      border-radius:999px;
      background: rgba(255,255,255,.06);
      border: 1px solid rgba(255,255,255,.08);
      color: rgba(233,237,246,.88);
      font-weight:700;
      font-size:13px;
    }
    .dot{
      width:8px; height:8px; border-radius:999px;
      background: var(--accent);
      box-shadow: 0 0 0 4px rgba(255,149,0,.14);
    }

    .actions{ display:flex; align-items:center; gap:10px; min-width: 260px; justify-content:flex-end }
    .btn{
      border:1px solid rgba(255,255,255,.10);
      background: rgba(255,255,255,.05);
      color: var(--text);
      padding:10px 14px;
      border-radius: 999px;
      cursor:pointer;
      font-weight:800;
      letter-spacing:.1px;
      transition: transform .08s ease, background .15s ease, border-color .15s ease;
      display:inline-flex; align-items:center; gap:10px;
      user-select:none;
    }
    .btn:hover{ background: rgba(255,255,255,.08) }
    .btn:active{ transform: translateY(1px) }
    .btn.primary{
      background: linear-gradient(180deg, rgba(255,149,0,.98), rgba(217,119,6,.98));
      color:#111;
      border-color: rgba(255,149,0,.55);
      box-shadow: 0 18px 60px rgba(255,149,0,.14);
    }
    .btn.primary:hover{ filter: brightness(.98) }
    .btn.ghost{
      background: rgba(255,255,255,.02);
    }
    .btn.sm{ padding:9px 12px; font-size:13px; font-weight:800 }
    .btn.block{ width:100%; justify-content:center }

    .hero{
      padding: 34px 0 18px;
    }

    .hero-grid{
      display:grid;
      grid-template-columns: 1.35fr 1.02fr;
      gap: 16px;
      align-items:stretch;
    }
.hero-grid > .card{height:100%;}
.features-card{display:flex;flex-direction:column;}
.features-top{flex:1;display:flex;flex-direction:column;}


    .card{
      background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.035));
      border:1px solid rgba(255,255,255,.10);
      border-radius: var(--r2);
      box-shadow: var(--shadow2);
    }
    .card.pad{ padding: 18px }
    .card.soft{
      background: rgba(255,255,255,.04);
      border-color: rgba(255,255,255,.08);
      box-shadow: none;
    }
    .hero-left{ padding: 22px 18px 18px }

    .hero-logoSlot{
      width: 200px;
      height: 150px;
      margin-bottom: 10px;
      border-radius: 18px;
      border: 1px solid rgba(255,255,255,.10);
      background: rgba(255,255,255,.03);
      overflow: hidden;
      display:flex;
      align-items:center;
      justify-content:center;
    }
    .hero-logoSlot img{
      width:100%;
      height:100%;
      object-fit: contain;
      display:block;
      padding: 10px;
    }

    .hero-title{
      margin: 14px 0 10px;
      font-family: var(--fontHead);
      font-size: 46px;
      line-height: 1.03;
      letter-spacing: -1.2px;
      font-weight: 700;
    }
    .hero-title .accent{ color: var(--accent) }
    .hero-desc{
      margin: 0 0 18px;
      color: var(--muted);
      font-weight:600;
      line-height:1.6;
      max-width: 56ch;
    }
    .cta-row{ display:flex; gap:10px; flex-wrap:wrap; margin: 18px 0 10px }
    .mini-pills{ display:flex; gap:10px; flex-wrap:wrap; margin: 10px 0 16px }
    .mini-pill{
      display:inline-flex; align-items:center; gap:10px;
      padding: 9px 12px;
      border-radius:999px;
      background: rgba(255,149,0,.07);
      border:1px solid rgba(255,149,0,.18);
      color: rgba(233,237,246,.90);
      font-size:13px;
      font-weight:800;
    }
    .mini-pill svg{ opacity:.9 }

    .search{
      padding: 14px;
      border-radius: var(--r2);
      border: 1px solid rgba(255,255,255,.10);
      background: rgba(0,0,0,.18);
    }
    .search-top{
      display:grid;
      grid-template-columns: 1fr 1fr .8fr .7fr;
      gap: 10px;
      align-items:end;
    }
    .field-label{
      font-size:12px;
      color: rgba(233,237,246,.58);
      font-weight:800;
      letter-spacing:.2px;
      margin: 0 0 8px 4px;
      text-transform: none;
    }
    .inp, .dd-btn, .date{
      width:100%;
      height:46px;
      border-radius: 14px;
      border: 1px solid rgba(255,255,255,.10);
      background: rgba(255,255,255,.04);
      color: rgba(233,237,246,.92);
      padding: 0 12px;
      outline: none;
      box-shadow: inset 0 0 0 1px rgba(0,0,0,.08);
    }
    .inp::placeholder{ color: rgba(233,237,246,.45) }
    .date{
      padding-right:10px;
      color-scheme: dark;
    }
    .search-help{
      display:flex;
      justify-content:space-between;
      gap:12px;
      align-items:center;
      margin-top: 10px;
      color: rgba(233,237,246,.64);
      font-weight:650;
      font-size: 13px;
    }
    .help-link{
      color: var(--accent);
      font-weight:900;
    }
    .help-link:hover{ text-decoration:underline }
    .search-btn{
      height:46px;
      border-radius: 14px;
      width:100%;
      justify-content:center;
    }

    .dd{ position:relative }
    .dd-btn{
      display:flex; align-items:center; justify-content:space-between;
      cursor:pointer;
      gap: 12px;
      font-weight:800;
    }
    .dd-btn .val{
      overflow:hidden;
      text-overflow:ellipsis;
      white-space:nowrap;
      max-width: 170px;
    }
    .dd-btn .mut{ color: rgba(233,237,246,.48); font-weight:800 }
    .dd-menu{position:absolute;top:calc(100% + 10px);left:0;min-width:260px;max-width:320px;padding:10px;
border-radius:16px;border:1px solid rgba(255,255,255,.10);background:rgba(12,14,18,.92);
backdrop-filter:none;box-shadow:0 24px 70px rgba(0,0,0,.55);display:none;z-index:1200;}

    .dd.open .dd-menu{position:absolute;top:calc(100% + 10px);left:0;min-width:260px;max-width:320px;padding:10px;
border-radius:16px;border:1px solid rgba(255,255,255,.10);background:rgba(12,14,18,.92);
backdrop-filter:blur(12px);box-shadow:0 24px 70px rgba(0,0,0,.55);display:block;z-index:1200;}


    /* dropdown panel alignment — no override needed, .dd.open .dd-menu handles display */


    .dd-search{
      width:100%;
      height:42px;
      border-radius: 12px;
      border: 1px solid rgba(255,255,255,.10);
      background: rgba(255,255,255,.04);
      color: rgba(233,237,246,.92);
      padding: 0 12px;
      outline:none;
      margin-bottom: 8px;
    }
    .dd-list{
      max-height: 220px;
      overflow-y:auto;
      overflow-x:hidden; /* yatay scroll olmasın */
      padding-right: 4px;
    }
    .dd-item{width:100%;display:flex;align-items:center;gap:10px;padding:10px 12px;border-radius:12px;
border:1px solid transparent;background:transparent;color:var(--text);font-weight:750;letter-spacing:.2px;cursor:pointer;text-align:left;}
.dd-item span{opacity:.78;font-weight:650;}
.dd-item:hover{background:rgba(255,255,255,.06);border-color:rgba(255,255,255,.10);}

    .dd-item .name{ flex:1; min-width:0; overflow:hidden; text-overflow:ellipsis; white-space:nowrap; }
    .dd-item:hover{ background: rgba(255,255,255,.06) }
    .dd-item .tag{
      font-size:11px;
      font-weight:900;
      color: rgba(233,237,246,.65);
      border:1px solid rgba(255,255,255,.10);
      padding: 4px 8px;
      border-radius: 999px;
      background: rgba(255,255,255,.03);
      white-space:nowrap;
    }
    /* dd tag hide on small */
    @media (max-width: 420px){
      .dd-item .tag{ display:none; }
    }


    .features-card{ padding: 18px }
    .features-title{
      margin: 2px 0 4px;
      font-size: 20px;
      font-weight:900;
      letter-spacing:-.2px;
    }
    .features-sub{
      margin: 0 0 12px;
      color: var(--muted);
      font-weight:650;
      line-height:1.5;
    }
    .mini-grid{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
    }
    .mini-card{
      border-radius: 18px;
      border:1px solid rgba(255,255,255,.09);
      background: rgba(0,0,0,.16);
      padding: 12px 12px 12px;
      min-height: 112px;
      display:flex;
      flex-direction:column;
      gap: 8px;
    }
    .mini-head{
      display:flex; align-items:center; gap:10px;
      font-weight:900;
    }
    .ico{
      width:34px; height:34px; border-radius: 14px;
      display:grid; place-items:center;
      border:1px solid rgba(255,149,0,.18);
      background: rgba(255,149,0,.07);
    }
    .mini-desc{
      color: rgba(233,237,246,.64);
      font-weight:650;
      font-size: 13px;
      line-height: 1.45;
    }
    .features-actions{ display:flex; gap:10px; margin-top: 12px; flex-wrap:wrap }

    .qr-stick{
      position: sticky;
      top: 100px;
      z-index: 2;
      border-radius: var(--r2);
      overflow:hidden;
    }
    .qr-card{ padding: 12px }
    .qr-head{
      display:flex; align-items:flex-start; justify-content:space-between; gap:10px;
      margin-bottom: 10px;
    }
    .qr-title{
      font-weight:950;
      letter-spacing:-.2px;
      line-height:1.1;
    }
    .qr-sub{ color: rgba(233,237,246,.62); font-weight:650; font-size: 12px; margin-top: 4px }
    .badge{
      font-size:11px;
      font-weight:950;
      padding: 5px 10px;
      border-radius: 999px;
      border:1px solid rgba(255,255,255,.10);
      background: rgba(255,255,255,.04);
      color: rgba(233,237,246,.80);
      white-space:nowrap;
    }
    .qr-box{
      border-radius: 18px;
      border:1px dashed rgba(255,255,255,.16);
      background: rgba(255,255,255,.03);
      height: 150px;
      display:grid;
      place-items:center;
      overflow:hidden;
      margin-bottom: 10px;
      position:relative;
    }
    .qr-box img{ width:100%; height:100%; object-fit:cover; display:block }
    .qr-ph{
      color: rgba(233,237,246,.62);
      font-weight:900;
      padding: 0 12px;
      text-align:center;
    }
    .qr-note{
      color: rgba(233,237,246,.55);
      font-weight:650;
      font-size:12px;
      line-height:1.5;
      margin: 0 0 10px;
    }
    .qr-actions{ display:grid; gap:10px }
    .qr-actions .btn{ border-radius: 16px; justify-content:center }

    .section{ padding: 28px 0 }
    .sec-title{
      font-family: var(--fontHead);
      font-size: 34px;
      letter-spacing: -.8px;
      margin: 0 0 10px;
    }
    .sec-sub{ margin:0; color: var(--muted); font-weight:650; line-height:1.6; max-width: 75ch }

    .cards-3{
      display:grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
      margin-top: 18px;
    }
    .feat-big{
      padding: 16px;
      border-radius: var(--r2);
      background: rgba(255,255,255,.035);
      border: 1px solid rgba(255,255,255,.08);
      min-height: 148px;
    }
    .feat-big h3{
      margin: 8px 0 8px;
      font-size: 16px;
      font-weight: 950;
    }
    .feat-big p{
      margin: 0;
      color: rgba(233,237,246,.64);
      font-weight: 650;
      line-height: 1.55;
      font-size: 13px;
    }
    .spark{
      height: 52px;
      border-radius: 14px;
      border:1px solid rgba(255,255,255,.09);
      background:
        radial-gradient(240px 80px at 22% 10%, rgba(255,149,0,.16), transparent 60%),
        linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
      margin-top: 12px;
      position:relative;
      overflow:hidden;
    }
    .spark:after{
      content:"";
      position:absolute;
      inset:-40px -20px;
      background:
        radial-gradient(140px 60px at 16% 70%, rgba(90,160,255,.18), transparent 65%),
        radial-gradient(160px 80px at 70% 35%, rgba(255,149,0,.10), transparent 62%);
      filter: blur(8px);
      opacity:.7;
    }

    .two-col{
      display:grid;
      grid-template-columns: 1.1fr .9fr;
      gap: 16px;
      margin-top: 18px;
      align-items:start;
    }

    .side-stack{ display:grid; gap: 16px }
    .yt{
      padding: 14px;
    }
    .yt h3{ margin: 0 0 10px; font-size: 16px; font-weight: 950 }
    .ytbox{
      border-radius: 18px;
      border:1px solid rgba(255,255,255,.10);
      overflow:hidden;
      background: rgba(0,0,0,.18);
      aspect-ratio: 16/9;
      width:100%;
    }
    .ytbox iframe{
      width:100%; height:100%;
      border:0;
      display:block;
    }
    .download{
      padding: 14px;
    }
    .download h3{ margin:0 0 8px; font-size: 18px; font-weight: 950 }
    .download p{ margin:0 0 12px; color: rgba(233,237,246,.64); font-weight:650; line-height:1.55 }
    .dl-row{ display:grid; grid-template-columns: 1fr 1fr; gap: 10px }
    .dl-badge{
      border-radius: 16px;
      border:1px solid rgba(255,255,255,.10);
      background: rgba(255,255,255,.04);
      height: 48px;
      display:flex; align-items:center; justify-content:center;
      font-weight:950;
      cursor:pointer;
    }
    .dl-badge:hover{ background: rgba(255,255,255,.07) }
    .dl-qr{
      margin-top: 10px;
      border-radius: 18px;
      border:1px dashed rgba(255,255,255,.16);
      background: rgba(255,255,255,.03);
      height: 180px;
      display:grid;
      place-items:center;
      overflow:hidden;
    }
    .dl-qr img{ width:100%; height:100%; object-fit:cover; display:block }
    .dl-qr span{ color: rgba(233,237,246,.60); font-weight:900; text-align:center; padding: 0 10px }

    .tabs{
      display:flex; gap:10px; justify-content:center;
      margin-top: 16px;
    }
    .tab{
      border:1px solid rgba(255,255,255,.10);
      background: rgba(255,255,255,.04);
      color: rgba(233,237,246,.88);
      padding: 10px 14px;
      border-radius: 999px;
      font-weight: 950;
      cursor:pointer;
    }
    .tab.on{
      border-color: rgba(255,149,0,.35);
      background: rgba(255,149,0,.10);
    }
    .pricing{
      margin-top: 16px;
      display:grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
    }
    .plan{
      padding: 16px;
    }
    .plan .top{
      display:flex; align-items:center; justify-content:space-between; gap:10px;
      margin-bottom: 10px;
    }
    .chip{
      display:inline-flex; align-items:center; gap:8px;
      border-radius:999px;
      padding: 6px 10px;
      border:1px solid rgba(255,255,255,.10);
      background: rgba(255,255,255,.04);
      color: rgba(233,237,246,.80);
      font-weight: 950;
      font-size: 12px;
      white-space:nowrap;
    }
    .chip.pop{ border-color: rgba(255,149,0,.35); background: rgba(255,149,0,.12) }
    .plan h3{ margin: 4px 0 8px; font-size: 18px; font-weight: 950 }
    .price{
      font-size: 36px;
      font-weight: 950;
      letter-spacing: -1px;
      margin: 0;
    }
    .subp{
      margin: 6px 0 12px;
      color: rgba(233,237,246,.62);
      font-weight:650;
      font-size: 13px;
      line-height:1.55;
    }
    .list{
      display:grid; gap: 10px;
      margin: 12px 0 14px;
    }
    .li{
      display:flex; align-items:center; justify-content:space-between; gap:10px;
      border-radius: 14px;
      border:1px solid rgba(255,255,255,.08);
      background: rgba(255,255,255,.03);
      padding: 10px 12px;
      color: rgba(233,237,246,.86);
      font-weight:800;
      font-size: 13px;
    }
    .li .right{
      display:flex; align-items:center; gap:8px;
      color: rgba(233,237,246,.62);
      font-weight:900;
      font-size: 11px;
    }
    .tick{
      width:20px; height:20px; border-radius: 999px;
      display:grid; place-items:center;
      background: rgba(34,197,94,.14);
      border:1px solid rgba(34,197,94,.25);
      color: var(--good);
      flex:0 0 auto;
    }

    .testis{
      margin-top: 16px;
      display:grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
    }
    .tcard{ padding: 16px }
    .ttext{
      margin: 0 0 12px;
      color: rgba(233,237,246,.78);
      font-weight:650;
      line-height:1.7;
      font-size: 14px;
    }
    .tfoot{ display:flex; align-items:center; justify-content:space-between; gap:10px }
    .who{ display:flex; flex-direction:column; gap:2px }
    .who strong{ font-weight: 950 }
    .who span{ font-size: 12px; color: rgba(233,237,246,.55); font-weight:700 }
    .stars{ color: rgba(255,149,0,.85); letter-spacing: 1px }

    .faq{
      margin-top: 16px;
      display:grid;
      gap: 10px;
      min-width:0;
    }
    .dd-item .name{ flex:1; min-width:0; overflow:hidden; text-overflow:ellipsis; white-space:nowrap; }
    .qa{
      border-radius: 18px;
      border:1px solid rgba(255,255,255,.10);
      background: rgba(255,255,255,.04);
      overflow:hidden;
    }
    .q{
      width:100%;
      padding: 14px 14px;
      background: transparent;
      border:0;
      color: rgba(233,237,246,.92);
      cursor:pointer;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap: 10px;
      font-weight: 950;
      text-align:left;
    }
    .a{
      padding: 0 14px 14px;
      color: rgba(233,237,246,.68);
      font-weight:650;
      line-height:1.65;
      display:none;
    }
    .qa.open .a{ display:block }

    footer{
      padding: 28px 0 34px;
      border-top: 1px solid rgba(255,255,255,.06);
      background: rgba(0,0,0,.22);
      margin-top: 18px;
    }
    .footgrid{
      display:grid;
      grid-template-columns: 1.2fr 1fr 1fr 1fr;
      gap: 18px;
      align-items:start;
    }
    .ft-title{ font-weight:950; margin: 0 0 12px; font-size: 13px; letter-spacing:.4px; color: rgba(233,237,246,.80); text-transform: uppercase }
    .ft-links{ display:grid; gap: 10px; color: rgba(233,237,246,.70); font-weight:700 }
    .ft-links a:hover{ color: rgba(233,237,246,.92) }
    .ft-brand{ display:flex; gap: 12px; align-items:center; margin-bottom: 10px }
    .ft-brand .brand-badge{ width:46px; height:46px; border-radius: 16px }
    .ft-note{ color: rgba(233,237,246,.58); font-weight:650; line-height:1.6; margin: 0 0 12px; max-width: 40ch }
    .paytr{
      margin-top: 18px;
      display:flex; align-items:center; justify-content:space-between; gap:12px;
      flex-wrap:wrap;
      padding: 12px 14px;
      border-radius: 16px;
      border:1px solid rgba(255,255,255,.08);
      background: rgba(255,255,255,.03);
      color: rgba(233,237,246,.70);
      font-weight:700;
      font-size: 13px;
    }
    .paytr b{ color: rgba(233,237,246,.90) }
    .coin{
      width:28px; height:28px; border-radius: 999px;
      display:grid; place-items:center;
      border:1px solid rgba(255,149,0,.25);
      background: rgba(255,149,0,.10);
      color: var(--accent);
      flex: 0 0 auto;
      font-weight: 950;
    }

    @keyframes toTopBounce{0%{transform:translateY(6px);opacity:0}100%{transform:translateY(0);opacity:1}}

    /* .toTop base — defined via #toTop below */

    .floatApp{
      position: fixed;
      right: 18px;
      bottom: 86px;
      z-index: 59;
      display:flex;
      align-items:center;
      gap:10px;
      padding: 12px 14px;
      border-radius: 999px;
      border:1px solid rgba(255,255,255,.14);
      background: rgba(255,255,255,.06);
      color: rgba(233,237,246,.92);
      font-weight: 950;
      cursor:pointer;
      box-shadow: var(--shadow2);
      transition: transform .18s ease, filter .18s ease, background .18s ease;
    }
    .floatApp:hover{ transform: translateY(-1px); filter: brightness(1.02) }
    .floatApp svg{ color: var(--accent) }
    .appModalWrap{ max-width: 460px; margin: 0 auto; }
    #modalApp .qr-card{ box-shadow: none; }
    @media (max-width: 640px){
      .floatApp{ right: 12px; bottom: 78px; width:52px; height:52px; padding:0; gap:0; border-radius:999px; justify-content:center }
      .appModalWrap{ max-width: 100%; }
      .floatApp span{ display:none; }
    }
    /* .toTop.show — defined via #toTop.show below */

    .modal{
      position: fixed;
      inset:0;
      background: rgba(0,0,0,.58);
      display:none;
      align-items:center;
      justify-content:center;
      padding: 18px;
      z-index: 9000;
    }
    .modal.show{ display:flex }
    .dialog{
      width: min(560px, 100%);
      border-radius: 22px;
      border:1px solid rgba(255,255,255,.10);
      background: rgba(12,14,18,.96);
      box-shadow: var(--shadow);
      overflow:hidden;
    }
    .dialog.wide{ width: min(860px, 100%) }
    .dialog .hd{
      padding: 14px 14px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap: 10px;
      border-bottom: 1px solid rgba(255,255,255,.08);
    }
    .dialog .hd strong{ font-weight: 950; font-size: 16px }
    .xbtn{
      width:42px; height:42px;
      border-radius: 14px;
      border:1px solid rgba(255,255,255,.10);
      background: rgba(255,255,255,.04);
      color: rgba(233,237,246,.88);
      display:grid; place-items:center;
      cursor:pointer;
    }
    .xbtn:hover{ background: rgba(255,255,255,.07) }
    .dialog .bd{ padding: 14px }
    .formgrid{ display:grid; gap: 10px }
    .row2{ display:grid; grid-template-columns: 1fr 1fr; gap: 10px }
    .hint{ color: rgba(233,237,246,.60); font-weight:650; font-size: 12px; line-height:1.6 }
    .link{ color: var(--accent); font-weight: 950; cursor:pointer }
    .link:hover{ text-decoration:underline }

    .toggle{
      display:flex; gap:10px; margin-bottom: 10px;
    }
    .choice{
      flex:1;
      border-radius: 18px;
      border:1px solid rgba(255,255,255,.10);
      background: rgba(255,255,255,.04);
      padding: 12px;
      cursor:pointer;
      display:flex; flex-direction:column; gap:6px;
    }
    .choice.on{
      border-color: rgba(255,149,0,.35);
      background: rgba(255,149,0,.10);
    }
    .choice .t{ font-weight: 950 }
    .choice .s{ color: rgba(233,237,246,.60); font-weight:650; font-size: 12px; line-height:1.5 }
    .checks{ display:grid; gap: 8px; margin-top: 8px }
    .ck{
      display:flex; gap:10px; align-items:flex-start;
      color: rgba(233,237,246,.70);
      font-weight:650;
      font-size: 12px;
      line-height:1.55;
    }
    .ck input{ margin-top: 3px }

    .otp{
      display:flex; gap:8px; justify-content:center; margin: 12px 0 10px;
    }
    .otp input{
      width:44px; height:52px;
      border-radius: 14px;
      border:1px solid rgba(255,255,255,.12);
      background: rgba(255,255,255,.04);
      color: rgba(233,237,246,.92);
      text-align:center;
      font-size: 18px;
      font-weight:950;
      outline:none;
    }

    .toast{
      position: fixed;
      left: 50%;
      bottom: 32px;
      transform: translateX(-50%);
      background: rgba(10,12,16,.92);
      border: 1px solid rgba(255,153,0,.30);
      border-radius: 16px;
      box-shadow: 0 14px 50px rgba(0,0,0,.60), 0 0 0 1px rgba(255,153,0,.10);
      padding: 14px 20px 14px 48px;
      color: rgba(233,237,246,.96);
      font-weight: 800;
      font-size: 14px;
      letter-spacing: .2px;
      display:none;
      z-index: 99999;
      max-width: min(480px, 92vw);
      pointer-events:none;
      white-space: normal;
      text-align: left;
      line-height: 1.45;
      max-width: min(420px, 88vw);
    }
    .toast:before{
      content:"";
      position:absolute;
      left:14px;
      top:50%;
      width:18px; height:18px;
      transform:translateY(-50%);
      border-radius:999px;
      background: rgba(255,153,0,.10);
      border:1px solid rgba(255,153,0,.40);
      box-shadow: 0 0 0 6px rgba(255,153,0,.10);
    }
    .toast:after{
      content:"";
      position:absolute;
      left:20px;
      top:50%;
      width:6px; height:6px;
      transform:translateY(-50%);
      border-radius:999px;
      background: var(--accent);
      box-shadow: 0 0 14px rgba(255,153,0,.65);
    }
    .toast.show{
      display:block;
      animation: toastIn .18s ease-out, toastPulse 1.2s ease-out 1;
    }
    @keyframes toastIn{
      from{ transform: translateX(-50%) translateY(10px); opacity:0 }
      to{ transform: translateX(-50%) translateY(0); opacity:1 }
    }
    @keyframes toastPulse{
      0%{ box-shadow: 0 14px 50px rgba(0,0,0,.50), 0 0 0 1px rgba(255,153,0,.10); }
      50%{ box-shadow: 0 14px 50px rgba(0,0,0,.50), 0 0 0 1px rgba(255,153,0,.22), 0 0 0 6px rgba(255,153,0,.08); }
      100%{ box-shadow: 0 14px 50px rgba(0,0,0,.50), 0 0 0 1px rgba(255,153,0,.10); }
    }

    .mnav-btn{
      display:none;
      width:44px; height:44px;
      border-radius: 14px;
      border:1px solid rgba(255,255,255,.10);
      background: rgba(255,255,255,.04);
      color: rgba(233,237,246,.90);
      cursor:pointer;
      place-items:center;
    }
/* [removed old mnav rule 1] */

    @media (max-width: 1120px){
      .hero-grid{ grid-template-columns: 1.15fr .95fr }
      .qr-stick{ display:none }
    }
    @media (max-width: 980px){
      .hero-bg-slide.active{ opacity:.46 }
      .nav{ display:none }
      .phone-screen{ max-height: 460px }
      .mnav-btn{ display:grid }
      .hero-title{ font-size: 46px }
      .hero-grid{ grid-template-columns: 1fr; }
      .search-top{ grid-template-columns: 1fr 1fr; }
      .cards-3{ grid-template-columns: 1fr; }
      .two-col{ grid-template-columns: 1fr; }
      .pricing{ grid-template-columns: 1fr; }
      .testis{ grid-template-columns: 1fr; }
      .footgrid{ grid-template-columns: 1fr 1fr; }
      .actions{ min-width: auto }
    }
    @media (max-width: 560px){
      .search-top{ grid-template-columns: 1fr; }
      .search-btn{ width:100%; }
      /* [removed duplicate dd-menu rule] */

      .dd-item{width:100%;display:flex;align-items:center;gap:10px;padding:10px 12px;border-radius:12px;
border:1px solid transparent;background:transparent;color:var(--text);font-weight:750;letter-spacing:.2px;cursor:pointer;text-align:left;}
.dd-item span{opacity:.78;font-weight:650;}
.dd-item:hover{background:rgba(255,255,255,.06);border-color:rgba(255,255,255,.10);}

      .dd-list{ max-height: 260px; }
    }

    @media (max-width: 520px){
      .hero-title{ font-size: 40px }
      .hero-logoSlot{ width: 170px; height: 120px }
      .row2{ grid-template-columns: 1fr }
      .footgrid{ grid-template-columns: 1fr }
    }
  

    
    /* Hide floating app CTA on mobile/tablet to prevent content overlap */
    @media (max-width: 980px){ .floatApp{ display:none !important; } }
/* ---- Mobile polish (Kamyono-like centered hero) ---- */
    @media (max-width: 560px){
      /* header: compact like native mobile */
      .topbar{ padding: 10px 0; }
      .topbar .inner{ gap: 10px; }
      .brand-text{ display:none; } /* logo only on mobile */
      .brand-badge.wide{ width:140px; height:44px; border-radius:12px; padding:4px 10px; background:transparent; border:none; box-shadow:none; display:flex; align-items:center; justify-content:center; }
      .actions{ gap: 8px; }
      .btn{ padding: 12px 14px; border-radius: 16px; }
      .btn.ghost{ padding: 12px 14px; }
      .btn.primary{ padding: 12px 16px; }

      /* hero: centered stack */
      .hero-left{ padding: 18px 14px 16px; }
      .pill{ margin: 0 auto 10px; justify-content:center; text-align:center; }
      .hero-title{
        text-align:center;
        font-size: clamp(34px, 9.3vw, 46px);
        letter-spacing: -0.9px;
        margin: 10px 0 10px;
      }
      .hero-desc{ text-align:center; font-size: 15px; line-height: 1.55; }

      .cta-row{
        flex-direction:column;
        align-items:stretch;
        gap: 10px;
        margin-top: 14px;
      }
      .cta-row .btn,
      .cta-row a.btn{ width:100%; justify-content:center; }
      .mini-pills{ justify-content:center; gap:10px; margin-top: 12px; }

      /* search card: full width + calmer spacing */
      .search{ margin-top: 14px; }
      .search-top{ gap: 12px; }
      .search-btn{ height: 48px; border-radius: 16px; }
    }

    @media (max-width: 420px){
      /* keep the mobile header super clean */
      .btn{ padding: 11px 12px; font-size: 13px; }
            .brand-badge.wide{ width:140px; height:44px; border-radius:12px; padding:4px 10px; background:transparent; border:none; box-shadow:none; display:flex; align-items:center; justify-content:center; }
    }


/* ===========================
   Mobile hardening v9
   Goals: no horizontal scroll, Kamyono-like centered hero, responsive modals
   (Structure unchanged; CSS overrides only)
   =========================== */

/* Hard stop horizontal drift (iOS included) */
html, body{
  width:100%;
  max-width:100%;
  overflow-x:hidden;
}
@supports (overflow-x: clip){
  html, body{ overflow-x: clip; }
}
body{
  position:relative;
  overscroll-behavior-x: none;
}
img, svg, video, canvas{ max-width:100%; }

/* Remove any vw-based dropdown sizing that can trigger sideways scroll */
/* [removed duplicate dd-menu rule] */


@media (max-width: 980px){
  /* Prevent accidental sideways pan on touch */
  body{ touch-action: pan-y; }
}

/* Mobile hero: centered & breathable like Kamyono */
@media (max-width: 560px){
  .topbar .inner{ height: 64px; }           /* a little shorter */
  .hero{ padding: 18px 0 10px !important; }
  .hero-left{ padding: 22px 16px 16px !important; }
  .pill{
    margin: 0 auto;
    justify-content: center;
    text-align: center;
    flex-wrap: wrap;
    max-width: 100%;
  }
  .hero-desc{
    margin-left:auto;
    margin-right:auto;
    max-width: 36ch;
    opacity:.92;
  }

  /* CTA stack, full width */
  .cta-row{ gap: 10px !important; }
  .cta-row .btn,
  .cta-row a.btn{ width:100% !important; }

  /* Primary CTA: white mobile button (Kamyono feel) */
  .btn.primary{
    background: rgba(255,255,255,.96) !important;
    color: rgba(10,12,16,.96) !important;
    border-color: rgba(255,255,255,.22) !important;
    box-shadow: 0 16px 40px rgba(0,0,0,.45) !important;
  }
  .btn.primary svg{ color: var(--accent) !important; }

  /* Dropdown panel must follow field width (no 100vw) */
  /* [removed duplicate dd-menu rule] */

  /* [removed: dd-to display:none override] */


  /* Search inputs: ensure no overflow */
  .search, .search-top, .field, .inp, .dd-btn, .date{ max-width:100%; }

  /* If any fixed CTAs exist, never cover content on mobile */
  .floatApp{ display:none !important; }
}

/* Responsive modals: always fit viewport, scroll inside */
.modal{
  padding: 14px;
}
.dialog{
  display:flex;
  flex-direction: column;
  max-height: calc(100dvh - 36px);
}
@supports not (height: 100dvh){
  .dialog{ max-height: calc(100vh - 36px); }
}
.dialog .hd{
  flex: 0 0 auto;
}
.dialog .bd{
  flex: 1 1 auto;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

@media (max-width: 560px){
  .modal{ align-items: flex-start; padding: 10px; }
  .dialog{ width: 100% !important; border-radius: 18px; }
  .dialog.wide{ width: 100% !important; }
  .row2{ grid-template-columns: 1fr !important; }
}


/* ---- Mobile dropdown readability (v9.1) ---- */
@media (max-width: 560px){
  .dd-item .tag{ display:none !important; } /* free space for city names */
  .dd-search{
    border-color: rgba(255,149,0,.28) !important;
    box-shadow: 0 0 0 5px rgba(255,149,0,.10) !important;
  }
  .dd-search:focus{
    border-color: rgba(255,149,0,.55) !important;
    box-shadow: 0 0 0 6px rgba(255,149,0,.14) !important;
  }
  .dd-list{ max-height: min(52vh, 360px) !important; }
}



/* ===========================
   Header & Mobile Menu fix (v10.1)
   - Topbar always visible (fixed)
   - Mobile header never clips actions
   - Mobile menu opens as full-width panel
   =========================== */
:root{ --topbarH: 74px; }

body{
  padding-top: var(--topbarH);
  padding-top: calc(var(--topbarH) + env(safe-area-inset-top));
}

.topbar{
  position: fixed !important;
  top: 0; left: 0; right: 0;
  z-index: 999 !important;
  padding-top: 0px;
  padding-top: env(safe-area-inset-top);
  overflow: visible;
}

.topbar .wrap{ width:100%; }
.topbar .inner{ height: var(--topbarH); }

/* Mobile: keep header compact & prevent clipping */
@media (max-width: 560px){
  :root{ --topbarH: 64px; }

  /* logo + actions must fit */
  .brand{ min-width: 0 !important; }
  .brand-text{ display:none !important; }

  .actions{ gap: 8px !important; }

  /* buttons smaller so they never cut */
  .actions .btn{
    padding: 9px 10px !important;
    font-size: 13px !important;
    border-radius: 999px !important;
    white-space: nowrap;
  }
  .mnav-btn{ width:42px !important; height:42px !important; border-radius: 999px !important; }
}

/* [removed old mnav rule 2] */

/* Dropdown list: prioritize city names on mobile/tablet */
@media (max-width: 980px){
  .dd-item .tag{ display:none !important; }
}
@media (max-width: 560px){
  .dd-item{width:100%;display:flex;align-items:center;gap:10px;padding:10px 12px;border-radius:12px;
border:1px solid transparent;background:transparent;color:var(--text);font-weight:750;letter-spacing:.2px;cursor:pointer;text-align:left;}
.dd-item span{opacity:.78;font-weight:650;}
.dd-item:hover{background:rgba(255,255,255,.06);border-color:rgba(255,255,255,.10);}

  .dd-item .name{
    white-space: normal !important;
    overflow: visible !important;
    text-overflow: clip !important;
    line-height: 1.25;
  }
}

/* Ensure anchors don't hide behind fixed header */
[id]{ scroll-margin-top: calc(var(--topbarH) + 18px); }



    /* Hero görsel hareket (hafif slider + maskot) */
    .hero{ position:relative; overflow:visible }
    .hero-bg{ position:absolute; inset:0; z-index:2; overflow:hidden; pointer-events:none; z-index:0 }
    .hero-bg-slide{ position:absolute; inset:-80px;
      background-size:cover; background-position:center;
      filter: saturate(.92) contrast(.96);
      opacity:0; transform: scale(1.03);
      transition: opacity 1.15s ease;
    }
    .hero-bg-slide.active{ opacity:.58 }
    .hero-bg-vignette{ position:absolute; inset:0; z-index:2; background: radial-gradient(900px 520px at 52% 30%, rgba(0,0,0,.05), rgba(0,0,0,.52) 72%), linear-gradient(90deg, rgba(11,13,16,.82) 0%, rgba(11,13,16,.48) 45%, rgba(11,13,16,.82) 100%); }
    .hero-spotlight{
      position:absolute;
      right:-120px;
      top:110px;
      width:720px;
      height:520px;
      border-radius: 44px;
      background-image: var(--heroSlideUrl);
      background-size: cover;
      background-position: center;
      opacity: .26;
      filter: saturate(1.05) contrast(.95);
      pointer-events:none;
      z-index:0;
      -webkit-mask-image: radial-gradient(circle at 30% 50%, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 72%);
              mask-image: radial-gradient(circle at 30% 50%, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 72%);
    }
    .hero-spotlight:after{
      content:"";
      position:absolute; inset:0; z-index:2;
      background: radial-gradient(420px 320px at 42% 42%, rgba(255,149,0,.20), rgba(0,0,0,0) 68%),
                  linear-gradient(180deg, rgba(0,0,0,.55), rgba(0,0,0,.78));
      border-radius: inherit;
    }
    @media (max-width: 980px){
      .hero-spotlight{ display:none; }
    }

    .hero-grid{ position:relative; z-index:1 }

    .hero-left{ position:relative }
    .hero-mascot{
      position:absolute; top:16px; right:16px;
      width:96px; height:96px; border-radius:26px;
      background: linear-gradient(180deg, rgba(255,255,255,.10), rgba(255,255,255,.04));
      border:1px solid rgba(255,255,255,.12);
      overflow:hidden;
      isolation:isolate;
      box-shadow: 0 18px 60px rgba(0,0,0,.38);
      display:grid; place-items:center;
      animation: heroFloat 5.6s ease-in-out infinite;
      will-change: transform;
    }
    .hero-mascot .hero-mascot-img{ width:100%; height:100%; border-radius:26px; object-fit:cover; object-position:50% 20%; display:block; position:relative; z-index:1 }
    .hero-mascot .hero-mascot-fallback{ width:62px; height:62px; display:none }
    
    .hero-mascot:after{
      content:"";
      position:absolute; inset:0; z-index:2;
      background: radial-gradient(60px 60px at 30% 25%, rgba(255,149,0,.22), transparent 65%),
                  linear-gradient(135deg, rgba(255,255,255,.14), transparent 40%);
      opacity:.75;
      pointer-events:none;
      mix-blend-mode:screen;
    }

    @keyframes heroFloat{ 0%,100%{ transform:translateY(0) } 50%{ transform:translateY(-6px) } }

    @media (max-width: 980px){
      .hero-bg{ inset:-20px -20px -10px }
      .hero-bg-slide.active{ opacity:.28 }
      .hero-mascot{ display:none }
    }

/* =========================
   v15 FIXES (slider + dropdown + mobile)
   ========================= */
:root{ --topbarH: 78px; }

body{ padding-top: var(--topbarH, 78px); }

.topbar{
  position:fixed !important;
  top:0; left:0; right:0;
  z-index:1000;
}

.hero-bg,.hero-spotlight{ display:none !important; }

/* Hero medya slider (kart içinde) */
.hero-media{
  position:relative;
  margin:16px 0 18px;
  border-radius:20px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.08);
  background:rgba(255,255,255,.03);
}
.hero-media-img{
  height:170px;
  background-size:cover;
  background-position:center;
  filter:saturate(1.04) contrast(1.02);
}
@media (min-width: 1024px){
  .hero-media-img{ height:200px; }
}
.hero-media-overlay{
  position:absolute;
  inset:0;
  padding:14px;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  gap:6px;
  background:linear-gradient(90deg, rgba(0,0,0,.72), rgba(0,0,0,.18) 58%, rgba(0,0,0,.62));
}
.hero-media-title{
  font-weight:900;
  font-size:16px;
  letter-spacing:-.01em;
}
.hero-media-desc{
  font-size:13px;
  line-height:1.35;
  color:rgba(255,255,255,.86);
  max-width:64ch;
}
.hero-media-dots{
  position:absolute;
  top:12px;
  right:12px;
  display:flex;
  gap:7px;
}
.hero-dot{
  width:8px; height:8px;
  border-radius:999px;
  background:rgba(255,255,255,.35);
  border:1px solid rgba(255,255,255,.25);
}
.hero-dot.active{
  background:rgba(255,149,0,.96);
  border-color:rgba(255,149,0,.7);
  box-shadow:0 0 0 4px rgba(255,149,0,.16);
}

/* Dropdown: kapanma / taşma / mobil genişlik */
/* [removed duplicate dd-menu rule] */

.dd-list{ overflow:auto; }
.dd-backdrop{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.56);
  opacity:0;
  pointer-events:none;
  transition:opacity .18s ease;
  z-index:998;
}
.dd-backdrop.show{ opacity:1; pointer-events:auto; backdrop-filter:blur(4px); -webkit-backdrop-filter:blur(4px); }

@media (max-width: 560px){
  .brand-sub{ display:none; }
  .auth .btn.secondary{ display:none; }
  .btn.primary{ padding:10px 14px; font-size:13px; }
  /* [removed duplicate dd-menu rule] */

  .dd-item .tag{ display:none; }
  .dd-list{ max-height:min(52vh, 360px); }
}

/* Go-to-top: mobilde de görünür ve katman üstte */
/* [removed conflicting toTop rule] */

/* =========================
   v17 UI Tweaks (Nav + Space BG + Modals)
   ========================= */
:root{ --navHoverBg: linear-gradient(180deg, rgba(255,149,0,.16), rgba(255,255,255,.04));
       --navHoverBd: rgba(255,149,0,.28); }

body{ overflow-x:hidden; }

.brand-badge.wide{ width:140px; height:44px; border-radius:12px; padding:4px 10px; background:transparent; border:none; box-shadow:none; display:flex; align-items:center; justify-content:center; }
@media (max-width:980px){
  .brand-badge.wide{ width:140px; height:44px; border-radius:12px; padding:4px 10px; background:transparent; border:none; box-shadow:none; display:flex; align-items:center; justify-content:center; }
}

/* menu rollover */
.nav a, .nav .ddnav>button{
  border:1px solid transparent;
  transition: background .18s ease, border-color .18s ease, transform .18s ease, box-shadow .18s ease, color .18s ease;
}
.nav a:hover, .nav a.active, .nav .ddnav>button:hover, .nav .ddnav.open>button{
  background: var(--navHoverBg);
  border-color: var(--navHoverBd);
  box-shadow: 0 12px 26px rgba(0,0,0,.35);
  transform: translateY(-1px);
}
.nav a{ position:relative; }
.nav a::after{
  content:"";
  position:absolute; left:14px; right:14px; bottom:8px; height:2px;
  border-radius:9999px;
  background: linear-gradient(90deg, rgba(255,149,0,0), rgba(255,149,0,.9), rgba(255,149,0,0));
  opacity:0; transform: translateY(6px);
  transition: opacity .18s ease, transform .18s ease;
  pointer-events:none;
}
.nav a:hover::after, .nav a.active::after{ opacity:.9; transform: translateY(0); }

/* hero overflow fix (dropdown clipping) */
.hero{ overflow:visible; }
.hero-bg{ overflow:hidden; }

/* city dropdown above hero */
/* [removed duplicate dd-menu rule] */

.hero-left, .hero-grid, .wrap{ overflow:visible; }

/* subtle space background */
.space-bg{
  position:fixed; inset:0;
  z-index:-5; pointer-events:none;
  background:
    radial-gradient(1100px 650px at 12% 10%, rgba(255,149,0,.10), transparent 60%),
    radial-gradient(900px 650px at 90% 18%, rgba(90,160,255,.09), transparent 58%),
    radial-gradient(700px 560px at 45% 92%, rgba(255,255,255,.04), transparent 60%),
    linear-gradient(180deg, #05070b 0%, #0b111c 45%, #05070b 100%);
}
.space-bg::before,
.space-bg::after{
  content:""; position:absolute; inset:-10%;
  background-repeat:repeat;
  opacity:.45;
  transform: translate3d(0,0,0);
  animation: starDrift 55s linear infinite;
  will-change: transform;
}
.space-bg::before{
  background-image:
    radial-gradient(1px 1px at 22px 18px, rgba(255,255,255,.35) 0, rgba(255,255,255,0) 2px),
    radial-gradient(1px 1px at 120px 80px, rgba(255,255,255,.25) 0, rgba(255,255,255,0) 2px),
    radial-gradient(1px 1px at 200px 140px, rgba(255,255,255,.22) 0, rgba(255,255,255,0) 2px),
    radial-gradient(1px 1px at 60px 210px, rgba(255,149,0,.20) 0, rgba(255,149,0,0) 3px),
    radial-gradient(1px 1px at 180px 240px, rgba(90,160,255,.18) 0, rgba(90,160,255,0) 3px);
  background-size: 260px 260px;
}
.space-bg::after{
  opacity:.28;
  animation-duration: 85s;
  background-image:
    radial-gradient(1px 1px at 40px 60px, rgba(255,255,255,.22) 0, rgba(255,255,255,0) 2px),
    radial-gradient(1px 1px at 160px 40px, rgba(255,255,255,.18) 0, rgba(255,255,255,0) 2px),
    radial-gradient(1px 1px at 210px 190px, rgba(255,255,255,.16) 0, rgba(255,255,255,0) 2px),
    radial-gradient(1px 1px at 90px 170px, rgba(255,149,0,.16) 0, rgba(255,149,0,0) 3px);
  background-size: 320px 320px;
}
@keyframes starDrift{
  from{ transform: translate3d(0,0,0); }
  to{ transform: translate3d(220px,-260px,0); }
}

/* modal scroll support (KVKK long text, etc.) */
.dialog{ max-height:86vh; display:flex; flex-direction:column; }
.dialog .bd{ overflow:auto; max-height:calc(86vh - 66px); }

/* welcome popup layout */
.welcome-grid{ display:grid; grid-template-columns: 1fr 1.35fr; gap:16px; align-items:center; }
.welcome-mascot{
  width:100%; aspect-ratio: 1 / 1;
  border-radius: 22px;
  background: radial-gradient(220px 220px at 50% 30%, rgba(255,149,0,.22), rgba(0,0,0,0) 60%),
              linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  border:1px solid rgba(255,255,255,.10);
  display:flex; align-items:center; justify-content:center;
  overflow:hidden;
}
.welcome-mascot img{ width:86%; height:auto; filter: drop-shadow(0 18px 22px rgba(0,0,0,.45)); }
.welcome-ul{ margin:10px 0 0; padding-left: 18px; color: rgba(255,255,255,.78); }
.welcome-ul li{ margin: 8px 0; }
.welcome-actions{ display:flex; flex-wrap:wrap; gap:10px; margin-top:14px; }
@media (max-width:980px){
  .welcome-grid{ grid-template-columns: 1fr; }
  .welcome-mascot{ max-width: 320px; margin: 0 auto; }
}

/* [removed conflicting toTop rule] */

@media (prefers-reduced-motion: reduce){ .space-bg::before,.space-bg::after{ animation:none; } }
/* [removed conflicting toTop rule] */

.chipRow{display:flex;flex-wrap:wrap;gap:10px;margin-top:12px}

/* =============================================
   v19 — Visual & Interaction Improvements
   Goals: scroll-reveal, micro-animations, 
   stat counters, enhanced hover states,
   improved gradients, glassmorphism polish
   ============================================= */

/* Scroll Reveal */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .55s cubic-bezier(.22,1,.36,1), transform .55s cubic-bezier(.22,1,.36,1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: .08s }
.reveal-delay-2 { transition-delay: .16s }
.reveal-delay-3 { transition-delay: .24s }
.reveal-delay-4 { transition-delay: .32s }

/* Card hover lift */
.card:not(.hero-left):not(.features-card):not(.qr-card) {
  transition: transform .22s cubic-bezier(.22,1,.36,1), box-shadow .22s cubic-bezier(.22,1,.36,1), border-color .22s ease;
}
.card:not(.hero-left):not(.features-card):not(.qr-card):hover {
  transform: translateY(-3px);
  box-shadow: 0 28px 80px rgba(0,0,0,.62), 0 0 0 1px rgba(255,149,0,.08);
  border-color: rgba(255,149,0,.18);
}
.mini-card {
  transition: transform .2s cubic-bezier(.22,1,.36,1), border-color .2s ease, background .2s ease;
}
.mini-card:hover {
  transform: translateY(-2px);
  border-color: rgba(255,149,0,.22);
  background: rgba(255,149,0,.05);
}

/* Enhanced ico glow on mini-card hover */
.mini-card:hover .ico {
  background: rgba(255,149,0,.14);
  border-color: rgba(255,149,0,.32);
  box-shadow: 0 0 14px rgba(255,149,0,.18);
  transition: background .2s ease, box-shadow .2s ease;
}

/* Feat-big hover */
.feat-big {
  transition: transform .22s cubic-bezier(.22,1,.36,1), border-color .22s ease, box-shadow .22s ease;
}
.feat-big:hover {
  transform: translateY(-3px);
  border-color: rgba(255,149,0,.20);
  box-shadow: 0 18px 60px rgba(0,0,0,.45), 0 0 0 1px rgba(255,149,0,.10);
}
.feat-big:hover .spark {
  background:
    radial-gradient(240px 80px at 22% 10%, rgba(255,149,0,.28), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  border-color: rgba(255,149,0,.22);
  transition: all .3s ease;
}

/* Stat counter section */
.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 8px;
  margin-bottom: 16px;
}
.stat-card {
  border-radius: var(--r2);
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  border: 1px solid rgba(255,255,255,.10);
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  position: relative;
  overflow: hidden;
  transition: transform .22s cubic-bezier(.22,1,.36,1), border-color .22s ease;
}
.stat-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255,149,0,.22);
}
.stat-card::before {
  content: "";
  position: absolute;
  top: -40px; right: -40px;
  width: 120px; height: 120px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255,149,0,.14), transparent 72%);
  pointer-events: none;
}
.stat-number {
  font-family: var(--fontHead);
  font-size: 44px;
  font-weight: 900;
  letter-spacing: -2px;
  line-height: 1;
  color: var(--text);
}
.stat-number .accent { color: var(--accent) }
.stat-label {
  font-size: 14px;
  font-weight: 700;
  color: var(--muted);
  line-height: 1.4;
}
.stat-desc {
  font-size: 12px;
  font-weight: 650;
  color: var(--muted2);
  line-height: 1.5;
  margin-top: 4px;
}
@media (max-width: 640px) {
  .stats-row { grid-template-columns: 1fr 1fr; }
  .stat-number { font-size: 34px; }
}
@media (max-width: 380px) {
  .stats-row { grid-template-columns: 1fr; }
}

/* Enhanced button shine effect */
.btn.primary {
  position: relative;
  overflow: hidden;
}
.btn.primary::after {
  content: "";
  position: absolute;
  top: 0; left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.18), transparent);
  transform: skewX(-15deg);
  transition: left .6s ease;
  pointer-events: none;
}
.btn.primary:hover::after {
  left: 160%;
}

/* Enhanced topbar border bottom glow */
.topbar::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,149,0,.25) 40%, rgba(255,149,0,.25) 60%, transparent);
  pointer-events: none;
}

/* Hero title gradient text enhancement */
.hero-title .accent {
  background: linear-gradient(135deg, #ff9500 0%, #ffb347 50%, #ff9500 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Plan card highlight */
.card.plan[data-plan] {
  transition: transform .22s cubic-bezier(.22,1,.36,1), border-color .22s ease, box-shadow .22s ease;
}
.card.plan:has(.chip.pop):hover {
  border-color: rgba(255,149,0,.35);
  box-shadow: 0 28px 80px rgba(0,0,0,.55), 0 0 0 1px rgba(255,149,0,.15), 0 0 40px rgba(255,149,0,.08);
}

/* Testimonial card hover */
.tcard {
  transition: transform .22s cubic-bezier(.22,1,.36,1), border-color .22s ease;
}
.tcard:hover {
  transform: translateY(-3px);
  border-color: rgba(255,149,0,.18);
}

/* FAQ open state style enhancement */
.qa.open {
  border-color: rgba(255,149,0,.22);
  background: rgba(255,149,0,.04);
}
.qa {
  transition: border-color .2s ease, background .2s ease;
}

/* Ambient noise grain overlay */
.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9998;
  opacity: .018;
  will-change: auto;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 128px;
}

/* Glowing accent dot enhancement */
.dot {
  animation: dotPulse 2.4s ease-in-out infinite;
}
@keyframes dotPulse {
  0%, 100% { opacity: 0.7; }
  50% { opacity: 1; }
}

/* Section title underline accent */
.sec-title {
  position: relative;
  display: inline-block;
}
.sec-title::after {
  content: "";
  position: absolute;
  left: 0; bottom: -6px;
  width: 36px; height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), rgba(255,149,0,.3));
}

/* Back to top button glow *//* [removed conflicting toTop rule] */

/* Input focus glow */
.inp:focus, .date:focus, .dd-search:focus {
  border-color: rgba(255,149,0,.45) !important;
  box-shadow: 0 0 0 4px rgba(255,149,0,.10) !important;
  transition: border-color .15s ease, box-shadow .15s ease;
}

/* Footer link hover underline */
.ft-links a {
  position: relative;
  display: inline-block;
  transition: color .15s ease;
}
.ft-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 1px;
  background: var(--accent);
  transition: width .2s ease;
}
.ft-links a:hover::after { width: 100%; }

/* Progress bar in stat cards */
.stat-bar {
  height: 3px;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  margin-top: 8px;
  overflow: hidden;
  position: relative;
}
.stat-bar-fill {
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), rgba(255,149,0,.5));
  width: 0;
  transition: width 1.4s cubic-bezier(.22,1,.36,1);
}
.stat-card.counted .stat-bar-fill {
  width: var(--bar-width, 75%);
}

/* Smooth navigation active state */
.nav a.active {
  color: var(--accent);
  background: rgba(255,149,0,.07);
}

/* Responsive nav active for desktop */
@media (max-width: 980px) {
  .stats-row { grid-template-columns: 1fr 1fr; }
}

/* ===== Contact section fix ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 640px) {
  .contact-grid { grid-template-columns: 1fr; }
}
.card.mini {
  padding: 20px;
  border-radius: var(--r2);
}
.mini-top {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.mini-ic {
  font-size: 26px;
  line-height: 1;
  flex: 0 0 auto;
  margin-top: 2px;
  width: 44px; height: 44px;
  border-radius: 14px;
  background: rgba(255,149,0,.08);
  border: 1px solid rgba(255,149,0,.18);
  display: grid;
  place-items: center;
}
.mini-tt {
  font-weight: 950;
  font-size: 15px;
  margin-bottom: 6px;
}
.mini-desc {
  color: rgba(233,237,246,.68);
  font-weight: 650;
  font-size: 13px;
  line-height: 1.55;
}

/* ===== toTop fix: single clean definition ===== */
#toTop {
  position: fixed;
  right: 22px;
  bottom: calc(22px + env(safe-area-inset-bottom));
  width: 48px;
  height: 48px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(15,17,22,.88);

  color: var(--accent);
  display: grid;
  place-items: center;
  cursor: pointer;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transform: translateY(6px);
  transition: opacity .25s ease, transform .25s ease, background .2s ease, box-shadow .2s ease;
  box-shadow: 0 8px 32px rgba(0,0,0,.5);
}
#toTop.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
#toTop:hover {
  transform: translateY(-3px);
  background: rgba(255,149,0,.15);
  border-color: rgba(255,149,0,.40);
  box-shadow: 0 0 28px rgba(255,149,0,.25), 0 10px 30px rgba(0,0,0,.4);
}

/* ===== Mobile header: hamburger ORDER fix ===== */
/* On mobile: Logo | [Giriş Yap] [Kayıt Ol] [☰] */
/* Better UX: Logo | [☰] [Giriş Yap] [Kayıt Ol] */
@media (max-width: 980px) {
  .actions {
    flex-direction: row-reverse; /* Kayıt Ol | Giriş Yap | ☰ */
  }
  /* Actually: keep natural order but move mnav-btn to left of actions */
  /* Use order property instead */
  .mnav-btn { order: -1; }
}
@media (max-width: 560px) {
  /* Hide ghost "Giriş Yap" on very small screens, keep Kayıt Ol + hamburger */
  .actions .btn.ghost { display: none; }
  .actions {
    flex-direction: row;
    gap: 8px;
  }
  .mnav-btn { order: 0; }
}


/* ═══════════════════════════════════════════
   HAMBURGER MENU — Smooth animated version
   ═══════════════════════════════════════════ */

/* Backdrop */
.mnav-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 996;
  background: rgba(0,0,0,.50);
  opacity: 0;
  transition: opacity .28s ease;
}
.mnav-backdrop.show {
  display: block;
  opacity: 1;
}

/* Hamburger button */
.mnav-btn {
  display: none;
  width: 42px; height: 42px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.05);
  color: rgba(233,237,246,.90);
  cursor: pointer;
  place-items: center;
  align-items: center;
  justify-content: center;
  transition: background .15s ease, border-color .15s ease;
  position: relative;
  z-index: 1001;
}
.mnav-btn:hover {
  background: rgba(255,255,255,.09);
  border-color: rgba(255,149,0,.25);
}
@media (max-width: 980px) {
  .mnav-btn { display: flex; }
}

/* 3-line → X icon */
.hbr-icon {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 18px;
}
.hbr-line {
  display: block;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transform-origin: center;
  transition: transform .28s cubic-bezier(.4,0,.2,1),
              opacity   .28s ease,
              width     .28s ease;
}
.hbr-l1 { width: 18px; }
.hbr-l2 { width: 12px; }
.hbr-l3 { width: 18px; }

/* Open state → X */
.mnav-btn.open .hbr-l1 {
  transform: translateY(7px) rotate(45deg);
  width: 18px;
}
.mnav-btn.open .hbr-l2 {
  opacity: 0;
  transform: scaleX(0);
}
.mnav-btn.open .hbr-l3 {
  transform: translateY(-7px) rotate(-45deg);
  width: 18px;
}

/* Nav panel — gizle, sadece mobilden aç */
.mnav { display: none; }

@media (max-width: 980px) {
  .mnav {
    display: block;
    position: fixed;
    left: 0; right: 0;
    top: calc(var(--topbarH) + env(safe-area-inset-top));
    z-index: 998;
    background: rgba(11,13,17,.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255,255,255,.08);
    border-bottom: 1px solid rgba(255,255,255,.06);
    box-shadow: 0 32px 80px rgba(0,0,0,.65);
    padding: 10px 0 18px;
    max-height: calc(100dvh - var(--topbarH) - env(safe-area-inset-top));
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    /* Animation */
    opacity: 0;
    transform: translateY(-12px);
    pointer-events: none;
    transition: opacity .28s cubic-bezier(.4,0,.2,1),
                transform .28s cubic-bezier(.4,0,.2,1);
    /* Keep in DOM for animation (don't use display:none) */
    visibility: hidden;
  }
  .mnav.show {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    visibility: visible;
  }
}
@supports not (height: 100dvh) {
  @media (max-width: 980px) {
    .mnav { max-height: calc(100vh - var(--topbarH) - env(safe-area-inset-top)); }
  }
}

/* Nav links inside panel */
.mnav .wrap {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 4px 14px !important;
}
.mnav a {
  display: flex;
  align-items: center;
  padding: 13px 14px;
  border-radius: 14px;
  font-weight: 800;
  font-size: 15px;
  color: rgba(233,237,246,.88);
  border: 1px solid transparent;
  transition: background .15s ease, border-color .15s ease, color .15s ease;
  /* Stagger animation */
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity .22s ease, transform .22s ease,
              background .15s ease, border-color .15s ease;
}
.mnav.show a {
  opacity: 1;
  transform: translateX(0);
}
.mnav.show a:nth-child(1) { transition-delay: .05s }
.mnav.show a:nth-child(2) { transition-delay: .09s }
.mnav.show a:nth-child(3) { transition-delay: .13s }
.mnav.show a:nth-child(4) { transition-delay: .17s }
.mnav.show a:nth-child(5) { transition-delay: .21s }
.mnav.show a:nth-child(6) { transition-delay: .25s }
.mnav.show a:nth-child(7) { transition-delay: .29s }
.mnav a:hover {
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.08);
  color: rgba(233,237,246,1);
}
/* Divider between groups */
.mnav a:nth-child(4) {
  border-bottom: 1px solid rgba(255,255,255,.06);
  border-radius: 14px 14px 0 0;
  margin-bottom: 2px;
}


/* Brand logo */
.brand-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  padding: 4px 2px;
  border-radius: 10px;
  transition: opacity .15s ease;
}
.brand-logo:hover { opacity: .85; }
.brand-logo svg { display: block; }

/* ═══════════════════════════════
   LANGUAGE PICKER
   ═══════════════════════════════ */
.lang-picker {
  position: relative;
  margin-right: 6px;
}
.lang-btn {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 7px 10px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05);
  color: rgba(233,237,246,.88);
  font-weight: 750;
  font-size: 13px;
  cursor: pointer;
  transition: background .15s, border-color .15s;
  white-space: nowrap;
}
.lang-btn:hover {
  background: rgba(255,255,255,.09);
  border-color: rgba(255,149,0,.25);
}
.lang-flag { font-size: 15px; line-height: 1; }
.lang-code { font-weight: 800; letter-spacing: .03em; }
.lang-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 140px;
  background: rgba(11,13,17,.96);

  border: 1px solid rgba(255,255,255,.10);
  border-radius: 14px;
  padding: 6px;
  box-shadow: 0 20px 60px rgba(0,0,0,.55);
  z-index: 1300;
  opacity: 0;
  transform: translateY(-6px);
  pointer-events: none;
  visibility: hidden;
  transition: opacity .18s ease, transform .18s ease;
}
.lang-picker.open .lang-menu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  visibility: visible;
}
.lang-opt {
  display: flex;
  align-items: center;
  gap: 9px;
  width: 100%;
  padding: 9px 12px;
  border-radius: 10px;
  border: 0;
  background: transparent;
  color: rgba(233,237,246,.85);
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  text-align: left;
  transition: background .12s;
}
.lang-opt:hover { background: rgba(255,255,255,.07); }
.lang-opt.active {
  color: var(--accent);
  background: rgba(255,149,0,.08);
}
@media (max-width: 560px) {
  .lang-code { display: none; }
  .lang-btn { padding: 7px 8px; }
}


/* ═══════════════════════════════════════════════════════
   INNER PAGES — Ortak stiller
   ═══════════════════════════════════════════════════════ */

/* Hero banner */
.inner-hero {
  background: linear-gradient(135deg, rgba(255,149,0,.08) 0%, rgba(90,160,255,.06) 100%);
  border-bottom: 1px solid rgba(255,255,255,.07);
  padding: 48px 0 40px;
  margin-top: var(--topbarH, 74px);
}
.inner-hero-content {
  display: flex;
  align-items: center;
  gap: 20px;
}
.inner-hero-icon {
  font-size: 48px;
  line-height: 1;
  flex-shrink: 0;
}
.inner-hero-title {
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 950;
  margin: 6px 0 0;
  color: #e9edf6;
}
.inner-hero-sub {
  color: rgba(233,237,246,.60);
  font-size: 16px;
  margin: 6px 0 0;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: rgba(233,237,246,.50);
  margin-bottom: 4px;
}
.breadcrumb a { color: var(--accent); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb-sep { opacity: .5; }

/* Section wrapper for inner pages */
.section { padding: 40px 0 64px; }

/* 2-col layout: main + sidebar */
.inner-grid {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 24px;
  align-items: start;
}
@media (max-width: 860px) {
  .inner-grid { grid-template-columns: 1fr; }
  .inner-side { order: -1; }
}

/* 3-col cards */
.cards-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 760px) {
  .cards-3 { grid-template-columns: 1fr; }
}

/* Card variants */
.card.soft { background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.07); }
.card.pad  { padding: 24px; border-radius: 20px; }
.card.soft h2 { font-size: 18px; font-weight: 800; margin: 0 0 12px; color: #e9edf6; }
.card.soft h3 { font-size: 15px; font-weight: 800; margin: 0 0 8px; color: #e9edf6; }
.card.soft p  { font-size: 14px; color: rgba(233,237,246,.68); line-height: 1.65; margin: 0; }

/* Sidebar components */
.side-title {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(233,237,246,.40);
  margin-bottom: 10px;
}
.side-row {
  display: flex;
  justify-content: space-between;
  padding: 9px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
  font-size: 13px;
  gap: 12px;
}
.side-row span:first-child { color: rgba(233,237,246,.50); flex-shrink: 0; }
.side-row span:last-child  { color: #e9edf6; font-weight: 700; text-align: right; }
.side-link {
  display: block;
  padding: 9px 12px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  color: rgba(233,237,246,.75);
  text-decoration: none;
  transition: background .12s, color .12s;
  margin: 2px 0;
}
.side-link:hover { background: rgba(255,255,255,.06); color: #e9edf6; }
.side-link.active { background: rgba(255,149,0,.10); color: var(--accent); }

/* Legal document */
.legal-doc h2 { font-size: 16px; margin: 24px 0 8px; }
.legal-doc h2:first-of-type { margin-top: 0; }
.legal-doc p, .legal-doc li { font-size: 14px; color: rgba(233,237,246,.68); line-height: 1.7; }
.legal-doc ul { padding-left: 20px; margin: 8px 0; }
.legal-doc li { margin: 4px 0; }
.legal-doc .link { color: var(--accent); text-decoration: none; }
.legal-doc .link:hover { text-decoration: underline; }
.legal-update { font-size: 12px; color: rgba(233,237,246,.35); margin: 0 0 20px; }

/* Stats mini */
.stat-mini { text-align: center; }
.stat-num { font-size: 28px; font-weight: 950; color: var(--accent); }
.stat-lbl { font-size: 12px; color: rgba(233,237,246,.55); margin-top: 4px; font-weight: 700; }

/* Contact items */
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.contact-item:last-child { border-bottom: none; }
.contact-ic { font-size: 20px; flex-shrink: 0; margin-top: 2px; }
.contact-lbl { font-size: 11px; color: rgba(233,237,246,.40); font-weight: 700; text-transform: uppercase; letter-spacing: .06em; }
.contact-val { font-size: 14px; font-weight: 700; color: #e9edf6; text-decoration: none; display: block; margin-top: 2px; }
a.contact-val:hover { color: var(--accent); }

/* Contact form */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-full { grid-column: 1 / -1; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-label { font-size: 13px; font-weight: 700; color: rgba(233,237,246,.70); }
.form-input {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 12px;
  padding: 11px 14px;
  color: #e9edf6;
  font-size: 14px;
  font-family: inherit;
  outline: none;
  transition: border-color .15s;
  resize: vertical;
}
.form-input:focus { border-color: rgba(255,149,0,.50); }
.form-input option { background: #0f1116; }
@media (max-width: 560px) { .form-grid { grid-template-columns: 1fr; } }

/* Support page */
.support-card { text-decoration: none; transition: transform .15s, border-color .15s; display: block; }
.support-card:hover { transform: translateY(-3px); border-color: rgba(255,149,0,.25); }
.support-ic { font-size: 32px; margin-bottom: 12px; }
.support-card h3 { margin: 0 0 6px; }
.btn-link { color: var(--accent); font-size: 13px; font-weight: 700; margin-top: 12px; display: block; }

.support-topics { display: flex; flex-direction: column; gap: 4px; }
.support-topic { border-radius: 12px; overflow: hidden; border: 1px solid rgba(255,255,255,.07); }
.topic-head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
  color: rgba(233,237,246,.88);
  transition: background .12s;
  user-select: none;
}
.topic-head:hover { background: rgba(255,255,255,.04); }
.topic-ic { font-size: 18px; flex-shrink: 0; }
.topic-arrow { margin-left: auto; color: rgba(233,237,246,.40); font-size: 18px; }
.topic-body { display: none; padding: 0 16px 14px 46px; }
.topic-body p { font-size: 13px; color: rgba(233,237,246,.65); margin: 0; line-height: 1.6; }
.support-topic.open .topic-body { display: block; }
.support-topic.open { border-color: rgba(255,149,0,.20); background: rgba(255,149,0,.03); }

/* FAQ */
.faq-group { margin-bottom: 32px; }
.faq-group-title {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255,149,0,.20);
}
.faq-item {
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  cursor: pointer;
  font-size: 15px;
  font-weight: 700;
  color: rgba(233,237,246,.88);
  user-select: none;
  gap: 12px;
}
.faq-q:hover { color: #e9edf6; }
.faq-arrow { color: rgba(233,237,246,.35); font-size: 18px; flex-shrink: 0; transition: transform .2s; }
.faq-a { display: none; padding: 0 0 16px; font-size: 14px; color: rgba(233,237,246,.65); line-height: 1.7; }
.faq-item.open .faq-a { display: block; }
.faq-item.open .faq-q { color: var(--accent); }
.link { color: var(--accent); text-decoration: none; }
.link:hover { text-decoration: underline; }

/* App download page */
.app-download-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
@media (max-width: 760px) { .app-download-grid { grid-template-columns: 1fr; } }
.app-store-card { text-align: center; }
.app-store-icon { font-size: 52px; margin-bottom: 16px; }
.app-badge-note { font-size: 12px; color: rgba(233,237,246,.35); margin-top: 10px; }
.app-features-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
@media (max-width: 760px) { .app-features-grid { grid-template-columns: 1fr 1fr; } }
.app-feature { display: flex; align-items: flex-start; gap: 12px; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.06); }
.app-feature > span { font-size: 22px; flex-shrink: 0; }
.app-feature strong { display: block; font-size: 14px; font-weight: 800; margin-bottom: 2px; }
.app-feature p { font-size: 13px; color: rgba(233,237,246,.55); margin: 0; }

/* Trust badges */
.trust-icon { font-size: 32px; margin-bottom: 12px; }
.badge-row { display: flex; align-items: center; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,.06); font-size: 13px; }
.badge { padding: 3px 10px; border-radius: 99px; font-size: 12px; font-weight: 700; }
.badge.bronze { background: rgba(180,100,50,.15); color: #cd7f32; }
.badge.silver { background: rgba(180,180,180,.12); color: #c0c0c0; }
.badge.gold   { background: rgba(255,200,0,.12); color: #ffd700; }

/* Info table */
.info-table { border: 1px solid rgba(255,255,255,.08); border-radius: 14px; overflow: hidden; }
.info-row { display: flex; padding: 13px 16px; border-bottom: 1px solid rgba(255,255,255,.06); gap: 16px; }
.info-row:last-child { border-bottom: none; }
.info-row span:first-child { color: rgba(233,237,246,.45); font-size: 13px; min-width: 140px; }
.info-row span:last-child  { color: #e9edf6; font-size: 13px; font-weight: 700; }

/* Doc placeholder */
.doc-placeholder {
  background: rgba(255,255,255,.03);
  border: 2px dashed rgba(255,255,255,.10);
  border-radius: 14px;
  padding: 40px;
  text-align: center;
  color: rgba(233,237,246,.40);
}
.doc-placeholder span { font-size: 36px; display: block; margin-bottom: 10px; }
.doc-placeholder small { font-size: 11px; opacity: .6; font-family: monospace; }

/* btn-link and block helpers */
.btn.block { display: block; width: 100%; text-align: center; }

/* ═══════════════════════════════════════════════
   MOBİL MODAL & POPUP DÜZELTMELERİ
   ═══════════════════════════════════════════════ */

/* Modal her zaman en üstte */


/* Dialog mobilde tam ekran alt sheet gibi */
@media (max-width: 600px) {
  .modal {
    align-items: flex-end !important;
    padding: 0 !important;
  }
  .dialog {
    width: 100% !important;
    max-height: 92dvh;
    border-radius: 24px 24px 0 0 !important;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .dialog.wide { width: 100% !important; }

  /* Kapat butonu her zaman görünür ve büyük */
  .xbtn {
    width: 44px !important;
    height: 44px !important;
    flex-shrink: 0;
    background: rgba(255,255,255,.08) !important;
    border-radius: 12px !important;
  }

  /* Başlık bar sticky kalır */
  .dialog .hd {
    position: sticky;
    top: 0;
    z-index: 2;
    background: rgba(12,14,18,.99);
    padding: 16px !important;
  }

  /* Drag indicator */
  .dialog .hd::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 36px;
    height: 4px;
    border-radius: 2px;
    background: rgba(255,255,255,.18);
  }

  /* İçerik padding */
  .dialog .bd {
    padding: 16px !important;
  }

  /* row2 grid tek sütun */
  .row2 { grid-template-columns: 1fr !important; }
}



/* ═══════════════════════════════════════════════
   MOBİL MODAL KESİN DÜZELTME
   ═══════════════════════════════════════════════ */

/* Modal mutlak en üst katman — hiçbir şey üstüne giremez */
.modal.show {
  display: flex !important;
  z-index: 9999 !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

/* Topbar modal açıkken görünmez olsun (üstüne biniyor) */


/* Kapat butonu her zaman görünür */
.dialog .hd {
  position: sticky !important;
  top: 0 !important;
  z-index: 10 !important;
  background: rgba(12,14,18,.98) !important;
}
.xbtn {
  flex-shrink: 0 !important;
  min-width: 44px !important;
  min-height: 44px !important;
  display: grid !important;
  place-items: center !important;
}

/* Mobilde bottom sheet */
@media (max-width: 600px) {
  .modal.show {
    align-items: flex-end !important;
    padding: 0 !important;
  }
  .dialog {
    width: 100% !important;
    max-height: 88svh !important;
    border-radius: 22px 22px 0 0 !important;
    overflow-y: auto !important;
  }
  /* Drag handle */
  .dialog .hd {
    padding-top: 20px !important;
  }
  .dialog .hd::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 4px;
    border-radius: 2px;
    background: rgba(255,255,255,.15);
  }
}


/* ════════════════════════════════════════════════════
   iPhone MOCKUP — Uygulama Ekranları
   ════════════════════════════════════════════════════ */

.app-section-grid {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 900px) {
  .app-section-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* Telefon sütunu */
.phone-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

/* Dış kasa */
.phone-device-outer {
  position: relative;
  width: 240px;
  height: 520px;
  background: linear-gradient(170deg, #2c2c2e 0%, #1c1c1e 100%);
  border-radius: 50px;
  border: 1.5px solid rgba(255,255,255,.18);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.14),
    inset 0 -1px 0 rgba(0,0,0,.4),
    0 0 0 1px rgba(0,0,0,.7),
    0 32px 72px rgba(0,0,0,.65),
    0 0 60px rgba(255,149,0,.06);
  overflow: visible;
}
/* Sol ses butonları */
.phone-device-outer::before {
  content:'';
  position:absolute;
  left:-4px; top:88px;
  width:4px; height:28px;
  background:rgba(255,255,255,.13);
  border-radius:3px 0 0 3px;
  box-shadow: 0 44px 0 rgba(255,255,255,.13), 0 80px 0 rgba(255,255,255,.13);
}
/* Sağ güç butonu */
.phone-device-outer::after {
  content:'';
  position:absolute;
  right:-4px; top:130px;
  width:4px; height:52px;
  background:rgba(255,255,255,.13);
  border-radius:0 3px 3px 0;
}

/* Ekran — kasa içinde */
.phone-device-screen {
  position: absolute;
  top: 3px; left: 3px; right: 3px; bottom: 3px;
  border-radius: 47px;
  overflow: hidden;
  background: #f2f2f7;
}

/* Dynamic Island */
.phone-island {
  position: absolute;
  top: 13px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 30px;
  background: #000;
  border-radius: 18px;
  z-index: 20;
}

/* Ekran görselleri */
.shot-img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
  opacity: 0;
  transition: opacity .4s ease;
}
.shot-img.active { opacity: 1; }

/* Görsel yokken placeholder */
.shot-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background: #f2f2f7;
  padding: 20px;
  text-align: center;
}
.shot-ph-logo {
  font-size: 26px;
  font-weight: 900;
  color: #1c1c1e;
  font-family: 'Sora', sans-serif;
  letter-spacing: -1px;
}
.shot-ph-logo span { color: #ff9500; }
.shot-ph-sub { font-size: 11px; color: #aaa; font-family: monospace; line-height: 1.6; }

/* Home indicator */
.phone-home-bar {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 5px;
  background: rgba(0,0,0,.22);
  border-radius: 3px;
  z-index: 20;
}

/* Dots indicator */
.shot-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}
.shot-dot {
  width: 8px; height: 8px;
  border-radius: 99px;
  background: rgba(233,237,246,.22);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: width .22s ease, background .22s ease;
}
.shot-dot.active { width: 26px; background: var(--accent); }

/* Prev/Next nav */
.shot-nav {
  display: flex;
  align-items: center;
  gap: 14px;
}
.shot-counter {
  font-size: 12px;
  font-weight: 700;
  color: rgba(233,237,246,.40);
  min-width: 32px;
  text-align: center;
}
.icon-btn {
  width: 40px; height: 40px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  color: rgba(233,237,246,.90);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background .12s;
}
.icon-btn:hover { background: rgba(255,255,255,.09); }

/* Sağ: özellik listesi */
.app-info-col {}
.app-features-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 28px;
}
.app-feat {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.app-feat-ic { font-size: 26px; flex-shrink: 0; margin-top: 2px; }
.app-feat strong { display: block; font-size: 15px; font-weight: 800; margin-bottom: 3px; color: #e9edf6; }
.app-feat p { font-size: 13px; color: rgba(233,237,246,.58); margin: 0; line-height: 1.55; }

/* İndirme butonları */
.dl-btns-row {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.dl-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 12px 22px;
  border-radius: 14px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  color: #e9edf6;
  font-weight: 800;
  font-size: 14px;
  text-decoration: none;
  transition: background .15s, border-color .15s, transform .15s;
}
.dl-btn:hover {
  background: rgba(255,149,0,.12);
  border-color: rgba(255,149,0,.30);
  transform: translateY(-2px);
}

/* QR kutusu */
.qr-card {}
.qr-card-inner { display: flex; align-items: center; gap: 16px; }
.qr-box {
  width: 70px; height: 70px;
  flex-shrink: 0;
  background: #fff;
  border-radius: 12px;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.qr-box img { width: 100%; height: 100%; object-fit: contain; }
.qr-ph { font-size: 10px; color: #aaa; text-align: center; }
.qr-card strong { display: block; font-size: 14px; font-weight: 800; margin-bottom: 4px; }
.qr-card p { font-size: 13px; color: rgba(233,237,246,.58); margin: 0; }

/* ── Toast tipleri ── */
.toast.toast-error {
  background: rgba(185,28,28,.96) !important;
  border-color: rgba(255,100,100,.50) !important;
  color: #fff !important;
}
.toast.toast-error::before { background: rgba(255,80,80,.20) !important; border-color: rgba(255,80,80,.60) !important; }
.toast.toast-error::after  { background: #ff4444 !important; box-shadow: 0 0 14px rgba(255,80,80,.8) !important; }
.toast.toast-ok {
  background: rgba(21,128,61,.96) !important;
  border-color: rgba(80,255,120,.40) !important;
  color: #fff !important;
}
.toast.toast-ok::before { background: rgba(80,255,120,.15) !important; border-color: rgba(80,255,120,.60) !important; }
.toast.toast-ok::after  { background: #22c55e !important; box-shadow: 0 0 14px rgba(80,255,120,.8) !important; }

/* ── Choice toggle aktif state düzeltmesi ── */
.choice {
  cursor: pointer;
  user-select: none;
  -webkit-user-select: none;
}
.choice:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* ── Dil Seçici ─────────────────────────────────────────── */
.lang-switcher{display:flex;gap:4px;align-items:center}
.lang-btn{background:rgba(255,255,255,.06);border:1px solid rgba(255,255,255,.08);color:rgba(233,237,246,.5);border-radius:6px;padding:4px 8px;font-size:11px;font-weight:800;cursor:pointer;transition:.15s;letter-spacing:.3px}
.lang-btn.on{background:rgba(255,153,0,.12);border-color:rgba(255,153,0,.3);color:var(--accent)}
.lang-btn:hover:not(.on){background:rgba(255,255,255,.10);color:rgba(233,237,246,.8)}

/* ── Hesabım nav link ──────────────────────────────────── */
.nav-account-link{display:flex;align-items:center;gap:6px;font-size:13px;font-weight:700;color:rgba(233,237,246,.8);text-decoration:none;padding:6px 12px;border-radius:8px;background:rgba(255,153,0,.08);border:1px solid rgba(255,153,0,.2);transition:.2s}
.nav-account-link:hover{background:rgba(255,153,0,.15);color:var(--accent)}

/* ── OTP Kutucuklar ───────────────────────────────────── */
#otpInputs{display:flex;gap:10px;justify-content:center;margin:16px 0}
#otpInputs input{width:44px;height:54px;text-align:center;font-size:22px;font-weight:900;background:rgba(255,255,255,.07);border:1.5px solid rgba(255,255,255,.12);border-radius:12px;color:rgba(233,237,246,.95);outline:none;transition:.2s;caret-color:var(--accent)}
#otpInputs input:focus{border-color:rgba(255,153,0,.6);background:rgba(255,153,0,.06);box-shadow:0 0 0 3px rgba(255,153,0,.12)}
#otpInputs input.filled{border-color:rgba(255,153,0,.4);background:rgba(255,153,0,.08)}

/* ── Hero Media Dot ───────────────────────────────────── */
.hero-dot{width:8px;height:8px;border-radius:999px;background:rgba(255,255,255,.2);border:none;cursor:pointer;transition:.2s;padding:0}
.hero-dot.active{background:var(--accent);width:20px}

/* ── Telefon alan ─────────────────────────────────────── */
.phone-field-wrap{display:flex;align-items:center;background:rgba(255,255,255,.06);border:1px solid rgba(255,255,255,.10);border-radius:12px;overflow:hidden;transition:.2s}
.phone-field-wrap:focus-within{border-color:rgba(255,153,0,.5);background:rgba(255,153,0,.05)}
.phone-prefix{padding:0 12px;font-size:14px;font-weight:800;color:rgba(233,237,246,.45);border-right:1px solid rgba(255,255,255,.08);white-space:nowrap;user-select:none;flex-shrink:0}
.phone-inp{background:transparent!important;border:none!important;border-radius:0!important;flex:1;padding:13px 14px!important}
.phone-inp:focus{box-shadow:none!important}

/* ── İletişim form sonuç ────────────────────────────────── */
.contact-ok{background:rgba(21,128,61,.12);border:1px solid rgba(21,128,61,.3);color:#4ade80;border-radius:10px;padding:12px 16px;font-size:14px;font-weight:600}
.contact-err{background:rgba(185,28,28,.12);border:1px solid rgba(185,28,28,.3);color:#f87171;border-radius:10px;padding:12px 16px;font-size:14px;font-weight:600}

/* ── Payment & Account responsive ──────────────────────── */
@media(max-width:700px){.payment-grid{grid-template-columns:1fr}}
@media(max-width:600px){.account-grid{grid-template-columns:1fr}}
