/* ============================================================
   Kadı Oto Kurtarma - Mobil öncelikli ana stil dosyası
   360px -> 430px -> tablet -> desktop
   ============================================================ */

:root {
  --bg: #f8fafc;
  --surface: #ffffff;
  --ink: #0f172a;
  --ink-soft: #334155;
  --muted: #64748b;
  --line: #e2e8f0;
  --brand: #0f172a;
  --brand-2: #1e293b;
  --accent: #f97316;
  --accent-dark: #ea580c;
  --accent-ink: #ffffff;
  --wa: #16a34a;
  --success: #16a34a;
  --danger: #dc2626;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 6px 24px rgba(15, 23, 42, .08);
  --container: 1120px;
  --header-h: 64px;
  --cta-h: 62px;
}

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

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

body {
  margin: 0;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  padding-bottom: var(--cta-h);
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent-dark); }
a:hover { color: var(--accent); }

h1, h2, h3, h4 { line-height: 1.25; color: var(--ink); margin: 0 0 .6em; }
h1 { font-size: clamp(1.65rem, 6vw, 2.5rem); letter-spacing: -.02em; }
h2 { font-size: clamp(1.3rem, 4.5vw, 1.85rem); }
h3 { font-size: 1.12rem; }

p { margin: 0 0 1em; }

:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--accent);
  color: #fff;
  padding: 10px 16px;
  z-index: 200;
}
.skip-link:focus { left: 8px; top: 8px; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 16px;
}
.container-narrow { max-width: 780px; }
.container-article { max-width: 820px; }

/* ---------- Butonlar ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 700;
  font-size: .95rem;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background-color .15s ease, color .15s ease, border-color .15s ease;
  min-height: 44px;
}
.btn-lg { padding: 14px 26px; font-size: 1rem; }
.btn-block { width: 100%; }
.btn-sm { padding: 6px 14px; font-size: .85rem; min-height: 36px; }

.btn-call {
  background: var(--accent);
  color: var(--accent-ink);
}
.btn-call:hover { background: var(--accent-dark); color: #fff; }

.btn-outline {
  background: transparent;
  border-color: var(--ink);
  color: var(--ink);
}
.btn-outline:hover { background: var(--ink); color: #fff; }

.btn-ghost {
  background: rgba(255, 255, 255, .12);
  border-color: rgba(255, 255, 255, .65);
  color: #fff;
}
.btn-ghost:hover { background: #fff; color: var(--ink); }

.btn-whatsapp { background: var(--wa); color: #fff; }
.btn-whatsapp:hover { background: #15803d; color: #fff; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--brand);
  color: #fff;
  box-shadow: 0 2px 12px rgba(0, 0, 0, .18);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: var(--header-h);
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  text-decoration: none;
  margin-right: auto;
  min-width: 0;
}
.brand:hover { color: #fff; }
.brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--accent);
  color: #fff;
  font-weight: 800;
  font-size: 1.3rem;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.brand-logo { width: 40px; height: 40px; object-fit: contain; }
.brand-text { display: flex; flex-direction: column; line-height: 1.15; min-width: 0; }
.brand-text strong { font-size: .98rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.brand-text small { font-size: .72rem; color: #cbd5e1; }

.header-call { flex-shrink: 0; padding: 10px 16px; font-size: .85rem; }

.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, .35);
  border-radius: 8px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform .2s ease, opacity .2s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.main-nav { display: none; }

.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 4px;
}
.nav-list > li { position: relative; }
.nav-list > li > a {
  display: block;
  padding: 10px 12px;
  color: #e2e8f0;
  text-decoration: none;
  font-weight: 600;
  font-size: .92rem;
  border-radius: 8px;
}
.nav-list > li > a:hover { background: rgba(255, 255, 255, .1); color: #fff; }

.sub-list {
  list-style: none;
  margin: 0;
  padding: 8px;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: var(--brand-2);
  border-radius: 10px;
  box-shadow: var(--shadow);
  display: none;
}
.has-sub:hover .sub-list,
.has-sub:focus-within .sub-list { display: block; }
.sub-list a {
  display: block;
  padding: 9px 12px;
  color: #e2e8f0;
  text-decoration: none;
  border-radius: 6px;
  font-size: .9rem;
}
.sub-list a:hover { background: rgba(255, 255, 255, .1); color: #fff; }

.mobile-nav {
  background: var(--brand-2);
  border-top: 1px solid rgba(255, 255, 255, .08);
  max-height: calc(100vh - var(--header-h));
  overflow-y: auto;
}
.mobile-nav[hidden] { display: none; }
.mobile-nav ul { list-style: none; margin: 0; padding: 8px 16px 16px; }
.mobile-nav > ul > li { border-bottom: 1px solid rgba(255, 255, 255, .07); }
.mobile-nav a {
  display: block;
  padding: 13px 4px;
  color: #f1f5f9;
  text-decoration: none;
  font-weight: 600;
}
.mobile-nav a:hover { color: var(--accent); }
.mobile-sub { padding: 0 0 8px 12px !important; }
.mobile-sub a { font-weight: 500 !important; color: #cbd5e1 !important; padding: 9px 4px !important; font-size: .93rem; }
.mobile-nav-call {
  background: var(--accent);
  color: #fff !important;
  text-align: center;
  border-radius: 10px;
  margin-top: 12px;
}
.mobile-nav-call:hover { background: var(--accent-dark); color: #fff !important; }

/* ---------- Hero ---------- */
.hero {
  background:
    radial-gradient(1000px 400px at 90% -10%, rgba(249, 115, 22, .28), transparent 60%),
    linear-gradient(160deg, #0f172a 0%, #1e293b 55%, #0f172a 100%);
  color: #fff;
  padding: 36px 0 44px;
}
.hero-inner { display: grid; gap: 24px; }
.hero-badge {
  display: inline-block;
  background: rgba(249, 115, 22, .18);
  border: 1px solid rgba(249, 115, 22, .6);
  color: #fdba74;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .08em;
  padding: 6px 12px;
  border-radius: 999px;
  margin: 0 0 14px;
}
.hero h1 { color: #fff; margin-bottom: .5em; }
.hero-text { color: #cbd5e1; font-size: 1.02rem; max-width: 56ch; }
.hero-phone { margin: 14px 0 6px; }
.hero-phone a {
  color: #fff;
  font-size: clamp(1.4rem, 6vw, 1.9rem);
  font-weight: 800;
  text-decoration: none;
  letter-spacing: .01em;
}
.hero-phone a:hover { color: var(--accent); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 10px; margin: 18px 0 10px; }
.hero-trust {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  padding: 0;
  margin: 18px 0 0;
  color: #94a3b8;
  font-size: .85rem;
}
.hero-trust li::before { content: "\2713\00a0"; color: var(--accent); font-weight: 700; }
.hero-media img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* ---------- Hızlı CTA şeridi ---------- */
.quick-cta {
  background: var(--accent);
  color: #fff;
  padding: 14px 0;
}
.quick-cta-inner {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
}
.quick-cta p { margin: 0; font-size: .98rem; }
.quick-cta .btn { background: #fff; color: var(--accent-dark); }
.quick-cta .btn:hover { background: var(--brand); color: #fff; }

/* ---------- Bölümler ---------- */
.section { padding: 40px 0; }
.section-alt { background: #eef2f7; }
.section-inner { margin-top: 44px; }
.section-head { margin-bottom: 24px; max-width: 70ch; }
.section-head p { color: var(--muted); margin: 0; }
.section-more { margin: 24px 0 0; text-align: center; }

.page-top { padding-top: 24px; }
.page-lead { color: var(--muted); font-size: 1.05rem; max-width: 70ch; }

/* ---------- Kartlar ---------- */
.card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: 0 2px 10px rgba(15, 23, 42, .04);
}
.card h2, .card h3 { margin-top: 0; }
.card h2 a, .card h3 a { color: var(--ink); text-decoration: none; }
.card h2 a:hover, .card h3 a:hover { color: var(--accent-dark); }
.card p { color: var(--ink-soft); margin-bottom: .7em; }
.card-link {
  font-weight: 700;
  text-decoration: none;
  color: var(--accent-dark);
  font-size: .93rem;
}
.card-image { width: 100%; border-radius: var(--radius-sm); margin-bottom: 12px; aspect-ratio: 16/9; object-fit: cover; }
.card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  font-size: .8rem;
  color: var(--muted);
  margin-bottom: 8px;
}
.card-meta a { color: var(--accent-dark); text-decoration: none; font-weight: 600; }
.badge {
  display: inline-block;
  background: var(--line);
  color: var(--ink-soft);
  border-radius: 999px;
  padding: 1px 8px;
  font-size: .75rem;
}

/* ---------- Adım listesi ---------- */
.steps-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
}
.step-item {
  display: flex;
  gap: 14px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px;
}
.step-item h3 { margin-bottom: .3em; }
.step-item p { margin: 0; color: var(--ink-soft); font-size: .95rem; }
.step-num {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-weight: 800;
  display: grid;
  place-items: center;
}

/* ---------- Bölge çipleri ---------- */
.area-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.area-chip {
  display: inline-block;
  background: var(--surface);
  border: 1px solid var(--line);
  color: var(--ink);
  text-decoration: none;
  font-weight: 600;
  font-size: .92rem;
  padding: 10px 16px;
  border-radius: 999px;
}
a.area-chip:hover { border-color: var(--accent); color: var(--accent-dark); }
.area-chip-static { color: var(--muted); background: transparent; }

/* ---------- SSS ---------- */
.faq-list { display: grid; gap: 10px; }
.faq-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0 16px;
}
.faq-item summary {
  cursor: pointer;
  font-weight: 700;
  padding: 15px 0;
  list-style: none;
  position: relative;
  padding-right: 28px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  color: var(--accent);
  font-size: 1.4rem;
  font-weight: 400;
}
.faq-item[open] summary::after { content: "\2212"; }
.faq-answer { padding: 0 0 15px; color: var(--ink-soft); }
.faq-answer p { margin: 0; }

/* ---------- Harita / iletişim şerit ---------- */
.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--surface);
}
.map-wrap iframe { display: block; width: 100%; }
.contact-strip {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 18px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
}
.contact-strip address { font-style: normal; color: var(--ink-soft); }

/* ---------- CTA bandı ---------- */
.cta-band {
  background: linear-gradient(135deg, var(--brand), #1d4ed8 140%);
  color: #fff;
  padding: 36px 0;
}
.cta-band h2 { color: #fff; margin-bottom: .3em; }
.cta-band p { color: #cbd5e1; margin: 0; }
.cta-band-inner {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
}

/* ---------- Yazı içi (prose) ---------- */
.prose { font-size: 1.02rem; color: var(--ink-soft); }
.prose h2 { margin-top: 1.4em; }
.prose h3 { margin-top: 1.3em; }
.prose ul, .prose ol { padding-left: 1.3em; }
.prose li { margin-bottom: .4em; }
.prose a { font-weight: 600; }
.prose strong { color: var(--ink); }

.cta-inline {
  margin: 32px 0;
  padding: 22px;
  background: #fff7ed;
  border: 1px solid #fed7aa;
  border-radius: var(--radius);
  text-align: center;
}
.cta-inline p { margin-bottom: 12px; }

.related-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.related-list a {
  display: block;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  text-decoration: none;
  font-weight: 700;
  color: var(--ink);
}
.related-list a:hover { border-color: var(--accent); color: var(--accent-dark); }

.related-service-box {
  margin: 28px 0;
  padding: 20px;
  background: var(--brand);
  color: #e2e8f0;
  border-radius: var(--radius);
}
.related-service-box h2 { color: #fff; font-size: 1.15rem; }
.related-service-box a { color: #fdba74; font-weight: 700; }

.tag-list { display: flex; flex-wrap: wrap; gap: 8px; margin: 24px 0; }
.tag {
  background: var(--line);
  color: var(--ink-soft);
  text-decoration: none;
  font-size: .85rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 999px;
}
.tag:hover { background: var(--accent); color: #fff; }

.article-head { padding-bottom: 8px; }
.article-byline { color: var(--muted); font-size: .9rem; }
.article-image {
  width: 100%;
  border-radius: var(--radius);
  margin: 10px auto 0;
}

/* ---------- Breadcrumb ---------- */
.breadcrumb { padding: 14px 0 0; font-size: .85rem; }
.breadcrumb ol {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0;
  padding: 0;
}
.breadcrumb li { color: var(--muted); }
.breadcrumb li + li::before { content: "/"; margin-right: 6px; color: #cbd5e1; }
.breadcrumb a { color: var(--accent-dark); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb [aria-current] { color: var(--ink-soft); font-weight: 600; }

/* ---------- Sayfalama ---------- */
.pagination { margin-top: 28px; }
.pagination ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}
.pagination a, .pagination-current, .pagination-gap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  min-height: 42px;
  padding: 8px 12px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: .92rem;
}
.pagination a { background: var(--surface); border: 1px solid var(--line); color: var(--ink); }
.pagination a:hover { border-color: var(--accent); color: var(--accent-dark); }
.pagination-current { background: var(--accent); color: #fff; }
.pagination-gap { color: var(--muted); }

/* ---------- Blog düzeni ---------- */
.blog-layout { display: grid; gap: 28px; }
.side-title { font-size: 1.05rem; }
.side-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 6px; }
.side-list a {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  padding: 10px 12px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  text-decoration: none;
  color: var(--ink);
  font-weight: 600;
  font-size: .93rem;
}
.side-list a:hover { border-color: var(--accent); color: var(--accent-dark); }
.side-cta {
  margin-top: 18px;
  background: var(--brand);
  color: #fff;
  padding: 18px;
  border-radius: var(--radius);
  text-align: center;
}
.side-cta p { margin: 0 0 10px; }

/* ---------- İletişim ---------- */
.contact-layout { display: grid; gap: 24px; }
.contact-info { display: grid; gap: 16px; }
.contact-big-phone a {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--accent-dark);
  text-decoration: none;
}
.contact-address { font-style: normal; margin-bottom: 10px; color: var(--ink-soft); }
.form-note { color: var(--muted); font-size: .92rem; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-weight: 700; margin-bottom: 6px; font-size: .93rem; }
.req { color: var(--danger); }
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font: inherit;
  background: #fff;
  color: var(--ink);
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(249, 115, 22, .2);
}
.form-hp { position: absolute !important; left: -9999px !important; height: 0; overflow: hidden; }
.contact-form-wrap { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; }

.alert {
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  margin: 14px 0;
  font-weight: 600;
  font-size: .95rem;
}
.alert-success { background: #dcfce7; color: #166534; border: 1px solid #86efac; }
.alert-error { background: #fee2e2; color: #991b1b; border: 1px solid #fca5a5; }

.empty-state {
  background: var(--surface);
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  padding: 28px;
  text-align: center;
  color: var(--muted);
}

/* ---------- 404 / 500 ---------- */
.error-page { text-align: center; padding: 60px 0 70px; }
.error-code {
  font-size: clamp(3.5rem, 15vw, 6rem);
  font-weight: 800;
  color: var(--accent);
  margin: 0;
  line-height: 1;
}
.error-actions { justify-content: center; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--brand);
  color: #cbd5e1;
  padding-top: 40px;
}
.footer-grid { display: grid; gap: 28px; padding-bottom: 32px; }
.footer-title { color: #fff; font-size: 1.02rem; margin-bottom: 12px; }
.footer-text { color: #94a3b8; font-size: .93rem; }
.footer-address { font-style: normal; font-size: .93rem; margin-bottom: 10px; }
.footer-phone a { color: #fdba74; font-weight: 800; font-size: 1.1rem; text-decoration: none; }
.footer-hours { font-size: .88rem; color: #94a3b8; }
.footer-links { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
.footer-links a { color: #cbd5e1; text-decoration: none; font-size: .93rem; }
.footer-links a:hover { color: #fff; }
.footer-social { list-style: none; display: flex; flex-wrap: wrap; gap: 10px; padding: 12px 0 0; margin: 0; }
.footer-social a { color: #94a3b8; font-size: .85rem; text-decoration: none; }
.footer-social a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .1);
  padding: 16px 0;
  font-size: .82rem;
  color: #64748b;
}
.footer-bottom p { margin: 0; }

/* ---------- Mobil alt sabit CTA ---------- */
.mobile-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 120;
  display: flex;
  background: var(--brand);
  border-top: 1px solid rgba(255, 255, 255, .12);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, .25);
  padding: 8px;
  gap: 8px;
  padding-bottom: max(8px, env(safe-area-inset-bottom));
}
.mobile-cta-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 46px;
  border-radius: 10px;
  font-weight: 800;
  font-size: .82rem;
  text-decoration: none;
  letter-spacing: .02em;
}
.mobile-cta-call { background: var(--accent); color: #fff; flex: 1.4; }
.mobile-cta-call:hover { background: var(--accent-dark); color: #fff; }
.mobile-cta-wa { background: var(--wa); color: #fff; }
.mobile-cta-wa:hover { background: #15803d; color: #fff; }
.mobile-cta-map { background: var(--brand-2); color: #fff; border: 1px solid rgba(255, 255, 255, .25); }
.mobile-cta-map:hover { background: #334155; color: #fff; }
.mobile-cta-icon { font-size: 1.05rem; line-height: 1; }

/* ============================================================
   Kırılma noktaları
   ============================================================ */

@media (min-width: 430px) {
  .quick-cta-inner { flex-direction: row; align-items: center; justify-content: space-between; }
}

@media (min-width: 640px) {
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .card-grid.grid-4 { grid-template-columns: repeat(2, 1fr); }
  .steps-list { grid-template-columns: repeat(2, 1fr); }
  .contact-strip { flex-direction: row; align-items: center; justify-content: space-between; }
  .cta-band-inner { flex-direction: row; align-items: center; justify-content: space-between; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 768px) {
  body { padding-bottom: 0; }
  .mobile-cta { display: none; }

  .nav-toggle { display: none; }
  .main-nav { display: block; }

  .hero { padding: 56px 0 64px; }
  .hero-inner { grid-template-columns: 1.2fr .8fr; align-items: center; }
  .hero-inner:not(:has(.hero-media)) { grid-template-columns: 1fr; }

  .contact-layout { grid-template-columns: 1fr 1fr; align-items: start; }
  .blog-layout { grid-template-columns: 1fr 280px; }
  .footer-grid { grid-template-columns: repeat(4, 1fr); }
  .section { padding: 56px 0; }
}

@media (min-width: 1024px) {
  .card-grid { grid-template-columns: repeat(3, 1fr); }
  .card-grid.grid-4 { grid-template-columns: repeat(4, 1fr); }
  .steps-list { grid-template-columns: repeat(4, 1fr); }
  .header-call { font-size: .92rem; padding: 11px 20px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; animation: none !important; }
}

@media print {
  .site-header, .mobile-cta, .quick-cta, .cta-band, .site-footer { display: none !important; }
  body { padding: 0; }
}
