:root {
  /* Light theme (mobile-first) */
  --bg: #f6f7fb;
  --surface: rgba(255, 255, 255, 0.92);
  --surface-2: rgba(255, 255, 255, 0.78);
  --text: rgba(10, 20, 45, 0.92);
  --muted: rgba(10, 20, 45, 0.66);
  --border: rgba(10, 20, 45, 0.12);
  --shadow: 0 18px 45px rgba(10, 20, 45, 0.12);
  --shadow-soft: 0 12px 32px rgba(10, 20, 45, 0.1);

  /* Brand palette (modernized) */
  --brand-navy: #0b1b2b;
  --brand-gold: #f6c15a;
  --brand-gold-2: #d99722;
  --brand-red: #ff3b30;

  /* UI accents */
  --accent: var(--brand-gold);
  --accent-2: var(--brand-red);
  --accent-wp: #25d366;
  --radius: 16px;
  --radius-lg: 20px;
  /* Mobile-first layout */
  --container: 560px;
  --space: 16px;
  color-scheme: light;
}

[data-theme="light"] {
  --bg: #fbfaf7;
  --surface: rgba(255, 255, 255, 0.92);
  --surface-2: rgba(255, 255, 255, 0.78);
  --text: rgba(10, 20, 45, 0.92);
  --muted: rgba(10, 20, 45, 0.66);
  --border: rgba(10, 20, 45, 0.12);
  --shadow: 0 18px 45px rgba(10, 20, 45, 0.12);
  --shadow-soft: 0 12px 32px rgba(10, 20, 45, 0.1);
  --brand-navy: #0b1b2b;
  --brand-gold: #d8a13a;
  --brand-gold-2: #b97b18;
  --brand-red: #e2332a;
  --accent: var(--brand-gold);
  --accent-2: var(--brand-red);
  --accent-wp: #1fb85a;
  color-scheme: light;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

html {
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji",
    "Segoe UI Emoji";
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
  overflow-x: hidden;
  overscroll-behavior-x: none;
  touch-action: pan-y;
}

main {
  overflow-x: clip;
}

@supports not (overflow: clip) {
  main {
    overflow-x: hidden;
  }
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 0.95em;
}

a:focus-visible {
  outline: 3px solid rgba(246, 193, 90, 0.32);
  outline-offset: 2px;
  border-radius: 10px;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.container {
  width: min(var(--container), calc(100% - var(--space) * 2));
  margin-inline: auto;
}

.container {
  min-width: 0;
}

.muted {
  color: var(--muted);
}

.skip-link {
  position: absolute;
  left: 12px;
  top: 10px;
  padding: 10px 12px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 12px;
  transform: translateY(-120%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(16px);
  background: rgba(246, 247, 251, 0.9);
  border-bottom: 1px solid var(--border);
  overflow: visible;
}

[data-theme="light"] .site-header {
  background: rgba(247, 248, 251, 0.7);
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 0;
  min-width: 0;
}

.header-actions {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.header-actions .button {
  white-space: nowrap;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 650;
  letter-spacing: 0.2px;
  min-width: 0;
  position: relative;
}

a.brand {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  border-radius: 16px;
  outline-offset: 3px;
  -webkit-tap-highlight-color: transparent;
}

a.brand .brand-logo {
  pointer-events: none;
  user-select: none;
}

/* #page-top hedefi: sayfa başı (görsel taşma yok) */
.page-top-anchor {
  position: static;
  width: 0;
  height: 0;
  margin: 0;
  padding: 0;
  overflow: hidden;
  pointer-events: none;
}

.header-metric {
  flex: 0 0 auto;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  white-space: nowrap;
}

.header-metric[hidden] {
  display: none !important;
}

.header-metric-label {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 800;
}

.header-metric strong {
  font-variant-numeric: tabular-nums;
  font-weight: 900;
  color: var(--text);
}

.brand-mark {
  width: 28px;
  height: 28px;
  display: inline-grid;
  place-items: center;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(246, 193, 90, 0.95), rgba(255, 59, 48, 0.78));
  box-shadow: 0 10px 30px rgba(246, 193, 90, 0.14);
}

.brand-logo {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  object-fit: cover;
  background: transparent;
  border: 0;
  box-shadow: none;
  transform: none;
  display: block;
}

/* Mobile header layout: logo left, hamburger right */
.header-row {
  flex-wrap: nowrap;
  justify-content: space-between;
}

.brand {
  margin-left: 0;
  justify-content: flex-start;
}

.header-metric {
  flex: 0 0 auto;
}

/* Ensure hidden attribute always hides menu */
.mobile-menu[hidden] {
  display: none !important;
}

.icon-button {
  appearance: none;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  border-radius: 14px;
  width: 56px;
  height: 56px;
  display: inline-grid;
  place-items: center;
  box-shadow: var(--shadow-soft);
  margin-left: auto;
}

.icon-button:active {
  transform: translateY(1px);
}

.icon-button:focus-visible {
  outline: 3px solid rgba(246, 193, 90, 0.28);
  outline-offset: 2px;
}

.hamburger {
  width: 22px;
  height: 14px;
  position: relative;
  display: inline-block;
}

.hamburger::before,
.hamburger::after,
.hamburger {
  background: none;
}

.hamburger::before,
.hamburger::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  border-radius: 2px;
  background: color-mix(in oklab, var(--text), transparent 20%);
  transition: transform 180ms ease, top 180ms ease, opacity 180ms ease;
}

@supports not (background: color-mix(in oklab, black, white)) {
  .hamburger::before,
  .hamburger::after {
    background: var(--text);
  }

  .hamburger::before {
    box-shadow: 0 5px 0 0 var(--text);
  }
}

.hamburger::before {
  top: 0;
  box-shadow: 0 6px 0 0 color-mix(in oklab, var(--text), transparent 20%);
}

.hamburger::after {
  top: 12px;
}

.mobile-menu {
  position: absolute;
  left: 50%;
  top: calc(100% + 8px);
  transform: translateX(-50%);
  width: min(var(--container), calc(100% - var(--space) * 2));
  margin: 0;
  padding: 10px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
  display: grid;
  gap: 8px;
  z-index: 20;
}

.mobile-menu a {
  padding: 12px 12px;
  border-radius: 14px;
  background: var(--surface-2);
  font-weight: 650;
}

.mobile-menu a:active {
  transform: translateY(1px);
}

.mobile-menu a:hover {
  text-decoration: none;
}

img,
video {
  max-width: 100%;
}

/* Legacy stacked header rules removed (menu + logo only). */

@media (min-width: 520px) {
  :root {
    --container: 720px;
    --space: 18px;
  }

  .header-row {
    flex-wrap: nowrap;
    justify-content: space-between;
  }

  .header-actions {
    width: auto;
    justify-content: flex-end;
  }

  .header-actions .button {
    flex: 0 0 auto;
  }
}

.nav {
  display: none;
  gap: 14px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface);
}

.nav a {
  padding: 8px 10px;
  border-radius: 999px;
}

.nav a:hover {
  background: var(--surface-2);
  text-decoration: none;
}

/* Desktop nav intentionally disabled (mobile-only site). */

.button {
  appearance: none;
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(246, 193, 90, 0.98), rgba(217, 151, 34, 0.88));
  color: rgba(11, 27, 43, 0.92);
  padding: 10px 14px;
  border-radius: 999px;
  box-shadow: 0 14px 36px rgba(246, 193, 90, 0.14);
  cursor: pointer;
  font-weight: 600;
}

.button {
  min-height: 44px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.button:hover {
  filter: brightness(1.03);
  text-decoration: none;
}

.button:active {
  transform: translateY(1px);
}

.button:focus-visible {
  outline: 3px solid rgba(246, 193, 90, 0.32);
  outline-offset: 2px;
}

.button-ghost {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  box-shadow: none;
}

.howto-cta {
  width: 100%;
  justify-content: center;
  font-size: 0.98rem;
  font-weight: 750;
}

.cta-band__actions {
  display: grid;
  gap: 10px;
  width: 100%;
}

@media (min-width: 520px) {
  .cta-band__actions {
    width: auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
  }
}

.button-whatsapp {
  border-color: rgba(37, 211, 102, 0.35);
  background: linear-gradient(180deg, rgba(37, 211, 102, 0.95), rgba(31, 184, 90, 0.7));
  box-shadow: 0 14px 35px rgba(37, 211, 102, 0.18);
  width: 100%;
  font-weight: 800;
}

.whatsapp-icon-cta {
  display: flex;
  width: 100%;
  margin: 10px 0 14px;
  justify-content: center;
  border-radius: 999px; /* daha yuvarlak */
}

.hero {
  /* Header ile içerik arası daha sıkı olsun */
  padding: calc(clamp(22px, 4.5vw, 56px) + 6px) 0;
}

.hero-grid {
  display: grid;
  gap: 18px;
  align-items: start;
}

/* Keep single-column hero for mobile-first */

h1 {
  margin: 0 0 10px;
  font-size: clamp(30px, 8vw, 42px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--text);
  text-align: center;
}

h2 {
  margin: 0 0 14px;
  font-size: clamp(20px, 5.2vw, 26px);
  letter-spacing: -0.01em;
  color: var(--text);
}

h3 {
  margin: 0 0 8px;
  font-size: 18px;
  color: var(--text);
}

.hero-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.hero-actions .button {
  flex: 1 1 100%;
}

@media (min-width: 520px) {
  .hero-actions .button {
    flex: 0 0 auto;
  }
}

.partners-note {
  margin-top: 14px;
  padding: 12px 12px;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: rgba(10, 20, 45, 0.04);
}

.partners-note__title {
  margin: 0;
  font-weight: 850;
  color: var(--text);
  font-size: 0.92rem;
  line-height: 1.25;
}

.partners-note__text {
  margin: 8px 0 0;
  font-size: 0.86rem;
  line-height: 1.35;
}

.partners-logos {
  margin-top: 10px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.partners-logo-slot {
  border-radius: 14px;
  border: 1px dashed rgba(10, 20, 45, 0.22);
  background: #fff;
  min-height: 94px;
  display: grid;
  place-items: center;
  padding: 10px 12px;
}

.partners-logo-slot img {
  width: 100%;
  max-width: 286px;
  height: 65px;
  object-fit: contain;
  display: block;
  filter: saturate(1.02) contrast(1.02);
}

@media (max-width: 520px) {
  .partners-logos {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .partners-logo-slot img {
    max-width: 260px;
    height: 60px;
  }
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.05);
  color: var(--muted);
  margin: 0 0 14px;
}

.pill-stack {
  align-items: center;
}

.pill-text {
  display: grid;
  gap: 2px;
}

.pill-top {
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  line-height: 1.15;
}

.pill-bottom {
  color: var(--text);
  font-weight: 750;
  line-height: 1.2;
}

.live-metric {
  margin: -6px 0 14px;
  color: var(--muted);
}

.live-metric strong {
  color: var(--text);
  font-variant-numeric: tabular-nums;
}

.live-metric {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}

.live-metric::before {
  content: "";
  position: absolute;
  inset: -40% -60%;
  background: radial-gradient(circle at 30% 40%, rgba(246, 193, 90, 0.22), transparent 55%),
    radial-gradient(circle at 75% 65%, rgba(37, 211, 102, 0.14), transparent 58%);
  filter: blur(14px);
  opacity: 0.65;
  transform: translateX(-8%);
  pointer-events: none;
}

.live-metric > * {
  position: relative;
  z-index: 1;
}

.live-metric.is-bump strong {
  animation: metricBump 520ms cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes metricBump {
  0% {
    transform: translateY(0) scale(1);
  }
  35% {
    transform: translateY(-1px) scale(1.07);
  }
  100% {
    transform: translateY(0) scale(1);
  }
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--accent-wp);
  box-shadow: 0 0 0 6px rgba(37, 211, 102, 0.14);
  animation: dotPulse 1.2s ease-in-out infinite;
}

@keyframes dotPulse {
  0% {
    transform: scale(0.92);
    opacity: 0.55;
  }
  50% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(0.92);
    opacity: 0.55;
  }
}

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

.stats {
  margin: 18px 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.stat {
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.035);
}

.stat dt {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}

.stat dd {
  margin: 0;
  font-weight: 600;
}

@media (max-width: 519px) {
  .stats {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 520px) {
  .stats {
    grid-template-columns: repeat(3, 1fr);
  }
}

.card {
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: 16px;
  color: var(--text);
}

@supports not (background: var(--surface)) {
  .card {
    background: rgba(255, 255, 255, 0.06);
  }
}

.hero-card {
  align-self: stretch;
}

.card-title {
  margin: 0 0 10px;
}

.card-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.checklist {
  margin: 0;
  padding-left: 18px;
}

.checklist li {
  padding: 6px 0;
}

.section {
  padding: 22px 0 10px;
}

/* "Nasıl çalışır?" başlığı üst boşluğu biraz daha az olsun */
#nasil.section {
  padding-top: 12px;
}

.grid {
  display: grid;
  gap: 12px;
}

/* Mobile-first: 1 column */
.grid {
  grid-template-columns: 1fr;
}

@media (min-width: 520px) {
  .grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.section-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

/* Başlık + açıklama: üst üste, normal satır aralığı */
.section-intro {
  margin-bottom: 12px;
}

.section-intro h2 {
  margin: 0 0 6px;
}

.section-intro p {
  margin: 0;
}

/* Videolar başlığı: kutu görünümü */
.hero-videos-inline .section-intro {
  margin: 14px 0 12px;
  padding: 14px 14px;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: rgba(10, 20, 45, 0.04);
}

.hero-videos-inline .section-intro h2 {
  margin: 0 0 6px;
}

.hero-videos-inline .section-intro p {
  margin: 0;
}

.callout {
  margin-top: 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.video-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr;
  align-items: start;
}

@media (min-width: 520px) {
  .video-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.video-card {
  padding: 14px;
  min-width: 0;
  align-self: start;
}

.video-frame {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: rgba(10, 20, 45, 0.08);
  aspect-ratio: 16 / 10;
  display: grid;
  place-items: center;
  min-height: 0;
}

.video-frame video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: #000;
}

.video-frame--hero {
  position: relative;
  background: rgba(10, 20, 45, 0.06);
}

.video-frame--hero video {
  object-fit: cover;
  background: #000;
}

.video-poster {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #000;
  z-index: 1;
  opacity: 1;
  transition: opacity 220ms ease;
  pointer-events: none;
}

.video-frame--hero.is-playing .video-poster {
  opacity: 0;
}

.video-play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 72px;
  height: 72px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.9);
  color: var(--text);
  font-size: 28px;
  line-height: 1;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-soft);
  pointer-events: auto;
  z-index: 2;
}

.video-play.is-playing {
  width: 64px;
  height: 64px;
  font-size: 20px;
  background: rgba(255, 255, 255, 0.78);
}

/* Örnek ihale grid videoları: merkez oynat / duraklat (heroda tanitim gibi) */
.video-frame--grid {
  position: relative;
}

.video-card .video-frame--hero .video-play--grid,
.video-card .video-frame--grid .video-play--grid {
  width: 58px;
  height: 58px;
  min-width: 48px;
  min-height: 48px;
  font-size: 24px;
  z-index: 2;
  box-shadow: 0 10px 28px rgba(10, 20, 45, 0.2);
}

.video-card .video-frame--hero .video-play--grid.is-playing,
.video-card .video-frame--grid .video-play--grid.is-playing {
  width: 52px;
  height: 52px;
  font-size: 20px;
}

/* #videolar: hero ile aynı 16/9; taşan video yüksekliği grid hücresini bozmasın */
#videolar .video-card .video-frame--hero,
#videolar .video-card .video-frame--placeholder,
#videolar .video-card .video-frame--grid {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  min-height: 0;
}

#videolar .video-card .video-frame--hero video,
#videolar .video-card .video-frame--grid video {
  position: relative;
  z-index: 0;
}

/* #videolar içi hero stili: üst bölümdeki ile aynı “kart” (içeride tek kart) */
#videolar .video-card .hero-video {
  margin: 0;
  padding: 0;
  box-shadow: none;
}

#videolar .video-card .hero-video .video-frame {
  aspect-ratio: 16 / 9;
}

#videolar .video-card .hero-video .video-caption {
  margin: 10px 2px 0;
}

/* Henüz video yok: aynı kutu yüksekliği, sadece bilgi */
.video-frame--placeholder {
  border-style: dashed;
  border-color: var(--border);
  background: rgba(10, 20, 45, 0.04);
}

.video-placeholder-text {
  margin: 0;
  padding: 0 16px;
  text-align: center;
  font-size: 0.95rem;
  line-height: 1.4;
  max-width: 18rem;
}

.hero-video {
  margin: 12px 0 0;
  padding: 12px;
}

.hero-video .video-frame {
  aspect-ratio: 16 / 9;
}

.video-caption {
  margin: 10px 2px 0;
  font-size: 13px;
}

.video-meta {
  margin-top: 10px;
}

.faq {
  display: grid;
  gap: 10px;
}

.faq summary {
  cursor: pointer;
  font-weight: 650;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq details > *:not(summary) {
  margin-top: 10px;
}

.cta-band {
  margin-top: 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.cta-title {
  margin: 0 0 6px;
}

.form {
  display: grid;
  gap: 12px;
}

.field {
  display: grid;
  gap: 8px;
}

input,
textarea {
  width: 100%;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: var(--surface-2);
  color: var(--text);
  padding: 10px 12px;
  font: inherit;
}

input:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(246, 193, 90, 0.26);
  outline-offset: 2px;
}

.form-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

#altbilgi {
  scroll-margin-top: 88px;
}

.site-footer {
  border-top: 1px solid var(--border);
  margin-top: 30px;
  padding: 28px 0 22px;
  background: linear-gradient(180deg, rgba(246, 247, 251, 0.98) 0%, rgba(235, 238, 248, 0.92) 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

[data-theme="light"] .site-footer {
  background: linear-gradient(180deg, rgba(252, 252, 254, 0.98) 0%, rgba(240, 242, 248, 0.88) 100%);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px 18px;
}

@media (min-width: 480px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-block--brand {
    grid-column: 1 / -1;
  }
}

.footer-block {
  min-width: 0;
  padding: 16px 14px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.footer-block-title {
  margin: 0 0 10px;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand-navy);
}

.footer-lead {
  margin: 0 0 8px;
  font-size: 0.95rem;
  line-height: 1.45;
  color: var(--text);
}

.footer-trust {
  margin: 0;
  font-size: 0.85rem;
  line-height: 1.5;
  color: var(--muted);
}

.footer-trust a {
  color: var(--text);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-address {
  margin: 0 0 10px;
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--text);
  font-style: normal;
}

.footer-co-name {
  font-weight: 700;
  color: var(--text);
}

.footer-addr-photos {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin: 14px 0 10px;
}

@media (min-width: 400px) {
  .footer-addr-photos {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.footer-addr-figure {
  margin: 0;
  display: grid;
  gap: 6px;
  min-width: 0;
}

.footer-addr-thumb {
  appearance: none;
  margin: 0;
  padding: 0;
  width: 100%;
  border: 0;
  background: none;
  cursor: zoom-in;
  display: block;
  border-radius: 12px;
  overflow: hidden;
  color: inherit;
  -webkit-tap-highlight-color: transparent;
}

.footer-addr-thumb:focus-visible {
  outline: 3px solid rgba(246, 193, 90, 0.45);
  outline-offset: 3px;
}

.footer-addr-img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--surface-2);
  display: block;
  pointer-events: none;
}

.depo-lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  padding: max(8px, env(safe-area-inset-top, 0px)) max(8px, env(safe-area-inset-right, 0px))
    max(8px, env(safe-area-inset-bottom, 0px)) max(8px, env(safe-area-inset-left, 0px));
}

.depo-lightbox[hidden] {
  display: none !important;
}

.depo-lightbox__backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 100%;
  min-height: 100dvh;
  margin: 0;
  padding: 0;
  border: 0;
  cursor: pointer;
  background: rgba(8, 12, 22, 0.9);
  z-index: 0;
}

.depo-lightbox__panel {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: min(100vw - 16px, 1200px);
  width: 100%;
  max-height: min(96vh, 96dvh, 96svh);
  pointer-events: none;
}

.depo-lightbox__panel .depo-lightbox__img,
.depo-lightbox__panel .depo-lightbox__close {
  pointer-events: auto;
}

.depo-lightbox__close {
  position: fixed;
  top: max(10px, calc(env(safe-area-inset-top, 0px) + 6px));
  right: max(10px, calc(env(safe-area-inset-right, 0px) + 6px));
  z-index: 102;
  width: 48px;
  height: 48px;
  min-width: 48px;
  min-height: 48px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.depo-lightbox__close:hover {
  background: rgba(30, 30, 35, 0.75);
}

.depo-lightbox__close:focus-visible {
  outline: 3px solid rgba(246, 193, 90, 0.6);
  outline-offset: 2px;
}

.depo-lightbox__img {
  max-width: 100%;
  width: auto;
  height: auto;
  max-height: min(88vh, 88dvh, 88svh, calc(100svh - 100px));
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55);
  -webkit-user-drag: none;
  user-select: none;
}

body.depo-lightbox-open {
  overflow: hidden;
  touch-action: none;
}

.howto-modal {
  position: fixed;
  inset: 0;
  z-index: 40;
}

.howto-modal__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(0, 0, 0, 0.52);
}

.howto-modal__panel {
  position: absolute;
  left: 12px;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  margin: 0 auto;
  width: min(980px, calc(100vw - 24px));
  max-height: min(86vh, 86dvh, 86svh);
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: rgba(246, 247, 251, 0.96);
  backdrop-filter: blur(16px);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.45);
  display: grid;
  grid-template-rows: auto 1fr;
}

.howto-modal__header {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-areas:
    "title close"
    "whatsapp whatsapp";
  gap: 10px;
  padding: 12px 12px;
  border-bottom: 1px solid var(--border);
  align-items: center;
}

.howto-modal__title {
  grid-area: title;
  font-weight: 900;
  color: var(--text);
}

.howto-modal__whatsapp {
  grid-area: whatsapp;
  width: 100%;
  min-height: 40px;
  padding: 10px 12px;
  border-radius: 999px;
  white-space: nowrap;
}

.howto-modal__close {
  grid-area: close;
  appearance: none;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  border-radius: 12px;
  width: 40px;
  height: 40px;
  line-height: 1;
  font-size: 22px;
  cursor: pointer;
  display: grid;
  place-items: center;
}

.howto-modal__close:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-soft);
}

.howto-modal__body {
  padding: 12px;
  overflow: auto;
}

.howto-modal__video {
  width: 100%;
  height: auto;
  max-height: min(56vh, 56dvh, 56svh);
  display: block;
  border-radius: 12px;
  background: #000;
}

.footer-addr-cap {
  margin: 0;
  font-size: 0.75rem;
  line-height: 1.3;
  text-align: center;
}

.footer-contact {
  margin: 0 0 4px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px 8px;
  font-size: 0.9rem;
}

.footer-contact-label {
  font-weight: 650;
  color: var(--text);
  margin-right: 2px;
}

.footer-contact-link {
  color: var(--text);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.ssl-trust-seal {
  margin-top: 12px;
  display: flex;
  justify-content: center;
}

.ssl-trust-seal img {
  max-width: 100%;
  height: auto;
  display: block;
}

.footer-sep {
  color: var(--border);
  font-weight: 400;
  user-select: none;
}

.footer-meta {
  margin: 0;
  font-size: 0.78rem;
  line-height: 1.45;
}

.footer-meta--center {
  text-align: center;
}

.footer-loc-hint,
.footer-social-hint {
  margin: 0 0 10px;
  font-size: 0.85rem;
  line-height: 1.45;
}

/* Tıklanabilir harita önizleme (jpeg); href index.html’de #footerMapLink */
.footer-map-link {
  display: block;
  max-width: 100%;
  margin: 0 0 8px;
  border-radius: 14px;
  border: 1px solid var(--border);
  overflow: hidden;
  background: rgba(10, 20, 45, 0.06);
  line-height: 0;
  box-shadow: var(--shadow-soft);
  transition: box-shadow 0.18s ease, transform 0.18s ease;
}

.footer-map-link:hover {
  box-shadow: 0 12px 32px rgba(10, 20, 45, 0.12);
}

.footer-map-link:focus-visible {
  outline: 2px solid var(--text);
  outline-offset: 3px;
}

.footer-map-image {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #e8eaef;
}

.footer-social {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.footer-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  min-height: 48px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: var(--surface-2);
  color: var(--text);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.6) inset;
  text-decoration: none;
}

.footer-social-link:hover {
  text-decoration: none;
  border-color: rgba(246, 193, 90, 0.55);
  background: rgba(255, 255, 255, 0.95);
  filter: none;
}

.footer-social-ico {
  width: 22px;
  height: 22px;
  display: block;
}

.footer-bottom {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

@media (min-width: 480px) {
  .footer-bottom {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
  }
}

.footer-copy {
  margin: 0;
  font-size: 0.8rem;
}

.footer-bottom-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  font-size: 0.8rem;
}

.footer-bottom-link {
  color: var(--muted);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-bottom-link:hover {
  color: var(--text);
}

.toast {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: calc(12px + env(safe-area-inset-bottom, 0px));
  z-index: 50;
  transform: none;
  padding: 12px 14px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.92);
  color: var(--text);
  box-shadow: var(--shadow);
  max-width: min(720px, calc(100% - 24px));
  margin-inline: auto;
}

.side-ticker {
  position: fixed;
  right: 12px;
  top: auto;
  bottom: calc(12px + env(safe-area-inset-bottom, 0px));
  z-index: 20;
  display: grid;
  gap: 10px;
  width: min(320px, calc(100vw - 24px));
  pointer-events: none;
}

.side-toast {
  pointer-events: none;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  border-radius: 16px;
  box-shadow: var(--shadow-soft);
  padding: 10px 12px;
  transform: translateX(120%);
  opacity: 0;
  animation: sideToastInOut 4.6s ease-in-out forwards;
}

.side-toast strong {
  font-weight: 750;
}

@keyframes sideToastInOut {
  0% {
    transform: translateX(120%);
    opacity: 0;
  }
  12% {
    transform: translateX(0%);
    opacity: 1;
  }
  80% {
    transform: translateX(0%);
    opacity: 1;
  }
  100% {
    transform: translateX(120%);
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .side-toast {
    animation: none;
    transform: none;
    opacity: 1;
  }
}

[data-theme="light"] .toast {
  background: rgba(255, 255, 255, 0.85);
}

@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
