/* ===== Landing page ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1rem 0;
  background: rgba(10, 10, 15, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--text);
}

.header nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.lang-switcher {
  display: inline-flex;
  gap: 0.25rem;
  margin-right: 0.5rem;
}
.lang-switcher .lang-btn {
  padding: 0.35rem 0.5rem;
  font-size: 0.8125rem;
  font-weight: 600;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--text-muted);
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
}
.lang-switcher .lang-btn:hover {
  color: var(--text);
  border-color: rgba(255, 212, 100, 0.3);
}
.lang-switcher .lang-btn.active {
  color: var(--accent);
  border-color: var(--accent);
}

.header nav a:not(.btn) {
  color: var(--text-muted);
  font-size: 0.9375rem;
}
.header nav a:not(.btn):hover {
  color: var(--text);
}

/* Hero */
.hero {
  padding-top: 8rem;
  padding-bottom: 5rem;
  text-align: center;
}

.hero-badge {
  display: inline-block;
  padding: 0.35rem 0.85rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--accent);
  background: rgba(255, 212, 100, 0.1);
  border: 1px solid rgba(255, 212, 100, 0.25);
  border-radius: 999px;
  margin-bottom: 1.5rem;
  letter-spacing: 0.02em;
}

.hero-title {
  margin-bottom: 1.25rem;
  line-height: 1.15;
}

.hero-subtitle {
  max-width: 560px;
  margin: 0 auto 2rem;
  font-size: 1.125rem;
  color: var(--text-muted);
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.0625rem;
}

.btn-block {
  width: 100%;
}

/* Ücretsiz dene */
.demo-try-section {
  background: rgba(0, 0, 0, 0.25);
}

.demo-try-card {
  padding: 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.demo-try-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.demo-try-form .form-group label {
  font-size: 0.875rem;
  margin-bottom: 0.35rem;
}

.demo-try-results-badge {
  font-size: 0.8125rem;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.demo-try-results .table-wrap {
  margin-bottom: 1.5rem;
  padding: 0;
  overflow-x: auto;
}

.demo-try-results .leads-table th,
.demo-try-results .leads-table td {
  padding: 0.65rem 0.75rem;
  font-size: 0.875rem;
}

.demo-try-results .message-cell {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
}

.demo-try-results .template-select {
  padding: 0.4rem 0.6rem;
  font-size: 0.75rem;
  min-width: 140px;
}

.demo-try-cta {
  text-align: center;
  padding: 1.25rem;
  background: rgba(255, 212, 100, 0.06);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.demo-try-cta p {
  margin-bottom: 1rem;
  font-size: 0.9375rem;
  color: var(--text-muted);
}

.demo-try-cta .btn {
  margin: 0;
}

/* Mobile header tweaks */
@media (max-width: 600px) {
  .header-inner .logo {
    margin-right: 0.75rem;
  }

  .header nav {
    gap: 0.85rem;
    margin-left: 0.5rem;
  }

  .header nav .btn,
  .header nav .btn-ghost,
  .header nav .btn-primary {
    padding-inline: 0.9rem;
  }
}

@media (max-width: 600px) {
  .demo-try-form .form-row {
    grid-template-columns: 1fr;
  }
}

/* How it works */
.how-section {
  background: rgba(0, 0, 0, 0.2);
}

.section-title {
  text-align: center;
  margin-bottom: 0.5rem;
}

.section-subtitle {
  text-align: center;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.step {
  text-align: center;
  padding: 2rem;
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--bg-primary);
  background: var(--accent);
  border-radius: 50%;
  margin-bottom: 1rem;
}

.step h3 {
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

.step p {
  font-size: 0.9375rem;
  color: var(--text-muted);
}

/* Demo screens */
.demo-section {
  padding-bottom: 5rem;
}

.demos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

@media (max-width: 900px) {
  .demos {
    grid-template-columns: 1fr;
  }
}

.demo-card {
  overflow: hidden;
  padding: 0;
}

.demo-placeholder {
  aspect-ratio: 16/10;
  background: var(--bg-primary);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.875rem;
  text-align: center;
  padding: 1rem;
}

.demo-1 { background: linear-gradient(145deg, var(--bg-primary) 0%, var(--bg-card) 100%); }
.demo-2 { background: linear-gradient(145deg, var(--bg-card) 0%, var(--bg-elevated) 100%); }
.demo-3 { background: linear-gradient(145deg, var(--bg-elevated) 0%, rgba(255, 212, 100, 0.05) 100%); }

.demo-caption {
  padding: 1rem 1.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Price */
.price-section {
  padding-bottom: 6rem;
}

.price-card {
  max-width: 420px;
  margin: 0 auto;
  padding: 2.5rem;
  text-align: center;
}

.price-amount {
  margin-bottom: 1.5rem;
}

.price-amount .currency {
  font-size: 1.5rem;
  color: var(--accent);
  vertical-align: top;
}

.price-amount .value {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.03em;
}

.price-features {
  list-style: none;
  text-align: left;
  margin-bottom: 2rem;
}

.price-features li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  font-size: 0.9375rem;
  color: var(--text-muted);
}

.price-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.85rem;
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
}

.price-note {
  margin-top: 1rem;
  font-size: 0.8125rem;
  color: var(--text-muted);
}

/* Footer */
.footer {
  padding: 2rem 0;
  border-top: 1px solid var(--border);
  text-align: center;
}

.footer p {
  font-size: 0.875rem;
}
