/* Forma web — uygulama tasarım dilinin birebir web karşılığı */
:root {
  --green: #12a06a;
  --green-dark: #0b7e52;
  --mint: #5fd3a0;
  --green-tint: #e4f3ea;
  --ink: #16201a;
  --text-muted: #707a72;
  --text-faint: #8a8f87;
  --cream: #faf8f4;
  --surface: #ffffff;
  --border: #eceae3;
  --terracotta: #f0764b;
  --terracotta-tint: #fbe9e1;
  --amber: #e8a23d;
  --amber-tint: #fdf3d6;
  --water: #3b86e0;
  --water-tint: #e7f0fb;
  --gold: #c99a2e;
  --gold-tint: #fbf2d8;
  --radius: 20px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
.wrap { max-width: 1080px; margin: 0 auto; padding: 0 24px; }
a { color: var(--green-dark); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ── Nav ─────────────────────────────────────────── */
nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250, 248, 244, 0.86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.brand { display: flex; align-items: center; gap: 9px; font-weight: 800; letter-spacing: 2.5px; font-size: 15px; color: var(--ink); }
.brand:hover { text-decoration: none; }
.brand-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); }
.nav-links { display: flex; align-items: center; gap: 26px; font-size: 14.5px; font-weight: 600; }
.nav-links a { color: var(--text-muted); }
.nav-links a:hover { color: var(--ink); text-decoration: none; }
.nav-cta {
  background: var(--green); color: #fff !important;
  padding: 9px 18px; border-radius: 999px; font-weight: 700;
  box-shadow: 0 6px 16px rgba(18, 160, 106, 0.28);
}
.nav-cta:hover { background: var(--green-dark); text-decoration: none; }
@media (max-width: 720px) { .nav-links a:not(.nav-cta) { display: none; } }

/* ── Hero ────────────────────────────────────────── */
.hero {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  color: #fff;
  border-radius: 0 0 36px 36px;
}
.hero::before, .hero::after {
  content: ''; position: absolute; border-radius: 50%;
  background: rgba(255, 255, 255, 0.08); pointer-events: none;
}
.hero::before { width: 420px; height: 420px; top: -160px; right: -120px; }
.hero::after { width: 360px; height: 360px; bottom: -180px; left: -110px; background: rgba(255,255,255,0.05); }
.hero-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 48px; align-items: center;
  padding: 84px 0 96px;
}
@media (max-width: 860px) { .hero-inner { grid-template-columns: 1fr; padding: 56px 0 64px; } }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255, 255, 255, 0.16); border-radius: 999px;
  padding: 7px 15px; font-size: 12.5px; font-weight: 700; letter-spacing: 1px;
  margin-bottom: 22px;
}
.hero-badge::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: #fff; }
.hero h1 { font-size: clamp(34px, 5.4vw, 54px); font-weight: 800; letter-spacing: -1.6px; line-height: 1.08; }
.hero p.lead { margin-top: 18px; font-size: 18px; color: rgba(255, 255, 255, 0.86); max-width: 460px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.btn-light {
  background: #fff; color: var(--green-dark); font-weight: 800; font-size: 16px;
  padding: 15px 30px; border-radius: 16px; display: inline-block;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.18);
  transition: transform 0.15s ease;
}
.btn-light:hover { transform: translateY(-2px); text-decoration: none; }
.btn-ghost {
  border: 1.5px solid rgba(255, 255, 255, 0.45); color: #fff; font-weight: 700;
  padding: 15px 26px; border-radius: 16px; display: inline-block;
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.1); text-decoration: none; }
.hero-note { margin-top: 16px; font-size: 13px; color: rgba(255, 255, 255, 0.65); }
.stars { color: #ffd76b; letter-spacing: 2px; }

/* Telefon mockup (saf CSS) */
.phone {
  width: 290px; margin: 0 auto;
  background: #0e1511; border-radius: 44px; padding: 12px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.35);
  transform: rotate(2.5deg);
}
.phone-screen { background: var(--cream); border-radius: 34px; overflow: hidden; padding: 20px 16px 24px; color: var(--ink); }
.ps-greet { font-size: 11px; color: var(--text-faint); font-weight: 700; letter-spacing: 0.6px; }
.ps-name { font-size: 19px; font-weight: 800; letter-spacing: -0.4px; margin-top: 2px; }
.ps-cal {
  margin-top: 14px; background: var(--ink); color: #fff; border-radius: 20px;
  padding: 16px; display: flex; align-items: center; gap: 14px;
}
.ps-ring {
  width: 58px; height: 58px; border-radius: 50%; flex: none;
  background: conic-gradient(var(--mint) 0 68%, rgba(255, 255, 255, 0.16) 68% 100%);
  display: grid; place-items: center;
}
.ps-ring::after { content: '68%'; background: var(--ink); width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center; font-size: 11px; font-weight: 800; }
.ps-cal b { font-size: 17px; display: block; }
.ps-cal span { font-size: 11px; color: rgba(255, 255, 255, 0.6); }
.ps-meal {
  margin-top: 10px; background: var(--surface); border: 1px solid var(--border);
  border-radius: 16px; padding: 11px 12px; display: flex; align-items: center; gap: 10px;
}
.ps-meal .ico { width: 34px; height: 34px; border-radius: 11px; display: grid; place-items: center; font-size: 16px; flex: none; }
.ps-meal b { font-size: 13px; display: block; }
.ps-meal span { font-size: 11px; color: var(--text-faint); }
.ps-check { margin-left: auto; width: 22px; height: 22px; border-radius: 50%; background: var(--green); color: #fff; display: grid; place-items: center; font-size: 12px; font-weight: 800; }
@media (max-width: 860px) {
  /* Mobil: mockup metnin altında, düz ve küçük — sitenin kalbi görünür kalsın */
  .phone {
    width: 252px;
    transform: none;
    margin-top: 40px;
    border-radius: 38px;
    padding: 10px;
  }
  .phone-screen { border-radius: 30px; }
}

/* ── Bölümler ────────────────────────────────────── */
section { padding: 76px 0; }
.kicker { color: var(--green); font-weight: 800; font-size: 13px; letter-spacing: 1.6px; text-transform: uppercase; }
h2.title { font-size: clamp(26px, 3.6vw, 36px); font-weight: 800; letter-spacing: -0.9px; margin-top: 10px; }
p.sub { color: var(--text-muted); margin-top: 12px; max-width: 560px; font-size: 16.5px; }
.center { text-align: center; }
.center p.sub { margin-left: auto; margin-right: auto; }

.grid { display: grid; gap: 18px; margin-top: 40px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 860px) { .grid-3, .grid-2 { grid-template-columns: 1fr; } }

.card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 26px;
}
.card .ico {
  width: 46px; height: 46px; border-radius: 14px; display: grid; place-items: center;
  font-size: 21px; margin-bottom: 16px;
}
.card h3 { font-size: 17.5px; font-weight: 800; letter-spacing: -0.3px; }
.card p { color: var(--text-muted); font-size: 14.5px; margin-top: 7px; }

/* Adımlar */
.step-num {
  width: 34px; height: 34px; border-radius: 50%; background: var(--green); color: #fff;
  display: grid; place-items: center; font-weight: 800; font-size: 15px; margin-bottom: 14px;
}

/* Fiyat */
.price-card { position: relative; text-align: center; padding: 34px 26px; }
.price-card.best { border: 2px solid var(--green); box-shadow: 0 16px 40px rgba(18, 160, 106, 0.14); }
.price-tag {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: #fff; font-size: 12px; font-weight: 800;
  padding: 5px 14px; border-radius: 999px; letter-spacing: 0.6px; white-space: nowrap;
}
.price-amount { font-size: 40px; font-weight: 800; letter-spacing: -1.4px; margin-top: 10px; }
.price-amount small { font-size: 15px; font-weight: 600; color: var(--text-muted); letter-spacing: 0; }
.price-note { color: var(--text-muted); font-size: 13.5px; margin-top: 6px; }
.price-list { list-style: none; margin: 20px 0 24px; text-align: left; }
.price-list li { padding: 7px 0; font-size: 14.5px; color: var(--ink); display: flex; gap: 9px; align-items: baseline; }
.price-list li::before { content: '✓'; color: var(--green); font-weight: 800; }
.btn-green {
  display: inline-block; background: var(--green); color: #fff; font-weight: 800;
  padding: 14px 28px; border-radius: 14px; font-size: 15.5px;
  box-shadow: 0 10px 24px rgba(18, 160, 106, 0.3);
}
.btn-green:hover { background: var(--green-dark); text-decoration: none; }

/* SSS */
details {
  background: var(--surface); border: 1px solid var(--border); border-radius: 16px;
  padding: 18px 22px; margin-top: 12px;
}
details summary { cursor: pointer; font-weight: 700; font-size: 15.5px; list-style: none; display: flex; justify-content: space-between; align-items: center; }
details summary::after { content: '+'; font-size: 20px; color: var(--green); font-weight: 700; }
details[open] summary::after { content: '–'; }
details p { color: var(--text-muted); font-size: 14.5px; margin-top: 10px; }

/* Sağlık notu */
.notice {
  background: var(--amber-tint); border: 1px solid #f0e0bc; border-radius: 16px;
  padding: 18px 22px; color: #8a6d2e; font-size: 14px; margin-top: 40px;
}

/* CTA bandı */
.cta-band {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  border-radius: 28px; color: #fff; text-align: center; padding: 56px 28px;
  position: relative; overflow: hidden;
}
.cta-band::before { content: ''; position: absolute; width: 300px; height: 300px; border-radius: 50%; background: rgba(255,255,255,0.08); top: -140px; right: -80px; }
.cta-band h2 { font-size: clamp(24px, 3.4vw, 34px); font-weight: 800; letter-spacing: -0.8px; }
.cta-band p { color: rgba(255, 255, 255, 0.85); margin: 12px auto 26px; max-width: 440px; }

/* ── Footer ─────────────────────────────────────── */
footer { border-top: 1px solid var(--border); padding: 44px 0 36px; margin-top: 40px; }
.foot { display: flex; flex-wrap: wrap; gap: 28px; justify-content: space-between; align-items: flex-start; }
.foot-links { display: flex; flex-wrap: wrap; gap: 22px; font-size: 14px; font-weight: 600; }
.foot-links a { color: var(--text-muted); }
.foot-links a:hover { color: var(--ink); text-decoration: none; }
.foot-note { width: 100%; color: var(--text-faint); font-size: 12.5px; margin-top: 18px; }

/* ── Yasal sayfalar ─────────────────────────────── */
.legal { max-width: 760px; margin: 0 auto; padding: 56px 24px 80px; }
.legal h1 { font-size: clamp(28px, 4vw, 38px); font-weight: 800; letter-spacing: -1px; }
.legal .updated { color: var(--text-faint); font-size: 13.5px; margin-top: 8px; }
.legal h2 { font-size: 20px; font-weight: 800; letter-spacing: -0.4px; margin: 36px 0 10px; }
.legal p, .legal li { color: #3d463f; font-size: 15px; }
.legal ul { padding-left: 22px; margin-top: 8px; }
.legal li { margin-top: 6px; }
.legal .box {
  background: var(--green-tint); border: 1px solid #cfe8da; border-radius: 16px;
  padding: 18px 22px; margin-top: 18px; font-size: 14.5px; color: var(--green-dark);
}
.legal table { width: 100%; border-collapse: collapse; margin-top: 12px; font-size: 14px; }
.legal th, .legal td { text-align: left; padding: 10px 12px; border: 1px solid var(--border); vertical-align: top; }
.legal th { background: var(--surface); font-weight: 700; }

/* ── Mobil iyileştirmeleri ──────────────────────── */
@media (max-width: 720px) {
  section { padding: 52px 0; }
  .hero-inner { padding: 44px 0 52px; gap: 0; text-align: center; }
  .hero-badge { margin-bottom: 16px; }
  .hero p.lead { font-size: 16px; margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-actions a { flex: 1 1 100%; text-align: center; }
  .hero-note { text-align: center; }
  .grid { gap: 14px; margin-top: 28px; }
  .card { padding: 22px; }
  .price-card.best { margin-top: 10px; }
  .cta-band { padding: 44px 20px; border-radius: 22px; }
  .foot { flex-direction: column; gap: 18px; }
  .legal { padding: 40px 20px 64px; }
  /* Tablolar mobilde taşmasın — yatay kaydırılabilir */
  .legal table { display: block; overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .legal th, .legal td { min-width: 130px; }
  details { padding: 15px 18px; }
  nav .nav-links { gap: 14px; }
}
