/* =====================================================
   YPYZK.com — Ana Stil Dosyası
   Krem + Petrol Yeşili Premium Tasarım Sistemi
   ===================================================== */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Manrope:wght@400;500;600;700;800&family=JetBrains+Mono:wght@400;500;600&display=swap');

/* ── CSS Değişkenleri ── */
:root {
  /* Ana Renkler */
  --bg:            #F2EFE9;
  --card:          #FBF9F3;
  --petrol:        #3F6B70;
  --petrol-dark:   #2D4E52;
  --petrol-light:  #5A8A8F;
  --text-dark:     #223336;
  --text-body:     #3D5254;
  --text-muted:    #6B7F81;
  --border-light:  #E5DED3;
  --border:        #CFC6BA;
  --accent-soft:   #E9E2D7;
  --success:       #557C72;
  --warning:       #B98D46;
  --error:         #B45A4C;
  --white:         #FFFFFF;

  /* Tipografi */
  --font-sans:  'Inter', 'Manrope', system-ui, -apple-system, sans-serif;
  --font-mono:  'JetBrains Mono', 'SF Mono', ui-monospace, monospace;

  /* Boyutlar */
  --container: 1200px;
  --radius-sm: 8px;
  --radius:    12px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  /* Gölgeler */
  --shadow-sm:  0 1px 3px rgba(34, 51, 54, 0.06), 0 1px 2px rgba(34, 51, 54, 0.04);
  --shadow:     0 4px 16px rgba(34, 51, 54, 0.08), 0 2px 6px rgba(34, 51, 54, 0.05);
  --shadow-md:  0 8px 32px rgba(34, 51, 54, 0.10), 0 4px 12px rgba(34, 51, 54, 0.06);
  --shadow-lg:  0 16px 48px rgba(34, 51, 54, 0.12), 0 8px 24px rgba(34, 51, 54, 0.08);
  --shadow-petrol: 0 8px 32px rgba(63, 107, 112, 0.25);

  /* Geçişler */
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out: cubic-bezier(0.0, 0.0, 0.2, 1);
  --duration: 220ms;
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg);
  color: var(--text-body);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--petrol); text-decoration: none; transition: color var(--duration) var(--ease); }
a:hover { color: var(--petrol-dark); }

button { cursor: pointer; font-family: inherit; border: none; background: none; }
input, textarea, select { font-family: inherit; }

/* ── Tipografi ── */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Manrope', var(--font-sans);
  color: var(--text-dark);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(28px, 5vw, 48px); }
h2 { font-size: clamp(22px, 3.5vw, 36px); }
h3 { font-size: clamp(18px, 2.5vw, 24px); }
h4 { font-size: 18px; }
h5 { font-size: 16px; }

p { color: var(--text-body); }

.text-petrol   { color: var(--petrol); }
.text-muted    { color: var(--text-muted); }
.text-dark     { color: var(--text-dark); }
.text-success  { color: var(--success); }
.text-warning  { color: var(--warning); }
.text-error    { color: var(--error); }
.text-sm       { font-size: 14px; }
.text-xs       { font-size: 12px; }
.text-lg       { font-size: 18px; }
.text-xl       { font-size: 22px; }
.font-mono     { font-family: var(--font-mono); }
.font-medium   { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold     { font-weight: 700; }

/* ── Container ── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

@media (max-width: 640px) { .container { padding: 0 16px; } }

/* ── Grid ── */
.grid-2 { display: grid; grid-template-columns: repeat(2, 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; }
.grid-auto { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px; }

@media (max-width: 900px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

/* ── Flex Yardımcıları ── */
.flex { display: flex; }
.flex-center { display: flex; align-items: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.flex-col { display: flex; flex-direction: column; }
.gap-4  { gap: 4px; }
.gap-8  { gap: 8px; }
.gap-12 { gap: 12px; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }

/* ── Spacing ── */
.mt-4  { margin-top: 4px; }
.mt-8  { margin-top: 8px; }
.mt-12 { margin-top: 12px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-8  { margin-bottom: 8px; }
.mb-12 { margin-bottom: 12px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }

/* =====================================================
   NAVİGASYON
   ===================================================== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(242, 239, 233, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
  transition: box-shadow var(--duration) var(--ease);
}

.navbar.scrolled {
  box-shadow: var(--shadow-sm);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 22px;
  color: var(--text-dark);
  letter-spacing: -0.03em;
}

.navbar-brand span {
  color: var(--petrol);
}

.navbar-logo-icon {
  width: 36px;
  height: 36px;
  background: var(--petrol);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.navbar-logo-icon svg { color: white; }

.navbar-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}

.navbar-nav a {
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-body);
  transition: all var(--duration) var(--ease);
}

.navbar-nav a:hover, .navbar-nav a.active {
  background: var(--accent-soft);
  color: var(--petrol-dark);
}

.navbar-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.navbar-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  background: none;
  border: none;
}

.navbar-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: all var(--duration) var(--ease);
}

@media (max-width: 900px) {
  .navbar-nav { display: none; }
  .navbar-toggle { display: flex; }

  .navbar-nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 64px;
    left: 0; right: 0;
    background: var(--card);
    border-bottom: 1px solid var(--border-light);
    padding: 12px 16px 20px;
    box-shadow: var(--shadow-md);
    gap: 2px;
  }
  .navbar-nav.open a { display: block; padding: 10px 14px; }
}

/* =====================================================
   BUTONLAR
   ===================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  transition: all var(--duration) var(--ease);
  white-space: nowrap;
  cursor: pointer;
  border: 1.5px solid transparent;
  font-family: var(--font-sans);
}

.btn:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none !important;
}

/* Primary */
.btn-primary {
  background: var(--petrol);
  color: var(--white);
  border-color: var(--petrol);
  box-shadow: 0 2px 8px rgba(63, 107, 112, 0.3);
}
.btn-primary:hover:not(:disabled) {
  background: var(--petrol-dark);
  border-color: var(--petrol-dark);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(63, 107, 112, 0.35);
}
.btn-primary:active:not(:disabled) { transform: translateY(0); }

/* Secondary */
.btn-secondary {
  background: var(--card);
  color: var(--text-dark);
  border-color: var(--border);
}
.btn-secondary:hover:not(:disabled) {
  background: var(--accent-soft);
  border-color: var(--border);
  transform: translateY(-1px);
}

/* Ghost */
.btn-ghost {
  background: transparent;
  color: var(--petrol);
  border-color: transparent;
}
.btn-ghost:hover:not(:disabled) {
  background: var(--accent-soft);
}

/* Outline */
.btn-outline {
  background: transparent;
  color: var(--petrol);
  border-color: var(--petrol);
}
.btn-outline:hover:not(:disabled) {
  background: var(--petrol);
  color: var(--white);
}

/* Sizes */
.btn-sm { padding: 7px 14px; font-size: 13px; }
.btn-lg { padding: 14px 28px; font-size: 16px; border-radius: var(--radius); }
.btn-xl { padding: 18px 36px; font-size: 17px; border-radius: var(--radius); }
.btn-icon { padding: 10px; }
.btn-full { width: 100%; }

/* Loading State */
.btn.loading { pointer-events: none; }
.btn.loading::after {
  content: '';
  width: 14px; height: 14px;
  border: 2px solid currentColor;
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}

/* =====================================================
   KARTLAR
   ===================================================== */
.card {
  background: var(--card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 24px;
  transition: all var(--duration) var(--ease);
}

.card-hover:hover {
  border-color: var(--border);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.card-petrol {
  background: var(--petrol);
  color: var(--white);
  border-color: var(--petrol-dark);
}

.card-featured {
  border-color: var(--petrol);
  box-shadow: 0 0 0 1px var(--petrol), var(--shadow);
}

/* =====================================================
   FORM ELEMANLARI
   ===================================================== */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

label {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dark);
}

.input, .textarea, .select {
  width: 100%;
  padding: 11px 14px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 15px;
  color: var(--text-dark);
  font-family: var(--font-sans);
  transition: all var(--duration) var(--ease);
  outline: none;
}

.input:focus, .textarea:focus, .select:focus {
  border-color: var(--petrol);
  box-shadow: 0 0 0 3px rgba(63, 107, 112, 0.12);
}

.input::placeholder, .textarea::placeholder {
  color: var(--text-muted);
}

.textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.6;
}

.textarea.prompt-input {
  min-height: 140px;
  font-size: 16px;
  padding: 16px;
  border-radius: var(--radius);
  border-width: 2px;
}

.textarea.prompt-output {
  font-family: var(--font-mono);
  font-size: 14px;
  min-height: 280px;
  background: var(--bg);
  border-radius: var(--radius);
  line-height: 1.7;
}

.select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236B7F81' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 40px;
}

/* =====================================================
   HERO BÖLÜMÜ
   ===================================================== */
.hero {
  position: relative;
  padding: 80px 0 64px;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 20% 30%, rgba(63, 107, 112, 0.07) 0%, transparent 70%),
    radial-gradient(ellipse 50% 60% at 80% 70%, rgba(63, 107, 112, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(63, 107, 112, 0.1);
  color: var(--petrol);
  border: 1px solid rgba(63, 107, 112, 0.2);
  padding: 5px 14px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 20px;
}

.hero-eyebrow .dot {
  width: 7px; height: 7px;
  background: var(--petrol);
  border-radius: 50%;
  animation: pulse 2s ease infinite;
}

.hero-title {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

.hero-title .highlight {
  color: var(--petrol);
  position: relative;
  display: inline-block;
}

.hero-title .highlight::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  bottom: -2px;
  height: 3px;
  background: linear-gradient(90deg, var(--petrol), var(--petrol-light));
  border-radius: 2px;
  opacity: 0.5;
}

.hero-subtitle {
  font-size: 17px;
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Prompt Kutusu (Hero Sağ taraf) */
.prompt-widget {
  background: var(--card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 28px;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.prompt-widget::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, var(--petrol), transparent 60%);
  opacity: 0.12;
  pointer-events: none;
}

.prompt-widget-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.prompt-widget-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--petrol);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.prompt-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}

.prompt-chip {
  padding: 5px 12px;
  background: var(--accent-soft);
  border: 1px solid var(--border-light);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-body);
  cursor: pointer;
  transition: all var(--duration) var(--ease);
}

.prompt-chip:hover {
  background: rgba(63, 107, 112, 0.12);
  border-color: var(--petrol);
  color: var(--petrol);
}

.prompt-widget textarea {
  width: 100%;
  min-height: 120px;
  padding: 14px;
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 15px;
  font-family: var(--font-sans);
  color: var(--text-dark);
  resize: none;
  outline: none;
  transition: border-color var(--duration) var(--ease);
}

.prompt-widget textarea:focus {
  border-color: var(--petrol);
  box-shadow: 0 0 0 3px rgba(63, 107, 112, 0.1);
}

.prompt-widget-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 14px;
}

.char-count {
  font-size: 12px;
  color: var(--text-muted);
}

@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero { padding: 48px 0 40px; }
}

/* =====================================================
   BÖLÜM BAŞLIKLARI
   ===================================================== */
.section { padding: 72px 0; }
.section-sm { padding: 48px 0; }
.section-lg { padding: 96px 0; }

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
}

.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--petrol);
  background: rgba(63, 107, 112, 0.1);
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(24px, 4vw, 38px);
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 14px;
}

.section-desc {
  font-size: 17px;
  color: var(--text-body);
  line-height: 1.7;
}

/* =====================================================
   NASIL ÇALIŞIR - ADIMLAR
   ===================================================== */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.step {
  background: var(--card);
  padding: 28px 24px;
  text-align: center;
  position: relative;
}

.step-num {
  width: 40px; height: 40px;
  background: rgba(63, 107, 112, 0.1);
  border: 1.5px solid rgba(63, 107, 112, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 700;
  color: var(--petrol);
  margin: 0 auto 14px;
}

.step-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.step-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .steps { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .steps { grid-template-columns: 1fr; }
}

/* =====================================================
   AI ARAÇ KARTLARI
   ===================================================== */
.tool-card {
  background: var(--card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 20px;
  transition: all var(--duration) var(--ease);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.tool-card:hover {
  border-color: var(--border);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.tool-card-header {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.tool-logo {
  width: 48px; height: 48px;
  border-radius: var(--radius-sm);
  object-fit: contain;
  background: var(--bg);
  border: 1px solid var(--border-light);
  padding: 6px;
  flex-shrink: 0;
}

.tool-logo-placeholder {
  width: 48px; height: 48px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--accent-soft), var(--border-light));
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 800;
  color: var(--petrol);
  flex-shrink: 0;
}

.tool-info { flex: 1; min-width: 0; }

.tool-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.tool-category-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
}

.tool-desc {
  font-size: 13px;
  color: var(--text-body);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.tool-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.tag {
  padding: 3px 10px;
  background: var(--accent-soft);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 500;
  color: var(--text-body);
}

.tool-badges {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: auto;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 8px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
}

.badge-success { background: rgba(85, 124, 114, 0.12); color: var(--success); }
.badge-warning { background: rgba(185, 141, 70, 0.12); color: var(--warning); }
.badge-info    { background: rgba(63, 107, 112, 0.12); color: var(--petrol); }
.badge-neutral { background: var(--accent-soft); color: var(--text-muted); }
.badge-free    { background: rgba(85, 124, 114, 0.15); color: var(--success); }
.badge-paid    { background: rgba(185, 141, 70, 0.12); color: var(--warning); }

.tool-card-footer {
  display: flex;
  gap: 8px;
  padding-top: 12px;
  border-top: 1px solid var(--border-light);
}

/* Router Araç Kartı (Sonuç Ekranı) */
.router-tool-card {
  background: var(--card);
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 20px;
  transition: all var(--duration) var(--ease);
}

.router-tool-card:hover {
  border-color: var(--petrol);
  box-shadow: var(--shadow-petrol);
}

.router-rank {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px; height: 26px;
  background: var(--petrol);
  color: var(--white);
  border-radius: 50%;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
}

.router-reason {
  font-size: 13px;
  color: var(--text-body);
  line-height: 1.5;
  padding: 10px 12px;
  background: var(--bg);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--petrol);
  margin: 10px 0;
}

/* =====================================================
   PROMPT SONUÇ EKRANI
   ===================================================== */
.prompt-result {
  background: var(--card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.prompt-result-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border-light);
  background: var(--bg);
}

.prompt-type-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  background: rgba(63, 107, 112, 0.1);
  border: 1px solid rgba(63, 107, 112, 0.2);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  color: var(--petrol);
}

.prompt-result-actions {
  display: flex;
  gap: 8px;
}

.prompt-result-body {
  padding: 24px;
}

.prompt-output-text {
  font-family: var(--font-mono);
  font-size: 13.5px;
  line-height: 1.8;
  color: var(--text-dark);
  white-space: pre-wrap;
  word-break: break-word;
}

/* Loading States */
.loading-overlay {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 24px;
  gap: 16px;
}

.spinner {
  width: 40px; height: 40px;
  border: 3px solid var(--border);
  border-top-color: var(--petrol);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

.loading-text {
  font-size: 14px;
  color: var(--text-muted);
  animation: fade-pulse 2s ease infinite;
}

/* Skeleton */
.skeleton {
  background: linear-gradient(90deg, var(--border-light) 25%, var(--accent-soft) 50%, var(--border-light) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s ease infinite;
  border-radius: var(--radius-sm);
}

/* =====================================================
   KATEGORİ FİLTRE
   ===================================================== */
.category-filter {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  padding: 16px 0;
}

.filter-btn {
  padding: 7px 16px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-body);
  background: var(--card);
  border: 1.5px solid var(--border);
  cursor: pointer;
  transition: all var(--duration) var(--ease);
  white-space: nowrap;
}

.filter-btn:hover {
  border-color: var(--petrol);
  color: var(--petrol);
  background: rgba(63, 107, 112, 0.05);
}

.filter-btn.active {
  background: var(--petrol);
  border-color: var(--petrol);
  color: var(--white);
  box-shadow: 0 2px 8px rgba(63, 107, 112, 0.3);
}

/* Arama Kutusu */
.search-box {
  position: relative;
}

.search-box input {
  padding-left: 44px;
}

.search-box svg {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  pointer-events: none;
}

/* =====================================================
   BLOG KARTLARI
   ===================================================== */
.blog-card {
  background: var(--card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--duration) var(--ease);
}

.blog-card:hover {
  border-color: var(--border);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.blog-card-image {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  background: var(--accent-soft);
}

.blog-card-body {
  padding: 20px;
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.blog-cat-badge {
  padding: 2px 8px;
  background: rgba(63, 107, 112, 0.1);
  color: var(--petrol);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
}

.blog-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.35;
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-excerpt {
  font-size: 13px;
  color: var(--text-body);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* =====================================================
   TOAST BİLDİRİM
   ===================================================== */
.toast-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.toast {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 18px;
  background: var(--text-dark);
  color: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  max-width: 380px;
  animation: slide-in-up 0.3s var(--ease) forwards;
}

.toast.success { background: var(--success); }
.toast.error   { background: var(--error); }
.toast.warning { background: var(--warning); }

.toast-icon { flex-shrink: 0; margin-top: 1px; }
.toast-content { flex: 1; }
.toast-title { font-size: 14px; font-weight: 600; margin-bottom: 2px; }
.toast-msg { font-size: 13px; opacity: 0.85; line-height: 1.4; }

.toast.dismiss { animation: slide-out-down 0.3s var(--ease) forwards; }

/* =====================================================
   STAT KARTLARI
   ===================================================== */
.stat-card {
  background: var(--card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 20px 24px;
}

.stat-value {
  font-size: 32px;
  font-weight: 800;
  color: var(--petrol);
  line-height: 1;
  margin-bottom: 6px;
}

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

.stat-change {
  font-size: 12px;
  font-weight: 600;
  margin-top: 8px;
}

.stat-change.up { color: var(--success); }
.stat-change.down { color: var(--error); }

/* =====================================================
   SAYFALAMA
   ===================================================== */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 32px 0 0;
}

.page-btn {
  width: 38px; height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-body);
  background: var(--card);
  border: 1px solid var(--border);
  cursor: pointer;
  transition: all var(--duration) var(--ease);
}

.page-btn:hover { border-color: var(--petrol); color: var(--petrol); }
.page-btn.active {
  background: var(--petrol);
  border-color: var(--petrol);
  color: var(--white);
}

/* =====================================================
   FOOTER
   ===================================================== */
.footer {
  background: var(--text-dark);
  color: rgba(255,255,255,0.7);
  padding: 64px 0 32px;
  margin-top: auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand-name {
  font-family: 'Manrope', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}

.footer-brand-name span { color: var(--petrol-light); }

.footer-desc {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer-col-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 16px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  transition: color var(--duration) var(--ease);
}

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

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 13px;
  gap: 16px;
  flex-wrap: wrap;
}

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* =====================================================
   ÇEREZ BANNER
   ===================================================== */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 999;
  background: var(--text-dark);
  color: var(--white);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
  font-size: 14px;
  flex-wrap: wrap;
}

.cookie-banner a { color: var(--petrol-light); }
.cookie-banner.hidden { display: none; }

/* =====================================================
   MODAL
   ===================================================== */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: fade-in 0.2s var(--ease);
}

.modal {
  background: var(--card);
  border-radius: var(--radius-lg);
  padding: 32px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
  animation: scale-in 0.2s var(--ease);
}

.modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 24px;
}

.modal-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-dark);
}

.modal-close {
  width: 32px; height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  color: var(--text-muted);
  cursor: pointer;
  transition: all var(--duration) var(--ease);
}

.modal-close:hover { background: var(--accent-soft); color: var(--text-dark); }

/* =====================================================
   EMPTY STATE
   ===================================================== */
.empty-state {
  text-align: center;
  padding: 60px 24px;
  color: var(--text-muted);
}

.empty-state-icon {
  width: 64px; height: 64px;
  background: var(--accent-soft);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 28px;
}

.empty-state h3 {
  font-size: 18px;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.empty-state p {
  font-size: 14px;
  max-width: 360px;
  margin: 0 auto 20px;
}

/* =====================================================
   COPY BUTTON
   ===================================================== */
.copy-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-body);
  cursor: pointer;
  transition: all var(--duration) var(--ease);
}

.copy-btn:hover { border-color: var(--petrol); color: var(--petrol); }
.copy-btn.copied {
  background: rgba(85, 124, 114, 0.1);
  border-color: var(--success);
  color: var(--success);
}

/* =====================================================
   GÜVEN BÖLÜMÜ
   ===================================================== */
.trust-strip {
  background: var(--card);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  padding: 20px 0;
}

.trust-items {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-body);
}

.trust-item svg { color: var(--petrol); }

/* =====================================================
   PROMPT KÜTÜPHANE KARTI
   ===================================================== */
.prompt-lib-card {
  background: var(--card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 20px;
  transition: all var(--duration) var(--ease);
}

.prompt-lib-card:hover {
  border-color: var(--petrol);
  box-shadow: var(--shadow);
  transform: translateY(-1px);
}

.prompt-lib-card .prompt-preview {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-muted);
  background: var(--bg);
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-light);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-top: 10px;
}

/* =====================================================
   ANİMASYONLAR
   ===================================================== */
@keyframes spin {
  to { transform: rotate(360deg); }
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}

@keyframes shimmer {
  to { background-position: -200% 0; }
}

@keyframes fade-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

@keyframes slide-in-up {
  from { transform: translateY(20px); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}

@keyframes slide-out-down {
  from { transform: translateY(0); opacity: 1; }
  to   { transform: translateY(20px); opacity: 0; }
}

@keyframes fade-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes scale-in {
  from { transform: scale(0.95); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}

/* Sayfa giriş animasyonu */
.animate-fade-up {
  animation: slide-in-up 0.5s var(--ease) both;
}

.animate-delay-1 { animation-delay: 0.1s; }
.animate-delay-2 { animation-delay: 0.2s; }
.animate-delay-3 { animation-delay: 0.3s; }

/* =====================================================
   YARDIMCI SINIFLAR
   ===================================================== */
.hidden { display: none !important; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.w-full { width: 100%; }
.overflow-hidden { overflow: hidden; }
.relative { position: relative; }
.block { display: block; }
.inline-flex { display: inline-flex; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }
.flex-wrap { flex-wrap: wrap; }
.flex-1 { flex: 1; }

/* Divider */
.divider {
  height: 1px;
  background: var(--border-light);
  margin: 24px 0;
}

/* Çizgi gradient */
.divider-gradient {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
  margin: 40px 0;
}

/* AEO Kısa Cevap Kutusu */
.aeo-box {
  background: rgba(63, 107, 112, 0.06);
  border: 1.5px solid rgba(63, 107, 112, 0.2);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-bottom: 24px;
}

.aeo-box .aeo-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--petrol);
  margin-bottom: 8px;
}

.aeo-box p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-dark);
}

/* SSS */
.faq-item {
  border-bottom: 1px solid var(--border-light);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-dark);
  cursor: pointer;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-sans);
}

.faq-answer {
  padding: 0 0 18px;
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.7;
  display: none;
}

.faq-answer.open { display: block; }

/* =====================================================
   İÇERİK SAYFALARI (Blog detay vb.)
   ===================================================== */
.content-body {
  font-size: 17px;
  line-height: 1.8;
  color: var(--text-body);
}

.content-body h2 { margin: 40px 0 16px; }
.content-body h3 { margin: 32px 0 12px; }
.content-body p { margin-bottom: 20px; }
.content-body ul, .content-body ol { padding-left: 24px; margin-bottom: 20px; }
.content-body li { margin-bottom: 8px; line-height: 1.7; }
.content-body strong { color: var(--text-dark); font-weight: 600; }
.content-body code {
  font-family: var(--font-mono);
  font-size: 14px;
  background: var(--accent-soft);
  padding: 2px 6px;
  border-radius: 4px;
  color: var(--petrol-dark);
}
.content-body pre {
  background: var(--text-dark);
  color: var(--white);
  padding: 20px;
  border-radius: var(--radius);
  overflow-x: auto;
  margin-bottom: 20px;
  font-family: var(--font-mono);
  font-size: 14px;
  line-height: 1.6;
}
.content-body blockquote {
  border-left: 4px solid var(--petrol);
  padding: 12px 20px;
  margin: 24px 0;
  color: var(--text-dark);
  font-style: italic;
  background: rgba(63, 107, 112, 0.05);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .section { padding: 48px 0; }
  .section-lg { padding: 64px 0; }
  .hero { padding: 40px 0 36px; }
  h1 { font-size: 28px; }
  h2 { font-size: 22px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .trust-items { gap: 20px; }
  .toast-container { left: 16px; right: 16px; bottom: 16px; }
  .toast { max-width: 100%; }
  .modal { padding: 24px 20px; }
}

@media (max-width: 480px) {
  .prompt-widget { padding: 20px; }
  .category-filter { gap: 6px; }
  .filter-btn { padding: 6px 12px; font-size: 12px; }
}

/* Print */
@media print {
  .navbar, .footer, .cookie-banner, .toast-container { display: none; }
  body { background: white; color: black; }
}

/* =====================================================
   MD-02 EKLEMELERİ — Üyelik + Kredi + Panel
   ===================================================== */

/* MD-02 Canonical Renk Değişkenleri */
:root {
  --color-bg-main:      #F2EFE9;
  --color-bg-soft:      #FBF9F3;
  --color-bg-card:      #FFFDF8;
  --color-primary:      #2F5F63;
  --color-primary-dark: #223F42;
  --color-primary-soft: #DDEBE8;
  --color-text-main:    #223336;
  --color-text-muted:   #6F7C7D;
  --color-border:       #E5DED3;
  --color-border-strong:#CFC6BA;
  --color-accent:       #C99A5B;
  --color-danger:       #B95B5B;
  --color-success-dark: #3F7A68;
}

/* Navbar Kredi Chip */
.navbar-credit-chip {
  display: inline-flex; align-items: center; gap: 5px;
  background: #DDEBE8; color: #2F5F63;
  padding: 5px 12px; border-radius: 20px;
  font-size: 13px; font-weight: 600; text-decoration: none;
  transition: background 0.15s;
}
.navbar-credit-chip:hover { background: #c8deda; }

/* Navbar Mesaj Badge */
.navbar-msg-badge {
  display: inline-flex; align-items: center; justify-content: center;
  width: 22px; height: 22px; background: #B95B5B; color: #fff;
  border-radius: 50%; font-size: 11px; font-weight: 700; text-decoration: none;
}

/* Navbar Kullanıcı Menüsü */
.navbar-user-menu { position: relative; }
.navbar-user-btn {
  display: flex; align-items: center; gap: 7px;
  background: #FBF9F3; border: 1.5px solid #E5DED3; border-radius: 20px;
  padding: 5px 12px 5px 6px; cursor: pointer;
  font-size: 13px; font-weight: 600; color: #223336; transition: border-color 0.15s;
}
.navbar-user-btn:hover { border-color: #2F5F63; }
.navbar-avatar {
  width: 24px; height: 24px; background: #2F5F63; color: #fff;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700;
}
.navbar-dropdown {
  position: absolute; top: calc(100% + 8px); right: 0; min-width: 200px;
  background: #fff; border: 1.5px solid #E5DED3; border-radius: 12px;
  box-shadow: 0 8px 32px rgba(34,51,54,0.12); padding: 6px; z-index: 300;
  animation: dropIn 0.15s ease;
}
@keyframes dropIn { from { opacity:0; transform:translateY(-6px); } to { opacity:1; transform:translateY(0); } }
.navbar-dropdown a {
  display: block; padding: 8px 12px; border-radius: 8px;
  font-size: 14px; color: #223336; text-decoration: none; transition: background 0.12s;
}
.navbar-dropdown a:hover { background: #DDEBE8; }

/* Auth Sayfaları */
.auth-page { min-height: 100vh; display: flex; align-items: stretch; }
.auth-left {
  flex: 0 0 42%; background: linear-gradient(135deg, #223F42 0%, #2F5F63 100%);
  padding: 60px 48px; display: flex; flex-direction: column; justify-content: center; color: #fff;
}
.auth-right {
  flex: 1; background: #F2EFE9; display: flex;
  align-items: center; justify-content: center; padding: 48px 24px;
}
.auth-card {
  width: 100%; max-width: 420px; background: #FFFDF8;
  border: 1.5px solid #E5DED3; border-radius: 20px; padding: 40px 36px;
  box-shadow: 0 8px 32px rgba(34,51,54,0.08);
}
.auth-card h1 { font-size: 24px; font-weight: 800; margin-bottom: 6px; color: #223336; }
.auth-sub { font-size: 14px; color: #6F7C7D; margin-bottom: 28px; }
.auth-form-group { margin-bottom: 18px; }
.auth-form-group label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 6px; color: #223336; }
.auth-form-group input {
  width: 100%; padding: 12px 14px; border: 1.5px solid #E5DED3;
  border-radius: 10px; font-size: 15px; background: #F2EFE9; color: #223336;
  transition: border-color 0.15s; box-sizing: border-box;
}
.auth-form-group input:focus { outline: none; border-color: #2F5F63; }
.auth-error { background: #FEE2E2; border: 1px solid #B95B5B; color: #7f1d1d; border-radius: 8px; padding: 10px 14px; font-size: 13px; margin-bottom: 16px; }
.auth-success { background: #d1fae5; border: 1px solid #3F7A68; color: #065f46; border-radius: 8px; padding: 10px 14px; font-size: 13px; margin-bottom: 16px; }
@media (max-width: 768px) {
  .auth-left { display: none; }
  .auth-right { padding: 24px 16px; }
  .auth-card { padding: 28px 20px; }
}

/* AEO Kutusu */
.aeo-box { background: #DDEBE8; border-left: 4px solid #2F5F63; border-radius: 0 12px 12px 0; padding: 16px 20px; margin-bottom: 28px; }
.aeo-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: #2F5F63; margin-bottom: 6px; }
.aeo-box p { font-size: 15px; color: #223336; line-height: 1.6; margin: 0; }

/* Breadcrumb */
.breadcrumb { display: flex; align-items: center; gap: 6px; font-size: 13px; color: #6F7C7D; margin-bottom: 24px; flex-wrap: wrap; }
.breadcrumb a { color: #2F5F63; text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb-sep { color: #CFC6BA; }

/* Wizard Sekmeler */
.wizard-tabs { display: flex; border-bottom: 2px solid #E5DED3; margin-bottom: 24px; }
.wizard-tab { padding: 10px 20px; font-size: 14px; font-weight: 600; color: #6F7C7D; cursor: pointer; border-bottom: 2px solid transparent; margin-bottom: -2px; background: none; border-top: none; border-left: none; border-right: none; transition: color 0.15s, border-color 0.15s; font-family: inherit; }
.wizard-tab.active { color: #2F5F63; border-bottom-color: #2F5F63; }
.wizard-panel { display: none; }
.wizard-panel.active { display: block; }
.wizard-field { margin-bottom: 16px; }
.wizard-field label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 6px; color: #223336; }
.wizard-field input, .wizard-field textarea, .wizard-field select { width: 100%; padding: 10px 12px; border: 1.5px solid #E5DED3; border-radius: 8px; font-size: 14px; background: #F2EFE9; box-sizing: border-box; font-family: inherit; color: #223336; }
.wizard-field input:focus, .wizard-field textarea:focus { outline: none; border-color: #2F5F63; }
.wizard-result { background: #F2EFE9; border: 2px solid #DDEBE8; border-radius: 12px; padding: 20px; margin-top: 20px; }
.wizard-result pre { font-family: inherit; white-space: pre-wrap; word-break: break-word; font-size: 14px; line-height: 1.7; color: #223336; margin: 0; }

/* Checklist */
.checklist-item { display: flex; align-items: flex-start; gap: 10px; padding: 8px 0; border-bottom: 1px solid #E5DED3; font-size: 14px; }
.checklist-item:last-child { border-bottom: none; }
.checklist-item input[type=checkbox] { width: 16px; height: 16px; margin-top: 2px; flex-shrink: 0; accent-color: #2F5F63; }

/* Kredi Paket Kartları */
.credit-packages { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 16px; margin: 24px 0; }
.credit-pkg { background: #FFFDF8; border: 2px solid #E5DED3; border-radius: 16px; padding: 24px 20px; text-align: center; transition: border-color 0.15s, transform 0.15s; }
.credit-pkg:hover { border-color: #2F5F63; transform: translateY(-2px); }
.credit-pkg.featured { border-color: #2F5F63; background: #DDEBE8; }
.credit-pkg .pkg-credits { font-size: 36px; font-weight: 800; color: #2F5F63; }
.credit-pkg .pkg-label { font-size: 12px; color: #6F7C7D; margin-bottom: 4px; }
.credit-pkg .pkg-price { font-size: 22px; font-weight: 700; color: #223336; margin: 8px 0 16px; }

/* ── MD-03: Loading Steps Animasyonu ─────────────────────────── */
.loading-steps { margin-top:12px; display:flex; flex-direction:column; gap:6px; }
.loading-step {
  font-size: 13px; color: #6F7C7D; padding: 6px 12px;
  border-radius: 6px; transition: all 0.3s; opacity: 0.4;
  background: transparent;
}
.loading-step.active {
  color: #2F5F63; background: #DDEBE8;
  font-weight: 600; opacity: 1;
}

/* ── MD-03: Quality Badge ─────────────────────────────────────── */
.quality-badge {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 3px 10px; border-radius: 20px;
  font-size: 12px; font-weight: 700;
  transition: all 0.3s;
}
