/* ═══════════════════════════════════════════════════════
   Homi — service page system
   Content-first. Hierarchy from type and space, not ornament.
   Self-contained bundle: Zero render-blocking CDN dependency
   ═══════════════════════════════════════════════════════ */

:root{
  /* one accent, used sparingly */
  --blue:#0474ed;
  --blue-press:#0356b0;
  --blue-tint:#f0f6fe;

  /* neutral ramp */
  --ink:#1f2125;
  --body:#3c4043;
  --mute:#5f6368;
  --faint:#80868b;
  --line:#dadce0;
  --hair:#ebedf0;
  --surface:#f8f9fa;

  --measure:68ch;
  --shell:1080px;

  --pad:24px;
}

*{box-sizing:border-box}
html{-webkit-text-size-adjust:100%;scroll-behavior:smooth;scroll-padding-top:88px}

body{
  margin:0;
  background:#fff;
  color:var(--body);
  font-family:-apple-system,"Segoe UI",Roboto,"Noto Sans Arabic","Noto Naskh Arabic",Helvetica,Arial,sans-serif;
  font-size:17.5px;
  line-height:1.78;
  letter-spacing:-.003em;
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* One left edge for everything */
.shell{max-width:var(--shell);margin:0 auto;padding:0 var(--pad)}
.col{max-width:var(--shell);margin:0 auto;padding:0 var(--pad)}
.col > *{max-width:var(--measure)}

/* ── type scale ── */
h1,h2,h3,h4{color:var(--ink);margin:0}
h1{
  font-size:clamp(33px,4.6vw,52px);
  font-weight:700;
  line-height:1.08;
  letter-spacing:-.028em;
}
h2, .body-main h2 {
  font-size: clamp(24px, 2.5vw, 30px);
  font-weight: 800;
  color: #0f172a;
  line-height: 1.3;
  letter-spacing: -0.02em;
  margin: 54px 0 20px;
  position: relative;
}
.body-main h2::after {
  content: "";
  display: block;
  width: 44px;
  height: 3.5px;
  background: #0474ed;
  border-radius: 2px;
  margin-top: 10px;
}
[dir="rtl"] .body-main h2::after {
  margin-right: 0;
  margin-left: auto;
}
h3, .body-main h3 {
  font-size: 20px;
  font-weight: 700;
  color: #1e293b;
  line-height: 1.4;
  letter-spacing: -0.015em;
  margin: 28px 0 12px;
}
p{margin:0 0 22px}
strong{color:var(--ink);font-weight:600}

.body-main a, .hero-text a, .crumb a, .convert-copy a, .related a, .step a, .rail a {
  color:var(--blue);text-decoration:none
}
.body-main a:hover, .hero-text a:hover, .crumb a:hover, .convert-copy a:hover, .related a:hover, .step a:hover, .rail a:hover {
  text-decoration:underline;text-underline-offset:3px;text-decoration-thickness:1px
}
:focus-visible{outline:2px solid var(--blue);outline-offset:3px;border-radius:3px}

img{max-width:100%;display:block}

/* ── buttons & CTAs ── */
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin: 24px 0 0;
}
.hero-cta .btn, .convert .btn, .btn.btn-lg {
  display:inline-flex;align-items:center;justify-content:center;
  background:var(--blue) !important;color:#ffffff !important;
  font-size:15px;font-weight:600;letter-spacing:-.005em;
  padding:11px 24px;border-radius:10px;
  transition:background .15s ease, box-shadow .15s ease, transform .1s ease;
  white-space:nowrap;text-decoration:none !important;
}
.hero-cta .btn:hover, .convert .btn:hover, .btn.btn-lg:hover {
  background:var(--blue-press) !important;color:#ffffff !important;
  text-decoration:none !important;box-shadow:0 1px 3px rgba(32,33,36,.2);
  transform: translateY(-1px);
}
.btn-lg{font-size:16.5px;padding:14px 32px;border-radius:12px}

.btn-whatsapp {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  background: #25D366 !important;
  color: #ffffff !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  padding: 11px 24px !important;
  border-radius: 10px !important;
  text-decoration: none !important;
  transition: background 0.15s ease, transform 0.1s ease, box-shadow 0.15s ease !important;
  white-space: nowrap !important;
}
.btn-whatsapp:hover {
  background: #1eb857 !important;
  color: #ffffff !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.25);
  text-decoration: none !important;
}
.btn-whatsapp svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  flex-shrink: 0;
}

/* ── breadcrumb ── */
.crumb{
  padding:22px 0 0;font-size:13.5px;color:var(--faint);letter-spacing:0;
}
.crumb a{color:var(--faint)}
.crumb a:hover{color:var(--body)}
.crumb i{font-style:normal;padding:0 8px;color:var(--line)}

/* ── hero: asymmetric split, text leads ── */
.hero{padding:40px 0 4px}
.hero-grid{
  max-width:var(--shell);margin:0 auto;padding:0 var(--pad);
  display:grid;grid-template-columns:1fr 1.08fr;gap:60px;align-items:center;
}
@media(max-width:900px){
  .hero-grid{grid-template-columns:1fr;gap:34px}
}
.hero-text h1{max-width:14ch}
.hero-text .lead{max-width:34ch}
@media(max-width:900px){
  .hero-text h1{max-width:16ch}
  .hero-text .lead{max-width:46ch}
}

.lead{
  font-size:clamp(18px,2vw,21px);
  line-height:1.55;
  color:var(--mute);
  letter-spacing:-.012em;
  margin:22px 0 24px;
}

.hero-media{position:relative}
.hero-media img,.hero-media .plate{
  width:100%;height:clamp(300px,33vw,430px);object-fit:cover;
  border-radius:18px;display:block;
  background:var(--surface);
}
@media(max-width:900px){
  .hero-media img,.hero-media .plate{height:clamp(220px,52vw,300px);border-radius:14px}
}

/* ── facts: quiet inline row inside the hero ── */
.facts{
  display:flex;flex-direction:column;gap:9px;
  margin:28px 0 0;padding:0;list-style:none;
}
.facts li{
  position:relative;padding-inline-start:15px;
  font-size:14.5px;color:var(--mute);line-height:1.6;
}
.facts li::before{
  content:"";position:absolute;inset-inline-start:0;top:.62em;
  width:5px;height:5px;border-radius:50%;background:var(--blue);
}
.facts b{color:var(--ink);font-weight:600}

/* ── body: content column + sticky rail in the dead space ── */
.body{padding:58px 0 0}
.body-grid{
  max-width:var(--shell);margin:0 auto;padding:0 var(--pad);
  display:grid;grid-template-columns:minmax(0,var(--measure)) 1fr;
  gap:70px;
}
@media(max-width:1000px){
  .body-grid{grid-template-columns:minmax(0,1fr);gap:0}
}
.body-main{grid-column:1;grid-row:1}
.rail{grid-column:2;grid-row:1}
@media(max-width:1000px){
  .body-main,.rail{grid-column:1}
  .rail{grid-row:1}
  .body-main{grid-row:2}
}
.body-main > *{max-width:var(--measure)}
.body-main > p:first-of-type{font-size:18.5px;line-height:1.7;color:var(--body)}
.body-main > h2:first-of-type{margin-top:44px !important}

/* sticky rail */
.rail{align-self:stretch}
.rail-in{
  position:sticky;
  top:104px;
  background:#f8fafc;
  border:1px solid #e2e8f0;
  border-radius:16px;
  padding:24px 22px;
  box-shadow:0 2px 8px rgba(15, 23, 42, 0.02);
}
@media(max-width:1000px){
  .rail{align-self:auto}
  .rail-in{
    position:static;margin:0 0 44px;
    padding:22px 24px;border:1px solid #e2e8f0;border-radius:14px;
    background:#f8fafc;
  }
}
.rail h2{
  font-size:12.5px !important;
  font-weight:700 !important;
  letter-spacing:.08em !important;
  text-transform:uppercase;
  color:#0474ed !important;
  margin:0 0 16px !important;
  padding:0 !important;
}
.rail h2::after{display:none !important}
.rail ol{list-style:none;margin:0;padding:0}
@media(max-width:1000px){.rail ol{columns:2;column-gap:30px}}
@media(max-width:560px){.rail ol{columns:1}}
.rail li{margin:0 0 4px;break-inside:avoid}
.rail a{
  display:block;
  color:#475569;
  font-size:14.5px;
  font-weight:500;
  line-height:1.5;
  padding:8px 14px;
  border-radius:8px;
  border-inline-start:3px solid transparent;
  text-decoration:none !important;
  transition:all .15s ease;
}
.rail a:hover{color:#0f172a;background:#edf2f7;text-decoration:none !important}
.rail a.on{
  color:#0474ed;
  background:#eff6ff;
  border-inline-start-color:#0474ed;
  font-weight:700;
}
@media(max-width:1000px){.rail a{border:0;padding:6px 0}}

/* numbered subsections — card blocks with blue pill markers */
.steps{
  display:flex;
  flex-direction:column;
  gap:18px;
  margin:32px 0 40px;
  counter-reset:s;
}
.step{
  counter-increment:s;
  position:relative;
  background:#f8fafc;
  border:1px solid #e2e8f0;
  border-radius:16px;
  padding:24px 26px;
  margin:0;
  transition:all .2s ease;
  border-top:1px solid #e2e8f0 !important;
}
.step:hover{
  border-color:#cbd5e1;
  box-shadow:0 4px 14px rgba(15, 23, 42, 0.04);
  background:#ffffff;
}
.step::before{
  content:counter(s,decimal-leading-zero);
  display:inline-block;
  background:#0474ed;
  color:#ffffff;
  font-size:12px;
  font-weight:700;
  padding:4px 12px;
  border-radius:14px;
  margin-bottom:12px;
  letter-spacing:.06em;
  font-variant-numeric:tabular-nums;
}
.step h3{
  margin:0 0 8px 0;
  font-size:19.5px;
  font-weight:700;
  color:#0f172a;
  line-height:1.4;
}
.step p{
  margin:0;
  font-size:16.5px;
  line-height:1.65;
  color:#475569;
}

/* Contextual Authority Callout Box (Internal Linking Hierarchy) */
.authority-callout {
  background: linear-gradient(135deg, #f0f7ff 0%, #e0effe 100%);
  border: 1px solid #bae6fd;
  border-radius: 14px;
  padding: 20px 24px;
  margin: 36px 0;
  display: flex;
  align-items: center;
  gap: 16px;
}
.authority-callout p {
  margin: 0;
  font-size: 15.5px;
  line-height: 1.6;
  color: #0369a1;
}
.authority-callout a {
  font-weight: 700;
  color: #0284c7;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* mid-page conversion band */
.convert{
  margin:64px auto;max-width:var(--shell);padding:0 var(--pad);
}
.convert > *{max-width:var(--measure)}
.convert-in{
  background:var(--surface);
  border:1px solid var(--hair);
  border-radius:16px;
  padding:30px 34px;
  display:flex;align-items:center;justify-content:space-between;gap:36px;
}
.convert-copy{min-width:0}
.convert h2{
  margin:0 0 6px;font-size:21px;font-weight:600;
  letter-spacing:-.018em;line-height:1.3;
}
.convert p{color:var(--mute);font-size:15.5px;margin:0;line-height:1.55}
.convert-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
@media(max-width:768px){
  .convert-in{flex-direction:column;align-items:flex-start;gap:22px;padding:26px 24px}
  .convert-actions{width:100%;flex-direction:column}
  .convert-actions .btn, .convert-actions .btn-whatsapp{width:100%}
}

/* ── Essential Utility Classes (Header, Footer, Layout) ── */
.flex { display: flex; }
.flex-col { flex-direction: column; }
.flex-grow, .flex-1 { flex-grow: 1; }
.flex-none { flex: none; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }
.justify-start { justify-content: flex-start; }
.gap-2 { gap: 0.5rem; }
.gap-2\.5 { gap: 0.625rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.gap-10 { gap: 2.5rem; }
.gap-12 { gap: 3rem; }

.grid { display: grid; }
.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

@media(min-width: 768px) {
  .md\:flex { display: flex; }
  .md\:hidden { display: none; }
  .md\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .md\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
@media(max-width: 767px) {
  .hidden.md\:flex { display: none; }
}

.fixed { position: fixed; }
.inset-x-0 { left: 0; right: 0; }
.top-0 { top: 0; }
.z-50 { z-index: 50; }

.bg-white { background-color: #ffffff; }
.bg-white\/95 { background-color: rgba(255, 255, 255, 0.95); }
.bg-gray-50 { background-color: #f9fafb; }
.bg-gray-100 { background-color: #f3f4f6; }
.bg-gray-200 { background-color: #e5e7eb; }
.bg-gray-800 { background-color: #1f2937; }
.bg-gray-900 { background-color: #111827; }
.bg-black { background-color: #000000; }
.bg-blue-50 { background-color: #eff6ff; }
.bg-blue-600 { background-color: #2563eb; }
.bg-blue-700 { background-color: #1d4ed8; }

.backdrop-blur { backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); }
.border { border-width: 1px; border-style: solid; }
.border-b { border-bottom-width: 1px; border-bottom-style: solid; }
.border-t { border-top-width: 1px; border-top-style: solid; }
.border-gray-100 { border-color: #f3f4f6; }
.border-gray-200 { border-color: #e5e7eb; }

.shadow-sm { box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); }
.shadow-md { box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1); }

.max-w-4xl { max-width: 56rem; }
.max-w-6xl { max-width: 72rem; }
.w-full { width: 100%; }
.h-10 { height: 2.5rem; }
.min-h-screen { min-height: 100vh; }

.mx-auto { margin-left: auto; margin-right: auto; }
.px-3 { padding-left: 0.75rem; padding-right: 0.75rem; }
.px-3\.5 { padding-left: 0.875rem; padding-right: 0.875rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-5 { padding-left: 1.25rem; padding-right: 1.25rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.py-1 { padding-top: 0.25rem; padding-bottom: 0.25rem; }
.py-1\.5 { padding-top: 0.375rem; padding-bottom: 0.375rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-2\.5 { padding-top: 0.625rem; padding-bottom: 0.625rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.pt-14 { padding-top: 3.5rem; }
.pt-24 { padding-top: 6rem; }
.pb-12 { padding-bottom: 3rem; }
.pb-16 { padding-bottom: 4rem; }
.mt-4 { margin-top: 1rem; }
.mt-12 { margin-top: 3rem; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-12 { margin-bottom: 3rem; }
.ml-2 { margin-left: 0.5rem; }
[dir="rtl"] .ml-2 { margin-left: 0; margin-right: 0.5rem; }

.space-y-1 > * + * { margin-top: 0.25rem; }
.space-y-2 > * + * { margin-top: 0.5rem; }
.space-y-4 > * + * { margin-top: 1rem; }
.space-y-8 > * + * { margin-top: 2rem; }
.space-x-4 > * + * { margin-left: 1rem; }
[dir="rtl"] .space-x-4 > * + * { margin-left: 0; margin-right: 1rem; }

.rounded-md { border-radius: 0.375rem; }
.rounded-lg { border-radius: 0.5rem; }
.rounded-xl { border-radius: 0.75rem; }
.rounded-2xl { border-radius: 1rem; }
.rounded-full { border-radius: 9999px; }

.text-xs { font-size: 0.75rem; line-height: 1rem; }
.text-sm { font-size: 0.875rem; line-height: 1.25rem; }
.text-base { font-size: 1rem; line-height: 1.5rem; }
.text-lg { font-size: 1.125rem; line-height: 1.75rem; }
.text-xl { font-size: 1.25rem; line-height: 1.75rem; }
.text-2xl { font-size: 1.5rem; line-height: 2rem; }
.text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.font-extrabold { font-weight: 800; }

.text-gray-400 { color: #9ca3af; }
.text-gray-500 { color: #6b7280; }
.text-gray-600 { color: #4b5563; }
.text-gray-700 { color: #374151; }
.text-gray-800 { color: #1f2937; }
.text-gray-900 { color: #111827; }
.text-white { color: #ffffff; }
.text-blue-600 { color: #2563eb; }

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.antialiased { -webkit-font-smoothing: antialiased; }

.transition { transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.transition-colors { transition-property: color, background-color, border-color; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }

/* Interactive Hovers */
a.text-blue-600:hover, button.text-blue-600:hover { color: #1d4ed8; text-decoration: underline; }
.hover\:underline:hover { text-decoration: underline; }
.hover\:bg-gray-100:hover { background-color: #f3f4f6; }
.hover\:bg-gray-200:hover { background-color: #e5e7eb; }
.hover\:bg-gray-800:hover { background-color: #1f2937; }
.hover\:bg-black:hover { background-color: #000000; }
.hover\:bg-blue-700:hover { background-color: #1d4ed8; }
.hover\:text-blue-600:hover { color: #2563eb; }
.hover\:opacity-90:hover { opacity: 0.9; }

/* ── Footer Cluster Grid ── */
.footer-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  margin-bottom: 36px;
}
.footer-cat-group h4 {
  font-size: 13.5px;
  font-weight: 700;
  color: #111827;
  margin: 0 0 10px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.footer-cat-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.ltr{direction:ltr;display:inline-block;unicode-bidi:embed}

/* ── Hero Price Badge (Above the fold pricing) ── */
.hero-price-badge {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #f0f7ff 0%, #e0effe 100%);
  border: 1px solid #bfdbfe;
  border-radius: 9999px;
  padding: 6px 16px;
  margin: 18px 0 10px;
  font-size: 13.5px;
  color: #1e3a8a;
  width: fit-content;
  box-shadow: 0 1px 3px rgba(4, 116, 237, 0.08);
}
.hero-price-badge .price-tag-label {
  color: #1e40af;
  font-weight: 600;
}
.hero-price-badge .price-tag-val {
  color: #0474ed;
  font-weight: 800;
  font-size: 15px;
  letter-spacing: -0.01em;
}
.hero-price-badge .price-tag-sub {
  color: #64748b;
  font-size: 12px;
  border-inline-start: 1px solid #cbd5e1;
  padding-inline-start: 8px;
}
[dir="rtl"] .hero-price-badge {
  text-align: right;
}
@media (max-width: 640px) {
  .hero-price-badge {
    border-radius: 14px;
    padding: 8px 14px;
  }
}

/* ── Furniture Starting Prices Card (Hero Section) ── */
.furniture-pricing-card {
  background: linear-gradient(135deg, #f8fbff 0%, #eff6ff 100%);
  border: 1px solid #bfdbfe;
  border-radius: 18px;
  padding: 12px 14px;
  margin: 18px 0 14px;
  max-width: 580px;
  box-shadow: 0 2px 8px rgba(4, 116, 237, 0.06);
}

.furn-pricing-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding-bottom: 8px;
  margin-bottom: 9px;
  border-bottom: 1px solid #dbeafe;
  flex-wrap: wrap;
}

.furn-badge-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: #1e40af;
}

.furn-icon {
  width: 15px;
  height: 15px;
  color: #0474ed;
}

.furn-sub-tag {
  font-size: 11.5px;
  color: #64748b;
  font-weight: 500;
}

.furn-price-chips {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.furn-chip {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 8px 6px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: all 0.2s ease;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.03);
}

.furn-chip:hover {
  border-color: #93c5fd;
  transform: translateY(-1px);
  box-shadow: 0 3px 6px rgba(4, 116, 237, 0.08);
}

.furn-name {
  font-size: 11.5px;
  font-weight: 600;
  color: #475569;
  margin-bottom: 3px;
  white-space: nowrap;
}

.furn-price {
  font-size: 13.5px;
  font-weight: 800;
  color: #0474ed;
  line-height: 1.1;
  white-space: nowrap;
}

.furn-price small {
  font-size: 10px;
  font-weight: 600;
  color: #64748b;
}

[dir="rtl"] .furn-pricing-header {
  text-align: right;
}

@media (max-width: 640px) {
  .furn-price-chips {
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
  }
  .furn-chip {
    padding: 7px 6px;
  }
  .furn-name {
    font-size: 11px;
  }
  .furn-price {
    font-size: 13px;
  }
}

/* Area Coverage & Local Linking Hub */
.area-coverage-card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 22px;
  margin: 28px 0;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.area-coverage-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.area-coverage-title {
  font-size: 16px;
  font-weight: 700;
  color: #0f172a;
  margin: 0;
}

.area-coverage-body {
  font-size: 14.5px;
  color: #334155;
  line-height: 1.6;
  margin: 0 0 16px 0;
}

.local-linking-matrix {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px dashed #cbd5e1;
}

.local-linking-group h4 {
  font-size: 13.5px;
  font-weight: 700;
  color: #1e293b;
  margin: 0 0 10px 0;
  letter-spacing: 0.02em;
}

.local-linking-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.local-link-pill {
  display: inline-flex;
  align-items: center;
  font-size: 12.5px;
  font-weight: 500;
  color: #0474ed;
  background: #ffffff;
  border: 1px solid #bfdbfe;
  border-radius: 8px;
  padding: 5px 10px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.local-link-pill:hover {
  background: #0474ed;
  color: #ffffff;
  border-color: #0474ed;
  text-decoration: none;
  transform: translateY(-1px);
}

.local-hub-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  font-size: 13.5px;
  font-weight: 600;
  color: #0474ed;
  text-decoration: none;
}

.local-hub-link:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .local-linking-matrix {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

