:root {
  /* premium real-estate palette: deep navy + warm gold */
  --bg: #0a1020;
  --bg-2: #0f1a33;
  --paper: #ffffff;
  --ink: #0d1526;
  --muted: #6b7585;
  --line: #e8ecf3;
  --gold: #d4af37;
  --gold-soft: #e7cf86;
  --brand: #2f7bf6;
  --brand-dark: #1f5fd0;
  --wa: #25d366;
  --ok: #16a34a;
  --radius: 18px;
  --shadow: 0 18px 50px rgba(7, 12, 26, 0.18);
  --shadow-sm: 0 6px 20px rgba(7, 12, 26, 0.08);
  --serif: "Fraunces", "Playfair Display", Georgia, serif;
  --sans: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; font-family: var(--sans); color: var(--ink); background: #f4f6fb; line-height: 1.65; }
a { color: var(--brand); text-decoration: none; }
.container { width: min(1140px, 92%); margin: 0 auto; }
h1, h2, h3 { font-family: var(--serif); font-weight: 600; letter-spacing: -0.01em; }

/* entrance */
@keyframes fadeUp { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }
.reveal { animation: fadeUp .7s cubic-bezier(.2,.7,.2,1) both; }
.d1 { animation-delay: .08s; } .d2 { animation-delay: .16s; } .d3 { animation-delay: .24s; }

/* ---------- HERO ---------- */
.hero {
  position: relative; color: #eef2f8; overflow: hidden;
  background:
    radial-gradient(1100px 520px at 78% -8%, #1b2d57 0%, rgba(27,45,87,0) 60%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
}
.hero::before { /* subtle gold hairline grid */
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .07;
  background-image: linear-gradient(var(--gold) 1px, transparent 1px), linear-gradient(90deg, var(--gold) 1px, transparent 1px);
  background-size: 64px 64px; mask-image: radial-gradient(900px 500px at 75% 0%, #000 0%, transparent 70%);
}
.nav { position: relative; z-index: 2; display: flex; align-items: center; justify-content: space-between; padding: 22px 0; }
.brand { display: flex; align-items: center; gap: 11px; font-family: var(--serif); font-weight: 600; font-size: 22px; color: #fff; letter-spacing: .2px; }
.brand .mark { width: 34px; height: 34px; border-radius: 9px; display: grid; place-items: center;
  background: linear-gradient(135deg, var(--gold) 0%, #b8860b 100%); color: #1a1405; font-weight: 800; font-family: var(--sans); }
.nav .links { display: flex; align-items: center; gap: 22px; }
.nav .links a { color: #c6d0e2; font-weight: 500; font-size: 15px; }
.nav .links a:hover { color: #fff; }
.nav .wa-mini { background: var(--wa); color: #06351b; padding: 8px 14px; border-radius: 10px; font-weight: 700; }

.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center; padding: 26px 0 84px; }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; font-family: var(--sans); font-size: 13px; letter-spacing: .14em; text-transform: uppercase; color: var(--gold-soft); }
.eyebrow::before { content: ""; width: 26px; height: 1px; background: var(--gold); display: inline-block; }
.hero h1 { font-size: clamp(34px, 4.4vw, 56px); line-height: 1.08; margin: 14px 0 18px; color: #fff; }
.hero h1 em { font-style: italic; color: var(--gold-soft); }
.hero p.lead { color: #b6c1d6; font-size: 18px; max-width: 520px; }
.badges { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.badge { background: rgba(255,255,255,.06); border: 1px solid rgba(212,175,55,.28); padding: 7px 13px; border-radius: 999px; font-size: 13px; color: #dde4f0; }
.cta-row { display: flex; gap: 12px; margin-top: 30px; flex-wrap: wrap; }

.btn { display: inline-flex; align-items: center; justify-content: center; gap: 9px; border: 0; cursor: pointer;
  padding: 14px 22px; border-radius: 12px; font-family: var(--sans); font-weight: 700; font-size: 15px; transition: transform .12s ease, filter .15s ease, background .15s ease; }
.btn:hover { transform: translateY(-1px); }
.btn-gold { background: linear-gradient(135deg, var(--gold) 0%, #c69a1f 100%); color: #1a1405; box-shadow: 0 10px 26px rgba(212,175,55,.32); }
.btn-primary { background: var(--brand); color: #fff; }
.btn-primary:hover { background: var(--brand-dark); }
.btn-wa { background: var(--wa); color: #06351b; }
.btn-outline { background: transparent; border: 1px solid rgba(255,255,255,.28); color: #fff; }

/* lead card */
.lead-card { background: var(--paper); color: var(--ink); border-radius: var(--radius); box-shadow: var(--shadow); padding: 26px; border: 1px solid rgba(212,175,55,.18); }
.lead-card h3 { margin: 0 0 4px; font-size: 21px; }
.lead-card .sub { margin: 0 0 18px; color: var(--muted); font-size: 14px; font-family: var(--sans); }

/* forms */
.field { margin-bottom: 13px; }
.field label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 6px; color: #2a3342; }
.field input, .field select, .field textarea {
  width: 100%; padding: 12px 13px; border: 1px solid var(--line); border-radius: 11px; font: inherit; font-family: var(--sans); background: #fbfcfe; transition: border .15s, box-shadow .15s; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(212,175,55,.18); }
.grid2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.consent { display: flex; gap: 9px; align-items: flex-start; font-size: 13px; color: #475063; margin: 6px 0 14px; }
.consent input { width: 17px; height: 17px; margin-top: 2px; accent-color: var(--brand); }
.form-msg { margin-top: 12px; font-size: 14px; min-height: 20px; }
.form-msg.ok { color: var(--ok); }
.form-msg.err { color: #dc2626; }

/* sections */
section { padding: 76px 0; }
.section-title { text-align: center; margin-bottom: 44px; }
.section-title .eyebrow { color: #b8860b; justify-content: center; }
.section-title h2 { font-size: clamp(26px, 3vw, 36px); margin: 12px 0 10px; }
.section-title p { color: var(--muted); margin: 0; font-size: 16px; }

.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.feature { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow-sm); transition: transform .18s ease, box-shadow .18s; }
.feature:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.feature .ico { width: 50px; height: 50px; border-radius: 14px; background: linear-gradient(135deg, #fff7e0, #f3e3b0); color: #9a7b12; display: grid; place-items: center; font-size: 24px; margin-bottom: 14px; }
.feature h4 { margin: 0 0 7px; font-size: 18px; font-family: var(--serif); }
.feature p { margin: 0; color: var(--muted); font-size: 14px; }
.feature.soon { border: 1px solid rgba(212,175,55,.45); background: linear-gradient(180deg,#fffdf6,#fff); position: relative; }
.feature.soon .tag { position: absolute; top: 18px; right: 18px; font-family: var(--sans); font-size: 11px; font-weight: 700; letter-spacing: .08em; background: var(--gold); color: #1a1405; padding: 3px 9px; border-radius: 999px; }

/* pricing */
.pricing { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: start; }
.plan { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow-sm); }
.plan.popular { border: 2px solid var(--gold); position: relative; transform: translateY(-8px); box-shadow: var(--shadow); }
.plan.popular::after { content: "En çok tercih edilen"; position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--gold); color: #1a1405; font-family: var(--sans); font-size: 12px; font-weight: 700; padding: 4px 13px; border-radius: 999px; white-space: nowrap; }
.plan h3 { margin: 0 0 4px; font-size: 22px; }
.plan .price { font-family: var(--serif); font-size: 34px; font-weight: 600; margin: 10px 0; color: var(--ink); }
.plan .price small { font-family: var(--sans); font-size: 14px; color: var(--muted); font-weight: 500; }
.plan ul { list-style: none; padding: 0; margin: 16px 0 22px; }
.plan li { padding: 8px 0; border-bottom: 1px dashed var(--line); font-size: 14px; }
.plan li::before { content: "✓"; color: var(--gold); font-weight: 800; margin-inline-end: 9px; }

/* trust strip */
.trust { background: var(--bg); color: #cfd8e8; }
.trust .row { display: flex; flex-wrap: wrap; justify-content: space-around; gap: 24px; text-align: center; }
.trust .row div { flex: 1 1 200px; }
.trust .row .n { font-family: var(--serif); font-size: 30px; color: var(--gold-soft); }
.trust .row .l { font-size: 14px; color: #9fabc2; }

footer { background: var(--bg); color: #9fabc2; padding: 34px 0; font-size: 14px; border-top: 1px solid rgba(255,255,255,.06); }
footer .container { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; align-items: center; }
footer a { color: #c6d0e2; }

.wa-float { position: fixed; bottom: 24px; right: 24px; background: var(--wa); color: #06351b; width: 60px; height: 60px; border-radius: 50%; display: grid; place-items: center; box-shadow: var(--shadow); font-size: 28px; z-index: 50; transition: transform .15s; }
.wa-float:hover { transform: scale(1.07); }

@media (max-width: 860px) {
  .hero-grid, .features, .pricing { grid-template-columns: 1fr; }
  .plan.popular { transform: none; }
  .nav .links a:not(.wa-mini) { display: none; }
}
