/* ============================================================
   CENKER AJANS V2 — Extra section styles
   References, testimonials, FAQ, founder, ecosystem,
   estimator, instagram, floats
   ============================================================ */

/* ---------- REFERENCES ---------- */
.ref-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
}
.ref-card-link {
  border-radius: var(--r-lg);
  background: var(--glass);
  backdrop-filter: blur(20px) saturate(150%);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
  border: 1px solid var(--line);
  display: flex; flex-direction: column;
  overflow: hidden;
  transition: border-color .25s, transform .35s, box-shadow .35s;
  position: relative;
  min-width: 0;
}
.ref-card-link.span-4 { grid-column: span 4; }
.ref-card-link.span-5 { grid-column: span 5; }
.ref-card-link.span-6 { grid-column: span 6; }
.ref-card-link.span-7 { grid-column: span 7; }
.ref-card-link.span-8 { grid-column: span 8; }
.ref-card-link.span-12 { grid-column: span 12; }
@media (max-width: 1100px) {
  .ref-card-link.span-4, .ref-card-link.span-5 { grid-column: span 6; }
  .ref-card-link.span-7, .ref-card-link.span-8 { grid-column: span 12; }
}
@media (max-width: 700px) {
  .ref-card-link.span-4, .ref-card-link.span-5, .ref-card-link.span-6, .ref-card-link.span-7, .ref-card-link.span-8, .ref-card-link.span-12 {
    grid-column: span 12;
  }
}
.ref-card-link:hover {
  border-color: var(--line-hi);
  transform: translateY(-3px);
  box-shadow: 0 20px 48px -16px rgba(0,0,0,0.6);
}

.ref-card-frame {
  aspect-ratio: 16/9;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  display: flex;
  flex-direction: column;
}
.ref-card-link.span-12 .ref-card-frame { aspect-ratio: 21/9; }
.ref-card-link.span-7 .ref-card-frame { aspect-ratio: 16/9; }

/* Browser chrome — monochrome, mac-style; sits above the slide stage.
   Three subtle dots on the left, mono-font URL pill in the middle with a
   lime "lock" glyph (Aurora Glass accent), two inert action squares right. */
.ref-chrome {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 9px 14px;
  background: rgba(0, 0, 0, 0.35);
  border-bottom: 1px solid var(--line);
  flex-shrink: 0;
}
.ref-chrome-dots { display: flex; gap: 6px; flex-shrink: 0; }
.ref-chrome-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
}
.ref-chrome-url {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 999px;
  padding: 5px 14px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.02em;
  color: var(--ink);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 0;
}
.ref-chrome-lock {
  width: 9px; height: 9px;
  border-radius: 2px;
  background: var(--lime);
  opacity: 0.85;
  flex-shrink: 0;
}
.ref-chrome-domain {
  overflow: hidden;
  text-overflow: ellipsis;
}
.ref-chrome-actions { display: flex; gap: 5px; flex-shrink: 0; opacity: 0.45; }
.ref-chrome-action {
  width: 13px; height: 13px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.08);
}

/* Slide stage occupies the remaining frame area below the chrome. */
.ref-stage {
  position: relative;
  flex: 1;
  min-height: 0;
  overflow: hidden;
}

.ref-slider {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
}
.ref-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .7s cubic-bezier(.4,.2,.3,1);
  pointer-events: none;
}
.ref-slide.on {
  opacity: 1;
  pointer-events: auto;
}
.ref-slide image-slot {
  width: 100% !important;
  height: 100% !important;
  display: block;
  border-radius: 0;
}
.ref-slide image-slot::part(frame) {
  background: rgba(255,255,255,0.025);
}
.ref-slide image-slot::part(ring) {
  border-color: rgba(255,255,255,0.12);
  border-width: 1px;
}
.ref-slide image-slot::part(empty) {
  font-family: var(--f-mono);
  font-size: 11.5px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.ref-edit-toggle {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 6;
  width: 30px;
  height: 30px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(7,6,14,0.65);
  backdrop-filter: blur(8px);
  color: var(--ink-mid);
  font-size: 13px;
  cursor: pointer;
  display: grid; place-items: center;
  opacity: 0;
  transition: opacity .2s, background .2s, color .2s, transform .2s;
  font-family: var(--f-display);
}
.ref-card-link:hover .ref-edit-toggle { opacity: 1; }
.ref-edit-toggle:hover {
  background: rgba(212,255,79,0.15);
  color: var(--lime);
  transform: scale(1.05);
}
.ref-slider.editing .ref-edit-toggle {
  opacity: 1;
  background: var(--lime);
  color: var(--bg);
  border-color: var(--lime);
  box-shadow: 0 0 18px rgba(212,255,79,0.4);
}
.ref-slider.editing .ref-slide { box-shadow: inset 0 0 0 1px rgba(212,255,79,0.3); }

.ref-dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 5;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(7, 6, 14, 0.55);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.08);
  align-items: center;
}
.ref-dot-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ref-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  border: 0;
  background: rgba(255,255,255,0.35);
  cursor: pointer;
  padding: 0;
  transition: background .25s, width .25s;
}
.ref-dot:hover { background: rgba(255,255,255,0.6); }
.ref-dot.on {
  background: var(--lime);
  width: 18px;
  border-radius: 3px;
  box-shadow: 0 0 8px rgba(212, 255, 79, 0.6);
}
.ref-dot-x {
  position: absolute;
  bottom: calc(100% + 4px);
  left: 50%;
  transform: translateX(-50%);
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 0;
  background: rgba(255, 93, 200, 0.9);
  color: #07060E;
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  padding: 0;
  display: grid;
  place-items: center;
  transition: transform .15s, background .15s;
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
}
.ref-dot-x:hover {
  background: var(--magenta);
  transform: translateX(-50%) scale(1.15);
  color: #fff;
}
.ref-dot-add {
  width: 20px;
  height: 20px;
  border-radius: 5px;
  border: 0;
  background: var(--lime);
  color: #07060E;
  font-size: 15px;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  padding: 0;
  margin-left: 4px;
  display: grid;
  place-items: center;
  transition: background .15s, transform .15s;
  box-shadow: 0 0 10px rgba(212,255,79,0.4);
}
.ref-dot-add:hover {
  background: var(--cyan);
  transform: scale(1.1);
  box-shadow: 0 0 14px rgba(93,231,255,0.5);
}

.ref-preview {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ref-card-meta { padding: 22px 24px 24px; display: flex; flex-direction: column; gap: 8px; }
.ref-card-row1 {
  display: flex; justify-content: space-between;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.02em;
  color: var(--ink-dim);
}
.ref-card-go { color: var(--lime); display: inline-flex; align-items: center; gap: 4px; transition: color .2s; }
.ref-card-go span { transition: transform .25s; display: inline-block; }
.ref-card-link:hover .ref-card-go span { transform: translate(2px, -2px); }
.ref-card-title {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: clamp(1.3rem, 1.7vw, 1.7rem);
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin: 4px 0 0 0;
  color: var(--ink);
}
.ref-card-title em {
  font-family: var(--f-serif);
  font-style: italic;
  font-weight: 400;
  background: linear-gradient(135deg, var(--lime), var(--cyan));
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}
.ref-card-desc { margin: 0; font-size: 14px; color: var(--ink-mid); line-height: 1.5; }
.ref-card-tags {
  margin-top: 10px;
  display: flex; gap: 6px; flex-wrap: wrap;
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: 0.02em;
  color: var(--ink-dim);
}
.ref-card-tags span {
  padding: 4px 9px;
  border: 1px solid var(--line-mid);
  border-radius: var(--r-full);
}

/* Preview: CRM (insora) */
.ref-crm {
  background: linear-gradient(135deg, #1B2018 0%, #2A3025 100%);
  padding: 18px;
}
.ref-window {
  width: 92%; height: 88%;
  background: #0A0E0A;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  overflow: hidden;
  display: flex; flex-direction: column;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.6);
}
.ref-window-bar {
  height: 22px;
  background: rgba(255,255,255,0.04);
  display: flex; align-items: center; gap: 5px;
  padding: 0 10px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.ref-window-bar > span:nth-child(-n+3) {
  width: 7px; height: 7px; border-radius: 50%;
  background: rgba(255,255,255,0.15);
}
.ref-url {
  margin-left: 8px;
  font-family: var(--f-mono);
  font-size: 8px;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.4);
}
.ref-window-body { flex: 1; display: flex; }
.ref-crm-body { color: #F0F2EE; }
.ref-side {
  width: 52px;
  background: rgba(255,255,255,0.03);
  display: flex; flex-direction: column; gap: 8px;
  padding: 10px 8px;
  border-right: 1px solid rgba(255,255,255,0.06);
}
.ref-side-logo {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: #D4FF4F;
  color: #0A0E0A;
  display: grid; place-items: center;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 6px;
}
.ref-side-item {
  height: 8px;
  background: rgba(255,255,255,0.08);
  border-radius: 4px;
}
.ref-side-item.active { background: #D4FF4F; }
.ref-main { flex: 1; padding: 12px 14px; display: flex; flex-direction: column; gap: 10px; }
.ref-main-head { display: flex; justify-content: space-between; align-items: center; }
.ref-h-title { font-family: var(--f-display); font-weight: 600; font-size: 11px; }
.ref-h-pill {
  display: inline-flex; gap: 5px; align-items: center;
  padding: 3px 8px;
  border: 1px solid rgba(212,255,79,0.4);
  border-radius: var(--r-full);
  font-family: var(--f-mono); font-size: 8px;
  color: #D4FF4F;
}
.ref-h-pill > span { width: 5px; height: 5px; border-radius: 50%; background: #D4FF4F; }
.ref-pipe { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; flex: 1; }
.ref-col { display: flex; flex-direction: column; gap: 5px; }
.ref-col-h {
  font-family: var(--f-mono); font-size: 8px;
  color: rgba(255,255,255,0.5);
  display: flex; justify-content: space-between;
  padding-bottom: 5px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.ref-col-h span { color: #D4FF4F; }
.ref-card {
  height: 24px;
  background: rgba(255,255,255,0.05);
  border-radius: 4px;
  border-left: 2px solid rgba(212,255,79,0.4);
}
.ref-card.ref-card-hi { background: rgba(212,255,79,0.12); border-left-color: #D4FF4F; }

/* Preview: Trend */
.ref-trend {
  background: #0E0F12;
  padding: 24px;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  overflow: hidden;
}
.ref-trend-glow {
  position: absolute;
  top: -30%; right: -20%;
  width: 70%; height: 90%;
  background: radial-gradient(circle, rgba(212,255,79,0.35), transparent 65%);
  filter: blur(40px);
  pointer-events: none;
}
.ref-trend-text { position: relative; display: flex; flex-direction: column; gap: 14px; }
.ref-trend-mono {
  font-family: var(--f-mono); font-size: 10px;
  letter-spacing: 0.02em;
  color: #D4FF4F;
}
.ref-trend-title {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: clamp(1.6rem, 2.6vw, 2rem);
  letter-spacing: -0.035em;
  line-height: 0.95;
  color: #F2EDE0;
}
.ref-trend-title em { font-family: var(--f-serif); font-style: italic; font-weight: 400; color: #D4FF4F; }
.ref-trend-engines { display: flex; gap: 5px; flex-wrap: wrap; }
.ref-trend-engines span {
  font-family: var(--f-mono); font-size: 9px;
  padding: 4px 8px;
  border-radius: var(--r-full);
  border: 1px solid rgba(212,255,79,0.3);
  color: #D4FF4F;
}
.ref-trend-bars {
  display: flex; flex-direction: column; gap: 5px;
  margin-top: 6px;
}
.ref-trend-bars > div {
  height: 4px;
  background: linear-gradient(90deg, #D4FF4F, rgba(212,255,79,0.3));
  border-radius: 2px;
}

/* Preview: Ezgi */
.ref-ezgi {
  background: linear-gradient(160deg, #E8E5D8 0%, #C9C2AB 100%);
  padding: 24px;
}
.ref-ezgi-frame {
  display: flex; flex-direction: column; gap: 8px;
  text-align: center;
  color: #1F3A1E;
}
.ref-ezgi-brand {
  font-family: var(--f-display); font-weight: 700; font-size: 16px;
  letter-spacing: 0.04em;
}
.ref-ezgi-tag { font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.02em; opacity: 0.7; }
.ref-ezgi-art { display: flex; justify-content: center; margin: 6px 0; }
.ref-ezgi-art svg { width: 70%; max-width: 200px; }
.ref-ezgi-cta {
  display: inline-block;
  align-self: center;
  padding: 8px 14px;
  background: #1F3A1E;
  color: #E8E5D8;
  font-family: var(--f-mono); font-size: 10px;
  border-radius: var(--r-full);
}

/* Preview: İleri */
.ref-ileri {
  background: linear-gradient(135deg, #F2EBD6 0%, #D9C28A 100%);
  padding: 24px;
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
}
.ref-ileri-grid {
  position: absolute;
  inset: 24px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(4, 1fr);
  gap: 4px;
  z-index: 1;
}
.ref-ileri-cell { background: #2D1A0A; border-radius: 2px; }
.ref-ileri-text { position: relative; z-index: 2; align-self: flex-end; color: #2D1A0A; padding-top: 90%; }
.ref-ileri-mono { font-family: var(--f-mono); font-size: 10px; opacity: 0.65; }
.ref-ileri-title {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: clamp(1.4rem, 2vw, 1.7rem);
  letter-spacing: -0.03em;
  line-height: 1;
}
.ref-ileri-title em { font-family: var(--f-serif); font-style: italic; font-weight: 400; color: #8A4F1A; }

/* Preview: Medya */
.ref-medya {
  background: #1A1814;
  padding: 24px;
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
}
.ref-medya-frame {
  display: flex; flex-direction: column;
  height: 100%;
  color: #FAF4E8;
}
.ref-medya-bars {
  display: flex; gap: 4px; align-items: flex-end;
  height: 40%;
  margin-bottom: 10px;
}
.ref-medya-bars > div {
  flex: 1;
  background: linear-gradient(180deg, #FF5DC8, #FF8A47);
  border-radius: 3px 3px 0 0;
  min-height: 20%;
}
.ref-medya-rec {
  font-family: var(--f-mono); font-size: 9px;
  display: inline-flex; align-items: center; gap: 6px;
  color: #FF5DC8;
}
.ref-medya-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #FF5DC8;
  animation: pulse 1.4s infinite;
}
.ref-medya-title {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: clamp(1.3rem, 2vw, 1.7rem);
  letter-spacing: -0.03em;
  margin-top: 8px;
}
.ref-medya-title em { font-family: var(--f-serif); font-style: italic; font-weight: 400; color: #FF8A47; }
.ref-medya-tag { font-family: var(--f-mono); font-size: 9px; opacity: 0.6; margin-top: 4px; }

/* Preview: Ofis */
.ref-ofis {
  background: linear-gradient(160deg, #EFF7F5 0%, #B6C9C0 100%);
  padding: 28px;
  flex-direction: row;
  align-items: stretch;
}
.ref-ofis-stack {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 20px;
  width: 100%;
  align-items: center;
}
.ref-ofis-windows {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(4, 1fr);
  gap: 6px;
  height: 100%;
  min-height: 140px;
}
.ref-ofis-w { background: #2E3D2C; border-radius: 4px; }
.ref-ofis-text {
  color: #143832;
  display: flex; flex-direction: column; gap: 10px;
  justify-content: center;
}
.ref-ofis-mono { font-family: var(--f-mono); font-size: 10px; opacity: 0.65; }
.ref-ofis-title {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
  letter-spacing: -0.035em;
  line-height: 0.98;
}
.ref-ofis-title em { font-family: var(--f-serif); font-style: italic; font-weight: 400; color: #2E3D2C; }
.ref-ofis-meta {
  display: flex; gap: 16px; flex-wrap: wrap;
  font-family: var(--f-mono); font-size: 10px;
  margin-top: 6px;
}
.ref-ofis-meta strong { font-family: var(--f-display); font-weight: 600; font-size: 14px; }
@media (max-width: 600px) { .ref-ofis-stack { grid-template-columns: 1fr; } .ref-ofis-windows { min-height: 90px; max-height: 120px; } }

/* ---------- TESTIMONIALS ---------- */
.testi-card {
  background: var(--glass);
  backdrop-filter: blur(20px) saturate(150%);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: clamp(36px, 5vw, 64px);
  max-width: 950px;
  margin: 0 auto;
  position: relative;
}
.testi-stars {
  color: var(--lime);
  font-size: 18px;
  letter-spacing: 2px;
  margin-bottom: 24px;
}
.testi-quote {
  margin: 0;
  font-family: var(--f-display);
  font-weight: 500;
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  line-height: 1.3;
  letter-spacing: -0.025em;
  color: var(--ink);
}
.testi-foot {
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.testi-author { display: flex; gap: 14px; align-items: center; }
.testi-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--lime);
  color: var(--bg);
  display: grid; place-items: center;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 18px;
  box-shadow: 0 0 16px rgba(212,255,79,0.4);
}
.testi-author strong {
  display: block;
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 15px;
  color: var(--ink);
}
.testi-author span {
  display: block;
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--ink-dim);
  margin-top: 4px;
}
.testi-dots { display: flex; gap: 8px; }
.testi-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  transition: background-color .2s, transform .2s;
}
.testi-dot.on { background: var(--lime); transform: scale(1.2); }
.testi-dot:hover { background: rgba(212,255,79,0.5); }

/* ---------- FOUNDER ---------- */
.founder-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}
@media (max-width: 900px) { .founder-grid { grid-template-columns: 1fr; } }
.founder-portrait {
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid var(--line-mid);
  aspect-ratio: 4/5;
  position: relative;
}
.founder-portrait svg { width: 100%; height: 100%; }
.founder-text h2 {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: clamp(2rem, 4.6vw, 3.6rem);
  letter-spacing: -0.04em;
  line-height: 0.96;
  margin: 18px 0 24px;
}
.founder-text h2 em {
  font-family: var(--f-serif);
  font-style: italic;
  font-weight: 400;
  background: linear-gradient(135deg, var(--lime), var(--cyan));
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}
.founder-text p {
  font-size: clamp(15px, 1.2vw, 17px);
  line-height: 1.55;
  color: var(--ink-mid);
  margin: 0 0 16px 0;
}
.founder-sign {
  margin-top: 28px !important;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  font-family: var(--f-serif);
  font-style: italic;
  font-size: clamp(1.1rem, 1.6vw, 1.4rem) !important;
  color: var(--ink) !important;
  letter-spacing: -0.01em;
}
.founder-sign span {
  display: block;
  font-family: var(--f-mono);
  font-style: normal;
  font-size: 12px;
  letter-spacing: 0.02em;
  color: var(--ink-dim);
  margin-top: 6px;
}

/* ---------- ECOSYSTEM ---------- */
.eco-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}
@media (max-width: 1000px) { .eco-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .eco-grid { grid-template-columns: 1fr; } }

.eco-card {
  background: var(--glass);
  backdrop-filter: blur(16px) saturate(150%);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 22px;
  display: flex; gap: 14px; align-items: center;
  transition: border-color .2s, transform .25s;
}
.eco-card:hover { border-color: var(--line-hi); transform: translateY(-3px); }
.eco-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--lime);
  color: var(--bg);
  display: grid; place-items: center;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 19px;
  flex-shrink: 0;
}
.eco-meta { flex: 1; min-width: 0; }
.eco-name {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.eco-desc {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.02em;
  color: var(--ink-dim);
  margin-top: 4px;
}
.eco-arr {
  color: var(--ink-dim);
  font-size: 18px;
  transition: transform .25s, color .25s;
}
.eco-card:hover .eco-arr { color: var(--lime); transform: translate(3px, -3px); }

/* ---------- ESTIMATOR ---------- */
/* Sadeleştirilmiş hâli: sektör/sayfa/AI/bakım/süre kaldırıldı. Sadece
   büyük bir "Ücretsiz teklif iste" CTA'sı (form modalını açar) ve altında
   güven veren bir cevap-süresi rozet. Eski .est-card stili aşağıda
   referans için duruyor — kullanılmıyor. */
.est-simple {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  padding: clamp(36px, 5vw, 64px) clamp(24px, 3vw, 48px);
  border-radius: var(--r-xl);
  background: var(--glass);
  backdrop-filter: blur(20px) saturate(150%);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
  border: 1px solid var(--line-mid);
  text-align: center;
}
.est-simple-cta {
  padding: 20px 36px;
  font-size: 14px;
  letter-spacing: 0.03em;
  /* The CTA is the whole point of this section — make it pop. */
  box-shadow: 0 0 40px rgba(212, 255, 79, 0.18);
}
.est-simple-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 56px rgba(212, 255, 79, 0.35);
}
.est-simple-meta {
  font-family: var(--f-mono);
  font-size: 11.5px;
  letter-spacing: 0.04em;
  color: var(--ink-dim);
  display: inline-flex; align-items: center; gap: 8px;
}
.est-simple-meta .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 10px var(--lime);
}

.est-card {
  background: var(--glass);
  backdrop-filter: blur(20px) saturate(150%);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: clamp(28px, 4vw, 48px);
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(28px, 4vw, 56px);
}
@media (max-width: 900px) { .est-card { grid-template-columns: 1fr; } }

.est-controls { display: flex; flex-direction: column; gap: 26px; }
.est-field { display: flex; flex-direction: column; gap: 10px; }
.est-field label {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.02em;
  color: var(--ink-mid);
  display: flex; justify-content: space-between;
}
.est-field label span {
  font-family: var(--f-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--lime);
  letter-spacing: -0.02em;
}
.est-field select {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--line-mid);
  color: var(--ink);
  padding: 14px 16px;
  border-radius: var(--r-md);
  font-family: var(--f-display);
  font-size: 15px;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M2 4l4 4 4-4' stroke='%23D4FF4F' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
}
.est-field input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  width: 100%; height: 4px;
  background: linear-gradient(to right, var(--lime) 0%, var(--lime) var(--p, 30%), rgba(255,255,255,0.1) var(--p, 30%));
  border-radius: 4px;
  outline: none;
  cursor: pointer;
}
.est-field input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--lime);
  cursor: grab;
  box-shadow: 0 0 12px rgba(212,255,79,0.5);
}
.est-field input[type="range"]::-moz-range-thumb {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--lime);
  border: none;
  cursor: grab;
}
.est-range-meta {
  display: flex; justify-content: space-between;
  font-family: var(--f-mono);
  font-size: 10px;
  color: var(--ink-dim);
}

.est-toggles { display: flex; flex-direction: column; gap: 12px; }
.est-toggle {
  display: flex; gap: 12px; align-items: center;
  font-family: var(--f-display);
  font-size: 15px;
  color: var(--ink);
  cursor: pointer;
  user-select: none;
}
.est-toggle input { display: none; }
.est-switch {
  width: 40px; height: 22px;
  border-radius: 22px;
  background: rgba(255,255,255,0.1);
  position: relative;
  flex-shrink: 0;
  transition: background-color .25s;
}
.est-switch::before {
  content: '';
  position: absolute;
  top: 3px; left: 3px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--ink-mid);
  transition: transform .25s, background-color .25s;
}
.est-toggle input:checked + .est-switch { background: rgba(212,255,79,0.3); }
.est-toggle input:checked + .est-switch::before { background: var(--lime); transform: translateX(18px); box-shadow: 0 0 10px var(--lime); }

.est-result {
  background: rgba(0,0,0,0.2);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(24px, 3vw, 36px);
  display: flex; flex-direction: column; gap: 18px;
}
.est-label {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.02em;
  color: var(--ink-dim);
  margin-bottom: 6px;
}
.est-num {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 1;
  letter-spacing: -0.04em;
  background: linear-gradient(135deg, var(--lime), var(--cyan));
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}
.est-num span {
  font-size: 0.5em;
  background: none;
  -webkit-text-fill-color: var(--ink-mid);
  font-weight: 500;
  margin-left: 6px;
}
.est-small { font-size: 12px; color: var(--ink-dim); margin-top: 8px; }

.est-quote {
  position: relative;
  padding: 6px 0 4px;
}
.est-quote-mark {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.05em;
  line-height: 1;
  color: var(--lime);
  opacity: 0.7;
  margin-bottom: 14px;
}
.est-quote-label {
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-dim);
  margin-bottom: 10px;
}
.est-quote-title {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(1.5rem, 3.2vw, 2.1rem);
  letter-spacing: -0.025em;
  line-height: 1.05;
  color: var(--ink);
  margin: 0 0 14px 0;
}
.est-quote-title em {
  font-family: var(--f-serif);
  font-style: italic;
  font-weight: 400;
  background: linear-gradient(95deg, var(--lime), var(--cyan) 70%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.est-quote-body {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-mid);
}
.est-quote-body em {
  font-family: var(--f-serif);
  font-style: italic;
  color: var(--lime);
  font-weight: 400;
  font-size: 1.05em;
}

.est-extra {
  margin-top: 10px;
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  padding: 6px 12px;
  border-radius: 8px;
  background: rgba(93, 231, 255, 0.08);
  border: 1px solid rgba(93, 231, 255, 0.18);
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 15px;
  color: var(--cyan);
  white-space: nowrap;
  flex-wrap: nowrap;
  max-width: 100%;
}
.est-extra span { font-family: var(--f-mono); font-size: 10.5px; font-weight: 500; color: var(--ink-dim); letter-spacing: 0.02em; text-transform: uppercase; margin-left: 4px; white-space: nowrap; }
.est-rule { height: 1px; background: var(--line); }
.est-cta { margin-top: auto; align-self: stretch; justify-content: center; }

/* ---------- FAQ ---------- */
.faq-list {
  background: var(--glass);
  backdrop-filter: blur(20px) saturate(150%);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  overflow: hidden;
}
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-item:last-child { border-bottom: none; }
.faq-q {
  width: 100%;
  text-align: left;
  display: grid;
  grid-template-columns: 60px 1fr 40px;
  gap: 18px;
  align-items: center;
  padding: 22px clamp(20px, 3vw, 32px);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  transition: background-color .2s;
}
.faq-q:hover { background: rgba(255,255,255,0.03); }
.faq-num {
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.02em;
  color: var(--lime);
}
.faq-q-text {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  letter-spacing: -0.02em;
  line-height: 1.3;
}
.faq-toggle {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--line-mid);
  position: relative;
  transition: background-color .25s, transform .3s, border-color .2s;
  justify-self: end;
}
.faq-toggle::before, .faq-toggle::after {
  content: '';
  position: absolute; top: 50%; left: 50%;
  width: 12px; height: 1.5px;
  background: var(--ink-mid);
  transform: translate(-50%, -50%);
  transition: transform .3s, background-color .25s;
}
.faq-toggle::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq-item.open .faq-toggle {
  background: var(--lime);
  border-color: var(--lime);
}
.faq-item.open .faq-toggle::before { background: var(--bg); }
.faq-item.open .faq-toggle::after { background: var(--bg); transform: translate(-50%, -50%) rotate(0deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s cubic-bezier(.2,.7,.2,1);
}
.faq-item.open .faq-a { max-height: 480px; }
.faq-a-inner { padding: 0 clamp(20px, 3vw, 32px) 24px 96px; }
.faq-a p {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-mid);
  max-width: 70ch;
}
@media (max-width: 700px) {
  .faq-q { grid-template-columns: 36px 1fr 32px; gap: 12px; padding: 18px; }
  .faq-a-inner { padding: 0 18px 20px 18px; }
}

/* ---------- INSTAGRAM POSTS ---------- */
.ig-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
@media (max-width: 900px) { .ig-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .ig-grid { grid-template-columns: 1fr; max-width: 380px; margin: 0 auto; } }

.ig-post {
  aspect-ratio: 1/1;
  border-radius: var(--r-md);
  overflow: hidden;
  display: grid;
  grid-template-rows: auto 1fr auto;
  padding: 16px;
  position: relative;
  transition: transform .35s cubic-bezier(.2,.7,.2,1);
}
.ig-post:hover { transform: scale(1.02); z-index: 2; }
.ig-post-top { display: flex; justify-content: space-between; align-items: center; gap: 10px; }
.ig-post-handle {
  display: flex; gap: 6px; align-items: center;
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: 0.02em;
}
.ig-post-dot { width: 8px; height: 8px; border-radius: 50%; }
.ig-post-tag {
  font-family: var(--f-mono);
  font-size: 9px;
  letter-spacing: 0.02em;
  padding: 4px 8px;
  border-radius: var(--r-full);
  border: 1px solid;
  opacity: 0.85;
}
.ig-post-mid {
  display: grid; place-items: center;
  padding: 16px;
}
.ig-post-mid svg {
  width: 100%; max-width: 140px;
  max-height: 100%;
}
.ig-post-bot { display: flex; flex-direction: column; gap: 6px; }
.ig-post-sector {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.02em;
  opacity: 0.65;
}
.ig-post-headline {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: clamp(0.95rem, 1.3vw, 1.15rem);
  letter-spacing: -0.025em;
  line-height: 1.15;
  white-space: pre-line;
}
.ig-post-cta {
  margin-top: 6px;
  align-self: flex-start;
  padding: 5px 10px;
  border-radius: var(--r-full);
  font-family: var(--f-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

/* ---------- STICKY CTA ---------- */
.sticky-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 60;
  padding: 12px clamp(16px, 3vw, 32px);
  background: rgba(8, 6, 16, 0.85);
  backdrop-filter: blur(22px) saturate(150%);
  -webkit-backdrop-filter: blur(22px) saturate(150%);
  border-top: 1px solid var(--line-mid);
  transform: translateY(100%);
  transition: transform .35s cubic-bezier(.2,.7,.2,1);
}
.sticky-cta.on { transform: translateY(0); }
.sticky-cta-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  position: relative;
  padding-right: 36px;
}
.sticky-cta-text {
  font-family: var(--f-display);
  font-size: 14px;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.sticky-cta-text strong { font-weight: 600; color: var(--lime); }
.sticky-cta-text span { color: var(--ink-mid); }
.sticky-cta-row { display: flex; gap: 8px; flex-wrap: wrap; }
.sticky-cta-btn {
  display: inline-flex; gap: 8px; align-items: center;
  padding: 11px 18px;
  border-radius: var(--r-full);
  font-family: var(--f-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: background-color .2s, color .2s;
}
.sticky-cta-btn.primary { background: var(--lime); color: var(--bg); }
.sticky-cta-btn.primary:hover { background: var(--ink); color: var(--lime); }
.sticky-cta-btn.ghost { color: var(--ink); border: 1px solid var(--line-mid); }
.sticky-cta-btn.ghost:hover { background: rgba(255,255,255,0.05); }
.sticky-cta-close {
  position: absolute;
  top: 50%; right: 0;
  transform: translateY(-50%);
  width: 28px; height: 28px;
  display: grid; place-items: center;
  color: var(--ink-dim);
  font-size: 20px;
  border-radius: 50%;
  transition: color .2s, background-color .2s;
}
.sticky-cta-close:hover { color: var(--ink); background: rgba(255,255,255,0.1); }
@media (max-width: 700px) {
  .sticky-cta-inner { flex-direction: column; align-items: flex-start; gap: 10px; padding-right: 28px; }
  .sticky-cta-text { font-size: 13px; }
}

/* ---------- WHATSAPP FLOAT ---------- */
.wa-float {
  position: fixed;
  bottom: 88px; right: 22px;
  z-index: 55;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: white;
  display: grid; place-items: center;
  box-shadow: 0 14px 32px -8px rgba(37, 211, 102, 0.5);
  transition: transform .2s;
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 28px; height: 28px; }
@media (max-width: 700px) {
  .wa-float { bottom: 130px; right: 16px; width: 50px; height: 50px; }
  .wa-float svg { width: 24px; height: 24px; }
}

/* ---------- FORM MODAL ---------- */
.form-modal {
  position: fixed;
  inset: 0; z-index: 80;
  background: rgba(7,6,14,0.75);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  display: grid; place-items: center;
  padding: clamp(16px, 3vw, 32px);
  animation: ovIn .3s ease;
}
.form-card {
  background: rgba(13, 11, 31, 0.95);
  backdrop-filter: blur(30px) saturate(150%);
  border: 1px solid var(--line-mid);
  border-radius: var(--r-xl);
  padding: clamp(28px, 4vw, 44px);
  width: min(540px, 96vw);
  max-height: 92vh;
  overflow: auto;
  position: relative;
  animation: modIn .4s cubic-bezier(.2,.7,.2,1);
  box-shadow: 0 40px 100px -20px rgba(125,75,255,0.4);
}
.form-close {
  position: absolute;
  top: 14px; right: 14px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--lime);
  color: var(--bg);
  display: grid; place-items: center;
  font-size: 22px;
  z-index: 3;
  transition: transform .25s, background-color .25s;
}
.form-close:hover { transform: rotate(90deg); }

.form-head { margin-bottom: 24px; }
.form-head h3 {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
  letter-spacing: -0.035em;
  line-height: 1.0;
  margin: 14px 0 10px;
}
.form-head h3 em {
  font-family: var(--f-serif);
  font-style: italic;
  font-weight: 400;
  background: linear-gradient(135deg, var(--lime), var(--cyan));
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}
.form-head p { margin: 0; font-size: 14px; color: var(--ink-mid); }

.form-fields { display: flex; flex-direction: column; gap: 14px; margin-bottom: 18px; }
.form-fields label { display: flex; flex-direction: column; gap: 6px; }
.form-fields label > span {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.02em;
  color: var(--ink-dim);
}
.form-fields label > span em { font-style: italic; font-family: inherit; opacity: 0.7; }
.form-fields input, .form-fields select, .form-fields textarea {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--line-mid);
  color: var(--ink);
  padding: 12px 14px;
  border-radius: var(--r-md);
  font-family: var(--f-display);
  font-size: 14.5px;
  outline: none;
  transition: border-color .2s, background-color .2s;
}
.form-fields input:focus, .form-fields select:focus, .form-fields textarea:focus {
  border-color: var(--lime);
  background: rgba(212,255,79,0.04);
}
.form-fields textarea { resize: vertical; min-height: 70px; font-family: var(--f-body, var(--f-display)); }
.form-submit { flex: 1; justify-content: center; }

/* Two-button row for the form: Mail (lime primary) on the left, WhatsApp
   on the right. They share width when there's room, stack when narrow. */
.form-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.form-wa {
  flex: 1;
  justify-content: center;
  background: #25D366;
  color: #fff;
  border: 1px solid #25D366;
  padding: 16px 22px;
  border-radius: var(--r-full);
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-weight: 600;
  display: inline-flex; align-items: center; gap: 10px;
  cursor: pointer;
  transition: background-color .25s, transform .2s, box-shadow .3s;
}
.form-wa:hover {
  background: #1da855;
  border-color: #1da855;
  box-shadow: 0 0 32px rgba(37, 211, 102, 0.35);
}
@media (max-width: 480px) {
  .form-actions { flex-direction: column; }
  .form-submit, .form-wa { width: 100%; flex: none; }
}

.form-kvkk {
  margin-top: 14px;
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: 0.01em;
  color: var(--ink-dim);
  line-height: 1.5;
}
.form-kvkk a { color: var(--lime); }

.form-thanks { text-align: center; padding: 20px 0; }
.form-thanks-mark {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--lime);
  color: var(--bg);
  display: grid; place-items: center;
  font-size: 32px;
  font-weight: 700;
  margin: 0 auto 18px;
  box-shadow: 0 0 32px rgba(212,255,79,0.4);
}
.form-thanks h3 {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 1.8rem;
  letter-spacing: -0.03em;
  margin: 0 0 10px;
}
.form-thanks p { color: var(--ink-mid); font-size: 14.5px; max-width: 36ch; margin: 0 auto; }

/* ---------- LOADER ---------- */
.loader {
  position: fixed;
  inset: 0; z-index: 100;
  background: var(--bg);
  display: grid; place-items: center;
  animation: loaderOut 0.6s ease 0.9s forwards;
}
@keyframes loaderOut {
  to { opacity: 0; visibility: hidden; }
}
.loader-inner { display: flex; flex-direction: column; align-items: center; gap: 18px; }
.loader-mark svg { width: 60px; height: 60px; }
.loader-text {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 19px;
  letter-spacing: 0.04em;
  color: var(--ink);
}
.loader-meta {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.02em;
  color: var(--ink-dim);
}

/* ---------- TICKER ---------- */
.ticker {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 12px clamp(16px, 3vw, 28px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(0,0,0,0.2);
  overflow: hidden;
  margin-top: clamp(80px, 12vw, 140px);
}
.ticker-label {
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: 0.02em;
  color: var(--lime);
  display: flex; gap: 6px; align-items: center;
  flex-shrink: 0;
}
.ticker-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 8px var(--lime);
  animation: pulse 1.6s infinite;
}
.ticker-list {
  display: flex;
  gap: 28px;
  overflow: hidden;
  flex: 1;
  white-space: nowrap;
}
.ticker-item {
  display: inline-flex; gap: 8px; align-items: center;
  font-family: var(--f-mono);
  font-size: 11.5px;
  color: var(--ink-mid);
}
.ticker-tag {
  padding: 3px 8px;
  border: 1px solid var(--line-mid);
  border-radius: var(--r-full);
  font-size: 10px;
  color: var(--ink);
}
.ticker-what { color: var(--ink); font-family: var(--f-display); font-size: 13px; letter-spacing: -0.015em; }
.ticker-when { color: var(--ink-dim); }
@media (max-width: 700px) {
  .ticker-list { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .ticker-list::-webkit-scrollbar { display: none; }
}

/* Update range slider progress via custom property */
input[type="range"] {
  --p: 30%;
}

/* ============================================================
   COOKIE BANNER — bottom-left glass card
   ============================================================ */
.cookie-banner {
  position: fixed;
  z-index: 95;
  left: clamp(12px, 2.5vw, 24px);
  bottom: clamp(12px, 2.5vw, 24px);
  width: min(420px, calc(100vw - 24px));
  animation: ckIn .5s cubic-bezier(.2,.7,.2,1);
  pointer-events: none;
}
.cookie-card {
  pointer-events: auto;
  background: rgba(10, 8, 22, 0.92);
  backdrop-filter: blur(28px) saturate(160%);
  -webkit-backdrop-filter: blur(28px) saturate(160%);
  border: 1px solid var(--line-mid);
  border-radius: var(--r-xl, 20px);
  padding: 20px 22px;
  box-shadow:
    0 30px 80px -20px rgba(0,0,0,0.6),
    0 0 0 1px rgba(212, 255, 79, 0.04) inset;
  position: relative;
  overflow: hidden;
}
.cookie-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(80% 60% at 0% 0%, rgba(212,255,79,0.06), transparent 60%),
    radial-gradient(60% 80% at 100% 100%, rgba(93,231,255,0.05), transparent 60%);
  pointer-events: none;
}
.cookie-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  position: relative;
}
.cookie-icon {
  width: 32px; height: 32px;
  display: grid; place-items: center;
  border-radius: 9px;
  background: rgba(212, 255, 79, 0.12);
  color: var(--lime);
  border: 1px solid rgba(212, 255, 79, 0.2);
}
.cookie-icon svg { width: 18px; height: 18px; }
.cookie-eyebrow {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-mid);
}
.cookie-body {
  font-family: var(--f-display);
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--ink);
  margin: 0 0 16px;
  position: relative;
}
.cookie-body strong { color: var(--lime); font-weight: 600; }
.cookie-prefs {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0 0 16px;
  padding: 12px;
  border-radius: 12px;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--line);
  position: relative;
}
.cookie-pref {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 4px;
  border-bottom: 1px solid var(--line);
  cursor: pointer;
}
.cookie-pref:last-child { border-bottom: none; }
.cookie-pref.locked { cursor: default; opacity: 0.85; }
.cookie-pref-l {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.cookie-pref-l strong {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 13px;
  color: var(--ink);
}
.cookie-pref-l em {
  font-style: normal;
  font-size: 11.5px;
  color: var(--ink-dim);
  line-height: 1.3;
}
.cookie-toggle {
  flex: none;
  width: 36px; height: 20px;
  border-radius: 999px;
  background: rgba(255,255,255,0.1);
  border: 1px solid var(--line-mid);
  position: relative;
  cursor: pointer;
  transition: background-color .2s, border-color .2s;
  padding: 0;
}
.cookie-toggle span {
  position: absolute;
  top: 50%; left: 2px;
  transform: translateY(-50%);
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--ink-mid);
  transition: left .2s, background-color .2s;
}
.cookie-toggle.on { background: rgba(212,255,79,0.25); border-color: var(--lime); }
.cookie-toggle.on span { left: 18px; background: var(--lime); }
.cookie-toggle.locked { cursor: not-allowed; }
.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  position: relative;
}
.cookie-btn {
  font-family: var(--f-mono);
  font-size: 11.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background-color .2s, color .2s, border-color .2s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.cookie-btn.primary {
  background: var(--lime);
  color: var(--bg);
  font-weight: 600;
}
.cookie-btn.primary:hover { background: var(--ink); color: var(--lime); }
.cookie-btn.ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-mid);
}
.cookie-btn.ghost:hover {
  background: rgba(255,255,255,0.06);
  border-color: var(--ink-mid);
}
.cookie-btn.link {
  background: transparent;
  color: var(--ink-mid);
  padding: 10px 6px;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: var(--line-mid);
}
.cookie-btn.link:hover { color: var(--lime); text-decoration-color: var(--lime); }
.cookie-foot {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  display: flex;
  gap: 8px;
  align-items: center;
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--ink-dim);
  position: relative;
}
.cookie-link {
  background: none;
  border: none;
  padding: 0;
  color: var(--ink-mid);
  font: inherit;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: var(--line-mid);
  transition: color .2s;
}
.cookie-link:hover { color: var(--lime); }

@keyframes ckIn {
  from { opacity: 0; transform: translateY(20px) scale(.98); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

@media (max-width: 700px) {
  .cookie-banner {
    left: 8px; right: 8px; bottom: 8px;
    width: auto;
  }
  .cookie-card { padding: 18px; }
}

/* ============================================================
   KVKK MODAL — long-form privacy text
   ============================================================ */
.kvkk-modal {
  position: fixed;
  inset: 0; z-index: 100;
  background: rgba(7,6,14,0.78);
  backdrop-filter: blur(22px) saturate(140%);
  -webkit-backdrop-filter: blur(22px) saturate(140%);
  display: grid; place-items: center;
  padding: clamp(12px, 3vw, 32px);
  animation: ovIn .3s ease;
}
.kvkk-card {
  background: rgba(13, 11, 31, 0.96);
  backdrop-filter: blur(30px) saturate(150%);
  border: 1px solid var(--line-mid);
  border-radius: var(--r-xl, 20px);
  padding: clamp(28px, 4vw, 44px);
  width: min(720px, 96vw);
  max-height: 92vh;
  overflow-y: auto;
  position: relative;
  animation: modIn .4s cubic-bezier(.2,.7,.2,1);
  box-shadow: 0 40px 100px -20px rgba(125,75,255,0.4);
}
.kvkk-close {
  position: absolute;
  top: 20px; right: 20px;
  width: 32px; height: 32px;
  border: 1px solid var(--line-mid);
  background: transparent;
  border-radius: 50%;
  color: var(--ink-mid);
  font-size: 18px;
  cursor: pointer;
  display: grid; place-items: center;
  transition: background-color .2s, color .2s, border-color .2s;
  z-index: 2;
}
.kvkk-close:hover { background: rgba(255,255,255,0.08); color: var(--ink); border-color: var(--ink-mid); }
.kvkk-head { margin-bottom: 20px; }
.kvkk-head .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-mid);
  margin-bottom: 12px;
}
.kvkk-head .eyebrow .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 8px var(--lime);
}
.kvkk-head h3 {
  font-family: var(--f-display);
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0 0 6px;
  line-height: 1.1;
}
.kvkk-head h3 em {
  font-family: var(--f-serif);
  font-style: italic;
  font-weight: 500;
  background: linear-gradient(110deg, var(--lime), var(--cyan));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.kvkk-head p {
  font-family: var(--f-mono);
  font-size: 12px;
  color: var(--ink-dim);
  margin: 0;
}
.kvkk-tabs {
  display: flex;
  gap: 4px;
  margin-bottom: 22px;
  padding: 4px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--line);
  border-radius: 999px;
  width: fit-content;
  max-width: 100%;
  overflow-x: auto;
}
.kvkk-tab {
  background: transparent;
  color: var(--ink-mid);
  border: none;
  padding: 9px 16px;
  border-radius: 999px;
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  cursor: pointer;
  white-space: nowrap;
  transition: background-color .2s, color .2s;
}
.kvkk-tab:hover { color: var(--ink); }
.kvkk-tab.on { background: var(--lime); color: var(--bg); font-weight: 600; }
.kvkk-content {
  font-family: var(--f-display);
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--ink-mid);
}
.kvkk-content h4 {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.005em;
  color: var(--ink);
  margin: 22px 0 8px;
}
.kvkk-content h4:first-child { margin-top: 0; }
.kvkk-content p {
  margin: 0 0 12px;
}
.kvkk-content p strong { color: var(--ink); font-weight: 600; }
.kvkk-content p em { color: var(--ink-dim); font-style: italic; }
.kvkk-content ul {
  margin: 0 0 14px;
  padding-left: 18px;
  list-style: none;
}
.kvkk-content ul li {
  position: relative;
  padding-left: 14px;
  margin-bottom: 6px;
}
.kvkk-content ul li::before {
  content: "";
  position: absolute;
  left: 0; top: 11px;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--lime);
}
.kvkk-content ul li strong { color: var(--ink); font-weight: 600; }
.kvkk-content ul li em { color: var(--ink-dim); font-style: italic; font-size: 13px; }
.kvkk-content a {
  color: var(--lime);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(212,255,79,0.4);
}
.kvkk-content a:hover { text-decoration-color: var(--lime); }
.kvkk-reset {
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 11px 18px;
  border-radius: 999px;
  border: 1px solid var(--line-mid);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  margin: 6px 0 6px;
  transition: background-color .2s, border-color .2s, color .2s;
}
.kvkk-reset:hover {
  background: var(--lime);
  border-color: var(--lime);
  color: var(--bg);
}

/* footer KVKK link */
.footer-kvkk-link {
  background: none;
  border: none;
  color: inherit;
  font: inherit;
  cursor: pointer;
  padding: 0;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: var(--line-mid);
  transition: color .2s, text-decoration-color .2s;
}
.footer-kvkk-link:hover { color: var(--lime); text-decoration-color: var(--lime); }

