/* =============================================
   TOPRAK OTO KURTARICI — v4
   Design: Clean Professional / Light
   Font: DM Sans (tek font, ağırlık hiyerarşisi)
   ============================================= */

:root {
  --white:      #ffffff;
  --bg:         #f6f5f2;
  --bg2:        #eeece8;
  --ink:        #0f1621;
  --ink-2:      #374151;
  --ink-3:      #6b7280;
  --ink-4:      #9ca3af;
  --red:        #c0301a;
  --red-light:  rgba(192,48,26,0.07);
  --red-mid:    rgba(192,48,26,0.18);
  --border:     #e2deda;
  --border-2:   #ccc9c4;

  --ff: 'DM Sans', system-ui, sans-serif;
  --r:    8px;
  --r-lg: 14px;
  --r-xl: 20px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--ff);
  background: var(--white);
  color: var(--ink);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
img, svg { max-width: 100%; display: block; }
button { font-family: var(--ff); cursor: pointer; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 28px; }
.sec { padding: 96px 0; }

/* ===== TYPOGRAPHY ===== */
.sec-title {
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.5px;
  color: var(--ink);
  margin-bottom: 18px;
}
.sec-title em, .sec-title span[style] { color: var(--red); font-style: normal; }

.eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--red);
}

.section-header { margin-bottom: 52px; }
.section-header.center { text-align: center; }
.section-header.center .eyebrow { display: block; }
.section-header p { color: var(--ink-3); font-size: 16px; max-width: 540px; line-height: 1.7; }
.section-header.center p { margin: 0 auto; }

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--red);
  color: var(--white);
  padding: 13px 26px;
  border-radius: var(--r);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.1px;
  border: none;
  cursor: pointer;
  transition: background .18s, transform .18s, box-shadow .18s;
  box-shadow: 0 4px 14px rgba(192,48,26,0.22);
}
.btn-primary:hover { background: #a8271a; transform: translateY(-1px); box-shadow: 0 8px 22px rgba(192,48,26,0.28); }
.btn-primary.btn-full { width: 100%; justify-content: center; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--ink);
  padding: 12px 24px;
  border-radius: var(--r);
  font-weight: 600;
  font-size: 15px;
  border: 1.5px solid var(--border-2);
  transition: border-color .18s, background .18s;
}
.btn-ghost:hover { border-color: var(--ink-3); background: var(--bg); }

/* ===== EMERGENCY FLOAT ===== */
.ef {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 1000;
  display: flex;
  align-items: center;
  gap: 9px;
  background: var(--red);
  color: #fff;
  padding: 12px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  box-shadow: 0 8px 28px rgba(192,48,26,0.38);
  transition: transform .2s;
}
.ef:hover { transform: translateY(-3px); }
.ef-ring {
  position: absolute; inset: -5px;
  border-radius: 50px;
  border: 2px solid var(--red);
  animation: ef-pulse 2s ease-out infinite;
  pointer-events: none;
}
@keyframes ef-pulse { 0%{transform:scale(1);opacity:.7} 100%{transform:scale(1.45);opacity:0} }

/* ===== HEADER ===== */
#header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  padding: 16px 0;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, padding .3s, box-shadow .3s;
}
#header.scrolled {
  border-bottom-color: var(--border);
  padding: 12px 0;
  box-shadow: 0 2px 18px rgba(0,0,0,0.06);
}
.hdr { display: flex; align-items: center; gap: 20px; }

.logo { display: flex; align-items: center; gap: 0; flex-shrink: 0; }
.logo-accent { font-size: 22px; font-weight: 900; color: var(--red); line-height: 1; }
.logo-name   { font-size: 22px; font-weight: 900; color: var(--ink); line-height: 1; }
.logo-sep    { color: var(--border-2); font-size: 16px; font-weight: 300; margin: 0 8px; }
.logo-sub    { font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--ink-3); }

#nav { margin-left: auto; }
#nav ul { display: flex; gap: 2px; list-style: none; }
.nav-link {
  padding: 7px 11px;
  border-radius: var(--r);
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-3);
  transition: color .18s, background .18s;
}
.nav-link:hover, .nav-link.active { color: var(--ink); background: var(--bg); }

.hdr-tel {
  display: flex; align-items: center; gap: 7px;
  background: var(--red); color: #fff;
  padding: 9px 16px; border-radius: var(--r);
  font-size: 14px; font-weight: 700;
  white-space: nowrap; transition: background .18s;
}
.hdr-tel:hover { background: #a8271a; }

.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; padding: 6px; margin-left: auto; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: all .3s; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  padding: 130px 0 90px;
  background: var(--white);
  position: relative; overflow: hidden;
}
.hero-bg {
  position: absolute; top: 0; right: 0;
  width: 52%; height: 100%;
  background: var(--bg);
  clip-path: polygon(8% 0, 100% 0, 100% 100%, 0% 100%);
  pointer-events: none;
}
.hero-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
  position: relative;
}

.hero-pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: #f0fdf4; border: 1px solid #86efac; color: #15803d;
  padding: 6px 14px; border-radius: 50px;
  font-size: 12px; font-weight: 600;
  margin-bottom: 24px;
  animation: fade-up .5s ease both;
}
.pill-dot { width: 7px; height: 7px; background: #22c55e; border-radius: 50%; animation: dot-blink 1.6s ease-in-out infinite; }
@keyframes dot-blink { 0%,100%{opacity:1} 50%{opacity:.15} }

.hero-title {
  font-size: clamp(52px, 7.5vw, 88px);
  font-weight: 900;
  line-height: 0.96;
  letter-spacing: -2.5px;
  color: var(--ink);
  margin-bottom: 22px;
  animation: fade-up .5s ease .08s both;
}
.hero-title em { color: var(--red); font-style: normal; display: block; }

.hero-body {
  font-size: 16px; color: var(--ink-2);
  max-width: 440px; margin-bottom: 32px;
  line-height: 1.75;
  animation: fade-up .5s ease .16s both;
}
.hero-body strong { color: var(--ink); font-weight: 700; }

.hero-phone-wrap {
  background: var(--red-light);
  border: 1.5px solid var(--red-mid);
  border-radius: var(--r-lg);
  padding: 20px 24px;
  margin-bottom: 26px;
  animation: fade-up .5s ease .22s both;
}
.hpw-label {
  display: block; font-size: 11px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--red); margin-bottom: 6px;
}
.hpw-num {
  display: block;
  font-size: clamp(26px, 3.5vw, 34px);
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -1px;
  margin-bottom: 4px;
  transition: color .2s;
  font-variant-numeric: tabular-nums;
}
.hpw-num:hover { color: var(--red); }
.hpw-note { font-size: 12.5px; color: var(--ink-3); font-weight: 500; }

.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; animation: fade-up .5s ease .28s both; }

/* Stats card */
.stats-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-xl);
  padding: 28px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.07);
  animation: fade-up .6s ease .2s both;
}
.sc-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  margin-bottom: 20px;
}
.sc-item {
  padding: 18px 16px;
  border-bottom: 1px solid var(--border);
  border-right: 1px solid var(--border);
}
.sc-item:nth-child(2), .sc-item:nth-child(4) { border-right: none; }
.sc-item:nth-child(3), .sc-item:nth-child(4) { border-bottom: none; }

.sc-num {
  font-size: 32px; font-weight: 800;
  color: var(--red); line-height: 1; display: inline;
  font-variant-numeric: tabular-nums;
}
.sc-suf { font-size: 18px; font-weight: 700; color: var(--red); }
.sc-lbl { display: block; font-size: 12px; color: var(--ink-3); margin-top: 5px; font-weight: 500; }
.sc-trust { display: flex; flex-wrap: wrap; gap: 7px; }
.sc-trust span {
  font-size: 12px; font-weight: 600; color: var(--ink-2);
  background: var(--bg); padding: 6px 10px;
  border-radius: 6px; border: 1px solid var(--border);
}
.coverage-note {
  margin-top: 14px; font-size: 12.5px; color: var(--ink-3); line-height: 1.65;
  animation: fade-up .6s ease .28s both;
}
.coverage-note strong { color: var(--ink-2); font-weight: 600; }

/* ===== URGENCY STRIP ===== */
.urgency { background: var(--ink); padding: 14px 0; }
.urg-inner { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.urg-dot { width: 7px; height: 7px; background: #22c55e; border-radius: 50%; flex-shrink: 0; animation: dot-blink 1.6s ease-in-out infinite; }
.urgency p { color: rgba(255,255,255,.75); font-size: 14px; flex: 1; }
.urgency p strong { color: #fff; font-weight: 700; }
.urg-btn {
  background: var(--red); color: #fff;
  padding: 9px 18px; border-radius: var(--r);
  font-weight: 700; font-size: 13px; white-space: nowrap; transition: background .18s;
}
.urg-btn:hover { background: #a8271a; }

/* ===== ABOUT ===== */
.about { background: var(--white); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.about-lead { font-size: 16px; color: var(--ink-2); margin-bottom: 14px; line-height: 1.75; }
.about-body { color: var(--ink-3); font-size: 14.5px; margin-bottom: 34px; line-height: 1.8; }

.av-list { display: flex; flex-direction: column; }
.av { display: flex; gap: 18px; align-items: flex-start; padding: 20px 0; border-bottom: 1px solid var(--border); }
.av:first-child { border-top: 1px solid var(--border); }
.av-n {
  font-size: 11px; font-weight: 700; color: var(--ink-4); letter-spacing: 0.5px;
  background: var(--bg); border: 1px solid var(--border); border-radius: 6px;
  width: 30px; height: 24px; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 1px;
}
.av h3 { font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.av p { color: var(--ink-3); font-size: 13.5px; line-height: 1.65; }

/* ===== SERVICES ===== */
.services { background: var(--bg); position: relative; }
.svc-bg { position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--red); }
.svc-table { display: flex; flex-direction: column; margin-bottom: 38px; }
.svc-row {
  display: grid;
  grid-template-columns: 38px 1fr auto auto;
  gap: 0 22px; align-items: center;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
  transition: background .18s, padding .18s, margin .18s;
  position: relative;
}
.svc-row:first-child { border-top: 1px solid var(--border); }
.svc-row:hover { background: var(--bg2); margin: 0 -28px; padding: 24px 28px; }
.svc-highlight { background: var(--white); }
.svc-highlight:hover { background: #fafaf8; }

.sr-num {
  font-size: 11px; font-weight: 700; color: var(--ink-4); letter-spacing: 0.5px;
  background: var(--white); border: 1px solid var(--border); border-radius: 6px;
  width: 30px; height: 26px; display: flex; align-items: center; justify-content: center;
}
.svc-highlight .sr-num { background: var(--bg); }
.sr-main h3 {
  font-size: 17px; font-weight: 700; margin-bottom: 5px;
  display: flex; align-items: center; gap: 10px;
}
.sr-badge {
  font-size: 10px; font-weight: 700; background: var(--red); color: #fff;
  padding: 3px 8px; border-radius: 4px; letter-spacing: 0.3px; text-transform: uppercase;
}
.sr-main p { color: var(--ink-3); font-size: 13.5px; line-height: 1.6; }
.sr-tags { display: flex; gap: 5px; flex-wrap: wrap; justify-content: flex-end; }
.sr-tags span {
  font-size: 11px; font-weight: 600; background: var(--white); border: 1px solid var(--border);
  color: var(--ink-3); padding: 4px 9px; border-radius: 4px; white-space: nowrap;
}
.svc-highlight .sr-tags span { background: var(--bg); }
.sr-cta { font-size: 14px; font-weight: 700; color: var(--red); white-space: nowrap; transition: letter-spacing .2s; }
.sr-cta:hover { letter-spacing: 0.3px; }

.svc-footer {
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding: 26px 30px; background: var(--ink); border-radius: var(--r-lg); flex-wrap: wrap;
}
.svc-footer p { color: rgba(255,255,255,.65); font-size: 14.5px; }

/* ===== WHY ===== */
.why { background: var(--white); }
.why-layout { display: grid; grid-template-columns: 1fr 1.8fr; gap: 80px; align-items: start; }
.why-left { position: sticky; top: 100px; }
.why-right { display: flex; flex-direction: column; }
.wi { display: flex; gap: 18px; align-items: flex-start; padding: 22px 0; border-bottom: 1px solid var(--border); }
.wi:first-child { border-top: 1px solid var(--border); }
.wi-n {
  font-size: 11px; font-weight: 700; color: var(--ink-4); letter-spacing: 0.5px;
  background: var(--bg); border: 1px solid var(--border); border-radius: 6px;
  width: 30px; height: 24px; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 1px;
}
.wi h3 { font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.wi p { color: var(--ink-3); font-size: 13.5px; line-height: 1.65; }

/* ===== AREAS ===== */
.areas { background: var(--bg); }
.areas-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--border);
  border: 1px solid var(--border); border-radius: var(--r-lg); overflow: hidden;
}
.area-card {
  display: flex; flex-direction: column; gap: 3px;
  padding: 22px 20px; background: var(--white); transition: background .18s;
}
.area-card:hover { background: var(--bg); }
.area-card h3 { font-size: 14px; font-weight: 700; color: var(--ink); margin-bottom: 3px; }
.area-card p { font-size: 12.5px; color: var(--ink-3); flex: 1; line-height: 1.5; }
.area-card > span { font-size: 16px; color: var(--red); margin-top: 8px; display: block; transition: transform .18s; }
.area-card:hover > span { transform: translateX(4px); }

/* ===== REVIEWS ===== */
.reviews { background: var(--white); }
.rating-row {
  display: flex; gap: 48px; align-items: center;
  padding: 32px 36px; background: var(--bg);
  border-radius: var(--r-xl); border: 1px solid var(--border);
  margin-bottom: 44px; flex-wrap: wrap;
}
.rr-score { text-align: center; min-width: 120px; }
.rr-num { display: block; font-size: 56px; font-weight: 800; color: var(--red); line-height: 1; font-variant-numeric: tabular-nums; }
.rr-stars { color: #f59e0b; font-size: 18px; letter-spacing: 2px; display: block; margin: 5px 0 4px; }
.rr-count { font-size: 13px; color: var(--ink-3); font-weight: 500; }
.rr-bars { flex: 1; display: flex; flex-direction: column; gap: 7px; }
.rr-bar { display: flex; align-items: center; gap: 10px; }
.rr-bar > span { font-size: 12px; color: var(--ink-3); width: 22px; text-align: right; flex-shrink: 0; font-weight: 500; }
.rr-bar > span:last-child { width: 30px; text-align: left; }
.rr-track { flex: 1; height: 6px; background: var(--border); border-radius: 4px; overflow: hidden; }
.rr-fill { height: 100%; background: #f59e0b; border-radius: 4px; }

.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.rv-card {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--r-lg); padding: 22px;
  transition: border-color .2s, box-shadow .2s;
}
.rv-card:hover { border-color: var(--border-2); box-shadow: 0 4px 18px rgba(0,0,0,0.06); }
.rv-head { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.rv-av {
  width: 38px; height: 38px; background: var(--bg); border: 1.5px solid var(--border);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700; color: var(--ink-2); flex-shrink: 0;
}
.rv-head > div:nth-child(2) { flex: 1; }
.rv-head strong { display: block; font-size: 13.5px; font-weight: 700; }
.rv-head span { font-size: 12px; color: var(--ink-3); }
.rv-stars { color: #f59e0b; font-size: 12px; letter-spacing: 1px; flex-shrink: 0; }
.rr-gmaps-link {
  display: inline-flex; align-items: center; gap: 5px;
  margin-top: 10px; font-size: 12px; font-weight: 700;
  color: var(--red); transition: gap .18s;
}
.rr-gmaps-link:hover { gap: 8px; }

.rv-cta-card {
  display: flex; align-items: center; justify-content: center;
  background: var(--bg);
  border: 2px dashed var(--border-2);
}
.rv-cta-inner {
  text-align: center; padding: 8px;
}
.rv-cta-stars { color: #f59e0b; font-size: 22px; letter-spacing: 3px; margin-bottom: 10px; }
.rv-cta-inner p { font-size: 14px; font-weight: 600; color: var(--ink-2); margin-bottom: 14px; }
.rv-cta-note { display: block; font-size: 11.5px; color: var(--ink-3); margin-top: 10px; }

.rv-card blockquote { font-size: 13.5px; color: var(--ink-2); line-height: 1.7; font-style: italic; }

/* ===== FAQ ===== */
.faq { background: var(--bg); }
.faq-layout { display: grid; grid-template-columns: 1fr 1.8fr; gap: 80px; align-items: start; }
.faq-left { position: sticky; top: 100px; }
.faq-left p { color: var(--ink-3); font-size: 15px; }
.faq-items { display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding: 18px 0; background: none; border: none;
  color: var(--ink); font-size: 14.5px; font-weight: 600; text-align: left; cursor: pointer; transition: color .18s;
}
.faq-q:hover { color: var(--red); }
.faq-q[aria-expanded="true"] { color: var(--red); }
.faq-q[aria-expanded="true"] .fi { transform: rotate(45deg); color: var(--red); }
.fi { transition: transform .3s, color .3s; color: var(--ink-3); flex-shrink: 0; }
.faq-a { padding-bottom: 18px; }
.faq-a p { color: var(--ink-3); font-size: 14px; line-height: 1.75; }
.faq-a p strong { color: var(--ink); font-weight: 700; }
.faq-a a { color: var(--red); font-weight: 600; }

/* ===== CONTACT ===== */
.contact { background: var(--white); }
.contact-layout { display: grid; grid-template-columns: 1fr 1.4fr; gap: 52px; align-items: start; }
.cp-block {
  background: var(--red-light); border: 1.5px solid var(--red-mid);
  border-radius: var(--r-lg); padding: 26px; margin-bottom: 22px;
}
.cpb-lbl { display: block; font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--red); margin-bottom: 8px; }
.cpb-tel {
  display: block; font-size: 30px; font-weight: 800; color: var(--ink);
  letter-spacing: -1px; margin-bottom: 5px; transition: color .2s;
  font-variant-numeric: tabular-nums;
}
.cpb-tel:hover { color: var(--red); }
.cpb-note { font-size: 12.5px; color: var(--ink-3); font-weight: 500; }

.ci-list { display: flex; flex-direction: column; margin-bottom: 22px; }
.ci { display: flex; align-items: flex-start; padding: 13px 0; border-bottom: 1px solid var(--border); }
.ci:first-child { border-top: 1px solid var(--border); }
.ci-l { font-size: 11.5px; font-weight: 700; color: var(--ink-3); text-transform: uppercase; letter-spacing: 0.5px; width: 120px; flex-shrink: 0; margin-top: 1px; }
.ci-v { font-size: 13.5px; color: var(--ink); font-weight: 500; }
.ci-v:is(a):hover { color: var(--red); }
.maps-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 600;
  color: var(--red);
  margin-bottom: 10px;
  transition: gap .18s;
}
.maps-link:hover { gap: 10px; }
.maps-link svg { flex-shrink: 0; }

.map-wrap iframe { display: block; border-radius: var(--r-lg); border: 1px solid var(--border); }

.contact-right {
  background: var(--bg); border-radius: var(--r-xl);
  border: 1.5px solid var(--border); padding: 36px;
}
.contact-right h3 { font-size: 22px; font-weight: 800; margin-bottom: 8px; }
.contact-right > p { color: var(--ink-3); font-size: 14px; margin-bottom: 26px; line-height: 1.65; }
.contact-right > p strong { color: var(--red); font-weight: 700; }

.cf { display: flex; flex-direction: column; gap: 14px; }
.cf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.cf-g { display: flex; flex-direction: column; gap: 5px; }
.cf-g label { font-size: 12.5px; font-weight: 600; color: var(--ink-2); }
.cf-g label span { color: var(--red); }
.cf-g input, .cf-g select, .cf-g textarea {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--r); padding: 11px 13px;
  color: var(--ink); font-family: var(--ff); font-size: 14px;
  outline: none; transition: border-color .18s, box-shadow .18s;
  -webkit-font-smoothing: antialiased;
}
.cf-g input:focus, .cf-g select:focus, .cf-g textarea:focus {
  border-color: var(--red); box-shadow: 0 0 0 3px var(--red-light);
}
.cf-g input::placeholder, .cf-g textarea::placeholder { color: var(--ink-4); }
.cf-g select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 13px center; padding-right: 34px; }
.cf-g textarea { resize: vertical; min-height: 108px; }

.form-status { font-size: 13px; padding: 12px; border-radius: var(--r); text-align: center; display: none; margin-top: 4px; }
.form-status.success { background: #f0fdf4; color: #15803d; border: 1px solid #86efac; display: block; }
.form-status.error { background: #fef2f2; color: var(--red); border: 1px solid #fca5a5; display: block; }

/* ===== FOOTER ===== */
.footer { background: var(--ink); padding: 64px 0 0; }
.footer-top {
  display: grid; grid-template-columns: 1.5fr 2fr;
  gap: 60px; margin-bottom: 56px;
  padding-bottom: 56px; border-bottom: 1px solid rgba(255,255,255,.08);
}
.ft-brand .logo-accent { color: var(--red); }
.ft-brand .logo-name  { color: #fff; }
.ft-brand .logo-sep   { color: rgba(255,255,255,.18); }
.ft-brand .logo-sub   { color: rgba(255,255,255,.35); }
.ft-brand p { color: rgba(255,255,255,.45); font-size: 14px; margin: 16px 0 18px; line-height: 1.7; max-width: 300px; }
.ft-tel { display: block; font-size: 24px; font-weight: 800; color: var(--red); margin-bottom: 10px; letter-spacing: -0.5px; font-variant-numeric: tabular-nums; }
.ft-tel:hover { color: #e05c47; }
.ft-status { font-size: 12px; color: #22c55e; font-weight: 600; }
.ft-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.ft-col h4 { font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,.28); margin-bottom: 16px; }
.ft-col ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.ft-col a { font-size: 13.5px; color: rgba(255,255,255,.5); transition: color .18s; }
.ft-col a:hover { color: #fff; }
.footer-bottom { padding: 20px 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,.22); }

/* ===== ANIMATIONS ===== */
@keyframes fade-up { from{opacity:0;transform:translateY(20px)} to{opacity:1;transform:translateY(0)} }
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-layout { grid-template-columns: 1fr; gap: 44px; }
  .hero-bg { display: none; }
  .hero-right { max-width: 460px; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .svc-row { grid-template-columns: 36px 1fr; }
  .sr-tags, .sr-cta { display: none; }
  .why-layout { grid-template-columns: 1fr; gap: 44px; }
  .why-left { position: static; }
  .faq-layout { grid-template-columns: 1fr; gap: 36px; }
  .faq-left { position: static; }
  .contact-layout { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 36px; }
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
  .review-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .sec { padding: 60px 0; }
  #nav {
    display: none; position: fixed;
    top: 62px; left: 0; right: 0;
    background: rgba(255,255,255,.98);
    border-bottom: 1px solid var(--border);
    padding: 14px 28px 22px;
    box-shadow: 0 8px 28px rgba(0,0,0,.09);
  }
  #nav.open { display: flex; flex-direction: column; }
  #nav ul { flex-direction: column; gap: 2px; }
  .nav-link { display: block; padding: 11px 14px; font-size: 15px; }
  .hdr-tel { display: none; }
  .hamburger { display: flex; }
  .hero { padding: 96px 0 60px; }
  .hero-title { font-size: clamp(44px, 12vw, 66px); letter-spacing: -1.5px; }
  .stats-card, .coverage-note { display: none; }
  .areas-grid { grid-template-columns: 1fr; }
  .review-grid { grid-template-columns: 1fr; }
  .rating-row { flex-direction: column; gap: 24px; }
  .cf-row { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .ft-cols { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .hero-title { font-size: clamp(38px, 13vw, 54px); letter-spacing: -1px; }
  .hero-actions { flex-direction: column; }
  .btn-primary, .btn-ghost { width: 100%; justify-content: center; }
  .ef > span:last-child { display: none; }
  .ef { padding: 12px 14px; border-radius: 50%; }
  .ft-cols { grid-template-columns: 1fr; }
  .urg-inner { flex-direction: column; align-items: flex-start; }
  .contact-right { padding: 22px; }
}