/* ============================================================
   GetDressed — tanıtım sitesi (landing) stilleri
   Uygulamayla aynı editoryel-minimal dil; masaüstü + mobil.
   ============================================================ */

:root {
  --bg: #f6f2ea;
  --surface: #fffdf8;
  --surface-2: #efe9dd;
  --ink: #1f1d1a;
  --ink-2: #57534b;
  --muted: #8e887c;
  --line: #e7e0d2;
  --accent: #9a4b2f;
  --accent-soft: #f3e2da;
  --keep: #5a6e4e;
  --wait: #b98a2f;
  --radius: 18px;
  --radius-sm: 12px;
  --shadow: 0 1px 2px rgba(31,29,26,.05), 0 12px 40px rgba(31,29,26,.08);
  --shadow-lg: 0 30px 90px rgba(31,29,26,.20);
  --font-display: ui-serif, Georgia, 'Times New Roman', serif;
  --font-body: ui-sans-serif, -apple-system, 'SF Pro Text', 'Segoe UI', Roboto, sans-serif;
  --wrap: 1120px;
}

* { margin: 0; padding: 0; box-sizing: border-box; -webkit-tap-highlight-color: transparent; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; }
img, svg { display: block; max-width: 100%; }

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }

/* Tipografi */
.display { font-family: var(--font-display); font-weight: 600; letter-spacing: -.015em; }
.eyebrow {
  font-size: .75rem; font-weight: 700; letter-spacing: .16em;
  text-transform: uppercase; color: var(--accent);
}
.serif-i { font-family: var(--font-display); font-style: italic; }
.lead { color: var(--ink-2); font-size: 1.125rem; }

/* Butonlar */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font: 600 1rem var(--font-body);
  padding: 15px 26px; border-radius: 999px;
  border: 1px solid transparent; cursor: pointer; text-decoration: none;
  transition: transform .06s ease, background .15s ease, opacity .15s ease;
  white-space: nowrap;
}
.btn:active { transform: scale(.97); }
.btn-primary { background: var(--ink); color: var(--bg); }
.btn-primary:hover { background: #000; }
.btn-accent { background: var(--accent); color: #fff; }
.btn-accent:hover { background: #86402a; }
.btn-ghost { background: transparent; color: var(--ink); border-color: #c9bfab; }
.btn-ghost:hover { background: var(--surface-2); }
.btn-sm { padding: 10px 18px; font-size: .9rem; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in srgb, var(--bg) 86%, transparent);
  -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease;
}
.site-header.scrolled { border-bottom-color: var(--line); }
.site-header .wrap { display: flex; align-items: center; gap: 16px; height: 68px; }
.brand { font-family: var(--font-display); font-weight: 600; font-size: 1.4rem; letter-spacing: -.02em; text-decoration: none; }
.brand b { color: var(--accent); font-weight: 600; }
.nav-links { margin-left: auto; display: flex; align-items: center; gap: 28px; }
.nav-links a.link { font-size: .95rem; color: var(--ink-2); text-decoration: none; }
.nav-links a.link:hover { color: var(--ink); }
@media (max-width: 720px) { .nav-links a.link { display: none; } .nav-links { margin-left: auto; } }

/* ---------- Hero ---------- */
.hero { padding: 56px 0 40px; }
.hero .wrap { display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center; }
.hero h1 { font-size: clamp(2.4rem, 6vw, 3.6rem); line-height: 1.08; margin: 18px 0 20px; }
.hero .lead { max-width: 30ch; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.hero .fineprint { margin-top: 18px; font-size: .85rem; color: var(--muted); }
.hero .fineprint b { color: var(--ink-2); font-weight: 600; }

@media (max-width: 860px) {
  .hero { padding: 32px 0 24px; }
  .hero .wrap { grid-template-columns: 1fr; gap: 36px; }
  .hero-visual { order: -1; }
}

/* ---------- Telefon maketi ---------- */
.hero-visual { display: flex; justify-content: center; position: relative; }
.phone {
  width: 300px; max-width: 82vw;
  background: var(--bg);
  border-radius: 40px; padding: 12px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
  position: relative; z-index: 2;
  text-decoration: none; color: inherit;
  transition: transform .3s ease;
}
.phone:hover { transform: translateY(-6px); }
.phone-screen {
  background: var(--bg); border-radius: 30px; overflow: hidden;
  aspect-ratio: 300 / 620;
}
.mock-top { padding: 20px 18px 10px; }
.mock-top .mt-eyebrow { font-size: .55rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--accent); }
.mock-top h3 { font-family: var(--font-display); font-size: 1.35rem; font-weight: 600; line-height: 1.15; margin-top: 4px; }
.mock-top p { font-size: .72rem; color: var(--muted); margin-top: 4px; }
.mock-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; padding: 4px 18px 14px; }
.mock-tile { background: var(--surface); border: 1px solid var(--line); border-radius: 12px; aspect-ratio: 1; display: grid; place-items: center; position: relative; }
.mock-tile svg { width: 74%; height: 74%; }
.mock-tile .tag { position: absolute; top: 7px; left: 7px; font-size: .5rem; font-weight: 700; padding: 2px 7px; border-radius: 99px; background: var(--wait); color: #fff; opacity: .0; }
.mock-tile.flag .tag { opacity: 1; }
.mock-nav { display: flex; justify-content: space-around; padding: 10px 8px 14px; border-top: 1px solid var(--line); background: var(--surface); }
.mock-nav span { width: 22px; height: 22px; color: var(--muted); }
.mock-nav span.on { color: var(--accent); }
.phone-float {
  position: absolute; z-index: 1; background: var(--surface); border: 1px solid var(--line);
  border-radius: 14px; box-shadow: var(--shadow); padding: 10px 14px; font-size: .8rem; font-weight: 600;
  display: flex; align-items: center; gap: 8px;
}
.phone-float .dot { width: 9px; height: 9px; border-radius: 50%; }
.phone-float.a { top: 24px; right: -6px; }
.phone-float.b { bottom: 40px; left: -14px; }
@media (max-width: 480px) { .phone-float { display: none; } }

/* ---------- Bölüm başlıkları ---------- */
.section { padding: 56px 0; }
section[id] { scroll-margin-top: 84px; }
.section-head { max-width: 640px; margin-bottom: 36px; }
.section-head h2 { font-size: clamp(1.8rem, 4.5vw, 2.5rem); line-height: 1.14; margin: 12px 0 10px; }
.section-head p { color: var(--ink-2); font-size: 1.05rem; }
.section.alt { background: linear-gradient(180deg, transparent, #efe9dd55 40%, transparent); }

/* ---------- Adımlar (değer zinciri) ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.step {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px 24px; position: relative; overflow: hidden;
}
.step .num { font-family: var(--font-display); font-size: 2.4rem; font-weight: 600; color: var(--accent-soft); line-height: 1; }
.step .step-ic { position: absolute; top: 24px; right: 22px; width: 34px; height: 34px; color: var(--accent); }
.step h3 { font-family: var(--font-display); font-size: 1.35rem; font-weight: 600; margin: 14px 0 8px; }
.step p { color: var(--ink-2); font-size: .98rem; }
@media (max-width: 760px) { .steps { grid-template-columns: 1fr; } }

/* ---------- Özellikler ---------- */
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.feature {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px;
}
.feature .fic { width: 40px; height: 40px; border-radius: 11px; background: var(--accent-soft); color: var(--accent); display: grid; place-items: center; margin-bottom: 14px; }
.feature .fic svg { width: 22px; height: 22px; }
.feature h3 { font-size: 1.08rem; font-weight: 700; margin-bottom: 6px; }
.feature p { color: var(--ink-2); font-size: .95rem; }
.feature .pill { display: inline-block; margin-top: 12px; font-size: .72rem; font-weight: 600; color: var(--accent); background: var(--accent-soft); padding: 3px 10px; border-radius: 99px; }
@media (max-width: 860px) { .features { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .features { grid-template-columns: 1fr; } }

/* ---------- Konumlanma şeridi ---------- */
.why { background: var(--ink); color: var(--bg); border-radius: 24px; padding: 44px 40px; }
.why .eyebrow { color: #e6b89f; }
.why h2 { font-family: var(--font-display); font-weight: 600; font-size: clamp(1.7rem, 4vw, 2.3rem); line-height: 1.18; margin: 14px 0 10px; max-width: 22ch; }
.why p { color: #d8d0c2; max-width: 54ch; }
.why-row { display: flex; flex-wrap: wrap; gap: 12px 26px; margin-top: 24px; }
.why-row span { display: inline-flex; align-items: center; gap: 8px; font-size: .95rem; color: #eee7d9; }
.why-row span i { color: #e6b89f; font-style: normal; }

/* ---------- Final CTA ---------- */
.cta-final { text-align: center; padding: 72px 0 40px; }
.cta-final h2 { font-family: var(--font-display); font-weight: 600; font-size: clamp(2rem, 5vw, 2.8rem); line-height: 1.12; margin-bottom: 12px; }
.cta-final p { color: var(--ink-2); font-size: 1.08rem; margin-bottom: 26px; }

/* ---------- Footer ---------- */
.site-footer { border-top: 1px solid var(--line); padding: 30px 0 44px; }
.site-footer .wrap { display: flex; flex-wrap: wrap; gap: 12px 24px; align-items: center; justify-content: space-between; }
.site-footer .brand { font-size: 1.15rem; }
.site-footer p { font-size: .82rem; color: var(--muted); }

/* animasyon */
.reveal { opacity: 0; transform: translateY(14px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } html { scroll-behavior: auto; } }
