/* ============================================================
   İÇİNDEN — WEB STİL (Warm Organic B)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,700;0,800;1,700&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

:root {
  /* Ana Renkler */
  --brown:        #2c1810;
  --brown-mid:    #5c3520;
  --brown-soft:   #7a4a35;
  --orange:       #c4773d;
  --orange-hover: #b06830;
  --orange-light: #fff0e4;
  --orange-mid:   #fde8d2;
  --orange-border:#f0c9a0;

  /* Zemin */
  --cream:        #fffbf5;
  --cream-dark:   #fdf5eb;
  --white:        #ffffff;
  --surface:      #fef9f3;

  /* Metin */
  --ink:          #1e0e07;
  --ink-mid:      #4a2c1a;
  --ink-muted:    #8c5f45;
  --ink-soft:     #b89080;

  /* Sistem */
  --success:      #27ae60;
  --danger:       #e74c3c;
  --warning:      #f39c12;

  /* Border */
  --border:       rgba(196,119,61,0.15);
  --border-mid:   rgba(196,119,61,0.28);

  /* Gölge */
  --shadow-sm:    0 2px 12px rgba(44,24,16,0.06);
  --shadow-md:    0 8px 32px rgba(44,24,16,0.10);
  --shadow-lg:    0 24px 64px rgba(44,24,16,0.14);

  /* Radius */
  --r-sm:   8px;
  --r-md:   14px;
  --r-lg:   20px;
  --r-xl:   28px;
  --r-full: 9999px;

  /* Font */
  --serif: 'Playfair Display', Georgia, serif;
  --sans:  'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;

  /* Layout */
  --nav-h:  70px;
  --max-w:  1160px;
  --t:      0.22s ease;
}

/* ============================================================ RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body { font-family: var(--sans); background: var(--cream); color: var(--ink); line-height: 1.65; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
img  { max-width: 100%; display: block; }
a    { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; }
input, textarea, select { font-family: inherit; }
ul, ol { list-style: none; }

/* ============================================================ CONTAINER */
.c { width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 28px; }

/* ============================================================ NAV */
.nav {
  position: fixed; top: 0; left: 0; right: 0; height: var(--nav-h); z-index: 1000;
  transition: background var(--t), box-shadow var(--t);
}
.nav.scrolled {
  background: rgba(255,251,245,0.94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--border);
}
.nav-inner { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 24px; }

.nav-logo { display: flex; align-items: center; gap: 10px; font-family: var(--serif); font-size: 20px; font-weight: 700; color: var(--ink); letter-spacing: -0.3px; }
.nav-logo-icon { width: 34px; height: 34px; background: var(--orange); border-radius: 10px; display: flex; align-items: center; justify-content: center; }
.nav-logo-icon svg { width: 18px; height: 18px; color: #fff; }

.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-link { font-size: 14px; font-weight: 500; color: var(--ink-muted); transition: color var(--t); }
.nav-link:hover, .nav-link.active { color: var(--ink); }

.nav-actions { display: flex; align-items: center; gap: 8px; }
.nav-btn-ghost { font-size: 14px; font-weight: 500; color: var(--brown-soft); padding: 8px 18px; border-radius: var(--r-full); border: none; background: none; transition: background var(--t); }
.nav-btn-ghost:hover { background: var(--orange-light); }
.nav-btn-solid { font-size: 14px; font-weight: 600; color: #fff; background: var(--brown); padding: 9px 22px; border-radius: var(--r-md); border: none; transition: background var(--t), transform var(--t); }
.nav-btn-solid:hover { background: var(--orange); transform: translateY(-1px); }

.nav-mobile-btn { display: none; background: none; border: none; color: var(--ink); padding: 4px; }

/* ============================================================ HERO */
.hero {
  padding-top: calc(var(--nav-h) + 72px);
  padding-bottom: 80px;
  position: relative;
  overflow: hidden;
}

.hero-blob {
  position: absolute; pointer-events: none;
  border-radius: 50%; filter: blur(80px); opacity: 0.35;
}
.hero-blob-1 { width: 500px; height: 400px; background: var(--orange-mid); top: -80px; right: -100px; }
.hero-blob-2 { width: 340px; height: 280px; background: var(--orange-light); bottom: 40px; left: -60px; }

.hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; position: relative; z-index: 1; }

.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: var(--white); border: 1px solid var(--orange-border); border-radius: var(--r-full); padding: 5px 14px 5px 8px; font-size: 12px; font-weight: 600; color: var(--brown-soft); letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: 22px; }
.hero-badge-dot { width: 22px; height: 22px; background: var(--orange-light); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.hero-badge-dot svg { width: 12px; height: 12px; color: var(--orange); }

.hero-h1 { font-family: var(--serif); font-size: clamp(38px, 5vw, 62px); font-weight: 800; color: var(--ink); line-height: 1.08; letter-spacing: -1.5px; margin-bottom: 18px; }
.hero-h1 em { font-style: italic; color: var(--orange); }

.hero-sub { font-size: 17px; font-weight: 300; color: var(--ink-muted); line-height: 1.75; margin-bottom: 36px; max-width: 440px; }

.hero-cta { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin-bottom: 40px; }

.btn-primary { display: inline-flex; align-items: center; gap: 8px; font-size: 15px; font-weight: 700; color: #fff; background: var(--brown); padding: 14px 30px; border-radius: var(--r-md); border: none; transition: background var(--t), transform var(--t), box-shadow var(--t); box-shadow: 0 4px 20px rgba(44,24,16,0.2); }
.btn-primary:hover { background: var(--orange); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(196,119,61,0.35); }

.btn-secondary { display: inline-flex; align-items: center; gap: 8px; font-size: 15px; font-weight: 600; color: var(--brown); background: var(--white); padding: 13px 26px; border-radius: var(--r-md); border: 2px solid var(--orange-border); transition: all var(--t); }
.btn-secondary:hover { background: var(--orange-light); border-color: var(--orange); }

.hero-stats { display: flex; gap: 28px; }
.hero-stat-num { font-family: var(--serif); font-size: 26px; font-weight: 700; color: var(--ink); line-height: 1; }
.hero-stat-label { font-size: 12px; color: var(--ink-muted); margin-top: 3px; }

/* Sağ taraf — testimonial kartı */
.hero-visual { position: relative; }
.hero-card-main { background: var(--white); border: 1px solid var(--orange-border); border-radius: var(--r-xl); padding: 28px; box-shadow: var(--shadow-lg); }
.hero-card-quote { font-family: var(--serif); font-size: 18px; font-style: italic; color: var(--ink-mid); line-height: 1.65; margin-bottom: 18px; }
.hero-card-author { display: flex; align-items: center; gap: 12px; }
.hero-card-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--orange-mid); display: flex; align-items: center; justify-content: center; font-family: var(--serif); font-weight: 700; font-size: 16px; color: var(--orange); }
.hero-card-name { font-size: 14px; font-weight: 600; color: var(--ink); }
.hero-card-sub  { font-size: 12px; color: var(--ink-muted); }
.hero-stars { display: flex; gap: 3px; margin-bottom: 10px; }
.hero-stars svg { width: 14px; height: 14px; color: var(--orange); }

.hero-card-float { position: absolute; background: var(--white); border: 1px solid var(--orange-border); border-radius: var(--r-md); padding: 14px 18px; box-shadow: var(--shadow-md); }
.hero-card-float-1 { top: -24px; right: -20px; display: flex; align-items: center; gap: 10px; }
.hero-card-float-2 { bottom: -20px; left: -20px; }
.float-icon { width: 36px; height: 36px; border-radius: var(--r-sm); background: var(--orange-light); display: flex; align-items: center; justify-content: center; }
.float-icon svg { width: 18px; height: 18px; color: var(--orange); }
.float-label { font-size: 12px; color: var(--ink-muted); }
.float-val { font-size: 15px; font-weight: 700; color: var(--ink); }
.float-users { display: flex; }
.float-user { width: 24px; height: 24px; border-radius: 50%; border: 2px solid var(--white); background: var(--orange-mid); margin-left: -8px; first-child: { margin-left: 0; } }
.float-user:first-child { margin-left: 0; }
.float-count { font-size: 13px; font-weight: 600; color: var(--ink); margin-left: 8px; }
.float-sub { font-size: 11px; color: var(--ink-muted); }

/* ============================================================ NASIL ÇALIŞIR */
.how { padding: 96px 0; background: var(--cream-dark); }
.section-label { font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--orange); margin-bottom: 12px; }
.section-h2 { font-family: var(--serif); font-size: clamp(30px, 4vw, 46px); font-weight: 700; color: var(--ink); line-height: 1.15; letter-spacing: -0.8px; margin-bottom: 16px; }
.section-sub { font-size: 16px; font-weight: 300; color: var(--ink-muted); line-height: 1.75; max-width: 520px; }
.section-head { margin-bottom: 64px; }

.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; position: relative; }
.steps::before { content: ''; position: absolute; top: 32px; left: calc(16.67% + 16px); right: calc(16.67% + 16px); height: 1px; background: var(--border-mid); z-index: 0; }

.step { position: relative; z-index: 1; }
.step-num { width: 64px; height: 64px; border-radius: 50%; background: var(--white); border: 2px solid var(--orange-border); display: flex; align-items: center; justify-content: center; font-family: var(--serif); font-size: 22px; font-weight: 700; color: var(--orange); margin-bottom: 20px; position: relative; transition: all var(--t); }
.step:hover .step-num { background: var(--orange); color: #fff; border-color: var(--orange); }
.step-icon { width: 48px; height: 48px; border-radius: var(--r-md); background: var(--orange-light); display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.step-icon svg { width: 24px; height: 24px; color: var(--orange); }
.step-title { font-size: 18px; font-weight: 700; color: var(--ink); margin-bottom: 10px; }
.step-text  { font-size: 14px; color: var(--ink-muted); line-height: 1.7; }

/* ============================================================ ÖZELLİKLER */
.features { padding: 96px 0; }
.features-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.feature-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--r-xl); padding: 32px; transition: box-shadow var(--t), transform var(--t), border-color var(--t); }
.feature-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); border-color: var(--orange-border); }
.feature-card.featured { background: var(--brown); border-color: var(--brown); }
.feature-card.featured .feature-icon { background: rgba(255,255,255,0.12); }
.feature-card.featured .feature-icon svg { color: var(--orange-light); }
.feature-card.featured .feature-title { color: #fff; }
.feature-card.featured .feature-text  { color: rgba(255,255,255,0.65); }
.feature-icon { width: 52px; height: 52px; border-radius: var(--r-md); background: var(--orange-light); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.feature-icon svg { width: 26px; height: 26px; color: var(--orange); }
.feature-title { font-size: 20px; font-weight: 700; color: var(--ink); margin-bottom: 10px; }
.feature-text  { font-size: 14px; color: var(--ink-muted); line-height: 1.75; }
.feature-tag { display: inline-block; background: var(--orange-light); color: var(--orange); font-size: 11px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; padding: 4px 10px; border-radius: var(--r-full); margin-bottom: 14px; }
.feature-card.featured .feature-tag { background: rgba(255,255,255,0.12); color: rgba(255,255,255,0.8); }

/* ============================================================ TESTİMONİAL */
.testimonials { padding: 96px 0; background: var(--cream-dark); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 56px; }
.t-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--r-xl); padding: 28px; transition: box-shadow var(--t), transform var(--t); }
.t-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.t-stars { display: flex; gap: 3px; margin-bottom: 14px; }
.t-stars svg { width: 14px; height: 14px; color: var(--orange); }
.t-quote { font-family: var(--serif); font-size: 16px; font-style: italic; color: var(--ink-mid); line-height: 1.65; margin-bottom: 20px; }
.t-author { display: flex; align-items: center; gap: 12px; }
.t-avatar { width: 38px; height: 38px; border-radius: 50%; background: var(--orange-mid); display: flex; align-items: center; justify-content: center; font-family: var(--serif); font-size: 14px; font-weight: 700; color: var(--brown-soft); flex-shrink: 0; }
.t-name { font-size: 14px; font-weight: 600; color: var(--ink); }
.t-role { font-size: 12px; color: var(--ink-muted); }

/* ============================================================ CTA BÖLÜMÜ */
.cta-section { padding: 96px 0; }
.cta-box { background: var(--brown); border-radius: var(--r-xl); padding: 72px 56px; text-align: center; position: relative; overflow: hidden; }
.cta-box::before { content: ''; position: absolute; top: -60px; right: -60px; width: 300px; height: 300px; border-radius: 50%; background: rgba(196,119,61,0.25); }
.cta-box::after  { content: ''; position: absolute; bottom: -80px; left: -40px; width: 220px; height: 220px; border-radius: 50%; background: rgba(255,255,255,0.04); }
.cta-h2 { font-family: var(--serif); font-size: clamp(28px, 4vw, 44px); font-weight: 700; color: #fff; line-height: 1.2; margin-bottom: 16px; letter-spacing: -0.8px; position: relative; z-index: 1; }
.cta-h2 em { font-style: italic; color: var(--orange-mid); }
.cta-sub { font-size: 16px; color: rgba(255,255,255,0.65); margin-bottom: 36px; position: relative; z-index: 1; }
.cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; }
.btn-cta-white { font-size: 15px; font-weight: 700; color: var(--brown); background: #fff; padding: 14px 30px; border-radius: var(--r-md); border: none; transition: all var(--t); }
.btn-cta-white:hover { background: var(--orange-light); transform: translateY(-2px); }
.btn-cta-ghost { font-size: 15px; font-weight: 600; color: rgba(255,255,255,0.8); background: rgba(255,255,255,0.1); padding: 14px 28px; border-radius: var(--r-md); border: 1px solid rgba(255,255,255,0.2); transition: all var(--t); }
.btn-cta-ghost:hover { background: rgba(255,255,255,0.18); color: #fff; }

/* ============================================================ FOOTER */
.footer { padding: 56px 0 36px; border-top: 1px solid var(--border); }
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand-desc { font-size: 14px; color: var(--ink-muted); line-height: 1.75; margin-top: 14px; max-width: 280px; }
.footer-col-title { font-size: 13px; font-weight: 700; color: var(--ink); letter-spacing: 0.04em; margin-bottom: 16px; }
.footer-link { display: block; font-size: 14px; color: var(--ink-muted); margin-bottom: 10px; transition: color var(--t); }
.footer-link:hover { color: var(--orange); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding-top: 28px; border-top: 1px solid var(--border); }
.footer-copy { font-size: 13px; color: var(--ink-soft); }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: 13px; color: var(--ink-soft); transition: color var(--t); }
.footer-legal a:hover { color: var(--ink); }

/* ============================================================ AUTH SAYFALAR */
.auth-wrap { min-height: 100vh; display: grid; grid-template-columns: 1fr 1fr; }
.auth-left { background: var(--brown); padding: 48px; display: flex; flex-direction: column; justify-content: space-between; position: relative; overflow: hidden; }
.auth-left::before { content: ''; position: absolute; top: -80px; right: -80px; width: 360px; height: 360px; border-radius: 50%; background: rgba(196,119,61,0.2); }
.auth-left-logo { display: flex; align-items: center; gap: 10px; font-family: var(--serif); font-size: 22px; font-weight: 700; color: #fff; position: relative; z-index: 1; }
.auth-left-logo-icon { width: 36px; height: 36px; background: var(--orange); border-radius: 10px; display: flex; align-items: center; justify-content: center; }
.auth-left-logo-icon svg { width: 20px; height: 20px; color: #fff; }
.auth-left-content { position: relative; z-index: 1; }
.auth-left-h { font-family: var(--serif); font-size: 36px; font-weight: 700; color: #fff; line-height: 1.2; margin-bottom: 16px; letter-spacing: -0.6px; }
.auth-left-h em { font-style: italic; color: var(--orange-mid); }
.auth-left-sub { font-size: 16px; color: rgba(255,255,255,0.65); line-height: 1.7; }
.auth-left-quote { background: rgba(255,255,255,0.08); border-radius: var(--r-md); padding: 20px; border-left: 3px solid var(--orange); position: relative; z-index: 1; }
.auth-left-quote-text { font-family: var(--serif); font-size: 15px; font-style: italic; color: rgba(255,255,255,0.85); line-height: 1.65; margin-bottom: 10px; }
.auth-left-quote-author { font-size: 12px; color: rgba(255,255,255,0.5); }

.auth-right { background: var(--cream); padding: 48px; display: flex; align-items: center; justify-content: center; }
.auth-form-wrap { width: 100%; max-width: 400px; }
.auth-form-title { font-family: var(--serif); font-size: 28px; font-weight: 700; color: var(--ink); margin-bottom: 8px; }
.auth-form-sub { font-size: 14px; color: var(--ink-muted); margin-bottom: 36px; }

/* ============================================================ FORM */
.form-group { margin-bottom: 18px; }
.form-label { display: block; font-size: 13px; font-weight: 600; color: var(--ink-mid); margin-bottom: 7px; }
.form-label.req::after { content: ' *'; color: var(--orange); }
.form-control {
  width: 100%; background: var(--white); border: 1.5px solid var(--border-mid); border-radius: var(--r-md);
  color: var(--ink); font-size: 15px; padding: 11px 14px; transition: border-color var(--t), box-shadow var(--t);
  outline: none; -webkit-appearance: none;
}
.form-control::placeholder { color: var(--ink-soft); }
.form-control:focus { border-color: var(--orange); box-shadow: 0 0 0 3px rgba(196,119,61,0.12); }
.form-control.is-invalid { border-color: var(--danger); }
.form-hint  { font-size: 12px; color: var(--ink-soft); margin-top: 5px; }
.form-error { font-size: 12px; color: var(--danger); margin-top: 5px; }
select.form-control { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%238c5f45' d='M6 8L1 3h10z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; padding-right: 36px; }
select.form-control option { background: var(--white); color: var(--ink); }
.form-divider { display: flex; align-items: center; gap: 12px; margin: 20px 0; color: var(--ink-soft); font-size: 12px; }
.form-divider::before, .form-divider::after { content: ''; flex: 1; height: 1px; background: var(--border-mid); }
.form-footer-link { font-size: 14px; text-align: center; color: var(--ink-muted); margin-top: 24px; }
.form-footer-link a { color: var(--orange); font-weight: 600; transition: color var(--t); }
.form-footer-link a:hover { color: var(--orange-hover); }

.btn-form { width: 100%; font-size: 15px; font-weight: 700; color: #fff; background: var(--brown); padding: 13px; border-radius: var(--r-md); border: none; transition: all var(--t); }
.btn-form:hover { background: var(--orange); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(196,119,61,0.3); }
.btn-form:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

/* ============================================================ ALERT */
.alert { display: flex; align-items: flex-start; gap: 10px; padding: 12px 16px; border-radius: var(--r-md); font-size: 14px; margin-bottom: 16px; }
.alert svg { width: 18px; height: 18px; flex-shrink: 0; margin-top: 1px; }
.alert-danger  { background: #fef3f3; color: #c0392b; border: 1px solid #fad3d3; }
.alert-success { background: #f0fdf4; color: #166534; border: 1px solid #bbf7d0; }
.alert-warning { background: #fffbeb; color: #92400e; border: 1px solid #fde68a; }

/* ============================================================ PANEL */
.panel-wrap { min-height: 100vh; display: flex; }
.panel-sidebar { width: 260px; background: var(--white); border-right: 1px solid var(--border); position: fixed; top: 0; bottom: 0; left: 0; overflow-y: auto; display: flex; flex-direction: column; z-index: 100; }
.panel-main { margin-left: 260px; flex: 1; min-height: 100vh; background: var(--cream); }
.panel-topbar { height: 64px; background: var(--white); border-bottom: 1px solid var(--border); display: flex; align-items: center; padding: 0 28px; gap: 16px; position: sticky; top: 0; z-index: 50; }
.panel-content { padding: 32px 28px; }

.sidebar-logo { display: flex; align-items: center; gap: 10px; padding: 24px 20px; border-bottom: 1px solid var(--border); font-family: var(--serif); font-size: 18px; font-weight: 700; color: var(--ink); text-decoration: none; }
.sidebar-logo-icon { width: 32px; height: 32px; background: var(--orange); border-radius: 9px; display: flex; align-items: center; justify-content: center; }
.sidebar-logo-icon svg { width: 16px; height: 16px; color: #fff; }
.sidebar-nav { flex: 1; padding: 16px 12px; }
.sidebar-section-label { font-size: 10px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-soft); padding: 12px 8px 6px; }
.sidebar-link { display: flex; align-items: center; gap: 10px; padding: 10px 12px; border-radius: var(--r-sm); font-size: 14px; font-weight: 500; color: var(--ink-muted); text-decoration: none; transition: all var(--t); margin-bottom: 2px; }
.sidebar-link:hover { background: var(--orange-light); color: var(--ink); }
.sidebar-link.active { background: var(--orange-light); color: var(--brown); }
.sidebar-link svg { width: 18px; height: 18px; flex-shrink: 0; }
.sidebar-footer { padding: 16px; border-top: 1px solid var(--border); }
.sidebar-user { display: flex; align-items: center; gap: 10px; padding: 10px 12px; background: var(--cream); border-radius: var(--r-sm); }
.sidebar-user-avatar { width: 32px; height: 32px; border-radius: 50%; background: var(--orange-mid); display: flex; align-items: center; justify-content: center; font-family: var(--serif); font-weight: 700; font-size: 13px; color: var(--brown-soft); flex-shrink: 0; }
.sidebar-user-name { font-size: 13px; font-weight: 600; color: var(--ink); }
.sidebar-user-plan { font-size: 11px; color: var(--ink-muted); }

/* ============================================================ PANEL KART */
.p-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--r-lg); overflow: hidden; margin-bottom: 20px; }
.p-card-head { padding: 16px 20px; border-bottom: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; }
.p-card-title { font-size: 15px; font-weight: 700; color: var(--ink); }
.p-card-body { padding: 20px; }

/* ============================================================ BADGE */
.badge { display: inline-flex; align-items: center; padding: 3px 10px; border-radius: var(--r-full); font-size: 11px; font-weight: 700; }
.badge-orange  { background: var(--orange-light); color: var(--brown-soft); }
.badge-success { background: #f0fdf4; color: #166534; }
.badge-danger  { background: #fef3f3; color: #c0392b; }
.badge-gray    { background: var(--cream-dark); color: var(--ink-muted); }

/* ============================================================ RESPONSIVE */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { display: none; }
  .steps { grid-template-columns: 1fr; }
  .steps::before { display: none; }
  .features-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .auth-wrap { grid-template-columns: 1fr; }
  .auth-left { display: none; }
  .auth-right { padding: 32px 24px; }
}

@media (max-width: 768px) {
  .nav-links, .nav-actions { display: none; }
  .nav-mobile-btn { display: flex; }
  .c { padding: 0 20px; }
  .section { padding: 64px 0; }
  .cta-box { padding: 48px 28px; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .panel-sidebar { transform: translateX(-100%); transition: transform 0.25s; }
  .panel-sidebar.open { transform: translateX(0); }
  .panel-main { margin-left: 0; }
}

/* ============================================================ ANİMASYONLAR */
@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

.animate-fade-up { animation: fadeUp 0.6s ease both; }
.animate-fade-up-d1 { animation-delay: 0.1s; }
.animate-fade-up-d2 { animation-delay: 0.2s; }
.animate-fade-up-d3 { animation-delay: 0.3s; }

/* Scrollbar */
::-webkit-scrollbar { width: 5px; height: 5px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--border-mid); border-radius: 3px; }

/* Selection */
::selection { background: rgba(196,119,61,0.2); color: var(--ink); }

/* ============================================================
   MOBİL MENÜ — Sabit düzeltme
   ============================================================ */

.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  z-index: 998;
  box-shadow: var(--shadow-md);
}

.mobile-menu.open { display: block; }

.mobile-menu-inner {
  padding: 16px 20px 24px;
}

.mobile-link {
  display: block;
  padding: 12px 8px;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink-muted);
  border-bottom: 1px solid var(--border);
  transition: color var(--t);
}

.mobile-link:hover { color: var(--ink); }
.mobile-link:last-of-type { border-bottom: none; }

.mobile-divider {
  height: 1px;
  background: var(--border);
  margin: 16px 0;
}

/* TOAST */
.toast {
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 9999;
  max-width: 380px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px 18px;
  border-radius: var(--r-md);
  font-size: 14px;
  font-weight: 500;
  box-shadow: var(--shadow-lg);
  animation: slideUp 0.3s ease;
}

.toast svg { width: 18px; height: 18px; flex-shrink: 0; margin-top: 1px; }
.toast-danger  { background: #fff; border: 1.5px solid #fca5a5; color: #b91c1c; }
.toast-success { background: #fff; border: 1.5px solid #86efac; color: #15803d; }

@keyframes slideUp {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* NAV — Logo "Admin" yazısını gizle */
.nav-logo-icon + span { display: none; }

/* ============================================================
   GOOGLE BUTONU
   ============================================================ */
.google-btn {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  width: 100%; padding: 12px 20px;
  background: var(--white); border: 1.5px solid var(--border-mid);
  border-radius: var(--r-md); font-size: 15px; font-weight: 600;
  color: var(--ink); text-decoration: none;
  transition: all var(--t); margin-bottom: 4px;
}
.google-btn:hover { background: #f8f9ff; border-color: #4285F4; box-shadow: 0 2px 8px rgba(66,133,244,0.15); }

/* ============================================================
   SÖZLEŞME KUTUSU
   ============================================================ */
.contract-box {
  background: var(--cream-dark); border: 1px solid var(--border);
  border-radius: var(--r-md); padding: 14px 16px; margin-bottom: 18px;
}
.contract-item {
  display: flex; align-items: flex-start; justify-content: space-between;
  gap: 10px; padding: 10px 0; border-bottom: 1px solid var(--border);
}
.contract-item:last-child { border-bottom: none; padding-bottom: 0; }
.contract-label {
  display: flex; align-items: flex-start; gap: 10px;
  cursor: pointer; font-size: 13px; color: var(--ink-muted); line-height: 1.55; flex: 1;
}
.contract-label input { margin-top: 2px; accent-color: var(--orange); flex-shrink: 0; }
.contract-label a { color: var(--orange); font-weight: 500; }
.contract-preview-btn {
  font-size: 11px; font-weight: 600; color: var(--brown-soft);
  background: var(--white); border: 1px solid var(--border-mid);
  border-radius: var(--r-sm); padding: 4px 10px; cursor: pointer;
  white-space: nowrap; flex-shrink: 0;
  transition: all var(--t);
}
.contract-preview-btn:hover { border-color: var(--orange); color: var(--orange); }

/* ============================================================
   OTP KUTULARI
   ============================================================ */
.otp-wrap {
  display: flex; gap: 10px; justify-content: center; margin-top: 8px;
}
.otp-input {
  width: 50px; height: 58px; text-align: center; font-size: 24px; font-weight: 700;
  color: var(--ink); background: var(--white); border: 2px solid var(--border-mid);
  border-radius: var(--r-md); outline: none;
  transition: border-color var(--t), box-shadow var(--t);
}
.otp-input:focus { border-color: var(--orange); box-shadow: 0 0 0 3px rgba(196,119,61,0.12); }

/* ============================================================
   ONBOARDING
   ============================================================ */
.ob-wrap { min-height: 100vh; display: flex; flex-direction: column; background: var(--cream); }
.ob-progress-wrap {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 40px; background: var(--white);
  border-bottom: 1px solid var(--border); flex-shrink: 0;
}
.ob-steps { display: flex; align-items: center; }
.ob-step { display: flex; align-items: center; }
.ob-step-dot {
  width: 30px; height: 30px; border-radius: 50%; border: 2px solid var(--border-mid);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700; color: var(--ink-soft);
  background: var(--white); transition: all 0.3s; flex-shrink: 0;
}
.ob-step.active .ob-step-dot { border-color: var(--orange); color: var(--orange); background: var(--orange-light); }
.ob-step.done   .ob-step-dot { border-color: var(--success); color: var(--white); background: var(--success); }
.ob-step-line { width: 40px; height: 2px; background: var(--border-mid); margin: 0 4px; }
.ob-step-line.done { background: var(--success); }

.ob-content { flex: 1; display: flex; align-items: center; justify-content: center; padding: 48px 24px; }
.ob-icon-big { font-size: 64px; margin-bottom: 20px; }
.ob-h1 { font-family: var(--serif); font-size: clamp(28px,4vw,44px); font-weight: 700; color: var(--ink); line-height: 1.15; letter-spacing: -0.8px; margin-bottom: 14px; }
.ob-h1 em { font-style: italic; color: var(--orange); }
.ob-sub { font-size: 16px; color: var(--ink-muted); line-height: 1.7; margin-bottom: 32px; }
.ob-features { display: flex; flex-direction: column; gap: 10px; margin-bottom: 32px; text-align: left; }
.ob-feature { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--ink-mid); }
.ob-feature svg { width: 16px; height: 16px; color: var(--success); flex-shrink: 0; }
.ob-actions { display: flex; gap: 12px; justify-content: space-between; margin-top: 32px; }

/* Seçim grid */
.choice-grid { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 8px; }
.choice-card { display: inline-flex; align-items: center; gap: 6px; padding: 8px 16px; background: var(--white); border: 2px solid var(--border-mid); border-radius: var(--r-full); font-size: 14px; font-weight: 500; color: var(--ink-muted); cursor: pointer; transition: all var(--t); }
.choice-card input { display: none; }
.choice-card:has(input:checked) { border-color: var(--orange); background: var(--orange-light); color: var(--brown); }

/* Kategori grid */
.category-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; margin-bottom: 8px; }
.category-card { cursor: pointer; }
.category-card input { display: none; }
.category-card-inner { background: var(--white); border: 2px solid var(--border-mid); border-radius: var(--r-lg); padding: 20px 16px; text-align: center; transition: all var(--t); }
.category-card:hover .category-card-inner { border-color: var(--orange-border); }
.category-card:has(input:checked) .category-card-inner { border-color: var(--orange); background: var(--orange-light); }
.category-icon { font-size: 28px; margin-bottom: 8px; }
.category-name { font-size: 13px; font-weight: 600; color: var(--ink); }

/* Yaşam Çarkı */
.life-wheel-list { display: flex; flex-direction: column; gap: 16px; margin-bottom: 8px; }
.life-area-row { display: flex; align-items: center; gap: 16px; background: var(--white); border: 1px solid var(--border); border-radius: var(--r-md); padding: 14px 18px; }
.life-area-info { display: flex; align-items: center; gap: 10px; min-width: 160px; }
.life-area-icon { font-size: 22px; }
.life-area-name { font-size: 14px; font-weight: 600; color: var(--ink); }
.life-area-slider-wrap { display: flex; align-items: center; gap: 12px; flex: 1; }
.life-slider { flex: 1; height: 4px; -webkit-appearance: none; appearance: none; background: var(--border-mid); border-radius: 2px; outline: none; cursor: pointer; }
.life-slider::-webkit-slider-thumb { -webkit-appearance: none; width: 20px; height: 20px; border-radius: 50%; background: var(--orange); border: 2px solid var(--white); box-shadow: var(--shadow-sm); cursor: pointer; }
.life-score { font-size: 18px; font-weight: 700; color: var(--orange); min-width: 28px; text-align: right; }

@media (max-width: 640px) {
  .category-grid { grid-template-columns: repeat(2,1fr); }
  .ob-progress-wrap { padding: 16px 20px; }
  .ob-step-line { width: 20px; }
  .otp-input { width: 42px; height: 50px; font-size: 20px; }
  .life-area-row { flex-direction: column; align-items: flex-start; }
  .life-area-slider-wrap { width: 100%; }
}

/* ============================================================
   PANEL LAYOUT EK STILLER
   ============================================================ */
@media (max-width: 768px) {
  .panel-content { padding: 20px 16px; }
  .panel-topbar  { padding: 0 16px; }
}

.panel-sidebar { transition: transform 0.25s ease; }
</CSS

echo "CSS eklendi"