/* ═══════════════════════════════════════════════════
   Mizalle Affiliate — Ana Stil
   Tasarım: Minimal, Inter font, indigo vurgu
═══════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

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

:root {
  --primary:       #6366f1;
  --primary-hover: #4f46e5;
  --sidebar-bg:    #0f172a;
  --black:         #0a0a0a;
  --dark:          #1a1a1a;
  --gray-700:      #374151;
  --gray-600:      #4b5563;
  --gray-500:      #6b7280;
  --gray-400:      #9ca3af;
  --gray-300:      #e5e7eb;
  --gray-200:      #e2e8f0;
  --gray-100:      #f8fafc;
  --white:         #ffffff;
  --success:       #16a34a;
  --warning:       #d97706;
  --error:         #dc2626;
  --radius:        8px;
  --radius-lg:     12px;
  --shadow:        0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
  --shadow-md:     0 4px 16px rgba(0,0,0,.10);
}

html { font-size: 16px; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--dark);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; display: block; }

/* ── Yardımcılar ── */
.container   { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.hidden      { display: none !important; }
.text-center { text-align: center; }
.text-muted  { color: var(--gray-500); }
.fw-600      { font-weight: 600; }
.fw-700      { font-weight: 700; }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }

/* ── Butonlar ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 24px; border-radius: var(--radius);
  font-size: .9rem; font-weight: 600; cursor: pointer;
  border: 1.5px solid transparent; transition: background .18s ease, border-color .18s ease, color .18s ease, transform .18s ease, box-shadow .18s ease;
  white-space: nowrap; text-decoration: none !important;
}
.btn:hover { text-decoration: none !important; }

/* Primary — indigo */
.btn-primary,
a.btn-primary,
button.btn-primary              { background: var(--primary) !important; color: #fff !important; border-color: var(--primary) !important; }
.btn-primary:hover,
a.btn-primary:hover,
button.btn-primary:hover        { background: var(--primary-hover) !important; border-color: var(--primary-hover) !important; color: #fff !important; }

/* Outline — indigo border */
.btn-outline,
a.btn-outline                   { background: transparent; color: var(--primary) !important; border-color: var(--primary); }
.btn-outline:hover,
a.btn-outline:hover             { background: var(--primary) !important; color: #fff !important; border-color: var(--primary) !important; }

/* Ghost — subtle */
.btn-ghost,
a.btn-ghost                     { background: transparent; color: var(--gray-500) !important; border-color: transparent; }
.btn-ghost:hover,
a.btn-ghost:hover               { background: rgba(99,102,241,.09); color: var(--primary) !important; border-color: transparent; }

/* Danger */
.btn-danger { background: var(--error) !important; color: #fff !important; border-color: var(--error) !important; }
.btn-danger:hover { background: #b91c1c !important; border-color: #b91c1c !important; color: #fff !important; }

.btn-sm     { padding: 7px 16px; font-size: .82rem; }
.btn-lg     { padding: 14px 32px; font-size: 1rem; }
.btn-full   { width: 100%; justify-content: center; }

/* ── Formlar ── */
.form-group  { display: flex; flex-direction: column; gap: 6px; margin-bottom: 20px; }
.form-group label { font-size: .85rem; font-weight: 600; color: var(--dark); }
.form-control {
  padding: 11px 14px; border: 1.5px solid var(--gray-300);
  border-radius: var(--radius); font-size: .95rem; font-family: inherit;
  background: var(--white); color: var(--dark); transition: border-color .15s;
  width: 100%;
}
.form-control:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(99,102,241,.1); }
.form-control::placeholder { color: var(--gray-400); }
.form-row  { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-hint { font-size: .8rem; color: var(--gray-500); }
.required  { color: var(--error); }

/* ── Kart ── */
.card    { background: var(--white); border: 1px solid var(--gray-300); border-radius: var(--radius-lg); padding: 24px; }
.card-sm { padding: 16px; }

/* ── Alert ── */
.alert {
  padding: 14px 16px; border-radius: var(--radius);
  font-size: .9rem; display: flex; align-items: flex-start; gap: 10px;
}
.alert-error   { background: #fef2f2; border: 1px solid #fecaca; color: var(--error); }
.alert-success { background: #f0fdf4; border: 1px solid #bbf7d0; color: var(--success); }
.alert-info    { background: #f8fafc; border: 1px solid var(--gray-300); color: var(--gray-700); }

/* ── Durum badge ── */
.badge { display: inline-block; padding: 3px 10px; border-radius: 20px; font-size: .75rem; font-weight: 600; }
.badge-pending   { background: #fef9c3; color: #854d0e; }
.badge-approved  { background: #dcfce7; color: #15803d; }
.badge-paid      { background: #dbeafe; color: #1d4ed8; }
.badge-rejected  { background: #fee2e2; color: #b91c1c; }
.badge-suspended { background: #f3f4f6; color: var(--gray-500); }

/* ── Header (public — beyaz) ── */
.site-header {
  background: var(--white); border-bottom: 1px solid var(--gray-300);
  position: sticky; top: 0; z-index: 100;
}
.site-header .inner {
  display: flex; align-items: center; justify-content: space-between; height: 60px;
}
.site-logo { font-size: 1.4rem; font-weight: 800; letter-spacing: -0.5px; color: #1a1a1a; display: flex; align-items: center; gap: 6px; text-decoration: none !important; }
.site-logo span { font-weight: 300; color: #1a1a1a; }
.site-logo-img { height: 5rem; width: auto; display: block; }
.site-header.admin .site-logo-img,
.site-header.panel .site-logo-img { filter: invert(1); mix-blend-mode: screen; }
.site-header.admin .site-logo,
.site-header.panel .site-logo { flex-shrink: 0; }
.site-header.admin .header-nav,
.site-header.panel .header-nav { margin-left: auto; padding-left: 40px; }
.header-nav { display: flex; align-items: center; gap: 4px; }
.header-nav a {
  padding: 8px 14px; border-radius: var(--radius);
  font-size: .88rem; color: var(--gray-500); font-weight: 500;
}
.header-nav a:hover, .header-nav a.active {
  background: var(--gray-100); color: var(--dark); text-decoration: none;
}

/* ── Admin + Panel header (koyu lacivert) ── */
.site-header.admin,
.site-header.panel { background: var(--sidebar-bg); border-color: #1e293b; }
.site-header.admin .site-logo,
.site-header.panel .site-logo { color: var(--white); }
.site-header.admin .site-logo span,
.site-header.panel .site-logo span { color: var(--white); }
.site-header.admin .header-nav a,
.site-header.panel .header-nav a { color: #94a3b8; }
.site-header.admin .header-nav a:hover,
.site-header.admin .header-nav a.active,
.site-header.panel .header-nav a:hover,
.site-header.panel .header-nav a.active {
  background: rgba(99,102,241,.2); color: var(--white) !important; text-decoration: none;
}
.site-header.panel .btn-ghost { color: #94a3b8; }
.site-header.panel .btn-ghost:hover { background: rgba(255,255,255,.08); color: var(--white); }

/* ── Dashboard layout ── */
.dash-wrap { display: grid; grid-template-columns: 220px 1fr; min-height: calc(100vh - 60px); }
.dash-sidebar { background: var(--sidebar-bg); padding: 8px 0 20px; }
.dash-nav a {
  display: flex; align-items: center; gap: 10px;
  padding: 11px 20px; font-size: .88rem; font-weight: 500;
  color: #94a3b8; transition: all .15s;
}
.dash-nav a:hover,
.dash-nav a.active {
  background: rgba(99,102,241,.15); color: var(--white) !important;
  text-decoration: none; border-left: 3px solid var(--primary); padding-left: 17px;
}
.dash-nav .nav-icon { font-size: 1rem; width: 20px; }
.dash-main  { padding: 32px; background: var(--gray-100); min-height: calc(100vh - 60px); }
.page-title { font-size: 1.4rem; font-weight: 700; margin-bottom: 6px; color: var(--dark); }
.page-sub   { color: var(--gray-500); font-size: .9rem; margin-bottom: 28px; }

/* ── KPI kartlar ── */
.kpi-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 16px; margin-bottom: 28px; }
.kpi-card {
  background: var(--white); border: 1px solid var(--gray-300);
  border-radius: var(--radius-lg); padding: 20px;
}
.kpi-card .kpi-label { font-size: .78rem; font-weight: 600; text-transform: uppercase; letter-spacing: .05em; color: var(--gray-500); margin-bottom: 8px; }
.kpi-card .kpi-value { font-size: 1.8rem; font-weight: 800; line-height: 1.2; }
.kpi-card .kpi-sub   { font-size: .78rem; color: var(--gray-500); margin-top: 4px; }
.kpi-card.kpi-accent .kpi-value { color: var(--success); }
.kpi-card.kpi-warn   .kpi-value { color: var(--warning); }

/* ── Tablo ── */
.table-wrap { border: 1px solid var(--gray-300); border-radius: var(--radius-lg); overflow: hidden; }
.table-wrap table { width: 100%; border-collapse: collapse; font-size: .88rem; }
.table-wrap thead th {
  background: var(--gray-100); padding: 12px 16px; text-align: left;
  font-size: .75rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: .05em; color: var(--gray-500); white-space: nowrap;
}
.table-wrap tbody td { padding: 14px 16px; border-top: 1px solid var(--gray-100); }
.table-wrap tbody tr:hover td { background: #fafafa; }

/* ── Link input kutusu ── */
.link-copy-row { display: flex; gap: 8px; }
.link-copy-row input {
  flex: 1; padding: 10px 14px; border: 1.5px solid var(--gray-300);
  border-radius: var(--radius); font-size: .88rem; background: var(--gray-100);
  color: var(--dark); font-family: 'SF Mono', 'Fira Code', monospace;
}
.link-copy-row .btn { flex-shrink: 0; }

/* ── Tier Progress Bar ── */
.tier-bar  { background: var(--gray-200); border-radius: 9px; height: 10px; overflow: hidden; margin: 10px 0; }
.tier-fill { height: 100%; background: linear-gradient(90deg, #6366f1, #8b5cf6); border-radius: 9px; transition: width .4s ease; }

/* ── Sosyal Paylaşım Butonları ── */
.share-btn {
  display: inline-flex; align-items: center; gap: 6px; padding: 6px 14px;
  border-radius: var(--radius); font-size: .8rem; font-weight: 600;
  text-decoration: none; border: 1px solid transparent; transition: opacity .15s; cursor: pointer;
}
.share-btn:hover { opacity: .85; text-decoration: none; }
.share-wa   { background: #25d366; color: #fff !important; }
.share-tw   { background: #1d9bf0; color: #fff !important; }
.share-ig   { background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af); color: #fff !important; }
.share-tt   { background: #010101; color: #fff !important; }
.share-qr   { background: var(--gray-100); color: var(--gray-700) !important; border-color: var(--gray-300); }
.share-mail { background: var(--gray-200); color: var(--gray-700) !important; border-color: var(--gray-300); }

/* ── Toast Bildirimi ── */
#copyToast {
  position: fixed; bottom: 24px; left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: rgba(15,20,35,.92); color: #fff;
  padding: 10px 20px; border-radius: 10px;
  font-size: .85rem; font-weight: 600;
  pointer-events: none; opacity: 0;
  transition: opacity .25s, transform .25s;
  z-index: 2000; white-space: nowrap;
}
#copyToast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ── Sayfa: Landing (/) ── */
.hero { padding: 100px 0 80px; background: var(--white); border-bottom: 1px solid var(--gray-300); }
.hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 800; line-height: 1.15; letter-spacing: -1px; margin-bottom: 20px;
}
.hero p { font-size: 1.1rem; color: var(--gray-500); max-width: 540px; margin-bottom: 36px; }
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 48px; margin-top: 60px; padding-top: 40px; border-top: 1px solid var(--gray-300); }
.hero-stat-num { font-size: 2rem; font-weight: 800; }
.hero-stat-lbl { font-size: .82rem; color: var(--gray-500); margin-top: 2px; }

/* ── Sayfa: Kayıt/Giriş ── */
.auth-wrap {
  min-height: 100vh; display: flex; align-items: center;
  justify-content: center; background: var(--gray-100); padding: 24px;
}
.auth-box {
  background: var(--white); border: 1px solid var(--gray-300);
  border-radius: var(--radius-lg); padding: 40px; width: 100%; max-width: 440px;
}
.auth-logo  { font-size: 1.5rem; font-weight: 800; margin-bottom: 28px; }
.auth-box h2 { font-size: 1.4rem; font-weight: 700; margin-bottom: 6px; }
.auth-box p  { color: var(--gray-500); font-size: .9rem; margin-bottom: 28px; }
.auth-footer { margin-top: 20px; text-align: center; font-size: .85rem; color: var(--gray-500); }
.auth-footer a { color: var(--dark); font-weight: 600; }

/* ── Hamburger butonu (sadece mobilde görünür) ── */
.mob-menu-btn {
  display: none;
  flex-direction: column; justify-content: center; gap: 5px;
  width: 38px; height: 38px; padding: 6px;
  background: rgba(255,255,255,.08); border: none; border-radius: var(--radius);
  cursor: pointer;
}
.mob-menu-btn span {
  display: block; width: 20px; height: 2px;
  background: #fff; border-radius: 2px; transition: all .2s;
}
.site-header:not(.admin):not(.panel) .mob-menu-btn span { background: var(--dark); }

/* ── Mobil sidebar overlay ── */
.mob-sidebar-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,.5); z-index: 199;
}
.mob-sidebar-overlay.active { display: block; }

/* ══════════════════════════════════════════════
   Responsive — Tablet & Mobil
══════════════════════════════════════════════ */
@media (max-width: 768px) {
  .form-row      { grid-template-columns: 1fr; }
  .hero          { padding: 60px 0 50px; }
  .hero-stats    { gap: 24px; flex-wrap: wrap; }
  .link-copy-row { flex-direction: column; }

  /* ── Header ─────────────────────────────── */
  /* Hamburger: görünür + logonun karşısına sağa it */
  .mob-menu-btn { display: flex; margin-left: auto; }

  /* Panel: header-nav tamamen gizle (çıkış sidebar'daki linkten yapılır) */
  .site-header.panel .header-nav { display: none !important; }

  /* Admin: header nav tamamen gizle (çıkış sidebar'dan yapılır) */
  .site-header.admin .header-nav { display: none !important; }

  /* Logo mobilde küçül */
  .site-logo-img { height: 3.4rem; }
  .site-logo span { font-size: 1rem; }

  /* ── Dashboard düzeni ────────────────────── */
  .dash-wrap  { grid-template-columns: 1fr; position: relative; }
  /* KRİTİK: min-width:0 olmadan grid child viewport'u taşırır,
     table overflow-x:auto ve flex chart wrap çalışmaz */
  .dash-main  { padding: 16px; background: var(--gray-100); min-width: 0; max-width: 100%; }
  .page-title { font-size: 1.15rem; }
  .page-sub   { font-size: .82rem; margin-bottom: 16px; }
  .card       { padding: 16px; }

  /* Sayfa başlığı + export butonu satırı */
  .dash-main > div[style*="justify-content:space-between"],
  .dash-main > div[style*="justify-content: space-between"] {
    flex-wrap: wrap; gap: 10px;
  }

  /* ── Sidebar: slide-in ───────────────────── */
  .dash-sidebar {
    position: fixed; top: 60px; left: 0; bottom: 0;
    width: 260px; z-index: 200;
    transform: translateX(-100%);
    transition: transform .25s ease;
    overflow-y: auto;
  }
  .dash-sidebar.open { transform: translateX(0); }

  /* ── KPI kartları ────────────────────────── */
  .kpi-grid { grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 20px; }
  .kpi-card { padding: 14px 16px; }
  .kpi-card .kpi-value { font-size: 1.45rem; }

  /* ── Tablolar ────────────────────────────── */
  /* Edge-to-edge: padding kadar dışarı taşıyarak tam genişlik scroll alanı */
  .table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; border-radius: 0; margin-left: -16px; margin-right: -16px; }
  .table-wrap table { min-width: 620px; }
  .table-wrap thead th,
  .table-wrap tbody td { padding: 10px 12px; font-size: .83rem; }

  /* ── Grafikler ───────────────────────────── */
  /* Chart.js canvas: max yükseklik sınırla, taşmayı engelle */
  canvas { max-height: 220px !important; }
  /* Yan yana grafik kutuları: min-width inline stilini ezer, alt alta geçer */
  .dash-main div[style*="flex:1"][style*="min-width"],
  .dash-main div[style*="flex: 1"][style*="min-width"] {
    flex: 1 1 100% !important; min-width: 0 !important;
  }

  /* ── Grafik + Leaderboard: 2 kolon → tek kolon ── */
  .dash-grid-2col { grid-template-columns: 1fr !important; }

  /* ── Modaller ────────────────────────────── */
  #modal > div,
  #notifModal > div { max-width: calc(100vw - 24px) !important; padding: 20px 18px !important; }

  /* ── Filter bar butonları ────────────────── */
  .btn-sm { padding: 6px 12px; font-size: .78rem; }

  /* ── Auth box ────────────────────────────── */
  .auth-box { padding: 28px 20px; }
}

/* ── Küçük telefon (≤480px) ─────────────────── */
@media (max-width: 480px) {
  .kpi-grid  { grid-template-columns: 1fr; }
  .kpi-card .kpi-value { font-size: 1.3rem; }
  .dash-main { padding: 12px; }

  /* Tablolar: daha küçük padding, daha dar min-width */
  .table-wrap { margin-left: -12px; margin-right: -12px; }
  .table-wrap table { min-width: 480px; }
  .table-wrap thead th,
  .table-wrap tbody td { padding: 8px 10px; font-size: .78rem; }
  canvas { max-height: 180px !important; }

  /* Modaller neredeyse tam genişlik */
  #modal > div,
  #notifModal > div { max-width: calc(100vw - 16px) !important; padding: 16px !important; border-radius: 8px !important; }

  /* Sayfa başlığı */
  .page-title { font-size: 1rem; }
  .card { padding: 12px; }

  /* Landing */
  .lp-steps   { grid-template-columns: 1fr; }
  .lp-models  { grid-template-columns: 1fr; }
  .lp-cta     { padding: 64px 0; }
  .lp-section { padding: 48px 0; }
  .lp-slider-wrap { max-height: none; }
  .lp-slider-img  { max-height: none; }
}

/* ════════════════════════════════════════════
   Landing Page — Mizalle Kazan
════════════════════════════════════════════ */

/* ── Hero ── */
.lp-hero {
  background: var(--sidebar-bg);
  color: var(--white);
  padding: 96px 0 0;
  position: relative;
  overflow: hidden;
}
.lp-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  width: 900px; height: 500px;
  background: radial-gradient(ellipse at center top, rgba(99,102,241,.4) 0%, transparent 70%);
  pointer-events: none;
}
.lp-hero-content {
  position: relative;
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
  padding-bottom: 72px;
}
.lp-badge {
  display: inline-block;
  background: rgba(99,102,241,.18);
  border: 1px solid rgba(99,102,241,.35);
  color: #a5b4fc;
  padding: 5px 18px;
  border-radius: 20px;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.lp-headline {
  font-size: clamp(2.8rem, 5.5vw, 4.2rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -2px;
  color: var(--white);
  margin-bottom: 22px;
}
.lp-highlight {
  color: #818cf8;
  font-style: italic;
}
.lp-subtext {
  font-size: 1.05rem;
  color: #94a3b8;
  line-height: 1.72;
  margin-bottom: 40px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}
.lp-hero-cta { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.lp-btn-ghost {
  background: rgba(99,102,241,.18);
  color: #a5b4fc !important;
  border-color: rgba(99,102,241,.45);
}
.lp-btn-ghost:hover { background: rgba(99,102,241,.35); border-color: var(--primary); color: #fff !important; text-decoration: none; }

/* Stats bar */
.lp-stats-bar {
  background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 100%);
  border-top: 3px solid #6366f1;
  border-bottom: 1px solid rgba(99,102,241,.2);
  padding: 44px 0;
}
.lp-stats { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 0; }
.lp-stat  { text-align: center; padding: 12px 52px; }
.lp-stat-divider { width: 1px; height: 56px; background: rgba(99,102,241,.3); flex-shrink: 0; }
.lp-stat-num { font-size: 2.4rem; font-weight: 900; color: #fff; line-height: 1.1; letter-spacing: -1px; }
.lp-stat-lbl { font-size: .8rem; color: #94a3b8; margin-top: 6px; font-weight: 500; letter-spacing: .04em; text-transform: uppercase; }

/* ── Sections ── */
.lp-section { padding: 92px 0; }
.lp-section-white { background: var(--white); }
.lp-section-gray  { background: var(--gray-100); border-top: 1px solid var(--gray-300); border-bottom: 1px solid var(--gray-300); }

.lp-section-header { text-align: center; margin-bottom: 60px; }
.lp-section-tag {
  display: inline-block;
  background: rgba(99,102,241,.07);
  color: var(--primary);
  border: 1px solid rgba(99,102,241,.18);
  padding: 4px 14px;
  border-radius: 20px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.lp-section-header h2 {
  font-size: 2.1rem; font-weight: 800; letter-spacing: -.6px;
  margin-bottom: 12px; color: var(--dark);
}
.lp-section-header p {
  font-size: .95rem; color: var(--gray-500);
  max-width: 460px; margin: 0 auto; line-height: 1.65;
}

/* ── Steps ── */
.lp-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
}
.lp-step { text-align: center; }
.lp-step-num {
  width: 56px; height: 56px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary) 0%, #8b5cf6 100%);
  color: #fff; font-size: .95rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
  box-shadow: 0 6px 24px rgba(99,102,241,.38);
}
.lp-step h3 { font-size: 1rem; font-weight: 700; margin-bottom: 10px; color: var(--dark); }
.lp-step p  { font-size: .85rem; color: var(--gray-500); line-height: 1.65; }

/* ── Kazanç Model Cards ── */
.lp-models {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px; max-width: 740px; margin: 0 auto;
}
.lp-model-card {
  background: var(--white);
  border: 1.5px solid var(--gray-300);
  border-radius: var(--radius-lg);
  padding: 36px 32px 32px;
  position: relative;
  transition: box-shadow .2s;
}
.lp-model-card:hover { box-shadow: var(--shadow-md); }
.lp-model-featured {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(99,102,241,.09);
}
.lp-model-badge {
  position: absolute; top: -12px; left: 24px;
  background: var(--primary); color: #fff;
  font-size: .7rem; font-weight: 700;
  padding: 3px 12px; border-radius: 12px;
  letter-spacing: .06em; text-transform: uppercase;
}
.lp-model-icon { margin-bottom: 14px; color: var(--primary); }
.lp-model-card h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 10px; }
.lp-model-card > p { font-size: .88rem; color: var(--gray-500); margin-bottom: 22px; line-height: 1.6; }
.lp-model-list { list-style: none; margin-bottom: 28px; }
.lp-model-list li {
  padding: 9px 0; border-top: 1px solid var(--gray-100);
  font-size: .85rem; color: var(--gray-700);
  display: flex; align-items: center; gap: 10px;
}
.lp-model-list li::before { content: '✓'; color: var(--success); font-weight: 700; flex-shrink: 0; }

/* ── Kim başvurabilir ── */
.lp-who-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 18px;
}
.lp-who-card {
  display: flex; gap: 14px; align-items: flex-start;
  background: var(--gray-100);
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-lg); padding: 22px;
  transition: border-color .15s;
}
.lp-who-card:hover { border-color: var(--primary); }
.lp-who-dot {
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--primary); flex-shrink: 0; margin-top: 7px;
}
.lp-who-card strong { display: block; font-size: .92rem; font-weight: 700; margin-bottom: 5px; }
.lp-who-card p { font-size: .82rem; color: var(--gray-500); line-height: 1.55; margin: 0; }

/* ── FAQ ── */
.lp-faq-wrap { max-width: 720px; }
.lp-faq-item {
  border: 1px solid var(--gray-300);
  border-radius: var(--radius);
  margin-bottom: 10px;
  overflow: hidden;
  cursor: pointer;
  background: var(--white);
  transition: border-color .15s;
}
.lp-faq-item:hover { border-color: #c7d2fe; }
.lp-faq-item.open  { border-color: var(--primary); }
.lp-faq-q {
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px 20px; font-weight: 600; font-size: .92rem; gap: 16px;
}
.lp-faq-icon { flex-shrink: 0; color: var(--gray-400); transition: transform .22s ease; }
.lp-faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height .28s ease, padding .2s;
  font-size: .88rem; color: var(--gray-500);
  line-height: 1.65; padding: 0 20px;
}
.lp-faq-item.open .lp-faq-a { padding-bottom: 18px; }

/* ── CTA Bölümü ── */
.lp-cta {
  background: var(--sidebar-bg);
  padding: 96px 0;
  text-align: center;
  color: var(--white);
  position: relative; overflow: hidden;
}
.lp-cta::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 120% at 50% 0%, rgba(99,102,241,.22) 0%, transparent 65%);
  pointer-events: none;
}
.lp-cta h2 {
  font-size: 2.4rem; font-weight: 800; margin-bottom: 16px;
  letter-spacing: -.8px; position: relative;
}
.lp-cta p {
  font-size: 1rem; color: rgba(255,255,255,.72);
  margin-bottom: 40px; max-width: 420px;
  margin-left: auto; margin-right: auto;
  line-height: 1.65; position: relative;
}
.lp-cta-btn {
  background: var(--white) !important;
  color: var(--primary) !important;
  border-color: var(--white) !important;
  font-weight: 700; position: relative;
  box-shadow: 0 8px 32px rgba(0,0,0,.2);
}
.lp-cta-btn:hover { opacity: .93; text-decoration: none; transform: translateY(-1px); }
.lp-cta-note {
  margin-top: 20px; font-size: .78rem;
  color: rgba(255,255,255,.42); position: relative;
}

/* ── Slider görseli ── */
.lp-slider-wrap {
  display: block; width: 100%; line-height: 0; cursor: pointer;
}
.lp-slider-img {
  width: 100%; height: auto; display: block;
  transition: opacity .2s;
}
.lp-slider-wrap:hover .lp-slider-img { opacity: .93; }

/* ── Kayıt formu — sosyal medya satırları ── */
.social-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: end;
}
.social-row > div:last-child { width: 140px; }
.reg-box { padding: 40px; }

/* ── Landing Responsive ── */
@media (max-width: 768px) {
  .lp-hero { padding: 72px 0 0; }
  .lp-headline { font-size: 2.5rem; letter-spacing: -1px; }
  .lp-stats-bar { padding: 28px 0; }
  .lp-stat { padding: 10px 24px; }
  .lp-stat-num { font-size: 1.8rem; }
  .lp-stat-divider { display: none; }
  .lp-steps { grid-template-columns: 1fr 1fr; gap: 24px; }
  .lp-section { padding: 64px 0; }
  .lp-cta h2 { font-size: 1.9rem; }
  .lp-section-header h2 { font-size: 1.7rem; }
  .lp-who-grid { grid-template-columns: 1fr; }
  .lp-slider-wrap { max-height: none; overflow: visible; }
  .lp-slider-img  { max-height: none; height: auto; object-fit: unset; }
}

@media (max-width: 600px) {
  .social-row                  { grid-template-columns: 1fr; }
  .social-row > div:last-child { width: auto; }
  .reg-box                     { padding: 24px 16px; }
}

