:root {
  --bg: #0b1117;
  --bg-2: #111827;
  --bg-3: #16202b;
  --card: #ffffff;
  --muted: #64748b;
  --text: #111827;
  --white: #fff;
  --brand: #f59e0b;
  --brand-2: #f97316;
  --line: #e5e7eb;
  --soft: #f7f7f4;
  --green: #16a34a;
  --container: 1180px;
  --radius: 18px;
  --shadow: 0 18px 50px rgba(15, 23, 42, 0.12);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family:
    Inter,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  color: var(--text);
  background: #fff;
  line-height: 1.65;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  height: auto;
}
p {
  margin: 0 0 16px;
}
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 22px;
}
.topbar {
  background: #070b10;
  color: #cbd5e1;
  font-size: 13px;
}
.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding-top: 8px;
  padding-bottom: 8px;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(11, 17, 23, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  min-height: 76px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.03em;
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: #111;
  font-weight: 900;
  box-shadow: 0 12px 24px rgba(245, 158, 11, 0.26);
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 2px;
}
.main-nav a {
  color: #e5e7eb;
  padding: 10px 13px;
  border-radius: 999px;
  font-size: 15px;
}
.main-nav a:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: 999px;
  padding: 13px 18px;
  font-weight: 800;
  line-height: 1.1;
  cursor: pointer;
  transition: 0.18s ease;
}
.btn-primary {
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: #111;
  box-shadow: 0 14px 28px rgba(245, 158, 11, 0.28);
}
.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 34px rgba(245, 158, 11, 0.34);
}
.btn-dark {
  background: #111827;
  color: #fff;
}
.btn-ghost {
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  background: transparent;
}
.btn-light {
  background: #fff;
  color: #111827;
}
.menu-toggle {
  display: none;
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 10px 12px;
}
.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 80% 20%,
      rgba(245, 158, 11, 0.24),
      transparent 28%
    ),
    linear-gradient(135deg, #0b1117 0%, #121d28 58%, #1f2937 100%);
  color: #fff;
}
.hero:before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: 0.26;
}
.hero .container {
  position: relative;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 44px;
  align-items: center;
  min-height: 600px;
  padding-top: 58px;
  padding-bottom: 70px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 16px;
  color: #fde68a;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0.08em;
}
.eyebrow:before {
  content: "";
  width: 34px;
  height: 2px;
  background: var(--brand);
  display: inline-block;
}
.hero h1,
.page-hero h1 {
  font-size: clamp(38px, 6vw, 72px);
  line-height: 0.98;
  margin: 0 0 20px;
  letter-spacing: -0.06em;
}
.hero p.lead,
.page-hero .lead {
  font-size: 19px;
  color: #dbe4ef;
  max-width: 680px;
  margin-bottom: 26px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0 24px;
}
.hero-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: #dbe4ef;
}
.hero-list li {
  display: flex;
  gap: 8px;
  align-items: center;
}
.hero-list li:before {
  content: "✓";
  color: #22c55e;
  font-weight: 900;
}
.hero-panel {
  position: relative;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 28px;
  padding: 24px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.28);
}
.metal-card {
  min-height: 430px;
  border-radius: 24px;
  background: linear-gradient(160deg, #f8fafc 0%, #d1d5db 45%, #737373 100%);
  position: relative;
  overflow: hidden;
}
.metal-card:before {
  content: "";
  position: absolute;
  inset: 36px;
  border: 1px solid rgba(17, 24, 39, 0.15);
  border-radius: 22px;
}
.metal-card .badge {
  position: absolute;
  left: 24px;
  bottom: 24px;
  right: 24px;
  background: rgba(11, 17, 23, 0.9);
  color: #fff;
  border-radius: 18px;
  padding: 20px;
}
.badge strong {
  display: block;
  font-size: 28px;
  color: #fbbf24;
}
.quick-cards {
  margin-top: -52px;
  position: relative;
  z-index: 3;
}
.quick-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.quick-card span {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: #fff7ed;
  color: #c2410c;
  font-weight: 900;
  margin-bottom: 12px;
}
.quick-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 22px;
  border: 1px solid #eef2f7;
}
.quick-card h3 {
  margin: 0 0 8px;
  font-size: 18px;
}
.quick-card p {
  color: var(--muted);
  font-size: 14px;
  margin: 0;
}
.section {
  padding: 82px 0;
}
.section-soft {
  background: var(--soft);
}
.section-dark {
  background: var(--bg);
  color: #fff;
}
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 34px;
}
.section-head h2 {
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.06;
  margin: 0;
  letter-spacing: -0.04em;
}
.section-head p {
  max-width: 640px;
  color: #64748b;
  margin: 0;
}
.section-dark .section-head p {
  color: #cbd5e1;
}
.grid {
  display: grid;
  gap: 22px;
}
.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}
.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}
.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}
.service-card,
.location-card,
.info-card {
  background: #fff;
  border: 1px solid #e7edf3;
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
  transition: 0.2s ease;
}
.service-card:hover,
.location-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.service-card h3,
.location-card h3,
.info-card h3 {
  margin: 0 0 10px;
  font-size: 21px;
  letter-spacing: -0.02em;
}
.service-card p,
.location-card p,
.info-card p {
  color: var(--muted);
  margin-bottom: 18px;
}
.readmore {
  font-weight: 900;
  color: #c2410c;
}
.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  align-items: center;
}
.about-box {
  background: #fff;
  border-radius: 26px;
  padding: 34px;
  box-shadow: var(--shadow);
  border: 1px solid #eef2f7;
}
.about-box h2 {
  font-size: 42px;
  line-height: 1.08;
  margin: 0 0 18px;
  letter-spacing: -0.04em;
}
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 24px;
}
.stat {
  background: #111827;
  color: #fff;
  border-radius: 18px;
  padding: 18px;
}
.stat strong {
  display: block;
  color: #fbbf24;
  font-size: 27px;
  line-height: 1;
}
.stat span {
  font-size: 13px;
  color: #cbd5e1;
}
.process {
  counter-reset: step;
}
.step {
  position: relative;
  background: #fff;
  border-radius: 18px;
  padding: 26px;
  border: 1px solid #e7edf3;
}
.step:before {
  counter-increment: step;
  content: counter(step);
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: #111827;
  color: #fbbf24;
  font-weight: 900;
  margin-bottom: 16px;
}
.cta-band {
  background: linear-gradient(135deg, #f59e0b, #f97316);
  border-radius: 28px;
  padding: 42px;
  color: #111;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  box-shadow: 0 24px 60px rgba(249, 115, 22, 0.26);
}
.cta-band h2 {
  margin: 0 0 8px;
  font-size: 34px;
  letter-spacing: -0.04em;
}
.cta-band p {
  margin: 0;
  color: #43240a;
}
.page-hero {
  background:
    radial-gradient(
      circle at 80% 10%,
      rgba(245, 158, 11, 0.2),
      transparent 25%
    ),
    linear-gradient(135deg, #0b1117, #1f2937);
  color: #fff;
  padding: 74px 0;
}
.breadcrumb {
  font-size: 14px;
  color: #cbd5e1;
  margin-bottom: 18px;
}
.breadcrumb a {
  color: #fbbf24;
}
.content-wrap {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 34px;
  align-items: start;
}
.main-content {
  background: #fff;
  border-radius: 22px;
  border: 1px solid #e7edf3;
  padding: 34px;
}
.main-content h2 {
  font-size: 32px;
  letter-spacing: -0.03em;
  margin: 34px 0 14px;
}
.main-content h2:first-child {
  margin-top: 0;
}
.main-content h3 {
  font-size: 22px;
  margin: 22px 0 8px;
}
.main-content p,
.main-content li {
  color: #475569;
}
.side-card {
  background: #111827;
  color: #fff;
  border-radius: 22px;
  padding: 24px;
  position: sticky;
  top: 100px;
}
.side-card h3 {
  margin: 0 0 12px;
}
.side-card p {
  color: #cbd5e1;
}
.list-check {
  list-style: none;
  padding: 0;
  margin: 18px 0;
}
.list-check li {
  display: flex;
  gap: 9px;
  margin: 10px 0;
  color: #334155;
}
.list-check li:before {
  content: "✓";
  color: #16a34a;
  font-weight: 900;
}
.section-dark .list-check li {
  color: #dbe4ef;
}
.faq details {
  background: #fff;
  border: 1px solid #e7edf3;
  border-radius: 16px;
  padding: 18px 20px;
  margin-bottom: 12px;
}
.faq summary {
  font-weight: 900;
  cursor: pointer;
}
.faq p {
  color: #64748b;
  margin-top: 10px;
  margin-bottom: 0;
}
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
}
.contact-card,
.form-card {
  background: #fff;
  border: 1px solid #e7edf3;
  border-radius: 22px;
  padding: 28px;
  box-shadow: 0 8px 30px rgba(15, 23, 42, 0.05);
}
label {
  display: block;
  font-weight: 800;
  margin-bottom: 6px;
}
input,
textarea,
select {
  width: 100%;
  border: 1px solid #dbe3ec;
  border-radius: 12px;
  padding: 13px 14px;
  font: inherit;
  margin-bottom: 14px;
}
textarea {
  min-height: 130px;
}
.site-footer {
  background: #070b10;
  color: #cbd5e1;
  padding: 58px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 28px;
}
.footer-title {
  color: #fff;
  font-weight: 900;
  margin-bottom: 14px;
}
.footer-links {
  display: grid;
  gap: 9px;
}
.footer-links a:hover {
  color: #fbbf24;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 34px;
  padding-top: 20px;
  font-size: 13px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
}
.mobile-cta {
  display: none;
}
.muted {
  color: var(--muted);
}
.chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.chip {
  background: #fff7ed;
  color: #9a3412;
  border: 1px solid #fed7aa;
  border-radius: 999px;
  padding: 8px 12px;
  font-weight: 800;
  font-size: 14px;
}
.map-placeholder {
  background: linear-gradient(135deg, #e5e7eb, #f8fafc);
  min-height: 320px;
  border-radius: 22px;
  display: grid;
  place-items: center;
  color: #64748b;
  font-weight: 900;
  text-align: center;
  padding: 24px;
  border: 1px solid #e7edf3;
}
@media (max-width: 980px) {
  .main-nav,
  .header-actions {
    display: none;
  }
  .menu-toggle {
    display: inline-flex;
  }
  .nav-wrap {
    min-height: 68px;
  }
  .main-nav.is-open {
    display: grid;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: #0b1117;
    padding: 14px 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
  .hero .container,
  .split,
  .content-wrap,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .hero .container {
    min-height: auto;
  }
  .quick-grid,
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .side-card {
    position: static;
  }
  .cta-band {
    display: block;
  }
  .mobile-cta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: fixed;
    z-index: 80;
    left: 0;
    right: 0;
    bottom: 0;
    background: #070b10;
    padding: 9px;
    gap: 8px;
    box-shadow: 0 -12px 28px rgba(0, 0, 0, 0.22);
  }
  body {
    padding-bottom: 70px;
  }
}
@media (max-width: 640px) {
  .topbar {
    display: none;
  }
  .hero h1,
  .page-hero h1 {
    font-size: 40px;
  }
  .hero .container {
    padding-top: 42px;
  }
  .hero-panel {
    display: none;
  }
  .quick-cards {
    margin-top: 0;
    padding-top: 20px;
  }
  .quick-grid,
  .grid-2,
  .grid-3,
  .grid-4,
  .stats,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .section {
    padding: 56px 0;
  }
  .section-head {
    display: block;
  }
  .brand {
    font-size: 18px;
  }
  .brand-mark {
    width: 38px;
    height: 38px;
  }
  .main-content {
    padding: 24px;
  }
  .footer-bottom {
    display: block;
  }
  .hero-list {
    grid-template-columns: 1fr;
  }
}

/* Visual enhancement layer: image-ready hero, metal card, service cards and work section */
.hero.hero-with-image {
  isolation: isolate;
}
.hero.hero-with-image:after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(
      90deg,
      rgba(10, 16, 22, 0.94) 0%,
      rgba(10, 16, 22, 0.82) 42%,
      rgba(10, 16, 22, 0.54) 100%
    ),
    var(--hero-bg-image, none);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover, cover;
  opacity: 0.94;
  z-index: 0;
  pointer-events: none;
}
.hero.hero-with-image:before {
  z-index: 1;
}
.hero.hero-with-image .container {
  z-index: 2;
}
.hero-copy {
  max-width: 680px;
}
.hero-copy .lead,
.hero-copy .hero-list {
  filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.24));
}
.metal-card {
  background: #111827;
  background-image:
    linear-gradient(180deg, rgba(17, 24, 32, 0.18), rgba(17, 24, 32, 0.78)),
    var(--metal-card-bg-image, none);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
}
.metal-card-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.24;
  transform: scale(1.01);
}
.metal-card-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 30% 20%,
      rgba(242, 140, 27, 0.18),
      transparent 34%
    ),
    linear-gradient(
      180deg,
      rgba(11, 17, 23, 0.04),
      rgba(11, 17, 23, 0.18) 42%,
      rgba(0, 0, 0, 0.58) 100%
    );
  z-index: 1;
}
.metal-card:before {
  z-index: 2;
  border-color: rgba(255, 255, 255, 0.2);
}
.metal-card .badge {
  z-index: 3;
  backdrop-filter: blur(10px);
  background: rgba(11, 17, 23, 0.76);
}
.service-card-media {
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.service-card-visual {
  margin: 0;
  position: relative;
  aspect-ratio: 16/9;
  background: #111827;
  overflow: hidden;
}
.service-card-visual:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(11, 17, 23, 0.02),
    rgba(11, 17, 23, 0.3)
  );
  pointer-events: none;
}
.service-card-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition:
    transform 0.28s ease,
    opacity 0.28s ease;
  opacity: 0.94;
}
.service-card-media:hover .service-card-visual img {
  transform: scale(1.045);
  opacity: 1;
}
.service-card-body {
  padding: 24px 26px 26px;
  display: flex;
  flex-direction: column;
  min-height: 245px;
}
.service-card-body .readmore {
  margin-top: auto;
}
.statement-section {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: #0f172a;
  color: #fff;
}
.statement-section:before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(7, 11, 16, 0.88), rgba(12, 18, 26, 0.68)),
    var(--statement-bg-image, none) center/cover no-repeat;
  z-index: 0;
}
.statement-section .container {
  position: relative;
  z-index: 1;
}
.statement-shell {
  max-width: 860px;
  padding: 12px 0;
}
.statement-shell h2 {
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.04;
  letter-spacing: -0.04em;
  margin: 0 0 14px;
}
.statement-shell p:last-child {
  max-width: 720px;
  color: #dbe4ef;
}
.work-section {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: #0b1117;
}
.work-section:before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(10, 16, 22, 0.94),
      rgba(10, 16, 22, 0.78),
      rgba(10, 16, 22, 0.55)
    ),
    var(--workflow-bg-image, none) center/cover no-repeat;
  opacity: 1;
  z-index: 0;
  pointer-events: none;
}
.work-section > .container,
.work-section .work-section-content {
  position: relative;
  z-index: 1;
}
.work-section .about-box,
.work-section .main-content {
  position: relative;
  z-index: 1;
  background: rgba(248, 250, 252, 0.92);
  backdrop-filter: blur(10px);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.18);
}
.work-section-visual-only {
  padding: 0;
  min-height: clamp(360px, 48vw, 680px);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.work-section-visual-only:before {
  background:
    linear-gradient(90deg, rgba(10, 16, 22, 0.72), rgba(10, 16, 22, 0.38)),
    var(--workflow-bg-image, none) center/cover no-repeat;
}
.work-section-visual-only .work-section-content,
.work-section-content.is-hidden {
  display: none;
}
@media (max-width: 980px) {
  .service-card-body {
    min-height: auto;
  }
  .hero.hero-with-image:after {
    opacity: 0.96;
    background-position: center center;
  }
  .hero-copy {
    max-width: 100%;
  }
  .metal-card {
    min-height: 360px;
  }
}
@media (max-width: 768px) {
  .work-section-visual-only {
    min-height: 360px;
  }
}
@media (max-width: 640px) {
  .hero.hero-with-image:after {
    opacity: 1;
    background-position: center center;
  }
  .hero-panel {
    display: block;
    padding: 14px;
    margin-top: 22px;
  }
  .metal-card {
    min-height: 280px;
    background-position: center;
  }
  .metal-card:before {
    inset: 18px;
  }
  .metal-card .badge {
    left: 14px;
    right: 14px;
    bottom: 14px;
    padding: 16px;
  }
  .badge strong {
    font-size: 22px;
  }
  .service-card-body {
    padding: 22px;
  }
  .work-section:before {
    opacity: 0.72;
  }
}
@media (max-width: 480px) {
  .work-section-visual-only {
    min-height: 300px;
  }
}

/* Service hub and detail pages */
.service-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  padding: 11px 16px;
  border-radius: 999px;
  background: #111827;
  color: #fff;
  font-weight: 800;
  transition: 0.18s ease;
}
.service-card-media:hover .service-link {
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: #111;
}
.service-grid {
  align-items: stretch;
}
.service-hub-hero .container,
.service-detail-hero .container {
  align-items: stretch;
}
.hero-list-wide {
  grid-template-columns: 1fr;
}
.service-hub-panel,
.service-detail-panel {
  display: flex;
  align-items: stretch;
}
.service-hub-panel {
  background-image:
    linear-gradient(140deg, rgba(15, 23, 42, 0.18), rgba(15, 23, 42, 0.42)),
    var(--service-hub-panel-bg-image, none);
  background-position: center;
  background-size: cover;
}
.service-hub-stack {
  display: grid;
  gap: 14px;
  width: 100%;
}
.service-hub-pill {
  padding: 18px 20px;
  border-radius: 20px;
  background: rgba(11, 17, 23, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.18);
}
.service-hub-pill strong {
  display: block;
  font-size: 18px;
  color: #fff;
  margin-bottom: 6px;
}
.service-hub-pill span {
  display: block;
  color: #dbe4ef;
  font-size: 14px;
}
.section-head-stack {
  display: block;
}
.section-head-stack h2 {
  margin-bottom: 10px;
}
.content-narrow {
  max-width: 920px;
}
.prose-block {
  max-width: 860px;
}
.prose-block p {
  font-size: 17px;
  color: #475569;
}
.prose-block-spaced {
  margin-top: 24px;
}
.region-link-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}
.region-link-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 24px;
  border-radius: 22px;
  background: #fff;
  border: 1px solid #e7edf3;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
  transition: 0.2s ease;
}
.region-link-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.region-link-side {
  display: inline-flex;
  align-self: flex-start;
  padding: 7px 12px;
  border-radius: 999px;
  background: #fff7ed;
  color: #9a3412;
  border: 1px solid #fed7aa;
  font-weight: 800;
  font-size: 12px;
}
.region-link-card h3 {
  margin: 0;
  font-size: 20px;
  letter-spacing: -0.02em;
}
.region-link-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}
.service-detail-panel {
  background-image:
    linear-gradient(140deg, rgba(15, 23, 42, 0.18), rgba(15, 23, 42, 0.42)),
    var(--service-detail-panel-bg-image, none);
  background-position: center;
  background-size: cover;
}
.service-detail-visual {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  min-height: 100%;
  background: #111827;
}
.service-detail-visual img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  display: block;
}
.chip-list-light {
  margin-top: 14px;
}
.chip-dark {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.16);
  color: #fff7d6;
}
.side-card-rich {
  display: grid;
  gap: 14px;
}
.side-card-ghost {
  justify-content: center;
}
.side-links {
  display: grid;
  gap: 10px;
  padding-top: 6px;
}
.side-links a {
  color: #fbbf24;
  font-weight: 700;
}
.text-link {
  color: #c2410c;
  font-weight: 800;
}
.pricing-layout {
  align-items: start;
}
.prose-card {
  padding: 30px;
}
.factor-list-card {
  background: #111827;
  color: #fff;
  border-radius: 24px;
  padding: 30px;
  box-shadow: var(--shadow);
}
.factor-list-card h3 {
  margin: 0 0 14px;
  font-size: 24px;
}
.factor-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}
.factor-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: #dbe4ef;
}
.factor-list li:before {
  content: "✓";
  color: #fbbf24;
  font-weight: 900;
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  counter-reset: step;
}
.service-step {
  height: 100%;
}
.service-step h3 {
  margin: 0 0 8px;
  font-size: 19px;
}
.faq details[open] {
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.06);
}
.cta-band-split {
  align-items: center;
}
.cta-band-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

@media (max-width: 1100px) {
  .region-link-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .process-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .service-hub-hero .container,
  .service-detail-hero .container {
    grid-template-columns: 1fr;
  }
  .service-hub-panel,
  .service-detail-panel {
    margin-top: 8px;
  }
  .region-link-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .cta-band-actions {
    margin-top: 18px;
  }
}

@media (max-width: 640px) {
  .service-link {
    width: 100%;
  }
  .prose-block p {
    font-size: 16px;
  }
  .region-link-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }
  .service-hub-pill {
    padding: 16px;
  }
  .service-detail-visual img {
    min-height: 260px;
  }
  .factor-list-card,
  .prose-card {
    padding: 22px;
  }
  .cta-band-actions {
    display: grid;
    grid-template-columns: 1fr;
  }
  .cta-band-actions .btn {
    width: 100%;
  }
}

/* Services page UX and SEO refinements */
.service-hub-panel {
  flex-direction: column;
}
.service-hub-pill {
  display: block;
  transition: 0.18s ease;
}
.service-hub-pill:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(17, 24, 39, 0.88);
}
.service-hub-pill[hidden] {
  display: none;
}
.service-hub-toggle {
  margin-top: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  padding: 12px 16px;
  background: rgba(11, 17, 23, 0.8);
  color: #fff;
  font-weight: 800;
  cursor: pointer;
  transition: 0.18s ease;
}
.service-hub-toggle:hover {
  background: rgba(17, 24, 39, 0.95);
}
.service-hub-toggle-icon {
  font-size: 18px;
  line-height: 1;
  transition: transform 0.18s ease;
}
.service-hub-toggle[aria-expanded="true"] .service-hub-toggle-icon {
  transform: rotate(180deg);
}
.section-head-light h2,
.section-head-light p {
  color: #fff;
}
.prose-block-light p {
  color: #e5edf5;
}
.inline-cta-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 22px;
}
.light-link {
  color: #fde68a;
}
.service-choice-section {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.service-choice-section:before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(11, 17, 23, 0.88), rgba(17, 24, 39, 0.74)),
    var(--service-choice-bg, none) center/cover no-repeat;
  z-index: 0;
}
.service-choice-section > .container {
  position: relative;
  z-index: 1;
}
.service-regions-section {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.service-regions-section:before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(12, 17, 24, 0.92), rgba(12, 17, 24, 0.72)),
    var(--service-regions-bg, none) center/cover no-repeat;
  z-index: 0;
}
.service-regions-section > .container {
  position: relative;
  z-index: 1;
}
.service-pricing-section {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.service-pricing-section:before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      135deg,
      rgba(247, 247, 244, 0.96),
      rgba(247, 247, 244, 0.88)
    ),
    var(--service-pricing-bg-image, none) center/cover no-repeat;
  z-index: 0;
}
.service-pricing-section > .container {
  position: relative;
  z-index: 1;
}
.service-regions-section .section-head p {
  color: #dbe4ef;
}
.service-regions-section .region-link-card {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(5px);
}
.service-regions-section .region-links-footer .btn-dark {
  background: #fff;
  color: #111827;
}
.service-regions-section .region-links-footer .btn-dark:hover {
  background: #f8fafc;
}
.region-links-shell {
  display: grid;
  gap: 18px;
}
.region-link-carousel {
  display: grid;
  grid-template-columns: none;
  grid-auto-flow: column;
  grid-auto-columns: minmax(260px, 320px);
  overflow-x: auto;
  padding-bottom: 8px;
  scroll-snap-type: x proximity;
  scrollbar-width: thin;
}
.region-link-carousel .region-link-card {
  scroll-snap-align: start;
  background: linear-gradient(180deg, #fff, #f8fafc);
}
.region-link-carousel::-webkit-scrollbar {
  height: 10px;
}
.region-link-carousel::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 999px;
}
.region-links-footer {
  display: flex;
  justify-content: flex-start;
}

@media (max-width: 980px) {
  .inline-cta-links {
    gap: 10px;
  }
  .service-regions-section:before {
    background-position: center;
  }
}

@media (max-width: 640px) {
  .inline-cta-links {
    display: grid;
    grid-template-columns: 1fr;
  }
  .region-link-carousel {
    grid-template-columns: none;
    grid-auto-columns: minmax(84vw, 84vw);
  }
}

/* Crosslink cloud and sidebar refinements */
.service-region-crosslinks .section-head p {
  max-width: 760px;
}
.crosslink-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.crosslink-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid #dbe3ec;
  color: #111827;
  font-weight: 800;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
  transition: 0.18s ease;
  white-space: normal;
}
.crosslink-chip:hover {
  transform: translateY(-2px);
  border-color: #f59e0b;
  color: #9a3412;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.1);
}
.crosslink-chip[hidden] {
  display: none;
}
.crosslink-toggle {
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid #dbe3ec;
  border-radius: 999px;
  padding: 12px 16px;
  background: #111827;
  color: #fff;
  font-weight: 800;
  cursor: pointer;
  transition: 0.18s ease;
}
.crosslink-toggle:hover {
  background: #1f2937;
}
.crosslink-toggle-icon {
  font-size: 18px;
  line-height: 1;
  transition: transform 0.18s ease;
}
.crosslink-toggle[aria-expanded="true"] .crosslink-toggle-icon {
  transform: rotate(180deg);
}
.crosslink-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.crosslink-card {
  background: #fff;
  border: 1px solid #e7edf3;
  border-radius: 22px;
  padding: 24px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
  display: grid;
  gap: 12px;
  scroll-margin-top: 110px;
}
.crosslink-card h3 {
  margin: 0;
  font-size: 20px;
  letter-spacing: -0.02em;
}
.crosslink-card p {
  margin: 0;
  color: var(--muted);
}
.crosslink-card-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 999px;
  background: #111827;
  color: #fff;
  font-weight: 800;
  transition: 0.18s ease;
}
.crosslink-card-link:hover {
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: #111;
}
.location-service-crosslinks {
  scroll-margin-top: 110px;
}
.service-sidebar-card {
  display: grid;
  gap: 18px;
  text-align: center;
  padding: 28px;
}
.service-sidebar-card h2 {
  margin: 0;
  font-size: 28px;
  letter-spacing: -0.03em;
}
.service-sidebar-card p {
  margin: 0;
  color: #dbe4ef;
}
.sidebar-cta-group {
  display: grid;
  gap: 12px;
}
.sidebar-cta-group .btn {
  width: 100%;
}
.sidebar-link-list {
  display: grid;
  gap: 10px;
}
.sidebar-link-list a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #fde68a;
  font-weight: 800;
  transition: 0.18s ease;
}
.sidebar-link-list a:hover {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
}
.crosslink-chip:focus-visible,
.crosslink-card-link:focus-visible,
.sidebar-link-list a:focus-visible,
.sidebar-cta-group .btn:focus-visible {
  outline: 3px solid rgba(245, 158, 11, 0.45);
  outline-offset: 3px;
}

@media (max-width: 1100px) {
  .crosslink-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .crosslink-cloud {
    gap: 10px;
  }
  .service-sidebar-card {
    margin-top: 8px;
  }
}

@media (max-width: 640px) {
  .crosslink-grid {
    grid-template-columns: 1fr;
  }
  .sidebar-link-list,
  .sidebar-cta-group {
    display: grid;
    grid-template-columns: 1fr;
  }
  .crosslink-chip,
  .crosslink-card-link {
    width: 100%;
  }
  .service-sidebar-card h2 {
    font-size: 24px;
  }
}

/* Location x service crosslink cards */
.location-service-cross-section {
  position: relative;
}
.crosslink-head p {
  max-width: 780px;
}
.location-service-mini-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.location-service-mini-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 100%;
  padding: 24px;
  border-radius: 22px;
  background: #fff;
  border: 1px solid #e7edf3;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
  scroll-margin-top: 110px;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    border-color 0.18s ease;
}
.location-service-mini-card:hover {
  transform: translateY(-3px);
  border-color: #f59e0b;
  box-shadow: var(--shadow);
}
.location-service-mini-card h3 {
  margin: 0;
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.location-service-mini-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}
.location-service-mini-card.is-hidden {
  display: none;
}
.mini-card-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  margin-top: auto;
  padding-top: 6px;
}
.mini-card-primary,
.mini-card-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 11px 14px;
  border-radius: 999px;
  font-weight: 800;
  text-align: center;
  transition: 0.18s ease;
}
.mini-card-primary {
  background: #111827;
  color: #fff;
}
.mini-card-primary:hover {
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: #111;
}
.mini-card-whatsapp {
  background: #ecfdf3;
  border: 1px solid rgba(22, 163, 74, 0.18);
  color: #166534;
}
.mini-card-whatsapp:hover {
  background: #16a34a;
  border-color: #16a34a;
  color: #fff;
}
.crosslink-reveal {
  margin-top: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid #dbe3ec;
  border-radius: 999px;
  padding: 12px 16px;
  background: #111827;
  color: #fff;
  font-weight: 800;
  cursor: pointer;
  transition: 0.18s ease;
}
.crosslink-reveal:hover {
  background: #1f2937;
}
.crosslink-reveal .crosslink-toggle-icon {
  font-size: 18px;
  line-height: 1;
  transition: transform 0.18s ease;
}
.crosslink-reveal[aria-expanded="true"] .crosslink-toggle-icon {
  transform: rotate(180deg);
}
.mini-card-primary:focus-visible,
.mini-card-whatsapp:focus-visible,
.crosslink-reveal:focus-visible {
  outline: 3px solid rgba(245, 158, 11, 0.45);
  outline-offset: 3px;
}

@media (max-width: 1180px) {
  .location-service-mini-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .location-service-mini-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .location-service-mini-grid {
    grid-template-columns: 1fr;
  }
  .crosslink-reveal {
    width: 100%;
  }
}

/* Location visual system and WhatsApp CTA refinements */
.btn-whatsapp {
  transition:
    background 0.18s ease,
    color 0.18s ease,
    border-color 0.18s ease,
    box-shadow 0.18s ease,
    transform 0.18s ease;
}
.btn-whatsapp:hover,
.btn-whatsapp:focus-visible {
  background: #25d366;
  color: #062b12;
  border-color: #25d366;
  box-shadow: 0 16px 34px rgba(37, 211, 102, 0.28);
}
.btn-whatsapp:focus-visible {
  outline: 3px solid rgba(37, 211, 102, 0.28);
  outline-offset: 3px;
}
.page-hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.page-hero > .container {
  position: relative;
  z-index: 1;
}
.page-hero-image:before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(7, 11, 16, 0.88), rgba(12, 18, 26, 0.72)),
    var(--page-hero-bg, none) center/cover no-repeat;
  z-index: 0;
}
.page-hero-image:after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: 0.22;
  z-index: 0;
}
.locations-index-hero .lead,
.location-detail-hero .lead {
  max-width: 760px;
}
.location-card-media {
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.location-card-visual {
  position: relative;
  aspect-ratio: 16/9;
  margin: 0;
  background: #111827;
  overflow: hidden;
}
.location-card-visual:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(11, 17, 23, 0.04),
    rgba(11, 17, 23, 0.28)
  );
  pointer-events: none;
}
.location-card-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition:
    transform 0.28s ease,
    opacity 0.28s ease;
  opacity: 0.95;
}
.location-card-media:hover .location-card-visual img {
  transform: scale(1.045);
  opacity: 1;
}
.location-card-body {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 24px 26px 26px;
  min-height: 220px;
}
.location-card-body .chip-list {
  margin-top: auto;
}
.local-area-keyword-section {
  margin-top: 34px;
  padding: 28px;
  border-radius: 24px;
  background: linear-gradient(180deg, #f8fafc, #f1f5f9);
  border: 1px solid #e7edf3;
}
.local-area-keyword-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0 0;
}
.local-area-keyword-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 13px;
  border-radius: 999px;
  background: #fff;
  color: #9a3412;
  border: 1px solid #fed7aa;
  font-weight: 800;
  font-size: 14px;
}
.local-area-keyword-note {
  margin: 18px 0 14px;
  color: #475569;
}
.local-area-keyword-cta {
  display: inline-flex;
}

@media (max-width: 980px) {
  .location-card-body {
    min-height: auto;
  }
  .page-hero-image:before {
    background-position: center;
  }
}

@media (max-width: 640px) {
  .page-hero-image {
    padding: 60px 0;
  }
  .location-card-body {
    padding: 22px;
  }
  .local-area-keyword-section {
    padding: 22px;
  }
  .local-area-keyword-grid {
    gap: 8px;
  }
  .local-area-keyword-chip {
    width: 100%;
    justify-content: flex-start;
  }
  .local-area-keyword-cta {
    width: 100%;
    justify-content: center;
  }
}

/* Location detail modules */
.location-main-content {
  display: grid;
  gap: 28px;
}
.location-intro-section {
  display: grid;
  gap: 16px;
}
.accepted-scrap-section {
  display: grid;
  gap: 18px;
}
.accepted-scrap-section h2 {
  margin: 0;
}
.accepted-scrap-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.accepted-scrap-card {
  padding: 20px 22px;
  border-radius: 20px;
  background: linear-gradient(180deg, #fff, #f8fafc);
  border: 1px solid #e7edf3;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.05);
}
.accepted-scrap-card p {
  margin: 0;
  color: #475569;
}
.location-price-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.location-price-card {
  padding: 22px;
  border-radius: 22px;
  background: #fff;
  border: 1px solid #e7edf3;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
}
.location-price-card p {
  margin: 0;
  color: #475569;
}
.location-process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.location-process-card {
  display: grid;
  gap: 14px;
  padding: 24px;
  border-radius: 22px;
  background: #fff;
  border: 1px solid #e7edf3;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
}
.location-process-index {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: #111827;
  color: #fbbf24;
  font-weight: 900;
}
.location-process-card p {
  margin: 0;
  color: #475569;
}
.nearby-location-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.nearby-location-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 22px;
  background: #fff;
  border: 1px solid #e7edf3;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    border-color 0.18s ease;
}
.nearby-location-card:hover {
  transform: translateY(-3px);
  border-color: #f59e0b;
  box-shadow: var(--shadow);
}
.nearby-location-visual {
  margin: 0;
  aspect-ratio: 16/9;
  background: #111827;
  overflow: hidden;
}
.nearby-location-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.28s ease;
}
.nearby-location-card:hover .nearby-location-visual img {
  transform: scale(1.04);
}
.nearby-location-body {
  display: grid;
  gap: 10px;
  padding: 20px;
}
.nearby-location-body h3 {
  margin: 0;
  font-size: 19px;
  letter-spacing: -0.02em;
}
.nearby-location-body p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

@media (max-width: 1100px) {
  .location-price-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .location-process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .nearby-location-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .accepted-scrap-grid,
  .location-price-grid,
  .location-process-grid,
  .nearby-location-grid {
    grid-template-columns: 1fr;
  }
  .accepted-scrap-card,
  .location-price-card,
  .location-process-card,
  .nearby-location-body {
    padding: 20px;
  }
}

/* Final CTA and visual system */
.btn-icon {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
}
.btn-call,
.btn-whatsapp-solid,
.btn-whatsapp-ghost,
.btn-cta-glow {
  position: relative;
  overflow: hidden;
}
.btn-call {
  background: linear-gradient(135deg, #ef4444, #b91c1c);
  color: #fff;
  box-shadow: 0 16px 34px rgba(220, 38, 38, 0.28);
}
.btn-call:hover {
  transform: translateY(-1px);
  box-shadow: 0 22px 42px rgba(220, 38, 38, 0.34);
}
.btn-call-glow {
  box-shadow:
    0 0 0 1px rgba(254, 202, 202, 0.14),
    0 18px 36px rgba(220, 38, 38, 0.34),
    0 0 36px rgba(239, 68, 68, 0.28);
}
.btn-call-header {
  padding-inline: 16px;
}
.btn-call-mobile,
.btn-whatsapp-mobile {
  width: 100%;
}
.btn-call-form {
  width: 100%;
  justify-content: center;
}
.btn-whatsapp-solid {
  background: linear-gradient(135deg, #22c55e, #15803d);
  color: #fff;
  box-shadow: 0 16px 34px rgba(22, 163, 74, 0.24);
}
.btn-whatsapp-solid:hover {
  transform: translateY(-1px);
  box-shadow: 0 22px 42px rgba(22, 163, 74, 0.32);
}
.btn-whatsapp-ghost {
  border: 1px solid rgba(34, 197, 94, 0.35);
  background: rgba(34, 197, 94, 0.08);
  color: #dcfce7;
}
.btn-whatsapp-ghost:hover {
  background: #22c55e;
  color: #062b12;
  border-color: #22c55e;
}
.btn-cta-glow {
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.22);
}
.btn-cta-glow:hover {
  transform: translateY(-1px);
  box-shadow: 0 24px 44px rgba(15, 23, 42, 0.28);
}
.btn-call:focus-visible,
.btn-whatsapp-solid:focus-visible,
.btn-whatsapp-ghost:focus-visible,
.btn-cta-glow:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.24);
  outline-offset: 3px;
}
.hero-actions .btn {
  min-height: 52px;
}
.header-actions .btn {
  padding: 12px 16px;
}
.header-actions .btn .btn-icon,
.mobile-cta .btn .btn-icon {
  width: 17px;
  height: 17px;
}
.eyebrow-dark {
  color: #9a3412;
}
.eyebrow-dark:before {
  background: #ef4444;
}
.about-content-block + .about-content-block,
.about-materials-block {
  margin-top: 34px;
}
.about-trust-section {
  padding-top: 0;
}
.about-trust-band {
  background: linear-gradient(135deg, #111827, #1f2937);
  color: #fff;
}
.about-trust-band p {
  color: #dbe4ef;
}
.about-hero.page-hero-image:before,
.contact-hero.page-hero-image:before,
.services-hero.hero-with-image:after {
  background-position: center;
}
.about-why-flow-section {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.about-why-flow-section:before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      130deg,
      rgba(248, 250, 252, 0.96),
      rgba(241, 245, 249, 0.88)
    ),
    var(--about-why-flow-bg, none) center/cover no-repeat;
  z-index: 0;
}
.about-why-flow-section > .container {
  position: relative;
  z-index: 1;
}
.contact-actions {
  margin-bottom: 24px;
}
.dual-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}
.dual-cta-row-left {
  justify-content: flex-start;
}
.all-services-cta {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}
.related-services-section {
  padding-top: 70px;
}
.location-service-mini-card {
  padding: 0;
  overflow: hidden;
  gap: 0;
}
.location-service-mini-visual {
  margin: 0;
  aspect-ratio: 16/9;
  background: #111827;
  overflow: hidden;
}
.location-service-mini-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.28s ease;
}
.location-service-mini-card:hover .location-service-mini-visual img {
  transform: scale(1.04);
}
.location-service-mini-body {
  display: grid;
  gap: 12px;
  padding: 22px 22px 24px;
  min-height: 100%;
}
.mini-card-meta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: start;
  padding: 7px 12px;
  border-radius: 999px;
  background: #fff7ed;
  color: #9a3412;
  border: 1px solid #fed7aa;
  font-weight: 800;
  font-size: 12px;
}
.mini-card-actions {
  padding-top: 4px;
}
.mini-card-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 11px 14px;
  border-radius: 999px;
  font-weight: 800;
  text-align: center;
  transition: 0.18s ease;
  background: #ecfdf3;
  border: 1px solid rgba(22, 163, 74, 0.18);
  color: #166534;
}
.mini-card-whatsapp:hover {
  background: #16a34a;
  border-color: #16a34a;
  color: #fff;
}
.mini-card-whatsapp .btn-icon {
  width: 17px;
  height: 17px;
}
.local-area-keyword-shell {
  padding-top: 0;
}
.local-area-keyword-section.has-bg {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: #111827;
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.local-area-keyword-section.has-bg:before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(7, 11, 16, 0.88), rgba(12, 18, 26, 0.62)),
    var(--local-area-bg-image) center/cover no-repeat;
  z-index: 0;
}
.local-area-keyword-section.has-bg > * {
  position: relative;
  z-index: 1;
}
.local-area-keyword-section.has-bg h2,
.local-area-keyword-section.has-bg p {
  color: #fff;
}
.local-area-keyword-section.has-bg .local-area-keyword-note {
  color: #dbe4ef;
}
.local-area-keyword-section.has-bg .local-area-keyword-chip {
  background: rgba(255, 255, 255, 0.94);
  border-color: rgba(255, 255, 255, 0.2);
}
.process-grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.service-hub-hero .hero-actions,
.service-detail-hero .hero-actions,
.page-hero .hero-actions {
  align-items: center;
}
.service-sidebar-card .btn-icon,
.location-sidebar-card .btn-icon {
  width: 17px;
  height: 17px;
}
.mobile-cta {
  background: rgba(7, 11, 16, 0.96);
  backdrop-filter: blur(12px);
}
.mobile-cta .btn {
  min-height: 50px;
}

@media (max-width: 1100px) {
  .process-grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .dual-cta-row {
    display: grid;
    grid-template-columns: 1fr;
  }
  .all-services-cta {
    justify-content: stretch;
  }
  .all-services-cta .btn {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .btn-call,
  .btn-whatsapp-solid,
  .btn-whatsapp-ghost,
  .btn-cta-glow {
    width: 100%;
  }
  .header-actions .btn {
    width: auto;
  }
  .dual-cta-row {
    grid-template-columns: 1fr;
  }
  .location-service-mini-body {
    padding: 20px;
  }
  .process-grid-4 {
    grid-template-columns: 1fr;
  }
}

/* Brand logo integration */
.brand-logo {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  max-width: 100%;
  text-decoration: none;
}
.brand-logo-img {
  display: block;
  width: auto;
  height: auto;
  max-width: 220px;
}
.brand-logo-navbar {
  max-width: 330px;
  max-height: 76px;
}
.brand-logo-footer {
  align-items: flex-start;
}
.brand-logo-footer-img {
  max-height: 78px;
  max-width: 240px;
}
.site-header .brand-logo {
  flex-shrink: 0;
  margin: 8px 8px 8px 0;
}

@media (max-width: 900px) {
  .brand-logo-img {
    max-width: 180px;
  }
  .brand-logo-navbar {
    max-width: 250px;
    max-height: 58px;
  }
}

@media (max-width: 640px) {
  .brand-logo-img {
    max-width: 150px;
  }
  .brand-logo-navbar {
    max-width: 185px;
    max-height: 48px;
  }
  .site-header .brand-logo {
    margin: 8px 4px 8px 0;
  }
}

/* =========================================================
   HOME / ÇALIŞMA MANTIĞI — VISUAL ONLY POSTER MODE
   Görseli cover ile germek/kırpmak yerine ortada poster gibi gösterir.
   ========================================================= */

.work-section-visual-only {
  --workflow-frame-width: min(1320px, calc(100% - 40px));
  --workflow-frame-radius: 24px;

  position: relative;
  overflow: hidden;
  isolation: isolate;

  padding: clamp(18px, 2.6vw, 36px) 0;
  min-height: 0;
  height: auto;

  background:
    linear-gradient(
      90deg,
      #0b1117 0%,
      rgba(11, 17, 23, 0.98) 7%,
      rgba(11, 17, 23, 0.72) 16%,
      rgba(11, 17, 23, 0.30) 50%,
      rgba(11, 17, 23, 0.72) 84%,
      rgba(11, 17, 23, 0.98) 93%,
      #0b1117 100%
    ),
    radial-gradient(circle at center, rgba(242, 140, 27, 0.12), transparent 58%),
    #0b1117;

  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* 
   Eski cover davranışını iptal eder.
   Görsel artık section'ın tamamına gerilmez;
   ortada contain mantığıyla düzgün oturur.
*/
.work-section-visual-only::before {
  content: "";
  position: relative;
  inset: auto;
  z-index: 1;

  display: block;
  width: var(--workflow-frame-width);
  aspect-ratio: 16 / 9;
  margin: 0 auto;

  background: var(--workflow-bg-image, none) center / contain no-repeat;

  border-radius: var(--workflow-frame-radius);
  box-shadow:
    0 28px 90px rgba(0, 0, 0, 0.46),
    0 0 0 1px rgba(255, 255, 255, 0.08),
    inset 0 0 0 1px rgba(255, 255, 255, 0.06);

  pointer-events: none;
}

/* Visual-only modda eski yazı/component içeriği görünmesin */
.work-section-visual-only .work-section-content,
.work-section-content.is-hidden {
  display: none;
}

/* Tablet */
@media (max-width: 900px) {
  .work-section-visual-only {
    --workflow-frame-width: min(100% - 28px, 980px);
    --workflow-frame-radius: 18px;
    padding: 18px 0;
  }
}

/* Mobil */
@media (max-width: 640px) {
  .work-section-visual-only {
    --workflow-frame-width: calc(100% - 20px);
    --workflow-frame-radius: 14px;
    padding: 14px 0;
  }

  .work-section-visual-only::before {
    aspect-ratio: 16 / 9;
  }
}