/**
 * DerecePanel vitrin — Slack Design ilhamlı (düz renk, uzun gölge, alternatif grid)
 */

:root {
  --sd-beige: #f3efe6;
  --sd-ink: #1a1a1a;
  --sd-muted: #5c5c5c;
  --sd-peach: #ffccb0;
  --sd-forest: #1e4d3f;
  --sd-navy: #1e2f4a;
  --sd-plum: #2d1f3d;
  --sd-plum-soft: #e8e0f0;
  --sd-white: #ffffff;
  --sd-shadow: rgba(0, 0, 0, 0.22);
  --sd-radius: 4px;
  --sd-header-h: 64px;
  --sd-max: 1120px;
  --sd-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --sd-font: "Inter", system-ui, -apple-system, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

.sd-body {
  margin: 0;
  font-family: var(--sd-font);
  font-size: 1rem;
  line-height: 1.55;
  color: var(--sd-ink);
  background: var(--sd-beige);
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
}

.sd-skip {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 1000;
  padding: 0.65rem 1rem;
  background: var(--sd-ink);
  color: #fff;
  font-weight: 600;
}
.sd-skip:focus {
  left: 0;
}

/* —— Header —— */
.sd-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--sd-header-h);
  background: var(--sd-beige);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.sd-header.is-scrolled {
  border-bottom-color: rgba(0, 0, 0, 0.06);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
}

.sd-nav {
  max-width: var(--sd-max);
  margin: 0 auto;
  padding: 0 1.25rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.sd-brand {
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: -0.03em;
  color: var(--sd-ink);
  text-decoration: none;
  text-transform: lowercase;
}

.sd-brand:hover {
  text-decoration: none;
  opacity: 0.85;
}

.sd-nav__links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.sd-nav__links a {
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--sd-ink);
  text-decoration: none;
}

.sd-nav__links a:hover {
  text-decoration: underline;
}

.sd-nav__end {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.sd-nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.45rem 1.1rem 0.45rem 0.45rem;
  background: #fff;
  border: 3px solid var(--sd-ink);
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.92rem;
  letter-spacing: -0.02em;
  color: var(--sd-ink);
  text-decoration: none;
  box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.12);
  transition: transform 0.15s var(--sd-ease), box-shadow 0.2s, background 0.2s, color 0.2s;
}

.sd-nav__cta:hover {
  background: var(--sd-ink);
  color: #fff;
  text-decoration: none;
  box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.14);
}

.sd-nav__cta:active {
  transform: scale(0.98);
  box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.12);
}

.sd-nav__cta-icon {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  background: var(--sd-beige);
  border: 2px solid var(--sd-ink);
  border-radius: 50%;
  font-size: 0.82rem;
}

.sd-nav__cta:hover .sd-nav__cta-icon {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.45);
  color: #fff;
}

.sd-nav__toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: none;
  background: transparent;
  font-size: 1.2rem;
  cursor: pointer;
  color: var(--sd-ink);
  border-radius: 8px;
}

.sd-nav__toggle:hover {
  background: rgba(0, 0, 0, 0.06);
}

.sd-nav__drawer {
  display: none;
}

@media (max-width: 768px) {
  .sd-nav__links,
  .sd-nav__cta {
    display: none;
  }

  .sd-nav__toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .sd-nav__drawer {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--sd-header-h);
    left: 0;
    right: 0;
    background: var(--sd-beige);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    padding: 1rem 1.25rem 1.25rem;
    gap: 0.15rem;
    transform: translateY(-120%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.35s var(--sd-ease), opacity 0.25s;
    z-index: 99;
  }

  .sd-nav__drawer.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .sd-nav__drawer a {
    padding: 0.85rem 0.5rem;
    font-weight: 600;
    color: var(--sd-ink);
    text-decoration: none;
    border-radius: 8px;
  }

  .sd-nav__drawer a:hover {
    background: rgba(0, 0, 0, 0.05);
  }
}

#icerik {
  padding-top: var(--sd-header-h);
}

/* —— Buttons —— */
.sd-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.65rem 1.2rem;
  border-radius: 999px;
  font-family: inherit;
  font-weight: 700;
  font-size: 0.9rem;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s, opacity 0.2s, background 0.2s;
}

.sd-btn:active {
  transform: scale(0.98);
}

.sd-btn--dark {
  background: var(--sd-ink);
  color: #fff;
}

.sd-btn--dark:hover {
  opacity: 0.92;
  color: #fff;
  text-decoration: none;
}

.sd-btn--ghost {
  background: transparent;
  color: var(--sd-ink);
  border: 2px solid var(--sd-ink);
}

.sd-btn--ghost:hover {
  background: rgba(0, 0, 0, 0.05);
  text-decoration: none;
}

.sd-btn--outline {
  background: #fff;
  color: var(--sd-ink);
  border: 2px solid rgba(0, 0, 0, 0.15);
}

.sd-btn--outline:hover {
  border-color: var(--sd-ink);
  text-decoration: none;
}

.sd-btn--lg {
  padding: 0.85rem 1.5rem;
  font-size: 1rem;
}

.sd-btn--block {
  width: 100%;
}

/* —— Hero —— */
.sd-hero {
  position: relative;
  padding: clamp(2.5rem, 6vw, 4rem) 1.25rem clamp(3rem, 8vw, 5rem);
  background: var(--sd-beige);
  text-align: center;
}

.sd-hero__inner {
  max-width: 920px;
  margin: 0 auto;
}

.sd-hero__title {
  margin: 0 0 1.25rem;
  font-size: clamp(1.75rem, 4.2vw, 2.85rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.035em;
  color: var(--sd-ink);
}

.sd-hero__wave {
  margin-right: 0.15em;
}

.sd-hero__brand {
  font-weight: 800;
}

.sd-hero__lead {
  margin: 0 auto 2.5rem;
  max-width: 52ch;
  font-size: 1.15rem;
  color: var(--sd-muted);
  line-height: 1.6;
}

/* Desk illustration — long shadows */
.sd-hero__desk {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: center;
  gap: 1.25rem 1.5rem;
  margin-bottom: 2.5rem;
  min-height: 140px;
  padding: 0 clamp(0.5rem, 3vw, 2rem);
}

.sd-desk {
  position: relative;
  flex-shrink: 0;
}

.sd-desk--mug {
  width: 52px;
  height: 56px;
  background: #fff;
  border-radius: 4px 4px 10px 10px;
  box-shadow: 14px 14px 0 var(--sd-shadow);
  border: 2px solid var(--sd-ink);
}

.sd-desk__steam {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  width: 8px;
  height: 16px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.1);
  opacity: 0.85;
}

.sd-desk--books {
  width: 56px;
  height: 48px;
  background: linear-gradient(180deg, #f97316 0%, #f97316 33%, #3b82f6 33%, #3b82f6 66%, #22c55e 66%);
  border-radius: 4px;
  border: 2px solid var(--sd-ink);
  box-shadow: 14px 14px 0 var(--sd-shadow);
}

.sd-desk--ruler {
  width: 72px;
  height: 22px;
  background: #fde047;
  border: 2px solid var(--sd-ink);
  border-radius: 2px;
  box-shadow: 12px 12px 0 var(--sd-shadow);
}

.sd-desk--sphere {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #60a5fa 0%, #2563eb 100%);
  border: 2px solid var(--sd-ink);
  box-shadow: 12px 12px 0 var(--sd-shadow);
}

.sd-desk--glass {
  width: 40px;
  height: 40px;
  border: 3px solid var(--sd-ink);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 10px 10px 0 var(--sd-shadow);
}

.sd-desk--duck {
  width: 48px;
  height: 44px;
  border-radius: 50% 50% 45% 45%;
  background: #facc15;
  border: 2px solid var(--sd-ink);
  box-shadow: 12px 12px 0 var(--sd-shadow);
}

.sd-desk--laptop {
  width: 120px;
  height: 72px;
  background: #7c3aed;
  border-radius: 4px 4px 0 0;
  border: 2px solid var(--sd-ink);
  box-shadow: 16px 16px 0 var(--sd-shadow);
}

.sd-desk__screen {
  position: absolute;
  inset: 8px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 2px;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.sd-desk__screen::before {
  content: "";
  position: absolute;
  left: 6px;
  right: 6px;
  top: 10px;
  height: 4px;
  background: #e2e8f0;
  border-radius: 1px;
  box-shadow: 0 10px 0 #e2e8f0, 0 20px 0 #e2e8f0;
}

.sd-desk--laptop::after {
  content: "";
  position: absolute;
  left: -8px;
  right: -8px;
  bottom: -8px;
  height: 8px;
  background: #5b21b6;
  border: 2px solid var(--sd-ink);
  border-radius: 0 0 4px 4px;
}

.sd-hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

/* —— Showcase alternating —— */
.sd-showcase {
  padding: 0;
}

.sd-spotlight {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: min(420px, 70vh);
  align-items: stretch;
}

.sd-spotlight--flip .sd-spotlight__art {
  order: 2;
}

.sd-spotlight--flip .sd-spotlight__text {
  order: 1;
}

.sd-spotlight__art {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(2rem, 5vw, 4rem);
  min-height: 320px;
}

.sd-spotlight__art--peach {
  background: var(--sd-peach);
}

.sd-spotlight__art--forest {
  background: var(--sd-forest);
}

.sd-spotlight__art--navy {
  background: var(--sd-navy);
}

.sd-spotlight__art--plum-soft {
  background: var(--sd-plum-soft);
}

.sd-spotlight__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2rem, 5vw, 4rem) clamp(1.5rem, 4vw, 3.5rem);
  background: var(--sd-white);
}

.sd-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--sd-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 0 0 0.75rem;
}

.sd-spotlight__title {
  margin: 0 0 1rem;
  font-size: clamp(1.65rem, 2.8vw, 2.35rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.15;
  color: var(--sd-ink);
}

.sd-spotlight__desc {
  margin: 0 0 1rem;
  font-size: 1.05rem;
  color: var(--sd-muted);
  line-height: 1.65;
  max-width: 46ch;
}

.sd-spotlight__points {
  margin: 0 0 1.5rem;
  padding-left: 1.2rem;
  max-width: 50ch;
  color: var(--sd-ink);
  font-size: 0.95rem;
  line-height: 1.55;
}

.sd-spotlight__points li {
  margin-bottom: 0.45rem;
}

.sd-spotlight__points li:last-child {
  margin-bottom: 0;
}

.sd-byline {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin: 0;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--sd-ink);
}

.sd-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0d9488, #0f766e);
  border: 2px solid var(--sd-ink);
  flex-shrink: 0;
}

.sd-avatar--g2 {
  background: linear-gradient(135deg, #1e4d3f, #14532d);
}

.sd-avatar--g3 {
  background: linear-gradient(135deg, #1e3a5f, #1e2f4a);
}

.sd-avatar--g4 {
  background: linear-gradient(135deg, #7c3aed, #5b21b6);
}

/* Long-shadow flat illustrations */
.sd-illust {
  position: relative;
  width: min(280px, 85vw);
  height: 280px;
}

.sd-illust--optik .sd-illust__sheet {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 180px;
  height: 220px;
  background: #fff;
  border: 3px solid var(--sd-ink);
  border-radius: 6px;
  box-shadow: 18px 18px 0 rgba(0, 0, 0, 0.2);
}

.sd-illust--optik .sd-illust__bubbles {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -35%);
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  width: 150px;
  justify-content: center;
}

.sd-illust--optik .sd-illust__bubbles span {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--sd-ink);
  font-size: 0.65rem;
  font-weight: 800;
  display: grid;
  place-items: center;
  box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.15);
}

.sd-illust--optik .sd-illust__scan {
  position: absolute;
  left: 50%;
  top: 38%;
  transform: translateX(-50%);
  width: 160px;
  height: 3px;
  background: #ef4444;
  box-shadow: 0 0 0 2px var(--sd-ink);
  opacity: 0.85;
}

.sd-illust--deneme .sd-illust__clipboard {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 160px;
  height: 200px;
  background: #fef3c7;
  border: 3px solid var(--sd-ink);
  border-radius: 8px;
  box-shadow: 18px 18px 0 rgba(0, 0, 0, 0.25);
}

.sd-illust--deneme .sd-illust__clipboard::after {
  content: "";
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 48px;
  height: 16px;
  background: #94a3b8;
  border: 2px solid var(--sd-ink);
  border-radius: 4px 4px 0 0;
}

.sd-illust--deneme .sd-illust__key {
  position: absolute;
  left: 50%;
  top: 52%;
  transform: translate(-50%, -50%);
  display: flex;
  gap: 8px;
}

.sd-illust--deneme .sd-illust__key span {
  width: 22px;
  height: 22px;
  border-radius: 4px;
  background: #fff;
  border: 2px solid var(--sd-ink);
  box-shadow: 5px 5px 0 rgba(0, 0, 0, 0.15);
}

.sd-illust--deneme .sd-illust__stamp {
  position: absolute;
  right: 18%;
  bottom: 22%;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 3px solid #22c55e;
  background: rgba(34, 197, 94, 0.12);
  box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.15);
}

.sd-illust--karne .sd-illust__card {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
  height: 140px;
  background: linear-gradient(180deg, #fff 0%, #f1f5f9 100%);
  border: 3px solid var(--sd-ink);
  border-radius: 8px;
  box-shadow: 18px 18px 0 rgba(0, 0, 0, 0.28);
}

.sd-illust--karne .sd-illust__bars {
  position: absolute;
  left: 50%;
  top: 46%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 80px;
}

.sd-illust--karne .sd-illust__bars i {
  width: 16px;
  border-radius: 3px 3px 0 0;
  background: #38bdf8;
  border: 2px solid var(--sd-ink);
  box-shadow: 5px 5px 0 rgba(0, 0, 0, 0.12);
  list-style: none;
  display: block;
}

.sd-illust--karne .sd-illust__bars i:nth-child(1) {
  height: 35%;
}
.sd-illust--karne .sd-illust__bars i:nth-child(2) {
  height: 55%;
  background: #a78bfa;
}
.sd-illust--karne .sd-illust__bars i:nth-child(3) {
  height: 42%;
}
.sd-illust--karne .sd-illust__bars i:nth-child(4) {
  height: 70%;
  background: #f472b6;
}
.sd-illust--karne .sd-illust__bars i:nth-child(5) {
  height: 48%;
}

.sd-illust--karne .sd-illust__line {
  position: absolute;
  left: 50%;
  top: 62%;
  transform: translateX(-50%);
  width: 140px;
  height: 3px;
  background: #fbbf24;
  border-radius: 2px;
  box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.12);
}

.sd-illust--pdf .sd-illust__paper {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 170px;
  height: 210px;
  background: #fff;
  border: 3px solid var(--sd-ink);
  border-radius: 4px;
  box-shadow: 18px 18px 0 rgba(0, 0, 0, 0.18);
}

.sd-illust--pdf .sd-illust__paper::before {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  top: 24px;
  height: 3px;
  background: #e2e8f0;
  box-shadow: 0 14px 0 #e2e8f0, 0 28px 0 #e2e8f0, 0 42px 0 #e2e8f0;
}

.sd-illust--pdf .sd-illust__pdf-corner {
  position: absolute;
  right: 14%;
  bottom: 20%;
  padding: 0.35rem 0.5rem;
  background: #ef4444;
  color: #fff;
  font-weight: 800;
  font-size: 0.75rem;
  border: 2px solid var(--sd-ink);
  border-radius: 4px;
  box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.2);
}

.sd-illust--pdf .sd-illust__spark {
  position: absolute;
  top: 22%;
  right: 18%;
  width: 36px;
  height: 36px;
  background: #fbbf24;
  clip-path: polygon(50% 0%, 65% 35%, 100% 50%, 65% 65%, 50% 100%, 35% 65%, 0% 50%, 35% 35%);
  border: 2px solid var(--sd-ink);
  box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.15);
}

.sd-viewall {
  text-align: center;
  padding: 2.5rem 1.25rem 3rem;
  background: var(--sd-beige);
  margin: 0;
}

.sd-viewall a {
  font-weight: 700;
  font-size: 1.1rem;
  color: #2563eb;
  text-decoration: none;
}

.sd-viewall a:hover {
  text-decoration: underline;
}

/* —— Özellikler ızgarası —— */
.sd-features {
  padding: clamp(3rem, 7vw, 5rem) 1.25rem clamp(2.5rem, 5vw, 3.5rem);
  background: var(--sd-white);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.sd-features__inner {
  max-width: var(--sd-max);
  margin: 0 auto;
}

.sd-features__head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 2.5rem;
}

.sd-features__eyebrow {
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--sd-muted);
  margin: 0 0 0.5rem;
}

.sd-features__title {
  margin: 0 0 0.75rem;
  font-size: clamp(1.65rem, 3.5vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.12;
}

.sd-features__lead {
  margin: 0;
  font-size: 1.08rem;
  color: var(--sd-muted);
  line-height: 1.65;
}

.sd-features__lead a {
  color: #2563eb;
  font-weight: 700;
  text-decoration: underline;
}

.sd-features__lead a:hover {
  text-decoration: none;
}

.sd-features__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.1rem;
}

.sd-fcard {
  padding: 1.35rem 1.25rem;
  background: var(--sd-beige);
  border: 3px solid var(--sd-ink);
  border-radius: var(--sd-radius);
  box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.06);
  transition: transform 0.2s var(--sd-ease), box-shadow 0.2s;
}

.sd-fcard:hover {
  transform: translateY(-4px);
  box-shadow: 12px 12px 0 rgba(0, 0, 0, 0.08);
}

.sd-fcard__icon {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 2px solid var(--sd-ink);
  border-radius: 10px;
  font-size: 1.1rem;
  margin-bottom: 0.85rem;
}

.sd-fcard__h {
  margin: 0 0 0.45rem;
  font-size: 1.02rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.sd-fcard__p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--sd-muted);
  line-height: 1.5;
}

@media (max-width: 1024px) {
  .sd-features__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .sd-features__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .sd-spotlight,
  .sd-spotlight--flip {
    grid-template-columns: 1fr;
  }

  .sd-spotlight--flip .sd-spotlight__art,
  .sd-spotlight--flip .sd-spotlight__text {
    order: unset;
  }

  .sd-spotlight__art {
    min-height: 280px;
  }
}

/* —— Trust band —— */
.sd-band {
  padding: clamp(3rem, 6vw, 4.5rem) 1.25rem;
  background: #faf8f3;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.sd-band__inner {
  max-width: var(--sd-max);
  margin: 0 auto;
}

.sd-band__head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 2.25rem;
}

.sd-band__eyebrow {
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--sd-muted);
  margin: 0 0 0.5rem;
}

.sd-band__title {
  margin: 0 0 0.75rem;
  font-size: clamp(1.5rem, 4vw, 2.15rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.sd-band__lead {
  margin: 0;
  color: var(--sd-muted);
  font-size: 1.05rem;
  line-height: 1.65;
}

.sd-trust-detail {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.sd-tcard {
  padding: 1.35rem 1.3rem;
  background: #fff;
  border: 3px solid var(--sd-ink);
  border-radius: var(--sd-radius);
  box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.06);
}

.sd-tcard__top {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.65rem;
}

.sd-tcard__icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  background: var(--sd-beige);
  border: 2px solid var(--sd-ink);
  border-radius: 10px;
  font-size: 1.05rem;
}

.sd-tcard__h {
  margin: 0;
  font-size: 1.02rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.sd-tcard__p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--sd-muted);
  line-height: 1.55;
}

.sd-trust-strip {
  list-style: none;
  margin: 0;
  padding: 1rem 1.25rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 1.75rem;
  background: #fff;
  border: 3px solid var(--sd-ink);
  border-radius: var(--sd-radius);
  font-size: 0.88rem;
  font-weight: 700;
}

.sd-trust-strip li {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.sd-trust-strip i {
  color: var(--sd-forest);
  font-size: 0.85rem;
}

@media (max-width: 1024px) {
  .sd-trust-detail {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .sd-trust-detail {
    grid-template-columns: 1fr;
  }

  .sd-trust-strip {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* —— FAQ —— */
.sd-faq-wrap {
  padding: clamp(3rem, 6vw, 4.5rem) 1.25rem;
  background: var(--sd-white);
}

.sd-faq-inner {
  max-width: 640px;
  margin: 0 auto;
}

.sd-faq__page-title {
  margin: 0 0 1.5rem;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
}

.sd-faq__item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.sd-faq__item summary {
  padding: 1.1rem 0;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 1.02rem;
}

.sd-faq__item summary::-webkit-details-marker {
  display: none;
}

.sd-faq__item summary::after {
  content: "+";
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--sd-muted);
}

.sd-faq__item[open] summary::after {
  content: "−";
}

.sd-faq__item p {
  margin: 0 0 1.1rem;
  color: var(--sd-muted);
  line-height: 1.6;
}

/* —— Pricing —— */
.sd-pricing {
  padding: clamp(3rem, 6vw, 5rem) 1.25rem;
  background: var(--sd-beige);
}

.sd-pricing__inner {
  max-width: var(--sd-max);
  margin: 0 auto;
}

.sd-pricing__head {
  text-align: center;
  margin-bottom: 2.5rem;
}

.sd-pricing__h {
  margin: 0 0 0.35rem;
  font-size: clamp(1.65rem, 3vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.03em;
}

.sd-pricing__sub {
  margin: 0;
  color: var(--sd-muted);
}

.sd-price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  align-items: stretch;
}

.sd-price {
  position: relative;
  padding: 2rem 1.5rem;
  background: #fff;
  border: 3px solid var(--sd-ink);
  border-radius: var(--sd-radius);
  box-shadow: 0 0 0 0 var(--sd-ink);
  display: flex;
  flex-direction: column;
}

.sd-price--hit {
  box-shadow: 12px 12px 0 var(--sd-ink);
  transform: translate(-4px, -4px);
  z-index: 1;
  padding-top: 2.35rem;
}

.sd-price__badge {
  position: absolute;
  top: -11px;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.35rem 0.85rem;
  background: #f97316;
  color: #fff;
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border: 2px solid var(--sd-ink);
  border-radius: 999px;
}

.sd-price__name {
  margin: 0 0 0.25rem;
  font-size: 1.2rem;
  font-weight: 800;
}

.sd-price__tag {
  margin: 0 0 0.5rem;
  font-size: 0.82rem;
  color: var(--sd-muted);
  font-weight: 600;
}

.sd-price__amt {
  margin: 0 0 0.25rem;
  font-size: 1.85rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.sd-price__amt small {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--sd-muted);
}

.sd-price__hint {
  margin: 0 0 1.1rem;
  font-size: 0.78rem;
  color: #94a3b8;
}

.sd-price__list {
  margin: 0 0 1.5rem;
  padding: 0;
  list-style: none;
  flex: 1;
}

.sd-price__list li {
  position: relative;
  padding: 0.42rem 0 0.42rem 1.45rem;
  font-size: 0.9rem;
  color: var(--sd-muted);
}

.sd-price__list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  font-weight: 800;
  color: var(--sd-forest);
}

@media (max-width: 960px) {
  .sd-price-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .sd-price--hit {
    transform: none;
    box-shadow: 10px 10px 0 var(--sd-ink);
    order: -1;
  }
}

/* —— Footer —— */
.sd-footer {
  margin: 0;
}

.sd-footer__plum {
  background: var(--sd-plum);
  color: #e2e8f0;
  padding: 3rem 1.25rem 1.5rem;
}

.sd-footer__cols {
  max-width: var(--sd-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 2rem;
  align-items: start;
}

@media (max-width: 700px) {
  .sd-footer__cols {
    grid-template-columns: 1fr;
  }
}

.sd-footer__nav {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.sd-footer__nav a {
  color: #f8fafc;
  font-weight: 700;
  font-size: 1.05rem;
  text-decoration: none;
}

.sd-footer__nav a:hover {
  text-decoration: underline;
}

.sd-footer__blurb {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.65;
  color: #cbd5e1;
  max-width: 480px;
}

.sd-footer__blurb a {
  color: #a5f3fc;
  font-weight: 600;
}

.sd-footer__legal {
  max-width: var(--sd-max);
  margin: 2.5rem auto 0;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.82rem;
  color: #94a3b8;
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  align-items: center;
}

.sd-footer__legal a {
  color: #94a3b8;
  text-decoration: none;
}

.sd-footer__legal a:hover {
  color: #fff;
  text-decoration: underline;
}

.sd-footer__sep {
  opacity: 0.5;
}

/* Scroll reveal */
.sd-reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.65s var(--sd-ease), transform 0.65s var(--sd-ease);
}

.sd-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* —— Teklif modal (index-quote.js) —— */
.quote-modal {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
}

.quote-modal[hidden] {
  display: none !important;
}

.quote-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.5);
  backdrop-filter: blur(6px);
}

.quote-modal__panel {
  position: relative;
  width: 100%;
  max-width: 440px;
  max-height: min(92vh, 640px);
  overflow: auto;
  background: #fff;
  border-radius: 12px;
  border: 3px solid var(--sd-ink);
  box-shadow: 16px 16px 0 rgba(0, 0, 0, 0.1);
  padding: 1.35rem 1.5rem 1.5rem;
}

.quote-modal__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.35rem;
}

.quote-modal__head h2 {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.quote-modal__x {
  border: 2px solid var(--sd-ink);
  background: #fff;
  color: var(--sd-ink);
  width: 36px;
  height: 36px;
  border-radius: 8px;
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
}

.quote-modal__x:hover {
  background: #f1f5f9;
}

.quote-modal__lead {
  margin: 0 0 1.1rem;
  font-size: 0.92rem;
  color: var(--sd-muted);
}

.quote-modal__lead strong {
  color: var(--sd-forest);
}

.quote-modal__field {
  display: block;
  margin-bottom: 0.85rem;
}

.quote-modal__field span {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--sd-muted);
  margin-bottom: 0.35rem;
}

.quote-modal__field span small {
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
}

.quote-modal__field input,
.quote-modal__field textarea {
  width: 100%;
  padding: 0.65rem 0.85rem;
  border-radius: 8px;
  border: 2px solid rgba(0, 0, 0, 0.12);
  background: #fafafa;
  font: inherit;
  font-size: 0.95rem;
}

.quote-modal__field input:focus,
.quote-modal__field textarea:focus {
  outline: none;
  border-color: var(--sd-ink);
  background: #fff;
}

.quote-modal__field textarea {
  resize: vertical;
  min-height: 80px;
}

.quote-modal__msg {
  margin: 0 0 0.75rem;
  padding: 0.6rem 0.75rem;
  border-radius: 8px;
  font-size: 0.88rem;
  line-height: 1.45;
}

.quote-modal__msg--ok {
  background: rgba(34, 197, 94, 0.12);
  border: 2px solid rgba(34, 197, 94, 0.28);
  color: #166534;
}

.quote-modal__msg--err {
  background: rgba(239, 68, 68, 0.1);
  border: 2px solid rgba(239, 68, 68, 0.25);
  color: #b91c1c;
}

.quote-modal__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: flex-end;
  margin-top: 0.25rem;
}

.quote-modal__actions .sd-btn {
  min-width: 6rem;
}

/* Üretici kredisi — vitrin footer ile hizalı */
.site-credit--index {
  margin: 0;
  background: #1a1225;
  color: #64748b;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
