:root {
  --bg: #0a0a0f;
  --panel: #12121a;
  --panel2: #0f0f16;
  --text: #ffffff;
  --muted: #b9bcc7;
  --line: rgba(255, 255, 255, 0.08);
  --gold: #ffcc00;
  --green: #22c55e;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Segoe UI", Arial, sans-serif;
  background:
    radial-gradient(
      1200px 600px at 15% 10%,
      rgba(255, 204, 0, 0.12),
      transparent 55%
    ),
    radial-gradient(
      900px 500px at 85% 15%,
      rgba(34, 197, 94, 0.1),
      transparent 55%
    ),
    var(--bg);
  color: var(--text);
  line-height: 1.65;
}

a {
  color: inherit;
  text-decoration: none;
}
.container {
  width: min(1180px, 92%);
  margin: 0 auto;
}
.muted {
  color: var(--muted);
}
.badge {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  padding: 0.35rem 0.55rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
}

/* Topbar */
.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10, 10, 15, 0.72);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  gap: 16px;
}

.topbar-left {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0; /* important for text truncation */
}

.topbar-left .muted {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 52vw; /* keeps it clean on smaller screens */
}

.topbar-right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.topbar-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  transition: 0.2s;
  font-weight: 800;
  line-height: 1;
}

.topbar-link:hover {
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-1px);
}

/* Phone should NEVER wrap */
.topbar-link.phone span {
  white-space: nowrap;
}

/* Make blog slightly more subtle */
.topbar-link.blog {
  font-weight: 700;
}

/* Mobile layout */
@media (max-width: 720px) {
  .topbar-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    padding: 10px 0;
  }

  .topbar-left {
    justify-content: space-between;
  }

  .topbar-left .muted {
    max-width: 70vw;
  }

  .topbar-right {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .topbar-link {
    width: 100%;
    justify-content: center;
  }
}

/* Hero */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  background: url("https://images.unsplash.com/photo-1581092334651-ddf26d9a09d0?auto=format&fit=crop&w=2000&q=60")
    center/cover no-repeat;

  overflow: hidden; /* ✅ en kritik */
  border-bottom: none; /* ✅ çizgi/boşluk yapıyorsa kaldır */
}

.overlay {
  position: absolute;
  inset: 0;
  width: 100%; /* ✅ */
  height: 100%; /* ✅ */
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.85));
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.25fr 0.85fr;
  gap: 28px;
  padding: 70px 0;
}
.eyebrow {
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.78rem;
  margin-bottom: 10px;
}
.hero h1 {
  font-size: clamp(2.1rem, 3.8vw, 3.6rem);
  letter-spacing: 0.02em;
  line-height: 1.12;
}
.lead {
  margin-top: 16px;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.86);
  max-width: 58ch;
}
.hero-cta {
  margin-top: 22px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-stats {
  margin-top: 22px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.stat {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
}
.stat-number {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(255, 204, 0, 0.14);
  border: 1px solid rgba(255, 204, 0, 0.25);
  color: var(--gold);
  font-weight: 800;
}
.stat-label {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.86);
}

/* Card */
.card {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.05),
    rgba(255, 255, 255, 0.03)
  );
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 20px;
  box-shadow: var(--shadow);
}
.card h2 {
  font-size: 1.25rem;
}
.card-actions {
  margin-top: 14px;
  display: grid;
  gap: 10px;
}
.divider {
  height: 1px;
  background: var(--line);
  margin: 16px 0;
}
.checklist {
  list-style: none;
  display: grid;
  gap: 8px;
}
.checklist li {
  padding-left: 26px;
  position: relative;
  color: rgba(255, 255, 255, 0.88);
}
.checklist li:before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold);
  font-weight: 900;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 14px;
  border: 1px solid var(--line);
  transition: 0.2s;
  font-weight: 700;
}
.btn.full {
  width: 100%;
}
.btn.primary {
  background: var(--gold);
  border-color: rgba(255, 204, 0, 0.35);
  color: #0a0a0f;
}
.btn.primary:hover {
  transform: translateY(-1px);
  filter: brightness(1.02);
}
.btn.ghost {
  background: rgba(255, 255, 255, 0.03);
}
.btn.ghost:hover {
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-1px);
}
.btn.whatsapp {
  background: rgba(34, 197, 94, 0.15);
  border-color: rgba(34, 197, 94, 0.28);
  color: #eafff2;
}
.btn.whatsapp:hover {
  transform: translateY(-1px);
  background: rgba(34, 197, 94, 0.2);
}

/* Sections */
.section {
  padding: 80px 0;
}
.section.alt {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 26px;
}
.section-head h2 {
  font-size: clamp(1.6rem, 2.5vw, 2.25rem);
}
.section-head p {
  max-width: 70ch;
}

/* Grids */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

/* Features */
.feature {
  padding: 18px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
}
.feature h3 {
  color: var(--gold);
  margin-bottom: 8px;
}
.tags {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.tags span {
  font-size: 0.82rem;
  padding: 0.35rem 0.55rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.15);
}

/* Timeline */
.timeline {
  display: grid;
  gap: 12px;
}
.step {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 14px;
  align-items: flex-start;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
}
.step-no {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: rgba(255, 204, 0, 0.14);
  border: 1px solid rgba(255, 204, 0, 0.22);
  color: var(--gold);
  font-weight: 900;
}
.step-body h3 {
  margin-bottom: 6px;
}

/* Panels */
.panel {
  padding: 18px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
}
.panel h3 {
  margin-bottom: 8px;
}

/* CTA band */
.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px;
  border-radius: 20px;
  border: 1px solid rgba(255, 204, 0, 0.22);
  background: linear-gradient(
    135deg,
    rgba(255, 204, 0, 0.12),
    rgba(34, 197, 94, 0.06)
  );
  box-shadow: var(--shadow);
}
.cta-band-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* Rich text */
.rich-text {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  border-radius: 18px;
  padding: 18px;
}
.rich-text p + p {
  margin-top: 12px;
}

/* Page hero */
.page-hero {
  padding: 64px 0 22px;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent);
}
.page-hero h1 {
  font-size: clamp(1.9rem, 3vw, 3rem);
  line-height: 1.15;
  margin-top: 10px;
}

/* Blog */
.blog-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.post {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  border-radius: 18px;
  padding: 18px;
}
.post h2 {
  font-size: 1.35rem;
  color: var(--gold);
}
.post-meta {
  margin-top: 6px;
  font-size: 0.9rem;
}
.post h3 {
  margin-top: 12px;
  margin-bottom: 6px;
}
.bullets {
  margin-top: 8px;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.88);
}
.callout {
  margin-top: 12px;
  padding: 12px 12px;
  border-radius: 16px;
  border: 1px solid rgba(34, 197, 94, 0.25);
  background: rgba(34, 197, 94, 0.1);
}

.blog-cta {
  margin-top: 26px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  border-radius: 20px;
  padding: 18px;
}
.blog-cta-actions {
  margin-top: 12px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* Footer */
.footer {
  border-top: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.35);
}
.footer-inner {
  padding: 28px 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}
.brand {
  font-weight: 900;
  letter-spacing: 0.02em;
  font-size: 1.05rem;
}
.footer-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.footer-links a {
  padding: 0.35rem 0.5rem;
  border-radius: 10px;
  border: 1px solid transparent;
}
.footer-links a:hover {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.03);
}
.footer-bottom {
  padding: 12px 0 22px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.92rem;
}

/* Floating WhatsApp */
.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 999px;
  background: rgba(34, 197, 94, 0.18);
  border: 1px solid rgba(34, 197, 94, 0.32);
  box-shadow: var(--shadow);
}
.wa-icon {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(34, 197, 94, 0.22);
  border: 1px solid rgba(34, 197, 94, 0.3);
  font-weight: 900;
}
.wa-text {
  font-weight: 900;
}
.floating-whatsapp:hover {
  transform: translateY(-1px);
  background: rgba(34, 197, 94, 0.22);
}

/* Responsive */
@media (max-width: 980px) {
  .hero-grid {
    grid-template-columns: 1fr;
    padding: 52px 0;
  }
  .grid-3 {
    grid-template-columns: 1fr;
  }
  .grid-2 {
    grid-template-columns: 1fr;
  }
  .blog-grid {
    grid-template-columns: 1fr;
  }
  .cta-band {
    flex-direction: column;
    align-items: flex-start;
  }
}
.image-section {
  padding: 60px 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent);
}

.image-section img {
  width: 100%;
  max-width: 1100px;
  display: block;
  margin: 0 auto;
  border-radius: 20px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
