/* ══════════════════════════════════════════════════
   index.css — Anasayfa Sayfa Stilleri
   Sadece index.php tarafından yüklenir.
══════════════════════════════════════════════════ */

/* ── FONT TEST (Sadece Anasayfa İçin Inter Fontu) ── */
:root { --font: 'Inter', 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif; }

/* ── FONT TEST (Sadece Anasayfa İçin Inter Fontu) ── */
:root { --font: 'Inter', 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif; }

/* ── HERO ── */
.hero {
  background: linear-gradient(160deg, var(--green-light) 0%, #FAFFFE 55%, var(--white) 100%);
  padding: var(--py-hero) 0; position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; top: -120px; right: -80px;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(44,179,79,.10) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: ''; position: absolute; bottom: -80px; left: -60px;
  width: 350px; height: 350px; border-radius: 50%;
  background: radial-gradient(circle, rgba(44,179,79,.07) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  display: grid; grid-template-columns: 3fr 2fr;
  gap: 64px; align-items: center; position: relative; z-index: 1;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--green-surface); color: var(--ink-700);
  font-size: 14px; font-weight: 600; padding: 8px 18px;
  border-radius: var(--radius-full); border: 1px solid var(--green-border);
  margin-bottom: 14px; letter-spacing: .2px;
}
.hero-eyebrow .dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--green); flex-shrink: 0;
  animation: dot-ping 2s ease-out infinite;
}
@keyframes dot-ping {
  0%   { box-shadow: 0 0 0 0 rgba(44,179,79,.55); }
  70%  { box-shadow: 0 0 0 7px rgba(44,179,79,0); }
  100% { box-shadow: 0 0 0 0 rgba(44,179,79,0); }
}

/* Slogan crossfade: "anında" ↔ "yanında" */
.ew   { position: relative; display: inline-block; min-width: 4.8em; }
.ew-b { position: absolute; left: 0; top: 0; opacity: 0; white-space: nowrap; }
@keyframes ew-a { 0%,40%{opacity:1} 50%,90%{opacity:0} 100%{opacity:1} }
@keyframes ew-b { 0%,40%{opacity:0} 50%,90%{opacity:1} 100%{opacity:0} }
.ew-a { animation: ew-a 6s ease-in-out infinite; color: var(--orange); font-size: 1.15em; font-weight: 800; }
.ew-b { animation: ew-b 6s ease-in-out infinite; color: var(--green);  font-size: 1.15em; font-weight: 800; }
.hero h1 { font-size: 46px; font-weight: 800; color: var(--ink-900); letter-spacing: -1.5px; line-height: 1.12; margin-bottom: 18px; }
.hero h1 em { font-style: normal; color: var(--green); }

/* H1 Carousel (CSS-only, SEO dostu — screen reader fallback: .sr-only) */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.text-carousel { display: inline-block; overflow: hidden; vertical-align: bottom; height: 1.25em; color: var(--green); transform: translateZ(0); }
.scroll { list-style: none; padding: 0; margin: 0; animation: tc-scroll 12s steps(5, end) infinite; }
.scroll li { display: block; height: 1.25em; line-height: 1.25; white-space: nowrap; }
@keyframes tc-scroll {
  0%   { transform: translateY(0); }
  100% { transform: translateY(-83.333%); } /* 5 adım / 6 öğe (1 repeat) = -5/6 */
}
.hero-sub { font-size: 17px; color: var(--ink-500); line-height: 1.65; margin-bottom: 36px; max-width: 540px; }

/* Arama kutusu */
.search-box {
  background: var(--white); border: 1.5px solid var(--ink-100);
  border-radius: var(--radius-lg); display: flex;
  box-shadow: var(--shadow); transition: border-color .2s, box-shadow .2s;
}
.search-box:focus-within { border-color: var(--green); box-shadow: 0 0 0 3px var(--green-surface), var(--shadow); }
.sf { flex: 1; display: flex; align-items: center; gap: 10px; padding: 14px 16px; border-right: 1.5px solid var(--ink-100); position: relative; }
.sf:last-of-type { border-right: none; }
.sf-icon { font-size: 18px; flex-shrink: 0; }
.sf-inner { flex: 1; min-width: 0; }
.sf-inner label { font-size: 11px; font-weight: 700; color: var(--ink-500); text-transform: uppercase; letter-spacing: .5px; display: block; margin-bottom: 2px; }
.sf-inner input { border: none; outline: none; font-family: var(--font); font-size: 14px; color: var(--ink-800); background: transparent; width: 100%; }
.sf-inner input::placeholder { color: var(--ink-300); }

/* Autocomplete dropdown */
.ac-drop { display: none; position: absolute; top: calc(100% + 8px); left: -1px; right: -1px;
  background: var(--white); border: 1.5px solid var(--ink-100); border-radius: var(--radius);
  box-shadow: var(--shadow-lg); z-index: 200; overflow: hidden; }
.ac-drop.open { display: block; }
.ac-item { padding: 10px 14px; font-size: 14px; color: var(--ink-700); cursor: pointer; transition: background .1s; }
.ac-item:hover, .ac-item.on { background: var(--green-surface); color: var(--green-dark); }
.search-btn { padding: 0 28px; background: #FF4102 !important; color: white; border: none; font-family: var(--font); font-size: 15px; font-weight: 700; cursor: pointer; transition: background .2s; white-space: nowrap; border-radius: 0 calc(var(--radius-lg) - 1.5px) calc(var(--radius-lg) - 1.5px) 0; }
.search-btn:hover { background: #CC3402 !important; }

/* Güven pills */
.hero-trust { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 20px; }
.trust-item { display: flex; align-items: center; gap: 7px; font-size: 13px; color: var(--ink-500); }
.trust-item .ti-icon { color: var(--green); font-size: 15px; }

/* Hero sağ: görsel kartlar */
.hero-visual { display: flex; flex-direction: column; gap: 14px; }
.hv-card { background: var(--white); border: 1.5px solid var(--ink-100); border-radius: var(--radius-lg); padding: 20px 22px; box-shadow: var(--shadow-sm); }
.hv-card-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.hvc-label { font-size: 12px; font-weight: 700; color: var(--ink-500); text-transform: uppercase; letter-spacing: .5px; }
.hvc-time { font-size: 12px; color: var(--green); font-weight: 600; }
.badge-green { background: #FF4102 !important; color: white; font-size: 12px; font-weight: 700; padding: 3px 10px; border-radius: 9999px; }

/* Akış görseli */
.flow-steps { display: flex; align-items: center; gap: 8px; }
.flow-step { display: flex; align-items: center; gap: 7px; flex: 1; background: var(--ink-50); border-radius: var(--radius); padding: 10px 12px; font-size: 12px; font-weight: 600; color: var(--ink-700); }
.flow-step.active { background: var(--green-surface); color: var(--green-dark); border: 1px solid var(--green-border); }
.flow-step .n { width: 22px; height: 22px; border-radius: 50%; font-size: 11px; font-weight: 800; display: flex; align-items: center; justify-content: center; flex-shrink: 0; background: var(--ink-300); color: white; }
.flow-step.active .n { background: var(--green); }
.flow-arrow { color: var(--ink-300); font-size: 16px; flex-shrink: 0; }

/* Teklif önizleme */
.offer-preview { display: flex; flex-direction: column; gap: 8px; }
.offer-row { display: flex; align-items: center; gap: 12px; padding: 10px 12px; border: 1.5px solid var(--ink-100); border-radius: var(--radius); transition: border-color .2s; }
.offer-row.best { border-color: var(--green); background: var(--green-surface); }
.offer-av { width: 36px; height: 36px; border-radius: 50%; flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 13px; color: white; }
.av-g { background: linear-gradient(135deg, #10B981, #047857); }
.av-a { background: linear-gradient(135deg, #F59E0B, #D97706); }
.av-b { background: linear-gradient(135deg, #3B82F6, #1D4ED8); }
.offer-info { flex: 1; }
.offer-name  { font-size: 13px; font-weight: 700; color: var(--ink-900); }
.offer-rate  { font-size: 12px; color: var(--amber); }
.offer-price { font-size: 15px; font-weight: 800; color: var(--green-dark); }
.offer-badge { font-size: 11px; font-weight: 700; padding: 3px 8px; border-radius: var(--radius-full); background: #FF4102 !important; color: white; }

/* ── İKİ YOL — Arayan / Veren ── */
.two-paths { background: var(--ink-50); padding: var(--py-section) 0; border-top: 1px solid var(--ink-100); border-bottom: 1px solid var(--ink-100); }
.tp-head { text-align: center; margin-bottom: 36px; }
.tp-title { font-size: 26px; font-weight: 800; color: var(--ink-900); letter-spacing: -.6px; }
.tp-sub { font-size: 15px; color: var(--ink-500); margin-top: 6px; }
.two-paths-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.path-card { background: var(--white); border: 1.5px solid var(--ink-100); border-radius: var(--radius-lg); padding: 44px 36px; position: relative; overflow: hidden; border-top: 4px solid var(--ink-200); }
.path-card.arayan { border-top-color: var(--green); }
.path-card.veren  { border-top-color: var(--teal); }
.path-header { display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.path-header .path-ico { margin-bottom: 0; }
.path-header .path-tag { margin-bottom: 0; }
.path-ico { width: 52px; height: 52px; border-radius: var(--radius); display: flex; align-items: center; justify-content: center; font-size: 26px; margin-bottom: 16px; }
.path-card.arayan .path-ico { background: var(--green-surface); }
.path-card.veren  .path-ico { background: rgba(13,148,136,.12); }
.path-tag { display: inline-flex; align-items: center; gap: 6px; font-size: 18px; font-weight: 700; padding: 6px 18px; border-radius: var(--radius-full); margin-bottom: 14px; }
.path-tag.a { background: var(--green-surface); color: var(--green-dark); border: 1px solid var(--green-border); }
.path-tag.v { background: rgba(13,148,136,.12); color: var(--teal-dark); border: 1px solid var(--teal-border); }
.path-card h2 { font-size: 28px; font-weight: 800; color: var(--ink-900); letter-spacing: -.5px; margin-bottom: 10px; text-align: center; white-space: nowrap; }
.path-card p  { font-size: 14px; color: var(--ink-500); line-height: 1.7; margin-bottom: 22px; }
.path-features { display: flex; flex-direction: column; gap: 9px; margin-bottom: 24px; }
.pf-item { display: flex; align-items: center; gap: 9px; font-size: 14px; color: var(--ink-700); }
.pf-item .check { color: var(--green); font-size: 14px; font-weight: 700; flex-shrink: 0; }
.pf-item.v-check .check { color: var(--teal); }
.btn-path-arayan { display: inline-flex; align-items: center; gap: 8px; padding: 13px 28px; border-radius: var(--radius-full); background: #FF4102 !important; color: white; font-family: var(--font); font-size: 14px; font-weight: 700; border: none; cursor: pointer; transition: background .2s; }
.btn-path-arayan:hover { background: #CC3402 !important; }
.btn-path-veren  { display: inline-flex; align-items: center; gap: 8px; padding: 13px 28px; border-radius: var(--radius-full); background: var(--teal); color: white; font-family: var(--font); font-size: 14px; font-weight: 700; border: none; cursor: pointer; transition: background .2s; }
.btn-path-veren:hover { background: var(--teal-dark); }
.path-login { margin-top: 12px; font-size: 13px; color: var(--ink-500); }
.path-login a { font-weight: 600; color: var(--green); }
.path-login a.v-link { color: var(--teal); }

/* ── STATS BAR ── */
.stats-bar { border-top: 1px solid var(--ink-100); border-bottom: 1px solid var(--ink-100); background: var(--ink-50); }
.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.stat-box { padding: 32px 24px; text-align: center; border-right: 1px solid var(--ink-100); }
.stat-box:last-child { border-right: none; }
.stat-num { font-size: 32px; font-weight: 800; color: var(--ink-900); letter-spacing: -1px; }
.stat-num em { font-style: normal; color: var(--green); }
.stat-desc { font-size: 14px; color: var(--ink-500); margin-top: 5px; }

/* ── BÖLÜM / KATEGORİLER / ADIMLAR / USTALAR ── */
.section { padding: var(--py-section) 0; }
.section.bg-light { background: var(--ink-50); }
.sec-head { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 36px; }
.sec-title { font-size: 28px; font-weight: 800; color: var(--ink-900); letter-spacing: -.7px; }
.sec-title em { font-style: normal; color: var(--green); }
.sec-sub { font-size: 15px; color: var(--ink-500); margin-top: 6px; }
.link-more { font-size: 14px; font-weight: 600; color: var(--green); }

/* Kategoriler */
.cats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.cat-card { position: relative; overflow: hidden; border-radius: var(--radius-lg); min-height: 160px; cursor: pointer; display: flex; flex-direction: column; transition: transform .2s, box-shadow .2s; text-decoration: none; }
.cat-card:hover { transform: translateY(-3px); box-shadow: 0 10px 28px rgba(0,0,0,.22); }
.cat-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.cat-card:hover .cat-img { transform: scale(1.07); }
.cat-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(0,0,0,.12) 0%, rgba(0,0,0,.62) 100%); transition: background .2s; }
.cat-card:hover .cat-overlay { background: linear-gradient(to bottom, rgba(0,0,0,.15) 0%, rgba(0,0,0,.72) 100%); }
.cat-content { position: relative; z-index: 1; display: flex; flex-direction: column; height: 100%; padding: 18px; gap: 6px; }
.cat-icon { width: 44px; height: 44px; border-radius: var(--radius); background: rgba(255,255,255,.18); backdrop-filter: blur(6px); display: flex; align-items: center; justify-content: center; }
.cat-name  { font-size: 15px; font-weight: 700; color: #fff; margin-top: auto; }
.cat-count { font-size: 12px; color: rgba(255,255,255,.82); }
.cat-arr   { color: rgba(255,255,255,.7); font-size: 15px; margin-top: 4px; }
.cat-card.wide { grid-column: span 2; min-height: 200px; }
.cat-card.wide .cat-icon { width: 52px; height: 52px; }
.cat-card.wide .cat-name { font-size: 20px; }
.cat-card.wide .cat-count { font-size: 13px; }

/* Adımlar */
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.step-card { background: var(--white); border: 1.5px solid var(--ink-100); border-radius: var(--radius-lg); padding: 28px 24px; position: relative; }
.step-head  { display: flex; align-items: center; gap: 16px; margin-bottom: 16px; }
.step-num  { width: 34px; height: 34px; border-radius: 50%; background: var(--green); color: white; font-size: 15px; font-weight: 800; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.step-ico  { font-size: 34px; line-height: 1; }
.step-title { font-size: 17px; font-weight: 700; color: var(--ink-900); margin-bottom: 8px; }
.step-desc  { font-size: 14px; color: var(--ink-500); line-height: 1.7; }
.step-arr   { position: absolute; top: 42px; right: -16px; color: var(--ink-300); font-size: 22px; z-index: 1; }

/* Önerilen ustalar */
.providers-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.prov-card { background: var(--white); border: 1.5px solid var(--ink-100); border-radius: var(--radius-lg); overflow: hidden; transition: box-shadow .2s, transform .15s; }
.prov-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.prov-head   { padding: 20px; display: flex; align-items: flex-start; gap: 14px; }
.prov-av-wrap { position: relative; flex-shrink: 0; }
.prov-av     { width: 60px; height: 60px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 20px; font-weight: 800; color: white; }
.prov-av-g   { background: linear-gradient(135deg, #10B981, #047857); }
.prov-av-a   { background: linear-gradient(135deg, #F59E0B, #D97706); }
.prov-av-b   { background: linear-gradient(135deg, #3B82F6, #1D4ED8); }
.prov-verified { position: absolute; bottom: -1px; right: -1px; width: 18px; height: 18px; border-radius: 50%; background: var(--green); border: 2px solid white; display: flex; align-items: center; justify-content: center; color: white; }
.prov-verified i { font-size: 10px; line-height: 1; }
.prov-info   { flex: 1; }
.prov-name   { font-size: 15px; font-weight: 700; color: var(--ink-900); display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.prov-firm-badge {
  display: inline-flex; align-items: center; gap: 3px;
  font-size: 10px; font-weight: 700; color: var(--teal-dark);
  background: var(--teal-surface); border: 1px solid var(--teal-border);
  border-radius: var(--radius-full); padding: 2px 7px; letter-spacing: .2px;
}
.prov-firm-badge i { font-size: 10px; }
.prov-title  { font-size: 13px; color: var(--ink-500); margin-top: 2px; }
.prov-rating { display: flex; align-items: center; gap: 5px; margin-top: 6px; }
.prov-score  { font-size: 13px; font-weight: 700; color: var(--ink-900); }
.prov-stars  { color: var(--amber); font-size: 13px; }
.prov-count  { font-size: 12px; color: var(--ink-500); }
.prov-tags   { display: flex; gap: 6px; flex-wrap: wrap; padding: 0 20px 14px; }
.ptag        { background: var(--ink-50); border: 1px solid var(--ink-100); border-radius: var(--radius-full); padding: 3px 10px; font-size: 12px; color: var(--ink-700); }
.prov-footer { padding: 14px 20px; border-top: 1px solid var(--ink-100); display: flex; align-items: center; justify-content: space-between; }
.prov-price  { font-size: 13px; color: var(--ink-500); }
.prov-price strong { font-size: 15px; font-weight: 800; color: var(--ink-900); }
.prov-jobs   { font-size: 12px; color: var(--ink-500); }
.provider-note { text-align: center; margin-top: 24px; padding: 16px 24px; border-radius: var(--radius-lg); background: var(--ink-50); border: 1px solid var(--ink-100); font-size: 14px; color: var(--ink-500); }
.provider-note strong { color: var(--ink-800); }

/* Hizmet Veren katılım bandı */
.veren-band { background: linear-gradient(135deg, var(--teal-surface) 0%, #F0FDF4 100%); border-top: 1px solid var(--teal-border); border-bottom: 1px solid var(--teal-border); padding: var(--py-section) 0; }
.veren-band-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.vb-left h2 { font-size: 30px; font-weight: 800; color: var(--ink-900); letter-spacing: -.7px; margin-bottom: 12px; }
.vb-left h2 em { font-style: normal; color: var(--teal); }
.vb-left p  { font-size: 16px; color: var(--ink-500); line-height: 1.7; margin-bottom: 28px; max-width: 420px; }
.vb-stats   { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-bottom: 32px; }
.vb-stat    { background: var(--white); border: 1px solid var(--teal-border); border-radius: var(--radius); padding: 16px; text-align: center; }
.vb-stat .n { font-size: 22px; font-weight: 800; color: var(--teal); }
.vb-stat .l { font-size: 12px; color: var(--ink-500); margin-top: 3px; }
.vb-right   { background: var(--white); border: 1.5px solid var(--teal-border); border-radius: var(--radius-lg); padding: 28px; box-shadow: var(--shadow-sm); }
.vb-right h4 { font-size: 17px; font-weight: 700; color: var(--ink-900); margin-bottom: 16px; }
.vb-list    { display: flex; flex-direction: column; gap: 12px; margin-bottom: 24px; }
.vb-li      { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--ink-700); }
.vb-li .ico { color: var(--teal); font-size: 16px; }

/* Güven CTA bandı */
.trust-band { background: var(--green-surface); border-top: 1px solid var(--green-border); border-bottom: 1px solid var(--green-border); padding: var(--py-section) 0; text-align: center; }
.trust-band h2 { font-size: 32px; font-weight: 800; color: var(--ink-900); letter-spacing: -.8px; margin-bottom: 14px; }
.trust-band h2 em { font-style: normal; color: var(--green); }
.trust-band p { font-size: 16px; color: var(--ink-500); max-width: 640px; margin: 0 auto 36px; }
.trust-ctas { display: flex; gap: 14px; justify-content: center; }
.btn-trust-primary { padding: 15px 36px; border-radius: var(--radius-full); background: #FF4102 !important; color: white; font-family: var(--font); font-size: 16px; font-weight: 700; border: none; cursor: pointer; transition: background .2s; }
.btn-trust-primary:hover { background: #CC3402 !important; }
.btn-trust-outline { padding: 15px 36px; border-radius: var(--radius-full); background: white; color: var(--ink-700); font-family: var(--font); font-size: 16px; font-weight: 700; border: 1.5px solid var(--ink-100); cursor: pointer; }

/* ── PHOSPHOR İKON BOYUTLARI ── */
.sf-icon i               { font-size: 18px; color: var(--ink-400); display: block; }
.ti-icon i               { font-size: 15px; color: var(--green); }
.cat-icon i              { font-size: 22px; color: #fff; }
.cat-card.wide .cat-icon i { font-size: 26px; }
.cat-arr i               { font-size: 15px; color: rgba(255,255,255,.75); }
.cat-card:hover .cat-arr i { color: #fff; }
.step-ico i              { font-size: 36px; color: var(--green); }
.path-ico i              { font-size: 26px; }
.path-card.arayan .path-ico i { color: var(--green); }
.path-card.veren  .path-ico i { color: var(--teal); }
.vb-li .ico i            { font-size: 17px; color: var(--teal); }
.prov-jobs i             { font-size: 13px; color: var(--green); vertical-align: -1px; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { display: none; }
  .two-paths-grid { grid-template-columns: 1fr; }
  .path-card.veren { border-top: 4px solid var(--teal); }
  .cats-grid { grid-template-columns: repeat(2, 1fr); }
  .cat-card.wide { grid-column: span 2; }
  .providers-grid { grid-template-columns: 1fr 1fr; }
  .veren-band-inner { grid-template-columns: 1fr; }
  /* Touch targets ≥44px */
  .search-btn { min-height: 48px; }
  .btn-path-arayan, .btn-path-veren { min-height: 48px; }
  .btn-trust-primary, .btn-trust-outline { min-height: 52px; }
}
@media (max-width: 600px) {
  .hero h1 { font-size: 32px; }
  .search-box { flex-direction: column; border-radius: var(--radius); }
  .sf { border-right: none; border-bottom: 1.5px solid var(--ink-100); }
  .search-btn { padding: 14px; border-radius: 0 0 var(--radius) var(--radius); }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .providers-grid { grid-template-columns: 1fr; }
  .trust-ctas { flex-direction: column; align-items: stretch; }
  .trust-ctas button { width: 100%; }
  .sec-head { flex-direction: column; align-items: flex-start; gap: 8px; }
}
@media (max-width: 480px) {
  .hero { padding: 40px 0; }
  .hero h1 { font-size: 28px; letter-spacing: -.5px; }
  .hero-sub { font-size: var(--text-base); }
  .cat-card { min-height: 140px; }
  .cat-card.wide { min-height: 170px; }
  .cat-name { font-size: var(--text-base); }
  .step-card { padding: 20px 18px; }
  .stat-num { font-size: 28px; }
  .trust-band h2 { font-size: var(--text-4xl); }
  .vb-stat .n { font-size: var(--text-2xl); }
  .vb-stats { grid-template-columns: repeat(3, 1fr); gap: 12px; }
}
@media (max-width: 375px) {
  .cats-grid { gap: 10px; }
  .hero-trust { flex-direction: column; gap: 6px; }
  .cat-card.wide { min-height: 150px; }
}
