/* aracdegerkaybi.com.tr — site stilleri */
:root {
  --navy: #0d2340;
  --navy-2: #14335c;
  --navy-3: #1d4275;
  --gold: #e8b12c;
  --gold-2: #d09a15;
  --ink: #1c2733;
  --mut: #5b6b7c;
  --line: #e3e9f0;
  --bg: #f5f8fb;
  --white: #fff;
  --ok: #1d8a4e;
  --err: #c53030;
  --rad: 14px;
  --shadow: 0 8px 30px rgba(13, 35, 64, .10);
  --font: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--font); color: var(--ink); background: var(--white); line-height: 1.65; font-size: 16px; }
img { max-width: 100%; height: auto; }
a { color: var(--navy-3); }
.container { max-width: 1180px; margin: 0 auto; padding: 0 20px; }
.container.narrow { max-width: 820px; }
.center { text-align: center; }
.hide-m { }

/* ---------- butonlar ---------- */
.btn { display: inline-block; padding: 12px 24px; border-radius: 10px; font-weight: 700; font-size: 15px;
  text-decoration: none; border: 2px solid transparent; cursor: pointer; font-family: var(--font);
  transition: transform .15s, box-shadow .15s, background .15s; }
.btn:hover { transform: translateY(-2px); box-shadow: 0 6px 18px rgba(13,35,64,.18); }
.btn-gold { background: var(--gold); color: var(--navy); }
.btn-gold:hover { background: #f0be45; }
.btn-navy { background: var(--navy); color: #fff; }
.btn-navy:hover { background: var(--navy-2); }
.btn-ghost { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-lg { padding: 15px 30px; font-size: 16px; }
.btn-block { display: block; text-align: center; }
button.btn { -webkit-appearance: none; }
.linklike { background: none; border: 0; color: var(--navy-3); text-decoration: underline; cursor: pointer; font: inherit; }

/* ---------- topbar & header ---------- */
.topbar { background: var(--navy); color: #cdd9e8; font-size: 13px; }
.topbar-in { display: flex; justify-content: space-between; align-items: center; gap: 12px; padding-top: 7px; padding-bottom: 7px; }
.topbar a { color: var(--gold); text-decoration: none; margin-left: 16px; font-weight: 600; }
.site-header { background: #fff; border-bottom: 1px solid var(--line); position: sticky; top: 0; z-index: 60; }
.header-in { display: flex; align-items: center; gap: 28px; padding-top: 12px; padding-bottom: 12px; }
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo-text { font-weight: 800; color: var(--navy); font-size: 18px; line-height: 1.15; display: flex; flex-direction: column; }
.logo-text small { font-weight: 600; color: var(--mut); font-size: 11px; }
.main-nav { margin-left: auto; }
.main-nav ul { list-style: none; display: flex; gap: 4px; }
.main-nav > ul > li { position: relative; }
.main-nav a { display: block; padding: 9px 13px; text-decoration: none; color: var(--ink); font-weight: 600; font-size: 15px; border-radius: 8px; }
.main-nav a:hover { background: var(--bg); color: var(--navy); }
.submenu { position: absolute; top: 100%; left: 0; background: #fff; min-width: 220px; border: 1px solid var(--line);
  border-radius: 10px; box-shadow: var(--shadow); padding: 6px; display: none; z-index: 70; }
.has-sub:hover .submenu, .has-sub:focus-within .submenu { display: block; }
.header-cta { white-space: nowrap; }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 3px; background: var(--navy); margin: 5px 0; border-radius: 2px; transition: .2s; }

/* ---------- hero ---------- */
.hero { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 55%, var(--navy-3) 100%); color: #fff; overflow: hidden; }
.hero-in { display: grid; grid-template-columns: 1.15fr .85fr; gap: 48px; align-items: center; padding: 72px 20px; }
.hero-badge { display: inline-block; background: rgba(232,177,44,.15); color: var(--gold); border: 1px solid rgba(232,177,44,.4);
  padding: 6px 14px; border-radius: 999px; font-size: 13px; font-weight: 700; margin-bottom: 18px; }
.hero h1 { font-size: clamp(30px, 4.2vw, 46px); line-height: 1.16; font-weight: 800; margin-bottom: 18px; }
.hero h1 em { color: var(--gold); font-style: normal; }
.hero-text > p { color: #c3d2e3; font-size: 17px; margin-bottom: 26px; max-width: 560px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-actions.center { justify-content: center; }
.hero .btn-ghost { color: #fff; border-color: rgba(255,255,255,.5); }
.hero-trust { list-style: none; display: flex; gap: 26px; margin-top: 30px; flex-wrap: wrap; }
.hero-trust li { font-size: 13.5px; color: #c3d2e3; padding-left: 22px; position: relative; }
.hero-trust li::before { content: '✓'; position: absolute; left: 0; color: var(--gold); font-weight: 800; }
.hero-card { background: #fff; color: var(--ink); border-radius: var(--rad); padding: 26px; box-shadow: 0 24px 60px rgba(0,0,0,.35); }
.hero-card-head { font-weight: 800; color: var(--navy); margin-bottom: 14px; font-size: 15px; }
.hero-card-row { display: flex; justify-content: space-between; gap: 12px; padding: 9px 0; border-bottom: 1px dashed var(--line); font-size: 14px; }
.hero-card-row span { color: var(--mut); white-space: nowrap; }
.hero-card-row strong { text-align: right; }
.hero-card-result { background: var(--bg); border-radius: 10px; padding: 16px; margin: 16px 0; text-align: center; }
.hero-card-result span { display: block; font-size: 13px; color: var(--mut); margin-bottom: 4px; }
.hero-card-result strong { font-size: 26px; color: var(--navy); font-weight: 800; }

/* ---------- bölümler ---------- */
.section { padding: 68px 0; }
.section.alt { background: var(--bg); }
.section-title { font-size: clamp(24px, 3vw, 34px); font-weight: 800; color: var(--navy); text-align: center; margin-bottom: 10px; }
.section-title.left { text-align: left; }
.section-sub { text-align: center; color: var(--mut); margin-bottom: 40px; max-width: 640px; margin-left: auto; margin-right: auto; }
.steps { background: var(--bg); }
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.step-card { background: #fff; border: 1px solid var(--line); border-radius: var(--rad); padding: 26px 22px; position: relative; transition: transform .2s, box-shadow .2s; }
.step-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.step-no { display: inline-flex; width: 40px; height: 40px; align-items: center; justify-content: center;
  background: var(--navy); color: var(--gold); font-weight: 800; border-radius: 10px; font-size: 18px; margin-bottom: 14px; }
.step-card h3 { color: var(--navy); margin-bottom: 8px; font-size: 17px; }
.step-card p { font-size: 14px; color: var(--mut); }

.why-in { display: grid; grid-template-columns: 1.1fr .9fr; gap: 56px; align-items: center; }
.check-list { list-style: none; margin: 22px 0 28px; }
.check-list li { padding: 8px 0 8px 32px; position: relative; color: var(--ink); }
.check-list li::before { content: '✓'; position: absolute; left: 0; top: 8px; width: 22px; height: 22px; background: #e7f4ec;
  color: var(--ok); font-weight: 800; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 13px; }
.check-list.small li { padding: 5px 0 5px 30px; font-size: 14px; }
.stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.stat { background: var(--navy); color: #fff; border-radius: var(--rad); padding: 30px 24px; text-align: center; }
.stat strong { display: block; font-size: 32px; font-weight: 800; color: var(--gold); margin-bottom: 4px; }
.stat span { font-size: 13.5px; color: #c3d2e3; }

/* ---------- faq ---------- */
.faq-list { max-width: 860px; margin: 0 auto; display: grid; gap: 12px; }
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: 12px; overflow: hidden; }
.faq-item summary { cursor: pointer; padding: 18px 48px 18px 22px; font-weight: 700; color: var(--navy); list-style: none; position: relative; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; position: absolute; right: 20px; top: 50%; transform: translateY(-50%);
  font-size: 22px; color: var(--gold-2); font-weight: 700; transition: transform .2s; }
.faq-item[open] summary::after { content: '–'; }
.faq-item[open] { border-color: var(--gold); box-shadow: 0 4px 16px rgba(232,177,44,.12); }
.faq-answer { padding: 0 22px 20px; color: var(--mut); font-size: 15px; }
.faq-home { background: var(--bg); }

/* ---------- blog ---------- */
.post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.post-card { background: #fff; border: 1px solid var(--line); border-radius: var(--rad); overflow: hidden;
  text-decoration: none; color: var(--ink); display: flex; flex-direction: column; transition: transform .2s, box-shadow .2s; }
.post-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.post-card img, .post-cover-ph { width: 100%; height: 170px; object-fit: cover; }
.post-cover-ph { background: linear-gradient(135deg, var(--navy-2), var(--navy-3)); display: flex; align-items: center; justify-content: center; font-size: 44px; }
.post-card-body { padding: 20px; }
.post-card time { font-size: 12.5px; color: var(--mut); font-weight: 600; text-transform: uppercase; letter-spacing: .4px; }
.post-card h3 { color: var(--navy); font-size: 17px; margin: 8px 0; line-height: 1.4; }
.post-card p { font-size: 14px; color: var(--mut); }
.pager { display: flex; gap: 8px; justify-content: center; margin-top: 36px; }
.pager a { padding: 8px 14px; border: 1px solid var(--line); border-radius: 8px; text-decoration: none; font-weight: 700; }
.pager a.on { background: var(--navy); color: #fff; border-color: var(--navy); }

/* ---------- iç sayfalar ---------- */
.page-head { background: linear-gradient(135deg, var(--navy), var(--navy-3)); color: #fff; padding: 52px 0; }
.page-head h1 { font-size: clamp(26px, 3.4vw, 38px); font-weight: 800; }
.page-head p { color: #c3d2e3; margin-top: 8px; max-width: 640px; }
.crumbs { font-size: 13.5px; color: var(--mut); margin-bottom: 16px; }
.crumbs.light { color: #9fb4cb; margin-bottom: 8px; }
.crumbs a { color: inherit; }
.rich h2 { color: var(--navy); margin: 28px 0 12px; font-size: 24px; }
.rich h3 { color: var(--navy); margin: 22px 0 10px; font-size: 19px; }
.rich p { margin-bottom: 14px; }
.rich ul, .rich ol { margin: 0 0 16px 22px; }
.rich li { margin-bottom: 6px; }
.rich img { border-radius: 12px; margin: 12px 0; }
.rich a { font-weight: 600; }
.article h1 { color: var(--navy); font-size: clamp(26px, 3.2vw, 36px); line-height: 1.25; margin-bottom: 10px; }
.article-meta { color: var(--mut); font-size: 14px; margin-bottom: 22px; }
.article-cover { border-radius: var(--rad); margin-bottom: 26px; width: 100%; }
.article-cta { margin-top: 40px; background: var(--bg); border: 1px solid var(--line); border-radius: var(--rad);
  padding: 26px; display: flex; align-items: center; justify-content: space-between; gap: 18px; flex-wrap: wrap; }
.article-cta strong { color: var(--navy); font-size: 17px; }
.empty-note { text-align: center; color: var(--mut); padding: 40px 0; }

/* ---------- formlar ---------- */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; position: relative; }
.form-grid label { display: flex; flex-direction: column; gap: 6px; font-weight: 700; font-size: 13.5px; color: var(--navy); }
.form-grid .span-2 { grid-column: span 2; }
.form-grid input, .form-grid select, .form-grid textarea {
  padding: 12px 14px; border: 1.5px solid var(--line); border-radius: 10px; font-family: var(--font);
  font-size: 15px; background: #fff; color: var(--ink); width: 100%; }
.form-grid input:focus, .form-grid select:focus, .form-grid textarea:focus { outline: none; border-color: var(--navy-3); box-shadow: 0 0 0 3px rgba(29,66,117,.12); }
.form-grid small { font-weight: 500; color: var(--mut); font-size: 12.5px; }
.alert { padding: 16px 18px; border-radius: 10px; margin-bottom: 18px; font-size: 15px; }
.alert.success { background: #e7f4ec; color: var(--ok); border: 1px solid #bfe3cd; }
.alert.error { background: #fdeaea; color: var(--err); border: 1px solid #f5c6c6; }
.contact-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 40px; align-items: start; }
.contact-info { background: var(--navy); color: #fff; border-radius: var(--rad); padding: 30px; }
.contact-info h2 { font-size: 20px; margin-bottom: 18px; color: var(--gold); }
.contact-info p { margin-bottom: 16px; font-size: 15px; color: #c3d2e3; }
.contact-info strong { color: #fff; }
.contact-info a { color: var(--gold); }
.contact-form-wrap h2 { color: var(--navy); margin-bottom: 16px; }

/* ---------- hesaplama sihirbazı ---------- */
.calc-section { background: var(--bg); }
.calc-wrap { display: grid; grid-template-columns: 1fr 300px; gap: 28px; align-items: start; }
.calc-steps { grid-column: 1 / -1; list-style: none; display: flex; gap: 6px; margin-bottom: 4px; flex-wrap: wrap; }
.calc-steps li { display: flex; align-items: center; gap: 8px; padding: 8px 14px; border-radius: 999px;
  background: #fff; border: 1px solid var(--line); font-size: 13px; font-weight: 700; color: var(--mut); }
.calc-steps li span { width: 22px; height: 22px; border-radius: 50%; background: var(--line); color: var(--mut);
  display: inline-flex; align-items: center; justify-content: center; font-size: 12px; }
.calc-steps li.active { border-color: var(--navy); color: var(--navy); }
.calc-steps li.active span { background: var(--navy); color: var(--gold); }
.calc-steps li.done span { background: var(--ok); color: #fff; }
.calc-card { background: #fff; border: 1px solid var(--line); border-radius: var(--rad); padding: 30px; position: relative; box-shadow: var(--shadow); }
.calc-card h2 { color: var(--navy); margin-bottom: 16px; font-size: 22px; }
.step-hint { color: var(--mut); font-size: 14.5px; margin-bottom: 18px; }
.calc-nav { display: flex; justify-content: space-between; align-items: center; margin-top: 24px; gap: 12px; }
.calc-error { background: #fdeaea; color: var(--err); border: 1px solid #f5c6c6; padding: 12px 16px; border-radius: 10px; margin-bottom: 16px; font-size: 14.5px; }
.parts-list { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; max-height: 430px; overflow-y: auto; padding-right: 6px; }
.part-row { border: 1.5px solid var(--line); border-radius: 10px; padding: 10px 14px; background: #fff; }
.part-row.on { border-color: var(--navy-3); background: #f4f8fd; }
.part-check { display: flex; align-items: center; gap: 10px; font-weight: 600; font-size: 14px; cursor: pointer; }
.part-check input { width: 17px; height: 17px; accent-color: var(--navy); }
.part-process { display: flex; gap: 12px; margin-top: 8px; padding-top: 8px; border-top: 1px dashed var(--line); flex-wrap: wrap; }
.part-process label { font-size: 13px; display: flex; align-items: center; gap: 5px; cursor: pointer; color: var(--mut); font-weight: 600; }
.part-process input { accent-color: var(--gold-2); }
.kvkk-row { display: flex; gap: 10px; align-items: flex-start; font-size: 13.5px; color: var(--mut); margin: 6px 0 4px; }
.kvkk-row input { margin-top: 3px; width: 17px; height: 17px; accent-color: var(--navy); flex: none; }
.otp-box { text-align: center; margin: 22px 0; }
.otp-box input { font-size: 30px; letter-spacing: 14px; text-align: center; width: 280px; max-width: 100%;
  padding: 14px; border: 2px solid var(--line); border-radius: 12px; font-weight: 800; color: var(--navy); }
.otp-box input:focus { outline: none; border-color: var(--navy-3); }
.otp-resend { text-align: center; font-size: 14px; color: var(--mut); }
.result-box { text-align: center; padding: 12px 0; }
.result-icon { width: 64px; height: 64px; border-radius: 50%; background: #e7f4ec; color: var(--ok);
  font-size: 32px; font-weight: 800; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; }
.result-vehicle { color: var(--mut); font-weight: 600; margin: 4px 0 14px; }
.result-amount { font-size: clamp(30px, 5vw, 44px); font-weight: 800; color: var(--navy); margin-bottom: 14px; }
.result-note { color: var(--mut); font-size: 14px; max-width: 480px; margin: 0 auto 22px; }
.result-cta { background: var(--bg); border-radius: 12px; padding: 22px; }
.result-cta p { margin-bottom: 14px; }
.calc-aside { display: grid; gap: 16px; }
.aside-card { background: #fff; border: 1px solid var(--line); border-radius: var(--rad); padding: 22px; }
.aside-card.gold { background: #fdf6e4; border-color: #f0dfae; }
.aside-card h3 { color: var(--navy); margin-bottom: 10px; font-size: 16px; }
.aside-card p { font-size: 14px; color: var(--mut); }
.calc-loading { position: absolute; inset: 0; background: rgba(255,255,255,.75); border-radius: var(--rad);
  display: flex; align-items: center; justify-content: center; z-index: 5; }
.calc-loading[hidden], .calc-step[hidden], .calc-error[hidden] { display: none; }
.spinner { width: 42px; height: 42px; border: 4px solid var(--line); border-top-color: var(--navy); border-radius: 50%; animation: spin .8s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ---------- cta band & footer ---------- */
.cta-band { background: linear-gradient(120deg, var(--gold), #f3c85a); padding: 44px 0; }
.cta-band-in { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.cta-band h2 { color: var(--navy); font-size: clamp(20px, 2.6vw, 28px); font-weight: 800; }
.cta-band p { color: #5d4a12; margin-top: 4px; }
.cta-band .btn-gold { background: var(--navy); color: #fff; }
.site-footer { background: var(--navy); color: #c3d2e3; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1.2fr; gap: 36px; padding: 52px 20px 40px; }
.footer-logo { font-size: 19px; font-weight: 800; color: #fff; margin-bottom: 10px; }
.site-footer h3 { color: var(--gold); font-size: 15px; margin-bottom: 14px; text-transform: uppercase; letter-spacing: .5px; }
.site-footer ul { list-style: none; }
.site-footer li { margin-bottom: 9px; }
.site-footer a { color: #c3d2e3; text-decoration: none; font-size: 14.5px; }
.site-footer a:hover { color: var(--gold); }
.footer-contact { margin-top: 12px; line-height: 2; }
.footer-contact a { color: var(--gold); }
.footer-note { font-size: 13px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); padding: 16px 0; font-size: 13px; }
.wa-float { position: fixed; right: 20px; bottom: 20px; width: 56px; height: 56px; background: #25d366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; box-shadow: 0 8px 24px rgba(0,0,0,.28); z-index: 90; transition: transform .15s; }
.wa-float:hover { transform: scale(1.08); }
.notfound { padding: 100px 0; }
.nf-code { font-size: 96px; font-weight: 800; color: var(--line); line-height: 1; }
.notfound h1 { color: var(--navy); margin: 10px 0; }
.notfound p { color: var(--mut); margin-bottom: 26px; }

/* ---------- responsive ---------- */
@media (max-width: 1024px) {
  .hero-in { grid-template-columns: 1fr; padding: 52px 20px; }
  .hero-card { max-width: 480px; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .why-in { grid-template-columns: 1fr; gap: 36px; }
  .post-grid { grid-template-columns: 1fr 1fr; }
  .calc-wrap { grid-template-columns: 1fr; }
  .calc-aside { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .topbar-in { justify-content: center; text-align: center; }
  .topbar-in > span { display: none; }
  .hide-m { display: none !important; }
  .header-cta { display: none; }
  .nav-toggle { display: block; margin-left: auto; }
  .main-nav { position: fixed; top: 0; right: -290px; width: 280px; height: 100vh; background: #fff; z-index: 100;
    box-shadow: -8px 0 30px rgba(0,0,0,.15); transition: right .25s; padding: 70px 18px 20px; margin: 0; overflow-y: auto; }
  .main-nav.open { right: 0; }
  .main-nav ul { flex-direction: column; gap: 2px; }
  .submenu { position: static; display: block; border: 0; box-shadow: none; padding-left: 16px; }
  body.nav-open::after { content: ''; position: fixed; inset: 0; background: rgba(13,35,64,.5); z-index: 95; }
  .nav-toggle { position: relative; z-index: 110; }
  body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
  body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
  .steps-grid, .stats-grid, .post-grid, .form-grid, .parts-list, .calc-aside, .contact-grid { grid-template-columns: 1fr; }
  .form-grid .span-2 { grid-column: span 1; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .section { padding: 48px 0; }
  .calc-card { padding: 20px 16px; }
  .calc-steps li { font-size: 0; padding: 8px; gap: 0; }
  .calc-steps li span { font-size: 12px; }
  .calc-nav .btn { flex: 1; text-align: center; }
}
