:root {
  --color-bg: #050505;
  --color-bg-alt: #090909;
  --color-surface: #0d0d0d;
  --color-surface-elevated: #121212;
  --color-text: #f5f5f2;
  --color-text-muted: #aaa7a0;
  --color-accent: #ffb300;
  --color-accent-soft: #ffc53d;
  --color-border: rgba(255, 255, 255, .075);
  --color-border-accent: rgba(255, 179, 0, .24);
  --color-whatsapp: #25d366;
  --shadow-card: 0 24px 70px rgba(0, 0, 0, .32);
  --shadow-accent: 0 0 0 1px rgba(255, 179, 0, .16), 0 20px 55px rgba(255, 179, 0, .10);
  --font-sans: Manrope, "Avenir Next", "Segoe UI Variable", "Segoe UI", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --max: 1180px;
  --radius-card: 22px;
  --radius-control: 13px;
  --header-height: 76px;
  --ink: var(--color-bg);
  --ink-soft: var(--color-surface);
  --paper: var(--color-bg);
  --white: var(--color-text);
  --muted: var(--color-text-muted);
  --line: var(--color-border);
  --gold: var(--color-accent);
  --gold-light: var(--color-accent-soft);
  --radius: var(--radius-card);
  --shadow: var(--shadow-card);
}

/* Final local SEO and interaction refinements */
.service-row,
.service-catalog-card,
.area-catalog-card,
.blog-card,
.related-service-card { position: relative; }

.service-row h3 a::after,
.service-catalog-card h2 a::after,
.area-catalog-card h3 a::after,
.blog-card h2 a::after,
.related-service-card h3 a::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
}

.service-row .button,
.service-row .service-detail-link,
.service-catalog-image,
.service-catalog-card .text-link,
.area-catalog-image,
.area-catalog-card .text-link,
.blog-card-image,
.blog-card .text-link,
.related-service-image,
.related-service-card .text-link { position: relative; z-index: 2; }

.service-row:focus-within,
.service-catalog-card:focus-within,
.area-catalog-card:focus-within,
.blog-card:focus-within,
.related-service-card:focus-within {
  outline: 2px solid var(--color-accent);
  outline-offset: 4px;
}

.button-map-secondary { border-color: var(--color-border); color: var(--color-text-muted); }
.area-map-tools { border-block: 1px solid var(--color-border); background: var(--color-bg-alt); }
.area-map-tools-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, .75fr);
  align-items: start;
  gap: clamp(36px, 6vw, 76px);
}
.area-map-tools h2 { max-width: 18ch; margin-block: 14px 18px; }
.area-map-tools p { max-width: 68ch; }
.area-map-tools .location-map-actions { margin-top: 28px; }
.area-official-sources {
  display: grid;
  gap: 12px;
  padding: 24px;
  border: 1px solid var(--color-border-accent);
  border-radius: 16px;
  background: var(--color-surface);
}
.area-official-sources strong { color: var(--color-accent); font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; }
.area-official-sources a { color: var(--color-text); line-height: 1.55; text-decoration: underline; text-decoration-color: rgba(255, 179, 0, .35); text-underline-offset: 4px; }
.area-official-sources a:hover { color: var(--color-accent); }

@media (max-width: 900px) {
  .area-map-tools-grid { grid-template-columns: 1fr; gap: 30px; }
  .area-map-tools h2 { max-width: 22ch; }
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--color-bg); }
body {
  min-width: 320px;
  margin: 0;
  overflow-x: clip;
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.72;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { position: fixed; top: var(--menu-scroll-offset, 0); right: 0; left: 0; width: 100%; overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 {
  color: var(--color-text);
  font-weight: 750;
  letter-spacing: -.038em;
  text-wrap: balance;
}
h1 { font-size: clamp(3.15rem, 6.4vw, 5.45rem); line-height: .98; }
h2 { font-size: clamp(1.95rem, 3.6vw, 3.15rem); line-height: 1.05; }
h3 { font-size: clamp(1.2rem, 1.8vw, 1.4rem); line-height: 1.08; }
p { color: var(--color-text-muted); }
address { font-style: normal; }

.container { width: min(calc(100% - 40px), var(--max)); margin-inline: auto; }
.section {
  position: relative;
  padding: clamp(76px, 6vw, 88px) 0;
  background: var(--color-bg);
  border-top: 1px solid var(--color-border);
}
.section::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 179, 0, .10), transparent);
  pointer-events: none;
}
.section-dark { background: var(--color-bg-alt); color: var(--color-text); }
.section-soft { background: var(--color-bg-alt); }
.section-heading { max-width: 760px; margin-bottom: clamp(32px, 4vw, 42px); }
.section-heading.narrow { max-width: 680px; }
.section-heading h2 { margin-bottom: 0; }
.eyebrow, .section-label {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 14px;
  color: var(--color-accent);
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .16em;
  line-height: 1.25;
  text-transform: uppercase;
}
.eyebrow::before, .section-label::before {
  content: "";
  width: 22px;
  height: 1px;
  background: currentColor;
  opacity: .72;
}
.eyebrow.dark { color: var(--color-accent); }
.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 999;
  padding: 12px 18px;
  border-radius: 8px;
  background: var(--color-text);
  color: var(--color-bg);
}
.skip-link:focus { top: 16px; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  min-height: var(--header-height);
  border-bottom: 1px solid rgba(255, 179, 0, .14);
  background: rgba(5, 5, 5, .88);
  color: var(--color-text);
  transition: background-color .24s ease, box-shadow .24s ease, border-color .24s ease;
}
@supports (backdrop-filter: blur(14px)) {
  .site-header { backdrop-filter: blur(14px) saturate(115%); }
}
.site-header.is-scrolled, body.menu-open .site-header {
  border-bottom-color: rgba(255, 179, 0, .24);
  background: rgba(5, 5, 5, .97);
  box-shadow: 0 12px 34px rgba(0, 0, 0, .28);
}
.nav-shell {
  height: var(--header-height);
  display: grid;
  grid-template-columns: minmax(190px, 1fr) auto minmax(170px, 1fr);
  align-items: center;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 11px;
  justify-self: start;
  min-height: 44px;
}
.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(255, 179, 0, .3);
  border-radius: 11px;
  background: #080808;
  color: var(--color-accent);
  transition: border-color .2s ease, background-color .2s ease;
}
.brand-mark svg {
  width: 30px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
  transform: translateY(-.5px);
}
.brand-mark svg:not(.brand-tow-icon) { display: none; }
.brand-name {
  display: inline-flex;
  align-items: center;
  gap: .32em;
  color: var(--color-text);
  font-size: .96rem;
  font-weight: 820;
  line-height: 1;
  letter-spacing: .025em;
  white-space: nowrap;
}
.brand-name strong { color: var(--color-accent); font-weight: 900; letter-spacing: .015em; }
.brand:hover .brand-mark, .brand:focus-visible .brand-mark { border-color: rgba(255, 179, 0, .48); background: rgba(255, 179, 0, .045); }
.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  padding: 5px;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 15px;
  background: #0a0a0a;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .025);
  font-size: .84rem;
}
.desktop-nav a {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 42px;
  padding: 0 13px;
  border: 1px solid transparent;
  border-radius: 10px;
  color: rgba(247, 247, 245, .72);
  font-weight: 650;
  transition: color .2s ease, transform .2s ease, background-color .2s ease, border-color .2s ease;
}
.desktop-nav a::after {
  content: "";
  position: absolute;
  inset: auto 12px 4px;
  width: auto;
  height: 2px;
  border-radius: 99px;
  background: var(--color-accent);
  opacity: 0;
  transform: scaleX(.35);
  transition: opacity .2s ease, transform .2s ease;
}
.desktop-nav a:hover { border-color: rgba(255, 255, 255, .07); background: rgba(255, 255, 255, .025); color: var(--color-text); transform: translateY(-1px); }
.desktop-nav a[aria-current="page"] { border-color: rgba(255, 179, 0, .13); background: rgba(255, 179, 0, .065); color: var(--color-accent); }
.desktop-nav a:hover::after, .desktop-nav a[aria-current="page"]::after { opacity: 1; transform: scaleX(1); }
.header-call {
  display: grid;
  grid-template-columns: 36px auto;
  align-items: center;
  flex: 0 0 auto;
  gap: 9px;
  min-height: 52px;
  padding: 5px 12px 5px 7px;
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: 14px;
  background: #0a0a0a;
  line-height: 1.15;
  justify-self: end;
  transition: border-color .2s ease, background-color .2s ease, transform .2s ease;
}
.header-call-icon {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 179, 0, .2);
  border-radius: 10px;
  background: rgba(255, 179, 0, .055);
  color: var(--color-accent);
}
.header-call-icon svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.header-call-copy { display: grid; gap: 2px; }
.header-call-copy > span {
  color: var(--color-accent);
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.header-call strong { color: var(--color-text); font-size: .84rem; white-space: nowrap; }
.header-call:hover, .header-call:focus-visible { border-color: rgba(255, 179, 0, .3); background: #0d0d0d; transform: translateY(-1px); }
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid var(--color-border);
  border-radius: 11px;
  background: rgba(255, 255, 255, .025);
  color: var(--color-text);
}
.menu-toggle > span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  border-radius: 2px;
  background: currentColor;
  transform-origin: center;
  transition: transform .22s ease, opacity .22s ease;
}
.menu-toggle[aria-expanded="true"] > span:nth-of-type(2) { transform: translateY(6px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] > span:nth-of-type(3) { opacity: 0; }
.menu-toggle[aria-expanded="true"] > span:nth-of-type(4) { transform: translateY(-6px) rotate(-45deg); }
.mobile-menu {
  padding: 0 max(20px, calc((100vw - var(--max)) / 2));
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border-accent);
  background: #070707;
  box-shadow: 0 24px 60px rgba(0, 0, 0, .44);
}
.mobile-menu[hidden] { display: none; }
.mobile-menu-inner { min-height: 100%; max-width: 620px; display: flex; flex-direction: column; margin-inline: auto; padding: 12px 0 20px; }
.mobile-menu a:not(.button) {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 44px;
  padding: 7px 2px;
  border-bottom: 1px solid var(--color-border);
  color: rgba(247, 247, 245, .78);
  font-weight: 650;
}
.mobile-menu-primary { font-size: .96rem; }
.mobile-menu a[aria-current="page"] { padding-left: 12px; border-left: 2px solid var(--color-accent); background: rgba(255, 179, 0, .055); color: var(--color-accent); }
.mobile-menu-group { margin: 0; }
.mobile-menu-group-label {
  display: block;
  margin: 0;
  padding: 15px 2px 5px;
  color: var(--color-accent);
  font-size: .68rem;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.mobile-menu-secondary { padding-left: 14px; border-left: 1px solid rgba(255, 179, 0, .18); }
.mobile-menu-secondary a:not(.button) { color: rgba(247, 247, 245, .66); font-size: .88rem; font-weight: 600; }
.mobile-menu-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: auto; padding-top: 18px; }
.mobile-menu .button { width: 100%; min-height: 48px; padding-inline: 14px; }

.hero {
  min-height: min(820px, 100svh);
  position: relative;
  display: grid;
  align-items: end;
  overflow: hidden;
  border-bottom: 1px solid var(--color-border);
  background: var(--color-bg);
  color: var(--color-text);
}
.hero-media, .hero-shade { position: absolute; inset: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-shade {
  background:
    linear-gradient(90deg, rgba(5, 5, 5, .96) 0%, rgba(5, 5, 5, .82) 34%, rgba(5, 5, 5, .46) 56%, rgba(5, 5, 5, .10) 78%),
    linear-gradient(0deg, var(--color-bg) 0%, rgba(5, 5, 5, .52) 17%, transparent 46%);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding-top: calc(var(--header-height) + 96px);
  padding-bottom: clamp(68px, 7vw, 88px);
}
.hero-content h1 { max-width: 840px; margin-bottom: 24px; }
.hero-content h1 em { color: var(--color-accent); font-style: normal; }
.hero-content p {
  max-width: 620px;
  margin-bottom: 34px;
  color: rgba(247, 247, 245, .78);
  font-size: clamp(1rem, 1.35vw, 1.1rem);
  line-height: 1.72;
}
.actions { display: flex; flex-wrap: wrap; gap: 12px; }
.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 24px;
  border: 1px solid transparent;
  border-radius: var(--radius-control);
  font-weight: 800;
  line-height: 1.15;
  transition: transform .24s ease, background-color .24s ease, border-color .24s ease, box-shadow .24s ease, color .24s ease;
}
.button[href^="tel:"]::before {
  content: "";
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' d='M22 16.92v3a2 2 0 0 1-2.18 2 19.8 19.8 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.8 19.8 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72c.13.96.37 1.9.7 2.81a2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45c.91.33 1.85.57 2.81.7A2 2 0 0 1 22 16.92Z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' d='M22 16.92v3a2 2 0 0 1-2.18 2 19.8 19.8 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.8 19.8 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72c.13.96.37 1.9.7 2.81a2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45c.91.33 1.85.57 2.81.7A2 2 0 0 1 22 16.92Z'/%3E%3C/svg%3E") center / contain no-repeat;
}
.button-primary[href^="tel:"]::before { animation: phone-halo 3s ease-in-out infinite; }
.button-whatsapp::before {
  content: "";
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
  background: var(--color-whatsapp);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' d='M20.5 11.8a8.5 8.5 0 0 1-12.6 7.5L3 20.6l1.3-4.7a8.5 8.5 0 1 1 16.2-4.1Z M8.2 7.8c.3 3.9 2.2 5.8 6.1 6.1'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' d='M20.5 11.8a8.5 8.5 0 0 1-12.6 7.5L3 20.6l1.3-4.7a8.5 8.5 0 1 1 16.2-4.1Z M8.2 7.8c.3 3.9 2.2 5.8 6.1 6.1'/%3E%3C/svg%3E") center / contain no-repeat;
}
.button:focus-visible, summary:focus-visible, .menu-toggle:focus-visible, a:focus-visible {
  outline: 3px solid var(--color-accent-soft);
  outline-offset: 3px;
}
.button-primary {
  background: var(--color-accent);
  color: #171207;
  box-shadow: 0 10px 28px rgba(255, 179, 0, .14);
}
.button-primary:hover { background: var(--color-accent-soft); box-shadow: var(--shadow-accent); }
.button-ghost, .button-outline {
  border-color: rgba(255, 255, 255, .18);
  background: rgba(255, 255, 255, .035);
  color: var(--color-text);
}
.button-ghost:hover, .button-outline:hover { border-color: var(--color-border-accent); background: rgba(255, 179, 0, .045); }
.button-whatsapp {
  border-color: rgba(37, 211, 102, .42);
  background: rgba(13, 13, 13, .90);
  color: var(--color-text);
}
.button-dark { border-color: rgba(5, 5, 5, .18); background: var(--color-bg); color: var(--color-text); }

.services-section { padding-top: 76px; }
.section-intro { max-width: 680px; margin: 18px 0 0; font-size: 1.02rem; }
.service-stack { display: grid; gap: 22px; }
.service-row {
  position: relative;
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  min-height: 348px;
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: 18px;
  background: var(--color-surface);
  box-shadow: 0 18px 44px rgba(0, 0, 0, .24);
  transition: transform .26s ease, border-color .26s ease, box-shadow .26s ease;
}
.service-row::after {
  content: "";
  position: absolute;
  inset: 0 24px auto auto;
  width: 76px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 179, 0, .46));
  pointer-events: none;
}
.service-row.reverse img { order: 2; }
.service-row img { width: 100%; height: 348px; object-fit: cover; transition: transform .26s ease; }
.service-row > div { padding: clamp(28px, 3.5vw, 42px); display: flex; flex-direction: column; justify-content: center; }
.service-row > div > span, .process-grid article > span, .info-card > span {
  display: block;
  color: var(--color-accent);
  font-size: .76rem;
  font-weight: 850;
  letter-spacing: .14em;
}
.service-row h3 { margin: 14px 0; font-size: clamp(1.55rem, 2.6vw, 2.2rem); }
.service-row p {
  max-width: 52ch;
  margin-bottom: 0;
  overflow: hidden;
  color: var(--color-text-muted);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
.service-card-cta {
  min-height: 48px;
  align-self: flex-start;
  margin-top: 22px;
  padding: 11px 18px;
  border-color: var(--color-border-accent);
  background: rgba(255, 179, 0, .045);
  color: var(--color-text);
  font-size: .88rem;
}
.service-detail-link {
  align-self: flex-start;
  margin-top: 13px;
  color: var(--color-accent);
  font-size: .86rem;
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: rgba(255, 179, 0, .38);
  text-underline-offset: 5px;
}
.center-action { margin-top: 32px; text-align: center; }

.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.process-grid article, .info-card {
  position: relative;
  overflow: hidden;
  padding: clamp(26px, 2.5vw, 32px);
  border: 1px solid var(--color-border);
  border-radius: 18px;
  background: var(--color-surface);
  box-shadow: 0 16px 38px rgba(0, 0, 0, .22);
  transition: transform .26s ease, border-color .26s ease, box-shadow .26s ease;
}
.process-grid article::after, .info-card::after {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 72px;
  height: 1px;
  background: linear-gradient(90deg, var(--color-accent), transparent);
  opacity: .55;
}
.process-grid article > span, .info-card > span { margin-bottom: 24px; }
.process-grid h3, .info-card h2 { margin-bottom: 12px; }
.process-grid p, .info-card p { margin-bottom: 0; }
.process-grid.dark article { border-color: var(--color-border); background: var(--color-surface); }
.process-grid.dark p { color: var(--color-text-muted); }
.trust-section { background: var(--color-surface); color: var(--color-text); }
.trust-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(46px, 5vw, 64px); }
.trust-grid h2 { max-width: 620px; }
.trust-intro { max-width: 590px; margin: 20px 0 0; }
.trust-list { border-top: 1px solid var(--color-border); }
.trust-list p {
  display: grid;
  gap: 6px;
  padding: 24px 0;
  margin: 0;
  border-bottom: 1px solid var(--color-border);
}
.trust-list strong { color: var(--color-text); font-size: 1.03rem; }
.trust-list span { color: var(--color-text-muted); }
.faq-wrap { display: grid; grid-template-columns: .82fr 1.18fr; gap: clamp(42px, 5vw, 64px); }
.faq-list { border-top: 1px solid var(--color-border); }
.faq-list details { border-bottom: 1px solid var(--color-border); }
.faq-list summary {
  position: relative;
  padding: 22px 42px 22px 4px;
  cursor: pointer;
  color: var(--color-text);
  font-weight: 750;
  list-style: none;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 5px;
  top: 50%;
  color: var(--color-accent);
  font-size: 1.45rem;
  font-weight: 500;
  transform: translateY(-50%);
  transition: transform .22s ease;
}
.faq-list details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-list p { max-width: 62ch; padding: 0 42px 22px 4px; margin-bottom: 0; }
.call-band {
  position: relative;
  overflow: hidden;
  padding: clamp(56px, 5vw, 64px) 0;
  border-block: 1px solid var(--color-border-accent);
  background: var(--color-surface);
}
.call-band .container { display: flex; align-items: center; justify-content: space-between; gap: 34px; }
.call-band-copy { max-width: 760px; }
.call-band span { color: var(--color-accent); font-size: .74rem; font-weight: 850; letter-spacing: .13em; text-transform: uppercase; }
.call-band h2 { max-width: 720px; margin: 8px 0 0; font-size: clamp(1.65rem, 3vw, 2.45rem); }
.call-band-copy p { max-width: 680px; margin: 18px 0 0; }
.call-band-actions { display: flex; flex: 0 0 auto; gap: 10px; min-width: 510px; }
.call-band-actions .button { flex: 1 1 0; }
.call-band .button-dark { border-color: var(--color-border-accent); background: var(--color-accent); color: #171207; box-shadow: 0 10px 28px rgba(255, 179, 0, .12); }

.location-map {
  position: relative;
  border-top: 1px solid var(--color-border);
  background: #090909;
  color: var(--color-text);
}
.location-map-grid {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
  align-items: center;
  gap: clamp(40px, 5vw, 72px);
}
.location-map-content { min-width: 0; }
.location-map-content h2 {
  max-width: 15ch;
  margin: 14px 0 18px;
  font-size: clamp(2rem, 3.5vw, 3.25rem);
}
.location-map-description { max-width: 55ch; color: var(--color-text-muted); }
.location-map-address {
  display: grid;
  gap: 7px;
  max-width: 590px;
  margin: 26px 0 28px;
  padding: 19px 20px;
  border: 1px solid var(--color-border-accent);
  border-left: 3px solid var(--color-accent);
  border-radius: 14px;
  background: var(--color-surface);
  color: var(--color-text);
  font-style: normal;
  line-height: 1.65;
}
.location-map-address span {
  color: var(--color-accent);
  font-size: .7rem;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.location-map-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.location-map-actions .button { min-height: 54px; }
.button-map {
  border-color: var(--color-border-accent);
  background: transparent;
  color: var(--color-text);
}
.location-map-frame {
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 179, 0, .3);
  border-radius: 20px;
  background: #121212;
  box-shadow: 0 18px 48px rgba(255, 179, 0, .055);
}
.location-map-frame iframe {
  display: block;
  width: 100%;
  min-height: 380px;
  aspect-ratio: 16 / 9;
  border: 0;
}
.location-map--featured .location-map-frame { border-color: rgba(255, 179, 0, .46); }
.location-map-details { max-width: 590px; }
.location-map-phone { display: grid; gap: 6px; margin: -12px 0 24px; color: var(--color-text); }
.location-map-phone span { color: var(--color-accent); font-size: .7rem; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.location-map-phone a { width: fit-content; color: var(--color-text); font-size: 1.08rem; font-weight: 800; }
.location-map--compact { padding-block: 64px; }
.location-map--compact .location-map-grid { grid-template-columns: minmax(0, .72fr) minmax(0, 1.28fr); }
.location-map--compact .location-map-content h2 { max-width: 18ch; font-size: clamp(1.9rem, 3vw, 2.75rem); }
.location-map--compact .location-map-address { margin-block: 22px; }
.location-map--compact .location-map-actions .button { min-width: 220px; }
.location-map--compact .location-map-frame iframe { min-height: 330px; }

.page-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: calc(var(--header-height) + 102px) 0 92px;
  border-bottom: 1px solid var(--color-border);
  background: var(--color-bg);
  color: var(--color-text);
}
.page-hero.has-cover::before { content: ""; position: absolute; inset: 0; z-index: -2; background: var(--page-cover) center / cover no-repeat; }
.page-hero.has-cover::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(90deg, rgba(5, 5, 5, .96) 0%, rgba(5, 5, 5, .79) 50%, rgba(5, 5, 5, .32) 100%); }
.page-services .page-hero { background: linear-gradient(90deg, rgba(5, 5, 5, .96) 0%, rgba(5, 5, 5, .79) 54%, rgba(5, 5, 5, .28) 100%), url('/assets/images/pages/page-cover-generic-burgaz-cekici.webp') center / cover no-repeat; }
.page-regions .page-hero { background: linear-gradient(90deg, rgba(5, 5, 5, .96) 0%, rgba(5, 5, 5, .79) 54%, rgba(5, 5, 5, .28) 100%), url('/assets/images/pages/page-cover-luleburgaz-oto-cekici.webp') center / cover no-repeat; }
.page-contact .page-hero { background: linear-gradient(90deg, rgba(5, 5, 5, .96) 0%, rgba(5, 5, 5, .79) 54%, rgba(5, 5, 5, .28) 100%), url('/assets/images/pages/page-cover-luleburgaz-yol-yardim.webp') center / cover no-repeat; }
.page-hero h1 { max-width: 900px; margin-bottom: 22px; font-size: clamp(2.85rem, 6vw, 4.85rem); }
.page-hero p { max-width: 680px; margin-bottom: 30px; color: rgba(247, 247, 245, .74); font-size: clamp(1rem, 1.4vw, 1.08rem); }
.breadcrumb { margin-bottom: 42px; color: rgba(247, 247, 245, .56); font-size: .8rem; }
.breadcrumb ol { display: flex; flex-wrap: wrap; gap: 9px; padding: 0; margin: 0; list-style: none; }
.breadcrumb li { display: inline-flex; align-items: center; gap: 9px; }
.breadcrumb li:not(:last-child)::after { content: ">"; color: rgba(255, 179, 0, .58); }
.breadcrumb a:hover { color: var(--color-text); }
.card-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.info-card h2 { font-size: clamp(1.55rem, 2.6vw, 1.9rem); }
.prose { max-width: 820px; }
.prose p { font-size: clamp(1rem, 1.4vw, 1.08rem); }
.service-detail-hero {
  position: relative;
  isolation: isolate;
  min-height: 700px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  border-bottom: 1px solid var(--color-border);
  background: var(--color-bg);
}
.service-detail-hero-image, .service-detail-hero-shade { position: absolute; inset: 0; }
.service-detail-hero-image { z-index: -2; width: 100%; height: 100%; object-fit: cover; object-position: var(--hero-position, center); }
.service-detail-hero-shade {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, .97) 0%, rgba(5, 5, 5, .82) 48%, rgba(5, 5, 5, .34) 78%),
    linear-gradient(0deg, rgba(5, 5, 5, .9), transparent 55%);
}
.service-detail-hero-content { padding-top: calc(var(--header-height) + 64px); padding-bottom: clamp(70px, 7vw, 92px); }
.service-detail-hero-content h1 { max-width: 900px; margin-bottom: 22px; font-size: clamp(3rem, 6vw, 5.15rem); }
.keep-together { white-space: nowrap; }
.service-detail-hero-content > p { max-width: 660px; margin-bottom: 30px; color: rgba(247, 247, 245, .78); font-size: 1.08rem; }
.service-summary-grid { display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(320px, .92fr); align-items: start; gap: clamp(42px, 6vw, 78px); }
.service-summary-copy h2 { max-width: 720px; }
.service-summary-copy > p { max-width: 68ch; font-size: 1.04rem; }
.service-summary-image { overflow: hidden; aspect-ratio: 4 / 3; margin: 0; border: 1px solid var(--color-border-accent); border-radius: 20px; background: var(--color-surface); box-shadow: var(--shadow-card); }
.service-summary-image img { width: 100%; height: 100%; object-fit: cover; }
.service-benefits { display: grid; gap: 0; margin-top: 32px; border-top: 1px solid var(--color-border); }
.service-benefits > div { display: grid; grid-template-columns: minmax(150px, .42fr) 1fr; gap: 18px; padding: 17px 0; border-bottom: 1px solid var(--color-border); }
.service-benefits strong { color: var(--color-text); }
.service-benefits span { color: var(--color-text-muted); }
.service-summary--roadside .service-summary-grid { grid-template-columns: minmax(0, .92fr) minmax(360px, 1.08fr); }
.service-summary--transport { background: var(--color-bg-alt); }
.service-decision { overflow: hidden; border-block: 1px solid rgba(255, 179, 0, .22); background: #0b0b0b; }
.service-decision-grid { display: grid; grid-template-columns: minmax(0, .92fr) minmax(420px, 1.08fr); align-items: start; gap: clamp(44px, 7vw, 96px); }
.service-decision-copy h2 { max-width: 680px; }
.service-decision-copy p { max-width: 58ch; color: var(--color-text-muted); }
.service-decision-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); padding: 0; margin: 0; border-top: 1px solid var(--color-border-accent); list-style: none; }
.service-decision-list li { display: grid; grid-template-columns: 30px 1fr; gap: 12px; min-height: 104px; padding: 22px 18px; border-right: 1px solid var(--color-border); border-bottom: 1px solid var(--color-border); }
.service-decision-list li:nth-child(even) { border-right: 0; }
.service-decision-list span { color: var(--color-accent); font-size: .72rem; font-weight: 850; letter-spacing: .1em; }
.service-decision-list strong { align-self: start; color: var(--color-text); line-height: 1.45; }
.service-decision--roadside .service-decision-grid { grid-template-columns: minmax(360px, .84fr) minmax(0, 1.16fr); }
.service-decision--transport .service-decision-list { grid-template-columns: 1fr; }
.service-decision--transport .service-decision-list li { min-height: 0; border-right: 0; }
.service-signal-section { background: var(--color-bg-alt); }
.service-contact-info-section .service-copy-grid { grid-template-columns: minmax(300px, .84fr) minmax(0, 1.16fr); }
.service-transport-points .service-copy-grid { grid-template-columns: minmax(0, 1.2fr) minmax(300px, .8fr); }
.service-copy-section:nth-of-type(even), .service-safety-section { background: var(--color-bg-alt); }
.service-copy-grid { display: grid; grid-template-columns: minmax(0, 1.12fr) minmax(300px, .88fr); align-items: start; gap: clamp(46px, 7vw, 86px); }
.service-copy-grid.reverse > :first-child { order: 2; }
.service-copy-grid h2 { max-width: 760px; }
.service-copy-grid p { max-width: 70ch; font-size: 1.02rem; }
.service-check-list { padding: 0; margin: 4px 0 0; border-top: 1px solid var(--color-border-accent); list-style: none; }
.service-check-list li { position: relative; padding: 18px 10px 18px 32px; border-bottom: 1px solid var(--color-border); color: var(--color-text); }
.service-check-list li::before { content: ""; position: absolute; left: 4px; top: 27px; width: 12px; height: 2px; background: var(--color-accent); }
.related-services { background: var(--color-bg-alt); }
.related-service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.related-service-card { overflow: hidden; border: 1px solid var(--color-border); border-radius: 18px; background: var(--color-surface); }
.related-service-image { display: block; overflow: hidden; aspect-ratio: 16 / 9; }
.related-service-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .25s ease; }
.related-service-card > div { padding: 24px; }
.related-service-card span, .service-catalog-card > div > span, .service-guide-grid article > span { color: var(--color-accent); font-size: .7rem; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.related-service-card h3 { margin: 10px 0 12px; }
.related-service-card p { margin-bottom: 18px; }
.text-link { color: var(--color-accent); font-weight: 800; text-decoration: underline; text-decoration-color: rgba(255, 179, 0, .35); text-underline-offset: 5px; }
.service-paths { display: flex; flex-wrap: wrap; gap: 12px 22px; margin-top: 32px; padding-top: 24px; border-top: 1px solid var(--color-border); }
.service-paths a { color: var(--color-text-muted); font-size: .9rem; }
.service-paths a:hover { color: var(--color-accent); }
.service-catalog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.service-catalog-card { overflow: hidden; border: 1px solid var(--color-border); border-radius: 18px; background: var(--color-surface); box-shadow: 0 16px 38px rgba(0, 0, 0, .2); }
.service-catalog-image { display: block; overflow: hidden; aspect-ratio: 4 / 3; }
.service-catalog-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .25s ease; }
.service-catalog-card > div { padding: 26px; }
.service-catalog-card h2 { margin: 11px 0 13px; font-size: clamp(1.45rem, 2vw, 1.8rem); }
.service-catalog-card p { min-height: 5.2em; margin-bottom: 18px; }
.service-guide-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--color-border); border-left: 1px solid var(--color-border); }
.service-guide-grid article { min-height: 250px; padding: 30px clamp(22px, 3vw, 38px); border-right: 1px solid var(--color-border); border-bottom: 1px solid var(--color-border); }
.service-guide-grid h3 { margin: 13px 0; }
.service-guide-grid p { margin-bottom: 18px; }
.service-guide-grid a { color: var(--color-accent); font-weight: 750; }
.service-guide-grid .service-guide-situation { min-height: 3.4em; margin: 16px 0 10px; color: var(--color-text); font-size: 1.05rem; font-weight: 700; }
.region-focus { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(48px, 7vw, 76px); }
.region-focus p { font-size: clamp(1rem, 1.35vw, 1.05rem); }
.page-regions .area-hub-hero {
  background:
    linear-gradient(90deg, rgba(5, 5, 5, .97) 0%, rgba(5, 5, 5, .82) 52%, rgba(5, 5, 5, .28) 100%),
    url('/assets/images/pages/page-cover-luleburgaz-yol-yardim.webp') center 55% / cover no-repeat;
}
.area-hub-hero h1 { max-width: 980px; }
.area-intro-grid, .area-copy-grid, .area-route-grid, .area-required-grid, .area-service-selector-grid {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  align-items: start;
  gap: clamp(44px, 7vw, 88px);
}
.area-intro-grid h2, .area-copy-grid h2, .area-route-grid h2, .area-required-grid h2 { max-width: 720px; }
.area-intro-grid p, .area-copy-grid p, .area-route-grid p { max-width: 68ch; font-size: 1.02rem; }
.area-copy-grid.reverse > :first-child { order: 2; }
.area-check-list, .area-required-grid ul, .area-route-list {
  padding: 0;
  margin: 4px 0 0;
  border-top: 1px solid var(--color-border-accent);
  list-style: none;
}
.area-check-list li {
  position: relative;
  padding: 18px 10px 18px 34px;
  border-bottom: 1px solid var(--color-border);
  color: var(--color-text);
}
.area-check-list li::before { content: ""; position: absolute; left: 5px; top: 27px; width: 13px; height: 2px; background: var(--color-accent); }
.area-route-information { border-block-color: var(--color-border-accent); background: #0a0a0a; }
.area-route-information--motorway { background: #0d0b07; }
.area-route-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); }
.area-route-list li {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 12px;
  min-height: 102px;
  padding: 22px 18px;
  border-right: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}
.area-route-list li:nth-child(even) { border-right: 0; }
.area-route-list span, .area-required-grid li span { color: var(--color-accent); font-size: .72rem; font-weight: 850; letter-spacing: .1em; }
.area-route-list strong { color: var(--color-text); line-height: 1.45; }
.area-safety { padding-block: 58px; background: var(--color-surface); }
.area-safety--urgent { border-block-color: rgba(255, 179, 0, .36); background: #100d08; }
.area-safety-inner { display: grid; grid-template-columns: 70px minmax(0, 1fr); align-items: start; gap: 28px; }
.area-safety-inner > span {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border: 1px solid var(--color-border-accent);
  border-radius: 50%;
  color: var(--color-accent);
  font-size: 1.6rem;
  font-weight: 900;
}
.area-safety h2 { max-width: 820px; margin-bottom: 15px; font-size: clamp(1.8rem, 3vw, 2.65rem); }
.area-safety p { max-width: 82ch; margin-bottom: 0; }
.area-required-section { background: var(--color-bg-alt); }
.area-required-grid ul { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); }
.area-required-grid li { display: grid; grid-template-columns: 30px 1fr; gap: 12px; padding: 18px; border-right: 1px solid var(--color-border); border-bottom: 1px solid var(--color-border); color: var(--color-text); }
.area-required-grid li:nth-child(even) { border-right: 0; }
.area-catalog-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
.area-catalog-card { display: grid; grid-template-columns: minmax(170px, .74fr) minmax(0, 1.26fr); overflow: hidden; border: 1px solid var(--color-border); border-radius: 18px; background: var(--color-surface); }
.area-catalog-image { display: block; min-height: 100%; overflow: hidden; }
.area-catalog-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .25s ease; }
.area-catalog-card > div { padding: 25px 24px; }
.area-catalog-card > div > span { color: var(--color-accent); font-size: .68rem; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.area-catalog-card h3 { margin: 12px 0; font-size: clamp(1.35rem, 2vw, 1.7rem); }
.area-catalog-card p { max-height: 5.2em; overflow: hidden; margin-bottom: 17px; display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 3; }
.area-wayfinding-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); border-top: 1px solid var(--color-border); border-left: 1px solid var(--color-border); }
.area-wayfinding-grid a { min-height: 142px; display: flex; flex-direction: column; justify-content: center; gap: 7px; padding: 26px 30px; border-right: 1px solid var(--color-border); border-bottom: 1px solid var(--color-border); transition: background-color .22s ease, color .22s ease; }
.area-wayfinding-grid a:hover { background: rgba(255, 179, 0, .045); }
.area-wayfinding-grid span { color: var(--color-text-muted); }
.area-wayfinding-grid strong { color: var(--color-accent); font-size: 1.12rem; }
.area-service-selector-grid { grid-template-columns: minmax(0, .78fr) minmax(0, 1.22fr); }
.area-service-selector-grid nav { border-top: 1px solid var(--color-border-accent); }
.area-service-selector-grid nav a { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 17px 4px; border-bottom: 1px solid var(--color-border); }
.area-service-selector-grid nav a:hover strong { color: var(--color-accent); }
.area-service-selector-grid nav strong { color: var(--color-text); transition: color .2s ease; }
.area-service-selector-grid nav span { color: var(--color-text-muted); font-size: .78rem; }
.service-area-links { display: grid; grid-template-columns: 230px 1fr; align-items: start; gap: 26px; margin-top: 32px; padding: 24px 0; border-block: 1px solid var(--color-border); }
.service-area-links > span { color: var(--color-accent); font-size: .71rem; font-weight: 850; letter-spacing: .11em; text-transform: uppercase; }
.service-area-links > div { display: flex; flex-wrap: wrap; gap: 10px 14px; }
.service-area-links a { padding-bottom: 2px; border-bottom: 1px solid rgba(255, 179, 0, .32); color: var(--color-text); font-size: .89rem; }
.home-area-links { padding: 34px 0; border-block: 1px solid var(--color-border-accent); background: #0a0a0a; }
.home-area-links-grid { display: grid; grid-template-columns: minmax(260px, .7fr) minmax(0, 1.3fr); align-items: center; gap: clamp(30px, 5vw, 72px); }
.home-area-links h2 { max-width: 480px; margin-bottom: 0; font-size: clamp(1.5rem, 2.5vw, 2.15rem); }
.home-area-links nav { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); border-top: 1px solid var(--color-border); border-left: 1px solid var(--color-border); }
.home-area-links nav a { min-height: 62px; display: flex; align-items: center; gap: 12px; padding: 13px 16px; border-right: 1px solid var(--color-border); border-bottom: 1px solid var(--color-border); font-weight: 750; }
.home-area-links nav a:hover { background: rgba(255, 179, 0, .04); }
.home-area-links nav span { color: var(--color-accent); font-size: .68rem; letter-spacing: .1em; }
.home-pricing-band { padding: 42px 0; border-block: 1px solid var(--color-border-accent); background: var(--color-surface); }
.home-pricing-grid { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); align-items: center; gap: clamp(36px, 6vw, 78px); }
.home-pricing-grid h2 { max-width: 620px; margin-bottom: 14px; font-size: clamp(1.65rem, 3vw, 2.35rem); }
.home-pricing-grid p { max-width: 64ch; margin-bottom: 0; }
.home-pricing-grid nav { border-top: 1px solid var(--color-border-accent); }
.home-pricing-grid nav a { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 17px 4px; border-bottom: 1px solid var(--color-border); }
.home-pricing-grid nav a:hover strong { color: var(--color-accent); }
.home-pricing-grid nav strong { color: var(--color-text); transition: color .2s ease; }
.home-pricing-grid nav span { color: var(--color-text-muted); font-size: .82rem; }
.home-new-service-links { margin-top: 30px; }
.pricing-hero { padding-bottom: 76px; }
.pricing-copy-grid, .pricing-detail-grid, .pricing-request-grid { display: grid; grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr); align-items: start; gap: clamp(44px, 7vw, 88px); }
.pricing-copy-grid h2, .pricing-detail-grid h2, .pricing-request-grid h2 { max-width: 720px; }
.pricing-copy-grid p, .pricing-detail-grid p, .pricing-request-grid p { max-width: 70ch; font-size: 1.02rem; }
.pricing-detail-grid.reverse > :first-child { order: 2; }
.pricing-factor-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); border-top: 1px solid var(--color-border-accent); border-left: 1px solid var(--color-border); }
.pricing-factor-grid article { min-height: 178px; padding: 26px 28px; border-right: 1px solid var(--color-border); border-bottom: 1px solid var(--color-border); }
.pricing-factor-grid article > span { color: var(--color-accent); font-size: .7rem; font-weight: 850; letter-spacing: .1em; }
.pricing-factor-grid h3 { margin: 12px 0 9px; font-size: 1.25rem; }
.pricing-factor-grid p { margin-bottom: 0; }
.pricing-check-list, .pricing-request-grid ol { padding: 0; margin: 4px 0 0; border-top: 1px solid var(--color-border-accent); list-style: none; }
.pricing-check-list li { position: relative; padding: 18px 10px 18px 34px; border-bottom: 1px solid var(--color-border); color: var(--color-text); }
.pricing-check-list li::before { content: ""; position: absolute; left: 5px; top: 27px; width: 13px; height: 2px; background: var(--color-accent); }
.pricing-scenario-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); border-top: 1px solid var(--color-border); border-left: 1px solid var(--color-border); }
.pricing-scenario-grid article { min-height: 242px; padding: 28px; border-right: 1px solid var(--color-border); border-bottom: 1px solid var(--color-border); }
.pricing-scenario-grid h3 { margin-bottom: 14px; }
.pricing-request-grid ol { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); }
.pricing-request-grid li { display: grid; grid-template-columns: 32px 1fr; gap: 12px; padding: 18px; border-right: 1px solid var(--color-border); border-bottom: 1px solid var(--color-border); color: var(--color-text); }
.pricing-request-grid li:nth-child(even) { border-right: 0; }
.pricing-request-grid li span { color: var(--color-accent); font-size: .72rem; font-weight: 850; letter-spacing: .1em; }
.pricing-related-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); border-top: 1px solid var(--color-border); border-left: 1px solid var(--color-border); }
.pricing-related-grid a { min-height: 118px; display: flex; flex-direction: column; justify-content: center; gap: 7px; padding: 22px 26px; border-right: 1px solid var(--color-border); border-bottom: 1px solid var(--color-border); }
.pricing-related-grid a:hover strong { color: var(--color-accent); }
.pricing-related-grid strong { color: var(--color-text); transition: color .2s ease; }
.pricing-related-grid span { color: var(--color-text-muted); font-size: .9rem; }
.contact-grid { display: grid; grid-template-columns: 1.16fr .84fr; gap: clamp(44px, 6vw, 68px); }
.contact-primary {
  padding: clamp(34px, 6vw, 64px);
  border: 1px solid var(--color-border-accent);
  border-radius: var(--radius-card);
  background: var(--color-surface);
  box-shadow: var(--shadow-accent);
  color: var(--color-text);
}
.contact-primary h2 a { color: var(--color-accent); }
.contact-primary p { color: var(--color-text-muted); }
.contact-details { display: grid; align-content: center; }
.contact-details > div { padding: 24px 0; border-bottom: 1px solid var(--color-border); }
.contact-details span { display: block; margin-bottom: 8px; color: var(--color-accent); font-size: .72rem; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.contact-details p { margin: 0; }

.site-footer { padding: 68px 0 76px; border-top: 1px solid var(--color-border); background: var(--color-bg-alt); color: var(--color-text); }
.footer-grid { display: grid; grid-template-columns: 1.2fr 1.15fr .9fr 1fr; gap: clamp(30px, 4vw, 56px); }
.footer-grid > div, .footer-links { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; }
.footer-brand { color: var(--color-accent); font-size: 1.22rem; font-weight: 850; }
.footer-grid h2, .footer-group summary { margin-bottom: 18px; color: rgba(247, 247, 245, .48); font-size: .72rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.footer-group summary { list-style: none; pointer-events: none; }
.footer-group summary::-webkit-details-marker { display: none; }
.footer-group:not([open]) > .footer-links { display: none; }
.footer-grid p, .footer-grid address, .footer-grid span { color: var(--color-text-muted); }
.footer-grid a { transition: color .2s ease; }
.footer-grid a:hover { color: var(--color-accent); }
.footer-bottom { margin-top: 48px; padding-top: 24px; border-top: 1px solid var(--color-border); color: rgba(247, 247, 245, .5); font-size: .8rem; }
.mobile-cta { display: none; }
.error-main {
  min-height: 76vh;
  display: grid;
  place-items: center;
  padding: calc(var(--header-height) + 90px) 0 90px;
  background: var(--color-bg);
  color: var(--color-text);
  text-align: center;
}
.error-main .container { max-width: 760px; }
.error-code { color: var(--color-accent); font-size: clamp(5rem, 20vw, 10rem); font-weight: 900; line-height: .8; }
.error-main h1 { margin-top: 30px; font-size: clamp(2.3rem, 6vw, 4.4rem); }
.error-main p { color: var(--color-text-muted); }
.error-main .actions { justify-content: center; }

@media (hover: hover) and (pointer: fine) {
  .button:hover { transform: translateY(-2px); }
  .button-whatsapp:hover { border-color: rgba(37, 211, 102, .62); box-shadow: 0 14px 34px rgba(37, 211, 102, .075); }
  .button-map:hover { border-color: var(--color-accent); background: rgba(255, 179, 0, .055); }
  .service-row:hover, .process-grid article:hover, .info-card:hover {
    border-color: rgba(255, 179, 0, .34);
    box-shadow: 0 18px 42px rgba(255, 179, 0, .055);
    transform: translateY(-2px);
  }
  .service-row:hover img { transform: scale(1.015); }
  .related-service-card:hover img, .service-catalog-card:hover img { transform: scale(1.018); }
}

@media (max-width: 1080px) {
  :root { --header-height: 70px; }
  .nav-shell { display: flex; justify-content: space-between; gap: 18px; }
  .desktop-nav, .header-call { display: none; }
  .menu-toggle { display: block; }
  .mobile-menu {
    height: calc(100dvh - var(--header-height));
    max-height: calc(100dvh - var(--header-height));
    overflow-y: auto;
    overscroll-behavior: contain;
    animation: menu-panel-in .22s ease both;
  }
}

@media (max-width: 1060px) {
  .desktop-nav { gap: 20px; }
  .header-call { padding-left: 14px; }
  .header-call strong { font-size: .82rem; }
  .call-band .container { align-items: flex-start; flex-direction: column; }
  .call-band-actions { width: 100%; min-width: 0; }
  .service-catalog-grid, .related-service-grid { grid-template-columns: repeat(2, 1fr); }
  .area-catalog-card { grid-template-columns: 1fr; }
  .area-catalog-image { aspect-ratio: 16 / 9; }
  .footer-grid { grid-template-columns: 1.1fr 1fr 1fr; }
  .footer-brand-column { grid-column: 1 / -1; max-width: 560px; }
}

@media (max-width: 900px) {
  .hero { min-height: 720px; }
  .section { padding: 60px 0; }
  .hero-shade {
    background:
      linear-gradient(0deg, rgba(5, 5, 5, .98) 0%, rgba(5, 5, 5, .83) 35%, rgba(5, 5, 5, .42) 68%, rgba(5, 5, 5, .20) 100%),
      linear-gradient(90deg, rgba(5, 5, 5, .24), transparent 68%);
  }
  .trust-grid, .faq-wrap, .region-focus, .contact-grid, .location-map-grid, .service-summary-grid, .service-copy-grid, .area-intro-grid, .area-copy-grid, .area-route-grid, .area-required-grid, .area-service-selector-grid, .home-area-links-grid, .home-pricing-grid, .pricing-copy-grid, .pricing-detail-grid, .pricing-request-grid { grid-template-columns: 1fr; gap: 34px; }
  .service-summary--roadside .service-summary-grid, .service-contact-info-section .service-copy-grid, .service-transport-points .service-copy-grid, .location-map--compact .location-map-grid { grid-template-columns: 1fr; }
  .service-copy-grid.reverse > :first-child { order: 0; }
  .area-copy-grid.reverse > :first-child { order: 0; }
  .pricing-detail-grid.reverse > :first-child { order: 0; }
  .service-detail-hero { min-height: 650px; }
  .service-detail-hero-shade { background: linear-gradient(0deg, rgba(5, 5, 5, .98) 0%, rgba(5, 5, 5, .8) 58%, rgba(5, 5, 5, .34) 100%); }
  .service-detail-hero-image { object-position: var(--hero-position-mobile, center); }
  .service-decision-grid, .service-decision--roadside .service-decision-grid { grid-template-columns: 1fr; gap: 34px; }
  .service-guide-grid { grid-template-columns: 1fr; }
  .service-guide-grid article, .service-guide-grid article:first-child, .service-guide-grid article:last-child { min-height: 0; padding: 26px; border-right: 1px solid var(--color-border); border-bottom: 1px solid var(--color-border); }
  .service-guide-grid article:last-child { border-bottom: 0; }
  .location-map-content h2 { max-width: 18ch; }
  .location-map-frame iframe { min-height: 360px; aspect-ratio: auto; }
  .process-grid { grid-template-columns: 1fr; }
  .service-row, .service-row.reverse { grid-template-columns: 1fr; min-height: 0; }
  .service-row img, .service-row.reverse img { order: 0; height: 260px; }
  .service-row > div { min-height: auto; padding: 28px; }
  .card-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
  .page-hero, .page-services .page-hero, .page-regions .page-hero, .page-contact .page-hero {
    background-position: center;
  }
}

@media (max-width: 640px) {
  :root { --header-height: 68px; }
  body { padding-bottom: calc(76px + env(safe-area-inset-bottom, 0px)); }
  .container { width: min(calc(100% - 28px), var(--max)); }
  .section { padding: 46px 0; }
  .brand { gap: 10px; }
  .brand-mark { width: 36px; height: 36px; border-radius: 10px; }
  .brand-mark svg { width: 24px; }
  .brand-name { font-size: .88rem; }
  .hero-home { min-height: clamp(620px, 78svh, 680px); align-items: start; }
  .hero-home .hero-media img { object-position: 67% 44%; }
  .hero-home .hero-content { padding-top: calc(var(--header-height) + 50px); padding-bottom: 42px; }
  .hero-home .actions { transform: translateY(clamp(24px, 7vw, 30px)); }
  .hero-content h1 { max-width: 100%; margin-bottom: 18px; font-size: clamp(2.25rem, 10.6vw, 2.625rem); line-height: 1.04; }
  .hero-content p { max-width: 34ch; margin-bottom: 27px; font-size: 1rem; line-height: 1.65; }
  .hero-content .eyebrow { margin-bottom: 14px; font-size: .69rem; }
  .actions { display: grid; grid-template-columns: 1fr; }
  .actions .button { width: 100%; min-height: 54px; }
  .page-hero { padding: calc(var(--header-height) + 62px) 0 68px; }
  .page-hero h1 { max-width: 14ch; font-size: clamp(2.25rem, 10.6vw, 2.625rem); line-height: 1.04; }
  .page-area-hub .area-hub-hero h1 { max-width: 17ch; font-size: clamp(2.08rem, 9.25vw, 2.35rem); }
  .page-hero p { line-height: 1.65; }
  .breadcrumb { margin-bottom: 30px; }
  .service-detail-hero { min-height: 630px; }
  .service-detail-hero-content { padding-top: calc(var(--header-height) + 54px); padding-bottom: 54px; }
  .service-detail-hero-content h1 { max-width: 14ch; font-size: clamp(2.25rem, 10.6vw, 2.625rem); line-height: 1.04; }
  .service-detail-hero-content > p { font-size: 1rem; line-height: 1.65; }
  .service-detail-hero-content .actions { display: grid; grid-template-columns: 1fr; }
  .service-detail-hero-content .button { width: 100%; }
  .service-decision { padding-block: 44px; }
  .service-decision-list { grid-template-columns: 1fr; }
  .service-decision-list li, .service-decision-list li:nth-child(even) { min-height: 0; padding: 17px 12px; border-right: 0; }
  .service-guide-grid .service-guide-situation { min-height: 0; }
  .service-summary-image { border-radius: 18px; }
  .service-benefits > div { grid-template-columns: 1fr; gap: 4px; padding-block: 15px; }
  .service-check-list li { padding-block: 16px; }
  .service-check-list li::before { top: 25px; }
  .service-catalog-grid, .related-service-grid { grid-template-columns: 1fr; }
  .area-catalog-grid, .area-wayfinding-grid { grid-template-columns: 1fr; }
  .area-catalog-card { grid-template-columns: 1fr; }
  .area-catalog-image { min-height: 0; aspect-ratio: 16 / 9; }
  .area-catalog-card > div { padding: 22px 20px; }
  .area-wayfinding-grid a { min-height: 0; padding: 20px; }
  .area-route-list, .area-required-grid ul { grid-template-columns: 1fr; }
  .area-route-list li, .area-route-list li:nth-child(even), .area-required-grid li, .area-required-grid li:nth-child(even) { min-height: 0; padding: 16px 12px; border-right: 0; }
  .area-safety { padding-block: 44px; }
  .area-safety-inner { grid-template-columns: 46px 1fr; gap: 16px; }
  .area-safety-inner > span { width: 44px; height: 44px; font-size: 1.2rem; }
  .service-area-links { grid-template-columns: 1fr; gap: 13px; }
  .service-area-links > div { display: grid; gap: 11px; }
  .home-area-links { padding-block: 28px; }
  .home-area-links nav { grid-template-columns: 1fr; }
  .home-area-links nav a { min-height: 54px; }
  .home-pricing-band { padding-block: 34px; }
  .home-pricing-grid nav a { align-items: flex-start; flex-direction: column; gap: 3px; padding-block: 15px; }
  .pricing-hero { padding-bottom: 60px; }
  .pricing-factor-grid, .pricing-scenario-grid, .pricing-request-grid ol, .pricing-related-grid { grid-template-columns: 1fr; }
  .pricing-factor-grid article, .pricing-scenario-grid article { min-height: 0; padding: 22px 20px; }
  .pricing-request-grid li, .pricing-request-grid li:nth-child(even) { border-right: 0; }
  .pricing-related-grid a { min-height: 0; padding: 19px 20px; }
  .service-catalog-card > div, .related-service-card > div { padding: 22px 20px; }
  .service-catalog-card p { min-height: 0; }
  .service-paths { display: grid; gap: 13px; }
  .page-area-detail .related-services { overflow: hidden; padding-block: 28px; }
  .page-area-detail .related-services .section-heading { margin-bottom: 18px; }
  .page-area-detail .related-services .section-heading h2 { font-size: clamp(1.75rem, 8vw, 2.05rem); }
  .page-area-detail .related-service-grid {
    width: calc(100% + 14px);
    display: flex;
    gap: 14px;
    overflow-x: auto;
    padding: 0 14px 14px 0;
    scroll-padding-inline: 0 14px;
    scroll-snap-type: x mandatory;
    overscroll-behavior-inline: contain;
    scrollbar-width: none;
  }
  .page-area-detail .related-service-grid::-webkit-scrollbar { display: none; }
  .page-area-detail .related-service-card { flex: 0 0 86%; scroll-snap-align: start; }
  .page-area-detail .related-service-image { height: 132px; aspect-ratio: auto; }
  .page-area-detail .related-service-card > div { padding: 14px 16px 16px; }
  .page-area-detail .related-service-card h3 { margin-block: 6px 10px; font-size: 1.12rem; line-height: 1.25; }
  .page-area-detail .related-service-card p { display: none; }
  .page-area-detail .related-service-card .text-link { font-size: .85rem; }
  .page-area-detail .service-area-links { margin-top: 18px; padding-block: 14px; }
  .page-area-detail .service-area-links > div { display: flex; flex-wrap: nowrap; gap: 14px; overflow-x: auto; scrollbar-width: none; }
  .page-area-detail .service-area-links > div::-webkit-scrollbar { display: none; }
  .page-area-detail .service-area-links a { flex: 0 0 auto; white-space: nowrap; }
  .page-area-detail .service-paths { display: flex; flex-wrap: nowrap; gap: 18px; overflow-x: auto; margin-top: 14px; padding-top: 14px; scrollbar-width: none; }
  .page-area-detail .service-paths::-webkit-scrollbar { display: none; }
  .page-area-detail .service-paths a { flex: 0 0 auto; white-space: nowrap; font-size: .82rem; }
  .service-row { border-radius: 18px; }
  .service-row img, .service-row.reverse img { height: 218px; }
  .service-row > div { min-height: auto; padding: 21px 20px 22px; }
  .service-row h3 { margin-block: 11px; font-size: 1.45rem; }
  .service-card-cta { width: 100%; margin-top: 18px; }
  .process-grid article, .info-card { padding: 22px 20px; border-radius: 17px; }
  .process-grid article > span, .info-card > span { margin-bottom: 20px; }
  .trust-list p { padding: 20px 0; }
  .faq-list summary { padding-block: 18px; }
  .call-band { padding-block: 40px; }
  .call-band .container { align-items: stretch; flex-direction: column; }
  .call-band .button { width: 100%; min-height: 54px; }
  .call-band-actions { width: 100%; min-width: 0; flex-direction: column; }
  .location-map-content h2 { max-width: 15ch; font-size: clamp(2rem, 9.2vw, 2.5rem); }
  .location-map-address { margin-block: 22px 24px; padding: 17px 18px; }
  .location-map-actions { display: grid; grid-template-columns: 1fr; }
  .location-map-actions .button { width: 100%; }
  .location-map-frame { border-radius: 18px; }
  .location-map-frame iframe { min-height: 320px; }
  .location-map--compact { padding-block: 46px; }
  .location-map--compact .location-map-frame iframe { min-height: 280px; }
  .contact-primary { padding: 32px 24px; border-radius: 18px; }
  .footer-grid { grid-template-columns: 1fr; gap: 0; }
  .footer-grid > div:first-child { grid-column: auto; }
  .footer-brand-column { grid-column: auto; }
  .site-footer { padding: 42px 0 34px; }
  .footer-brand-column { gap: 8px; margin-bottom: 22px; }
  .footer-brand-column p { margin-bottom: 2px; }
  .footer-group { width: 100%; border-block: 1px solid var(--color-border); }
  .footer-group + .footer-group { border-top: 0; }
  .footer-group summary {
    position: relative;
    min-height: 50px;
    display: flex;
    align-items: center;
    margin: 0;
    padding: 13px 38px 13px 0;
    cursor: pointer;
    pointer-events: auto;
  }
  .footer-group summary::after { content: "+"; position: absolute; right: 2px; color: var(--color-accent); font-size: 1.25rem; line-height: 1; }
  .footer-group[open] summary::after { content: "−"; }
  .footer-group summary:focus-visible { outline: 2px solid var(--color-accent); outline-offset: 4px; }
  .footer-group .footer-links { gap: 0; padding: 2px 0 14px; }
  .footer-group .footer-links a { width: 100%; min-height: 44px; display: flex; align-items: center; padding-block: 9px; }
  .footer-contact-column { gap: 8px; margin-top: 22px; }
  .footer-contact-column h2 { margin-bottom: 4px; }
  .footer-bottom { margin-top: 30px; padding-top: 20px; }
  .mobile-cta {
    position: fixed;
    inset: auto 0 0;
    z-index: 80;
    display: block;
    padding: 9px 12px calc(9px + env(safe-area-inset-bottom, 0px));
    border-top: 1px solid var(--color-border);
    background: rgba(5, 5, 5, .95);
    box-shadow: 0 -16px 36px rgba(0, 0, 0, .28);
    transition: opacity .2s ease, transform .2s ease;
  }
  body.menu-open .mobile-cta, .mobile-cta.is-hero-cta-visible { opacity: 0; pointer-events: none; transform: translateY(100%); }
  @supports (backdrop-filter: blur(14px)) {
    .mobile-cta { backdrop-filter: blur(14px); }
  }
  .mobile-cta-actions { display: grid; grid-template-columns: 1fr; gap: 8px; }
  .mobile-cta.has-whatsapp .mobile-cta-actions { grid-template-columns: minmax(0, 1.27fr) minmax(0, 1fr); }
  .mobile-cta a {
    min-width: 0;
    min-height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 10px 15px;
    border: 1px solid transparent;
    border-radius: 11px;
    background: var(--color-accent);
    color: #171207;
    font-weight: 900;
    line-height: 1;
  }
  .mobile-cta .mobile-whatsapp {
    border-color: rgba(37, 211, 102, .35);
    background: var(--color-surface);
    color: var(--color-text);
  }
  .mobile-cta .mobile-whatsapp svg { color: var(--color-whatsapp); }
  .mobile-cta svg { width: 19px; height: 19px; flex: 0 0 auto; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
  .mobile-cta a:first-child svg { animation: phone-halo 3s ease-in-out infinite; }
}

/* Faz 2 belde ve köy dizini: mevcut kart, çizgi ve amber vurgu sistemiyle uyumlu. */
.locality-directory .section-heading,
.locality-villages .section-heading,
.locality-candidate-detail .section-heading { max-width: 820px; }
.locality-town-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.locality-town-grid a { min-height: 126px; }
.locality-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); margin: 0; padding: 0; border-top: 1px solid var(--color-border); border-left: 1px solid var(--color-border); list-style: none; }
.locality-list li { display: flex; min-width: 0; align-items: center; justify-content: space-between; gap: 20px; padding: 20px 22px; border-right: 1px solid var(--color-border); border-bottom: 1px solid var(--color-border); }
.locality-list li > div { display: grid; gap: 3px; min-width: 0; }
.locality-list strong { color: var(--color-text); font-size: 1.02rem; }
.locality-list span { color: var(--color-text-muted); font-size: .78rem; }
.locality-list nav { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 8px 13px; }
.locality-list a { display: inline-flex; min-height: 44px; align-items: center; color: var(--color-accent); font-size: .78rem; font-weight: 800; text-decoration: underline; text-underline-offset: 4px; }
.locality-source { margin: 22px 0 0; color: var(--color-text-muted); font-size: .82rem; }
.locality-source a,
.locality-candidate-detail article a { color: var(--color-accent); text-decoration: underline; text-underline-offset: 4px; }

@media (max-width: 900px) {
  .locality-town-grid,
  .locality-list { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .locality-list li { align-items: flex-start; flex-direction: column; gap: 12px; padding: 18px; }
  .locality-list nav { justify-content: flex-start; }
}

@media (max-width: 380px) {
  .container { width: min(calc(100% - 24px), var(--max)); }
  .brand-name { font-size: .82rem; }
  .menu-toggle { width: 44px; height: 44px; }
  .hero-content h1 { font-size: clamp(2.2rem, 11.4vw, 2.5rem); }
  .mobile-cta.has-whatsapp .mobile-cta-actions { grid-template-columns: minmax(0, 1.27fr) minmax(0, 1fr); }
  .mobile-cta a { padding-inline: 10px; font-size: .9rem; }
}

/* Digital asset sale / rental modal */
body.asset-offer-open { overflow: hidden; }
.asset-offer-modal[hidden] { display: none; }
.asset-offer-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: grid;
  place-items: center;
  padding: clamp(16px, 4vw, 36px);
}
.asset-offer-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .82);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  opacity: 0;
  transition: opacity .28s ease;
}
.asset-offer-dialog {
  position: relative;
  overflow: hidden auto;
  width: min(100%, 620px);
  max-height: calc(100dvh - 32px);
  padding: clamp(28px, 5vw, 48px);
  border: 1px solid rgba(255, 179, 0, .42);
  border-radius: clamp(20px, 3vw, 28px);
  background:
    radial-gradient(circle at 82% 5%, rgba(255, 179, 0, .15), transparent 34%),
    linear-gradient(145deg, #12110e 0%, #0b0b0b 48%, #070707 100%);
  box-shadow:
    0 32px 100px rgba(0, 0, 0, .72),
    0 0 0 1px rgba(255, 179, 0, .08),
    0 0 58px rgba(255, 179, 0, .16);
  opacity: 0;
  transform: translateY(18px) scale(.975);
  transition: opacity .28s ease, transform .28s ease;
}
.asset-offer-dialog::before {
  content: "";
  position: absolute;
  top: 0;
  right: 12%;
  left: 12%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
  box-shadow: 0 0 24px rgba(255, 179, 0, .7);
}
.asset-offer-modal.is-visible .asset-offer-backdrop { opacity: 1; }
.asset-offer-modal.is-visible .asset-offer-dialog { opacity: 1; transform: translateY(0) scale(1); }
.asset-offer-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 50%;
  background: rgba(255, 255, 255, .035);
  color: var(--color-text-muted);
  cursor: pointer;
  font: inherit;
  font-size: 1.7rem;
  line-height: 1;
  transition: border-color .2s ease, color .2s ease, background .2s ease;
}
.asset-offer-close:hover { border-color: rgba(255, 179, 0, .42); background: rgba(255, 179, 0, .07); color: var(--color-accent); }
.asset-offer-close:focus-visible { outline: 3px solid var(--color-accent-soft); outline-offset: 3px; }
.asset-offer-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 56px 19px 0;
  color: var(--color-accent);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.asset-offer-eyebrow::before { content: ""; width: 28px; height: 1px; background: currentColor; box-shadow: 0 0 12px currentColor; }
.asset-offer-dialog h2 { max-width: 12ch; margin: 0 0 20px; font-size: clamp(2.25rem, 6vw, 4rem); line-height: .98; letter-spacing: -.045em; }
.asset-offer-dialog h2 em { display: block; margin-top: 7px; color: var(--color-accent); font-style: normal; }
.asset-offer-dialog p { max-width: 50ch; margin: 0 0 28px; color: rgba(245, 245, 242, .72); font-size: 1rem; line-height: 1.72; }
.asset-offer-actions { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 13px; }
.asset-offer-actions .button { min-height: 56px; padding-inline: 18px; }
.asset-offer-actions .button-primary { animation: asset-call-glow 2.8s ease-in-out infinite; }
.asset-offer-actions .button-whatsapp { animation: asset-whatsapp-glow 2.8s ease-in-out infinite .35s; }
.asset-offer-dialog small { display: block; margin-top: 18px; color: rgba(245, 245, 242, .42); font-size: .75rem; line-height: 1.55; }

@media (max-width: 520px) {
  .asset-offer-modal { place-items: center; padding: 12px; }
  .asset-offer-dialog { width: 100%; max-height: calc(100dvh - 24px); padding: 30px 22px 24px; border-radius: 22px; }
  .asset-offer-close { top: 13px; right: 13px; }
  .asset-offer-eyebrow { margin-bottom: 18px; font-size: .65rem; }
  .asset-offer-dialog h2 { max-width: 11ch; font-size: clamp(2.05rem, 10.6vw, 2.75rem); }
  .asset-offer-dialog p { margin-bottom: 23px; font-size: .93rem; line-height: 1.62; }
  .asset-offer-actions { grid-template-columns: 1fr; gap: 11px; }
  .asset-offer-actions .button { min-height: 52px; }
}

@keyframes phone-halo {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .78; transform: scale(1.08); }
}

@keyframes asset-call-glow {
  0%, 100% { box-shadow: 0 10px 28px rgba(255, 179, 0, .14), 0 0 0 rgba(255, 179, 0, 0); }
  50% { box-shadow: 0 14px 36px rgba(255, 179, 0, .25), 0 0 26px rgba(255, 179, 0, .2); }
}

@keyframes asset-whatsapp-glow {
  0%, 100% { box-shadow: 0 10px 28px rgba(37, 211, 102, .08), 0 0 0 rgba(37, 211, 102, 0); }
  50% { box-shadow: 0 14px 36px rgba(37, 211, 102, .16), 0 0 24px rgba(37, 211, 102, .12); }
}

@keyframes menu-panel-in {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* Blog and guide center */
.blog-hub-hero { min-height: 610px; display: flex; align-items: flex-end; }
.blog-hub-hero .container { width: min(calc(100% - 40px), var(--max)); }
.blog-hub-hero .actions { margin-top: 30px; }
.blog-index-section { background: var(--color-bg); }
.blog-card-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
.blog-card {
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  background: var(--color-surface);
  box-shadow: 0 20px 52px rgba(0, 0, 0, .24);
}
.blog-card-image { display: block; overflow: hidden; aspect-ratio: 16 / 9; }
.blog-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s ease; }
.blog-card > div { padding: clamp(24px, 3vw, 34px); }
.blog-card > div > span, .blog-meta span, .blog-meta time {
  color: var(--color-accent);
  font-size: .7rem;
  font-weight: 850;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.blog-card h2 { margin: 11px 0 15px; font-size: clamp(1.5rem, 2.3vw, 2rem); line-height: 1.12; }
.blog-card p { max-width: 54ch; margin-bottom: 20px; }
.blog-service-band { padding: 46px 0; border-top: 1px solid var(--color-border); border-bottom: 1px solid var(--color-border); background: var(--color-bg-alt); }
.blog-service-band header { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 24px; }
.blog-service-band header .eyebrow { margin: 0; }
.blog-service-band h2 { max-width: 660px; margin: 0; font-size: clamp(1.65rem, 3vw, 2.45rem); }
.blog-service-band nav { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); border: 1px solid var(--color-border); border-radius: 17px; background: var(--color-surface); }
.blog-service-band nav a { min-width: 0; min-height: 110px; display: flex; flex-direction: column; justify-content: center; gap: 5px; padding: 20px; border-right: 1px solid var(--color-border); }
.blog-service-band nav a:last-child { border-right: 0; }
.blog-service-band nav strong { color: var(--color-text); font-size: .96rem; }
.blog-service-band nav span { color: var(--color-text-muted); font-size: .78rem; line-height: 1.45; }

.blog-detail-hero { min-height: 720px; }
.blog-detail-hero .service-detail-hero-shade {
  background:
    linear-gradient(90deg, rgba(5, 5, 5, .97) 0%, rgba(5, 5, 5, .83) 47%, rgba(5, 5, 5, .25) 100%),
    linear-gradient(0deg, rgba(5, 5, 5, .72), transparent 48%);
}
.blog-detail-hero .service-detail-hero-content h1 { max-width: 980px; font-size: clamp(2.8rem, 5.4vw, 4.8rem); }
.blog-detail-hero .service-detail-hero-content > p { max-width: 720px; }
.blog-meta { display: flex; flex-wrap: wrap; gap: 9px 18px; margin: -9px 0 26px; }
.blog-meta > * + *::before { content: "•"; margin-right: 18px; color: rgba(255, 255, 255, .28); }
.blog-article { padding: clamp(72px, 7vw, 100px) 0; border-top: 1px solid var(--color-border); background: var(--color-bg); }
.blog-article-shell { max-width: 950px; }
.blog-lead { margin-bottom: 68px; padding: clamp(28px, 4vw, 42px); border-left: 3px solid var(--color-accent); background: linear-gradient(100deg, rgba(255, 179, 0, .07), rgba(255, 179, 0, .015)); }
.blog-lead p { color: rgba(245, 245, 242, .83); font-size: clamp(1.05rem, 1.5vw, 1.16rem); line-height: 1.8; }
.blog-lead p:last-child { margin-bottom: 0; }
.blog-publisher-note { margin: -36px 0 48px; color: var(--color-text-muted); font-size: .82rem; line-height: 1.65; }
.blog-content-section { padding: clamp(52px, 6vw, 72px) 0; border-top: 1px solid var(--color-border); }
.blog-content-section > h2 { max-width: 780px; margin-bottom: 20px; font-size: clamp(1.9rem, 3.4vw, 2.8rem); }
.blog-section-intro, .blog-prose { max-width: 780px; }
.blog-section-intro { margin-bottom: 30px; font-size: 1.05rem; }
.blog-prose p { margin-bottom: 22px; color: rgba(245, 245, 242, .7); }
.blog-section--callout { margin-block: 16px; padding: clamp(30px, 5vw, 46px); border: 1px solid var(--color-border-accent); border-radius: var(--radius-card); background: var(--color-surface); box-shadow: var(--shadow-accent); }
.blog-section--callout + .blog-content-section { border-top: 0; }
.blog-signal-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); border-top: 1px solid var(--color-border); border-left: 1px solid var(--color-border); }
.blog-signal-grid article { min-width: 0; padding: 25px 26px; border-right: 1px solid var(--color-border); border-bottom: 1px solid var(--color-border); background: rgba(255, 255, 255, .012); }
.blog-signal-grid h3 { margin-bottom: 11px; font-size: 1.15rem; }
.blog-signal-grid p { margin: 0; font-size: .94rem; }
.blog-step-list { padding: 0; margin: 32px 0 0; list-style: none; counter-reset: blog-step; }
.blog-step-list li { position: relative; display: grid; grid-template-columns: 58px 1fr; gap: 22px; padding: 25px 0; border-top: 1px solid var(--color-border); counter-increment: blog-step; }
.blog-step-list li::before { content: counter(blog-step, decimal-leading-zero); width: 48px; height: 48px; display: grid; place-items: center; border: 1px solid var(--color-border-accent); border-radius: 50%; color: var(--color-accent); font-size: .75rem; font-weight: 850; }
.blog-step-list h3 { margin-bottom: 10px; }
.blog-step-list p { max-width: 720px; margin: 0; }
.blog-table-wrap { max-width: 100%; overflow-x: auto; margin-top: 30px; border: 1px solid var(--color-border); border-radius: 16px; }
.blog-table-wrap table { width: 100%; min-width: 720px; border-collapse: collapse; background: var(--color-surface); text-align: left; }
.blog-table-wrap th, .blog-table-wrap td { padding: 18px 20px; border-right: 1px solid var(--color-border); border-bottom: 1px solid var(--color-border); vertical-align: top; }
.blog-table-wrap th:last-child, .blog-table-wrap td:last-child { border-right: 0; }
.blog-table-wrap tr:last-child th, .blog-table-wrap tr:last-child td { border-bottom: 0; }
.blog-table-wrap thead th { color: var(--color-accent); font-size: .73rem; letter-spacing: .08em; text-transform: uppercase; }
.blog-table-wrap tbody th { width: 18%; color: var(--color-text); }
.blog-table-wrap td { color: var(--color-text-muted); font-size: .92rem; }
.blog-checklist-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; margin-top: 30px; }
.blog-checklist-grid > section { padding: 26px; border: 1px solid var(--color-border); border-radius: 16px; background: var(--color-surface); }
.blog-checklist-grid h3 { margin-bottom: 18px; }
.blog-checklist-grid ul, .blog-note-list { padding: 0; margin: 0; list-style: none; }
.blog-checklist-grid li, .blog-note-list li { position: relative; padding: 11px 0 11px 24px; border-top: 1px solid var(--color-border); color: var(--color-text-muted); }
.blog-checklist-grid li::before, .blog-note-list li::before { content: ""; position: absolute; left: 2px; top: 22px; width: 7px; height: 7px; border-radius: 50%; background: var(--color-accent); }
.blog-message-template { margin: 30px 0 22px; padding: clamp(26px, 4vw, 38px); border: 1px solid var(--color-border-accent); border-radius: 18px; background: var(--color-surface); }
.blog-message-template p { margin: 0; color: rgba(245, 245, 242, .86); font-size: 1.05rem; line-height: 1.8; }
.blog-note-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0 26px; }
.blog-context-links { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); margin-top: 30px; border: 1px solid var(--color-border); border-radius: 15px; background: var(--color-surface); }
.blog-context-links a { min-width: 0; display: flex; flex-direction: column; gap: 5px; padding: 20px 22px; border-right: 1px solid var(--color-border); border-bottom: 1px solid var(--color-border); }
.blog-context-links a:nth-child(even), .blog-context-links a:last-child { border-right: 0; }
.blog-context-links a:nth-last-child(-n+2) { border-bottom: 0; }
.blog-context-links strong { color: var(--color-accent); }
.blog-context-links span { color: var(--color-text-muted); font-size: .86rem; }
.blog-inline-link { max-width: 780px; margin: 24px 0 0; color: var(--color-text-muted); }
.blog-inline-link a { color: var(--color-accent); font-weight: 750; text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 4px; }
.blog-sources { display: flex; flex-wrap: wrap; gap: 10px 18px; margin-top: 24px; padding-top: 20px; border-top: 1px solid var(--color-border); font-size: .8rem; }
.blog-sources strong { width: 100%; color: var(--color-text); }
.blog-sources a { color: var(--color-accent); text-decoration: underline; text-underline-offset: 4px; }
.blog-final-cta { display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: end; gap: 38px; margin-top: 30px; padding: clamp(30px, 5vw, 48px); border: 1px solid var(--color-border-accent); border-radius: var(--radius-card); background: linear-gradient(125deg, rgba(255, 179, 0, .09), var(--color-surface) 50%); }
.blog-final-cta h2 { max-width: 650px; margin-bottom: 15px; font-size: clamp(1.8rem, 3vw, 2.5rem); }
.blog-final-cta p { max-width: 680px; margin-bottom: 0; }
.blog-final-cta .actions { min-width: 210px; }
.blog-final-cta .button { width: 100%; }
.blog-back-link { display: inline-flex; margin-top: 34px; color: var(--color-accent); font-weight: 800; }

@media (hover: hover) and (pointer: fine) {
  .blog-card:hover .blog-card-image img { transform: scale(1.018); }
  .blog-card:hover, .blog-context-links a:hover { border-color: rgba(255, 179, 0, .3); }
  .blog-service-band nav a:hover strong { color: var(--color-accent); }
}

@media (min-width: 1024px) {
  .blog-post--otobanda-arac-arizasinda-ne-yapilmali .blog-checklist-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .blog-post--otobanda-arac-arizasinda-ne-yapilmali .blog-checklist-grid > section { height: 100%; }
}

@media (max-width: 1060px) {
  .blog-service-band nav { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .blog-service-band nav a { border-bottom: 1px solid var(--color-border); }
  .blog-service-band nav a:nth-child(3) { border-right: 0; }
  .blog-service-band nav a:nth-last-child(-n+2) { border-bottom: 0; }
}

@media (max-width: 900px) {
  .blog-hub-hero { min-height: 590px; }
  .blog-hub-hero .container { width: min(calc(100% - 40px), var(--max)); }
  .blog-detail-hero { min-height: 680px; }
  .blog-detail-hero .service-detail-hero-shade { background: linear-gradient(0deg, rgba(5, 5, 5, .98) 0%, rgba(5, 5, 5, .84) 58%, rgba(5, 5, 5, .32) 100%); }
  .blog-final-cta { grid-template-columns: 1fr; align-items: start; }
  .blog-final-cta .actions { min-width: 0; }
}

@media (max-width: 640px) {
  .blog-hub-hero { min-height: 0; padding-top: calc(var(--header-height) + 52px); }
  .blog-hub-hero .container { width: min(calc(100% - 28px), var(--max)); }
  .blog-hub-hero h1 { max-width: 12ch; }
  .blog-hub-hero .actions { display: grid; grid-template-columns: 1fr; }
  .blog-card-grid { grid-template-columns: 1fr; gap: 18px; }
  .blog-card > div { padding: 22px 20px 24px; }
  .blog-card h2 { font-size: 1.48rem; }
  .blog-service-band { padding: 38px 0; }
  .blog-service-band header { align-items: flex-start; flex-direction: column; gap: 8px; }
  .blog-service-band nav { grid-template-columns: 1fr; }
  .blog-service-band nav a, .blog-service-band nav a:nth-child(3), .blog-service-band nav a:nth-last-child(-n+2) { min-height: 0; padding: 17px 19px; border-right: 0; border-bottom: 1px solid var(--color-border); }
  .blog-service-band nav a:last-child { border-bottom: 0; }
  .blog-detail-hero { min-height: 680px; }
  .blog-detail-hero .service-detail-hero-content { padding-top: calc(var(--header-height) + 42px); }
  .blog-detail-hero .service-detail-hero-content h1 { max-width: 15ch; font-size: clamp(2.15rem, 10.2vw, 2.55rem); }
  .blog-detail-hero .breadcrumb { margin-bottom: 24px; }
  .blog-meta { margin-top: -5px; }
  .blog-article { padding: 52px 0; }
  .blog-lead { margin-bottom: 42px; padding: 24px 21px; }
  .blog-publisher-note { margin: -18px 0 34px; }
  .blog-content-section { padding: 44px 0; }
  .blog-content-section > h2 { font-size: clamp(1.75rem, 8.2vw, 2.2rem); }
  .blog-section--callout { margin-block: 8px; padding: 25px 21px; }
  .blog-signal-grid, .blog-checklist-grid, .blog-context-links, .blog-note-list { grid-template-columns: 1fr; }
  .blog-signal-grid article { padding: 21px 19px; }
  .blog-step-list li { grid-template-columns: 46px 1fr; gap: 15px; padding: 21px 0; }
  .blog-step-list li::before { width: 40px; height: 40px; }
  .blog-checklist-grid > section { padding: 22px 20px; }
  .blog-context-links a, .blog-context-links a:nth-child(even), .blog-context-links a:nth-last-child(-n+2) { padding: 18px; border-right: 0; border-bottom: 1px solid var(--color-border); }
  .blog-context-links a:last-child { border-bottom: 0; }
  .blog-table-wrap { overflow: visible; margin-inline: 0; border: 0; border-radius: 0; }
  .blog-table-wrap table { display: block; min-width: 0; background: transparent; }
  .blog-table-wrap thead { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
  .blog-table-wrap tbody { display: grid; gap: 14px; }
  .blog-table-wrap tr { display: block; overflow: hidden; border: 1px solid var(--color-border); border-radius: 14px; background: var(--color-surface); }
  .blog-table-wrap tbody th { display: block; width: auto; padding: 16px 18px; border: 0; border-bottom: 1px solid var(--color-border); color: var(--color-text); font-size: 1.02rem; }
  .blog-table-wrap td { display: grid; grid-template-columns: minmax(88px, 108px) minmax(0, 1fr); gap: 12px; padding: 15px 18px; border: 0; border-bottom: 1px solid var(--color-border); font-size: .9rem; }
  .blog-table-wrap td:last-child { border-bottom: 0; }
  .blog-table-wrap td::before { content: attr(data-label); color: var(--color-accent); font-size: .68rem; font-weight: 850; letter-spacing: .06em; line-height: 1.45; text-transform: uppercase; }
  .blog-final-cta { padding: 26px 21px; gap: 24px; }
  .blog-final-cta .actions { display: grid; grid-template-columns: 1fr; }
}
