:root{
  --bg: #0b0f1a;
  --card: rgba(255,255,255,.06);
  --card2: rgba(255,255,255,.08);
  --text: rgba(255,255,255,.92);
  --muted: rgba(255,255,255,.68);
  --line: rgba(255,255,255,.12);
  --accent: #5eead4;
  --accent2: #60a5fa;
  --shadow: 0 18px 60px rgba(0,0,0,.35);
  --radius: 18px;
  --radius2: 26px;
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", "Apple Color Emoji","Segoe UI Emoji";
  background:
    radial-gradient(900px 500px at 20% -10%, rgba(94,234,212,.18), transparent 60%),
    radial-gradient(900px 500px at 80% 0%, rgba(96,165,250,.16), transparent 60%),
    var(--bg);
  color: var(--text);
  line-height: 1.55;
}

img{ max-width:100%; display:block; }
a{ color: inherit; text-decoration: none; }
a:focus-visible, button:focus-visible{ outline: 2px solid var(--accent); outline-offset: 2px; }
strong{ color: rgba(255,255,255,.96); }

.container{
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.skip-link{
  position:absolute;
  left:-999px;
  top: 10px;
  background:#fff;
  color:#000;
  padding:10px 12px;
  border-radius:10px;
}
.skip-link:focus{ left: 10px; z-index: 9999; }

/* Header */
.site-header{
  position: sticky;
  top:0;
  z-index: 50;
  backdrop-filter: blur(10px);
  background: rgba(11,15,26,.55);
  border-bottom: 1px solid var(--line);
}
.header-inner{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 0;
}

.brand{
  display:flex;
  align-items:center;
  gap: 12px;
  min-width: 220px;
}
.brand-mark{
  width: 38px;
  height: 38px;
  border-radius: 12px;
  object-fit: cover;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  display: block;
}
.brand-text{ display:flex; flex-direction:column; line-height:1.1; }
.brand-text small{ color: var(--muted); font-weight: 500; margin-top: 4px; }

.site-nav{
  display:flex;
  align-items:center;
  gap: 18px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--line);
}
.site-nav a{
  color: var(--muted);
  font-weight: 600;
  font-size: 14px;
  padding: 8px 10px;
  border-radius: 999px;
  transition: .2s ease;
}
.site-nav a:hover{
  color: var(--text);
  background: rgba(255,255,255,.06);
}

.header-cta{ display:flex; gap: 10px; align-items:center; }
/* Masaüstünde header "Ara" butonu gizli; WhatsApp kalır */
@media (min-width: 769px){
  .header-cta .btn-ghost{
    display: none !important;
  }
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 8px;
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 800;
  font-size: 14px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.04);
  transition: .2s ease;
  white-space: nowrap;
}
.btn:hover{ transform: translateY(-1px); }
.btn-primary{
  background: linear-gradient(135deg, rgba(94,234,212,.22), rgba(96,165,250,.22));
  border-color: rgba(255,255,255,.16);
}
.btn-ghost{ background: rgba(255,255,255,.03); }
.btn-soft{
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.14);
}

/* Mobile nav */
.nav-toggle{
  display:none;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.04);
}
.nav-toggle-lines{
  width: 18px;
  height: 2px;
  background: var(--text);
  display:block;
  margin: 0 auto;
  position: relative;
}
.nav-toggle-lines::before,
.nav-toggle-lines::after{
  content:"";
  position:absolute;
  left:0;
  width: 18px;
  height: 2px;
  background: var(--text);
}
.nav-toggle-lines::before{ top:-6px; }
.nav-toggle-lines::after{ top: 6px; }
.sr-only{ position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0,0,0,0); border:0; }

/* Hero */
.hero{
  position: relative;
  padding: 80px 0 40px;
}
.hero-bg{
  position:absolute;
  inset: 0;
  pointer-events:none;
  background:
    radial-gradient(700px 400px at 15% 20%, rgba(94,234,212,.10), transparent 60%),
    radial-gradient(700px 400px at 85% 30%, rgba(96,165,250,.10), transparent 60%);
  opacity:.9;
}
.hero-grid{
  position: relative;
  z-index: 2;
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 22px;
  align-items: start;
}
.badge{
  display:inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.04);
  color: var(--muted);
  font-weight: 700;
  font-size: 13px;
}
.hero h1{
  font-size: clamp(30px, 3.6vw, 52px);
  line-height: 1.05;
  margin: 14px 0 10px;
  letter-spacing: -0.7px;
}
.accent{ color: var(--accent); }
.lead{
  color: var(--muted);
  font-size: 16px;
  max-width: 60ch;
}
.hero-actions{
  display:flex;
  gap: 10px;
  margin-top: 16px;
}
.hero-pills{
  display:flex;
  flex-wrap:wrap;
  gap: 10px;
  margin-top: 18px;
}
.hero-pills span{
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,.78);
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--line);
}

.hero-card{
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  padding: 14px;
  border-radius: var(--radius2);
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.hero-image{
  aspect-ratio: 1 / 1;
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
}
.hero-image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 22px;
  display: block;
  border: 1px solid rgba(255,255,255,.12);
}
.profile-meta{
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.profile-meta span{ color: var(--muted); font-weight: 600; font-size: 14px; }

.quick-stats{
  margin-top: 20px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  padding: 0 0 0;
}
.stat{
  padding: 12px 16px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
}
.stat strong{ display: block; font-size: 16px; }
.stat span{ color: var(--muted); font-weight: 600; font-size: 13px; }

/* Sections */
.section{
  padding: 56px 0;
}
.section-alt{
  background: rgba(255,255,255,.02);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.section-grid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 22px;
  align-items: start;
}
.section h2{
  margin: 0 0 12px;
  font-size: 28px;
  letter-spacing: -0.3px;
}
.muted{ color: var(--muted); }

.checklist{
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  display:grid;
  gap: 10px;
}
.checklist li{
  padding-left: 28px;
  position: relative;
  color: rgba(255,255,255,.80);
  font-weight: 600;
}
.checklist li::before{
  content:"✓";
  position:absolute;
  left:0;
  top:0;
  color: var(--accent);
  font-weight: 900;
}

.info-card{
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  padding: 16px;
  box-shadow: var(--shadow);
}
.info-card h3{ margin: 0 0 10px; font-size: 18px; }
.info-row{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,.10);
}
.info-row:last-child{ border-bottom: 0; }
.info-row span{ color: var(--muted); font-weight: 700; font-size: 13px; }

.social{
  display:flex;
  flex-wrap:wrap;
  gap: 10px;
  margin-top: 12px;
}
.social a{
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 13px;
  color: rgba(255,255,255,.82);
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.03);
  transition: .2s ease;
}
.social a:hover{ background: rgba(255,255,255,.06); transform: translateY(-1px); }
.social-icon{ width: 18px; height: 18px; display: block; flex: 0 0 auto; }
.profile-socials{ justify-content: center; }

.section-head{
  display:flex;
  align-items:flex-end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 16px;
}
.section-sub{
  margin: 0;
  font-size: 13px;
  color: var(--muted);
  font-weight: 650;
  white-space: nowrap;
  max-width: 50%;
  text-align: right;
}

/* Cards */
.cards{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.card{
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  padding: 16px;
  box-shadow: var(--shadow);
}
.card h3{ margin: 0 0 8px; font-size: 18px; }
.card p{ margin: 0; color: var(--muted); }
.service-desc{
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 14px;
  line-height: 1.4;
  margin-bottom: 0;
}
.service-tags{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}
.service-tags span{
  display: inline-block;
  padding: 5px 10px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.04);
  color: rgba(255,255,255,.78);
  font-size: 12px;
  font-weight: 700;
}
.service-more{
  margin-top: 10px;
}
.service-more summary{
  font-size: 12px;
  color: var(--muted);
  font-weight: 700;
  cursor: pointer;
  list-style: none;
  transition: color .2s ease;
}
.service-more summary::-webkit-details-marker{ display: none; }
.service-more summary:hover{ color: rgba(255,255,255,.9); }
.service-more ul{
  margin: 6px 0 0;
  padding: 0 0 0 18px;
  color: rgba(255,255,255,.78);
  font-weight: 650;
  font-size: 13px;
}
.service-more li{ margin: 4px 0; }
.service-cta{
  display: inline-block;
  margin-top: 12px;
  font-size: 13px;
  font-weight: 800;
  color: var(--accent);
  text-decoration: none;
  transition: transform .2s ease, color .2s ease;
}
.service-cta:hover{ color: var(--accent2); transform: translateX(4px); }

/* Services (Hizmetler): desktop grid, mobilde yatay swipe */
.services-swiper{
  overflow: visible;
}
.services-track{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.service-card,
.service-card-modern{
  display: flex;
  flex-direction: column;
  padding: 26px 24px;
  min-height: 280px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  box-shadow: var(--shadow);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease, background .25s ease;
}
.service-card-modern:hover,
.service-card:hover{
  transform: translateY(-4px);
  border-color: rgba(94,234,212,.25);
  background: rgba(255,255,255,.06);
  box-shadow: 0 22px 70px rgba(0,0,0,.4);
}
.service-no{
  display: inline-flex;
  align-self: flex-start;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .5px;
  margin-bottom: 16px;
}
.service-title-modern{
  margin: 0 0 14px;
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: -0.3px;
}
.service-desc-modern{
  flex: 1;
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.service-tags-modern{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}
.service-tags-modern span{
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.03);
  color: rgba(255,255,255,.75);
  font-size: 12px;
  font-weight: 700;
}
.service-cta-modern{
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  font-size: 14px;
  font-weight: 800;
  color: var(--accent);
  text-decoration: none;
  transition: transform .2s ease, color .2s ease;
}
.service-cta-modern:hover{ color: var(--accent2); transform: translateX(6px); }
.service-cta-modern:focus-visible{ outline: 2px solid var(--accent); outline-offset: 2px; }

.section-microcopy{
  font-size: 13px;
  color: var(--muted);
  font-weight: 600;
  white-space: nowrap;
}

.services-dots{
  display: none;
}

@media (max-width: 900px){
  .services-track{ grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px){
  .services-swiper{
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    padding-bottom: 8px;
    scrollbar-width: none;
    position: relative;
  }
  .services-swiper::-webkit-scrollbar{
    display: none;
  }
  /* gradient overlay kaldırıldı: kartların üstüne biniyordu; sağ padding ile boşluk verildi */
  .services-track{
    display: flex;
    gap: 14px;
    padding: 0 24px 0 12px;
    grid-template-columns: unset;
  }
  .service-card,
  .service-card-modern{
    flex: 0 0 88%;
    max-width: 88%;
    scroll-snap-align: start;
    padding: 22px;
    min-height: 260px;
  }
  .service-card:hover,
  .service-card-modern:hover{
    transform: none !important;
  }

  /* .services-modern yapısı kullanıldığında da aynı swipe davranışı */
  .services-modern{
    display: flex !important;
    gap: 14px;
    padding: 0 24px 14px 12px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    position: relative;
    scroll-padding-left: 12px;
  }
  .services-modern::-webkit-scrollbar{
    display: none;
  }

  .services-dots{
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 14px;
    opacity: .9;
  }
  .services-dots .dot{
    width: 7px;
    height: 7px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,.25);
    background: rgba(255,255,255,.1);
    transition: background .2s, border-color .2s, transform .2s;
  }
  .services-dots .dot.active{
    background: rgba(120,255,230,.55);
    border-color: rgba(120,255,230,.75);
    transform: scale(1.15);
  }
}

@media (max-width: 600px){
  .section-head-services{ flex-wrap: wrap; }
  .section-microcopy{ white-space: normal; font-size: 12px; }
}

.mini{
  margin: 12px 0 0;
  padding: 0 0 0 18px;
  color: rgba(255,255,255,.78);
  font-weight: 650;
}
.mini li{ margin: 6px 0; }

/* Works – kategori sekmeleri (premium pill, Apple-style, mobil yatay kaydırma) */
.works-tabs-wrap{
  margin-bottom: 16px;
}
.works-tabs{
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  gap: 12px;
  padding: 8px 6px 12px;
  justify-content: center;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  min-height: 48px;
  align-items: center;
}
.works-tabs::-webkit-scrollbar{
  display: none;
}
.works-tabs .tab,
.works-tab{
  flex: 0 0 auto;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.04);
  color: var(--muted);
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: background .25s ease, color .25s ease, border-color .25s ease, box-shadow .25s ease, transform .2s ease;
  white-space: nowrap;
  -webkit-tap-highlight-color: transparent;
}
.works-tabs .tab:hover,
.works-tab:hover{
  color: var(--text);
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.2);
  transform: translateY(-1px);
}
.works-tabs .tab.active,
.works-tab.active{
  background: linear-gradient(135deg, rgba(94,234,212,.18), rgba(96,165,250,.14));
  border-color: rgba(94,234,212,.45);
  color: var(--text);
  box-shadow: 0 0 0 1px rgba(94,234,212,.2), 0 4px 24px rgba(94,234,212,.18);
}
.works-tabs .tab:focus-visible,
.works-tab:focus-visible{
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* Works grid & cards - Desktop 1024px+ her zaman 4 sütun */
.works{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
@media (min-width: 1024px){
  .works{ grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
}
.work{
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  overflow:hidden;
  box-shadow: var(--shadow);
  transition: transform .2s ease, background .2s ease, opacity .25s ease, visibility .25s ease;
}
.work.work-visible{
  transition: opacity .3s ease, transform .3s ease;
}
.work:hover{ transform: translateY(-2px); background: rgba(255,255,255,.06); }
.work-thumb{
  aspect-ratio: 4/3;
  overflow: hidden;
  padding: 8px;
  box-sizing: border-box;
}
.work-thumb img{ width:100%; height:100%; object-fit: cover; display: block; }
.work-meta{
  padding: 12px 12px 14px;
  margin-top: 2px;
  display:flex;
  flex-direction:column;
  gap: 4px;
}
.work-meta span{color: var(--muted);font-weight: 650;font-size: 13px;font-weight: normal;}
.work-nolink{ cursor: default; }
.work-nolink:hover{ transform: none; }
.work-nolink .work-meta strong{ opacity: .95; }

/* Works Pager (8'li sayfa kaydırma) */
.works-pager{ position: relative; margin-top: 18px; }
.works-viewport{ overflow: hidden; width: 100%; }
.works-track{ display: flex; transition: transform .35s ease; will-change: transform; }
.works-page{ flex: 0 0 100%; padding: 0; min-width: 0; }
.works-nav{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.06);
  color: var(--text);
  font-size: 20px;
  cursor: pointer;
  transition: .25s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.works-nav:hover{ background: rgba(255,255,255,.1); border-color: rgba(94,234,212,.3); color: var(--accent); }
.works-nav:focus-visible{ outline: 2px solid var(--accent); outline-offset: 2px; }
.works-nav.prev{ left: -10px; }
.works-nav.next{ right: -10px; }
.works-dots{ display: flex; justify-content: center; gap: 8px; margin-top: 16px; }
.works-dot{
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255,255,255,.18);
  border: 1px solid rgba(255,255,255,.14);
  padding: 0;
  cursor: pointer;
  transition: .2s ease;
}
.works-dot:hover{ background: rgba(255,255,255,.35); }
.works-dot.is-active{ background: var(--accent); border-color: var(--accent); }
.works-dot:focus-visible{ outline: 2px solid var(--accent); outline-offset: 2px; }
@media (max-width: 980px){ .works-nav{ display: none; } }

/* Progress bar: sadece mobilde göster */
.works-progress{ display: none; }

@media (max-width: 768px){
  /* Mobilde pager okları ve dotlar görünmesin */
  .works-nav,
  .works-dots{ display:none !important; }

  .works-viewport{ overflow: visible; }

  /* JS pager'ın verdiği transform / inline width çakışmasını iptal et */
  .works-track{
    transform: none !important;
    transition: none !important;
    width: auto !important; /* inline width'ı bastır */
    display: flex;
    gap: 14px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 6px 14px 14px;
    scroll-padding-left: 14px;
  }
  .works-track::-webkit-scrollbar{ display:none; }

  /* Pager katmanlarını "flatten" et: pages + iç works wrapper devre dışı */
  .works-page{
    display: contents !important;
    flex: unset !important;   /* inline flex değerini bastır */
    width: auto !important;
  }
  .works{
    display: contents !important;
  }

  /* Her proje kartı artık track'in doğrudan çocuğu gibi davranacak */
  .work{
    flex: 0 0 86vw;            /* tek kart odak + sağdan preview */
    scroll-snap-align: center;
    border-radius: 22px;
  }

  /* Görsel taşmalarını engelle */
  .work-thumb{ overflow: hidden; }
  .work-thumb img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  /* Progress bar */
  .works-progress{
    display: block;
    margin-top: 10px;
    padding: 0 14px;
  }
  .works-progress-track{
    height: 6px;
    border-radius: 999px;
    background: rgba(255,255,255,.10);
    border: 1px solid rgba(255,255,255,.10);
    overflow: hidden;
  }
  .works-progress-indicator{
    height: 100%;
    width: 0%;
    border-radius: 999px;
    background: rgba(94,234,212,.85); /* var(--accent) tonuna yakın */
    transform-origin: left center;
    transition: width .12s linear;
  }
}

/* Steps */
.steps{
  list-style: none;
  padding: 0;
  margin: 0;
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.steps li{
  padding: 16px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  box-shadow: var(--shadow);
}
.steps strong{ display:block; margin-bottom: 6px; }
.steps span{ color: var(--muted); font-weight: 650; }

/* How I Work (Nasıl Çalışıyorum): desktop/tablet grid, mobilde yatay swipe */
.how-swiper{
  overflow: visible;
}
.how-track{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.how-card{
  position: relative;
  width: 100%;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  box-shadow: var(--shadow);
  padding: 18px 18px 16px;
}
.how-top{
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}
.how-no{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.03);
  color: rgba(255,255,255,.86);
  font-weight: 900;
  letter-spacing: .5px;
  flex: 0 0 auto;
}
.how-title{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  font-size: 18px;
  letter-spacing: -0.2px;
}
.how-ico{
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}
.how-ico svg{
  width: 20px;
  height: 20px;
  display: block;
}
.how-desc{
  margin: 0;
  color: var(--muted);
  font-weight: 650;
}

/* Dots: sadece mobilde görünür */
.how-dots{
  display: none;
}

@media (max-width: 980px){
  .how-track{ grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px){
  .how-swiper{
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    padding-bottom: 6px;
    scrollbar-width: none;
  }
  .how-swiper::-webkit-scrollbar{
    display: none;
  }
  .how-track{
    display: flex;
    gap: 14px;
    padding: 0 12px;
    grid-template-columns: unset;
  }
  .how-card{
    flex: 0 0 86%;
    max-width: 86%;
    scroll-snap-align: start;
    padding: 16px;
  }
  .how-dots{
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 14px;
    opacity: .9;
  }
  .how-dots .dot{
    width: 7px;
    height: 7px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,.25);
    background: rgba(255,255,255,.1);
    transition: background .2s, border-color .2s, transform .2s;
  }
  .how-dots .dot.active{
    background: rgba(120,255,230,.55);
    border-color: rgba(120,255,230,.75);
    transform: scale(1.15);
  }
}

@media (max-width: 520px){
  .how-card{ padding: 16px; }
}

/* Contact */
.contact-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items: start;
}
.contact-cards{
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 14px;
}
.contact-card{
  width: 100%;
  padding: 14px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  box-shadow: var(--shadow);
  transition: .2s ease;
}
.contact-card:hover{ transform: translateY(-1px); background: rgba(255,255,255,.06); }
.contact-card span{ color: var(--muted); font-weight: 650; }

.form{
  padding: 16px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  box-shadow: var(--shadow);
}
.form label{
  display:block;
  font-weight: 800;
  font-size: 13px;
  color: rgba(255,255,255,.86);
  margin-bottom: 10px;
}
.form input, .form textarea{
  width:100%;
  margin-top: 6px;
  background: rgba(0,0,0,.20);
  color: var(--text);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 14px;
  padding: 12px 12px;
  outline: none;
}
.form input:focus, .form textarea:focus{
  border-color: rgba(94,234,212,.45);
  box-shadow: 0 0 0 4px rgba(94,234,212,.12);
}
.form-row{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.form-actions{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 10px;
}
.hint{ color: var(--muted); font-weight: 650; font-size: 12px; }

/* Footer */
.footer{
  padding: 22px 0;
  border-top: 1px solid var(--line);
  background: rgba(255,255,255,.02);
}
.footer-inner{
  display:flex;
  justify-content: space-between;
  align-items:center;
  gap: 10px;
  color: var(--muted);
  font-weight: 650;
}
.footer a{ color: rgba(255,255,255,.86); }

/* Hero + About: sol/sağ kolon, Hakkımda chiplerden hemen sonra */
.hero-about-wrap{
  position: relative;
  padding: 80px 0 40px;
}
.heroAboutGrid{
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: start;
}
.hero-about-col{
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.aboutL,
.aboutR{ margin-top: 0 !important; padding-top: 0 !important; }
.heroR .hero-card{ margin-top: 0; }

#about{
  padding-top: 40px !important;
}

@media (max-width: 991px){
  .hero-about-col{
    display: contents;
  }
  .heroAboutGrid{
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .heroL{ order: 1; }
  .heroR{ order: 2; }
  .aboutL{ order: 3; }
  .aboutR{ order: 4; }
  .heroR .hero-card{ margin-top: 22px; }
}

/* Responsive */
@media (max-width: 980px){
  .site-nav{ display:none; }
  .nav-toggle{ display:inline-grid; place-items:center; }
  .header-cta{ display:none; }

  .site-nav.open{
    display:flex;
    position: absolute;
    left: 20px;
    right: 20px;
    top: 70px;
    flex-direction: column;
    gap: 6px;
    border-radius: 18px;
    padding: 12px;
    background: rgba(11,15,26,.92);
    border: 1px solid rgba(255,255,255,.14);
  }

  .hero-grid{ grid-template-columns: 1fr; }
  .hero-card{ margin-top: 30px; }
  .section-grid{ grid-template-columns: 1fr; }
  .section-sub{ white-space: normal; max-width: none; text-align: left; }
  .cards{ grid-template-columns: 1fr; }
  .works{ grid-template-columns: 1fr 1fr; }
  .steps{ grid-template-columns: 1fr 1fr; }
  .contact-grid{ grid-template-columns: 1fr; }
  .form-row{ grid-template-columns: 1fr; }
}

@media (max-width: 520px){
  .works{ grid-template-columns: 1fr; }
  .steps{ grid-template-columns: 1fr; }
}

/* Floating WhatsApp butonu kapalı (sadece .wa-float; iletişim kartlarına dokunulmaz) */
.wa-float{
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}
