@font-face {
  font-family: 'Manrope';
  src: url('https://fonts.gstatic.com/s/manrope/v15/xn7gYHE41ni1AdIRqAuZuw1Bx9mbZk7Cn0BzaQ8.woff2') format('woff2');
  font-weight: 400 800;
}

:root {
  --dark: #33403A;
  --dark-soft: #3D4B43;
  --accent: #8FA68C;
  --accent-light: #C5D2C3;
  --amber: #C9A063;
  --bg: #FAFAF8;
  --bg-card: #FFFFFF;
  --text-primary: #20251F;
  --text-secondary: #6E766C;
  --border: #E4E7E2;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text-primary);
  font-family: 'Public Sans', 'Segoe UI', sans-serif;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}
h1, h2, h3, .brand { font-family: 'Manrope', sans-serif; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.wrap { max-width: 1080px; margin: 0 auto; padding: 0 32px; }

/* HEADER (paylaşılan, tüm sayfalarda aynı) */
header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250, 250, 248, 0.94);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}
header .wrap { display: flex; align-items: center; justify-content: space-between; height: 72px; }
header img.logo { height: 26px; }
header nav { display: flex; gap: 32px; }
header nav a { font-size: 14px; font-weight: 500; color: var(--text-secondary); transition: color 0.2s; padding: 4px 0; border-bottom: 2px solid transparent; }
header nav a:hover, header nav a.active { color: var(--dark); border-bottom-color: var(--accent); }
header .cta { background: var(--dark); color: #fff; padding: 10px 20px; border-radius: 8px; font-size: 14px; font-weight: 700; }

/* PAGE HERO (her sayfada başlık alanı) */
.page-hero { background: var(--dark); color: #fff; padding: 84px 0 72px; text-align: center; position: relative; overflow: hidden; }
.page-hero::before {
  content: ''; position: absolute; top: -40%; right: -10%; width: 60%; height: 180%;
  background: radial-gradient(circle, rgba(143,166,140,0.16) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero .wrap { position: relative; z-index: 1; }
.page-hero .eyebrow { font-size: 13px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent); margin-bottom: 20px; }
.page-hero h1 { font-size: clamp(32px, 5.2vw, 50px); font-weight: 800; line-height: 1.18; max-width: 820px; margin: 0 auto 18px; letter-spacing: -0.01em; }
.page-hero p { max-width: 600px; margin: 0 auto; color: var(--accent-light); font-size: 17px; }

section { padding: 88px 0; }
.eyebrow-light { font-size: 13px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: #5E7A5C; margin-bottom: 18px; }
h2.section-title { font-size: clamp(26px, 3.6vw, 38px); font-weight: 800; color: var(--dark); margin-bottom: 18px; max-width: 740px; letter-spacing: -0.01em; }
p.section-lead { color: var(--text-secondary); font-size: 16px; max-width: 640px; margin-bottom: 52px; }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

.card { background: var(--bg-card); border: 1px solid var(--border); border-radius: 14px; padding: 28px; transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease; }
.card:hover { transform: translateY(-4px); box-shadow: 0 16px 32px rgba(51,64,58,0.1); border-color: var(--accent); }
.card.accent-left { border-left: 4px solid var(--accent); }
.card h3 { font-size: 17px; font-weight: 700; margin-bottom: 10px; }
.card p { color: var(--text-secondary); font-size: 14px; }

.dark-section { background: var(--dark); color: #fff; }
.dark-section h2, .dark-section p.section-lead { color: #fff; }
.dark-section p.section-lead { color: var(--accent-light); }
.dark-card { background: var(--dark-soft); border-radius: 14px; padding: 28px; transition: transform 0.25s ease; }
.dark-card:hover { transform: translateY(-4px); }

table.compare { width: 100%; border-collapse: collapse; background: var(--bg-card); border-radius: 12px; overflow: hidden; }
table.compare th, table.compare td { padding: 14px 18px; text-align: left; font-size: 14px; border-bottom: 1px solid var(--border); }
table.compare th { background: var(--dark); color: #fff; font-weight: 700; }
table.compare tr:last-child td { border-bottom: none; }

.tag { display: inline-block; background: var(--amber); color: var(--dark); font-size: 11px; font-weight: 700; padding: 3px 10px; border-radius: 20px; }

.cta-block { background: var(--dark); color: #fff; text-align: center; padding: 64px 0; }
.cta-block h2 { font-size: clamp(20px, 2.6vw, 26px); font-weight: 800; margin-bottom: 28px; max-width: 600px; margin-left: auto; margin-right: auto; }
.cta-block .email { display: inline-block; background: var(--accent); color: var(--dark); padding: 13px 26px; border-radius: 10px; font-weight: 700; font-size: 14.5px; }

footer { background: var(--dark); border-top: 1px solid #4A584F; padding: 28px 0; font-size: 12.5px; color: var(--text-secondary); }
footer .wrap { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; }

.status-list { display: flex; flex-direction: column; gap: 18px; }
.status-item { display: flex; align-items: center; gap: 16px; }
.status-dot { width: 32px; height: 32px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 14px; flex-shrink: 0; }
.status-dot.done { background: var(--accent); color: var(--dark); }
.status-dot.next { background: var(--dark-soft); color: var(--accent); }
.status-item span.label { font-size: 15.5px; }

@media (max-width: 760px) {
  header nav { display: none; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  section { padding: 56px 0; }
  .page-hero { padding: 48px 0 40px; }
}

@media (prefers-reduced-motion: no-preference) {
  .fade-up { opacity: 0; transform: translateY(16px); transition: opacity 0.6s ease, transform 0.6s ease; }
  .fade-up.visible { opacity: 1; transform: translateY(0); }
}
