:root {
  --bg: #f4f5f8;
  --bg-2: #fff;
  --bg-3: #eaeef3;
  --ink: #141821;
  --ink-2: #3b424e;
  --muted: #6c7480;
  --line: rgba(20, 24, 33, .1);
  --navy: #141821;
  --navy-d: #0b0e14;
  --red: #e11d2a;
  --red-d: #b71422;
  --red-l: #f0434f;
  --red-soft: rgba(225, 29, 42, .1);
  --gold: #f5a524;
  --gold-d: #d4881a;
  --wa: #16a34a;
  --radius: 16px;
  --radius-lg: 22px;
  --shadow: 0 14px 40px rgba(20, 24, 33, .1);
  --shadow-lg: 0 26px 70px rgba(20, 24, 33, .16);
  --shadow-red: 0 12px 30px rgba(225, 29, 42, .32);
  --font-h: "Outfit", system-ui, sans-serif;
  --font-b: "Inter", system-ui, sans-serif;
  --top: 44px;
}
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font-b);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  font-size: 16px;
  padding-top: var(--top);
  padding-bottom: 84px;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 {
  font-family: var(--font-h);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.12;
  letter-spacing: -.02em;
  margin: 0;
}
.wrap { width: min(1200px, calc(100% - 40px)); margin-inline: auto; }
.skip-link { position: absolute; left: -999px; }
.skip-link:focus { left: 8px; top: 8px; background: #fff; padding: 8px; z-index: 200; }

/* Top bar — 800 m, her sayfada */
.nearbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 80;
  background: linear-gradient(90deg, var(--navy-d), var(--navy));
  color: #fff; font-size: 12.5px;
}
.nearbar-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px; min-height: var(--top); padding-block: 6px;
}
.nearbar p {
  margin: 0; font-weight: 600; letter-spacing: .05em;
  display: inline-flex; align-items: center; gap: 8px;
  min-width: 0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.nearbar p::before {
  content: ""; width: 8px; height: 8px; border-radius: 50%;
  background: var(--gold); flex: none; animation: blink 1.5s infinite;
}
.nearbar strong { color: var(--gold); font-weight: 700; }
.nearbar-actions { display: flex; gap: 8px; flex: none; }
.nearbar-cta {
  color: #fff; font-weight: 700; font-size: 11.5px; letter-spacing: .04em;
  padding: 6px 12px; border-radius: 999px; border: 1px solid rgba(255,255,255,.18);
}
.nearbar-cta:hover { color: var(--gold); border-color: var(--gold); }
.nearbar-wa { background: rgba(22, 163, 74, .18); border-color: rgba(22, 163, 74, .4); }
@keyframes blink { 50% { opacity: .35; } }

.status-bar { background: #fff; border-bottom: 1px solid var(--line); }
.status-bar .wrap {
  display: flex; gap: 10px; justify-content: center; align-items: center;
  padding: 8px 0; flex-wrap: wrap;
}
.status-badge {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 11.5px; font-weight: 700; letter-spacing: .04em;
  text-transform: uppercase; padding: 6px 14px; border-radius: 999px;
}
.status-open { background: rgba(22,163,74,.12); color: #15803d; border: 1px solid rgba(22,163,74,.28); }
.status-near { background: var(--red-soft); color: var(--red-d); border: 1px solid rgba(225,29,42,.24); }
.status-dot {
  width: 8px; height: 8px; border-radius: 50%; background: #16a34a;
  box-shadow: 0 0 0 0 rgba(22,163,74,.55); animation: ping 1.8s infinite;
}
@keyframes ping {
  70% { box-shadow: 0 0 0 8px rgba(22,163,74,0); }
}

.site-header {
  position: sticky; top: var(--top); z-index: 70;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  min-height: 72px; gap: 16px;
}
.brand { display: inline-flex; align-items: center; gap: 12px; flex: none; }
.brand:hover .brand-title { color: var(--red); }
.brand-footer:hover .brand-title { color: var(--gold); }
.brand-mark {
  width: 46px; height: 46px; border-radius: 13px; overflow: hidden;
  flex: none; background: var(--navy); box-shadow: 0 4px 12px rgba(20,24,33,.18);
}
.brand-mark img { width: 100%; height: 100%; object-fit: cover; display: block; }
.brand-text { display: flex; flex-direction: column; gap: 3px; line-height: 1; }
.brand-title {
  font-family: var(--font-h); font-size: 20px; font-weight: 800;
  letter-spacing: .08em; color: var(--navy);
}
.brand-sub {
  font-size: 10.5px; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--red-d);
}
.nav-toggle {
  width: 44px; height: 44px; border: 0; background: transparent;
  display: grid; place-content: center; gap: 5px; cursor: pointer;
  position: relative; z-index: 100;
}
.nav-toggle span { display: block; width: 20px; height: 2px; background: var(--navy); }
.site-nav {
  display: none; position: fixed; inset: 0; z-index: 90;
  background: rgba(255,255,255,.98); padding: 88px 28px 28px;
  flex-direction: column; overflow: auto;
}
.site-nav.open { display: flex; }
.site-nav a {
  font-weight: 600; font-size: 18px; padding: 14px 0;
  border-bottom: 1px solid var(--line); color: var(--navy);
}
.site-nav a.is-active, .site-nav a:hover { color: var(--red); }
.nav-ctas { display: flex; gap: 10px; margin-top: 18px; flex-wrap: wrap; }
.header-call { display: none; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 46px; padding: 0 22px; border-radius: 999px;
  font-weight: 700; font-size: 13px; letter-spacing: .04em;
  text-transform: uppercase; border: 0; font-family: inherit; cursor: pointer;
  transition: transform .2s, box-shadow .2s, background .2s;
}
.btn:hover { transform: translateY(-2px); }
.btn-red {
  background: linear-gradient(135deg, var(--red), var(--red-d));
  color: #fff; box-shadow: var(--shadow-red);
}
.btn-wa { background: var(--wa); color: #fff; }
.btn-gold { background: linear-gradient(135deg, var(--gold), var(--gold-d)); color: var(--navy); }
.btn-navy { background: var(--navy); color: #fff; }
.btn-lg { min-height: 54px; padding: 0 28px; font-size: 14px; }
.btn-block { width: 100%; }
.linkish { color: var(--red); font-weight: 700; }

.hero {
  position: relative; padding: 48px 0 40px; overflow: hidden;
  background: linear-gradient(135deg, var(--bg), var(--bg-3));
}
.hero::before {
  content: ""; position: absolute; top: -18%; right: -8%; width: 560px; height: 560px;
  background: radial-gradient(circle, var(--red-soft), transparent 70%); pointer-events: none;
}
.hero-grid {
  position: relative; z-index: 1;
  display: grid; gap: 36px;
}
.kicker, .eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11.5px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  color: var(--red-d); background: var(--red-soft); border: 1px solid rgba(225,29,42,.28);
  padding: 7px 14px; border-radius: 6px; margin: 0 0 18px;
}
.eyebrow-dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--red);
  box-shadow: 0 0 0 0 rgba(225,29,42,.55); animation: ping 1.6s infinite;
}
.hero h1 {
  font-size: clamp(32px, 7vw, 58px); margin: 0 0 16px;
}
.hero h1 em {
  color: var(--red); font-style: normal; display: block; font-size: .78em;
}
.lead, .hero-desc {
  color: var(--ink-2); font-size: 17px; max-width: 36em; margin: 0 0 24px;
}
.hero-actions, .page-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 22px; }
.hero-trust {
  display: flex; flex-wrap: wrap; gap: 10px; align-items: center;
  font-size: 13px; color: var(--ink-2);
}
.hero-trust strong { color: var(--navy); }
.hero-media {
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-lg); aspect-ratio: 16 / 11; background: var(--navy);
}
.hero-media img { width: 100%; height: 100%; object-fit: cover; }

.process {
  background: var(--navy); color: #fff; padding: 28px 0;
}
.process-grid { display: grid; gap: 18px; }
.process-item { display: flex; gap: 14px; align-items: center; }
.process-num {
  width: 46px; height: 46px; border-radius: 12px; flex: none;
  display: grid; place-items: center;
  background: rgba(225,29,42,.2); color: var(--gold);
  font-family: var(--font-h); font-weight: 800;
}
.process-item strong { display: block; font-family: var(--font-h); font-size: 16px; }
.process-item span { font-size: 13px; color: rgba(255,255,255,.72); }

.section { padding: 56px 0; }
.section-cream { background: #f7f1e6; }
.section-light { background: var(--bg); }
.section-head { margin-bottom: 28px; }
.section-head.center { text-align: center; }
.section-head h2 { font-size: clamp(26px, 4vw, 40px); margin: 0 0 10px; }
.section-head p { color: var(--ink-2); margin: 0 auto; max-width: 36em; }

.svc-grid { display: grid; gap: 16px; }
.svc-tile {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  min-height: 200px; box-shadow: var(--shadow); display: flex; align-items: flex-end;
}
.svc-tile img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; filter: brightness(.72);
  transition: transform .5s;
}
.svc-tile:hover img { transform: scale(1.06); }
.svc-tile::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 20%, rgba(11,14,20,.88));
}
.svc-tile div { position: relative; z-index: 1; padding: 20px; color: #fff; }
.svc-tile h3 { color: #fff; font-size: 20px; margin: 0 0 6px; }
.svc-tile span { color: var(--gold); font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }

.why-grid { display: grid; gap: 14px; }
.why-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 22px 20px; box-shadow: var(--shadow);
}
.why-card h3 { font-size: 18px; margin: 0 0 8px; }
.why-card p { margin: 0; color: var(--ink-2); font-size: 14.5px; }
.why-ic {
  width: 42px; height: 42px; border-radius: 12px; margin-bottom: 12px;
  background: var(--red-soft); color: var(--red); display: grid; place-items: center;
  font-family: var(--font-h); font-weight: 800;
}

.emergency {
  display: flex; flex-wrap: wrap; gap: 16px; align-items: center;
  justify-content: space-between;
  background: var(--navy); color: #fff; border-radius: var(--radius-lg);
  padding: 22px 24px;
  margin-top: 36px;
  box-shadow: 0 18px 40px rgba(20, 24, 33, .18);
}
.emergency strong { display: block; font-family: var(--font-h); font-size: 22px; }
.emergency span { color: rgba(255,255,255,.78); font-size: 14px; }

.stats {
  background: linear-gradient(135deg, var(--navy), var(--navy-d));
  color: #fff; padding: 40px 0;
}
.stats-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; text-align: center; }
.stat-num { font-family: var(--font-h); font-size: clamp(26px, 5vw, 36px); font-weight: 800; color: var(--gold); }
.stat-label { font-size: 13px; color: rgba(255,255,255,.75); margin-top: 4px; }

.region-grid, .area-grid { display: grid; gap: 10px; }
.region-card, .area-card {
  display: flex; gap: 12px; align-items: center;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 16px 16px 14px; transition: transform .2s, border-color .2s, box-shadow .2s;
}
.region-card > div, .area-card > span:last-child { min-width: 0; flex: 1; }
.region-card:hover, .area-card:hover {
  transform: translateY(-3px); border-color: var(--red); box-shadow: var(--shadow);
}
.area-ic {
  width: 40px; height: 40px; border-radius: 10px; flex: none;
  background: var(--red-soft); color: var(--red-d);
  display: grid; place-items: center; font-size: 18px;
}
.region-card h3, .area-card strong {
  margin: 0; font-family: var(--font-h); font-size: 16px; display: block;
}
.region-card p, .area-card span { margin: 2px 0 0; font-size: 12.5px; color: var(--muted); }
.region-card .links { display: flex; gap: 14px; margin-top: 8px; font-size: 13px; font-weight: 700; }
.region-card .links a { color: var(--red); }
.region-board { display: grid; gap: 36px; }
.region-board h2 { font-size: 22px; margin-bottom: 6px; }

.cta-band {
  background: linear-gradient(135deg, var(--red), var(--red-d));
  color: #fff; text-align: center; padding: 56px 0;
}
.cta-band h2 { color: #fff; font-size: clamp(26px, 4vw, 40px); margin: 0 0 10px; }
.cta-band p { color: rgba(255,255,255,.92); margin: 0 auto 22px; max-width: 32em; }
.cta-band .btn-red { background: #fff; color: var(--red-d); box-shadow: none; }
.cta-band .btn-gold { color: var(--navy); }

.page-hero {
  background: linear-gradient(135deg, var(--navy), var(--navy-d));
  color: #fff; padding: 40px 0 36px; position: relative; overflow: hidden;
}
.page-hero::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(225,29,42,.28), transparent 50%);
}
.page-hero .wrap { position: relative; z-index: 1; }
.page-hero .eyebrow { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.16); color: var(--gold); }
.page-hero h1 { color: #fff; font-size: clamp(28px, 5vw, 46px); margin: 0 0 12px; }
.page-hero p, .page-hero .intro-lead { color: rgba(255,255,255,.86); margin: 0 0 18px; max-width: 38em; }
.page-hero .page-actions { margin-bottom: 0; }

.layout { display: grid; gap: 28px; padding: 36px 0 56px; }
.article { min-width: 0; background: transparent; }
.article p { margin: 0 0 14px; font-size: 16px; color: var(--ink-2); line-height: 1.8; }
.article h2 {
  font-size: 1.35rem; margin: 32px 0 12px;
  border-left: 4px solid var(--red); padding-left: 12px;
}
.article h3 { margin: 22px 0 8px; font-size: 1.08rem; }
.article ul, .article ol { padding-left: 1.2em; margin: 0 0 16px; }
.article li { margin: 0 0 6px; color: var(--ink-2); }
.article a { color: var(--red); font-weight: 700; }
.article-photo {
  margin: 0 0 24px; max-width: 420px; border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow);
}
.article-photo img { width: 100%; max-height: 220px; object-fit: cover; }

.sidebar { display: grid; gap: 14px; align-content: start; }
.side-card {
  background: #fff; border-radius: var(--radius); padding: 18px;
  border: 1px solid var(--line); box-shadow: var(--shadow);
}
.side-card h3 {
  margin: 0 0 10px; font-size: 12px; letter-spacing: .08em;
  text-transform: uppercase; color: var(--muted);
}
.side-menu { list-style: none; margin: 0; padding: 0; }
.side-menu a {
  display: block; padding: 8px 0; font-size: 14px; font-weight: 600;
  border-bottom: 1px solid var(--line); color: var(--ink-2);
}
.side-menu a:hover, .side-menu a[aria-current="page"] { color: var(--red); }
.wa-card { background: var(--navy); color: #eee; border: 0; }
.wa-card h3 { color: #fff; text-transform: none; letter-spacing: 0; font-size: 18px; font-family: var(--font-h); }
.wa-card p { font-size: 14px; color: #bbb; margin: 0 0 12px; }
.wa-card .btn { margin-top: 8px; }

.faq { margin-top: 36px; }
.faq h2 { margin-bottom: 14px; }
.faq-list { display: grid; gap: 10px; }
.faq-item {
  background: #fff; border-radius: var(--radius); padding: 2px 18px;
  border: 1px solid var(--line);
}
.faq-item summary {
  cursor: pointer; font-weight: 700; padding: 14px 0; list-style: none;
  font-family: var(--font-h); font-size: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item p { margin: 0 0 14px; color: var(--muted); font-size: 14.5px; }

.site-footer {
  background: var(--navy-d); color: rgba(255,255,255,.72);
  padding: 56px 0 100px; font-size: 14px; border-top: 4px solid var(--gold);
}
.footer-grid { display: grid; gap: 28px; }
.brand-footer { margin-bottom: 14px; }
.brand-footer .brand-title { color: #fff; }
.brand-footer .brand-sub { color: var(--gold); }
.brand-footer .brand-mark { box-shadow: none; }
.site-footer a { color: #fff; }
.site-footer a:hover { color: var(--gold); }
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin: 0 0 8px; }
.site-footer h3 {
  font-size: 12px; letter-spacing: .1em; text-transform: uppercase;
  color: rgba(255,255,255,.5); font-weight: 700; margin: 0 0 14px;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12);
  margin-top: 32px; padding-top: 16px; font-size: 12px; color: rgba(255,255,255,.5);
}
.footer-bottom-inner {
  display: flex; flex-wrap: wrap; gap: 8px 18px;
  align-items: center; justify-content: space-between;
}
.footer-credit {
  color: rgba(255,255,255,.55) !important;
  font-weight: 500;
}
.footer-credit:hover { color: var(--gold) !important; }

.float-ctas { display: none; }
.float-phone, .float-wa {
  width: 54px; height: 54px; border-radius: 50%; color: #fff;
  display: grid; place-items: center; font-size: 0; position: relative;
  box-shadow: 0 10px 28px rgba(0,0,0,.22);
}
.float-phone { background: var(--red); }
.float-phone::before {
  content: ""; position: absolute; inset: -4px; border-radius: 50%;
  border: 1px solid rgba(225,29,42,.45); animation: callring 1.8s ease-out infinite;
}
.float-phone { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='22' height='22' fill='white' viewBox='0 0 24 24'><path d='M6.6 10.8c1.4 2.7 3.9 5.1 6.6 6.6l2.2-2.2c.3-.3.7-.4 1.1-.3 1.2.4 2.5.6 3.8.6.6 0 1 .4 1 1V20c0 .6-.4 1-1 1C10.6 21 3 13.4 3 4c0-.6.4-1 1-1h3.5c.6 0 1 .4 1 1 0 1.3.2 2.6.6 3.8.1.4 0 .8-.3 1.1L6.6 10.8z'/></svg>"); background-repeat: no-repeat; background-position: center; }
.float-wa { background: var(--wa); background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='22' height='22' fill='white' viewBox='0 0 24 24'><path d='M12 2a10 10 0 0 0-8.7 15.1L2 22l5-1.3A10 10 0 1 0 12 2zm0 18a8 8 0 0 1-4.1-1.1l-.3-.2-3 .8.8-2.9-.2-.3A8 8 0 1 1 12 20zm4.4-5.8c-.2-.1-1.3-.6-1.5-.7s-.4-.1-.5.1-.6.7-.7.8-.3.2-.5.1a6.6 6.6 0 0 1-1.9-1.2 7.2 7.2 0 0 1-1.3-1.6c-.1-.2 0-.4.1-.5l.4-.4.3-.5c.1-.2 0-.3 0-.4l-.7-1.8c-.2-.4-.4-.4-.5-.4h-.5c-.2 0-.4.1-.6.3s-.8.8-.8 1.9.8 2.2.9 2.3a9.3 9.3 0 0 0 3.6 3.1c1.3.5 1.8.4 2.4.4s1.3-.2 1.5-.6.6-1 .4-1.1z'/></svg>"); background-repeat: no-repeat; background-position: center; }
@keyframes callring {
  from { transform: scale(1); opacity: .7; }
  to { transform: scale(1.35); opacity: 0; }
}

.mobile-cta-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
  display: grid; grid-template-columns: 1fr 1fr; gap: 8px;
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  background: rgba(255,255,255,.96); border-top: 1px solid var(--line);
}
.map-wrap { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow); }
.map-wrap iframe { width: 100%; height: 280px; border: 0; display: block; }
.contact-grid { display: grid; gap: 16px; }
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 22px; box-shadow: var(--shadow);
}
.card h3 { margin: 16px 0 8px; }
.card h3:first-child { margin-top: 0; }
.muted { color: var(--muted); }

.service-list { display: grid; gap: 10px; }
.service-row {
  display: grid; grid-template-columns: 40px 1fr auto; gap: 12px; align-items: center;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 16px 18px; box-shadow: var(--shadow);
}
.service-row:hover { border-color: var(--red); }
.service-num { font-family: var(--font-h); color: var(--red); font-weight: 800; }
.service-row h3 { margin: 0 0 4px; font-size: 17px; }
.service-row p { margin: 0; font-size: 13.5px; color: var(--muted); }
.service-row .arrow { color: var(--gold-d); font-weight: 700; font-size: 12px; letter-spacing: .06em; text-transform: uppercase; }

@media (max-width: 640px) {
  .service-row { grid-template-columns: 32px 1fr; }
  .service-row .arrow { display: none; }
  .nearbar p { font-size: 11.5px; }
}

@media (min-width: 768px) {
  body { padding-bottom: 0; padding-top: 0; }
  .nearbar { position: relative; }
  .site-header { top: 0; }
  .brand-mark { width: 50px; height: 50px; }
  .brand-title { font-size: 22px; }
  .nav-toggle { display: none; }
  .site-nav {
    display: flex; position: static; flex-direction: row; align-items: center;
    padding: 0; background: transparent; gap: 4px; overflow: visible;
  }
  .site-nav a {
    font-size: 14px; padding: 8px 10px; border: 0; color: var(--ink-2);
  }
  .nav-ctas { display: none; }
  .header-call { display: inline-flex; }
  .hero { padding: 64px 0 56px; }
  .hero-grid { grid-template-columns: 1.1fr .9fr; align-items: center; }
  .process-grid { grid-template-columns: repeat(3, 1fr); }
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(4, 1fr); }
  .region-grid, .area-grid { grid-template-columns: repeat(2, 1fr); }
  .layout { grid-template-columns: minmax(0, 1fr) 280px; }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1.1fr; }
  .mobile-cta-bar { display: none; }
  .float-ctas {
    display: flex; flex-direction: column; gap: 10px;
    position: fixed; right: 18px; bottom: 18px; z-index: 60;
  }
  .map-wrap iframe { height: 380px; }
  .contact-grid { grid-template-columns: 1fr 1.1fr; }
  .page-hero { padding: 64px 0 52px; }
}

@media (min-width: 1024px) {
  .svc-grid { grid-template-columns: repeat(3, 1fr); }
  .why-grid { grid-template-columns: repeat(4, 1fr); }
  .region-grid, .area-grid { grid-template-columns: repeat(3, 1fr); }
}
