/* ============================================================
   Plenty — clean editorial design system
   Playfair Display (display) + Mulish (body/UI)
   Deep teal + warm cream + soft gold accent. Shared by landing + legal pages.
   ============================================================ */

:root {
  /* brand */
  --teal:        #146B5B;
  --teal-deep:   #0C3D33;
  --teal-700:    #1C7F6C;
  --clear:       #2E7D5B;   /* in-app "CLEAR" accent */
  --cream:       #EFE6D6;
  --cream-2:     #F6F0E4;
  --gold:        #A9700C;  /* AA-safe on light, matches in-app "MAY CONTAIN" */
  --gold-soft:   #D9B36A;
  /* neutrals */
  --ink:    #1C201B;
  --ink-2:  #3A3F36;
  --muted:  #6E7268;
  --paper:  #FBF9F4;
  --sand:   #F6F2E9;
  --line:   #E7E3D8;
  --white:  #ffffff;
  /* fx */
  --shadow-sm: 0 1px 2px rgba(12,61,51,.05), 0 4px 12px rgba(12,61,51,.05);
  --shadow-md: 0 4px 10px rgba(12,61,51,.06), 0 20px 40px -12px rgba(12,61,51,.16);
  --shadow-lg: 0 8px 20px rgba(12,61,51,.08), 0 40px 70px -20px rgba(12,61,51,.28);
  --radius:  16px;
  --radius-lg: 24px;
  --ease: cubic-bezier(.2,.7,.2,1);
  --measure: 62ch;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  background: var(--paper);
  color: var(--ink);
  font-family: "Mulish", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

.serif { font-family: "Playfair Display", Georgia, "Times New Roman", serif; }

/* containers */
.wrap { max-width: 760px; margin: 0 auto; padding: 0 24px; }
.wrap-wide { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
header .wrap, footer .wrap { max-width: 1160px; }

/* ---------- header ---------- */
header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(251,249,244,.82);
  backdrop-filter: saturate(150%) blur(14px);
  -webkit-backdrop-filter: saturate(150%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease), background .3s var(--ease);
}
header.scrolled { border-bottom-color: var(--line); background: rgba(251,249,244,.92); }
header .wrap { display: flex; align-items: center; gap: 16px; padding-top: 16px; padding-bottom: 16px; }
.brand {
  font-family: "Playfair Display", serif;
  font-size: 23px; font-weight: 600; letter-spacing: -.01em;
  color: var(--teal); text-decoration: none; margin-right: auto;
}

nav { display: flex; gap: 22px; flex-wrap: wrap; }
nav a {
  color: var(--ink-2); text-decoration: none; font-size: 15px; font-weight: 500;
  position: relative; padding: 2px 0;
}
nav a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -3px; height: 1.5px;
  background: var(--gold-soft); transform: scaleX(0); transform-origin: left;
  transition: transform .28s var(--ease);
}
nav a:hover { color: var(--teal); }
nav a:hover::after, nav a:focus-visible::after { transform: scaleX(1); }

.langs { display: flex; gap: 4px; padding: 3px; background: var(--cream-2); border-radius: 999px; }
.langs button {
  background: transparent; color: var(--ink-2);
  border: 0; border-radius: 999px; padding: 5px 12px;
  font-size: 12.5px; font-weight: 600; cursor: pointer; font-family: inherit;
  transition: background .2s var(--ease), color .2s var(--ease);
}
.langs button[aria-pressed="true"] { background: var(--white); color: var(--teal); box-shadow: var(--shadow-sm); }

.nav-toggle { display: none; }
.nav-toggle .ic-close { display: none; }
header.nav-open .nav-toggle .ic-open { display: none; }
header.nav-open .nav-toggle .ic-close { display: block; }

@media (max-width: 799px) {
  header .wrap { flex-wrap: wrap; gap: 12px; padding-top: 12px; padding-bottom: 12px; }
  .brand { order: 1; }
  .langs { order: 2; }
  .nav-toggle { order: 3; }
  header nav { order: 4; }
  header .nav-cta { order: 5; }

  .nav-toggle {
    display: grid; place-items: center; width: 42px; height: 42px;
    background: var(--white); color: var(--teal);
    border: 1px solid var(--line); border-radius: 12px;
    cursor: pointer; box-shadow: var(--shadow-sm);
    transition: border-color .2s var(--ease), color .2s var(--ease);
  }
  .nav-toggle svg { width: 20px; height: 20px; }
  .nav-toggle:hover { border-color: var(--gold-soft); }
  .nav-toggle:focus-visible { outline: 3px solid var(--gold-soft); outline-offset: 2px; }

  header nav, header .nav-cta { display: none; }
  header.nav-open nav {
    display: flex; flex-direction: column; align-items: stretch;
    flex-basis: 100%; gap: 0; margin-top: 2px;
    padding-top: 6px; border-top: 1px solid var(--line);
  }
  header.nav-open nav a { padding: 13px 2px; font-size: 16.5px; color: var(--teal-deep); }
  header.nav-open nav a::after { display: none; }
  header.nav-open .nav-cta {
    display: inline-flex; flex-basis: 100%;
    justify-content: center; margin-bottom: 6px;
  }
}
@media (min-width: 800px) { .nav-cta { display: inline-flex; } }

section[id] { scroll-margin-top: 96px; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: inherit; font-size: 15.5px; font-weight: 600;
  padding: 12px 22px; border-radius: 999px; border: 1px solid transparent;
  text-decoration: none; cursor: pointer;
  transition: transform .2s var(--ease), box-shadow .25s var(--ease),
              background .25s var(--ease), color .25s var(--ease);
}
.btn:active { transform: translateY(1px) scale(.99); }
.btn-primary {
  background: linear-gradient(165deg, var(--teal-700), var(--teal) 55%, var(--teal-deep));
  color: #fff; box-shadow: 0 6px 18px -4px rgba(12,61,51,.5);
}
.btn-primary:hover { box-shadow: 0 10px 26px -6px rgba(12,61,51,.6); transform: translateY(-1px); }
.btn-primary:focus-visible { outline: 3px solid var(--gold-soft); outline-offset: 2px; }
.btn-ghost { background: var(--white); color: var(--teal); border-color: var(--line); box-shadow: var(--shadow-sm); }
.btn-ghost:hover { border-color: var(--gold-soft); color: var(--teal-deep); transform: translateY(-1px); }
.btn-ghost:focus-visible { outline: 3px solid var(--gold-soft); outline-offset: 2px; }

.nav-cta.btn { padding: 9px 18px; font-size: 14.5px; }

/* App Store badge */
.appstore {
  display: inline-flex; align-items: center; gap: 11px;
  background: #101614; color: #fff; text-decoration: none;
  padding: 10px 18px 10px 16px; border-radius: 14px;
  border: 1px solid rgba(255,255,255,.14);
  transition: transform .2s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease);
  box-shadow: 0 8px 22px -8px rgba(0,0,0,.5);
}
.appstore:hover { transform: translateY(-2px); background: #1b2320; box-shadow: 0 14px 30px -10px rgba(0,0,0,.55); }
.appstore:focus-visible { outline: 3px solid var(--gold-soft); outline-offset: 3px; }
.appstore svg { width: 26px; height: 26px; flex: none; }
.appstore .as-txt { display: flex; flex-direction: column; line-height: 1.05; }
.appstore .as-txt small { font-size: 10.5px; letter-spacing: .02em; opacity: .82; font-weight: 500; }
.appstore .as-txt b { font-size: 18px; font-weight: 600; letter-spacing: -.01em; }

/* ---------- generic sections ---------- */
main { display: block; }
.section { padding: 84px 0; }
.section-cream { background: var(--sand); border-block: 1px solid var(--line); }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12.5px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 16px;
}
.eyebrow::before { content: ""; width: 22px; height: 1.5px; background: var(--gold); }
.section-head { max-width: 640px; margin: 0 auto 52px; text-align: center; }
.section-head .eyebrow { justify-content: center; }
.section-head h2 { margin: 0 0 14px; }
.section-head p { color: var(--muted); font-size: 18px; }

h1, h2, h3 { font-family: "Playfair Display", Georgia, serif; font-weight: 600; color: var(--teal-deep); line-height: 1.12; letter-spacing: -.015em; }
h1 { font-size: clamp(38px, 6vw, 60px); }
h2 { font-size: clamp(28px, 4vw, 40px); }
h3 { font-size: 21px; }
em.script { font-style: italic; color: var(--teal); }

/* ---------- hero ---------- */
.hero { position: relative; padding: 64px 0 78px; overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(1100px 520px at 78% -8%, rgba(217,179,106,.18), transparent 60%),
    radial-gradient(900px 620px at 8% 6%, rgba(20,107,91,.12), transparent 62%),
    linear-gradient(180deg, #fff, var(--paper));
}
.hero-grid { display: grid; gap: 44px; align-items: center; }
@media (min-width: 900px) { .hero-grid { grid-template-columns: 1.05fr .95fr; gap: 56px; } }
.hero h1 { margin: 6px 0 20px; }
.hero .lede { font-size: clamp(18px, 2.2vw, 21px); color: var(--ink-2); max-width: 34ch; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; margin: 30px 0 20px; }
.trust { display: flex; flex-wrap: wrap; gap: 8px 18px; font-size: 13.5px; color: var(--muted); }
.trust > span { display: inline-flex; align-items: center; gap: 6px; }
.trust svg { width: 15px; height: 15px; color: var(--gold); flex: none; }

.hero-media { position: relative; display: flex; justify-content: center; }
.hero-phone {
  border-radius: 34px; background: #111; padding: 10px;
  box-shadow: var(--shadow-lg); border: 1px solid rgba(255,255,255,.6);
  width: min(78%, 300px);
  animation: floaty 7s ease-in-out infinite;
}
@media (prefers-reduced-motion: reduce) { .hero-phone { animation: none; } }
.hero-phone img { border-radius: 26px; width: 100%; height: auto; }
.hero-chip {
  position: absolute; left: 50%; bottom: 4px; transform: translateX(-50%);
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(251,249,244,.92); backdrop-filter: blur(8px);
  border: 1px solid var(--line); border-radius: 999px;
  padding: 8px 14px; font-size: 13px; font-weight: 600; color: var(--teal);
  box-shadow: var(--shadow-md); white-space: nowrap;
}
.hero-chip .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 4px rgba(169,112,12,.2); }

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

/* ---------- stats strip ---------- */
.stats-strip {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
  max-width: 840px; margin: 52px auto 0; padding-top: 34px; border-top: 1px solid var(--line);
  text-align: center;
}
.stats-strip b { display: block; font-family: "Playfair Display", serif; font-size: clamp(28px, 4vw, 36px); font-weight: 600; color: var(--teal-deep); letter-spacing: -.01em; }
.stats-strip span { font-size: 13px; color: var(--muted); }
@media (max-width: 520px) { .stats-strip { grid-template-columns: repeat(2, 1fr); gap: 26px 16px; } }

/* ---------- three-state label explainer ---------- */
.labels-grid { display: grid; gap: 18px; max-width: 780px; margin: 0 auto; }
@media (min-width: 720px) { .labels-grid { grid-template-columns: repeat(3, 1fr); } }
.label-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 28px 24px; box-shadow: var(--shadow-sm); text-align: left;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.label-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.label-pill {
  display: inline-flex; align-items: center; font-size: 12px; font-weight: 800;
  letter-spacing: .04em; text-transform: uppercase; border-radius: 999px;
  padding: 6px 14px; margin-bottom: 14px; border: 1.5px solid;
}
.label-pill.contains { color: var(--teal); border-color: var(--teal); background: rgba(20,107,91,.08); }
.label-pill.may { color: var(--gold); border-color: var(--gold); background: rgba(169,112,12,.08); }
.label-pill.unverified { color: #5B6470; border-color: #5B6470; background: rgba(91,100,112,.08); }
.label-card p { color: var(--ink-2); font-size: 15px; }
.labels-note { text-align: center; margin-top: 30px; color: var(--muted); font-size: 15.5px; max-width: 58ch; margin-inline: auto; }
.labels-note b { color: var(--teal-deep); }

/* ---------- steps ---------- */
.steps { display: grid; gap: 20px; }
@media (min-width: 720px) { .steps { grid-template-columns: repeat(3, 1fr); } }
.step {
  position: relative; background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 30px 24px 26px; box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.step:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--cream); }
.step-num {
  font-family: "Playfair Display", serif; font-size: 15px; font-weight: 700; color: var(--teal);
  width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center;
  background: var(--cream-2); border: 1px solid var(--cream); margin-bottom: 16px;
}
.step h3 { color: var(--teal-deep); margin-bottom: 6px; }
.step p { color: var(--muted); font-size: 15.5px; }

/* ---------- app preview ---------- */
.app-grid { display: grid; gap: 40px; align-items: center; }
@media (min-width: 860px) { .app-grid { grid-template-columns: 1fr 1fr; } }
.phones { display: flex; justify-content: center; gap: 22px; }
.phone {
  border-radius: 34px; background: #111; padding: 9px;
  box-shadow: var(--shadow-lg); border: 1px solid rgba(255,255,255,.08);
  width: min(46%, 230px);
}
.phone img { border-radius: 26px; width: 100%; height: auto; }
.phone.lift { transform: translateY(-22px); }
.feat-list { display: grid; gap: 20px; margin-top: 24px; }
.feat { display: grid; grid-template-columns: 42px 1fr; gap: 14px; align-items: start; }
.feat .ic {
  width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center;
  background: var(--cream-2); border: 1px solid var(--cream); color: var(--teal);
}
.feat .ic svg { width: 21px; height: 21px; }
.feat h3 { font-family: "Mulish", sans-serif; font-size: 16.5px; font-weight: 600; color: var(--ink); letter-spacing: 0; }
.feat p { font-size: 15px; color: var(--muted); margin-top: 2px; }

/* ---------- pricing ---------- */
.price-grid { display: grid; gap: 20px; max-width: 700px; margin: 0 auto; }
@media (min-width: 640px) { .price-grid { grid-template-columns: repeat(2, 1fr); align-items: stretch; } }
.price {
  display: flex; flex-direction: column; background: var(--white);
  border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 30px 26px;
  box-shadow: var(--shadow-sm); transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.price:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.price.featured {
  border-color: var(--teal); box-shadow: var(--shadow-lg);
  background: linear-gradient(180deg, #fff, var(--sand));
  position: relative;
}
.price.featured::before {
  content: attr(data-badge); position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(165deg, var(--teal-700), var(--teal-deep)); color: #fff;
  font-size: 11.5px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  padding: 6px 14px; border-radius: 999px; white-space: nowrap; box-shadow: var(--shadow-md);
}
.price .pk-name { font-size: 14px; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; color: var(--gold); }
.price .pk-credits { font-family: "Playfair Display", serif; font-size: 40px; font-weight: 600; color: var(--teal-deep); margin: 8px 0 2px; }
.price .pk-credits span { font-size: 16px; font-family: "Mulish", sans-serif; color: var(--muted); font-weight: 500; }
.price .pk-looks { font-size: 15px; color: var(--ink-2); }
.price hr { border: 0; border-top: 1px solid var(--line); margin: 22px 0; }
.price ul { list-style: none; display: grid; gap: 11px; margin-bottom: 24px; }
.price li { display: grid; grid-template-columns: 20px 1fr; gap: 10px; font-size: 14.5px; color: var(--ink-2); }
.price li svg { width: 18px; height: 18px; color: var(--gold); margin-top: 2px; }
.price .btn { margin-top: auto; justify-content: center; }
.price-foot { text-align: center; margin-top: 28px; font-size: 13.5px; color: var(--muted); max-width: 560px; margin-inline: auto; }

/* ---------- FAQ ---------- */
.faq { max-width: 760px; margin: 0 auto; display: grid; gap: 12px; }
.faq details {
  background: var(--white); border: 1px solid var(--line); border-radius: 14px;
  padding: 4px 20px; box-shadow: var(--shadow-sm); transition: border-color .25s var(--ease);
}
.faq details[open] { border-color: var(--cream); }
.faq summary {
  list-style: none; cursor: pointer; padding: 16px 0; font-weight: 600; font-size: 16.5px;
  color: var(--teal-deep); display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary .chev { flex: none; width: 20px; height: 20px; color: var(--gold); transition: transform .3s var(--ease); }
.faq details[open] summary .chev { transform: rotate(180deg); }
.faq details p { padding: 0 0 18px; color: var(--muted); font-size: 15.5px; }

/* ---------- CTA band ---------- */
.cta-band {
  position: relative; overflow: hidden; text-align: center; color: #fff;
  padding: 74px 24px; border-radius: 28px; margin: 0 24px;
  background: linear-gradient(155deg, var(--teal-700), var(--teal) 45%, var(--teal-deep));
}
.cta-band::after {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: radial-gradient(600px 300px at 80% -20%, rgba(217,179,106,.3), transparent 60%),
              radial-gradient(500px 300px at 10% 120%, rgba(255,255,255,.12), transparent 60%);
}
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 { color: #fff; }
.cta-band p { color: var(--cream); max-width: 40ch; margin: 14px auto 26px; font-size: 18px; }
.cta-band .cta-row { display: flex; justify-content: center; flex-wrap: wrap; gap: 14px; }

/* ---------- reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* ---------- scroll progress ---------- */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 100%;
  transform: scaleX(0); transform-origin: left; z-index: 200; pointer-events: none;
  background: linear-gradient(90deg, var(--gold-soft), var(--gold));
}

/* ============================================================
   Legal / support pages (privacy, terms, support) — shared base
   ============================================================ */
.legal { padding: 56px 0 40px; }
.legal h1 { font-size: clamp(30px, 4vw, 40px); margin-bottom: 8px; }
.updated { color: var(--muted); font-size: 15px; margin-bottom: 40px; }
.legal .wrap > p, .legal p { max-width: var(--measure); }
.legal h2 {
  font-size: 22px; letter-spacing: -.01em; margin: 40px 0 12px;
  padding-top: 28px; border-top: 1px solid var(--line);
}
.legal section:first-of-type h2, .legal h2:first-of-type { border-top: none; padding-top: 0; }
p { margin-bottom: 14px; }
p:last-child { margin-bottom: 0; }
a { color: var(--teal); }
a:hover { color: var(--teal-deep); }

.note {
  background: var(--sand); border: 1px solid var(--line);
  border-radius: 10px; padding: 16px 18px; margin: 28px 0; font-size: 16px; color: var(--ink-2);
}
.contact-box { background: var(--white); border: 1px solid var(--line); border-radius: 14px; padding: 24px; margin: 28px 0; box-shadow: var(--shadow-sm); }

.legal table { width: 100%; border-collapse: collapse; margin: 20px 0; font-size: 14.5px; }
.legal table th, .legal table td { text-align: left; padding: 10px 12px; border-bottom: 1px solid var(--line); vertical-align: top; }
.legal table th { color: var(--teal-deep); font-weight: 700; }
.legal table td { color: var(--ink-2); }
.contact-box a { font-size: 20px; font-weight: 700; text-decoration: none; }

/* ---------- footer ---------- */
footer { border-top: 1px solid var(--line); padding: 44px 0 56px; color: var(--muted); font-size: 14px; background: var(--sand); }
footer .wrap { display: flex; justify-content: space-between; gap: 20px 40px; flex-wrap: wrap; align-items: center; }
.foot-brand { font-family: "Playfair Display", serif; font-size: 20px; font-weight: 700; color: var(--teal); }
.foot-links { display: flex; gap: 20px; flex-wrap: wrap; }
footer a { color: var(--muted); text-decoration: none; }
footer a:hover { color: var(--teal); }

/* ---------- language switching ---------- */
[data-lang] { display: none; }
html[lang="tr"] [data-lang="tr"] { display: block; }
html[lang="en"] [data-lang="en"] { display: block; }
html[lang="tr"] span[data-lang="tr"],
html[lang="en"] span[data-lang="en"],
html[lang="tr"] b[data-lang="tr"],
html[lang="en"] b[data-lang="en"] { display: inline; }

html[lang="en"] .price.featured::before { content: "Most popular"; }
html[lang="tr"] .price.featured::before { content: "En popüler"; }
