:root {
  --red: #e31820;
  --red-2: #ff2f35;
  --red-dark: #8b0d12;
  --ink: #0d0e11;
  --ink-2: #14161b;
  --ink-3: #1d2026;
  --muted: #7e838f;
  --line: rgba(255,255,255,.09);
  --soft: #f4f5f7;
  --white: #fff;
  --max: 1200px;
  --radius: 24px;
  --shadow: 0 24px 80px rgba(0,0,0,.22);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, textarea { font: inherit; }
button { cursor: pointer; }
.shell { width: min(calc(100% - 40px), var(--max)); margin-inline: auto; }
.skip-link { position: fixed; left: 16px; top: -80px; z-index: 2000; background: #fff; color: #000; padding: 12px 16px; border-radius: 10px; font-weight: 700; }
.skip-link:focus { top: 16px; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  transition: background .28s ease, box-shadow .28s ease, backdrop-filter .28s ease;
}
.site-header.scrolled { background: rgba(13,14,17,.9); backdrop-filter: blur(18px); box-shadow: 0 10px 40px rgba(0,0,0,.24); border-bottom: 1px solid rgba(255,255,255,.06); }
.header-inner { height: 86px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { width: 238px; flex: 0 0 auto; background: #fff; padding: 4px 7px; border-radius: 9px; box-shadow: 0 8px 24px rgba(0,0,0,.18); }
.brand img { width: 100%; height: auto; border-radius: 5px; }
.nav { display: flex; align-items: center; gap: 24px; color: rgba(255,255,255,.82); font-size: 14px; font-weight: 650; }
.nav > a:not(.nav-cta) { position: relative; padding: 8px 0; }
.nav > a:not(.nav-cta)::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 0; height: 2px; background: var(--red); transition: right .2s ease; }
.nav > a:not(.nav-cta):hover::after { right: 0; }
.nav-cta { padding: 12px 16px; background: var(--red); color: #fff; border-radius: 12px; box-shadow: 0 10px 28px rgba(227,24,32,.26); }
.menu-toggle { display: none; width: 44px; height: 44px; border: 0; border-radius: 12px; background: rgba(255,255,255,.08); padding: 11px; }
.menu-toggle span { display: block; height: 2px; margin: 5px 0; background: #fff; border-radius: 10px; transition: .2s ease; }

.hero {
  min-height: 850px;
  height: min(930px, 100svh);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background: #0a0b0e;
  isolation: isolate;
}
.hero-media { position: absolute; inset: 0; z-index: -3; }
.hero-media::before { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(7,8,11,.98) 0%, rgba(7,8,11,.93) 36%, rgba(7,8,11,.56) 68%, rgba(7,8,11,.74) 100%); z-index: 2; }
.hero-media::after { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 82% 42%, rgba(227,24,32,.25), transparent 26%), linear-gradient(180deg, transparent 60%, #0d0e11 100%); z-index: 2; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: 68% center; opacity: .62; filter: saturate(.82) contrast(1.05); transform: scale(1.04); }
.hero-noise { position: absolute; inset: 0; z-index: -1; opacity: .32; background-image: radial-gradient(rgba(255,255,255,.17) .7px, transparent .7px); background-size: 9px 9px; mask-image: linear-gradient(90deg, #000, transparent 78%); }
.hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 72px; align-items: center; padding-top: 76px; }
.hero-copy { max-width: 710px; }
.eyebrow, .kicker { display: inline-flex; align-items: center; gap: 9px; font-size: 12px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.eyebrow { color: rgba(255,255,255,.72); background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.09); border-radius: 999px; padding: 9px 12px; }
.live-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--red-2); box-shadow: 0 0 0 6px rgba(227,24,32,.12), 0 0 24px rgba(227,24,32,.72); }
.hero h1, .section h2 { font-family: "Space Grotesk", "Inter", sans-serif; letter-spacing: -.045em; }
.hero h1 { font-size: clamp(48px, 5.8vw, 83px); line-height: .98; margin: 22px 0 24px; max-width: 820px; }
.hero h1 span, .section h2 span { color: var(--red); }
.hero-copy > p { max-width: 650px; font-size: 18px; line-height: 1.72; color: rgba(255,255,255,.71); margin: 0 0 32px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.btn { min-height: 52px; display: inline-flex; align-items: center; justify-content: center; gap: 10px; border-radius: 14px; padding: 14px 19px; font-size: 14px; font-weight: 800; border: 1px solid transparent; transition: transform .18s ease, box-shadow .18s ease, background .18s ease; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--red); color: #fff; box-shadow: 0 16px 40px rgba(227,24,32,.24); }
.btn-primary:hover { background: #f21f27; box-shadow: 0 18px 46px rgba(227,24,32,.34); }
.btn-ghost { border-color: rgba(255,255,255,.18); color: #fff; background: rgba(255,255,255,.055); backdrop-filter: blur(10px); }
.btn svg { width: 18px; height: 18px; }
.hero-badges { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin-top: 42px; border: 1px solid rgba(255,255,255,.085); border-radius: 18px; overflow: hidden; max-width: 690px; }
.hero-badges div { padding: 17px; background: rgba(13,14,17,.44); backdrop-filter: blur(12px); }
.hero-badges strong, .hero-badges span { display: block; }
.hero-badges strong { font-size: 14px; color: #fff; }
.hero-badges span { margin-top: 5px; font-size: 11px; color: rgba(255,255,255,.48); }

.hero-panel { background: linear-gradient(180deg, rgba(20,22,27,.86), rgba(13,14,17,.76)); border: 1px solid rgba(255,255,255,.11); border-radius: 28px; padding: 18px; box-shadow: 0 35px 100px rgba(0,0,0,.36); backdrop-filter: blur(22px); transform-style: preserve-3d; position: relative; overflow: hidden; }
.hero-panel::before { content: ""; position: absolute; width: 320px; height: 320px; background: rgba(227,24,32,.13); filter: blur(90px); right: -100px; top: -90px; border-radius: 50%; }
.panel-topline { display: flex; justify-content: space-between; gap: 12px; align-items: center; font-size: 10px; letter-spacing: .1em; color: rgba(255,255,255,.43); position: relative; z-index: 2; }
.status-chip { color: #ff7277; border: 1px solid rgba(227,24,32,.3); background: rgba(227,24,32,.08); border-radius: 999px; padding: 7px 9px; }
.printer-visual { height: 250px; display: grid; place-items: center; perspective: 700px; position: relative; }
.printer-shell { width: 270px; height: 155px; background: linear-gradient(145deg, #d8dbe0, #888d95 68%, #6a6e75); border-radius: 18px 18px 26px 26px; position: relative; box-shadow: 0 28px 45px rgba(0,0,0,.32), inset 0 1px rgba(255,255,255,.75); transform: rotateX(7deg) rotateY(-10deg); }
.printer-lid { position: absolute; width: 220px; height: 54px; left: 25px; top: -38px; border-radius: 12px 12px 6px 6px; background: linear-gradient(160deg,#f3f4f7,#a8adb5); box-shadow: 0 10px 22px rgba(0,0,0,.25); transform: skewX(-7deg); }
.printer-screen { position: absolute; top: 24px; right: 26px; width: 56px; height: 30px; border-radius: 6px; background: #1a2027; display: flex; align-items: center; justify-content: center; gap: 3px; }
.printer-screen span { width: 5px; height: 5px; border-radius: 1px; background: var(--red); box-shadow: 0 0 8px rgba(227,24,32,.8); }
.paper-slot { position: absolute; width: 150px; height: 14px; background: #2d3035; border-radius: 8px; left: 28px; bottom: 36px; box-shadow: inset 0 2px 5px rgba(0,0,0,.5); }
.paper-sheet { position: absolute; width: 132px; height: 104px; left: 37px; bottom: -60px; background: #fff; color: #1d2026; border-radius: 3px; padding: 22px 12px 10px; box-shadow: 0 16px 34px rgba(0,0,0,.2); font-size: 8px; letter-spacing: .14em; }
.paper-sheet::before { content: ""; position: absolute; top: 12px; left: 12px; right: 12px; height: 3px; background: var(--red); box-shadow: 0 9px #ddd, 0 18px #ddd; }
.paper-sheet span, .paper-sheet b { display: block; }
.paper-sheet b { font-size: 20px; margin-top: 15px; color: var(--red); letter-spacing: -.04em; }
.panel-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; position: relative; z-index: 2; }
.panel-stats div { padding: 14px; background: rgba(255,255,255,.045); border: 1px solid rgba(255,255,255,.055); border-radius: 14px; }
.panel-stats span { display: block; color: var(--red-2); font-size: 10px; font-weight: 900; letter-spacing: .12em; }
.panel-stats strong { display: block; margin-top: 7px; font-size: 12px; }
.panel-stats small { display: block; margin-top: 5px; color: rgba(255,255,255,.44); line-height: 1.45; font-size: 9px; }
.scroll-cue { position: absolute; left: 50%; bottom: 23px; transform: translateX(-50%); display: inline-flex; flex-direction: column; align-items: center; gap: 7px; font-size: 9px; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.38); }
.scroll-cue span { width: 1px; height: 28px; background: linear-gradient(#fff, transparent); animation: scrollCue 1.8s ease-in-out infinite; }
@keyframes scrollCue { 50% { transform: scaleY(.6); opacity: .35; } }

.quick-strip { position: relative; z-index: 8; margin-top: -1px; background: #0d0e11; color: #fff; border-top: 1px solid rgba(255,255,255,.06); }
.quick-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.quick-grid a { min-height: 98px; display: grid; grid-template-columns: 38px 1fr; grid-template-rows: auto auto; column-gap: 12px; align-content: center; padding: 18px 24px; border-right: 1px solid rgba(255,255,255,.07); transition: background .18s ease; }
.quick-grid a:first-child { border-left: 1px solid rgba(255,255,255,.07); }
.quick-grid a:hover { background: rgba(227,24,32,.085); }
.quick-grid svg { grid-row: 1 / span 2; width: 24px; height: 24px; color: var(--red); align-self: center; }
.quick-grid b { font-size: 13px; }
.quick-grid small { margin-top: 5px; color: rgba(255,255,255,.45); font-size: 10px; }

.section { padding: 120px 0; position: relative; }
.section-heading { display: grid; grid-template-columns: 1.12fr .75fr; gap: 70px; align-items: end; margin-bottom: 54px; }
.kicker { color: var(--red); margin-bottom: 16px; }
.section h2 { font-size: clamp(38px, 4.7vw, 68px); line-height: 1.02; margin: 0; }
.section-heading > p { margin: 0; color: #676c77; line-height: 1.75; font-size: 15px; max-width: 470px; }
.services { background: #fff; }
.service-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.service-card { min-height: 300px; border: 1px solid #e9eaed; background: linear-gradient(180deg,#fff,#fafafa); border-radius: 20px; padding: 25px; position: relative; overflow: hidden; transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease; }
.service-card::after { content: ""; position: absolute; inset: auto -40px -80px auto; width: 180px; height: 180px; border-radius: 50%; background: rgba(227,24,32,.05); filter: blur(8px); transition: transform .28s ease; }
.service-card:hover { transform: translateY(-8px); border-color: rgba(227,24,32,.28); box-shadow: 0 22px 55px rgba(19,20,25,.09); }
.service-card:hover::after { transform: scale(1.35); }
.service-icon { width: 48px; height: 48px; border-radius: 14px; display: grid; place-items: center; background: #f6f6f7; color: var(--red); border: 1px solid #ececef; margin-bottom: 24px; }
.service-icon svg { width: 23px; height: 23px; }
.service-card h3 { font-family: "Space Grotesk"; font-size: 21px; margin: 0 0 12px; }
.service-card p { color: #686d78; line-height: 1.65; font-size: 13px; margin: 0; }
.service-card > span { position: absolute; left: 25px; right: 25px; bottom: 22px; font-size: 10px; font-weight: 800; color: #a0a4ad; text-transform: uppercase; letter-spacing: .08em; }
.accent-card { background: var(--ink); border-color: var(--ink); color: #fff; }
.accent-card p { color: rgba(255,255,255,.58); }
.accent-card .service-icon { background: rgba(227,24,32,.12); border-color: rgba(227,24,32,.24); }
.accent-card > span { color: rgba(255,255,255,.34); }

.defects { background: #101115; color: #fff; overflow: hidden; }
.defects::before { content: ""; position: absolute; inset: 0; background-image: radial-gradient(rgba(255,255,255,.06) 1px, transparent 1px); background-size: 22px 22px; mask-image: radial-gradient(circle at 70% 45%, #000, transparent 58%); opacity: .7; }
.defects .section-heading > p { color: rgba(255,255,255,.5); }
.defect-layout { position: relative; z-index: 2; }
.defect-tabs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }
.defect-tab { border: 1px solid rgba(255,255,255,.1); background: rgba(255,255,255,.035); color: rgba(255,255,255,.55); border-radius: 999px; padding: 11px 15px; font-size: 12px; font-weight: 800; }
.defect-tab.active { background: var(--red); color: #fff; border-color: var(--red); box-shadow: 0 10px 30px rgba(227,24,32,.2); }
.defect-stage { display: grid; grid-template-columns: .86fr 1.14fr; min-height: 530px; border: 1px solid rgba(255,255,255,.09); border-radius: 26px; overflow: hidden; background: rgba(255,255,255,.03); backdrop-filter: blur(16px); }
.defect-photo { position: relative; min-height: 520px; overflow: hidden; }
.defect-photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(15,16,20,0), #111216 100%), linear-gradient(180deg, transparent 62%, #111216 100%); }
.defect-photo img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.55) contrast(1.1); }
.scan-overlay { position: absolute; inset: 0; z-index: 2; background: linear-gradient(180deg, transparent 0%, transparent 45%, rgba(227,24,32,.27) 49%, rgba(255,72,79,.42) 50%, transparent 52%, transparent 100%); background-size: 100% 240%; animation: scan 4.6s linear infinite; opacity: .6; }
@keyframes scan { to { background-position: 0 220%; } }
.defect-content { padding: 58px 54px; display: flex; flex-direction: column; justify-content: center; }
.defect-head > span { color: var(--red-2); font-size: 10px; letter-spacing: .16em; font-weight: 900; }
.defect-head h3 { font-family: "Space Grotesk"; font-size: clamp(30px, 3.4vw, 48px); line-height: 1.05; margin: 12px 0 13px; }
.defect-head p { color: rgba(255,255,255,.52); line-height: 1.7; font-size: 14px; }
.defect-list { list-style: none; padding: 0; margin: 26px 0 28px; display: grid; grid-template-columns: 1fr 1fr; gap: 10px 18px; }
.defect-list li { position: relative; padding-left: 18px; color: rgba(255,255,255,.75); font-size: 13px; line-height: 1.45; }
.defect-list li::before { content: ""; position: absolute; left: 0; top: .55em; width: 6px; height: 6px; border-radius: 2px; background: var(--red); box-shadow: 0 0 12px rgba(227,24,32,.55); }
.text-link { color: #fff; font-weight: 800; font-size: 12px; display: inline-flex; gap: 9px; align-items: center; }
.text-link span { color: var(--red-2); font-size: 18px; transition: transform .18s ease; }
.text-link:hover span { transform: translateX(4px); }

.models { background: #f5f6f8; overflow: hidden; }
.brand-marquee { overflow: hidden; border-block: 1px solid #e1e3e7; margin-bottom: 34px; background: rgba(255,255,255,.5); }
.marquee-track { width: max-content; display: flex; align-items: center; gap: 28px; padding: 18px 0; animation: marquee 24s linear infinite; }
.marquee-track span { font-family: "Space Grotesk"; color: #9a9ea7; font-size: 17px; font-weight: 800; letter-spacing: .08em; }
.marquee-track i { width: 5px; height: 5px; background: var(--red); border-radius: 50%; }
@keyframes marquee { to { transform: translateX(-50%); } }
.model-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; }
.model-card { min-height: 220px; background: #fff; border: 1px solid #e6e7ea; border-radius: 20px; padding: 24px; position: relative; transition: .2s ease; }
.model-card:hover { transform: translateY(-5px); box-shadow: 0 20px 50px rgba(20,22,27,.08); }
.model-type { font-size: 9px; color: var(--red); text-transform: uppercase; letter-spacing: .12em; font-weight: 900; }
.model-card h3 { margin: 18px 0 6px; font: 700 24px/1 "Space Grotesk"; }
.model-card > p { margin: 0; font-weight: 800; color: #353940; font-size: 13px; }
.model-card small { position: absolute; left: 24px; right: 24px; bottom: 22px; color: #7b808a; line-height: 1.55; }
.model-cta { background: var(--red); color: #fff; border-color: var(--red); }
.model-cta .model-type, .model-cta > p { color: rgba(255,255,255,.8); }
.model-cta a { position: absolute; bottom: 24px; left: 24px; font-size: 12px; font-weight: 800; }

.process-section { background: #fff; }
.process-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: 82px; align-items: center; }
.process-media { height: 650px; overflow: hidden; border-radius: 26px; position: relative; box-shadow: var(--shadow); transform-style: preserve-3d; }
.process-media img { width: 100%; height: 100%; object-fit: cover; }
.process-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(7,8,10,.72)); }
.media-tag { position: absolute; left: 22px; bottom: 22px; z-index: 2; display: inline-flex; align-items: center; gap: 9px; color: #fff; background: rgba(13,14,17,.75); border: 1px solid rgba(255,255,255,.13); backdrop-filter: blur(10px); border-radius: 999px; padding: 11px 14px; font-size: 11px; font-weight: 800; }
.media-tag svg { width: 16px; color: var(--red-2); }
.process-copy h2 { max-width: 600px; }
.process-copy > p { color: #6e737d; line-height: 1.7; max-width: 650px; }
.steps { list-style: none; padding: 0; margin: 36px 0 0; }
.steps li { display: grid; grid-template-columns: 52px 1fr; gap: 15px; padding: 20px 0; border-top: 1px solid #ececef; }
.steps li:last-child { border-bottom: 1px solid #ececef; }
.steps > li > span { font: 800 12px/1 "Space Grotesk"; color: var(--red); padding-top: 5px; }
.steps h3 { margin: 0 0 5px; font-size: 15px; }
.steps p { margin: 0; color: #7a7f88; line-height: 1.55; font-size: 12px; }

.region { background: #f4f5f7; }
.region-card { min-height: 510px; border-radius: 30px; background: var(--ink); color: #fff; overflow: hidden; padding: 64px; display: grid; grid-template-columns: 1.05fr .95fr; gap: 50px; position: relative; }
.region-card::before { content: ""; position: absolute; inset: 0; background-image: radial-gradient(rgba(255,255,255,.055) 1px, transparent 1px); background-size: 18px 18px; mask-image: linear-gradient(90deg, transparent, #000); }
.region-copy { position: relative; z-index: 2; }
.region-copy h2 { max-width: 670px; }
.region-copy > p { max-width: 630px; color: rgba(255,255,255,.55); line-height: 1.7; }
.city-grid { display: flex; flex-wrap: wrap; gap: 8px; margin: 24px 0 28px; max-width: 640px; }
.city-grid span { border: 1px solid rgba(255,255,255,.11); background: rgba(255,255,255,.045); color: rgba(255,255,255,.72); padding: 9px 11px; border-radius: 999px; font-size: 11px; }
.region-visual { min-height: 400px; position: relative; display: grid; place-items: center; }
.radar-ring { position: absolute; border: 1px solid rgba(227,24,32,.26); border-radius: 50%; box-shadow: inset 0 0 40px rgba(227,24,32,.03); }
.ring-1 { width: 170px; height: 170px; }
.ring-2 { width: 290px; height: 290px; }
.ring-3 { width: 410px; height: 410px; }
.region-visual::before, .region-visual::after { content: ""; position: absolute; background: rgba(227,24,32,.17); }
.region-visual::before { width: 1px; height: 430px; }
.region-visual::after { width: 430px; height: 1px; }
.radar-center { width: 108px; height: 108px; border-radius: 50%; background: var(--red); display: flex; flex-direction: column; align-items: center; justify-content: center; position: relative; z-index: 2; box-shadow: 0 0 70px rgba(227,24,32,.38); }
.radar-center span { font: 800 13px/1 "Space Grotesk"; }
.radar-center small { margin-top: 5px; opacity: .65; }
.radar-dot { width: 10px; height: 10px; background: #fff; border: 3px solid var(--red); border-radius: 50%; position: absolute; z-index: 4; box-shadow: 0 0 18px rgba(227,24,32,.8); }
.d1 { transform: translate(120px,-100px); }.d2 { transform: translate(-155px,65px); }.d3 { transform: translate(85px,150px); }.d4 { transform: translate(-110px,-135px); }.d5 { transform: translate(175px,55px); }

.location { background: #fff; }
.location-grid { display: grid; grid-template-columns: .78fr 1.22fr; gap: 16px; }
.contact-card, .map-card { border: 1px solid #e5e6e9; border-radius: 24px; overflow: hidden; background: #fff; }
.contact-card { padding: 28px; }
.contact-logo { padding-bottom: 24px; border-bottom: 1px solid #ececef; }
.contact-logo img { width: 260px; }
.contact-block { padding: 24px 0; }
.contact-label { display: block; color: var(--red); font-size: 9px; letter-spacing: .14em; font-weight: 900; text-transform: uppercase; margin-bottom: 8px; }
.contact-block strong { font: 700 21px/1.2 "Space Grotesk"; }
.contact-block p { color: #747984; font-size: 12px; line-height: 1.6; }
.contact-actions { display: grid; gap: 8px; }
.contact-actions a { display: flex; align-items: center; gap: 13px; padding: 13px; border-radius: 13px; background: #f7f7f8; border: 1px solid #ececef; transition: .18s ease; }
.contact-actions a:hover { border-color: rgba(227,24,32,.24); background: #fff8f8; }
.contact-actions svg { width: 20px; color: var(--red); }
.contact-actions small, .contact-actions b { display: block; }
.contact-actions small { color: #9397a0; font-size: 9px; }
.contact-actions b { margin-top: 3px; font-size: 12px; }
.hours { margin-top: 24px; padding-top: 22px; border-top: 1px solid #ececef; }
.hours > div { display: flex; justify-content: space-between; gap: 15px; margin: 10px 0; font-size: 11px; }
.hours > div span { color: #6f747e; text-align: right; }
.hours > small { color: #9b9fa7; }
.maps-link { margin-top: 22px; min-height: 48px; border-radius: 12px; background: var(--ink); color: #fff; display: flex; align-items: center; justify-content: center; gap: 9px; font-size: 11px; font-weight: 800; }
.maps-link svg { width: 17px; color: var(--red-2); }
.map-card { position: relative; min-height: 610px; background: #eee; }
.map-card iframe { width: 100%; height: 100%; min-height: 610px; display: block; filter: saturate(.85) contrast(1.02); }
.map-caption { position: absolute; left: 16px; right: 16px; bottom: 16px; background: rgba(13,14,17,.9); backdrop-filter: blur(14px); color: rgba(255,255,255,.72); border: 1px solid rgba(255,255,255,.12); border-radius: 12px; padding: 12px 14px; font-size: 10px; display: flex; align-items: center; gap: 8px; pointer-events: none; }
.map-caption svg { width: 15px; color: var(--red-2); }

.contact-form-section { background: #f5f6f8; padding-top: 0; }
.whatsapp-form-card { background: var(--ink); color: #fff; border-radius: 30px; padding: 60px; display: grid; grid-template-columns: .95fr 1.05fr; gap: 70px; position: relative; overflow: hidden; }
.whatsapp-form-card::after { content: ""; position: absolute; width: 460px; height: 460px; right: -170px; top: -200px; border-radius: 50%; background: rgba(227,24,32,.12); filter: blur(20px); }
.form-copy { position: relative; z-index: 2; }
.form-copy p { color: rgba(255,255,255,.5); line-height: 1.7; }
.whatsapp-form { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.whatsapp-form label { color: rgba(255,255,255,.67); font-size: 10px; font-weight: 800; letter-spacing: .05em; }
.whatsapp-form input, .whatsapp-form textarea { width: 100%; margin-top: 7px; border: 1px solid rgba(255,255,255,.1); background: rgba(255,255,255,.055); color: #fff; border-radius: 12px; outline: none; padding: 13px 14px; resize: vertical; transition: border-color .18s ease, background .18s ease; }
.whatsapp-form input:focus, .whatsapp-form textarea:focus { border-color: rgba(227,24,32,.8); background: rgba(255,255,255,.075); }
.whatsapp-form .full { grid-column: 1 / -1; }
.whatsapp-form button { border: 0; }

.faq-section { background: #fff; }
.faq-grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: 90px; }
.faq-title { position: sticky; top: 130px; align-self: start; }
.faq-title h2 { font-size: clamp(38px,4vw,58px); }
.faq-title p { color: #777c86; line-height: 1.65; }
.faq-list details { border-top: 1px solid #e6e7ea; }
.faq-list details:last-child { border-bottom: 1px solid #e6e7ea; }
.faq-list summary { list-style: none; cursor: pointer; padding: 25px 44px 25px 0; font-weight: 800; font-size: 15px; position: relative; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; position: absolute; right: 0; top: 22px; width: 26px; height: 26px; border-radius: 50%; border: 1px solid #d9dbe0; display: grid; place-items: center; color: var(--red); transition: .2s ease; }
.faq-list details[open] summary::after { transform: rotate(45deg); background: var(--red); color: #fff; border-color: var(--red); }
.faq-list details p { margin: -7px 50px 24px 0; color: #737882; line-height: 1.7; font-size: 13px; }

.site-footer { background: #0d0e11; color: #fff; padding: 72px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.25fr .9fr .8fr 1fr; gap: 54px; }
.footer-logo { width: 275px; background: #fff; padding: 5px 7px; border-radius: 9px; }
.footer-grid > div:first-child p { max-width: 350px; color: rgba(255,255,255,.43); line-height: 1.65; font-size: 12px; }
.footer-grid h3 { margin: 0 0 16px; font-size: 12px; }
.footer-grid a, .footer-grid span { display: block; color: rgba(255,255,255,.47); font-size: 11px; line-height: 1.6; margin: 7px 0; }
.footer-grid a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding-top: 28px; margin-top: 42px; border-top: 1px solid rgba(255,255,255,.08); color: rgba(255,255,255,.34); font-size: 10px; }
.mobile-dock { display: none; }

.reveal, .reveal-card { opacity: 0; transform: translateY(24px); }
.no-js .reveal, .no-js .reveal-card { opacity: 1; transform: none; }

@media (max-width: 1080px) {
  .nav { gap: 16px; font-size: 12px; }
  .brand { width: 215px; }
  .hero-grid { grid-template-columns: 1fr .78fr; gap: 34px; }
  .hero-panel { transform: scale(.93); transform-origin: right center; }
  .service-grid, .model-grid { grid-template-columns: repeat(2,1fr); }
  .process-grid { gap: 45px; }
  .region-card { padding: 48px; }
  .footer-grid { grid-template-columns: 1.2fr 1fr 1fr; }
  .footer-grid > div:last-child { grid-column: 2 / 4; }
}

@media (max-width: 850px) {
  .shell { width: min(calc(100% - 28px), var(--max)); }
  .header-inner { height: 74px; }
  .brand { width: 200px; }
  .menu-toggle { display: block; }
  .nav { position: fixed; inset: 74px 0 0; background: rgba(13,14,17,.98); backdrop-filter: blur(22px); padding: 26px 22px 110px; flex-direction: column; align-items: stretch; gap: 3px; transform: translateX(102%); transition: transform .25s ease; overflow-y: auto; }
  .nav.open { transform: translateX(0); }
  .nav a { padding: 15px 9px !important; border-bottom: 1px solid rgba(255,255,255,.07); font-size: 15px; }
  .nav-cta { text-align: center; margin-top: 12px; border-bottom: 0 !important; }
  .menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle.open span:nth-child(2) { opacity: 0; }
  .menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .hero { height: auto; min-height: 980px; padding: 110px 0 70px; }
  .hero-media::before { background: linear-gradient(180deg, rgba(7,8,11,.85), rgba(7,8,11,.98) 70%); }
  .hero-media img { object-position: 60% center; }
  .hero-grid { grid-template-columns: 1fr; gap: 34px; padding-top: 0; }
  .hero-copy { max-width: none; }
  .hero h1 { font-size: clamp(45px,10.5vw,72px); }
  .hero-panel { max-width: 620px; width: 100%; margin-inline: auto; transform: none; }
  .scroll-cue { display: none; }
  .quick-grid { grid-template-columns: repeat(2,1fr); }
  .quick-grid a:nth-child(odd) { border-left: 1px solid rgba(255,255,255,.07); }
  .quick-grid a { border-bottom: 1px solid rgba(255,255,255,.07); }

  .section { padding: 88px 0; }
  .section-heading { grid-template-columns: 1fr; gap: 20px; margin-bottom: 38px; }
  .section-heading > p { max-width: 680px; }
  .defect-stage { grid-template-columns: 1fr; }
  .defect-photo { min-height: 340px; }
  .defect-photo::after { background: linear-gradient(180deg, rgba(15,16,20,0), #111216 96%); }
  .process-grid, .region-card, .location-grid, .whatsapp-form-card, .faq-grid { grid-template-columns: 1fr; }
  .process-media { height: 470px; }
  .region-card { gap: 20px; }
  .region-visual { min-height: 360px; }
  .location-grid { gap: 14px; }
  .map-card, .map-card iframe { min-height: 470px; }
  .whatsapp-form-card { gap: 30px; padding: 42px; }
  .faq-grid { gap: 40px; }
  .faq-title { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > div:last-child { grid-column: auto; }
}

@media (max-width: 560px) {
  body { padding-bottom: 70px; }
  .shell { width: min(calc(100% - 22px), var(--max)); }
  .brand { width: 176px; }
  .hero { min-height: 900px; padding-top: 94px; }
  .hero h1 { font-size: 43px; }
  .hero-copy > p { font-size: 15px; line-height: 1.65; }
  .hero-actions { display: grid; grid-template-columns: 1fr; }
  .hero-badges { grid-template-columns: 1fr; }
  .hero-badges div { padding: 13px 15px; }
  .hero-panel { border-radius: 20px; padding: 14px; }
  .printer-visual { height: 220px; transform: scale(.92); }
  .panel-stats { grid-template-columns: 1fr; }
  .panel-stats div { display: grid; grid-template-columns: 38px 1fr; column-gap: 7px; }
  .panel-stats span { grid-row: 1 / span 2; align-self: center; }
  .panel-stats strong { margin-top: 0; }
  .panel-stats small { margin-top: 2px; }
  .quick-grid { grid-template-columns: 1fr; }
  .quick-grid a { min-height: 78px; border-left: 1px solid rgba(255,255,255,.07); }

  .section { padding: 72px 0; }
  .section h2 { font-size: 39px; }
  .service-grid, .model-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 280px; }
  .defect-tabs { display: grid; grid-template-columns: 1fr 1fr; }
  .defect-tab { border-radius: 12px; }
  .defect-content { padding: 34px 24px 38px; }
  .defect-list { grid-template-columns: 1fr; }
  .process-media { height: 390px; }
  .process-grid { gap: 34px; }
  .region-card { padding: 32px 24px; border-radius: 22px; }
  .region-visual { transform: scale(.78); margin: -45px 0; }
  .contact-card { padding: 22px; }
  .map-card, .map-card iframe { min-height: 390px; }
  .whatsapp-form-card { padding: 32px 22px; border-radius: 22px; }
  .whatsapp-form { grid-template-columns: 1fr; }
  .whatsapp-form .full { grid-column: auto; }
  .hours > div { display: block; }
  .hours > div span { display: block; text-align: left; margin-top: 3px; }
  .faq-list summary { font-size: 14px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; }
  .mobile-dock { position: fixed; z-index: 1200; inset: auto 10px calc(8px + env(safe-area-inset-bottom)) 10px; height: 58px; border-radius: 17px; background: rgba(13,14,17,.94); border: 1px solid rgba(255,255,255,.11); box-shadow: 0 14px 45px rgba(0,0,0,.28); backdrop-filter: blur(18px); display: grid; grid-template-columns: 1fr 1.2fr 1fr; overflow: hidden; }
  .mobile-dock a { color: rgba(255,255,255,.72); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 3px; font-size: 9px; }
  .mobile-dock svg { width: 18px; height: 18px; }
  .mobile-dock .dock-main { background: var(--red); color: #fff; }
}

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