@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Fraunces:opsz,wght@9..144,600;9..144,700&display=swap');

:root {
  --ink: #0b1f33;
  --ink-soft: #243447;
  --muted: #5b6b74;
  --green: #0b8f5a;
  --green-deep: #076b43;
  --amber: #e8a317;
  --fog: #f3f7f5;
  --line: #d7e3dc;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(11, 31, 51, 0.08);
  --radius: 18px;
  --max: 1120px;
  --wa: #128c7e;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; }
body {
  font-family: 'Manrope', sans-serif;
  color: var(--ink);
  background:
    radial-gradient(1100px 480px at 8% -12%, rgba(11, 143, 90, 0.13), transparent 55%),
    radial-gradient(800px 380px at 100% 0%, rgba(232, 163, 23, 0.11), transparent 48%),
    linear-gradient(180deg, #eef5f1 0%, var(--fog) 42%, #e8f0ec 100%);
  min-height: 100vh;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }

.wrap {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}

/* Üst bar */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0 8px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}
.brand svg { width: 46px; height: 46px; flex: 0 0 auto; }
.brand strong {
  display: block;
  font-family: 'Fraunces', serif;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
  line-height: 1.15;
}
.brand small {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px 14px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.nav-links a:not(.btn) {
  color: var(--ink-soft);
  font-weight: 600;
  font-size: 0.92rem;
}
.nav-links a:not(.btn):hover { color: var(--green-deep); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  padding: 11px 18px;
  font-weight: 700;
  font-size: 0.92rem;
  border: 1px solid transparent;
  transition: transform 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: var(--green);
  color: #fff;
  box-shadow: 0 8px 20px rgba(11, 143, 90, 0.22);
}
.btn-primary:hover { background: var(--green-deep); }
.btn-ghost {
  background: #fff;
  border-color: var(--line);
  color: var(--ink);
}
.btn-wa { background: var(--wa); color: #fff; }
.btn-wa:hover { filter: brightness(1.05); }

/* Hero */
.hero {
  display: grid;
  gap: 28px;
  padding: 28px 0 12px;
}
.kicker {
  margin: 0 0 10px;
  color: var(--green-deep);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.78rem;
}
.hero h1 {
  margin: 0 0 14px;
  font-family: 'Fraunces', serif;
  font-size: clamp(2rem, 5vw, 3.35rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
}
.lead {
  margin: 0 0 22px;
  color: var(--ink-soft);
  font-size: 1.08rem;
  line-height: 1.55;
  max-width: 36rem;
}
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.note {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.hero-panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow);
  padding: 18px;
}
.hero-panel h2 {
  margin: 0 0 12px;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
}
.mini-list { display: grid; gap: 10px; }
.mini-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  padding: 12px 14px;
  border-radius: 14px;
  background: var(--fog);
}
.mini-row strong { font-size: 0.95rem; }
.mini-row span {
  color: var(--green-deep);
  font-weight: 700;
  font-size: 0.82rem;
  white-space: nowrap;
}

.banner {
  margin: 8px 0 0;
  padding: 12px 16px;
  border-radius: 14px;
  background: rgba(232, 163, 23, 0.14);
  border: 1px solid rgba(232, 163, 23, 0.35);
  color: var(--ink-soft);
  font-size: 0.92rem;
}
.banner a { color: var(--green-deep); font-weight: 800; }

/* Bölümler */
.section { padding: 42px 0 8px; }
.section h2 {
  margin: 0 0 8px;
  font-family: 'Fraunces', serif;
  font-size: clamp(1.45rem, 3vw, 2rem);
  letter-spacing: -0.02em;
}
.section-lead {
  margin: 0 0 22px;
  color: var(--muted);
  max-width: 40rem;
}

.grid-2, .grid-3 {
  display: grid;
  gap: 14px;
}
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px 20px 18px;
  box-shadow: 0 10px 28px rgba(11, 31, 51, 0.04);
}
.card h3 {
  margin: 0 0 8px;
  font-size: 1.12rem;
}
.card p {
  margin: 0 0 12px;
  color: var(--ink-soft);
  line-height: 1.5;
}
.card .domain {
  display: block;
  font-size: 0.8rem;
  color: var(--muted);
  font-weight: 600;
  margin-bottom: 12px;
  word-break: break-all;
}
.tag {
  display: inline-block;
  margin-bottom: 10px;
  padding: 3px 9px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: rgba(11, 143, 90, 0.12);
  color: var(--green-deep);
}
.tag-amber {
  background: rgba(232, 163, 23, 0.16);
  color: #8a5f00;
}
.tag-navy {
  background: rgba(11, 31, 51, 0.08);
  color: var(--ink);
}

.foot {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
  margin: 48px auto 28px;
  padding: 22px 0 8px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.88rem;
}
.foot strong { display: block; color: var(--ink); font-size: 1rem; margin-bottom: 4px; }

.fab-wa {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 20;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--wa);
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 24px rgba(18, 140, 126, 0.35);
}
.fab-wa:hover { transform: scale(1.04); }
.fab-wa span { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }

@media (min-width: 860px) {
  .hero {
    grid-template-columns: 1.15fr 0.85fr;
    align-items: center;
    padding: 48px 0 20px;
  }
  .grid-2 { grid-template-columns: 1fr 1fr; }
  .grid-3 { grid-template-columns: 1fr 1fr 1fr; }
  .fab-wa { display: none; }
}

@media (max-width: 859px) {
  body { padding-bottom: 72px; }
  .nav { flex-wrap: wrap; }
  .brand { width: 100%; }
  .nav-links {
    width: 100%;
    justify-content: flex-start;
  }
  .nav-links .btn { width: 100%; }
  .hero { padding-top: 18px; }
  .actions .btn { flex: 1 1 160px; }
}
