/* ── Unsaid — getunsaidapp.com ─────────────────────────────
   App'in tasarım sistemiyle birebir.
   cream #F7F3F0 · creamShade #E8E0D5 · blush #F4C2C2
   plum #A084CA · stone #6B6B6B · ink #2B2B2B
─────────────────────────────────────────────────────────── */

:root {
  --cream:      #F7F3F0;
  --cream-2:    #E8E0D5;
  --blush:      #F4C2C2;
  --plum:       #A084CA;
  --plum-deep:  #6E54A0;
  --stone:      #6B6B6B;
  --ink:        #2B2B2B;
  --radius:     20px;
  --radius-sm:  14px;
  --maxw:       1080px;
  --shadow:     0 10px 40px rgba(43, 43, 43, 0.06);
  --shadow-sm:  0 4px 18px rgba(43, 43, 43, 0.05);
  --font:       -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui,
                "Helvetica Neue", Arial, sans-serif;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font);
  font-weight: 300;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* ── Dil değiştirme ── */
[data-lang="tr"] .lang-en { display: none; }
[data-lang="en"] .lang-tr { display: none; }

/* ── Tipografi ── */
h1, h2, h3 { font-weight: 300; letter-spacing: -0.02em; line-height: 1.2; color: var(--ink); }
h1 { font-size: clamp(2.4rem, 6vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 4vw, 2.4rem); }
h3 { font-size: 1.2rem; font-weight: 400; }
p  { color: var(--stone); }
a  { color: inherit; text-decoration: none; }

.muted   { color: var(--stone); }
.accent  { color: var(--plum-deep); }
.center  { text-align: center; }

/* ── Layout ── */
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
section { padding: clamp(64px, 9vw, 110px) 0; }
.narrow { max-width: 720px; margin: 0 auto; }

/* ── Header ── */
header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(247, 243, 240, 0.82);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid rgba(43, 43, 43, 0.05);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 66px; }
.brand { display: flex; align-items: center; gap: 11px; font-size: 1.15rem; font-weight: 400; }
.brand img { width: 34px; height: 34px; border-radius: 9px; box-shadow: var(--shadow-sm); }
.nav-right { display: flex; align-items: center; gap: 14px; }

/* Dil toggle */
.lang-switch { display: inline-flex; border: 1px solid rgba(43,43,43,0.12); border-radius: 999px; overflow: hidden; }
.lang-switch button {
  font-family: var(--font); font-size: 0.78rem; font-weight: 500; letter-spacing: 0.03em;
  padding: 6px 13px; border: 0; background: transparent; color: var(--stone); cursor: pointer;
  transition: background .2s, color .2s;
}
.lang-switch button.active { background: var(--ink); color: var(--cream); }

/* ── Butonlar ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--font); font-size: 1rem; font-weight: 500;
  height: 54px; padding: 0 28px; border-radius: var(--radius-sm);
  background: var(--ink); color: var(--cream); cursor: pointer; border: 0;
  transition: transform .15s ease, opacity .2s; white-space: nowrap;
}
.btn:hover { opacity: 0.92; }
.btn:active { transform: scale(0.985); }
.btn-sm { height: 42px; padding: 0 18px; font-size: 0.9rem; border-radius: 11px; }
.btn-ghost { background: transparent; color: var(--ink); border: 1px solid rgba(43,43,43,0.15); }

/* App Store rozeti */
.appstore {
  display: inline-flex; align-items: center; gap: 12px;
  background: var(--ink); color: var(--cream);
  padding: 11px 22px 11px 20px; border-radius: var(--radius-sm);
  transition: transform .15s ease, opacity .2s;
}
.appstore:hover { opacity: .92; }
.appstore:active { transform: scale(0.985); }
.appstore svg { width: 26px; height: 26px; flex: none; }
.appstore .as-top { font-size: 0.66rem; letter-spacing: 0.04em; opacity: 0.8; display: block; line-height: 1.1; }
.appstore .as-big { font-size: 1.18rem; font-weight: 500; line-height: 1.15; }

/* ── Hero ── */
.hero { padding-top: clamp(56px, 8vw, 96px); padding-bottom: clamp(40px, 6vw, 70px); text-align: center; position: relative; overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(600px 360px at 50% -8%, rgba(160,132,202,0.18), transparent 70%),
    radial-gradient(420px 280px at 85% 12%, rgba(244,194,194,0.16), transparent 70%);
}
.hero-icon { width: 96px; height: 96px; border-radius: 22px; box-shadow: var(--shadow); margin-bottom: 26px; }
.hero h1 { margin-bottom: 14px; }
.hero .tagline { font-size: clamp(1.1rem, 2.6vw, 1.4rem); color: var(--ink); font-weight: 300; margin-bottom: 8px; }
.hero .sub { font-size: 1.05rem; max-width: 480px; margin: 0 auto 34px; }
.hero-cta { display: flex; gap: 14px; justify-content: center; align-items: center; flex-wrap: wrap; }

/* ── Bölüm başlığı ── */
.eyebrow { font-size: 0.8rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--plum); font-weight: 600; margin-bottom: 14px; }
.section-head { text-align: center; max-width: 620px; margin: 0 auto clamp(40px, 6vw, 60px); }
.section-head p { margin-top: 14px; font-size: 1.05rem; }

/* ── Adımlar (Nasıl çalışır) ── */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.step {
  background: var(--cream); border: 1px solid rgba(43,43,43,0.06);
  border-radius: var(--radius); padding: 34px 28px; text-align: center; box-shadow: var(--shadow-sm);
}
.step .num {
  width: 46px; height: 46px; border-radius: 13px; margin: 0 auto 18px;
  display: grid; place-items: center; font-size: 1.2rem; font-weight: 400;
  background: rgba(160,132,202,0.16); color: var(--plum-deep);
}
.step h3 { margin-bottom: 8px; }
.step p { font-size: 0.97rem; }

/* ── Katmanlar ── */
.tinted { background: var(--cream-2); }
.layers { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.layer {
  background: var(--cream); border-radius: var(--radius); padding: 38px 34px;
  box-shadow: var(--shadow-sm); border: 1px solid rgba(43,43,43,0.05);
}
.layer .badge {
  display: inline-block; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.04em;
  padding: 5px 13px; border-radius: 999px; margin-bottom: 18px;
}
.layer.partner .badge { background: rgba(244,194,194,0.35); color: #b5677a; }
.layer.family  .badge { background: rgba(160,132,202,0.22); color: var(--plum-deep); }
.layer h3 { font-size: 1.45rem; margin-bottom: 10px; }
.layer ul { list-style: none; margin-top: 18px; }
.layer li { position: relative; padding-left: 26px; margin-bottom: 11px; color: var(--stone); font-size: 0.98rem; }
.layer li::before { content: ""; position: absolute; left: 0; top: 9px; width: 8px; height: 8px; border-radius: 50%; background: var(--plum); }

/* ── Özellik grid ── */
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.feature { padding: 30px 26px; border-radius: var(--radius); background: var(--cream); border: 1px solid rgba(43,43,43,0.06); box-shadow: var(--shadow-sm); }
.feature .ic { font-size: 1.7rem; margin-bottom: 14px; display: block; }
.feature h3 { margin-bottom: 7px; }
.feature p { font-size: 0.95rem; }

/* ── Gizlilik vurgu ── */
.privacy-band { background: var(--ink); color: var(--cream); border-radius: 28px; padding: clamp(48px, 7vw, 76px) clamp(28px, 5vw, 60px); text-align: center; }
.privacy-band h2 { color: var(--cream); }
.privacy-band p { color: rgba(247,243,240,0.72); margin-top: 16px; font-size: 1.1rem; }
.privacy-band .lockrow { display: flex; gap: 28px; justify-content: center; flex-wrap: wrap; margin-top: 30px; }
.privacy-band .lockrow span { font-size: 0.92rem; color: rgba(247,243,240,0.85); }

/* ── CTA ── */
.cta-final { text-align: center; }
.cta-final h2 { margin-bottom: 22px; }

/* ── Footer ── */
footer { background: var(--cream-2); padding: 56px 0 40px; }
.foot { display: flex; flex-wrap: wrap; gap: 24px; justify-content: space-between; align-items: flex-start; }
.foot .brand { font-size: 1.05rem; }
.foot-links { display: flex; gap: 28px; flex-wrap: wrap; }
.foot-links a { color: var(--stone); font-size: 0.95rem; transition: color .2s; }
.foot-links a:hover { color: var(--ink); }
.foot-bottom { margin-top: 36px; padding-top: 22px; border-top: 1px solid rgba(43,43,43,0.08); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; font-size: 0.85rem; color: var(--stone); }

/* ── Hukuki / içerik sayfaları ── */
.doc { padding-top: 56px; }
.doc h1 { margin-bottom: 8px; }
.doc .updated { color: var(--stone); font-size: 0.9rem; margin-bottom: 40px; }
.doc h2 { font-size: 1.4rem; margin: 38px 0 12px; }
.doc h3 { margin: 26px 0 8px; }
.doc p, .doc li { color: var(--stone); margin-bottom: 12px; }
.doc ul { padding-left: 22px; margin-bottom: 16px; }
.doc li { margin-bottom: 8px; }
.doc a { color: var(--plum-deep); text-decoration: underline; text-underline-offset: 3px; }
.back-link { display: inline-flex; align-items: center; gap: 6px; font-size: 0.9rem; color: var(--stone); margin-bottom: 30px; }
.back-link:hover { color: var(--ink); }

/* SSS */
.faq { margin-top: 8px; }
.faq details { border-bottom: 1px solid rgba(43,43,43,0.1); padding: 18px 0; }
.faq summary { font-size: 1.05rem; font-weight: 400; color: var(--ink); cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 1.4rem; color: var(--plum); font-weight: 300; transition: transform .2s; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { margin-top: 12px; }

/* ── Responsive ── */
@media (max-width: 820px) {
  .steps, .features { grid-template-columns: 1fr; }
  .layers { grid-template-columns: 1fr; }
  .foot { flex-direction: column; }
}
@media (max-width: 520px) {
  .nav .brand span { display: none; }
  .hero-cta { flex-direction: column; }
  .hero-cta .appstore, .hero-cta .btn { width: 100%; max-width: 300px; }
}

/* ── Hayal ettiren tam genişlik bant ── */
.imagine {
  position: relative;
  padding: clamp(96px, 14vw, 160px) 24px;
  text-align: center;
  color: var(--cream);
  background-color: var(--plum-deep);
  /* Görsel gelince otomatik dolar; yoksa zarif plum degrade kalır */
  background-image:
    linear-gradient(180deg, rgba(43,43,43,0.42), rgba(43,43,43,0.58)),
    radial-gradient(120% 120% at 50% 0%, rgba(160,132,202,0.55), rgba(110,84,160,0.95)),
    url('imagine.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.imagine .eyebrow { color: var(--blush); }
.imagine h2 { color: var(--cream); }
.imagine p { color: rgba(247,243,240,0.86); max-width: 560px; margin: 18px auto 0; font-size: 1.15rem; }

/* ── Katman kartı görseli ── */
.layer-photo {
  height: 172px;
  border-radius: var(--radius-sm);
  margin-bottom: 24px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: var(--cream-2);
}
.partner-photo {
  background-image:
    linear-gradient(180deg, rgba(244,194,194,0.20), rgba(181,103,122,0.30)),
    radial-gradient(100% 100% at 30% 20%, rgba(244,194,194,0.55), rgba(160,132,202,0.45)),
    url('partner.jpg');
}
.family-photo {
  background-image:
    linear-gradient(180deg, rgba(160,132,202,0.18), rgba(110,84,160,0.32)),
    radial-gradient(100% 100% at 70% 20%, rgba(160,132,202,0.55), rgba(110,84,160,0.5)),
    url('family.jpg');
}

/* ── Hero rozeti: tek abonelik vurgusu ── */
.hero-badge {
  display: inline-flex; align-items: center; gap: 9px;
  margin: 24px auto 0; padding: 10px 20px;
  background: rgba(244,194,194,0.28);
  border: 1px solid rgba(244,194,194,0.65);
  border-radius: 999px;
  font-size: 0.94rem; color: var(--ink); line-height: 1.4;
}
.hero-badge strong { font-weight: 500; }

/* ── Lisans bölümü: bir kişi alır, birlikte kullanılır ── */
.license-card {
  background: var(--cream-2);
  border: 1px solid rgba(43,43,43,0.05);
  border-radius: 28px;
  padding: clamp(44px, 6vw, 68px) clamp(28px, 5vw, 56px);
  text-align: center;
}
.license-card .ic { font-size: 2.3rem; display: block; margin-bottom: 16px; }
.license-card h2 { margin-bottom: 14px; }
.license-card > p { max-width: 600px; margin: 0 auto; font-size: 1.08rem; }
.license-points { display: flex; gap: 30px; justify-content: center; flex-wrap: wrap; margin-top: 30px; }
.license-points span { font-size: 0.96rem; color: var(--ink); display: inline-flex; align-items: center; gap: 8px; }

/* ── Deneme notu (14 gün ücretsiz) ── */
.trial-note { margin-top: 14px; font-size: 0.95rem; color: var(--stone); }
.trial-note strong { color: var(--plum-deep); font-weight: 500; }
