/* ═══════════════════════════════════════════════════════
   ReadyGo VIP — Tanıtım sitesi
   Marka: ReadyGo VIP — logo paleti (canlı mavi #1467F0, turuncu #FF7A14, lacivert #0A1930)
   ═══════════════════════════════════════════════════════ */

/* ---------- Token'lar ---------- */
:root {
  --brand: #1467F0;
  --brand-pressed: #0F51C4;
  --brand-soft: rgba(20, 103, 240, .12);
  --brand-soft-2: rgba(20, 103, 240, .07);

  /* Logodaki turuncu — ikincil vurgu */
  --accent: #FF7A14;
  --accent-pressed: #E86504;
  --accent-soft: rgba(255, 122, 20, .16);
  --navy: #0A1930;

  --bg: #F8FAFC;
  --surface: #FFFFFF;
  --surface-card: #FFFFFF;
  --surface-alt: #F1F5F9;
  --ink: #0F1115;
  --ink-2: #3F4756;
  --ink-3: #64748B;
  --line: rgba(15, 17, 21, .10);
  --line-soft: rgba(15, 17, 21, .06);

  --ok: #16A34A;

  --shadow-sm: 0 1px 2px rgba(15, 17, 21, .05), 0 2px 8px rgba(15, 17, 21, .05);
  --shadow-md: 0 2px 6px rgba(15, 17, 21, .06), 0 12px 32px rgba(15, 17, 21, .10);
  --shadow-lg: 0 4px 12px rgba(15, 17, 21, .08), 0 24px 64px rgba(15, 17, 21, .16);

  --r-card: 16px;
  --r-lg: 24px;
  --r-btn: 14px;

  --ease: cubic-bezier(.22, .61, .36, 1);
  --font: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

  color-scheme: light dark;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #0F1115;
    --surface: #171A21;
    --surface-card: #1C2029;
    --surface-alt: #14171D;
    --ink: #E7EAF0;
    --ink-2: #B6BDC9;
    --ink-3: #8A93A3;
    --line: rgba(231, 234, 240, .12);
    --line-soft: rgba(231, 234, 240, .07);
    --brand-soft: rgba(20, 103, 240, .18);
    --brand-soft-2: rgba(20, 103, 240, .09);
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, .3), 0 2px 8px rgba(0, 0, 0, .25);
    --shadow-md: 0 2px 6px rgba(0, 0, 0, .35), 0 12px 32px rgba(0, 0, 0, .4);
    --shadow-lg: 0 4px 12px rgba(0, 0, 0, .4), 0 24px 64px rgba(0, 0, 0, .5);
  }
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

h1, h2, h3, h4 {
  margin: 0;
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -.015em;
  text-wrap: balance;
}

p { margin: 0; }

a { color: inherit; }

ul, ol { margin: 0; padding: 0; list-style: none; }

.container {
  width: min(1120px, 100% - 40px);
  margin-inline: auto;
}
.container-narrow { width: min(780px, 100% - 40px); }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 8px;
  z-index: 999;
  background: var(--brand);
  color: #fff;
  padding: 10px 18px;
  border-radius: var(--r-btn);
  text-decoration: none;
  font-weight: 700;
}
.skip-link:focus { left: 8px; }

/* Genel ikon stili (stroke tabanlı SVG'ler) */
.icon {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: none;
}

/* ---------- Butonlar ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 52px;
  padding: 12px 28px;
  border-radius: var(--r-btn);
  font-family: inherit;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid transparent;
  white-space: nowrap;
  transition: background-color .2s var(--ease), border-color .2s var(--ease),
              transform .15s var(--ease), box-shadow .2s var(--ease);
}
.btn:active { transform: translateY(1px) scale(.99); }

.btn-primary {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 6px 20px rgba(20, 103, 240, .3);
}
.btn-primary:hover { background: var(--brand-pressed); box-shadow: 0 8px 24px rgba(234, 88, 12, .35); }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.btn-ghost:hover { border-color: var(--brand); color: var(--brand); background: var(--brand-soft-2); }

.btn-sm { min-height: 42px; padding: 8px 20px; font-size: 15px; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in srgb, var(--bg) 82%, transparent);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-soft);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 28px;
  min-height: 68px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 800;
  font-size: 19px;
  letter-spacing: -.02em;
}
.brand-mark { display: inline-flex; }
.brand-mark svg { border-radius: 50%; box-shadow: 0 2px 8px rgba(20, 103, 240, .35); }

.main-nav {
  display: flex;
  gap: 4px;
  margin-inline: auto;
}
.main-nav a {
  padding: 8px 14px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  color: var(--ink-2);
  transition: color .2s var(--ease), background-color .2s var(--ease);
}
.main-nav a:hover { color: var(--brand); background: var(--brand-soft-2); }

.header-cta { margin-left: auto; }
.main-nav + .header-cta { margin-left: 0; }

@media (max-width: 860px) {
  .main-nav { display: none; }
  .header-cta { margin-left: auto; }
}
@media (max-width: 420px) {
  .header-cta { padding-inline: 14px; font-size: 14px; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  padding: 72px 0 40px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(560px 420px at 12% -8%, var(--brand-soft), transparent 68%),
    radial-gradient(640px 480px at 96% 30%, var(--brand-soft-2), transparent 70%),
    radial-gradient(rgba(20, 103, 240, .10) 1.1px, transparent 1.1px);
  background-size: auto, auto, 26px 26px;
  -webkit-mask-image: linear-gradient(to bottom, #000 72%, transparent);
  mask-image: linear-gradient(to bottom, #000 72%, transparent);
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr);
  gap: clamp(32px, 6vw, 72px);
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 14px;
  color: var(--brand-pressed);
  background: var(--brand-soft);
  border: 1px solid rgba(20, 103, 240, .25);
  border-radius: 999px;
  padding: 6px 14px;
  margin: 0 0 22px;
}
@media (prefers-color-scheme: dark) {
  .eyebrow { color: #8FC0FF; }
}
.eyebrow .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 0 3px var(--brand-soft);
}

.hero h1 {
  font-size: clamp(2.35rem, 5.2vw, 3.75rem);
  margin-bottom: 20px;
}
.hero h1 em {
  font-style: normal;
  color: var(--brand);
  position: relative;
  white-space: nowrap;
}
.hero h1 em::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 8px;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--brand), transparent 92%);
  opacity: .35;
}

.hero-sub {
  font-size: clamp(1.02rem, 1.6vw, 1.16rem);
  color: var(--ink-2);
  max-width: 34em;
  margin-bottom: 30px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 34px;
}

.hero-props {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
}
.hero-props li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink-3);
}
.hero-props .icon { width: 19px; height: 19px; color: var(--brand); }

/* Telefon çerçevesi */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  padding: 12px 0 8px;
}

.phone {
  position: relative;
  width: min(310px, 78vw);
  border-radius: 46px;
  padding: 11px;
  background: linear-gradient(160deg, #2A2E38, #14161C 60%);
  box-shadow:
    inset 0 0 0 1.5px rgba(255, 255, 255, .14),
    var(--shadow-lg);
}
.phone::after { /* kenar parlaması */
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .22);
}
.phone img {
  width: 100%;
  height: auto;
  border-radius: 36px;
  background: #E7EAF0;
}
.phone-notch {
  position: absolute;
  top: 21px;
  left: 50%;
  transform: translateX(-50%);
  width: 88px;
  height: 24px;
  border-radius: 999px;
  background: #14161C;
  z-index: 2;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .06);
}
.phone-notch::after { /* kamera */
  content: "";
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #3D4654, #10131A 70%);
}

.phone-sm { width: min(260px, 70vw); border-radius: 40px; padding: 10px; }
.phone-sm img { border-radius: 31px; }
.phone-sm .phone-notch { top: 19px; width: 76px; height: 21px; }

/* Hero yüzen çipler */
.hero-chip {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--surface-card) 88%, transparent);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  font-size: 13.5px;
  font-weight: 700;
  color: var(--ink-2);
  white-space: nowrap;
}
.hero-chip .icon { width: 18px; height: 18px; color: var(--brand); }
.chip-price {
  font-size: 16px;
  font-weight: 800;
  color: var(--brand);
  font-variant-numeric: tabular-nums;
}
.hero-chip-1 { top: 16%; left: -4%; animation: float 5.5s ease-in-out infinite; }
.hero-chip-2 { bottom: 14%; right: -3%; animation: float 6.5s ease-in-out infinite reverse; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-9px); }
}

@media (max-width: 900px) {
  .hero { padding-top: 48px; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { order: 2; margin-top: 8px; }
  .hero-chip-1 { left: 2%; }
  .hero-chip-2 { right: 2%; }
}

/* ---------- Bölüm iskeleti ---------- */
.section { padding: clamp(64px, 9vw, 104px) 0; }
.section-alt { background: var(--surface-alt); }

.section-head {
  max-width: 640px;
  margin-bottom: clamp(36px, 5vw, 56px);
}

.kicker {
  font-size: 13.5px;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--brand-pressed);
  margin-bottom: 12px;
}
@media (prefers-color-scheme: dark) {
  .kicker { color: #8FC0FF; }
}

.section-head h2, .courier-copy h2 {
  font-size: clamp(1.7rem, 3.4vw, 2.4rem);
  margin-bottom: 14px;
}

.section-sub { color: var(--ink-2); font-size: 1.05rem; }

/* ---------- Nasıl çalışır ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  counter-reset: step;
}

.step-card {
  position: relative;
  background: var(--surface-card);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-lg);
  padding: 26px 26px 30px;
  box-shadow: var(--shadow-sm);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.step-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.step-art {
  border-radius: var(--r-card);
  background:
    radial-gradient(rgba(20, 103, 240, .10) 1px, transparent 1px) 0 0 / 18px 18px,
    linear-gradient(150deg, var(--brand-soft-2), transparent 70%);
  margin-bottom: 20px;
  overflow: hidden;
}
.step-art svg { width: 100%; height: auto; display: block; }

.step-num {
  position: absolute;
  top: 14px;
  left: 14px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  font-weight: 800;
  font-size: 15px;
  box-shadow: 0 4px 12px rgba(20, 103, 240, .4);
}

.step-card h3 { font-size: 1.2rem; margin-bottom: 8px; }
.step-card p { color: var(--ink-2); font-size: .96rem; }

@media (max-width: 900px) {
  .steps { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; }
}

/* İllüstrasyon çizgi stilleri */
.il-fill { fill: var(--surface-alt); stroke: var(--line); stroke-width: 1.5; }
.il-line { fill: none; stroke: var(--ink-3); stroke-width: 2.5; stroke-linecap: round; }
.il-line-soft { fill: var(--line); }
.il-dash { fill: none; stroke: var(--brand); stroke-width: 2.5; stroke-dasharray: 2 6; stroke-linecap: round; }
.il-brand { fill: none; stroke: var(--brand); stroke-width: 2.5; }
.il-brand-fill { fill: var(--brand); }
.il-brand-solid { fill: var(--brand); }
.il-outline { fill: none; stroke: var(--ink-3); stroke-width: 2.5; stroke-linejoin: round; }
.il-route { fill: none; stroke: var(--brand-soft); stroke-width: 9; stroke-linecap: round; }
.il-route-dash { fill: none; stroke: var(--brand); stroke-width: 3; stroke-dasharray: 1 10; stroke-linecap: round; }
.il-pulse { fill: none; stroke: var(--brand); stroke-width: 1.5; opacity: .45; }
.il-route-dark { fill: none; stroke: rgba(255, 122, 20, .55); stroke-width: 3.5; stroke-dasharray: 2 11; stroke-linecap: round; }
.il-card-dark { fill: rgba(255, 255, 255, .07); stroke: rgba(255, 255, 255, .16); stroke-width: 1.5; }
.il-chip-dark { fill: rgba(255, 255, 255, .10); stroke: rgba(255, 255, 255, .14); stroke-width: 1; }

/* ---------- Özellikler ---------- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feature {
  background: var(--surface-card);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-lg);
  padding: 26px;
  box-shadow: var(--shadow-sm);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
}
.feature:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(20, 103, 240, .3);
}

.feature-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: var(--brand-soft);
  color: var(--brand-pressed);
  margin-bottom: 18px;
}
@media (prefers-color-scheme: dark) {
  .feature-icon { color: #8FC0FF; }
}

.feature h3 { font-size: 1.12rem; margin-bottom: 8px; }
.feature p { color: var(--ink-2); font-size: .95rem; }

@media (max-width: 940px) { .feature-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .feature-grid { grid-template-columns: 1fr; } }

/* ---------- Fiyat ---------- */
.price-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 440px));
  justify-content: center;
  gap: 22px;
}

.price-card {
  background: var(--surface-card);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-lg);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.price-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.price-card-featured {
  border: 1.5px solid rgba(20, 103, 240, .45);
  background:
    linear-gradient(160deg, var(--brand-soft-2), transparent 55%),
    var(--surface-card);
}

.price-head { display: flex; align-items: center; gap: 14px; }
.price-icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: var(--brand-soft);
  color: var(--brand-pressed);
}
@media (prefers-color-scheme: dark) { .price-icon { color: #8FC0FF; } }
.price-icon .icon { width: 30px; height: 30px; }

.price-head h3 { font-size: 1.3rem; }
.price-for { color: var(--ink-3); font-size: .9rem; font-weight: 600; }

.price-main {
  font-size: 1.05rem;
  color: var(--ink-2);
  font-weight: 600;
}
.price-main .amount {
  font-size: 2rem;
  font-weight: 800;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
  letter-spacing: -.02em;
}
.price-main .plus { color: var(--brand); font-weight: 800; padding-inline: 4px; }

.price-min {
  align-self: flex-start;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--brand-pressed);
  background: var(--brand-soft);
  padding: 4px 12px;
  border-radius: 999px;
}
@media (prefers-color-scheme: dark) { .price-min { color: #8FC0FF; } }

.price-notes { display: grid; gap: 8px; }
.price-notes li {
  position: relative;
  padding-left: 26px;
  color: var(--ink-2);
  font-size: .95rem;
}
.price-notes li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: var(--ok);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2a10 10 0 100 20 10 10 0 000-20zm5 7.4l-6 6.2-4-3.8 1.4-1.5 2.6 2.4 4.6-4.7L17 9.4z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2a10 10 0 100 20 10 10 0 000-20zm5 7.4l-6 6.2-4-3.8 1.4-1.5 2.6 2.4 4.6-4.7L17 9.4z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.price-example {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px dashed var(--line);
  padding-top: 16px;
  color: var(--ink-3);
  font-size: .95rem;
}
.price-example strong {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--brand);
  font-variant-numeric: tabular-nums;
}

.price-footnote {
  text-align: center;
  color: var(--ink-3);
  font-size: .88rem;
  margin-top: 26px;
}

@media (max-width: 820px) { .price-grid { grid-template-columns: minmax(0, 480px); } }

/* ---------- Kuryeler için (koyu bant) ---------- */
.section-dark {
  position: relative;
  background: #0F1115;
  color: #E7EAF0;
  overflow: hidden;
}
.section-dark-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(620px 460px at 88% 8%, rgba(255, 122, 20, .18), transparent 68%),
    radial-gradient(rgba(255, 255, 255, .05) 1px, transparent 1px);
  background-size: auto, 24px 24px;
}

.courier-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr);
  gap: clamp(32px, 6vw, 72px);
  align-items: center;
}

.kicker-light { color: #FFAF6B; }

.courier-sub { color: #B6BDC9; font-size: 1.05rem; margin-bottom: 28px; }

.courier-points { display: grid; gap: 18px; margin-bottom: 32px; }
.courier-points li { display: flex; gap: 14px; align-items: flex-start; }
.courier-points .icon { color: var(--brand); margin-top: 2px; }
.courier-points span { color: #B6BDC9; font-size: .98rem; }
.courier-points strong { color: #E7EAF0; }

.courier-cta {
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--r-lg);
  padding: 22px;
  display: grid;
  gap: 16px;
}
.courier-soon { color: #B6BDC9; font-size: .95rem; }

.courier-visual { display: flex; justify-content: center; }
.courier-art { width: min(400px, 100%); height: auto; }

@media (max-width: 900px) {
  .courier-grid { grid-template-columns: 1fr; }
  .courier-visual { order: -1; }
  .courier-art { width: min(320px, 88%); }
}

/* ---------- İndir ---------- */
.download-band {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, .8fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  background:
    radial-gradient(480px 320px at 90% 0%, var(--brand-soft), transparent 70%),
    var(--surface-card);
  border: 1px solid var(--line-soft);
  border-radius: 28px;
  padding: clamp(28px, 5vw, 56px);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.download-visual { display: flex; justify-content: center; }

.store-badges { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }

.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  padding: 10px 20px 10px 16px;
  border-radius: var(--r-btn);
  background: #0F1115;
  color: #fff;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, .14);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), border-color .2s var(--ease);
}
.store-badge:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: rgba(20, 103, 240, .55);
}
@media (prefers-color-scheme: dark) {
  .store-badge { background: #E7EAF0; color: #0F1115; border-color: transparent; }
}
.store-icon { width: 26px; height: 26px; }
.store-text { display: grid; line-height: 1.2; font-weight: 800; font-size: 16px; }
.store-text small { font-weight: 600; font-size: 11px; opacity: .7; letter-spacing: .02em; }

.download-note { margin-top: 14px; color: var(--ink-3); font-size: .85rem; }

@media (max-width: 820px) {
  .download-band { grid-template-columns: 1fr; }
  .download-visual { order: 2; }
}

/* ---------- SSS ---------- */
.faq { display: grid; gap: 12px; }

.faq details {
  background: var(--surface-card);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-card);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: border-color .2s var(--ease);
}
.faq details[open] { border-color: rgba(20, 103, 240, .35); }

.faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  list-style: none;
  cursor: pointer;
  padding: 18px 22px;
  font-weight: 700;
  font-size: 1.02rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--brand); }

.faq-arrow {
  flex: none;
  width: 11px;
  height: 11px;
  border-right: 2.2px solid var(--brand);
  border-bottom: 2.2px solid var(--brand);
  transform: rotate(45deg);
  transition: transform .25s var(--ease);
  margin-top: -4px;
}
.faq details[open] .faq-arrow { transform: rotate(225deg); margin-top: 4px; }

.faq details p {
  padding: 0 22px 20px;
  color: var(--ink-2);
  font-size: .96rem;
  max-width: 62em;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--surface-alt);
  border-top: 1px solid var(--line-soft);
  padding: 56px 0 28px;
}
@media (prefers-color-scheme: dark) {
  .site-footer { background: #0B0D11; }
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 36px;
  padding-bottom: 40px;
}

.footer-brand p { margin-top: 14px; color: var(--ink-3); font-size: .93rem; }

.footer-col { display: grid; gap: 10px; align-content: start; }
.footer-col h4 {
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 4px;
}
.footer-col a {
  text-decoration: none;
  color: var(--ink-2);
  font-size: .95rem;
  width: fit-content;
  transition: color .2s var(--ease);
}
.footer-col a:hover { color: var(--brand); }
.footer-addr { color: var(--ink-3); font-size: .95rem; }

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px 24px;
  border-top: 1px solid var(--line-soft);
  padding-top: 22px;
  color: var(--ink-3);
  font-size: .85rem;
}
.footer-bottom a { color: inherit; }
.footer-bottom a:hover { color: var(--brand); }

@media (max-width: 860px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
  .footer-inner { grid-template-columns: 1fr; }
}

/* ---------- Reveal animasyonları ---------- */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .6s var(--ease), transform .6s var(--ease);
    transition-delay: var(--reveal-delay, 0s);
  }
  .reveal.in-view { opacity: 1; transform: none; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-chip-1, .hero-chip-2 { animation: none; }
  *, *::before, *::after { transition-duration: .01ms !important; }
}

/* ── AI illüstrasyonlar (Gemini, marka paleti) ─────────────── */
.city-band { padding: 24px 0 8px; }
.city-figure { position: relative; margin: 0; }
.city-figure img {
  display: block; width: 100%; height: auto;
  border-radius: 24px;
  box-shadow: 0 18px 48px rgba(15, 17, 21, .10);
}
.city-figure figcaption { position: absolute; left: 20px; bottom: 20px; }
.city-chip {
  display: inline-block; padding: 10px 16px; border-radius: 999px;
  background: rgba(15, 17, 21, .78); color: #fff;
  font-size: 14px; font-weight: 600; letter-spacing: .01em;
  backdrop-filter: blur(6px);
}
.courier-photo { margin: 0; }
.courier-photo img {
  display: block; width: 100%; height: auto;
  border-radius: 24px;
  box-shadow: 0 18px 48px rgba(0, 0, 0, .35);
}
@media (prefers-color-scheme: dark) {
  .city-figure img { box-shadow: 0 18px 48px rgba(0, 0, 0, .5); }
}


/* ═══════ ReadyGo VIP marka eki ═══════ */
.brand-name { font-style: italic; font-weight: 900; letter-spacing: .015em; }
.brand-name .vip { color: var(--accent); }
.brand-mark svg { border-radius: 0; box-shadow: none; }

/* Turuncu vurgular — logodaki ikili renk dengesi */
.hero h1 em { color: var(--accent); }
.hero h1 em::after { background: linear-gradient(90deg, var(--accent), transparent 92%); }
.chip-price { color: var(--accent); }
.eyebrow .dot { background: var(--accent); box-shadow: 0 0 0 3px var(--accent-soft); }

/* Koyu bölüm: logo lacivertine */
.section-dark { background: var(--navy); }

/* Gerçek logo görselleri */
.brand-img { width: 40px; height: auto; display: block; }
.site-footer .brand-img { width: 36px; }
.logo-lockup {
  width: min(400px, 78vw);
  height: auto;
  margin-inline: auto;
  filter: drop-shadow(0 18px 44px rgba(10, 25, 48, .20));
}

/* ═══════ Yol motifi — kurye ruhu ═══════ */
.hero-bg { overflow: hidden; }
.hero-road {
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 72%;
  min-height: 260px;
}
.road-asphalt {
  fill: none;
  stroke: rgba(10, 25, 48, .07);
  stroke-width: 44;
  stroke-linecap: round;
}
.road-line {
  fill: none;
  stroke: rgba(20, 103, 240, .38);
  stroke-width: 3.5;
  stroke-linecap: round;
  stroke-dasharray: 16 26;
  animation: yol-akis 30s linear infinite;
}
.road-start { fill: var(--brand); opacity: .55; }
.road-pin path { fill: var(--accent); }
.road-pin { filter: drop-shadow(0 6px 12px rgba(255, 122, 20, .35)); }
@keyframes yol-akis { to { stroke-dashoffset: -840; } }
@media (prefers-color-scheme: dark) {
  .road-asphalt { stroke: rgba(231, 234, 240, .06); }
}

/* Adım kartlarının arkasından geçen rota */
.steps { position: relative; }
.steps::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 3%;
  right: 3%;
  border-top: 3px dashed rgba(20, 103, 240, .32);
}
.steps::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 1.2%;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  transform: translateY(-52%);
  background: var(--accent);
  box-shadow: 0 0 0 5px var(--accent-soft);
}
.step-card { position: relative; z-index: 1; }
@media (max-width: 860px) {
  .steps::before, .steps::after { display: none; }
}

/* Bölümler arası asfalt şerit */
.road-divider {
  height: 16px;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.road-divider::before {
  content: "";
  position: absolute;
  left: -64px;
  right: 0;
  top: 50%;
  height: 3px;
  transform: translateY(-50%);
  background: repeating-linear-gradient(90deg, var(--accent) 0 28px, transparent 28px 64px);
  animation: serit-akis 2.8s linear infinite;
  opacity: .9;
}
@keyframes serit-akis { to { transform: translate(64px, -50%); } }

/* Koyu bölüme diyagonal hız çizgileri */
.section-dark-bg {
  background:
    radial-gradient(620px 460px at 88% 8%, rgba(255, 122, 20, .18), transparent 68%),
    repeating-linear-gradient(115deg, transparent 0 130px, rgba(255, 255, 255, .035) 130px 137px),
    radial-gradient(rgba(255, 255, 255, .05) 1px, transparent 1px);
  background-size: auto, auto, 24px 24px;
}

@media (prefers-reduced-motion: reduce) {
  .road-line, .road-divider::before { animation: none; }
}

/* ═══════ Bölümsel renk geçişleri — logo paleti (baybars tekniği) ═══════ */

/* Hero: gökyüzü mavisi → zemine yumuşak iniş */
.hero {
  background: linear-gradient(180deg, #E9F1FF 0%, #F3F8FF 55%, var(--bg) 100%);
}

/* Özellikler: mavi tonlu bölüm + köşe parlamaları */
#ozellikler.section-alt {
  background:
    radial-gradient(680px 420px at 8% 0%, rgba(20, 103, 240, .10), transparent 65%),
    radial-gradient(520px 360px at 96% 100%, rgba(255, 122, 20, .07), transparent 65%),
    linear-gradient(180deg, #EFF5FF 0%, #E7F0FF 100%);
}

/* Kuryeler (lacivert): dikey derinlik degradesi */
.section-dark {
  background: linear-gradient(180deg, #0A1930 0%, #0D2344 55%, #071122 100%);
}

/* İndir: turuncu sıcaklık — logodaki ikinci renk sahneye çıkar */
#indir.section {
  background:
    radial-gradient(720px 460px at 90% 6%, rgba(255, 122, 20, .13), transparent 62%),
    radial-gradient(480px 340px at 4% 96%, rgba(20, 103, 240, .08), transparent 65%),
    linear-gradient(180deg, #FFF7EE 0%, #FFF1E0 100%);
}

/* SSS: maviye dönüş, footer lacivertine hazırlık */
#sss.section-alt {
  background: linear-gradient(180deg, #F2F7FF 0%, #E9F1FF 100%);
}

/* Footer: logo lacivertinde final */
.site-footer {
  background: linear-gradient(180deg, #0A1930 0%, #071122 100%);
  border-top: none;
  color: #E7EAF0;
}
.site-footer a { color: #C6D4EA; }
.site-footer .footer-col h4 { color: #8FC0FF; }
.site-footer .brand-name { color: #fff; }
.site-footer p { color: #9DB0CC; }

/* Butonlar: degrade dolgu (logo parlaklığı) */
.btn-primary {
  background: linear-gradient(180deg, #3B82F6, #1467F0 60%, #0F51C4);
}
.btn-primary:hover {
  background: linear-gradient(180deg, #4E8FF8, #1E70F5 60%, #1157CE);
}

/* Karanlık mod: tonlar koyu eşdeğerlerine */
@media (prefers-color-scheme: dark) {
  .hero { background: linear-gradient(180deg, #0D1B33 0%, #0E1626 55%, var(--bg) 100%); }
  #ozellikler.section-alt {
    background:
      radial-gradient(680px 420px at 8% 0%, rgba(20, 103, 240, .16), transparent 65%),
      linear-gradient(180deg, #0E1A2E 0%, #0C1626 100%);
  }
  #indir.section {
    background:
      radial-gradient(720px 460px at 90% 6%, rgba(255, 122, 20, .12), transparent 62%),
      linear-gradient(180deg, #1C140A 0%, #171009 100%);
  }
  #sss.section-alt { background: linear-gradient(180deg, #0E1A2E 0%, #0C1524 100%); }
  .site-footer { background: linear-gradient(180deg, #081426 0%, #050D1A 100%); }
}

/* "Yakında yayında" bildirimi */
.yakinda-toast {
  position: fixed;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%) translateY(16px);
  z-index: 1000;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--navy);
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  padding: 14px 22px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .14);
  box-shadow: 0 16px 48px rgba(7, 17, 34, .45);
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s var(--ease), transform .25s var(--ease);
}
.yakinda-toast.acik { opacity: 1; transform: translateX(-50%) translateY(0); }
.yakinda-toast .nokta {
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(255, 122, 20, .25);
}
