*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
* { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif; }

:root {
  --primary:      #0f2d52;
  --accent:       #f97316;
  --accent-hover: #ea6c0a;
  --accent-light: #fff7ed;
  --bg:           #fdf8f3;
  --white:        #ffffff;
  --text:         #1a1a2e;
  --muted:        #64748b;
  --border:       #e8edf2;
  --shadow:       0 4px 24px rgba(15,45,82,0.08);
}

body { background: var(--bg); color: var(--text); }

/* ── UTILITY ── */
.hidden { display: none !important; }
.fade-in { animation: fadeIn 0.35s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
@keyframes spin { to { transform: rotate(360deg); } }
.animate-spin { animation: spin 1s linear infinite; display: block; }
.opacity-25 { opacity: 0.25; }
.opacity-75 { opacity: 0.75; }

/* ── NAVBAR ── */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky; top: 0; z-index: 100;
  box-shadow: 0 1px 8px rgba(0,0,0,0.06);
}
.site-header .inner {
  max-width: 1200px; margin: 0 auto;
  padding: 0 32px;
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
}
.site-logo {
  font-size: 1.3rem; font-weight: 900; color: var(--text);
  text-decoration: none; letter-spacing: -0.5px;
}
.site-logo span { color: var(--accent); }
.logo-dot { display: inline-block; width: 8px; height: 8px; background: var(--accent); border-radius: 50%; margin-left: 2px; vertical-align: middle; }
.logo-sub { display: block; font-size: 0.68rem; font-weight: 400; color: var(--muted); margin-top: -2px; }
.site-nav { display: flex; align-items: center; gap: 8px; }
.site-nav a {
  color: var(--text); font-size: 0.875rem; font-weight: 500;
  text-decoration: none; padding: 6px 14px; border-radius: 8px;
  transition: all 0.15s;
}
.site-nav a:hover { background: #f1f5f9; }
.site-nav a.active { color: var(--accent); font-weight: 600; }
.nav-cta {
  background: var(--accent) !important;
  color: var(--white) !important;
  font-weight: 700 !important;
  padding: 9px 20px !important;
  border-radius: 10px !important;
  display: flex; align-items: center; gap: 6px;
  box-shadow: 0 4px 14px rgba(249,115,22,0.3);
  transition: all 0.2s !important;
}
.nav-cta:hover {
  background: var(--accent-hover) !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(249,115,22,0.4) !important;
}

/* ── HERO ── */
.hero-section {
  background: linear-gradient(135deg, #fdf8f3 0%, #fff3e8 50%, #fdf8f3 100%);
  min-height: calc(100vh - 64px);
  display: flex; align-items: center;
  padding: 60px 32px;
  position: relative; overflow: hidden;
}
.hero-section::before {
  content: '';
  position: absolute; top: -100px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(249,115,22,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  max-width: 1200px; margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
}
.hero-left {
  min-width: 0;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(249,115,22,0.1); color: var(--accent);
  font-size: 0.78rem; font-weight: 700;
  padding: 6px 14px; border-radius: 999px; margin-bottom: 24px;
}
.hero-badge svg { width: 14px; height: 14px; }
.hero-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900; line-height: 1.15;
  color: var(--text); margin-bottom: 16px;
}
.hero-title .accent { color: var(--accent); }
.hero-desc {
  font-size: 0.95rem; color: var(--muted);
  line-height: 1.7; margin-bottom: 28px; max-width: 440px;
}
.hero-checks { display: flex; flex-direction: column; gap: 10px; margin-bottom: 32px; }
.hero-check { display: flex; align-items: center; gap: 10px; font-size: 0.875rem; color: var(--text); font-weight: 500; }
.check-icon {
  width: 20px; height: 20px; flex-shrink: 0;
  background: #dcfce7; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.check-icon svg { width: 11px; height: 11px; color: #16a34a; }
.hero-actions { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.btn-hero {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--accent); color: var(--white);
  font-size: 1rem; font-weight: 700;
  padding: 14px 28px; border-radius: 12px;
  border: none; cursor: pointer; text-decoration: none;
  box-shadow: 0 6px 20px rgba(249,115,22,0.35);
  transition: all 0.2s;
}
.btn-hero:hover { background: var(--accent-hover); transform: translateY(-2px); box-shadow: 0 10px 28px rgba(249,115,22,0.45); }
.hero-trust { display: flex; align-items: center; gap: 6px; font-size: 0.78rem; color: var(--muted); }
.hero-trust svg { width: 14px; height: 14px; color: #16a34a; }

/* ── WIZARD CARD ── */
.wizard-card {
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(15,45,82,0.12);
  overflow: hidden;
}
.wizard-card-header {
  padding: 20px 24px 16px;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(135deg, #fafbff, #fff);
}
.wizard-card-label {
  font-size: 0.68rem; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--accent); margin-bottom: 3px;
}
.wizard-card-title { font-size: 1rem; font-weight: 800; color: var(--primary); margin-bottom: 12px; }
.progress-bar-bg { background: #e8edf2; border-radius: 999px; height: 4px; margin-bottom: 14px; }
.progress-bar-fill {
  background: linear-gradient(90deg, var(--accent), #fb923c);
  height: 4px; border-radius: 999px; transition: width 0.5s ease;
}
.step-dots {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
}
.step-dots::before {
  content: '';
  position: absolute;
  top: 12px;
  left: 12px;
  right: 12px;
  height: 2px;
  background: #e8edf2;
  z-index: 0;
}
.step-dot-wrap {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  position: relative; z-index: 1;
}
.step-dot {
  width: 24px; height: 24px; min-width: 24px;
  background: #e8edf2; color: #94a3b8;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 10px; flex-shrink: 0;
  transition: all 0.3s;
  border: 2px solid #e8edf2;
}
.step-dot.active { background: var(--accent); color: #fff; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(249,115,22,0.18); }
.step-dot.done { background: #16a34a; color: #fff; border-color: #16a34a; }
.step-label-text { font-size: 0.65rem; color: #94a3b8; text-align: center; white-space: nowrap; line-height: 1; }
.wizard-body { padding: 20px 24px 24px; }
.wizard-step { display: block; }

/* ── FORM ── */
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 0.8rem; font-weight: 600; color: var(--text); margin-bottom: 6px; }
.form-select, .form-input-field {
  width: 100%;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 11px 14px;
  font-size: 0.875rem;
  color: var(--text);
  background: var(--white);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none; -webkit-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='%2364748b' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
  cursor: pointer;
  font-family: inherit;
}
.form-input-field { background-image: none; padding-right: 14px; }
.form-select:focus, .form-input-field:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(249,115,22,0.12); }

/* Seçim grid */
.sel-grid { display: grid; gap: 8px; }
.sel-grid-2 { grid-template-columns: 1fr 1fr; }
.sel-grid-3 { grid-template-columns: 1fr 1fr 1fr; }
.sel-grid-4 { grid-template-columns: 1fr 1fr 1fr 1fr; }

.sel-btn {
  border: 1.5px solid var(--border); border-radius: 8px; background: var(--white);
  font-size: 0.78rem; font-weight: 500; color: var(--text);
  padding: 8px 4px; cursor: pointer; transition: all 0.15s;
  text-align: center; line-height: 1.3; font-family: inherit;
}
.sel-btn:hover, .sel-btn.selected { border-color: var(--accent); background: var(--accent-light); color: var(--accent); font-weight: 700; }

.opt-btn {
  border: 1.5px solid var(--border); border-radius: 10px; background: var(--white);
  display: flex; flex-direction: column; align-items: center;
  gap: 4px; padding: 12px 6px; cursor: pointer; transition: all 0.15s;
  font-family: inherit;
}
.opt-btn:hover, .opt-btn.selected { border-color: var(--accent); background: var(--accent-light); }
.opt-btn .opt-icon { font-size: 1.2rem; }
.opt-btn .opt-label { font-size: 0.72rem; font-weight: 600; color: var(--text); }
.opt-btn.selected .opt-label { color: var(--accent); }

.km-chip {
  border: 1.5px solid var(--border); border-radius: 999px;
  font-size: 0.72rem; padding: 4px 10px; cursor: pointer;
  background: var(--white); color: var(--muted); transition: all 0.15s;
  white-space: nowrap; font-family: inherit;
}
.km-chip:hover, .km-chip.selected { border-color: var(--accent); background: var(--accent-light); color: var(--accent); font-weight: 600; }

/* Butonlar */
.btn-next {
  width: 100%; background: var(--accent); color: var(--white);
  font-weight: 700; font-size: 0.9rem; letter-spacing: 0.3px;
  padding: 13px; border-radius: 10px; border: none; cursor: pointer;
  transition: all 0.2s; text-transform: uppercase; font-family: inherit;
}
.btn-next:not(:disabled):hover { background: var(--accent-hover); box-shadow: 0 6px 20px rgba(249,115,22,0.35); }
.btn-next:disabled { opacity: 0.4; cursor: not-allowed; }

.btn-back {
  flex: 1; border: 1.5px solid var(--border); background: var(--white);
  color: var(--muted); font-weight: 600; font-size: 0.875rem;
  padding: 12px; border-radius: 10px; cursor: pointer; transition: all 0.15s; font-family: inherit;
}
.btn-back:hover { border-color: var(--primary); color: var(--primary); }

.btn-accent {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--accent); color: var(--white);
  font-size: 0.9rem; font-weight: 700;
  padding: 12px 24px; border-radius: 10px;
  text-decoration: none; border: none; cursor: pointer;
  transition: all 0.2s; box-shadow: 0 4px 16px rgba(249,115,22,0.3); font-family: inherit;
}
.btn-accent:hover { background: var(--accent-hover); transform: translateY(-1px); box-shadow: 0 6px 22px rgba(249,115,22,0.4); }

/* Sonuç kartı */
.result-card { background: linear-gradient(135deg, #f0f7ff, #e8f0fe); border: 2px solid #2563eb; border-radius: 14px; }

/* ── SECTIONS ── */
.section { padding: 80px 32px; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-label {
  display: inline-block; font-size: 0.7rem; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase; color: var(--accent); margin-bottom: 10px;
}
.section-title { font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 800; color: var(--primary); line-height: 1.2; margin-bottom: 12px; }
.section-sub { color: var(--muted); font-size: 0.95rem; line-height: 1.7; }

.steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; margin-top: 40px; }
.step-card {
  background: var(--white); border-radius: 16px;
  padding: 28px 24px; border: 1px solid var(--border);
  box-shadow: var(--shadow); position: relative;
}
.step-card::before {
  content: attr(data-step);
  position: absolute; top: -12px; left: 20px;
  background: var(--accent); color: #fff;
  font-size: 0.65rem; font-weight: 800; letter-spacing: 1px;
  padding: 3px 10px; border-radius: 999px; text-transform: uppercase;
}
.step-icon { font-size: 1.8rem; margin-bottom: 12px; }
.step-card h3 { font-size: 0.95rem; font-weight: 700; color: var(--primary); margin-bottom: 6px; }
.step-card p { font-size: 0.85rem; color: var(--muted); line-height: 1.6; }

.adv-section { background: var(--primary); }
.adv-section .section-title { color: #fff; }
.adv-section .section-sub { color: rgba(255,255,255,0.65); }
.adv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; margin-top: 40px; align-items: start; }
.adv-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; }
.adv-tag {
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.9); font-size: 0.78rem; font-weight: 600;
  padding: 5px 12px; border-radius: 999px;
}
.adv-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.adv-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.875rem; color: rgba(255,255,255,0.85); line-height: 1.5; }
.adv-list li::before {
  content: '✓'; width: 20px; height: 20px; flex-shrink: 0;
  background: var(--accent); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.68rem; font-weight: 700; color: #fff; margin-top: 1px;
}
.review-card { background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12); border-radius: 12px; padding: 20px; margin-bottom: 16px; }
.review-stars { color: #fbbf24; font-size: 0.85rem; margin-bottom: 8px; }
.review-text { font-size: 0.85rem; color: rgba(255,255,255,0.8); line-height: 1.6; margin-bottom: 10px; font-style: italic; }
.review-author { font-size: 0.78rem; font-weight: 600; color: rgba(255,255,255,0.5); }

.faq-list { margin-top: 32px; display: flex; flex-direction: column; gap: 10px; }
.faq-item { background: var(--white); border: 1px solid var(--border); border-radius: 12px; overflow: hidden; }
.faq-q {
  width: 100%; text-align: left; padding: 16px 20px;
  font-size: 0.9rem; font-weight: 600; color: var(--primary);
  background: none; border: none; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  transition: background 0.15s; font-family: inherit;
}
.faq-q:hover { background: #f8fafc; }
.faq-icon { font-size: 1.1rem; color: var(--accent); transition: transform 0.3s; flex-shrink: 0; }
.faq-q.open .faq-icon { transform: rotate(45deg); }
.faq-a { display: none; padding: 0 20px 16px; font-size: 0.85rem; color: var(--muted); line-height: 1.7; border-top: 1px solid var(--border); }
.faq-a.open { display: block; }

.contact-card {
  background: var(--white); border-radius: 16px;
  box-shadow: var(--shadow); padding: 40px;
  max-width: 700px; margin: 32px auto 0;
  display: grid; grid-template-columns: 1fr 1fr; gap: 32px;
}
.contact-label { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--muted); margin-bottom: 4px; }
.contact-value { font-size: 1rem; font-weight: 700; color: var(--primary); text-decoration: none; }
.contact-value:hover { color: var(--accent); }

/* ── FOOTER ── */
.site-footer { background: var(--primary); color: rgba(255,255,255,0.6); padding: 48px 32px 24px; }
.footer-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px;
  padding-bottom: 32px; border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand { font-size: 1.2rem; font-weight: 900; color: #fff; margin-bottom: 8px; }
.footer-brand span { color: var(--accent); }
.footer-desc { font-size: 0.85rem; line-height: 1.6; }
.footer-col h4 { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: rgba(255,255,255,0.9); margin-bottom: 14px; }
.footer-col a { display: block; font-size: 0.85rem; color: rgba(255,255,255,0.5); text-decoration: none; margin-bottom: 8px; transition: color 0.2s; }
.footer-col a:hover { color: #fff; }
.footer-bottom {
  max-width: 1200px; margin: 20px auto 0;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px;
  font-size: 0.78rem;
}

/* ── İÇ SAYFALAR ── */
.page-hero { background: linear-gradient(135deg, var(--primary), #1a4a80); color: #fff; padding: 56px 32px; text-align: center; }
.page-hero h1 { font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 800; margin-bottom: 8px; }
.page-hero p { color: rgba(255,255,255,0.7); font-size: 0.95rem; }
.page-content { max-width: 780px; margin: 0 auto; padding: 48px 20px 72px; }
.page-content h2 { font-size: 1.05rem; font-weight: 700; color: var(--primary); margin: 28px 0 10px; padding-bottom: 8px; border-bottom: 2px solid var(--accent); display: inline-block; }
.page-content p { font-size: 0.9rem; color: var(--muted); line-height: 1.8; margin-bottom: 12px; }
.page-content ul { padding-left: 20px; margin-bottom: 12px; }
.page-content ul li { font-size: 0.9rem; color: var(--muted); line-height: 1.8; margin-bottom: 4px; }
.about-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 16px; margin: 28px 0; }
.about-card { background: var(--white); border: 1px solid var(--border); border-radius: 12px; padding: 20px; text-align: center; box-shadow: var(--shadow); }
.about-card .icon { font-size: 1.8rem; margin-bottom: 8px; }
.about-card h3 { font-size: 0.9rem; font-weight: 700; color: var(--primary); margin-bottom: 4px; }
.about-card p { font-size: 0.8rem; color: var(--muted); line-height: 1.5; }

/* ── MODAL ── */
.req-input {
  width: 100%; border: 1.5px solid var(--border); border-radius: 8px;
  padding: 9px 12px; font-size: 0.875rem; outline: none;
  transition: border-color 0.2s, box-shadow 0.2s; font-family: inherit;
}
.req-input:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(249,115,22,0.12); }

/* ── ADMIN ── */
.site-header.admin-bar { background: var(--primary); border-bottom: none; }
.site-header.admin-bar .site-logo { color: #fff; }
.site-header.admin-bar .site-nav a { color: rgba(255,255,255,0.7); }
.site-header.admin-bar .site-nav a:hover { background: rgba(255,255,255,0.1); color: #fff; }
.site-header.admin-bar .site-nav a.active { background: var(--accent); color: #fff; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-section { padding: 40px 20px; min-height: auto; }
  .hero-left { order: 2; }
  #wizard { order: 1; }
  .adv-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .adv-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .site-header .inner { padding: 0 16px; }
  .section { padding: 56px 16px; }
  .wizard-body { padding: 16px 14px 18px; }
  .wizard-card-header { padding: 14px 14px 12px; }
  .hide-mobile { display: none !important; }
  .footer-inner { grid-template-columns: 1fr; }
  .contact-card { grid-template-columns: 1fr; padding: 24px; }
  .sel-grid-4 { grid-template-columns: 1fr 1fr; }
}
