/* =========================================================================
   Kumpas Doktoru — Metroloji / hassas ölçüm temalı tasarım sistemi
   Yön: fırçalanmış çelik + grafit + pirinç (vernier) aksanı
   ========================================================================= */

:root {
  /* Renk paleti */
  --ink:       #16212B;  /* grafit — koyu metin & koyu bölümler */
  --ink-2:     #1C2A36;
  --ink-3:     #243646;
  --steel:     #47596B;  /* mavi-gri ikincil metin */
  --steel-2:   #7B8A97;
  --line:      #D8DEE3;  /* ince çizgiler */
  --mist:      #ECF0F2;  /* serin açık panel */
  --paper:     #F8FAFB;  /* zemin */
  --white:     #FFFFFF;
  --brass:     #C0871F;  /* imza aksanı — vernier pirinci */
  --brass-2:   #E0A436;  /* koyu zeminde parlak pirinç */
  --brass-tint:rgba(192,135,31,0.12);
  --wa:        #25D366;  /* WhatsApp — yalnızca eylem rengi */
  --wa-d:      #1FB457;

  /* Tipografi */
  --f-display: "Space Grotesk", system-ui, sans-serif;
  --f-body:    "IBM Plex Sans", system-ui, sans-serif;
  --f-mono:    "IBM Plex Mono", ui-monospace, monospace;

  /* Ölçü */
  --wrap: 1180px;
  --r: 14px;
  --r-sm: 9px;
  --shadow: 0 1px 2px rgba(22,33,43,.05), 0 12px 32px -12px rgba(22,33,43,.18);
  --shadow-lg: 0 30px 70px -30px rgba(22,33,43,.45);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: var(--f-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ---------- Yardımcılar ---------- */
.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }

.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 100;
  background: var(--ink); color: #fff; padding: 10px 16px; border-radius: 8px;
  font-weight: 600; font-size: 14px; transition: top .2s ease;
}
.skip-link:focus { top: 12px; outline: 2px solid var(--brass-2); outline-offset: 2px; }

.eyebrow {
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--brass);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 1px;
  background: var(--brass);
  display: inline-block;
}
.on-dark .eyebrow { color: var(--brass-2); }
.on-dark .eyebrow::before { background: var(--brass-2); }

h1, h2, h3 { font-family: var(--f-display); font-weight: 600; line-height: 1.08; letter-spacing: -.015em; margin: 0; }
.h-xl { font-size: clamp(2.6rem, 6vw, 4.6rem); }
.h-lg { font-size: clamp(2rem, 4vw, 3rem); }
.h-md { font-size: clamp(1.35rem, 2.4vw, 1.7rem); }

.lead { font-size: clamp(1.05rem, 1.6vw, 1.22rem); color: var(--steel); max-width: 56ch; }
.on-dark .lead { color: #AFC0CD; }

.section { padding: clamp(64px, 9vw, 120px) 0; }
.section-head { max-width: 640px; margin-bottom: clamp(36px, 5vw, 56px); }
.section-head p { margin: 16px 0 0; }

/* ---------- Cetvel / vernier motifi (imza) ---------- */
.ruler {
  height: 26px;
  background-image:
    repeating-linear-gradient(90deg, var(--line) 0 1px, transparent 1px 12px),
    repeating-linear-gradient(90deg, var(--steel-2) 0 1.5px, transparent 1.5px 60px);
  background-position: bottom;
  background-repeat: repeat-x;
  border-bottom: 1px solid var(--line);
  opacity: .9;
}
.ruler.brass {
  background-image:
    repeating-linear-gradient(90deg, rgba(255,255,255,.18) 0 1px, transparent 1px 12px),
    repeating-linear-gradient(90deg, var(--brass-2) 0 1.5px, transparent 1.5px 60px);
  border-bottom-color: rgba(255,255,255,.14);
}

/* ---------- Butonlar ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--f-body); font-weight: 600; font-size: 15px;
  padding: 14px 22px; border-radius: 999px;
  border: 1px solid transparent; cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn:hover { transform: translateY(-2px); }

.btn-wa { background: var(--wa); color: #062a14; box-shadow: 0 10px 24px -10px rgba(37,211,102,.7); }
.btn-wa:hover { background: var(--wa-d); }

.btn-dark { background: var(--ink); color: var(--white); }
.btn-dark:hover { background: var(--ink-3); }

.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--ink); }
.on-dark .btn-ghost { color: var(--white); border-color: rgba(255,255,255,.28); }
.on-dark .btn-ghost:hover { border-color: var(--white); background: rgba(255,255,255,.06); }

/* =========================================================================
   Header
   ========================================================================= */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(248,250,251,.82);
  backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.brand { display: flex; align-items: center; gap: 12px; font-family: var(--f-display); font-weight: 700; font-size: 1.18rem; letter-spacing: -.02em; }
.brand .mark {
  width: 38px; height: 38px; border-radius: 10px;
  background: var(--ink); color: var(--brass-2);
  display: grid; place-items: center; flex: none;
}
.brand .mark svg { width: 22px; height: 22px; }
.brand small { display: block; font-family: var(--f-mono); font-size: 10px; letter-spacing: .14em; color: var(--steel); font-weight: 400; text-transform: uppercase; margin-top: 1px; }
.brand-logo { height: 50px; width: auto; display: block; flex: none; }
.footer-brand { display: inline-flex; margin-bottom: 18px; }
.brand-logo-lg { height: 82px; width: auto; display: block; }
@media (max-width: 760px) { .brand-logo { height: 44px; } .brand small { display: none; } }

.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  padding: 9px 14px; border-radius: 8px; font-size: 15px; font-weight: 500; color: var(--steel);
  transition: color .15s, background .15s;
}
.nav-links a:hover { color: var(--ink); background: var(--mist); }
.nav-links a.active { color: var(--ink); }
.nav-links a.active::after { content: ""; display:block; height:2px; background: var(--brass); border-radius:2px; margin-top:4px; }

.nav-cta { display: flex; align-items: center; gap: 10px; }
.nav-tel { font-family: var(--f-mono); font-weight: 500; font-size: 14px; color: var(--ink); display: inline-flex; align-items: center; gap: 8px; }
.nav-tel svg { width: 16px; height: 16px; color: var(--brass); }

.nav-toggle { display: none; background: none; border: 1px solid var(--line); border-radius: 9px; width: 44px; height: 44px; cursor: pointer; }
.nav-toggle span { display:block; width:20px; height:2px; background: var(--ink); margin: 4px auto; transition: .25s; }

/* =========================================================================
   Hero
   ========================================================================= */
.hero { position: relative; background: var(--ink); color: var(--white); overflow: hidden; }
.hero::before {
  content:""; position:absolute; inset:0;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(120% 100% at 70% 0%, #000 35%, transparent 80%);
}
.hero::after {
  content:""; position:absolute; width:520px; height:520px; right:-120px; top:-140px;
  background: radial-gradient(circle, var(--brass-tint), transparent 60%);
  pointer-events:none;
}
.hero-inner { position: relative; display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center; padding: clamp(56px, 8vw, 96px) 0 clamp(64px, 8vw, 104px); }
.hero h1 { color: var(--white); }
.hero h1 .accent { color: var(--brass-2); }
.hero .lead { margin: 22px 0 32px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }

.hero-meta { display: flex; gap: 28px; margin-top: 40px; flex-wrap: wrap; }
.hero-meta .item { }
.hero-meta .num { font-family: var(--f-display); font-size: 1.5rem; font-weight: 600; color: var(--brass-2); }
.hero-meta .lbl { font-family: var(--f-mono); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: #93A5B2; margin-top: 2px; }

/* Animasyonlu kumpas */
.caliper-wrap { position: relative; }
.readout {
  position: absolute; top: -6px; left: 50%; transform: translateX(-50%);
  background: #0B1218; border: 1px solid var(--ink-3); border-radius: 10px;
  padding: 10px 16px; font-family: var(--f-mono); display:flex; align-items:baseline; gap:6px;
  box-shadow: inset 0 0 0 1px rgba(224,164,54,.15);
}
.readout .val { color: #8FE39B; font-size: 1.7rem; font-weight: 500; letter-spacing: .02em; text-shadow: 0 0 12px rgba(143,227,155,.45); }
.readout .unit { color: var(--steel-2); font-size: .85rem; }

/* =========================================================================
   Hizmet kartları
   ========================================================================= */
.grid { display: grid; gap: 20px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--r);
  padding: 28px; transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  position: relative; overflow: hidden;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: #C3CDD4; }
.card .ico {
  width: 50px; height: 50px; border-radius: 12px; background: var(--mist); color: var(--ink);
  display: grid; place-items: center; margin-bottom: 18px;
}
.card .ico svg { width: 26px; height: 26px; }
.card:hover .ico { background: var(--ink); color: var(--brass-2); }
.card h3 { font-size: 1.18rem; margin-bottom: 8px; }
.card p { margin: 0; color: var(--steel); font-size: .96rem; }
.card .idx { position: absolute; top: 18px; right: 22px; font-family: var(--f-mono); font-size: 12px; color: var(--steel-2); letter-spacing: .1em; }

/* =========================================================================
   Neden biz (özellik satırı)
   ========================================================================= */
.feat { display: flex; gap: 16px; align-items: flex-start; }
.feat .dot { flex: none; width: 40px; height: 40px; border-radius: 10px; background: var(--brass-tint); color: var(--brass); display: grid; place-items: center; }
.feat .dot svg { width: 22px; height: 22px; }
.feat h3 { font-size: 1.08rem; margin-bottom: 4px; }
.feat p { margin: 0; color: var(--steel); font-size: .95rem; }

/* =========================================================================
   Süreç (gerçek sıralama → numaralı işaretler haklı)
   ========================================================================= */
.process { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; position: relative; counter-reset: step; }
.process .step { padding: 28px 22px 26px; border-top: 2px solid var(--line); position: relative; }
.process .step::before {
  counter-increment: step; content: "0" counter(step);
  font-family: var(--f-mono); font-size: 13px; font-weight: 500; color: var(--brass);
  position: absolute; top: -12px; left: 22px; background: var(--paper); padding-right: 8px;
}
.process .step::after {
  content:""; position:absolute; top:-6px; left:22px; width:9px; height:9px; border-radius:50%;
  background: var(--brass); transform: translateY(-100%);
}
.process .step h3 { font-size: 1.1rem; margin-bottom: 6px; }
.process .step p { margin: 0; color: var(--steel); font-size: .92rem; }

/* =========================================================================
   Güven / TÜRKAK bandı
   ========================================================================= */
.band { background: var(--ink); color: var(--white); border-radius: 22px; padding: clamp(36px, 5vw, 56px); position: relative; overflow: hidden; }
.band::after { content:""; position:absolute; right:-80px; bottom:-80px; width:320px; height:320px; background: radial-gradient(circle, var(--brass-tint), transparent 65%); }
.band h2 { color: var(--white); }
.band .lead { color: #AFC0CD; }

.stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.stat { background: var(--white); border: 1px solid var(--line); border-radius: var(--r); padding: 24px; text-align: left; }
.stat .n { font-family: var(--f-display); font-size: clamp(1.8rem,3vw,2.4rem); font-weight: 600; color: var(--ink); line-height:1; }
.stat .n span { color: var(--brass); }
.stat .l { font-size: .9rem; color: var(--steel); margin-top: 8px; }

/* =========================================================================
   CTA bölümü
   ========================================================================= */
.cta-final { text-align: center; }
.cta-final .actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 28px; }

/* =========================================================================
   İletişim
   ========================================================================= */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; align-items: start; }
.contact-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--r); padding: 30px; }
.contact-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 4px; }
.contact-list li { display: flex; gap: 16px; align-items: center; padding: 16px 0; border-bottom: 1px solid var(--line); }
.contact-list li:last-child { border-bottom: 0; }
.contact-list .ci { flex: none; width: 44px; height: 44px; border-radius: 11px; background: var(--mist); display: grid; place-items: center; color: var(--ink); }
.contact-list .ci svg { width: 22px; height: 22px; }
.contact-list .k { font-family: var(--f-mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--steel-2); }
.contact-list .v { font-weight: 600; font-size: 1.05rem; }

.form { display: grid; gap: 16px; }
.field { display: grid; gap: 7px; }
.field label { font-size: 13px; font-weight: 600; color: var(--ink); }
.field input, .field textarea, .field select {
  font-family: var(--f-body); font-size: 15px; padding: 13px 14px; border: 1px solid var(--line);
  border-radius: var(--r-sm); background: var(--paper); color: var(--ink); width: 100%;
  transition: border-color .15s, box-shadow .15s;
}
.field textarea { resize: vertical; min-height: 120px; }
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--brass); box-shadow: 0 0 0 3px var(--brass-tint);
}
.form-note { font-size: 13px; color: var(--steel); }

/* Harita / çalışma saatleri */
.hours { list-style:none; margin:0; padding:0; }
.hours li { display:flex; justify-content:space-between; padding:10px 0; border-bottom:1px dashed var(--line); font-size:.95rem; }
.hours li:last-child { border-bottom:0; }
.hours .d { color: var(--steel); }
.hours .t { font-family: var(--f-mono); font-weight:500; }

/* =========================================================================
   Sayfa başlığı (alt sayfalar)
   ========================================================================= */
.page-hero { background: var(--ink); color: var(--white); position: relative; overflow: hidden; }
.page-hero::before {
  content:""; position:absolute; inset:0;
  background-image: linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 44px 44px; mask-image: linear-gradient(90deg,#000,transparent 70%);
}
.page-hero .inner { position: relative; padding: clamp(56px,7vw,88px) 0; }
.page-hero h1 { color: var(--white); }
.page-hero .lead { color: #AFC0CD; margin-top: 16px; }
.crumb { font-family: var(--f-mono); font-size: 12px; letter-spacing: .12em; color: var(--steel-2); text-transform: uppercase; margin-bottom: 18px; }
.crumb a:hover { color: var(--brass-2); }

/* Detay hizmet listesi */
.svc { display:grid; grid-template-columns: 64px 1fr; gap: 24px; padding: 32px 0; border-top: 1px solid var(--line); }
.svc:first-child { border-top: 0; }
.svc .num { font-family: var(--f-mono); font-size: 14px; color: var(--brass); padding-top: 6px; }
.svc h3 { font-size: 1.4rem; margin-bottom: 10px; }
.svc p { margin: 0 0 14px; color: var(--steel); max-width: 64ch; }
.svc ul { margin: 0; padding: 0; list-style: none; display: flex; flex-wrap: wrap; gap: 8px; }
.svc ul li { font-family: var(--f-mono); font-size: 12px; background: var(--mist); color: var(--ink-3); padding: 6px 12px; border-radius: 999px; }

/* Hakkımızda blokları */
.about-grid { display:grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items:center; }
.note-box { background: var(--brass-tint); border: 1px solid rgba(192,135,31,.3); border-radius: var(--r); padding: 22px 24px; }
.note-box strong { color: var(--brass); }
.value-list { list-style:none; margin:24px 0 0; padding:0; display:grid; gap:14px; }
.value-list li { display:flex; gap:12px; align-items:flex-start; }
.value-list svg { width:22px; height:22px; color: var(--brass); flex:none; margin-top:2px; }

/* =========================================================================
   SSS (akordeon)
   ========================================================================= */
.faq { max-width: 820px; margin: 0 auto; }
.faq details {
  border: 1px solid var(--line); border-radius: var(--r); background: var(--white);
  margin-bottom: 14px; overflow: hidden; transition: border-color .2s, box-shadow .2s;
}
.faq details[open] { border-color: #C3CDD4; box-shadow: var(--shadow); }
.faq summary {
  list-style: none; cursor: pointer; padding: 22px 24px; display: flex; align-items: center;
  gap: 16px; font-family: var(--f-display); font-weight: 600; font-size: 1.08rem; color: var(--ink);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary .q { font-family: var(--f-mono); font-size: 13px; color: var(--brass); flex: none; }
.faq summary .plus { margin-left: auto; flex: none; width: 24px; height: 24px; position: relative; transition: transform .25s; }
.faq summary .plus::before, .faq summary .plus::after {
  content: ""; position: absolute; top: 50%; left: 50%; background: var(--steel);
  transform: translate(-50%,-50%); transition: opacity .2s;
}
.faq summary .plus::before { width: 14px; height: 2px; }
.faq summary .plus::after { width: 2px; height: 14px; }
.faq details[open] summary .plus { transform: rotate(90deg); }
.faq details[open] summary .plus::after { opacity: 0; }
.faq details:focus-within summary { outline: none; }
.faq summary:focus-visible { outline: 2px solid var(--brass); outline-offset: -2px; border-radius: var(--r); }
.faq .a { padding: 0 24px 22px 64px; color: var(--steel); margin: 0; }
@media (max-width: 540px) { .faq .a { padding-left: 24px; } }

/* Harita / adres */
.map-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 28px; align-items: stretch; }
.map-grid .info { background: var(--white); border: 1px solid var(--line); border-radius: var(--r); padding: 30px; }
.map-frame { border-radius: var(--r); overflow: hidden; border: 1px solid var(--line); min-height: 320px; background: var(--mist); }
.map-frame iframe { width: 100%; height: 100%; min-height: 320px; border: 0; display: block; }
.map-placeholder { display: grid; place-items: center; height: 100%; min-height: 320px; text-align: center; color: var(--steel); padding: 24px; }
.map-placeholder svg { width: 40px; height: 40px; color: var(--steel-2); margin-bottom: 12px; }
@media (max-width: 760px) { .map-grid { grid-template-columns: 1fr; } }

/* =========================================================================
   Footer
   ========================================================================= */
.site-footer { background: var(--ink); color: #B7C5D0; padding: 64px 0 28px; margin-top: 0; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 36px; }
.site-footer .brand { color: var(--white); margin-bottom: 16px; }
.site-footer .foot-h { font-family: var(--f-mono); font-size: 12px; letter-spacing: .16em; text-transform: uppercase; color: var(--steel-2); margin: 0 0 16px; font-weight: 500; }
.site-footer ul { list-style:none; margin:0; padding:0; display:grid; gap:10px; }
.site-footer a:hover { color: var(--brass-2); }
.site-footer p { margin: 0; font-size: .92rem; }
.footer-bottom { display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:12px; border-top:1px solid var(--ink-3); margin-top:48px; padding-top:24px; font-size:.85rem; color: var(--steel-2); }
.footer-bottom .ruler { width: 100%; }

/* =========================================================================
   Sabit WhatsApp butonu (her sayfada — en önemli öğe)
   ========================================================================= */
.wa-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 80;
  display: inline-flex; align-items: center; gap: 12px;
  background: var(--wa); color: #062a14; font-weight: 700; font-size: 15px;
  padding: 14px 20px 14px 16px; border-radius: 999px;
  box-shadow: 0 14px 34px -10px rgba(37,211,102,.6);
  transition: transform .2s ease, box-shadow .2s ease;
}
.wa-float:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 18px 40px -10px rgba(37,211,102,.75); }
.wa-float svg { width: 26px; height: 26px; }
.wa-float .pulse { position: relative; display: grid; place-items: center; }
.wa-float .pulse::after {
  content:""; position:absolute; inset:-6px; border-radius:50%; border:2px solid var(--wa);
  animation: pulse 2.2s ease-out infinite;
}
@keyframes pulse { 0%{transform:scale(.8);opacity:.7} 100%{transform:scale(1.8);opacity:0} }
@media (prefers-reduced-motion: reduce){ .wa-float .pulse::after{ animation: none; } }

/* =========================================================================
   Scroll reveal
   ========================================================================= */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce){ .reveal { opacity:1; transform:none; transition:none; } }

/* =========================================================================
   Responsive
   ========================================================================= */
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; gap: 36px; }
  .caliper-wrap { max-width: 520px; }
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .process { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(2,1fr); }
  .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
}

@media (max-width: 760px) {
  .nav-links, .nav-tel { display: none; }
  .nav-toggle { display: block; }
  .site-header.open .nav-links {
    display: flex; flex-direction: column; align-items: stretch; gap: 2px;
    position: absolute; top: 72px; left: 0; right: 0; background: var(--paper);
    border-bottom: 1px solid var(--line); padding: 12px 20px 20px; box-shadow: var(--shadow);
  }
  .site-header.open .nav-links a { padding: 13px 12px; font-size: 16px; }
  .site-header.open .nav-links a.active::after { display: none; }
  .nav-cta .btn:not(.nav-toggle) { display:none; }
}

@media (max-width: 540px) {
  .grid-3, .grid-4, .grid-2 { grid-template-columns: 1fr; }
  .process { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .svc { grid-template-columns: 1fr; gap: 10px; }
  .svc .num { padding-top: 0; }
  .wa-float span.txt { display: none; }
  .wa-float { padding: 14px; }
  .hero-meta { gap: 20px; }
}
