/* ciddi misin? — Site Stilleri */
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700;900&display=swap');

:root {
  --brand: #D85A30;
  --brand-dark: #993C1D;
  --bg-dark: #1A1A18;
  --bg-card: #2C2A28;
  --bg-surface: #232220;
  --text-primary: #FFFFFF;
  --text-secondary: rgba(255,255,255,0.6);
  --text-muted: rgba(255,255,255,0.35);
  --radius: 16px;
  --radius-sm: 10px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Nunito', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg-dark);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--brand); text-decoration: none; }
a:hover { text-decoration: underline; }

.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Nav ───────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(26,26,24,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-brand img {
  width: 32px;
  height: 32px;
  border-radius: 8px;
}

.nav-brand span {
  font-weight: 900;
  font-size: 18px;
  color: var(--text-primary);
  letter-spacing: -0.04em;
}

.nav-links {
  display: flex;
  gap: 24px;
  list-style: none;
}

.nav-links a {
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 600;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--text-primary);
  text-decoration: none;
}

.hamburger {
  display: none;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 24px;
  cursor: pointer;
}

/* ── Hero ──────────────────────────────────────────── */
.hero {
  padding: 140px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(216,90,48,0.12) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-logo {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  margin-bottom: 24px;
}

/* Göz kırpma */
.eye {
  animation: blink 4s ease-in-out infinite;
}

.eye-left {
  transform-origin: 40px 63px;
}

.eye-right {
  transform-origin: 80px 61px;
  animation-delay: 0.08s;
}

@keyframes blink {
  0%, 43%, 48%, 100% { transform: scaleY(1); }
  45% { transform: scaleY(0.08); }
}

.hero h1 {
  font-size: 56px;
  font-weight: 900;
  letter-spacing: -0.04em;
  margin-bottom: 8px;
}

.hero .tagline {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: 40px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-store {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: var(--brand);
  color: white;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 15px;
  transition: background 0.2s, transform 0.2s;
}

.btn-store:hover {
  background: var(--brand-dark);
  transform: translateY(-2px);
  text-decoration: none;
}

.btn-store.secondary {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.1);
}

.btn-store.secondary:hover {
  background: var(--bg-surface);
}

.btn-store svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

/* ── Stats ─────────────────────────────────────────── */
.stats {
  padding: 0 0 60px;
}

.stats-grid {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.stat-item { text-align: center; }

.stat-number {
  display: block;
  font-size: 36px;
  font-weight: 900;
  color: var(--brand);
  letter-spacing: -0.02em;
}

.stat-label {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 600;
}

/* ── Features ──────────────────────────────────────── */
.features {
  padding: 80px 0;
}

.features h2 {
  text-align: center;
  font-size: 32px;
  font-weight: 900;
  margin-bottom: 48px;
  letter-spacing: -0.02em;
}

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

@media (min-width: 769px) {
  .features-grid { grid-template-columns: repeat(3, 1fr); }
}

.feature-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid rgba(255,255,255,0.06);
  transition: transform 0.2s, border-color 0.2s;
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(216,90,48,0.3);
}

.feature-icon {
  width: 48px;
  height: 48px;
  background: rgba(216,90,48,0.12);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 16px;
}

.feature-card h3 {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 8px;
}

.feature-card p {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.6;
}

/* ── How It Works ──────────────────────────────────── */
.how-it-works {
  padding: 80px 0;
}

.how-it-works h2 {
  text-align: center;
  font-size: 32px;
  font-weight: 900;
  margin-bottom: 48px;
  letter-spacing: -0.02em;
}

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

.step {
  text-align: center;
  padding: 24px;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: var(--brand);
  color: white;
  border-radius: 50%;
  font-size: 20px;
  font-weight: 900;
  margin-bottom: 16px;
}

.step h3 {
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 8px;
}

.step p {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.6;
}

/* ── Sample Question ───────────────────────────────── */
.sample-question {
  padding: 40px 0 80px;
}

.slider-wrapper {
  max-width: 480px;
  margin: 0 auto;
  position: relative;
}

.slider-card {
  display: none;
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid rgba(255,255,255,0.06);
  animation: slideIn 0.4s ease;
}

.slider-card.active {
  display: block;
}

@keyframes slideIn {
  from { opacity: 0; transform: translateX(30px); }
  to { opacity: 1; transform: translateX(0); }
}

.question-tag {
  display: inline-block;
  padding: 5px 12px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}

.tag-uydurma {
  background: rgba(76,201,240,0.15);
  color: #4cc9f0;
}

.tag-absurt {
  background: rgba(247,37,133,0.12);
  color: #f72585;
}

.tag-ikisi {
  background: rgba(114,9,183,0.15);
  color: #c77dff;
}

.question-text {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.6;
  margin-bottom: 16px;
}

.question-cta {
  color: var(--brand);
  font-size: 14px;
  opacity: 0.7;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}

.slider-dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  cursor: pointer;
  transition: all 0.3s;
}

.slider-dots .dot.active {
  width: 24px;
  border-radius: 4px;
  background: var(--brand);
}

/* ── CTA ───────────────────────────────────────────── */
.cta {
  padding: 80px 0;
  text-align: center;
}

.cta-box {
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  border-radius: 24px;
  padding: 56px 40px;
  position: relative;
  overflow: hidden;
}

.cta-box::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 200px;
  height: 200px;
  background: rgba(255,255,255,0.06);
  border-radius: 50%;
}

.cta-box h2 {
  font-size: 28px;
  font-weight: 900;
  margin-bottom: 12px;
}

.cta-box p {
  color: rgba(255,255,255,0.8);
  font-size: 16px;
  margin-bottom: 28px;
}

.btn-white {
  display: inline-block;
  padding: 14px 32px;
  background: white;
  color: var(--brand);
  border-radius: var(--radius-sm);
  font-weight: 800;
  font-size: 15px;
  transition: transform 0.2s;
}

.btn-white:hover {
  transform: translateY(-2px);
  text-decoration: none;
}

.cta-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  border: 2px solid rgba(255,255,255,0.3);
  animation: bounce-down 2s ease-in-out infinite;
  transition: background 0.2s;
}

.cta-arrow:hover {
  background: rgba(255,255,255,0.25);
  text-decoration: none;
}

@keyframes bounce-down {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(10px); }
}

/* ── Download Section ──────────────────────────────── */
.download-section {
  padding: 80px 0;
  text-align: center;
}

.download-section h2 {
  font-size: 32px;
  font-weight: 900;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.download-subtitle {
  color: var(--text-secondary);
  font-size: 15px;
  margin-bottom: 40px;
}

.download-grid {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.download-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 32px;
  border: 1px solid rgba(255,255,255,0.06);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  transition: border-color 0.2s;
}

.download-card:hover {
  border-color: rgba(216,90,48,0.3);
}

.download-qr {
  border-radius: 12px;
}

.download-btn {
  width: 100%;
  justify-content: center;
}

/* ── Footer ────────────────────────────────────────── */
footer {
  padding: 40px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}

footer .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 13px;
}

.footer-brand img {
  width: 20px;
  height: 20px;
  border-radius: 5px;
}

.footer-links {
  display: flex;
  gap: 20px;
  list-style: none;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 13px;
}

.footer-links a:hover {
  color: var(--text-secondary);
}

/* ── Legal Pages ───────────────────────────────────── */
.legal {
  padding: 100px 0 60px;
  max-width: 700px;
  margin: 0 auto;
}

.legal h1 {
  font-size: 28px;
  font-weight: 900;
  margin-bottom: 8px;
}

.legal .updated {
  color: var(--text-muted);
  font-size: 13px;
  margin-bottom: 32px;
}

.legal h2 {
  font-size: 18px;
  font-weight: 800;
  margin-top: 28px;
  margin-bottom: 10px;
}

.legal p, .legal ul {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 12px;
}

.legal ul {
  padding-left: 20px;
}

/* ── Blog ──────────────────────────────────────────── */
.blog-list {
  padding: 100px 0 60px;
}

.blog-list h1 {
  font-size: 32px;
  font-weight: 900;
  margin-bottom: 32px;
}

.blog-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 16px;
  border: 1px solid rgba(255,255,255,0.06);
  transition: border-color 0.2s;
}

.blog-card:hover {
  border-color: rgba(216,90,48,0.3);
}

.blog-card h2 {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 6px;
}

.blog-card h2 a {
  color: var(--text-primary);
}

.blog-card .meta {
  color: var(--text-muted);
  font-size: 12px;
  margin-bottom: 8px;
}

.blog-card p {
  color: var(--text-secondary);
  font-size: 14px;
}

.blog-post {
  padding: 100px 0 60px;
  max-width: 700px;
  margin: 0 auto;
}

.blog-post h1 {
  font-size: 28px;
  font-weight: 900;
  margin-bottom: 8px;
}

.blog-post .meta {
  color: var(--text-muted);
  font-size: 13px;
  margin-bottom: 28px;
}

.blog-post p {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 16px;
}

.blog-post h2 {
  font-size: 20px;
  font-weight: 800;
  margin-top: 32px;
  margin-bottom: 12px;
  color: var(--text-primary);
}

/* ── Responsive ────────────────────────────────────── */
@media (max-width: 768px) {
  .hero h1 { font-size: 36px; }
  .hero .tagline { font-size: 16px; }
  .features-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .stats-grid { gap: 24px; }
  .stat-number { font-size: 28px; }
  .cta-box { padding: 40px 24px; }
  .cta-box h2 { font-size: 22px; }

  .nav-links { display: none; }
  .nav-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    background: var(--bg-dark);
    padding: 20px 24px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
  .hamburger { display: block; }
}
