:root {
  --bg:#ffffff;
  --text:#0f1115;
  --muted:#6b7280;
  --border:#e5e7eb;
  --shadow:0 20px 40px rgba(0,0,0,.08);
  --brand:#111827;
  --radius:16px;
}

* { box-sizing: border-box; }
html,body { height: 100%; }
body {
  margin: 0;
  font-family: Inter,system-ui,Segoe UI,Roboto,Arial;
  color: var(--text);
  background: var(--bg);
}
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
a { text-decoration: none; color: inherit; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.75);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: none !important;
}
.nav {
  display: flex; align-items: center; justify-content: space-between; height: 72px;
}
.brand { display: flex; align-items: center; gap: 0; }
.logo { display: block; }
.desktop-nav { display: flex; gap: 24px; }
.menu-item { display: flex; align-items: center; gap: 6px; font-weight: 500; position: relative; }
.caret { font-size: 12px; opacity: .7; }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.pill { padding: 8px 14px; border-radius: 999px; border: 1px solid rgba(17,24,39,.12); }
.icon-btn { width: 36px; height: 36px; border-radius: 999px; display: grid; place-items: center; border: 1px solid rgba(17,24,39,.12); background: #fff; }
.hamburger { display: none; }

/* Dropdown */
.has-dd:focus-within .dropdown,
.has-dd:hover .dropdown {
  opacity: 1; pointer-events: auto; transform: translateY(0);
}
.dropdown {
  position: absolute; left: -12px; top: 100%; padding-top: 14px;
  opacity: 0; pointer-events: none; transform: translateY(-4px);
  transition: .18s ease;
  min-width: 320px; background: #fff; border: 1px solid var(--border);
  border-radius: 14px; box-shadow: var(--shadow); padding: 14px;
}
.dd-link { display: block; padding: 12px; border-radius: 10px; font-weight: 600; }
.dd-link small { display: block; color: var(--muted); font-weight: 500; }
.dd-link:hover { background: #f3f4f6; }

/* Mobile drawer */
.mobile-drawer {
  position: fixed; inset: 72px 0 0 auto; max-width: 360px; width: 100%;
  background: #fff; border-left: 1px solid var(--border);
  transform: translateX(100%); transition: .25s ease; z-index: 60;
}
.mobile-drawer.open { transform: none; }
.drawer-inner { padding: 18px; }
.drawer-inner a { display: block; padding: 12px 4px; border-bottom: 1px solid #f3f4f6; }
.close-drawer {
  position: absolute; top: 8px; right: 8px;
  border: 1px solid var(--border); border-radius: 10px; background: #fff;
  padding: 6px 10px;
}

/* Hero */
.hero{
  position: relative;
  margin: clamp(12px, 2.2vw, 28px);
  border-radius: clamp(16px, 2.2vw, 28px);
  overflow: hidden;
  min-height: 76vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* ikiye bölünmüş video arkaplan */
.hero .split-bg{
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.hero .split-bg video{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* metin okunurluğu için */
.hero .vignette{
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.10),
    rgba(0,0,0,0.55) 60%,
    rgba(0,0,0,0.65)
  );
}

/* içerik ortalama */
.hero-inner{
  position: relative;
  z-index: 1;
  width: min(920px, 92vw);
  margin: 0 auto;
  transform: translateY(0); /* stabil kalsın */
}

/* başlık */
.headline{
  font-size: clamp(28px, 4.6vw, 48px);
  font-weight: 600;
  line-height: 1.1;
  margin: 0 0 24px;
  color: #fff;
}

/* butonlar ehr cihazda yan yana */
.cta-row{
  display: flex;
  gap: clamp(10px, 1.6vw, 16px);
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;         
  white-space: nowrap;      
}

/* hero içi buton micro */
.hero .btn{
  padding: clamp(10px, 1.4vw, 14px) clamp(16px, 2vw, 22px);
  font-size: clamp(14px, 1.7vw, 16px);
}

/* küçük ekran */
@media (max-width: 520px){
  .hero{ min-height: 68vh; }
  .headline{ font-size: clamp(22px, 9vw, 30px); }
  .hero .btn{ font-size: 14px; padding: 9px 14px; }
}

/* geniş ekran */
@media (min-width: 1280px){
  .hero{ min-height: 82vh; }
}


.btn {
  padding: 18px 24px !important; /* yükseklik genişlik ayarı */
  border-radius: 999px;
  font-weight: 600; 
  font-size: 18px;  
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.btn:hover {
  transform: scale(1.06);
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}
.btn.solid { background: #000; color: #fff; }
.btn.solid:hover { background: #111; }
.btn.ghost { background: #fff; color: #000; }
.btn.ghost:hover { background: #f5f5f5; }


/* Section */
.section { padding: 64px 0; }
.section h2 { text-align: center; font-size: clamp(24px,3.5vw,40px); margin: 0 0 10px; }
.muted { text-align: center; color: var(--muted); margin: 0 0 30px; }
.cards { display: grid; gap: 16px; grid-template-columns: repeat(3,1fr); }
.card { border: 1px solid var(--border); border-radius: 16px; padding: 20px; box-shadow: 0 8px 24px rgba(0,0,0,.04); }
.card h3 { margin: 0 0 8px; }
.text-link { color: #111827; font-weight: 600; }


/* Responsive */
@media (max-width: 960px) {
  .desktop-nav { display: none; }
  .hamburger { display: grid; }
  .cards { grid-template-columns: 1fr; }
}

/* Minimal Header + Fullscreen Overlay Menu */
.site-header--minimal {
  border-bottom: 1px solid rgba(17,24,39,.06);
  background: #fff;
  backdrop-filter: none;
}
.nav--minimal {
  height: 72px; display: flex; align-items: center; justify-content: space-between;
}

/* Hamburger */
.hamburger-animated {
  --w:28px; --h:20px;
  width: 44px; height: 44px; border: none; background: transparent;
  border-radius: 12px; display: grid; place-items: center; cursor: pointer;
  position: relative; z-index: 110;
}
.hamburger-animated span {
  position: absolute; display: block;
  width: var(--w); height: 3px; background: #0b0f14;
  transform-origin: center; border-radius: 2px;
  transition: transform 0.4s cubic-bezier(0.68,-0.55,0.27,1.55),
              opacity 0.25s ease, top 0.4s ease;
}
.hamburger-animated span:nth-child(1) { top: 14px; }
.hamburger-animated span:nth-child(2) { top: 21px; }
.hamburger-animated span:nth-child(3) { top: 28px; }
.hamburger-animated.active span:nth-child(1) {
  top: 21px; transform: rotate(45deg) scale(1.1);
}
.hamburger-animated.active span:nth-child(2) {
  opacity: 0; transform: translateX(10px);
}
.hamburger-animated.active span:nth-child(3) {
  top: 21px; transform: rotate(-45deg) scale(1.1);
}

/* Overlay Menu */

.overlay-menu {
  position: fixed; inset: 0; background: #fff;
  opacity: 0; pointer-events: none;
  transform: translateY(-100%);
  transition: transform .6s cubic-bezier(.4,0,.2,1), opacity .6s cubic-bezier(.4,0,.2,1);
  z-index: 100;
}
.overlay-menu.open { opacity: 1; pointer-events: auto; transform: translateY(0); }
.overlay-close {
  position: absolute; top: 20px; right: 24px; width: 44px; height: 44px;
  border: none; background: transparent; cursor: pointer;
}
.overlay-close::before, .overlay-close::after {
  content: ""; position: absolute; top: 50%; left: 50%; width: 26px; height: 2px;
  background: #0b0f14; border-radius: 2px; transform-origin: center;
}
.overlay-close::before { transform: translate(-50%,-50%) rotate(45deg); }
.overlay-close::after { transform: translate(-50%,-50%) rotate(-45deg); }
.overlay-nav {
  height: 100%; display: flex; flex-direction: column; gap: 28px; justify-content: flex-start;
  padding: 100px 24px 40px; max-width: 720px; margin: 0 auto;
}
.overlay-link {
  font-size: clamp(26px,4.2vw,44px); font-weight: 700;
  opacity: 0; transform: translateY(40px);
  transition: opacity .7s cubic-bezier(.4,0,.2,1), transform .7s cubic-bezier(.34,1.56,.64,1);
}
.overlay-aux { margin-top: 24px; display: grid; gap: 20px; }
.aux-link {
  display: flex; align-items: center; gap: 10px;
  font-size: 20px; font-weight: 600;
  opacity: 0; transform: translateY(20px);
  transition: opacity .6s ease, transform .6s ease;
}
.aux-link .i { flex: 0 0 auto; }

/* Delays */
.overlay-menu.open .overlay-link:nth-of-type(1) { transition-delay: .10s; opacity: 1; transform: translateY(0); }
.overlay-menu.open .overlay-link:nth-of-type(2) { transition-delay: .20s; opacity: 1; transform: translateY(0); }
.overlay-menu.open .overlay-link:nth-of-type(3) { transition-delay: .30s; opacity: 1; transform: translateY(0); }
.overlay-menu.open .overlay-link:nth-of-type(4) { transition-delay: .40s; opacity: 1; transform: translateY(0); }
.overlay-menu.open .overlay-link:nth-of-type(5) { transition-delay: .50s; opacity: 1; transform: translateY(0); }
.overlay-menu.open .overlay-aux .aux-link:nth-of-type(1) { transition-delay: .60s; opacity: 1; transform: translateY(0); }
.overlay-menu.open .overlay-aux .aux-link:nth-of-type(2) { transition-delay: .70s; opacity: 1; transform: translateY(0); }
.overlay-menu.open .overlay-aux .aux-link:nth-of-type(3) { transition-delay: .80s; opacity: 1; transform: translateY(0); }
.overlay-menu.open .overlay-aux .aux-link:nth-of-type(4) { transition-delay: .90s; opacity: 1; transform: translateY(0); }

.overlay-menu,
.overlay-link,
.aux-link {
  will-change: transform, opacity;
  backface-visibility: hidden;
}


.logo {
  height: 40px;  /* dikey uzunluk */
  width: auto;   /* en boy oranını korur */
}

/* === Sabit header === */
:root{
  --header-h: 72px;   
  --header-gap: 0px;  /* header ile içerik arasındaki küçük boşluk */
}

.site-header{
  position: fixed !important;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: #fff;
  border-bottom: none !important;       /* gri çizgi yok */
  backdrop-filter: none !important;     /* istersen efekt kapalı */
}

.nav{
  height: var(--header-h) !important;   /* bar yüksekliği sabit */
  align-items: center;
}

body{ margin:0 !important; padding-top:0 !important; }


/* İlk bölümde ekstra itme olmasın */
.hero{ margin-top: 0 !important; }

/* Mobilde header biraz daha kısa + daha az boşluk */
@media (max-width: 520px){
  :root{
    --header-h: 64px;
    --header-gap: 2px;
  }
}

/* Sayfa-özel değişkenler (main.css'e dokunmadan) */
:root{
  --retail-hero-h: min(82vh, 820px);
  --retail-fg: #0f1115;
  --retail-fg-inv: #ffffff;
  --retail-muted: #6b7280;
  --retail-border: #e5e7eb;
  --retail-radius: 24px;
}

/* ---------- HERO ---------- */
.retail-hero{
  position: relative;
  height: var(--retail-hero-h);
  display: grid;
  place-items: end start;
  overflow: clip;
}
.retail-hero__bg{
  position: absolute; inset: 0;
}
.retail-hero__bg img{
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(110%) contrast(105%) blur(0px);
  transform: scale(1.02);
}
.retail-hero__fade{
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,.25) 0%, rgba(0,0,0,.15) 35%, rgba(0,0,0,0) 70%, rgba(0,0,0,.15) 100%);
}
.retail-hero__inner{
  position: relative;
  color: var(--retail-fg-inv);
  padding-bottom: clamp(28px, 6vw, 56px);
}
.industry-picker{
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.18);
  border: 1px solid rgba(255,255,255,.35);
  backdrop-filter: blur(6px);
  color: #fff; padding: 10px 14px; border-radius: 999px;
  font-weight: 600; margin-bottom: 16px;
}
.industry-picker .caret{ opacity:.9; transform: translateY(1px); }

.retail-hero__title{
  font-weight: 800;
  line-height: .95;
  font-size: clamp(42px, 10vw, 86px);
  letter-spacing: -0.02em;
  margin: 6px 0 18px;
  text-shadow: 0 12px 30px rgba(0,0,0,.25);
}
.retail-hero__cta{ display:flex; gap:14px; }
.btn{ display:inline-flex; align-items:center; justify-content:center; padding:14px 18px; border-radius:999px; font-weight:700; }
.btn--outline{ background:transparent; border:1.5px solid rgba(255,255,255,.65); color:#fff; }
.btn--outline:hover{ background:rgba(255,255,255,.12); }
.btn--solid{ background:#0f1115; color:#fff; border:1.5px solid #0f1115; }
.btn--solid:hover{ filter: brightness(1.08); }

/* ---------- INTRO BLOK ---------- */
.retail-intro{ padding: clamp(40px, 10vw, 120px) 0 8px; }
.intro-title{
  font-size: clamp(34px, 9vw, 72px);
  line-height: .98; letter-spacing:-.02em;
}

/* ---------- KATEGORİ LİSTESİ ---------- */
.retail-categories{ padding: 12px 0 36px; }
.cat-list{ list-style:none; margin: 8px 0 16px; padding: 0; }
.cat-list li{ border-top:1px solid var(--retail-border); }
.cat-list li:last-child{ border-bottom:1px solid var(--retail-border); }
.cat-list a{
  display:flex; align-items:center; justify-content:space-between;
  padding: 18px 2px; font-size: clamp(18px, 3.8vw, 28px);
  font-weight:700;
}
.ne-arrow{ font-size: 20px; transform: translateY(-1px); }

.cta-wide{
  padding: clamp(28px, 6vw, 44px) 0;
  text-align: center;
}
.cta-wide h3{
  font-size: clamp(32px, 7vw, 64px);
  line-height: 1;
  margin: 0 0 16px;
}
.btn--ghost{
  display:inline-block; border:1.6px solid #0f1115; color:#0f1115; background:transparent;
  padding:14px 22px; border-radius:999px; font-weight:700;
}
.btn--ghost:hover{ background:#0f1115; color:#fff; }

/* ---------- AKORDEON ---------- */
.retail-accordion{ padding: 8px 0 40px; }
.retail-accordion details{
  border-top:1px solid var(--retail-border);
  padding: 18px 0;
}
.retail-accordion details:last-child{ border-bottom:1px solid var(--retail-border); }
.retail-accordion summary{
  list-style:none; cursor:pointer; font-weight:800; font-size: clamp(18px, 4vw, 28px);
  display:flex; align-items:center; justify-content:space-between;
}
.retail-accordion summary::after{
  content:"+"; font-size: 28px; transition: transform .2s ease;
}
.retail-accordion details[open] summary::after{ transform: rotate(45deg); }
.retail-accordion details p{ color: var(--retail-muted); margin: 12px 0 4px; }

/* ---------- ALINTI ---------- */
.retail-quote{
  background:#0f1115; color:#fff; padding: clamp(28px, 6vw, 48px) 0;
}
.quote-card{ display:grid; gap: 16px; }
.quote-meta{ opacity:.95; font-weight:600; }
blockquote{
  margin: 0; font-size: clamp(18px, 4.8vw, 28px); line-height: 1.3;
}
.quote-actions{ display:flex; align-items:center; gap: 16px; margin-top: 8px; }
.round{
  width:64px; height:64px; border-radius:50%;
  border:1.5px solid rgba(255,255,255,.6); background:transparent; color:#fff; font-size:24px;
}
.see-all{ margin-left:auto; font-weight:700; color:#fff; text-decoration:none; }

/* ---------- İSTATİSTİKLER ---------- */
.retail-stats{ padding: clamp(36px, 8vw, 64px) 0; }
.stats-grid{ display:grid; gap: clamp(24px, 4vw, 40px); }
.stat{ border-left: 0; }
.kpi{
  font-weight: 800;
  font-size: clamp(38px, 10vw, 64px);
  letter-spacing:-.02em;
  margin-bottom: 8px;
}

/* ---------- Masaüstü düzen ---------- */
@media (min-width: 900px){
  .retail-hero{ place-items: end center; }
  .retail-hero__inner{ max-width: 1160px; width: 100%; }
  .retail-hero__title{ font-size: clamp(68px, 9vw, 120px); }
  .stats-grid{
    grid-template-columns: repeat(3,1fr);
  }
  .quote-card{
    grid-template-columns: .9fr 2fr;
    align-items: center;
  }
  .quote-meta{ grid-column: 1 / 2; }
  blockquote{ grid-column: 1 / -1; }
}

/* MOBİL: hero’yu biraz daha kısalt + CTA fade’e çok yaklaşmasın */
@media (max-width: 768px){
  .retail-hero{
    height: 52svh;   /* önce 60svh idi */
    height: 48vh;    /* fallback */
  }
  .retail-hero__inner{
    padding-bottom: 26px;
  }
  .retail-hero__fade{ --fade-h: 90px; }  
  .retail-hero__bg img{
    object-position: center 52%;         
  }
}


@media (min-width: 1024px){
  :root{ --retail-hero-h: min(78vh, 780px); }  
  .retail-hero__fade{ --fade-h: 120px; }       
}

@media (min-width: 1440px){
  :root{ --retail-hero-h: min(66vh, 700px); }  
}

.retail-hero__fade{
  --fade-h: 110px;                
  position: absolute; inset: 0; pointer-events: none;
  background:
    linear-gradient(to bottom,
      rgba(255,255,255,0) 0%,
      rgba(255,255,255,.18) 58%,
      var(--bg) 100%
    ) 0 100% / 100% var(--fade-h) no-repeat,
    linear-gradient(to bottom,
      rgba(0,0,0,.14) 0%,
      rgba(0,0,0,.08) 34%,
      rgba(0,0,0,0) 64%
    ) 0 0 / 100% 100% no-repeat;
}

.retail-hero__bg img{
  width: 100%; height: 100%; object-fit: cover;
  object-position: center 52%;  
}


.pill-marquee{
  --fade-w: 64px;                
  --marquee-speed: 24s;           
  position: relative;
  overflow: hidden;
  padding: 18px 0 6px;
}

.pill-marquee::before,
.pill-marquee::after{
  content:"";
  position:absolute; top:0; bottom:0; width:var(--fade-w);
  pointer-events:none;
}
.pill-marquee::before{ left:0;  background:linear-gradient(to right, var(--bg, #fff), transparent); }
.pill-marquee::after { right:0; background:linear-gradient(to left,  var(--bg, #fff), transparent); }

.pill-track{
  display:flex;
  width:max-content;            
  animation: pill-marquee var(--marquee-speed) linear infinite;
}

.pill-marquee .pill-row{
  display:flex;
  flex-wrap:nowrap;
  gap:24px;
  white-space:nowrap;
  overflow:visible;
  padding:0;                     
}

.pill-marquee .pill-row span{
  flex:0 0 auto;
  border:1px solid var(--retail-border, #e5e7eb);
  border-radius:999px;
  padding:10px 14px;
  color:var(--retail-muted, #6b7280);
  font-weight:600;
}

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

.pill-track:hover{ animation-play-state: running; }

@media (max-width: 768px){
  .pill-marquee{ --fade-w: 36px; --marquee-speed: 18s; }
}

@media (prefers-reduced-motion: reduce){
  .pill-track{ animation: none; }
}

/* ========================
   Square tarzı Footer
   ======================== */
.sq-footer{
  background:#000; color:#fff;
  padding:clamp(48px,8vw,120px) 0 0;
  font-synthesis-weight:none;
}

/* Başlık — 2. görseldeki büyüklük */
.sq-cta h2{
  margin:0 0 clamp(28px,4vw,44px);
  font-weight:600;
  font-size:clamp(44px,8.8vw,88px);
  line-height:1.05; letter-spacing:-.01em;
}
.sq-asterisk{ font-size:.55em; vertical-align:super; }

/* Butonlar */
.sq-actions{
  display:grid;
  grid-template-columns: 1fr 1fr;     /* iki eşit sütun */
  gap:clamp(12px,2.5vw,16px);
  width:100%;
  max-width:680px;                     /* taşmaması için üst sınır */
  margin:0 auto clamp(16px,3vw,24px);  /* ortaya al */
}

.sq-btn{
  width:100%;          /* hücreyi tamamen doldursun (eşit genişlik) */
  min-width:0;         /* metin uzun diye taşmasın */
  height:64px;
  padding:0 18px;
  border-radius:9999px;
  display:inline-flex; align-items:center; justify-content:center;
  font-weight:700;
  font-size:clamp(14px,3.2vw,18px);   /* dar ekranlarda yazı otomatik küçülür */
  line-height:1.1;
  border:2px solid transparent;
  text-align:center;
  white-space:nowrap;                 /* tek satırda kalsın */
  overflow:hidden; text-overflow:ellipsis; /* yine de sığmazsa kesme yap */
  cursor:pointer;
  transition: background-color .18s ease, color .18s ease, border-color .18s ease, transform .08s ease;
}

.sq-btn{
  /* hover/focus için akıcı geçişler */
  transition:
    transform .18s ease,
    box-shadow .18s ease,
    background-color .18s ease,
    color .18s ease,
    border-color .18s ease;
  will-change: transform;
}

.sq-btn--outline{ background:transparent; border-color:#fff; color:#fff; }
.sq-btn--solid{ background:#fff; color:#000; border-color:#fff; }

/* HOVER / FOCUS / ACTIVE */
@media (hover:hover){
  .sq-btn:hover,
  .sq-btn:focus-visible{
    transform: translateY(-2px);
    box-shadow:
      0 0 0 6px rgba(255,255,255,.10),
      0 10px 24px rgba(0,0,0,.35);
    outline: none;
  }
}
.sq-btn:focus-visible{
  transform: translateY(-2px);
  box-shadow:
    0 0 0 6px rgba(255,255,255,.10),
    0 10px 24px rgba(0,0,0,.35);
  outline: none;
}
.sq-btn:active{
  transform: translateY(0);
  box-shadow:
    0 0 0 4px rgba(255,255,255,.08),
    0 6px 14px rgba(0,0,0,.30);
}
.sq-btn--outline:hover,
.sq-btn--outline:focus-visible{ background:#111; color:#fff; border-color:#fff; }
.sq-btn--solid:hover,
.sq-btn--solid:focus-visible,
.sq-btn--submit:hover,
.sq-btn--submit:focus-visible{ background:#f2f2f2; color:#000; border-color:#fff; }
.sq-btn:disabled{ opacity:.6; cursor:not-allowed; transform:none; box-shadow:none; }

/* Kaynak link satırı */
.sq-source{
  margin:clamp(18px,3vw,28px) 0 0;
  font-size:15px; color:rgba(255,255,255,.9);
}
.sq-link{ color:#fff; text-decoration:underline; }
.sq-link:hover{ text-decoration-color:rgba(255,255,255,.7); }

/* Newsletter */
.sq-newsletter{ margin-top:clamp(56px,10vw,120px); }
.sq-newsletter h3{
  margin:0 0 10px; font-weight:700;
  font-size:clamp(28px,6vw,48px); line-height:1.2;
}
.sq-sub{
  margin:0 0 26px; font-size:clamp(16px,3.5vw,22px);
  color:rgba(255,255,255,.85);
}

/* Form */
.sq-form{
  display:grid; gap:16px; width:min(760px,100%);
}
.sq-form input{
  height:64px; padding:0 24px;
  border-radius:9999px;
  border:1px solid rgba(255,255,255,.35);
  background:rgba(255,255,255,.02);
  color:#fff; font-size:16px; outline:none;
}
.sq-form input::placeholder{ color:rgba(255,255,255,.6); }
.sq-form input:focus{
  border-color:#fff; box-shadow:0 0 0 4px rgba(255,255,255,.15);
}
.sq-btn--submit{
  height:64px; border-radius:9999px;
  background:#fff; color:#000; border:2px solid #fff;
  font-weight:700; font-size:18px; padding:0 32px;
}

/* LEGAL (3. görsel) */
.sq-legal{
  margin-top:clamp(64px,12vw,160px);
  border-top:1px solid rgba(255,255,255,.14);
}
.sq-legal__top{
  display:flex; align-items:center; justify-content:space-between;
  gap:16px; padding:18px 0;
}
.sq-locale{ display:flex; align-items:center; gap:10px; color:#fff; }
.sq-social{ list-style:none; display:flex; align-items:center; gap:22px; margin:0; padding:0; }
.sq-social a{ color:#fff; display:inline-flex; transition:opacity .15s ease; }
.sq-social a:hover{ opacity:.8; }

/* alt blok */
.sq-legal__bottom{
  text-align:center;
  padding:18px 0 80px;
}
.sq-copy{
  margin:18px 0 14px; font-size:16px; color:rgba(255,255,255,.8);
}
.sq-legal-links{
  display:grid; gap:14px; justify-content:center;
}
.sq-legal-links a{
  color:#fff; font-weight:600; font-size:18px; text-decoration:none;
}
.sq-legal-links a:hover{ text-decoration:underline; }

/* Erişilebilirlik */
.sq-visually-hidden{
  position:absolute!important; height:1px; width:1px; overflow:hidden;
  clip:rect(1px,1px,1px,1px); white-space:nowrap;
}

/* Desktop düzeni */
@media (min-width:900px){
  .sq-actions{ grid-template-columns:auto auto; }
  .sq-form{ grid-template-columns:1fr auto; }
  .sq-legal-links{
    grid-template-columns:repeat(2, max-content);
    column-gap:48px; row-gap:14px;
  }
}

/* Hareketi azaltanlar için */
@media (prefers-reduced-motion: reduce){
  .sq-btn{
    transition: background-color .18s ease, color .18s ease, border-color .18s ease;
  }
  .sq-btn:hover, .sq-btn:focus-visible, .sq-btn:active{
    transform:none; box-shadow:none;
  }
}
@media (max-width:380px){
  .sq-btn{ font-size:14px; padding:0 14px; }  /* iki buton yine yan yana sığsın */
}

/* LEGAL üst satırı: mobilde ortala */
@media (max-width: 900px){
  .sq-legal__top{
    justify-content: center;   /* ortala */
    gap: 20px;
    flex-wrap: wrap;           /* taşarsa alt satıra insin */
    text-align: center;
  }
  .sq-locale,
  .sq-social{
    display: flex;
    align-items: center;
    justify-content: center;   /* grup içini de ortala */
    width: 100%;
  }
}

/* Desktop'ta yine kenarlara yaslı kalsın */
@media (min-width: 901px){
  .sq-legal__top{ justify-content: space-between; }
}


