/* =========================================================
   daytie — day-tie.com
   Tasarım dili iOS uygulamasından geliyor:
   trefoil düğüm, mor→pembe gradyan, cam kartlar, akışkan zemin.
   ========================================================= */

:root {
  --bg:        #0B0A1C;
  --bg-2:      #130E2B;
  --ink:       #F5F2FF;
  --ink-2:     rgba(245, 242, 255, 0.72);
  --ink-3:     rgba(245, 242, 255, 0.52);
  --line:      rgba(255, 255, 255, 0.12);
  --line-soft: rgba(255, 255, 255, 0.07);
  --surface:   rgba(255, 255, 255, 0.045);
  --surface-2: rgba(255, 255, 255, 0.08);
  --brand:     #A78BFA;
  --brand-2:   #EBA1BE;
  --brand-deep:#8B5CF6;
  --warm:      #FB8672;
  --amber:     #F5C24C;
  --on-brand:  #14092B;
  --blob-1:    #7B2CBF;
  --blob-2:    #C86FA8;
  --blob-3:    #3B5BDB;
  --blob-alpha: 0.40;
  --shadow:    0 24px 60px rgba(0, 0, 0, 0.45);

  --radius:    22px;
  --radius-sm: 14px;
  --maxw:      1140px;
  --nav-h:     72px;

  --font: -apple-system, BlinkMacSystemFont, "SF Pro Text",
          "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

[data-theme="light"] {
  --bg:        #FCFBFF;
  --bg-2:      #F4EFFC;
  --ink:       #16123A;
  --ink-2:     rgba(22, 18, 58, 0.72);
  --ink-3:     rgba(22, 18, 58, 0.55);
  --line:      rgba(22, 18, 58, 0.12);
  --line-soft: rgba(22, 18, 58, 0.07);
  --surface:   rgba(255, 255, 255, 0.72);
  --surface-2: rgba(255, 255, 255, 0.92);
  --brand:     #7C3AED;
  --brand-2:   #C25E97;
  --brand-deep:#6D28D9;
  --warm:      #F0563F;
  --amber:     #E0A008;
  --on-brand:  #FFFFFF;
  --blob-1:    #A78BFA;
  --blob-2:    #F3B0CB;
  --blob-3:    #93C5FD;
  --blob-alpha: 0.55;
  --shadow:    0 20px 50px rgba(58, 30, 96, 0.12);
}

/* ---------- temel ---------- */

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 16px);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.62;
  font-size: 17px;
  letter-spacing: -0.011em;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
[hidden] { display: none !important; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  margin: 0 0 0.5em;
  line-height: 1.14;
  letter-spacing: -0.03em;
  font-weight: 700;
}
h1 { font-size: clamp(2.4rem, 6vw, 4rem); }
h2 { font-size: clamp(1.85rem, 4vw, 2.7rem); }
h3 { font-size: 1.19rem; letter-spacing: -0.02em; }
p  { margin: 0 0 1em; color: var(--ink-2); }

::selection { background: var(--brand); color: var(--on-brand); }

:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 3px;
  border-radius: 8px;
}

.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: 24px;
}

.grad-text {
  background: linear-gradient(112deg, var(--brand-deep), var(--brand), var(--brand-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 8px;
  padding: 10px 16px;
  background: var(--brand);
  color: var(--on-brand);
  border-radius: 10px;
  z-index: 200;
}
.skip-link:focus { left: 16px; }

/* ---------- akışkan zemin ---------- */

.aurora {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  background:
    radial-gradient(120% 90% at 50% -10%, var(--bg-2) 0%, var(--bg) 60%);
}
.aurora span {
  position: absolute;
  display: block;
  width: 46vmax;
  height: 46vmax;
  border-radius: 50%;
  filter: blur(90px);
  opacity: var(--blob-alpha);
  will-change: transform;
}
.aurora span:nth-child(1) {
  background: radial-gradient(circle, var(--blob-1) 0%, transparent 68%);
  top: -14vmax; left: -8vmax;
  animation: drift-a 26s ease-in-out infinite alternate;
}
.aurora span:nth-child(2) {
  background: radial-gradient(circle, var(--blob-2) 0%, transparent 68%);
  top: 22vmax; right: -12vmax; left: auto;
  animation: drift-b 32s ease-in-out infinite alternate;
}
.aurora span:nth-child(3) {
  background: radial-gradient(circle, var(--blob-3) 0%, transparent 68%);
  bottom: -18vmax; left: 24vw;
  animation: drift-c 38s ease-in-out infinite alternate;
}

@keyframes drift-a { to { transform: translate3d(12vw, 8vh, 0) scale(1.16); } }
@keyframes drift-b { to { transform: translate3d(-14vw, 10vh, 0) scale(0.9); } }
@keyframes drift-c { to { transform: translate3d(10vw, -12vh, 0) scale(1.12); } }

/* ---------- üst menü ---------- */

.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  border-bottom: 1px solid transparent;
  transition: background 0.3s, border-color 0.3s, backdrop-filter 0.3s;
}
.nav.is-stuck {
  background: color-mix(in srgb, var(--bg) 78%, transparent);
  backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
  border-bottom-color: var(--line-soft);
}
.nav .container {
  display: flex;
  align-items: center;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.16rem;
  letter-spacing: -0.03em;
  margin-right: auto;
}
.brand img { width: 32px; height: 32px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 0.95rem;
  font-weight: 500;
}
.nav-links a { color: var(--ink-2); transition: color 0.2s; }
.nav-links a:hover { color: var(--ink); }
.nav-links a[aria-current="page"] { color: var(--ink); }

.nav-tools { display: flex; align-items: center; gap: 10px; }

.lang-switch {
  display: inline-flex;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
}
.lang-switch button {
  border: 0;
  background: transparent;
  color: var(--ink-3);
  font: inherit;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 5px 11px;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.lang-switch button[aria-pressed="true"] {
  background: linear-gradient(120deg, var(--brand-deep), var(--brand-2));
  color: #fff;
}

.icon-btn {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
  color: var(--ink-2);
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s, transform 0.2s;
}
.icon-btn:hover { color: var(--ink); border-color: var(--brand); transform: translateY(-1px); }
.icon-btn svg { width: 18px; height: 18px; }
[data-theme="light"] .icon-sun { display: none; }
.icon-moon { display: none; }
[data-theme="light"] .icon-moon { display: block; }

.nav-toggle { display: none; }

/* ---------- butonlar ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 14px 26px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s, color 0.2s;
}
.btn svg { width: 19px; height: 19px; }
.btn-primary {
  background: linear-gradient(120deg, var(--brand-deep), var(--brand-2));
  color: #fff;
  box-shadow: 0 12px 30px color-mix(in srgb, var(--brand-deep) 40%, transparent);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 18px 40px color-mix(in srgb, var(--brand-deep) 50%, transparent); }
.btn-ghost {
  background: var(--surface);
  border-color: var(--line);
  color: var(--ink);
}
.btn-ghost:hover { border-color: var(--brand); transform: translateY(-2px); }
.btn[aria-disabled="true"] { cursor: default; }
.btn[aria-disabled="true"]:hover { transform: none; }

/* ---------- bölümler ---------- */

section { position: relative; }
.section { padding: clamp(72px, 10vw, 120px) 0; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-2);
  margin-bottom: 20px;
}
.eyebrow .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: linear-gradient(120deg, var(--brand), var(--brand-2));
}

.section-head { max-width: 660px; margin-bottom: 52px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head p { font-size: 1.08rem; margin-bottom: 0; }

/* ---------- hero ---------- */

.hero { padding: clamp(56px, 8vw, 96px) 0 clamp(64px, 9vw, 110px); }
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(32px, 6vw, 72px);
  align-items: center;
}
.hero h1 { margin-bottom: 22px; }
.hero-lede {
  font-size: clamp(1.05rem, 1.6vw, 1.22rem);
  max-width: 34em;
  margin-bottom: 30px;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.hero-note {
  margin-top: 18px;
  font-size: 0.92rem;
  color: var(--ink-3);
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero-note svg { width: 16px; height: 16px; flex: none; }

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 42px;
  padding-top: 26px;
  border-top: 1px solid var(--line-soft);
}
.hero-stats div strong {
  display: block;
  font-size: 1.5rem;
  letter-spacing: -0.03em;
}
.hero-stats div span { font-size: 0.88rem; color: var(--ink-3); }

/* mağaza rozeti — görsel gelene kadar yer tutucu */
.store-badges { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.badge-slot {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  height: 54px;
  padding: 0 20px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--ink);
  transition: transform 0.2s, border-color 0.2s;
}
.badge-slot:hover { transform: translateY(-2px); border-color: var(--brand); }
.badge-slot svg { width: 22px; height: 22px; flex: none; }
.badge-slot small { display: block; font-size: 0.66rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-3); line-height: 1.4; }
.badge-slot b { font-size: 1rem; font-weight: 700; letter-spacing: -0.02em; }
.badge-slot img { height: 54px; width: auto; }
.badge-slot.has-img { padding: 0; border: 0; background: none; height: auto; }

/* ---------- telefon ---------- */

.phone {
  position: relative;
  width: min(300px, 78vw);
  aspect-ratio: 9 / 19.5;
  margin-inline: auto;
  border-radius: 46px;
  padding: 11px;
  background: linear-gradient(150deg, rgba(255,255,255,0.22), rgba(255,255,255,0.05));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.phone::after {
  content: "";
  position: absolute;
  top: 24px; left: 50%;
  transform: translateX(-50%);
  width: 92px; height: 26px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.55);
  z-index: 3;
}
.phone-screen {
  position: relative;
  height: 100%;
  border-radius: 36px;
  overflow: hidden;
  background: linear-gradient(165deg, #221A45 0%, #2E1B41 55%, #3A1C3C 100%);
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 52px 18px 22px;
  color: #F6F2FF;
}
.phone-screen img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 2; }
.phone-screen .ps-date { font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; opacity: 0.6; }
.phone-screen .ps-title { font-size: 1.28rem; font-weight: 700; letter-spacing: -0.02em; line-height: 1.25; }
.ps-ring {
  margin: 4px auto 8px;
  width: 116px; height: 116px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background:
    conic-gradient(from -90deg, #8B5CF6 0turn, #EBA1BE 0.66turn, rgba(255,255,255,0.12) 0.66turn 1turn);
  -webkit-mask: radial-gradient(circle, transparent 44px, #000 45px);
  mask: radial-gradient(circle, transparent 44px, #000 45px);
}
.ps-ring-wrap { position: relative; display: grid; place-items: center; }
.ps-ring-label {
  position: absolute;
  text-align: center;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  top: 50%;
  transform: translateY(-50%);
}
.ps-ring-label span { display: block; font-size: 0.62rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; opacity: 0.6; }
.ps-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 13px;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.84rem;
}
.ps-row .tick {
  width: 20px; height: 20px; flex: none;
  border-radius: 50%;
  border: 1.6px solid rgba(255, 255, 255, 0.4);
  display: grid; place-items: center;
  font-size: 0.6rem;
}
.ps-row.done .tick { background: linear-gradient(120deg, #8B5CF6, #EBA1BE); border-color: transparent; }
.ps-row.done span { opacity: 0.55; text-decoration: line-through; }
.ps-row small { margin-left: auto; opacity: 0.5; font-size: 0.7rem; }
.ps-ai {
  margin-top: auto;
  padding: 12px 13px;
  border-radius: 15px;
  font-size: 0.78rem;
  line-height: 1.5;
  background: linear-gradient(120deg, rgba(139, 92, 246, 0.32), rgba(235, 161, 190, 0.24));
  border: 1px solid rgba(255, 255, 255, 0.14);
}
.ps-ai b { display: block; font-size: 0.66rem; letter-spacing: 0.1em; text-transform: uppercase; opacity: 0.7; margin-bottom: 3px; }

/* ---------- kartlar ---------- */

.card {
  position: relative;
  padding: 26px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--surface);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: transform 0.28s, border-color 0.28s, background 0.28s;
}
.card:hover { transform: translateY(-4px); border-color: color-mix(in srgb, var(--brand) 55%, transparent); }
.card p:last-child { margin-bottom: 0; }
.card .ico {
  width: 46px; height: 46px;
  display: grid; place-items: center;
  border-radius: 14px;
  margin-bottom: 18px;
  background: linear-gradient(140deg, color-mix(in srgb, var(--brand-deep) 30%, transparent), color-mix(in srgb, var(--brand-2) 26%, transparent));
  border: 1px solid var(--line);
  color: var(--brand);
}
[data-theme="light"] .card .ico { color: var(--brand-deep); }
.card .ico svg { width: 22px; height: 22px; }

.grid { display: grid; gap: 20px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }

/* ---------- adımlar ---------- */

.steps { counter-reset: step; }
.step .num {
  width: 42px; height: 42px;
  display: grid; place-items: center;
  border-radius: 50%;
  font-weight: 700;
  margin-bottom: 18px;
  background: linear-gradient(120deg, var(--brand-deep), var(--brand-2));
  color: #fff;
}

/* ---------- bahçe ---------- */

.garden {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 5vw, 60px);
  align-items: center;
  padding: clamp(32px, 5vw, 52px);
  border-radius: 30px;
  border: 1px solid var(--line);
  background: var(--surface);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  overflow: hidden;
}
.chips { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 22px; }
.chip {
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--surface-2);
  font-size: 0.86rem;
  color: var(--ink-2);
}
.chip.pro {
  border-color: color-mix(in srgb, var(--amber) 60%, transparent);
  color: var(--amber);
}

.stages { display: grid; gap: 14px; }
.stage {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 18px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: var(--surface-2);
}
.stage .orb {
  width: 34px; height: 34px; flex: none;
  border-radius: 50%;
  background: linear-gradient(140deg, var(--brand-deep), var(--brand-2));
}
.stage:nth-child(1) .orb { opacity: 0.32; transform: scale(0.62); }
.stage:nth-child(2) .orb { opacity: 0.55; transform: scale(0.78); }
.stage:nth-child(3) .orb { opacity: 0.78; transform: scale(0.9); }
.stage:nth-child(4) .orb { box-shadow: 0 0 22px color-mix(in srgb, var(--brand) 60%, transparent); }
.stage b { display: block; font-size: 0.98rem; }
.stage span { font-size: 0.84rem; color: var(--ink-3); }

/* ---------- ekran görüntüleri ---------- */

.shots {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: min(230px, 62vw);
  justify-content: safe center;
  gap: 22px;
  overflow-x: auto;
  padding: 6px 24px 28px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
.shots::-webkit-scrollbar { height: 6px; }
.shots::-webkit-scrollbar-thumb { background: var(--line); border-radius: 99px; }
.shot {
  scroll-snap-align: center;
  aspect-ratio: 9 / 19.5;
  border-radius: 32px;
  border: 1px solid var(--line);
  background: var(--surface);
  overflow: hidden;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 20px;
  color: var(--ink-3);
  font-size: 0.86rem;
}
.shot img { width: 100%; height: 100%; object-fit: cover; }
.shot .placeholder { display: grid; gap: 10px; justify-items: center; }
.shot .placeholder svg { width: 26px; height: 26px; opacity: 0.5; }

/* ---------- plan karşılaştırma ---------- */

.plans { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.plan { padding: 30px; }
.plan.pro { border-color: color-mix(in srgb, var(--brand) 55%, transparent); }
.plan.pro::before {
  content: attr(data-tag);
  position: absolute;
  top: 20px; right: 22px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  padding: 4px 10px;
  border-radius: 999px;
  background: linear-gradient(120deg, var(--brand-deep), var(--brand-2));
  color: #fff;
}
.plan h3 { margin-bottom: 6px; }
.plan .lead { font-size: 0.92rem; color: var(--ink-3); margin-bottom: 20px; }
.plan ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.plan li { display: flex; gap: 11px; font-size: 0.96rem; color: var(--ink-2); }
.plan li svg { width: 19px; height: 19px; flex: none; margin-top: 3px; color: var(--brand); }

/* ---------- SSS ---------- */

.faq { display: grid; gap: 12px; max-width: 820px; margin-inline: auto; }
.faq details {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface);
  padding: 4px 20px;
  transition: border-color 0.25s;
}
.faq details[open] { border-color: color-mix(in srgb, var(--brand) 45%, transparent); }
.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 16px 0;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 14px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "";
  margin-left: auto;
  width: 9px; height: 9px;
  border-right: 2px solid var(--ink-3);
  border-bottom: 2px solid var(--ink-3);
  transform: rotate(45deg);
  transition: transform 0.25s;
  flex: none;
}
.faq details[open] summary::after { transform: rotate(-135deg); }
.faq .answer { padding: 0 0 18px; color: var(--ink-2); font-size: 0.97rem; }
.faq .answer p:last-child { margin-bottom: 0; }

/* ---------- CTA ---------- */

.cta-box {
  text-align: center;
  padding: clamp(40px, 6vw, 68px) clamp(24px, 5vw, 60px);
  border-radius: 30px;
  border: 1px solid var(--line);
  background:
    linear-gradient(140deg, color-mix(in srgb, var(--brand-deep) 22%, transparent), color-mix(in srgb, var(--brand-2) 18%, transparent)),
    var(--surface);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.cta-box img { width: 76px; height: 76px; margin: 0 auto 22px; border-radius: 20px; }
.cta-box .store-badges { justify-content: center; margin-top: 26px; }

/* ---------- alt bilgi ---------- */

.footer {
  border-top: 1px solid var(--line-soft);
  padding: 56px 0 40px;
  margin-top: 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer p { font-size: 0.94rem; max-width: 34ch; }
.footer h4 {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 16px;
  font-weight: 700;
}
.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 11px; }
.footer ul a { color: var(--ink-2); font-size: 0.95rem; transition: color 0.2s; }
.footer ul a:hover { color: var(--brand); }
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  padding-top: 26px;
  border-top: 1px solid var(--line-soft);
  font-size: 0.88rem;
  color: var(--ink-3);
}

/* ---------- yasal / içerik sayfaları ---------- */

.page-hero { padding: clamp(48px, 7vw, 84px) 0 clamp(24px, 4vw, 40px); }
.page-hero p { font-size: 1.05rem; max-width: 60ch; }
.legal { padding-bottom: clamp(64px, 9vw, 110px); }
.legal-wrap {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 48px;
  align-items: start;
}
.toc {
  position: sticky;
  top: calc(var(--nav-h) + 24px);
  padding: 22px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--surface);
  font-size: 0.9rem;
}
.toc h4 { font-size: 0.75rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 14px; }
.toc ol { margin: 0; padding-left: 18px; display: grid; gap: 9px; color: var(--ink-2); }
.toc a:hover { color: var(--brand); }

.prose { max-width: 74ch; }
.prose h2 { font-size: 1.5rem; margin-top: 44px; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { margin-top: 26px; }
.prose ul { padding-left: 20px; color: var(--ink-2); display: grid; gap: 8px; margin-bottom: 1.2em; }
.prose li { padding-left: 4px; }
.prose a { color: var(--brand); text-decoration: underline; text-underline-offset: 3px; }
.prose table {
  width: 100%;
  border-collapse: collapse;
  margin: 18px 0 26px;
  font-size: 0.94rem;
}
.prose th, .prose td {
  text-align: left;
  padding: 12px 14px;
  border-bottom: 1px solid var(--line-soft);
  vertical-align: top;
}
.prose th { color: var(--ink); font-weight: 700; font-size: 0.82rem; letter-spacing: 0.06em; text-transform: uppercase; }
.prose td { color: var(--ink-2); }
.table-scroll { overflow-x: auto; }
.note {
  padding: 20px 22px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  background: var(--surface);
  margin: 24px 0;
  font-size: 0.95rem;
}
.note strong { color: var(--ink); }

/* ---------- iletişim ---------- */

.contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.contact-card a.mail {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  font-weight: 600;
  color: var(--brand);
  word-break: break-all;
}
.contact-card a.mail:hover { text-decoration: underline; }

/* ---------- görünür olunca beliren ---------- */

.js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.js .reveal.is-in { opacity: 1; transform: none; }

/* ---------- duyarlı ---------- */

@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { order: -1; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .garden { grid-template-columns: 1fr; }
  .legal-wrap { grid-template-columns: 1fr; }
  .toc { position: static; }
  .contact-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  body { font-size: 16px; }
  .nav-toggle { display: grid; }
  .nav-links {
    position: fixed;
    inset: var(--nav-h) 0 auto;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 24px 22px;
    background: color-mix(in srgb, var(--bg) 94%, transparent);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--line);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.22s, transform 0.22s;
  }
  .nav-links.is-open { opacity: 1; transform: none; pointer-events: auto; }
  .nav-links a { padding: 13px 0; border-bottom: 1px solid var(--line-soft); font-size: 1rem; }
  .grid-3, .grid-2, .plans, .contact-grid, .footer-grid { grid-template-columns: 1fr; }
  /* Telefonda önce başlık okunsun, mockup metnin altına insin. */
  .hero-visual { order: 0; margin-top: 8px; }
  .phone { width: min(272px, 72vw); }
  .hero-stats { gap: 20px 26px; }
  .shots { grid-auto-columns: min(200px, 66vw); padding-inline: 24px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .aurora span { animation: none; }
  .js .reveal { opacity: 1; transform: none; transition: none; }
  * { transition-duration: 0.01ms !important; }
}
