:root {
  --ink: #101b25;
  --ink-2: #172734;
  --steel: #52636e;
  --line: #d7e0e3;
  --mist: #f3f6f6;
  --paper: #ffffff;
  --accent: #0d9488;
  --accent-deep: #08726a;
  --accent-soft: #d9f1ed;
  --shadow: 0 18px 50px rgba(16, 27, 37, .11);
  --radius: 18px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { color: var(--ink); background: var(--paper); font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; line-height: 1.65; }
body::selection { background: var(--accent-soft); color: var(--ink); }
a { color: inherit; }
img { display: block; max-width: 100%; }
.container { width: min(1180px, calc(100% - 48px)); margin: 0 auto; }
.section { padding: 96px 0; }
.section-soft { background: var(--mist); }
.section-head { margin-bottom: 40px; }
.section-head h2, .section-head-stack h2 { max-width: 760px; margin: 0; font-size: clamp(1.85rem, 3vw, 2.85rem); line-height: 1.15; letter-spacing: -.045em; color: var(--ink); }
.section-head p { max-width: 650px; margin: 15px 0 0; color: var(--steel); }
.section-head-split { display: flex; align-items: end; justify-content: space-between; gap: 30px; }
.section-rule { width: min(300px, 32%); height: 1px; margin-bottom: 8px; background: var(--line); }
.eyebrow { display: flex; align-items: center; gap: 9px; margin: 0 0 14px; color: var(--accent-deep); font-size: .72rem; font-weight: 800; letter-spacing: .13em; line-height: 1.4; text-transform: uppercase; }
.eyebrow::before { width: 24px; height: 2px; background: currentColor; content: ""; }
.lead { margin: 22px 0 0; color: #60707b; font-size: clamp(1.02rem, 1.5vw, 1.18rem); }

.btn { display: inline-flex; align-items: center; justify-content: center; gap: 9px; min-height: 48px; padding: 11px 18px; border: 1px solid transparent; border-radius: 8px; font-size: .9rem; font-weight: 750; line-height: 1.2; text-decoration: none; transition: background .2s, color .2s, border-color .2s, transform .2s, box-shadow .2s; }
.btn:hover { transform: translateY(-2px); }
.btn svg { width: 18px; height: 18px; }
.btn-call, .btn-dark { color: #fff; background: var(--ink); box-shadow: none; }
.btn-call:hover, .btn-dark:hover { color: #fff; background: #243746; box-shadow: 0 10px 24px rgba(16, 27, 37, .2); }
.btn-whatsapp-solid { color: #fff; background: var(--accent); }
.btn-whatsapp-solid:hover { color: #fff; background: var(--accent-deep); box-shadow: 0 10px 24px rgba(13, 148, 136, .2); }
.btn-light { color: var(--ink); border-color: var(--line); background: #fff; }
.btn-light:hover { color: var(--ink); border-color: var(--accent); }
.btn-whatsapp-ghost { color: var(--accent-deep); border-color: #9fd7d0; background: #effaf8; }
.hero-actions, .cta-band-actions, .dual-cta-row, .sidebar-cta-group { display: flex; flex-wrap: wrap; gap: 12px; }

/* Header and footer */
.site-header { position: sticky; z-index: 20; top: 0; border-bottom: 1px solid rgba(215, 224, 227, .8); background: rgba(255, 255, 255, .94); box-shadow: 0 5px 20px rgba(16, 27, 37, .035); backdrop-filter: blur(14px); }
.header-shell { display: flex; align-items: center; min-height: 78px; gap: 30px; }
.brand { display: inline-flex; flex: 0 0 auto; align-items: center; color: var(--ink); font-weight: 800; text-decoration: none; }
.brand-logo-img { width: auto; max-width: 225px; height: 49px; object-fit: contain; object-position: left center; }
.main-nav { display: flex; align-items: center; gap: 25px; margin-left: auto; }
.main-nav a { position: relative; padding: 7px 0; color: #465964; font-size: .86rem; font-weight: 700; text-decoration: none; }
.main-nav a::after { position: absolute; right: 0; bottom: 0; left: 0; height: 2px; background: var(--accent); content: ""; transform: scaleX(0); transform-origin: left; transition: transform .2s; }
.main-nav a:hover { color: var(--ink); }
.main-nav a:hover::after { transform: scaleX(1); }
.header-actions { display: flex; gap: 8px; }
.header-actions .btn { min-height: 40px; padding: 8px 11px; font-size: .78rem; }
.menu-toggle { display: none; align-items: center; gap: 9px; padding: 8px 0; border: 0; color: var(--ink); background: transparent; font: inherit; font-size: .78rem; font-weight: 800; cursor: pointer; }
.menu-toggle i, .menu-toggle i::before, .menu-toggle i::after { display: block; width: 18px; height: 2px; background: currentColor; content: ""; }
.menu-toggle i { position: relative; }
.menu-toggle i::before { position: absolute; top: -6px; }
.menu-toggle i::after { position: absolute; top: 6px; }

.site-footer { padding: 70px 0 26px; color: #ced8dc; background: var(--ink); }
.footer-grid { display: grid; grid-template-columns: 1.55fr repeat(3, 1fr); gap: 42px; }
.site-footer .brand-logo-img { filter: brightness(0) invert(1); }
.footer-brand p { max-width: 340px; margin: 18px 0 0; color: #9eb0b8; font-size: .92rem; }
.footer-title { margin-bottom: 16px; color: #fff; font-size: .78rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.footer-links { display: grid; gap: 10px; }
.footer-links a { color: #b4c2c8; font-size: .9rem; text-decoration: none; }
.footer-links a:hover { color: #8ae2d7; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 55px; padding-top: 20px; border-top: 1px solid rgba(215, 224, 227, .15); color: #8fa2ab; font-size: .77rem; }
.mobile-cta { display: none; }

/* Landing */
.landing-hero { position: relative; overflow: hidden; padding: clamp(68px, 9vw, 130px) 0 76px; background: linear-gradient(122deg, #0d1923 0%, #122a36 60%, #0b736d 160%); }
.landing-hero::after { position: absolute; right: -15%; bottom: -65%; width: 720px; height: 720px; border: 1px solid rgba(145, 230, 220, .16); border-radius: 50%; content: ""; }
.landing-hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, 1.04fr) minmax(360px, .96fr); align-items: center; gap: clamp(45px, 8vw, 120px); }
.landing-hero-copy { max-width: 630px; color: #fff; }
.landing-hero .eyebrow { color: #86ddd4; }
.landing-hero h1 { max-width: 650px; margin: 0; color: #fff; font-size: clamp(2.6rem, 5.2vw, 5rem); line-height: 1.01; letter-spacing: -.06em; }
.landing-hero .lead { max-width: 560px; color: #c7d5da; }
.landing-hero .hero-actions { margin-top: 31px; }
.hero-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px 21px; max-width: 610px; margin: 32px 0 0; padding: 0; list-style: none; }
.hero-list li { position: relative; padding-left: 20px; color: #d5e2e5; font-size: .86rem; }
.hero-list li::before { position: absolute; top: .62em; left: 0; width: 8px; height: 8px; border: 2px solid #4bd1c2; border-radius: 50%; content: ""; }
.landing-hero-panel { position: relative; min-height: 430px; }
.landing-hero-media { position: absolute; inset: 0 0 0 6%; overflow: hidden; border: 1px solid rgba(255, 255, 255, .21); border-radius: 3px 56px 3px 3px; box-shadow: 22px 24px 0 rgba(8, 114, 106, .5); }
.landing-hero-media::after { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(10, 30, 39, .55)); content: ""; }
.landing-hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-panel-note { position: absolute; bottom: -27px; left: 0; display: grid; max-width: 330px; gap: 6px; padding: 20px 24px; border-left: 3px solid var(--accent); color: #dcebed; background: #fff; box-shadow: var(--shadow); }
.hero-panel-note strong { color: var(--ink); font-size: 1rem; }
.hero-panel-note span { color: var(--steel); font-size: .85rem; }

.contact-rail { position: relative; z-index: 2; margin-top: -1px; padding: 24px 0; color: #dce7e9; background: #1c303b; }
.contact-rail-grid { display: grid; grid-template-columns: 1.25fr 1fr 1fr; align-items: center; gap: 24px; }
.contact-rail-copy h2 { margin: 0; color: #fff; font-size: 1.04rem; }
.contact-rail-copy p { margin: 3px 0 0; color: #aebfc5; font-size: .82rem; }
.contact-rail-action { display: grid; gap: 3px; padding-left: 23px; border-left: 1px solid rgba(219, 235, 235, .22); text-decoration: none; }
.contact-rail-action span { color: #94bcb8; font-size: .72rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.contact-rail-action strong { color: #fff; font-size: .93rem; }

/* Cards and reusable content areas */
.grid { display: grid; gap: 24px; }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
@media (min-width: 821px) {
  .grid-3 > :last-child:nth-child(3n + 1) { grid-column: 2; }
}
.service-card, .location-card { display: flex; flex-direction: column; overflow: hidden; min-height: 100%; border: 1px solid var(--line); border-radius: var(--radius); color: inherit; background: var(--paper); box-shadow: 0 2px 0 rgba(16, 27, 37, .02); text-decoration: none; transition: border-color .25s, box-shadow .25s, transform .25s; }
.service-card:hover, .location-card:hover { border-color: #9bcfc8; box-shadow: var(--shadow); transform: translateY(-5px); }
.service-card-visual, .location-card-visual { position: relative; aspect-ratio: 16 / 9; margin: 0; overflow: hidden; background: #dfe7e8; }
.service-card-visual::after, .location-card-visual::after { position: absolute; inset: 0; background: linear-gradient(150deg, transparent 50%, rgba(13, 148, 136, .17)); content: ""; }
.service-card-visual img, .location-card-visual img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s; }
.service-card:hover img, .location-card:hover img { transform: scale(1.045); }
.service-card-body, .location-card-body { display: flex; flex: 1; flex-direction: column; align-items: flex-start; padding: 24px; }
.service-card-kicker { margin-bottom: 9px; color: var(--accent-deep); font-size: .68rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.service-card h3, .location-card h3, .info-card h3, .audience-card h3, .principle-card h3 { margin: 0; color: var(--ink); font-size: 1.15rem; line-height: 1.24; letter-spacing: -.025em; }
.service-card p, .location-card p { margin: 10px 0 20px; color: var(--steel); font-size: .88rem; }
.service-link { display: inline-flex; align-items: center; gap: 7px; margin-top: auto; color: var(--accent-deep); font-size: .79rem; font-weight: 800; }
.service-link b { font-size: 1.08rem; transition: transform .2s; }
.service-card:hover .service-link b, .location-card:hover .service-link b { transform: translateX(3px); }
.chip-list { display: flex; flex-wrap: wrap; gap: 6px; margin-top: auto; }
.chip { padding: 4px 8px; border: 1px solid #d6e6e5; border-radius: 99px; color: #54716f; background: #f5fbfa; font-size: .67rem; font-weight: 700; line-height: 1.2; }
.location-card .service-link { margin-top: 16px; }
.all-services-cta { display: flex; justify-content: center; margin-top: 36px; }

.process-section { color: #dfeaec; background: var(--ink); }
.process-layout { display: grid; grid-template-columns: .82fr 1.18fr; gap: clamp(40px, 7vw, 95px); }
.process-intro h2 { margin: 0; color: #fff; font-size: clamp(1.9rem, 3.2vw, 3rem); line-height: 1.12; letter-spacing: -.045em; }
.process-intro .eyebrow { color: #78d9cf; }
.process-intro > p:not(.eyebrow) { color: #aebfc5; }
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 30px; }
.stat { display: grid; gap: 4px; padding: 12px 0; border-top: 1px solid rgba(220, 239, 239, .2); }
.stat strong { color: #79ddd3; font-size: 1.05rem; }
.stat span { color: #aebfc5; font-size: .73rem; }
.process-steps { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: rgba(220, 239, 239, .15); }
.quick-card { min-height: 185px; padding: 26px; color: #dce7e9; background: #172934; }
.quick-card span, .principle-card > span { display: inline-grid; width: 29px; height: 29px; place-items: center; margin-bottom: 22px; border: 1px solid #5ec5bb; border-radius: 50%; color: #82e3d9; font-size: .7rem; font-weight: 800; }
.quick-card h3 { margin: 0; color: #fff; font-size: 1rem; }
.quick-card p { margin: 8px 0 0; color: #9eb3ba; font-size: .83rem; }

.audience-section { background: #e7efef; }
.audience-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.audience-card { position: relative; min-height: 255px; padding: 38px; overflow: hidden; border-radius: var(--radius); background: #fff; box-shadow: 0 4px 20px rgba(16, 27, 37, .055); }
.audience-card::after { position: absolute; right: -30px; bottom: -50px; width: 165px; height: 165px; border: 25px solid #e1f2ef; border-radius: 50%; content: ""; }
.audience-card > * { position: relative; z-index: 1; }
.audience-card h3 { font-size: 1.45rem; }
.audience-card > p:last-child { max-width: 440px; color: var(--steel); }
.principles-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.principle-card { min-height: 230px; padding: 31px; border-right: 1px solid var(--line); }
.principle-card:last-child { border: 0; }
.principle-card p { margin: 9px 0 0; color: var(--steel); font-size: .88rem; }
.principle-card > span { border-color: #a8d7d1; color: var(--accent-deep); background: var(--accent-soft); }

/* Page heroes and content templates */
.page-hero { overflow: hidden; padding: 72px 0; background: linear-gradient(120deg, #eff5f4 0%, #f8fbfb 58%, #dcebea 100%); }
.page-hero-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(260px, .72fr); align-items: center; gap: 55px; }
.page-hero-copy { max-width: 680px; }
.page-hero h1 { margin: 0; color: var(--ink); font-size: clamp(2.2rem, 4.2vw, 4rem); line-height: 1.03; letter-spacing: -.055em; }
.page-hero .hero-actions { margin-top: 28px; }
.page-hero-visual { aspect-ratio: 1.42; overflow: hidden; border-radius: 3px 42px 3px 3px; box-shadow: 16px 17px 0 #b9ddd7; }
.page-hero-visual img { width: 100%; height: 100%; object-fit: cover; }
.breadcrumb { display: flex; flex-wrap: wrap; gap: 8px; margin: 0 0 28px; color: #6c7b83; font-size: .75rem; }
.breadcrumb a { color: var(--accent-deep); text-decoration: none; }
.breadcrumb span[aria-hidden] { color: #9aabad; }
.content-wrap { display: grid; grid-template-columns: minmax(0, 1fr) 320px; align-items: start; gap: 60px; }
.main-content { min-width: 0; }
.main-content h2, .accepted-scrap-section h2 { margin: 0 0 16px; color: var(--ink); font-size: 1.65rem; line-height: 1.2; letter-spacing: -.035em; }
.main-content p { color: var(--steel); }
.main-content > h2:not(:first-child), .main-content > section + section { margin-top: 42px; }
.list-check { display: grid; gap: 10px; margin: 20px 0; padding: 0; list-style: none; }
.list-check li { position: relative; padding-left: 24px; color: var(--steel); }
.list-check li::before { position: absolute; top: .6em; left: 0; width: 8px; height: 8px; border: 2px solid var(--accent); border-radius: 50%; content: ""; }
.side-card, .contact-card { padding: 30px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; box-shadow: 0 5px 22px rgba(16, 27, 37, .05); }
.side-card { position: sticky; top: 102px; }
.side-card h2, .contact-card h2 { margin: 0; color: var(--ink); font-size: 1.25rem; line-height: 1.25; }
.side-card p, .contact-card p { color: var(--steel); font-size: .9rem; }
.sidebar-link-list { display: grid; gap: 7px; margin-top: 24px; padding-top: 20px; border-top: 1px solid var(--line); }
.sidebar-link-list a { color: var(--accent-deep); font-size: .83rem; font-weight: 750; text-decoration: none; }

.service-hub-hero, .hero { position: relative; overflow: hidden; padding: 82px 0; color: #edf4f5; background: var(--ink); }
.hero.hero-with-image { background: var(--ink); }
.hero.hero-with-image::after { background-image: linear-gradient(110deg, rgba(11, 27, 36, .96), rgba(15, 45, 53, .84)), var(--hero-bg-image, none); opacity: 1; }
.service-hub-hero > .container, .service-detail-hero > .container { display: grid; grid-template-columns: minmax(0, 1.03fr) minmax(320px, .97fr); align-items: center; gap: 65px; }
.hero .eyebrow { color: #81ded4; }
.hero h1 { margin: 0; color: #fff; font-size: clamp(2.2rem, 4.2vw, 4rem); line-height: 1.04; letter-spacing: -.055em; }
.hero .lead { color: #b9cbd0; }
.hero .hero-actions { margin-top: 27px; }
.service-hub-panel, .service-detail-panel { padding: 20px; border: 1px solid rgba(206, 231, 229, .2); border-radius: var(--radius); background: rgba(255, 255, 255, .05); }
.service-hub-stack { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.service-hub-pill { display: grid; gap: 3px; padding: 17px; border: 1px solid rgba(206, 231, 229, .16); border-radius: 8px; color: #fff; background: rgba(5, 25, 34, .4); text-decoration: none; }
.service-hub-pill:hover { border-color: #72d4ca; background: rgba(13, 148, 136, .22); }
.service-hub-pill strong { font-size: .86rem; }
.service-hub-pill span { color: #a8c1c4; font-size: .68rem; }
.crosslink-toggle { display: block; margin: 15px auto 0; padding: 8px 14px; border: 1px solid #a8d7d1; border-radius: 8px; color: var(--accent-deep); background: #fff; font: inherit; font-size: .78rem; font-weight: 800; cursor: pointer; }
.service-detail-visual { overflow: hidden; border-radius: 9px; }
.service-detail-visual img { width: 100%; aspect-ratio: 1.35; object-fit: cover; }
.chip-list-light { margin-top: 25px; }
.chip-dark { color: #bfece6; border-color: rgba(190, 236, 230, .32); background: transparent; }
.hero-list-wide { margin-top: 25px; }

.info-card, .factor-list-card, .accepted-scrap-card, .location-price-card, .location-process-card { padding: 25px; border: 1px solid var(--line); border-radius: 13px; background: #fff; }
.info-card p, .factor-list-card p, .accepted-scrap-card p, .location-price-card p { margin: 9px 0 0; color: var(--steel); font-size: .87rem; }
.service-choice-section, .service-regions-section { color: #edf7f6; background: linear-gradient(120deg, #123440, #0e716c); }
.section-head-light h2, .section-head-light p { color: #fff; }
.prose-block { max-width: 760px; }
.prose-block p { color: #d3e5e3; }
.factor-grid { gap: 16px; }
.factor-grid .info-card { min-height: 160px; }
.service-regions-section .section-head { margin-bottom: 28px; }
.pricing-layout { align-items: start; }
.prose-card, .factor-list-card { min-height: 100%; }
.factor-list { display: grid; gap: 10px; margin: 18px 0 0; padding: 0; list-style: none; }
.factor-list li { padding-bottom: 9px; border-bottom: 1px solid var(--line); color: var(--steel); font-size: .88rem; }
.process-grid, .location-process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; }
.step, .location-process-card { position: relative; min-height: 190px; }
.step::before { display: block; margin-bottom: 14px; color: var(--accent-deep); font-size: .78rem; font-weight: 800; content: "0" counter(step); counter-increment: step; }
.process-grid { counter-reset: step; }
.step h3, .location-process-card h3 { margin: 0; color: var(--ink); font-size: 1rem; }
.step p, .location-process-card p { margin: 9px 0 0; color: var(--steel); font-size: .85rem; }

/* Regions, crosslinks and location pages */
.region-links-grid, .location-service-crosslinks-grid, .nearby-locations-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.region-link-card, .location-service-crosslink-card, .nearby-location-card { padding: 20px; border: 1px solid var(--line); border-radius: 12px; background: #fff; }
.region-link-grid, .location-service-mini-grid, .nearby-location-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.location-service-mini-card, .nearby-location-card { overflow: hidden; border: 1px solid var(--line); border-radius: 12px; background: #fff; box-shadow: 0 3px 15px rgba(16, 27, 37, .04); }
.location-service-mini-card:hover, .nearby-location-card:hover { border-color: #9bcfc8; box-shadow: var(--shadow); }
.location-service-mini-visual, .nearby-location-visual { aspect-ratio: 16 / 9; margin: 0; overflow: hidden; }
.location-service-mini-visual img, .nearby-location-visual img { width: 100%; height: 100%; object-fit: cover; }
.location-service-mini-body, .nearby-location-body { padding: 19px; }
.location-service-mini-body h3, .nearby-location-body h3 { margin: 0; color: var(--ink); font-size: 1rem; line-height: 1.25; }
.location-service-mini-body p, .nearby-location-body p { margin: 8px 0 14px; color: var(--steel); font-size: .83rem; }
.mini-card-meta { color: var(--accent-deep); font-size: .68rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.mini-card-title-link, .mini-card-primary { color: inherit; text-decoration: none; }
.mini-card-actions { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 15px; }
.mini-card-primary, .mini-card-whatsapp { padding: 7px 9px; border-radius: 6px; color: var(--accent-deep); background: var(--accent-soft); font-size: .72rem; font-weight: 800; text-decoration: none; }
.region-link-card { display: block; padding: 0; overflow: hidden; text-decoration: none; }
.region-link-body { padding: 14px 17px; }
.region-link-body h3 { margin: 0; font-size: .96rem; }
.region-links-footer { display: flex; justify-content: center; margin-top: 28px; }
.crosslink-reveal { display: block; margin: 24px auto 0; padding: 9px 13px; border: 1px solid #a8d7d1; border-radius: 8px; color: var(--accent-deep); background: #fff; font: inherit; font-size: .78rem; font-weight: 800; cursor: pointer; }
.local-scenario-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.local-scenario-card, .local-area-keyword-section { padding: 25px; border: 1px solid var(--line); border-radius: 12px; background: #fff; }
.local-scenario-card h3 { margin: 0; font-size: 1rem; }
.local-scenario-card p, .local-area-keyword-note { color: var(--steel); font-size: .87rem; }
.local-area-keyword-grid { display: flex; flex-wrap: wrap; gap: 8px; }
.local-area-keyword-chip { padding: 7px 10px; border-radius: 7px; color: #426967; background: var(--accent-soft); font-size: .78rem; font-weight: 750; }
.crosslink-cloud { display: flex; flex-wrap: wrap; gap: 9px; }
.crosslink-chip { padding: 8px 12px; border: 1px solid #cfe0df; border-radius: 8px; color: #426967; background: #fff; font-size: .78rem; font-weight: 700; text-decoration: none; }
.crosslink-chip:hover { border-color: var(--accent); color: var(--accent-deep); }
.accepted-scrap-section { margin-top: 42px; }
.accepted-scrap-grid, .location-price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.location-local-context { margin-top: 42px; }
.location-local-context > h2 { margin: 0 0 16px; color: var(--ink); font-size: 1.65rem; line-height: 1.2; letter-spacing: -.035em; }
.location-local-context-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.location-local-context-card, .location-operation-note, .service-preparation-card, .about-trust-evidence { padding: 25px; border: 1px solid var(--line); border-radius: 13px; background: #fff; }
.location-local-context-card h3, .location-operation-note h3, .service-preparation-card h3, .about-trust-evidence h3 { margin: 0; color: var(--ink); font-size: 1rem; }
.location-local-context-card .list-check { margin-bottom: 0; }
.location-operation-note, .service-preparation-card, .about-trust-evidence { margin-top: 14px; }
.location-operation-note p, .service-preparation-card p, .about-trust-evidence p { margin: 9px 0 0; color: var(--steel); font-size: .88rem; }
.location-process-index { display: inline-grid; width: 30px; height: 30px; place-items: center; margin-bottom: 16px; border-radius: 50%; color: #fff; background: var(--accent); font-size: .7rem; font-weight: 800; }
.local-area-section, .nearby-locations-section { padding: 80px 0; }

/* FAQ / CTA / contact */
.faq { display: grid; gap: 10px; max-width: 850px; }
.faq-item { border: 1px solid var(--line); border-radius: 10px; background: #fff; }
.faq-item summary { display: flex; align-items: center; justify-content: space-between; padding: 19px 22px; color: var(--ink); font-size: .94rem; font-weight: 750; cursor: pointer; list-style: none; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { color: var(--accent-deep); font-size: 1.35rem; line-height: 1; content: "+"; }
.faq-item[open] summary::after { content: "–"; }
.faq-item p { margin: 0; padding: 0 22px 20px; color: var(--steel); font-size: .9rem; }
.cta-panel { display: flex; align-items: center; justify-content: space-between; gap: 30px; padding: 42px; overflow: hidden; border-radius: var(--radius); color: #e0eeee; background: linear-gradient(110deg, #102530, #0b8179); }
.cta-panel h2 { max-width: 650px; margin: 0; color: #fff; font-size: clamp(1.55rem, 2.5vw, 2.2rem); line-height: 1.16; letter-spacing: -.04em; }
.cta-panel p { max-width: 630px; margin: 10px 0 0; color: #cae2df; }
.cta-panel .btn-call { color: var(--ink); background: #fff; }
.cta-panel .btn-call:hover { color: var(--ink); background: #e4f4f1; }
.contact-layout { grid-template-columns: minmax(0, 1fr) minmax(270px, .74fr); gap: 25px; }
.contact-details-card { padding: 38px; }
.contact-map-placeholder { display: grid; min-height: 100%; place-content: center; padding: 40px; color: var(--steel); text-align: center; background: linear-gradient(145deg, #e4efee, #f8fbfb); }
.contact-map-placeholder > span { margin-bottom: 10px; color: var(--accent); font-size: 2.7rem; line-height: 1; }
.contact-map-placeholder h2 { margin: 0; }

@media (max-width: 1050px) {
  .header-shell { gap: 18px; }
  .main-nav { gap: 16px; }
  .header-actions .btn span { display: none; }
  .footer-grid { grid-template-columns: 1.4fr repeat(3, 1fr); gap: 24px; }
  .landing-hero-grid, .service-hub-hero > .container, .service-detail-hero > .container { gap: 42px; }
  .process-grid, .location-process-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 820px) {
  body { padding-bottom: 68px; }
  .container { width: min(100% - 36px, 620px); }
  .section { padding: 68px 0; }
  .header-shell { min-height: 68px; }
  .brand-logo-img { max-width: 185px; height: 43px; }
  .main-nav { position: absolute; top: calc(100% + 1px); right: 0; left: 0; display: none; padding: 17px 18px 20px; border-bottom: 1px solid var(--line); background: #fff; box-shadow: 0 12px 22px rgba(16, 27, 37, .07); }
  .main-nav.is-open { display: grid; gap: 8px; }
  .main-nav a { padding: 10px 0; }
  .header-actions { margin-left: auto; }
  .header-actions .btn { min-width: 39px; padding: 8px; }
  .menu-toggle { display: inline-flex; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 35px 24px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { display: grid; margin-top: 36px; }
  .landing-hero { padding: 70px 0 82px; }
  .landing-hero-grid, .page-hero-grid, .service-hub-hero > .container, .service-detail-hero > .container, .process-layout, .content-wrap, .contact-layout { grid-template-columns: 1fr; }
  .landing-hero-copy { max-width: none; }
  .landing-hero-panel { min-height: 360px; max-width: 600px; width: calc(100% - 22px); margin: 10px 0 0 22px; }
  .contact-rail-grid { grid-template-columns: 1fr 1fr; }
  .contact-rail-copy { grid-column: 1 / -1; }
  .contact-rail-action:first-of-type { padding-left: 0; border-left: 0; }
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .principles-grid { grid-template-columns: 1fr; }
  .principle-card { border-right: 0; border-bottom: 1px solid var(--line); }
  .principle-card:last-child { border-bottom: 0; }
  .side-card { position: static; }
  .cta-panel { align-items: flex-start; flex-direction: column; padding: 31px; }
  .page-hero { padding: 58px 0; }
  .page-hero-visual { max-width: 550px; width: calc(100% - 18px); margin-left: 18px; }
  .hero-list { max-width: 100%; }
  .service-hub-panel, .service-detail-panel { max-width: 600px; }
  .accepted-scrap-grid, .location-price-grid { grid-template-columns: repeat(2, 1fr); }
  .location-local-context-grid { grid-template-columns: repeat(2, 1fr); }
  .region-links-grid, .location-service-crosslinks-grid, .nearby-locations-grid { grid-template-columns: repeat(2, 1fr); }
  .region-link-grid, .location-service-mini-grid, .nearby-location-grid, .local-scenario-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
  .container { width: min(100% - 30px, 440px); }
  .section { padding: 56px 0; }
  .header-actions .btn-whatsapp-header { display: none; }
  .brand-logo-img { max-width: 160px; }
  .menu-toggle span { display: none; }
  .landing-hero h1 { font-size: clamp(2.35rem, 12vw, 3.2rem); }
  .hero-actions .btn { flex: 1 1 145px; }
  .hero-list { grid-template-columns: 1fr; }
  .landing-hero-panel { min-height: 295px; }
  .hero-panel-note { max-width: calc(100% - 18px); padding: 16px 18px; }
  .contact-rail-grid { grid-template-columns: 1fr; gap: 16px; }
  .contact-rail-action { padding-left: 0; border-left: 0; }
  .grid-3, .grid-4, .grid-2, .audience-grid, .pricing-layout, .accepted-scrap-grid, .location-price-grid, .location-local-context-grid, .region-links-grid, .location-service-crosslinks-grid, .nearby-locations-grid, .region-link-grid, .location-service-mini-grid, .nearby-location-grid, .local-scenario-grid { grid-template-columns: 1fr; }
  .section-head-split { align-items: flex-start; flex-direction: column; }
  .section-rule { width: 70px; }
  .process-steps { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr; }
  .quick-card { min-height: auto; }
  .audience-card { min-height: 220px; padding: 27px; }
  .service-hub-stack { grid-template-columns: 1fr; }
  .process-grid, .location-process-grid { grid-template-columns: 1fr; }
  .cta-panel { padding: 27px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .mobile-cta { position: fixed; z-index: 30; right: 0; bottom: 0; left: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 1px; padding: 7px 10px; background: rgba(255, 255, 255, .96); box-shadow: 0 -4px 22px rgba(16, 27, 37, .13); }
  .mobile-cta .btn { min-height: 42px; padding: 8px; font-size: .75rem; }
}

/* High-impact industrial marketplace system */
:root {
  --color-ink: #0b0d0e;
  --color-graphite: #171b1d;
  --color-steel: #6f7678;
  --color-paper: #f5f2ea;
  --color-surface: #fffdf8;
  --color-signal: #f4c430;
  --color-action: #11835f;
  --color-action-dark: #07553f;
  --color-line: #cbd0c8;
  --ink: var(--color-ink);
  --ink-2: var(--color-graphite);
  --steel: var(--color-steel);
  --mist: var(--color-paper);
  --paper: var(--color-surface);
  --line: var(--color-line);
  --accent: var(--color-action);
  --accent-deep: var(--color-action-dark);
  --accent-soft: #d8ecdf;
  --shadow: 0 22px 60px rgba(11, 13, 14, .16);
  --radius: 4px;
}

html,
body { width: 100%; min-height: 100%; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
*,
*::before,
*::after { box-sizing: border-box; }
body { min-width: 0; color: var(--color-ink); background: var(--color-surface); font-size: 17px; line-height: 1.7; }
body::selection { color: var(--color-ink); background: var(--color-signal); }
.container { width: min(calc(100% - 40px), 1280px); margin-inline: auto; }
.section { position: relative; padding: clamp(82px, 8vw, 118px) 0; }
.section-soft { background: var(--color-paper); }
.section-head { margin-bottom: 48px; }
.section-head h2, .section-head-stack h2 { max-width: 880px; font-size: clamp(2.3rem, 3.7vw, 3.45rem); font-weight: 900; letter-spacing: -.065em; line-height: 1.04; }
.section-head p { max-width: 720px; color: #5c6464; font-size: 1.03rem; }
.section-head-impact { display: flex; align-items: flex-end; justify-content: space-between; gap: 32px; }
.section-head-impact .eyebrow { margin-bottom: 16px; }
.section-number { color: #e5e0d4; font-size: clamp(4rem, 8vw, 8rem); font-weight: 900; letter-spacing: -.1em; line-height: .75; }
.eyebrow { color: #8b6d00; font-size: .74rem; font-weight: 900; letter-spacing: .18em; }
.eyebrow::before { width: 34px; height: 3px; background: var(--color-signal); }
.lead { color: #586061; font-size: clamp(1.08rem, 1.45vw, 1.28rem); line-height: 1.65; }

.btn { min-height: 54px; padding: 13px 21px; border-radius: 2px; font-size: .88rem; font-weight: 900; letter-spacing: .025em; }
.btn-call, .btn-dark { color: #fff; background: var(--color-ink); }
.btn-call:hover, .btn-dark:hover { color: var(--color-ink); background: var(--color-signal); box-shadow: 0 12px 28px rgba(244, 196, 48, .25); }
.btn-whatsapp-solid { background: var(--color-action); }
.btn-whatsapp-solid:hover { background: var(--color-action-dark); box-shadow: 0 14px 30px rgba(17, 131, 95, .3); }
.btn-outline-light { color: #fff; border-color: rgba(255,255,255,.5); background: transparent; }
.btn-outline-light:hover { color: var(--color-ink); border-color: var(--color-signal); background: var(--color-signal); }
.btn-signal { color: var(--color-ink); background: var(--color-signal); }
.btn-signal:hover { color: #fff; background: var(--color-action); }
.hero-actions, .cta-band-actions, .dual-cta-row, .sidebar-cta-group { gap: 13px; }

/* Shared header, footer and primary cards */
.site-header { z-index: 40; border-bottom-color: rgba(255,255,255,.11); background: rgba(11,13,14,.95); box-shadow: none; }
.header-shell { min-height: 88px; gap: 34px; }
.brand-logo-img { max-width: 260px; height: 60px; }
.main-nav { gap: clamp(17px, 2vw, 32px); }
.main-nav a { color: #d9dfdc; font-size: .91rem; letter-spacing: .01em; }
.main-nav a:hover { color: #fff; }
.main-nav a::after { height: 3px; background: var(--color-signal); }
.header-actions .btn { min-height: 46px; padding: 10px 14px; font-size: .78rem; }
.header-actions .btn-call { border: 1px solid rgba(255,255,255,.34); background: transparent; }
.header-actions .btn-call:hover { border-color: var(--color-signal); }
.menu-toggle { color: #fff; }
.site-footer { position: relative; padding: 86px 0 30px; color: #d4dad5; background: #080a0b; }
.site-footer::before { position: absolute; top: 0; right: 0; left: 0; height: 5px; background: linear-gradient(90deg, var(--color-signal), var(--color-action) 55%, transparent 55%); content: ""; }
.footer-grid { grid-template-columns: 1.4fr repeat(3, 1fr); gap: 48px; }
.site-footer .brand-logo-img { max-width: 280px; filter: none; }
.footer-brand p { max-width: 385px; color: #9ca6a1; font-size: 1rem; }
.footer-contact-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 25px; }
.footer-contact-actions .btn { min-height: 48px; padding: 11px 14px; }
.footer-title { color: var(--color-signal); font-size: .76rem; }
.footer-links { gap: 12px; }
.footer-links a { color: #e1e5e1; font-size: .94rem; }
.footer-links a:hover { color: var(--color-signal); }
.footer-bottom { margin-top: 65px; color: #7e8983; font-size: .84rem; }

.grid { gap: 28px; }
.service-card, .location-card { border-color: #d4d5cd; border-radius: 3px; background: var(--color-surface); box-shadow: 0 7px 0 rgba(11,13,14,.05); }
.service-card:hover, .location-card:hover { border-color: var(--color-signal); box-shadow: 0 24px 40px rgba(11,13,14,.16); transform: translateY(-7px); }
.service-card-visual, .location-card-visual { aspect-ratio: 16 / 10; background: var(--color-graphite); }
.service-card-visual::after, .location-card-visual::after { background: linear-gradient(135deg, transparent 35%, rgba(244,196,48,.28) 100%); }
.service-card-body, .location-card-body { padding: 28px; }
.service-card-kicker { color: #776000; font-size: .72rem; }
.service-card h3, .location-card h3 { font-size: 1.4rem; font-weight: 900; line-height: 1.1; letter-spacing: -.045em; }
.service-card p, .location-card p { margin: 13px 0 24px; color: #5a6361; font-size: .98rem; }
.service-link { color: var(--color-action-dark); font-size: .84rem; }
.service-link b { color: var(--color-signal); }
.chip { border-color: #d6d9d0; border-radius: 2px; color: #3f4d48; background: #f3f1e9; font-size: .72rem; }

/* Home marketplace */
.market-hero { position: relative; display: grid; min-height: clamp(640px, 48vw, 760px); overflow: hidden; align-items: center; color: #fff; background: #0a0c0d var(--market-hero-image) center / cover no-repeat; }
.market-hero-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(5,7,8,.96) 0%, rgba(8,11,12,.88) 41%, rgba(8,11,12,.52) 75%, rgba(8,11,12,.68) 100%), linear-gradient(0deg, rgba(5,7,8,.57), transparent 50%); }
.market-hero::after { position: absolute; right: 6%; bottom: 0; width: min(24vw, 340px); height: 4px; background: var(--color-signal); content: ""; }
.market-hero-layout { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(320px, .85fr); align-items: center; gap: clamp(40px, 6vw, 96px); }
.market-hero-copy { max-width: 760px; padding: clamp(54px, 6vw, 86px) 0; }
.market-hero .eyebrow { color: var(--color-signal); }
.market-hero h1 { max-width: 780px; margin: 0; color: #fff; font-size: clamp(3rem, 5vw, 5.25rem); font-weight: 900; letter-spacing: -.07em; line-height: .97; }
.market-hero .lead { max-width: 650px; color: #d3d8d4; }
.market-hero .hero-actions { margin-top: 32px; }
.btn-call-hero, .btn-whatsapp-hero { min-height: 59px; padding: 15px 24px; }
.btn-call-hero { color: var(--color-ink); background: var(--color-signal); }
.btn-call-hero:hover { color: #fff; background: #a17b00; }
.hero-benefit-strip { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px 22px; max-width: 760px; margin-top: 38px; }
.hero-benefit-strip li { display: flex; align-items: center; gap: 8px; padding: 0; color: #e4e8e5; font-size: .89rem; font-weight: 700; }
.hero-benefit-strip li::before { display: none; }
.hero-benefit-strip li span { display: inline-grid; width: 20px; height: 20px; place-items: center; color: var(--color-ink); background: var(--color-signal); font-size: .7rem; }
.quick-offer-panel { position: relative; padding: clamp(26px, 3vw, 34px); border: 1px solid rgba(255,255,255,.18); border-top: 5px solid var(--color-signal); color: #fff; background: rgba(16,19,20,.94); box-shadow: 0 18px 38px rgba(0,0,0,.2); backdrop-filter: blur(10px); }
.quick-offer-heading > span { color: var(--color-signal); font-size: .72rem; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.quick-offer-heading h2 { margin: 12px 0 0; color: #fff; font-size: 1.8rem; font-weight: 900; line-height: 1.05; letter-spacing: -.045em; }
.quick-offer-heading p { margin: 12px 0 0; color: #b8c1bb; font-size: .91rem; }
.quick-offer-steps { display: grid; gap: 12px; margin: 27px 0; padding: 0; list-style: none; }
.quick-offer-steps li { display: grid; grid-template-columns: 32px 1fr; align-items: center; gap: 12px; min-height: 44px; padding-bottom: 12px; border-bottom: 1px solid rgba(255,255,255,.13); color: #e6e9e5; font-size: .87rem; }
.quick-offer-steps b { display: grid; width: 31px; height: 31px; place-items: center; color: var(--color-ink); background: var(--color-signal); font-size: .75rem; }
.quick-offer-cta { width: 100%; }
.trust-strip { position: relative; z-index: 1; margin: 0; padding: 28px 0 0; background: var(--color-surface); }
.trust-strip-inner { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); overflow: hidden; border: 1px solid #333a38; background: #171b1d; box-shadow: 0 14px 32px rgba(11,13,14,.12); }
.trust-strip-item { display: flex; align-items: center; gap: 15px; min-height: 96px; padding: 18px 24px; border-right: 1px solid #333a38; color: #eef1ed; }
.trust-strip-item:last-child { border-right: 0; }
.trust-strip-item span { color: var(--color-signal); font-size: 1.6rem; font-weight: 900; letter-spacing: -.06em; }
.trust-strip-item strong { font-size: .86rem; line-height: 1.35; }
.services-showcase { padding-top: clamp(82px, 8vw, 112px); }

.valuation-section { padding-top: 30px; padding-bottom: 30px; background: var(--color-paper); }
.valuation-panel { position: relative; display: grid; grid-template-columns: minmax(0, .92fr) minmax(400px, 1.08fr); gap: 50px; padding: clamp(42px, 6vw, 80px); overflow: hidden; color: #fff; background: #131718; }
.valuation-panel::before { position: absolute; top: -60%; right: -4%; width: 55%; height: 210%; border: 1px solid rgba(244,196,48,.22); content: ""; transform: rotate(20deg); }
.valuation-copy, .valuation-factors { position: relative; z-index: 1; }
.valuation-copy .eyebrow { color: var(--color-signal); }
.valuation-copy h2 { max-width: 600px; margin: 0; color: #fff; font-size: clamp(2.25rem, 3.8vw, 3.6rem); font-weight: 900; letter-spacing: -.065em; line-height: 1.04; }
.valuation-copy > p:not(.eyebrow) { max-width: 590px; color: #bec7c1; }
.valuation-copy .hero-actions { margin-top: 30px; }
.valuation-factors { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; border: 1px solid rgba(255,255,255,.16); background: rgba(255,255,255,.16); }
.valuation-factors div { display: grid; gap: 17px; min-height: 158px; padding: 23px; background: rgba(13,16,17,.82); }
.valuation-factors span { color: var(--color-signal); font-size: 1.55rem; font-weight: 900; }
.valuation-factors strong { color: #f6f5ed; font-size: .93rem; line-height: 1.35; }

.process-section { overflow: hidden; background: #0e1011; }
.process-section::before { position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px); background-size: 48px 48px; content: ""; }
.process-timeline-layout { position: relative; z-index: 1; }
.process-intro { display: grid; grid-template-columns: minmax(0, .55fr) minmax(0, .45fr); align-items: end; gap: 50px; margin-bottom: 54px; }
.process-intro h2 { max-width: 650px; font-size: clamp(2.3rem, 3.7vw, 3.45rem); font-weight: 900; }
.process-intro > p:not(.eyebrow) { margin: 0 0 5px; font-size: 1.05rem; }
.process-steps { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; background: transparent; }
.process-steps::before { position: absolute; top: 39px; right: 12%; left: 12%; height: 1px; background: rgba(244,196,48,.55); content: ""; }
.quick-card { position: relative; z-index: 1; min-height: 245px; padding: 0 24px 26px; background: transparent; }
.quick-card span { width: auto; height: auto; margin: 0 0 34px; border: 0; border-radius: 0; color: var(--color-signal); background: transparent; font-size: clamp(2.8rem, 4vw, 4.4rem); font-weight: 900; letter-spacing: -.08em; }
.quick-card h3 { color: #fff; font-size: 1.2rem; font-weight: 900; }
.quick-card p { max-width: 250px; color: #afb8b1; font-size: .94rem; }

.audience-market-section { background: #e7e3d8; }
.audience-grid { gap: 28px; }
.audience-card { min-height: 390px; padding: 0; border-radius: 0; color: #fff; background: #161a1b; box-shadow: none; }
.audience-card::before { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(8,10,11,.98), rgba(8,10,11,.62)), var(--market-hero-image, none) center / cover; content: ""; }
.audience-card:nth-child(2)::before { background: linear-gradient(135deg, rgba(5,74,55,.94), rgba(8,10,11,.7)), var(--market-hero-image, none) center / cover; }
.audience-card::after { right: 0; bottom: 0; width: 48%; height: 5px; border: 0; border-radius: 0; background: var(--color-signal); }
.audience-card:nth-child(2)::after { background: var(--color-action); }
.audience-card-inner { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: flex-start; height: 100%; padding: clamp(30px, 4vw, 54px); }
.audience-card .eyebrow { color: var(--color-signal); }
.audience-card h3 { color: #fff; font-size: clamp(1.8rem, 2.6vw, 2.65rem); font-weight: 900; }
.audience-card > .audience-card-inner > p:last-of-type { max-width: 520px; color: #d2d9d3; font-size: 1rem; }
.audience-card-link { display: inline-flex; gap: 9px; margin-top: auto; color: #fff; border-bottom: 2px solid var(--color-signal); font-size: .86rem; font-weight: 900; text-decoration: none; }
.audience-card-link b { color: var(--color-signal); }

.territory-section { background: #111415; }
.territory-panel { display: grid; grid-template-columns: minmax(280px, .7fr) minmax(0, 1.3fr); gap: 44px; align-items: start; }
.territory-copy { position: sticky; top: 120px; padding: 26px 0; }
.territory-copy .eyebrow { color: var(--color-signal); }
.territory-copy h2 { margin: 0; color: #fff; font-size: clamp(2.35rem, 3.6vw, 3.35rem); font-weight: 900; letter-spacing: -.065em; line-height: 1.05; }
.territory-copy p:not(.eyebrow) { color: #b8c0ba; }
.territory-copy .btn { margin-top: 14px; }
.territory-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 17px; }
.territory-grid .location-card { border-color: rgba(255,255,255,.17); background: #1b2021; }
.territory-grid .location-card h3 { color: #fff; }
.territory-grid .location-card p { color: #bdc5bf; }
.territory-grid .chip { color: #e1e7e2; border-color: rgba(255,255,255,.2); background: rgba(255,255,255,.08); }
.territory-grid .service-link { color: var(--color-signal); }

.principles-section { background: var(--color-surface); }
.principles-grid { grid-template-columns: repeat(3, 1fr); border-color: #cfd1ca; border-radius: 0; }
.principle-card { min-height: 285px; padding: 36px; border-color: #cfd1ca; background: #f9f7f0; }
.principle-card > span { width: auto; height: auto; margin-bottom: 44px; border: 0; border-radius: 0; color: #9b7800; background: transparent; font-size: 2rem; font-weight: 900; }
.principle-card h3 { font-size: 1.35rem; font-weight: 900; }
.principle-card p { font-size: .98rem; }

.faq-section-dark { color: #fff; background: #101314; }
.faq-section-with-background { position: relative; isolation: isolate; background-color: #060c0e; background-image: linear-gradient(rgba(5,10,12,.72), rgba(5,10,12,.80)), var(--global-faq-bg, none); background-position: center, center; background-repeat: no-repeat, no-repeat; background-size: cover, cover; background-attachment: scroll; }
.faq-dark-layout { display: grid; grid-template-columns: minmax(270px, .68fr) minmax(0, 1.32fr); gap: clamp(45px, 9vw, 140px); align-items: start; }
.faq-dark-intro { position: sticky; top: 120px; }
.faq-dark-intro .eyebrow { color: var(--color-signal); }
.faq-dark-intro h2 { margin: 0; color: #fff; font-size: clamp(2.3rem, 3.5vw, 3.25rem); font-weight: 900; letter-spacing: -.065em; line-height: 1.05; }
.faq-dark-intro > p:not(.eyebrow) { color: #b3beb6; }
.faq-section-dark .faq { max-width: none; }
.faq-section-dark .section-head h2 { color: #fff; }
.faq-section-dark .section-head p { color: #b3beb6; }
.faq-section-dark .section-head .eyebrow { color: var(--color-signal); }
.faq-section-dark .faq-item { border-color: rgba(255,255,255,.19); border-radius: 0; background: #171c1d; }
.faq-section-dark .faq-item summary { min-height: 76px; color: #f5f4eb; font-size: 1rem; }
.faq-section-dark .faq-item summary::after { color: var(--color-signal); }
.faq-section-dark .faq-item[open] { border-color: var(--color-signal); background: #202627; }
.faq-section-dark .faq-item p { color: #c6cec8; font-size: .97rem; }
.faq-section-with-background .faq-item { border-color: rgba(255,255,255,.12); background: rgba(8,14,16,.86); backdrop-filter: blur(2px); }
.faq-section-with-background .faq-item[open] { background: rgba(8,14,16,.92); }

/* Secondary routes, detail pages, CTA and contact */
.page-hero { padding: clamp(85px, 8vw, 130px) 0; color: #fff; background: #111516; }
.page-hero-grid { grid-template-columns: minmax(0, 1fr) minmax(360px, .85fr); gap: clamp(45px, 7vw, 110px); }
.page-hero .eyebrow { color: var(--color-signal); }
.page-hero h1 { color: #fff; font-size: clamp(3rem, 4.7vw, 4.2rem); font-weight: 900; line-height: .98; }
.page-hero .lead { color: #c3ccc5; }
.page-hero-visual { border-radius: 0; box-shadow: 16px 16px 0 var(--color-signal); }
.about-page-hero--background { position: relative; isolation: isolate; min-height: 680px; background-color: #081012; background-image: linear-gradient(90deg, rgba(7,13,15,.94) 0%, rgba(7,13,15,.82) 42%, rgba(7,13,15,.48) 72%, rgba(7,13,15,.28) 100%), var(--about-hero-bg, none); background-position: center, 62% center; background-repeat: no-repeat, no-repeat; background-size: cover, cover; }
.about-page-hero--background .page-hero-background-content { display: block; }
.about-page-hero--background .page-hero-copy { max-width: 720px; }
.location-page-hero--background { position: relative; isolation: isolate; min-height: 680px; background-color: #081012; background-image: linear-gradient(90deg, rgba(7,13,15,.88) 0%, rgba(7,13,15,.72) 42%, rgba(7,13,15,.50) 72%, rgba(7,13,15,.33) 100%), var(--location-hero-bg, none); background-position: center, 62% center; background-repeat: no-repeat, no-repeat; background-size: cover, cover; }
.location-page-hero--background .page-hero-background-content { display: block; }
.location-page-hero--background .page-hero-copy { max-width: 720px; }
.contact-page-hero--background { position: relative; isolation: isolate; min-height: 680px; background-color: #081012; background-image: linear-gradient(rgba(7,13,15,.68), rgba(7,13,15,.72)), var(--contact-hero-bg, none); background-position: center, 58% center; background-repeat: no-repeat, no-repeat; background-size: cover, cover; }
.contact-page-hero--background .page-hero-background-content { display: block; }
.contact-page-hero--background .page-hero-copy { max-width: 720px; }
.breadcrumb { color: #aeb8b0; font-size: .8rem; }
.breadcrumb a { color: var(--color-signal); }
.content-wrap { grid-template-columns: minmax(0, 1fr) 355px; gap: clamp(42px, 6vw, 90px); }
.main-content h2, .accepted-scrap-section h2, .location-local-context > h2 { font-size: 2rem; font-weight: 900; letter-spacing: -.055em; }
.main-content p { font-size: 1rem; }
.side-card, .contact-card { padding: 34px; border: 0; border-top: 5px solid var(--color-signal); border-radius: 0; background: #171b1c; box-shadow: 14px 14px 0 rgba(244,196,48,.24); }
.side-card h2, .contact-card h2 { color: #fff; font-size: 1.5rem; font-weight: 900; }
.side-card p, .contact-card p, .side-card .list-check li { color: #cad2cc; }
.side-card .list-check li::before { border-color: var(--color-signal); }
.sidebar-link-list { border-top-color: rgba(255,255,255,.16); }
.sidebar-link-list a { color: var(--color-signal); font-size: .9rem; }
.hero, .service-hub-hero { padding: clamp(88px, 9vw, 140px) 0; background: #101415; }
.hero.hero-with-image::after { background-image: linear-gradient(100deg, rgba(5,7,8,.97), rgba(7,10,11,.77)), var(--hero-bg-image, none); }
.service-hub-hero.hero-with-image { background-color: #081012; background-image: linear-gradient(90deg, rgba(7,13,15,.92) 0%, rgba(7,13,15,.79) 38%, rgba(7,13,15,.52) 68%, rgba(7,13,15,.30) 100%), var(--hero-bg-image, none); background-position: center, center; background-repeat: no-repeat, no-repeat; background-size: cover, cover; }
.service-hub-hero.hero-with-image::after { background: none; }
.service-hub-hero > .container, .service-detail-hero > .container { gap: clamp(44px, 7vw, 110px); }
.service-detail-hero.hero-with-image { min-height: 680px; background-color: #081012; background-image: linear-gradient(90deg, rgba(7,13,15,.88) 0%, rgba(7,13,15,.72) 42%, rgba(7,13,15,.50) 72%, rgba(7,13,15,.33) 100%), var(--hero-bg-image, none); background-position: center, 62% center; background-repeat: no-repeat, no-repeat; background-size: cover, cover; }
.service-detail-hero.hero-with-image::after { background: none; }
.service-detail-hero > .service-detail-hero-content { display: block; }
.service-detail-hero .hero-actions { max-width: 720px; }
.service-detail-hero .hero-actions, .service-detail-hero .chip-list { position: relative; z-index: 1; }
.service-detail-hero .container > div:first-child { max-width: 720px; }
.service-detail-hero .chip-list-light { gap: 10px; margin-top: 30px; }
.service-detail-hero .chip-dark { padding: 8px 13px; border-color: rgba(120,225,213,.58); color: #d9fffa; background: rgba(5,42,48,.72); box-shadow: inset 0 0 0 1px rgba(12,120,121,.18); font-size: .78rem; font-weight: 800; letter-spacing: .01em; }
.service-detail-hero .chip-dark:hover { border-color: var(--color-signal); background: rgba(10,94,91,.82); }
.hero .eyebrow { color: var(--color-signal); }
.hero h1 { font-size: clamp(3rem, 4.7vw, 4.2rem); font-weight: 900; line-height: .98; }
.hero .lead { color: #c3ccc5; font-size: 1.1rem; }
.service-hub-panel, .service-detail-panel { border-radius: 0; border-color: rgba(255,255,255,.2); background: rgba(8,10,11,.76); }
.service-hub-panel { background: rgba(12,19,21,.96); }
.service-detail-panel { padding: 0; box-shadow: 16px 16px 0 rgba(244,196,48,.25); }
.service-detail-visual { border-radius: 0; }
.service-hub-pill { padding: 20px; border-radius: 0; }
.service-hub-panel .service-hub-pill { background: rgba(8,14,16,.76); }
.service-hub-pill:hover { border-color: var(--color-signal); background: rgba(244,196,48,.12); }
.chip-dark { color: var(--color-signal); border-color: rgba(244,196,48,.55); }
.info-card, .factor-list-card, .accepted-scrap-card, .location-price-card, .location-process-card, .location-local-context-card, .location-operation-note, .service-preparation-card, .about-trust-evidence { padding: 30px; border-color: #d4d5cc; border-radius: 0; background: #fffdf8; }
.info-card h3, .factor-list-card h3, .accepted-scrap-card h3, .location-price-card h3, .location-process-card h3 { font-size: 1.18rem; font-weight: 900; }
.service-pricing-section { position: relative; isolation: isolate; color: #fff; background-color: #111b1d; background-image: linear-gradient(rgba(7,13,15,.72), rgba(7,13,15,.80)), var(--service-pricing-bg, none); background-position: center, 60% center; background-repeat: no-repeat, no-repeat; background-size: cover, cover; }
.service-pricing-section .section-head h2 { color: #fff; }
.service-pricing-layout { align-items: stretch; }
.service-pricing-layout .info-card, .service-pricing-layout .factor-list-card { min-height: 0; border-color: rgba(255,255,255,.28); background: rgba(255,253,248,.94); box-shadow: 0 14px 30px rgba(0,0,0,.16); }
.service-pricing-layout .factor-list-card h3 { color: var(--ink); }
.service-pricing-layout .prose-card p, .service-pricing-layout .factor-list li { color: #38413e; }
.process-grid, .location-process-grid { gap: 0; border-top: 1px solid #c8cbc2; }
.step, .location-process-card { min-height: 225px; padding: 27px; border-right: 1px solid #c8cbc2; border-radius: 0; }
.step::before { color: #9c7900; font-size: 2rem; }
.step h3, .location-process-card h3 { font-size: 1.12rem; font-weight: 900; }
.service-choice-section, .service-regions-section { background: #15191a; }
.service-choice-section { position: relative; isolation: isolate; background-color: #15191a; background-image: linear-gradient(90deg, rgba(8,14,16,.96) 0%, rgba(8,14,16,.88) 48%, rgba(8,14,16,.62) 72%, rgba(8,14,16,.46) 100%), var(--service-choice-bg, none); background-position: 62% center; background-repeat: no-repeat; background-size: cover; }
.service-choice-section .section-head-light h2, .service-regions-section .section-head-light h2 { font-weight: 900; }
.service-choice-section .dual-cta-row { margin-top: 28px; }
.location-service-mini-card, .nearby-location-card { border-radius: 0; }
.location-service-mini-card:hover, .nearby-location-card:hover { border-color: var(--color-signal); }
.location-region-card--actions { display: flex; flex-direction: column; min-height: 100%; }
.location-region-card--actions .region-link-body { display: flex; flex: 1; flex-direction: column; align-items: flex-start; }
.location-region-card--actions .mini-card-actions { margin-top: auto; }
.service-detail-region-section .location-service-mini-grid { align-items: stretch; }
.location-region-card--actions .service-detail-location-actions, .location-detail-service-section .service-detail-location-actions { display: flex; width: 100%; align-items: center; gap: 8px; margin-top: auto; padding-top: 8px; }
.location-region-card--actions .service-detail-location-primary, .location-region-card--actions .service-detail-location-whatsapp, .location-detail-service-section .service-detail-location-primary, .location-detail-service-section .service-detail-location-whatsapp { box-sizing: border-box; display: inline-flex; min-height: 40px; align-items: center; justify-content: center; gap: 7px; padding: 9px 12px; border: 1px solid transparent; border-radius: 5px; font-size: .78rem; font-weight: 800; line-height: 1.15; text-align: center; text-decoration: none; white-space: nowrap; }
.location-region-card--actions .service-detail-location-primary, .location-detail-service-section .service-detail-location-primary { flex: 0 0 auto; border-color: #a9b7b2; color: #16493f; background: #f7faf8; }
.location-region-card--actions .service-detail-location-whatsapp, .location-detail-service-section .service-detail-location-whatsapp { flex: 1 1 145px; min-width: 0; border-color: #07553f; color: #fff; background: #07553f; }
.location-region-card--actions .service-detail-location-whatsapp svg, .location-region-card--actions .service-detail-location-whatsapp .btn-icon, .location-detail-service-section .service-detail-location-whatsapp svg, .location-detail-service-section .service-detail-location-whatsapp .btn-icon { width: 15px; height: 15px; flex: 0 0 15px; }
.location-region-card--actions .service-detail-location-primary:hover, .location-detail-service-section .service-detail-location-primary:hover { border-color: var(--color-signal); color: #101313; background: var(--color-signal); }
.location-region-card--actions .service-detail-location-whatsapp:hover, .location-detail-service-section .service-detail-location-whatsapp:hover { border-color: #063d2f; background: #063d2f; }
.location-region-card--actions .service-detail-location-primary:focus-visible, .location-region-card--actions .service-detail-location-whatsapp:focus-visible, .location-detail-service-section .service-detail-location-primary:focus-visible, .location-detail-service-section .service-detail-location-whatsapp:focus-visible { outline: 3px solid rgba(244,196,48,.55); outline-offset: 2px; }
.about-photo-cta.service-detail-photo-cta { background-image: linear-gradient(rgba(10,15,17,.72), rgba(10,15,17,.82)), var(--about-photo-cta-image); background-position: 60% center; background-size: cover; }
.about-photo-cta.location-detail-photo-cta { background-image: linear-gradient(rgba(10,15,17,.72), rgba(10,15,17,.82)), var(--about-photo-cta-image); background-position: 60% center; background-size: cover; }
.location-price-section { position: relative; isolation: isolate; color: #fff; background-color: #111b1d; background-image: linear-gradient(rgba(7,13,15,.72), rgba(7,13,15,.80)), var(--location-price-bg, none); background-position: center, 60% center; background-repeat: no-repeat, no-repeat; background-size: cover, cover; }
.location-price-section .section-head h2 { color: #fff; }
.location-price-section .section-head p { color: #e2e9e5; }
.location-price-section .location-price-card { border-color: rgba(255,255,255,.28); background: rgba(255,253,248,.94); box-shadow: 0 14px 30px rgba(0,0,0,.18); }
.location-price-section .location-price-card h3 { color: var(--ink); }
.location-price-section .location-price-card p { color: #38413e; }
.location-price-section .location-price-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); align-items: stretch; }
.location-price-section .location-price-card { height: 100%; }
.location-service-mini-card--linked { position: relative; cursor: pointer; }
.location-service-mini-card--linked .mini-card-stretched-link { position: absolute; z-index: 1; inset: 0; border-radius: inherit; cursor: pointer; }
.location-service-mini-card--linked .mini-card-stretched-link:focus-visible { outline: 3px solid var(--color-signal); outline-offset: -3px; }
.location-service-mini-card--linked .mini-card-actions { position: relative; z-index: 2; }
.location-service-mini-grid { align-items: stretch; }
.location-service-mini-card { display: flex; flex-direction: column; height: 100%; }
.location-service-mini-card .location-service-mini-body { display: flex; flex: 1; flex-direction: column; }
.location-service-mini-card .mini-card-actions { margin-top: auto; }
.location-scenario-section { position: relative; isolation: isolate; overflow: hidden; border-color: rgba(255,255,255,.35); background-color: #111b1d; background-image: linear-gradient(rgba(7,13,15,.62), rgba(7,13,15,.72)), var(--location-scenario-bg, none); background-position: center, center; background-repeat: no-repeat, no-repeat; background-size: cover, cover; box-shadow: 0 16px 34px rgba(11,13,14,.18); }
.location-scenario-section .section-head h2 { color: #fff; }
.location-scenario-section .section-head p { color: #e2e9e5; }
.location-scenario-section .local-scenario-card { height: 100%; border-color: rgba(255,255,255,.32); background: rgba(255,253,248,.94); box-shadow: 0 12px 26px rgba(0,0,0,.16); }
.location-scenario-section .local-scenario-card h3 { color: var(--color-ink); }
.location-scenario-section .local-scenario-card p { color: #38413e; }
.crosslink-chip { border-radius: 0; color: #3c4944; background: #f9f7ef; font-weight: 800; }
.crosslink-chip:hover { border-color: var(--color-action); color: var(--color-action-dark); }
.cta-panel { position: relative; min-height: 260px; padding: clamp(42px, 6vw, 76px); border-radius: 0; color: #111; background: var(--color-signal); }
.cta-panel::before { position: absolute; inset: 0; background-image: linear-gradient(135deg, transparent 45%, rgba(17,131,95,.16) 45%, rgba(17,131,95,.16) 48%, transparent 48%), linear-gradient(45deg, transparent 72%, rgba(17,131,95,.14) 72%, rgba(17,131,95,.14) 75%, transparent 75%); background-size: 130px 130px; content: ""; }
.cta-panel > * { position: relative; z-index: 1; }
.cta-panel h2 { color: #101313; font-size: clamp(2rem, 3.4vw, 3.2rem); font-weight: 900; letter-spacing: -.06em; }
.cta-panel p { color: #313530; font-size: 1.05rem; }
.cta-panel .btn-call { color: #fff; background: #101313; }
.cta-panel .btn-call:hover { color: #101313; background: #fffaf0; }
.contact-details-card { background: #15191a; }
.contact-map-placeholder { min-height: 350px; border: 1px solid #cad1c7; border-radius: 0; color: #fff; background: linear-gradient(135deg, #1a2222, #07553f); }
.contact-map-placeholder > span { color: var(--color-signal); }
.contact-map-placeholder h2 { color: #fff; }
.contact-map-placeholder p { color: #d5e0d8; }
.contact-map-placeholder.contact-map-visual { position: relative; isolation: isolate; overflow: hidden; background-color: #111b1d; background-image: linear-gradient(rgba(7,13,15,.64), rgba(7,13,15,.72)), var(--contact-details-bg, none); background-position: center, 58% center; background-repeat: no-repeat, no-repeat; background-size: cover, cover; }
.contact-map-placeholder.contact-map-visual > * { position: relative; z-index: 1; }
.contact-page-stack { display: grid; gap: 24px; }
.contact-details-card.contact-details-visual { position: relative; isolation: isolate; overflow: hidden; background-color: #111b1d; background-image: linear-gradient(rgba(7,13,15,.62), rgba(7,13,15,.72)), var(--contact-details-bg, none); background-position: center, 58% center; background-repeat: no-repeat, no-repeat; background-size: cover, cover; }
.contact-details-card.contact-details-visual > * { position: relative; z-index: 1; }
.contact-details-visual h2, .contact-details-visual p, .contact-details-visual .list-check li { color: #fff; }
.contact-details-visual .list-check li::before { border-color: var(--color-signal); }
.contact-map-panel { overflow: hidden; border: 1px solid #cad1c7; background: #fffdf8; box-shadow: 0 14px 30px rgba(11,13,14,.10); }
.contact-map-copy, .contact-map-note { padding: 18px 22px; }
.contact-map-copy h2 { margin: 0; color: var(--color-ink); font-size: 1.25rem; font-weight: 900; }
.contact-map-copy p, .contact-map-note p { margin: 6px 0 0; color: #38413e; }
.contact-map-note { border-top: 1px solid #d7ddd5; }
.contact-map-embed { display: block; width: 100%; height: 440px; border: 0; }
.footer-address { margin-top: 10px !important; color: #d4dad5 !important; }

@media (max-width: 1100px) {
  .container { width: min(calc(100% - 40px), 1000px); }
  .main-nav { gap: 16px; }
  .header-actions .btn span { display: none; }
  .market-hero-layout { grid-template-columns: minmax(0, 1.2fr) minmax(310px, .8fr); gap: 40px; }
  .territory-panel { grid-template-columns: .75fr 1.25fr; }
}

@media (max-width: 1024px) {
  body { font-size: 16px; }
  .container { width: min(calc(100% - 40px), 920px); }
  .header-shell { min-height: 76px; }
  .brand-logo-img { max-width: 210px; height: 51px; }
  .header-shell { position: relative; }
  .main-nav { position: absolute; top: calc(100% + 1px); right: 0; left: 0; display: none; gap: 8px; padding: 17px 20px 20px; border-bottom: 1px solid rgba(255,255,255,.14); background: #0d1011; box-shadow: 0 15px 30px rgba(0,0,0,.35); }
  .main-nav.is-open { display: grid; }
  .main-nav a { color: #e9ece9; }
  .header-actions { margin-left: auto; }
  .header-actions .btn { min-width: 42px; padding: 9px; }
  .menu-toggle { display: inline-flex; }
  .market-hero { min-height: auto; padding: 74px 0 94px; }
  .market-hero-layout, .valuation-panel, .process-intro, .territory-panel, .faq-dark-layout, .page-hero-grid, .service-hub-hero > .container, .service-detail-hero > .container, .content-wrap { grid-template-columns: 1fr; }
  .market-hero-copy { padding: 0; }
  .market-hero h1 { max-width: 690px; }
  .quick-offer-panel { max-width: 520px; width: 100%; }
  .trust-strip-inner { grid-template-columns: repeat(2, 1fr); }
  .trust-strip-item:nth-child(2) { border-right: 0; }
  .trust-strip-item:nth-child(-n+2) { border-bottom: 1px solid #333a38; }
  .process-intro { margin-bottom: 42px; }
  .process-steps { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .process-steps::before { display: none; }
  .quick-card { min-height: 200px; padding: 0; }
  .territory-copy, .faq-dark-intro { position: static; }
  .territory-grid { grid-template-columns: repeat(2, 1fr); }
  .side-card { position: static; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-brand { grid-column: 1 / -1; }
  .process-grid, .location-process-grid { grid-template-columns: repeat(2, 1fr); }
  .step:nth-child(2n), .location-process-card:nth-child(2n) { border-right: 0; }
  .service-hub-panel { align-self: start; }
  .service-choice-section .dual-cta-row { margin-top: 24px; }
}

@media (max-width: 820px) {
  .container { width: min(calc(100% - 40px), 720px); }
}

@media (max-width: 768px) {
  .service-hub-hero.hero-with-image { background-color: #081012; background-image: linear-gradient(rgba(7,13,15,.87), rgba(7,13,15,.91)), var(--hero-bg-image, none); background-position: center, 56% center; background-repeat: no-repeat, no-repeat; background-size: cover, cover; }
  .service-choice-section { background-image: linear-gradient(rgba(8,14,16,.92), rgba(8,14,16,.94)), var(--service-choice-bg, none); background-position: 72% center; }
  .faq-section-with-background { background-color: #060c0e; background-image: linear-gradient(rgba(5,10,12,.80), rgba(5,10,12,.87)), var(--global-faq-bg, none); background-position: center, 68% center; background-repeat: no-repeat, no-repeat; background-size: cover, cover; }
  .about-page-hero--background { min-height: auto; background-color: #081012; background-image: linear-gradient(rgba(7,13,15,.86), rgba(7,13,15,.92)), var(--about-hero-bg, none); background-position: center, 66% center; background-repeat: no-repeat, no-repeat; background-size: cover, cover; }
  .location-page-hero--background { min-height: auto; background-color: #081012; background-image: linear-gradient(rgba(7,13,15,.86), rgba(7,13,15,.92)), var(--location-hero-bg, none); background-position: center, 66% center; background-repeat: no-repeat, no-repeat; background-size: cover, cover; }
  .contact-page-hero--background { min-height: auto; background-image: linear-gradient(rgba(7,13,15,.78), rgba(7,13,15,.84)), var(--contact-hero-bg, none); background-position: center, 60% center; }
  .service-detail-hero.hero-with-image { min-height: auto; background-color: #081012; background-image: linear-gradient(rgba(7,13,15,.86), rgba(7,13,15,.92)), var(--hero-bg-image, none); background-position: center, 66% center; background-repeat: no-repeat, no-repeat; background-size: cover, cover; }
  .service-pricing-section { background-image: linear-gradient(rgba(7,13,15,.80), rgba(7,13,15,.87)), var(--service-pricing-bg, none); background-position: center, 68% center; }
  .about-photo-cta.service-detail-photo-cta { background-image: linear-gradient(rgba(10,15,17,.80), rgba(10,15,17,.87)), var(--about-photo-cta-image); background-position: 64% center; }
  .about-photo-cta.location-detail-photo-cta { background-image: linear-gradient(rgba(10,15,17,.80), rgba(10,15,17,.87)), var(--about-photo-cta-image); background-position: 64% center; }
  .location-price-section { background-image: linear-gradient(rgba(7,13,15,.80), rgba(7,13,15,.87)), var(--location-price-bg, none); background-position: center, 68% center; }
}

@media (max-width: 560px) {
  body { padding-bottom: 74px; }
  .container { width: min(calc(100% - 28px), 480px); }
  .section { padding: 70px 0; }
  .section-head-impact { display: block; }
  .section-number { display: none; }
  .header-actions .btn-call-header { display: none; }
  .brand-logo-img { max-width: 174px; height: 45px; }
  .market-hero { padding: 62px 0 84px; }
  .market-hero h1 { font-size: clamp(2.8rem, 13vw, 3.65rem); }
  .market-hero .hero-actions .btn { flex: 1 1 100%; }
  .hero-benefit-strip { display: grid; grid-template-columns: 1fr; gap: 11px; margin-top: 30px; }
  .quick-offer-panel { padding: 25px; box-shadow: 0 14px 28px rgba(0,0,0,.2); }
  .trust-strip { padding-top: 18px; }
  .trust-strip-inner { width: 100%; grid-template-columns: 1fr; }
  .trust-strip-item, .trust-strip-item:nth-child(2) { min-height: 70px; border-right: 0; border-bottom: 1px solid #333a38; }
  .trust-strip-item:last-child { border-bottom: 0; }
  .valuation-section { padding: 0; }
  .valuation-panel { gap: 32px; padding: 34px 22px; }
  .valuation-factors { grid-template-columns: 1fr; }
  .valuation-factors div { min-height: 98px; }
  .process-steps, .territory-grid { grid-template-columns: 1fr; }
  .quick-card { min-height: auto; padding-bottom: 24px; border-bottom: 1px solid rgba(244,196,48,.25); }
  .quick-card span { margin-bottom: 12px; }
  .audience-card { min-height: 330px; }
  .principles-grid { grid-template-columns: 1fr; }
  .principle-card { min-height: 230px; border-right: 0; border-bottom: 1px solid #cfd1ca; }
  .principle-card:last-child { border-bottom: 0; }
  .page-hero { padding: 72px 0; }
  .page-hero h1, .hero h1 { font-size: clamp(2.55rem, 11vw, 3.5rem); }
  .page-hero-visual { box-shadow: 10px 10px 0 var(--color-signal); }
  .service-hub-stack, .process-grid, .location-process-grid { grid-template-columns: 1fr; }
  .service-hub-pill { padding: 16px; }
  .service-choice-section .dual-cta-row { gap: 12px; margin-top: 22px; }
  .service-choice-section .dual-cta-row .btn { flex: 1 1 100%; }
  .service-detail-region-section .location-service-mini-grid { grid-template-columns: 1fr; }
  .service-detail-region-section .location-region-card--actions:nth-child(n + 5) { display: none; }
  .service-detail-region-section .all-services-cta { width: 100%; margin-top: 28px; }
  .service-detail-region-section .all-services-cta .btn { width: 100%; justify-content: center; }
  .location-region-card--actions .service-detail-location-actions, .location-detail-service-section .service-detail-location-actions { align-items: stretch; flex-direction: column; }
  .location-region-card--actions .service-detail-location-primary, .location-region-card--actions .service-detail-location-whatsapp, .location-detail-service-section .service-detail-location-primary, .location-detail-service-section .service-detail-location-whatsapp { flex: 1 1 auto; width: 100%; }
  .step, .location-process-card { min-height: auto; border-right: 0; border-bottom: 1px solid #c8cbc2; }
  .cta-panel { padding: 38px 26px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .mobile-cta { gap: 6px; padding: 8px 10px; background: #0b0d0e; }
  .mobile-cta .btn { min-height: 48px; }
}

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

@media (max-width: 560px) {
  .location-price-section .location-price-grid { grid-template-columns: 1fr; }
  .location-scenario-section { background-image: linear-gradient(rgba(7,13,15,.74), rgba(7,13,15,.80)), var(--location-scenario-bg, none); background-position: center, 58% center; }
  .contact-map-embed { height: 350px; }
}

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

.site-header .brand-logo-navbar { width: 260px; height: auto; max-width: none; object-fit: contain; }
.site-footer .brand-logo-footer-img { width: 300px; height: auto; max-width: none; object-fit: contain; }

/* About page visual surfaces */
.about-equipment-visual { margin: 0 0 34px; overflow: hidden; border: 1px solid #d4d5cc; background: #171b1c; aspect-ratio: 16 / 10; }
.about-equipment-visual img, .about-audience-visual img, .about-process-card-visual img { display: block; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.about-audience-card { display: flex; flex-direction: column; padding: 0; overflow: hidden; }
.about-audience-visual { aspect-ratio: 16 / 10; margin: 0; overflow: hidden; background: #171b1c; }
.about-audience-card-content { padding: 30px; }
.about-audience-card-content h3 { margin-top: 0; }
.about-audience-card-content p { margin-bottom: 0; }
.about-process-cards { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 24px; }
.about-process-card { display: flex; flex-direction: column; min-width: 0; overflow: hidden; border: 1px solid #c8cbc2; background: #fffdf8; box-shadow: 0 9px 22px rgba(10, 13, 14, .08); }
.about-process-card-visual { aspect-ratio: 16 / 10; margin: 0; overflow: hidden; background: #171b1c; }
.about-process-card-content { display: flex; flex: 1; flex-direction: column; padding: 27px; }
.about-process-card-number { display: block; margin-bottom: 15px; color: #9c7900; font-size: 2rem; font-weight: 900; line-height: 1; }
.about-process-card h3 { margin: 0; color: var(--ink); font-size: 1.12rem; font-weight: 900; }
.about-process-card p { margin: 9px 0 0; color: var(--steel); font-size: .9rem; }

.about-photo-cta { min-height: 320px; color: #e9ece9; background-color: #101314; background-image: linear-gradient(90deg, rgba(10, 15, 17, .94) 0%, rgba(10, 15, 17, .78) 48%, rgba(10, 15, 17, .36) 100%), var(--about-photo-cta-image); background-position: 60% center; background-size: cover; }
.about-photo-cta::before { inset: auto 0 0 auto; width: min(32%, 340px); height: 4px; background: var(--color-signal); }
.about-photo-cta h2 { color: #fff; }
.about-photo-cta p { color: #e0e5df; }
.about-photo-cta .btn-call { color: #101313; background: var(--color-signal); }
.about-photo-cta .btn-call:hover { color: #101313; background: #ffe27a; }
.about-photo-cta .btn-whatsapp-solid { border: 1px solid rgba(255, 255, 255, .72); box-shadow: 0 0 0 1px rgba(0, 0, 0, .2); }

@media (max-width: 1024px) {
  .site-header .brand-logo-navbar { width: 220px; }
  .about-process-cards { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; }
}

@media (max-width: 560px) {
  .site-header .brand-logo-navbar { width: 180px; }
  .about-equipment-visual { margin-bottom: 24px; }
  .about-audience-card-content { padding: 25px; }
  .about-process-cards { grid-template-columns: 1fr; gap: 22px; }
  .about-process-card-content { padding: 25px; }
  .about-photo-cta { min-height: 390px; background-position: 64% center; }
  .about-photo-cta .cta-band-actions { width: 100%; }
  .about-photo-cta .btn { flex: 1 1 100%; }
}

/* Home page visual refinements */
.home-valuation-panel { background-color: #131718; background-image: linear-gradient(rgba(10,14,15,.70), rgba(10,14,15,.78)), var(--home-valuation-bg, none); background-position: 62% center; background-repeat: no-repeat, no-repeat; background-size: cover, cover; }
.home-valuation-panel .valuation-copy { max-width: 610px; }
.home-valuation-panel .valuation-factors div { background: rgba(13,16,17,.84); }
.home-valuation-panel .valuation-factors div { display: flex; flex-direction: column; gap: 10px; min-height: 178px; }
.home-valuation-panel .valuation-factors strong { min-height: 2.7em; }
.home-valuation-panel .valuation-factors p { margin: 0; color: #d3dad4; font-size: .81rem; line-height: 1.45; }
.home-workflow-section { background-color: #0e1011; background-image: linear-gradient(rgba(8,11,12,.66), rgba(8,11,12,.74)), var(--home-workflow-bg, none); background-position: center, 56% center; background-repeat: no-repeat, no-repeat; background-size: cover, cover; }
.home-workflow-layout { display: grid; grid-template-columns: minmax(0, .95fr) minmax(340px, .75fr); align-items: center; gap: clamp(34px, 5vw, 72px); }
.home-workflow-layout .process-intro { display: block; margin: 0; }
.home-workflow-visual { grid-column: 2; grid-row: 1; margin: 0; overflow: hidden; border: 1px solid rgba(244,196,48,.32); background: #171b1c; aspect-ratio: 16 / 10; }
.home-workflow-visual img { display: block; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.home-workflow-layout .process-steps { grid-column: 1 / -1; margin-top: 8px; }
.audience-market-section .audience-card::before { background-image: linear-gradient(135deg, rgba(8,10,11,.86), rgba(8,10,11,.52)), var(--home-audience-individual-image, none); }
.audience-market-section .audience-card:nth-child(2)::before { background-image: linear-gradient(135deg, rgba(5,74,55,.84), rgba(8,10,11,.58)), var(--home-audience-corporate-image, none); }
.home-principle-card { display: flex; flex-direction: column; min-height: 0; padding: 0; overflow: hidden; }
.home-principle-visual { margin: 0; overflow: hidden; background: #171b1c; aspect-ratio: 16 / 9; }
.home-principle-visual img { display: block; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.home-principle-content { display: flex; flex: 1; flex-direction: column; padding: 28px 30px 32px; }
.home-principle-content > span { display: block; margin-bottom: 17px; color: #9b7800; font-size: 1.7rem; font-weight: 900; line-height: 1; }
.home-principle-content h3 { margin: 0; }
.home-principle-content p { margin-bottom: 0; }
.about-photo-cta.home-photo-cta { min-height: 280px; background-image: linear-gradient(rgba(10,15,17,.72), rgba(10,15,17,.80)), var(--about-photo-cta-image); background-position: 60% center; }

@media (max-width: 1024px) {
  .home-workflow-layout { grid-template-columns: 1fr; }
  .home-workflow-visual { grid-column: auto; grid-row: auto; max-width: 720px; width: 100%; }
  .home-workflow-layout .process-steps { grid-column: auto; }
}

@media (max-width: 560px) {
  .home-valuation-panel { background-image: linear-gradient(rgba(10,14,15,.78), rgba(10,14,15,.84)), var(--home-valuation-bg, none); background-position: 60% center; }
  .home-valuation-panel .valuation-factors div { min-height: 0; }
  .home-principle-content { padding: 25px; }
  .home-workflow-section { background-image: linear-gradient(rgba(8,11,12,.76), rgba(8,11,12,.82)), var(--home-workflow-bg, none); background-position: center, 60% center; }
  .about-photo-cta.home-photo-cta { min-height: 0; background-position: 62% center; }
}
