:root {
  --ink: #102030;
  --ink-2: #3d4b58;
  --navy: #0b1f33;
  --navy-2: #123858;
  --cream: #f5f1e9;
  --paper: #fffdf9;
  --line: #d9dee3;
  --orange: #f36c2d;
  --orange-dark: #d95318;
  --green: #2f8b68;
  --white: #ffffff;
  --shadow: 0 24px 60px rgba(11, 31, 51, .14);
  --radius: 26px;
  --wrap: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; }
button, input, textarea { font: inherit; }
button { cursor: pointer; }

.wrap { width: min(calc(100% - 40px), var(--wrap)); margin-inline: auto; }
.section-pad { padding: 92px 0; }

.skip-link {
  position: fixed; left: 14px; top: -60px; z-index: 1000;
  background: var(--white); color: var(--navy); padding: 10px 14px; border-radius: 8px;
}
.skip-link:focus { top: 14px; }

.practice-bar {
  background: var(--navy); color: rgba(255,255,255,.78); font-size: 12px; letter-spacing: .02em;
}
.practice-bar__inner { min-height: 34px; display: flex; align-items: center; justify-content: center; gap: 10px; text-align: center; }
.practice-bar__dot { width: 3px; height: 3px; border-radius: 50%; background: var(--orange); flex: 0 0 auto; }

.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,253,249,.92); backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(16,32,48,.08);
}
.nav-shell { height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 26px; }
.brand { display: inline-flex; align-items: center; gap: 11px; text-decoration: none; min-width: 230px; }
.brand-mark {
  width: 40px; height: 40px; display: grid; place-items: center; border-radius: 12px;
  background: var(--navy); color: var(--white); position: relative; box-shadow: inset -8px -8px 18px rgba(0,0,0,.12);
}
.brand-mark::after { content: ""; position: absolute; width: 11px; height: 5px; background: var(--orange); border-radius: 8px 8px 2px 2px; top: 7px; right: 7px; transform: rotate(45deg); }
.brand-mark__h { font-weight: 800; font-size: 20px; letter-spacing: -.04em; }
.brand-copy { display: grid; line-height: 1.02; }
.brand-copy strong { font-size: 14px; letter-spacing: -.02em; }
.brand-copy span { font-size: 12px; color: #6a7782; margin-top: 3px; }
.desktop-nav { display: flex; align-items: center; gap: 28px; font-size: 13px; font-weight: 700; }
.desktop-nav a { text-decoration: none; color: #455363; transition: color .2s ease; }
.desktop-nav a:hover { color: var(--orange-dark); }

.button {
  border: 0; text-decoration: none; display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 50px; padding: 0 21px; border-radius: 14px; font-weight: 800; font-size: 14px;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button svg { width: 18px; height: 18px; }
.button--header { min-height: 44px; background: #edf1f4; color: var(--navy); }
.button--primary { background: var(--orange); color: var(--white); box-shadow: 0 12px 30px rgba(243,108,45,.26); }
.button--primary:hover { background: var(--orange-dark); }
.button--secondary { border: 1px solid #cdd5dc; background: var(--white); color: var(--navy); }
.button--full { width: 100%; }

.hero {
  position: relative;
  background:
    radial-gradient(circle at 15% 20%, rgba(243,108,45,.10), transparent 26%),
    linear-gradient(180deg, #fffdf9 0%, #f6f0e6 100%);
  overflow: hidden;
}
.hero::before {
  content: ""; position: absolute; inset: auto -18vw -42% auto; width: 70vw; height: 70vw; border-radius: 50%;
  border: 1px solid rgba(11,31,51,.05); box-shadow: 0 0 0 110px rgba(11,31,51,.015), 0 0 0 220px rgba(11,31,51,.01);
}
.hero-grid { display: grid; grid-template-columns: .94fr 1.06fr; gap: 66px; align-items: center; min-height: 620px; }
.hero-copy { position: relative; z-index: 4; }
.eyebrow { display: inline-flex; align-items: center; gap: 9px; text-transform: uppercase; letter-spacing: .13em; font-size: 11px; font-weight: 800; color: var(--orange-dark); margin-bottom: 18px; }
.eyebrow-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--orange); box-shadow: 0 0 0 5px rgba(243,108,45,.12); }
.eyebrow--light { color: #ffae83; }
h1, h2 { font-family: "Source Serif 4", Georgia, serif; letter-spacing: -.035em; line-height: .98; margin: 0; }
h1 { max-width: 690px; font-size: clamp(46px, 5vw, 74px); }
h2 { font-size: clamp(39px, 4.6vw, 64px); }
.hero-lede { max-width: 620px; color: #596674; font-size: 17px; margin: 24px 0 28px; }
.hero-lede strong { color: var(--ink); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.trust-row { display: grid; grid-template-columns: 150px 130px minmax(160px, 1fr); gap: 10px; margin-top: 34px; max-width: 560px; }
.trust-card {
  min-height: 84px; border: 1px solid rgba(16,32,48,.10); border-radius: 16px; padding: 13px 14px;
  background: rgba(255,255,255,.72); box-shadow: 0 9px 22px rgba(11,31,51,.05); display: grid; align-content: center;
}
.trust-card__value { font-size: 20px; font-weight: 800; line-height: 1; }
.trust-card__label { color: #6f7a84; font-size: 11px; font-weight: 700; margin-top: 5px; }
.stars { color: #f0a14d; font-size: 9px; letter-spacing: .1em; margin-top: 5px; }
.trust-card--location { display: flex; align-items: center; gap: 9px; }
.trust-card--location svg { width: 22px; color: var(--orange); flex: 0 0 auto; }
.trust-card--location .trust-card__label { margin-top: 0; font-size: 12px; color: var(--ink); }

.hero-visual { min-height: 600px; position: relative; display: grid; place-items: center; perspective: 1200px; }
.scene-shell {
  width: min(590px, 100%); aspect-ratio: 1 / .93; position: relative; border-radius: 34px; overflow: hidden;
  background: linear-gradient(145deg, #0f2c45, #081a2b 74%); box-shadow: 0 32px 90px rgba(11,31,51,.24);
  transform-style: preserve-3d; border: 1px solid rgba(255,255,255,.09);
}
.scene-glow { position: absolute; width: 300px; height: 300px; border-radius: 50%; background: rgba(243,108,45,.28); filter: blur(90px); top: 15%; right: 7%; }
.scene-gridlines {
  position: absolute; inset: 0; opacity: .15;
  background-image: linear-gradient(rgba(255,255,255,.22) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.22) 1px, transparent 1px);
  background-size: 44px 44px; transform: perspective(800px) rotateX(60deg) translateY(36%); transform-origin: bottom;
}
.tool-scene { position: absolute; inset: 0; transform-style: preserve-3d; transition: transform .18s ease-out; }
.orbit { position: absolute; border: 1px solid rgba(255,255,255,.13); border-radius: 50%; left: 50%; top: 50%; transform: translate(-50%,-50%) rotateX(66deg); }
.orbit--one { width: 76%; height: 76%; }
.orbit--two { width: 55%; height: 55%; transform: translate(-50%,-50%) rotateX(72deg) rotateZ(34deg); }
.cube { position: absolute; left: 50%; top: 52%; width: 190px; height: 126px; transform-style: preserve-3d; transform: translate(-50%,-50%) rotateX(-12deg) rotateY(28deg); animation: floatCube 7s ease-in-out infinite; }
.face { position: absolute; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.16); box-shadow: inset 0 0 35px rgba(255,255,255,.04); }
.cube .front, .cube .back { width: 190px; height: 126px; }
.cube .right, .cube .left { width: 80px; height: 126px; left: 55px; }
.cube .top, .cube .bottom { width: 190px; height: 80px; top: 23px; }
.cube .front { background: linear-gradient(145deg,#f77a3e,#c74914); transform: translateZ(40px); border-radius: 12px; }
.cube .back { background: #7e2e10; transform: rotateY(180deg) translateZ(40px); }
.cube .right { background: #a63812; transform: rotateY(90deg) translateZ(95px); }
.cube .left { background: #e46028; transform: rotateY(-90deg) translateZ(95px); }
.cube .top { background: #ff8d55; transform: rotateX(90deg) translateZ(63px); }
.cube .bottom { background: #7d2d10; transform: rotateX(-90deg) translateZ(63px); }
.toolbox-handle { position: absolute; width: 76px; height: 30px; border: 9px solid #12273a; border-bottom: 0; border-radius: 14px 14px 0 0; top: -30px; left: 57px; }
.toolbox-label { font-size: 11px; letter-spacing: .22em; font-weight: 800; color: rgba(255,255,255,.74); }
.floating-tool { position: absolute; color: #f5f1e9; filter: drop-shadow(0 18px 24px rgba(0,0,0,.28)); }
.floating-tool--wrench { width: 92px; left: 15%; top: 17%; transform: rotate(-19deg) translateZ(80px); animation: bobWrench 6s ease-in-out infinite; }
.floating-tool--level { width: 135px; height: 26px; right: 10%; bottom: 25%; border-radius: 7px; background: #e8aa2f; transform: rotate(18deg) translateZ(60px); display: flex; align-items: center; justify-content: space-evenly; animation: bobLevel 7.2s ease-in-out infinite; box-shadow: inset 0 0 0 2px rgba(0,0,0,.13); }
.floating-tool--level span { width: 15px; height: 15px; border-radius: 50%; border: 3px solid #12314d; background: #d7efcf; }
.house-plate { position: absolute; right: 12%; top: 14%; width: 92px; color: #d9e6ef; opacity: .88; transform: translateZ(40px) rotate(7deg); animation: bobHouse 8s ease-in-out infinite; }
.spark { position: absolute; width: 8px; height: 8px; border-radius: 50%; background: #ffb37e; box-shadow: 0 0 22px #ff8f4d; animation: spark 4s ease-in-out infinite; }
.spark--1 { left: 20%; bottom: 22%; }.spark--2 { right: 22%; top: 42%; animation-delay: 1.2s; }.spark--3 { left: 48%; top: 17%; animation-delay: 2.4s; }
.visual-note { position: absolute; z-index: 4; left: 24px; right: 24px; bottom: 22px; display: flex; align-items: center; gap: 12px; padding: 13px 15px; border-radius: 16px; background: rgba(8,26,43,.76); border: 1px solid rgba(255,255,255,.12); color: var(--white); backdrop-filter: blur(14px); }
.visual-note__icon { width: 29px; height: 29px; display: grid; place-items: center; border-radius: 9px; background: #2f8b68; font-weight: 800; }
.visual-note div { display: grid; }
.visual-note strong { font-size: 12px; }
.visual-note span:not(.visual-note__icon) { font-size: 10px; color: rgba(255,255,255,.64); margin-top: 2px; }

@keyframes floatCube { 0%,100% { transform: translate(-50%,-50%) rotateX(-12deg) rotateY(28deg) translateY(0); } 50% { transform: translate(-50%,-50%) rotateX(-9deg) rotateY(36deg) translateY(-14px); } }
@keyframes bobWrench { 0%,100% { transform: rotate(-19deg) translateY(0); } 50% { transform: rotate(-12deg) translateY(-16px); } }
@keyframes bobLevel { 0%,100% { transform: rotate(18deg) translateY(0); } 50% { transform: rotate(13deg) translateY(12px); } }
@keyframes bobHouse { 0%,100% { transform: rotate(7deg) translateY(0); } 50% { transform: rotate(1deg) translateY(-10px); } }
@keyframes spark { 0%,100% { opacity: .35; transform: scale(.7); } 50% { opacity: 1; transform: scale(1.4); } }

.proof-strip { background: var(--navy); color: var(--white); }
.proof-grid { min-height: 112px; display: grid; grid-template-columns: 1fr 1fr 1.3fr; gap: 0; align-items: stretch; }
.proof-grid > div { display: grid; align-content: center; gap: 4px; padding: 20px 32px; border-right: 1px solid rgba(255,255,255,.1); }
.proof-grid > div:first-child { padding-left: 0; }
.proof-grid > div:last-child { border-right: 0; }
.proof-kicker { color: rgba(255,255,255,.56); text-transform: uppercase; letter-spacing: .11em; font-size: 9px; font-weight: 800; }
.proof-grid strong, .proof-grid a { font-size: 13px; text-decoration: none; }

.section-heading { max-width: 820px; margin-bottom: 42px; }
.section-heading p, .experience-copy > p, .area-copy p { color: #61707e; max-width: 720px; font-size: 16px; }
.service-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.service-card { border: 1px solid #e1e4e7; border-radius: 22px; background: var(--white); padding: 28px; box-shadow: 0 16px 32px rgba(11,31,51,.045); min-height: 310px; display: flex; flex-direction: column; }
.service-icon { width: 52px; height: 52px; display: grid; place-items: center; border-radius: 15px; background: #edf1f4; color: var(--navy); }
.service-icon svg { width: 28px; height: 28px; }
.service-icon--hammer { background: #fff0e8; color: var(--orange-dark); }
.service-card h3 { margin: 32px 0 9px; font-size: 21px; letter-spacing: -.03em; }
.service-card p { color: #687582; margin: 0 0 24px; font-size: 14px; }
.service-card a { margin-top: auto; text-decoration: none; font-weight: 800; font-size: 12px; color: var(--navy); }
.service-card a span { color: var(--orange); margin-left: 5px; }

.experience { background: #f4f0e8; }
.experience-grid { display: grid; grid-template-columns: 1.03fr .97fr; gap: 82px; align-items: center; }
.experience-visual { position: relative; min-height: 520px; }
.photo-placeholder {
  position: absolute; inset: 0 70px 0 0; border-radius: 28px; overflow: hidden;
  background:
    linear-gradient(145deg, rgba(8,26,43,.12), rgba(8,26,43,.52)),
    radial-gradient(circle at 72% 25%, #d8a26a 0 6%, transparent 7%),
    linear-gradient(135deg,#b8a28d 0 22%,#d2c1ad 22% 42%,#7b8b87 42% 62%,#566861 62% 100%);
  box-shadow: var(--shadow);
}
.photo-placeholder::before { content: ""; position: absolute; width: 240px; height: 300px; right: 8%; bottom: -28px; background: linear-gradient(#243b4c 0 34%, #c98a55 34% 43%, #24404e 43% 100%); border-radius: 120px 120px 18px 18px; transform: rotate(-5deg); opacity: .72; }
.photo-placeholder::after { content: ""; position: absolute; width: 150px; height: 70px; right: 31%; bottom: 19%; border: 12px solid #d3d9d9; border-right-width: 34px; transform: rotate(-17deg); opacity: .72; }
.photo-placeholder__overlay { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 46%, rgba(11,31,51,.68)); }
.photo-placeholder__label { position: absolute; z-index: 2; left: 22px; right: 22px; bottom: 22px; color: rgba(255,255,255,.75); font-size: 11px; max-width: 290px; }
.experience-badge { position: absolute; right: 0; bottom: 46px; display: flex; align-items: center; gap: 13px; background: var(--white); border-radius: 18px; padding: 15px 18px; box-shadow: var(--shadow); border: 1px solid rgba(16,32,48,.08); }
.experience-badge > span { font-size: 28px; font-weight: 800; color: var(--orange-dark); }
.experience-badge div { display: grid; line-height: 1.2; }
.experience-badge strong { font-size: 11px; }.experience-badge small { color: #7e8993; font-size: 9px; margin-top: 3px; }
.experience-copy h2 { max-width: 650px; }
.check-list { display: grid; gap: 0; margin-top: 28px; border-top: 1px solid #d9d4ca; }
.check-item { display: grid; grid-template-columns: 48px 1fr; gap: 12px; padding: 20px 0; border-bottom: 1px solid #d9d4ca; }
.check-item > span { width: 35px; height: 35px; border-radius: 10px; background: var(--navy); color: var(--white); display: grid; place-items: center; font-size: 10px; font-weight: 800; }
.check-item strong { font-size: 14px; }
.check-item p { margin: 3px 0 0; color: #6f7c86; font-size: 12px; }

.feedback { background: var(--white); }
.feedback-shell { background: var(--navy); color: var(--white); border-radius: 30px; padding: 58px; display: grid; grid-template-columns: 1fr .85fr; gap: 50px; align-items: center; overflow: hidden; position: relative; }
.feedback-shell::before { content: ""; position: absolute; width: 280px; height: 280px; border-radius: 50%; background: rgba(243,108,45,.22); filter: blur(90px); right: -40px; top: -60px; }
.feedback-copy { position: relative; z-index: 1; }.feedback-copy p { color: rgba(255,255,255,.66); max-width: 560px; }
.feedback-placeholder { position: relative; z-index: 1; border: 1px solid rgba(255,255,255,.12); background: rgba(255,255,255,.045); border-radius: 22px; padding: 30px; min-height: 230px; display: flex; flex-direction: column; justify-content: center; }
.quote-mark { font-family: Georgia, serif; font-size: 80px; line-height: .55; color: #ffae83; }
.feedback-placeholder p { font-family: "Source Serif 4", Georgia, serif; font-size: 28px; line-height: 1.1; margin: 14px 0 18px; }
.feedback-placeholder span { color: rgba(255,255,255,.5); text-transform: uppercase; letter-spacing: .12em; font-size: 9px; font-weight: 800; }

.area-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 70px; align-items: center; }
.area-copy .button { margin-top: 10px; }
.map-card { min-height: 390px; border-radius: 26px; overflow: hidden; position: relative; background: #dce6e8; box-shadow: var(--shadow); }
.map-grid { position: absolute; inset: -20%; background: repeating-linear-gradient(28deg, transparent 0 44px, rgba(11,31,51,.09) 45px 48px, transparent 49px 92px), repeating-linear-gradient(116deg, transparent 0 60px, rgba(11,31,51,.08) 61px 64px, transparent 65px 110px); transform: rotate(4deg); }
.map-grid::after { content: ""; position: absolute; inset: 24% 11%; border: 14px solid rgba(243,108,45,.16); border-radius: 43% 57% 46% 54%; transform: rotate(-11deg); }
.map-pin { position: absolute; left: 55%; top: 48%; width: 52px; height: 52px; border-radius: 50% 50% 50% 0; background: var(--orange); transform: rotate(-45deg); box-shadow: 0 14px 32px rgba(243,108,45,.36); }
.map-pin span { position: absolute; width: 18px; height: 18px; border-radius: 50%; background: var(--white); left: 17px; top: 17px; }
.map-label { position: absolute; left: 22px; bottom: 22px; background: rgba(255,255,255,.92); border: 1px solid rgba(16,32,48,.08); border-radius: 16px; padding: 13px 15px; display: grid; box-shadow: 0 10px 28px rgba(11,31,51,.10); }
.map-label strong { font-size: 13px; }.map-label span { color: #74818c; font-size: 10px; margin-top: 2px; }

.contact { background: #0b1f33; color: var(--white); }
.contact-shell { display: grid; grid-template-columns: .88fr 1.12fr; gap: 70px; align-items: start; }
.contact-copy p { color: rgba(255,255,255,.65); max-width: 560px; }
.contact-details { display: grid; gap: 12px; margin-top: 34px; }
.contact-details > a, .contact-details > div { display: flex; align-items: flex-start; gap: 13px; color: inherit; text-decoration: none; }
.contact-icon { width: 38px; height: 38px; border: 1px solid rgba(255,255,255,.13); border-radius: 11px; display: grid; place-items: center; color: #ffae83; }
.contact-details div > div, .contact-details a > div { display: grid; }
.contact-details small { color: rgba(255,255,255,.46); font-size: 9px; text-transform: uppercase; letter-spacing: .12em; }
.contact-details strong { font-size: 13px; margin-top: 2px; }
.demo-form { background: var(--white); color: var(--ink); border-radius: 26px; padding: 30px; box-shadow: 0 24px 55px rgba(0,0,0,.18); }
.form-row { display: grid; gap: 8px; margin-bottom: 16px; }
.form-row label { font-size: 11px; font-weight: 800; color: #344351; }
.form-row input, .form-row textarea { width: 100%; border: 1px solid #d8dee3; border-radius: 12px; padding: 13px 14px; outline: none; color: var(--ink); background: #fbfcfd; transition: border .2s ease, box-shadow .2s ease; }
.form-row input { height: 48px; }
.form-row textarea { resize: vertical; min-height: 120px; }
.form-row input:focus, .form-row textarea:focus { border-color: var(--orange); box-shadow: 0 0 0 3px rgba(243,108,45,.12); }
.form-note { margin: 11px 0 0; text-align: center; color: #7b8690; font-size: 10px; }
.form-note.is-success { color: var(--green); font-weight: 800; }

.site-footer { background: #071522; color: var(--white); padding: 54px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr .8fr .7fr; gap: 60px; }
.brand--footer .brand-copy span { color: rgba(255,255,255,.5); }
.footer-brand p { color: rgba(255,255,255,.48); max-width: 430px; font-size: 12px; }
.footer-col { display: grid; align-content: start; gap: 7px; }
.footer-col strong { margin-bottom: 6px; font-size: 11px; text-transform: uppercase; letter-spacing: .1em; color: rgba(255,255,255,.72); }
.footer-col a, .footer-col span { text-decoration: none; color: rgba(255,255,255,.48); font-size: 11px; }
.footer-bottom { margin-top: 42px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.08); display: flex; justify-content: space-between; gap: 20px; color: rgba(255,255,255,.38); font-size: 9px; }

.mobile-cta { display: none; }
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .65s ease, transform .65s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1020px) {
  .desktop-nav { display: none; }
  .hero-grid { grid-template-columns: 1fr; gap: 24px; }
  .hero-copy { max-width: 760px; }
  .hero-visual { min-height: 540px; }
  .scene-shell { max-width: 640px; }
  .experience-grid, .area-grid, .contact-shell { grid-template-columns: 1fr; gap: 44px; }
  .experience-visual { min-height: 500px; }
  .feedback-shell { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  body { padding-bottom: 72px; }
  .wrap { width: min(calc(100% - 28px), var(--wrap)); }
  .section-pad { padding: 68px 0; }
  .practice-bar__inner { min-height: 38px; font-size: 10px; }
  .practice-bar__dot { display: none; }
  .practice-bar__inner span:last-child { display: none; }
  .nav-shell { height: 70px; }
  .brand { min-width: 0; }
  .brand-mark { width: 36px; height: 36px; border-radius: 10px; }
  .brand-copy strong { font-size: 12px; }
  .brand-copy span { font-size: 10px; }
  .button--header { display: none; }
  .hero { padding-top: 58px; }
  .hero-grid { min-height: 0; }
  h1 { font-size: clamp(43px, 13vw, 58px); }
  h2 { font-size: clamp(36px, 10vw, 48px); }
  .hero-lede { font-size: 15px; margin-top: 20px; }
  .hero-actions { display: grid; grid-template-columns: 1fr; }
  .hero-actions .button { width: 100%; }
  .trust-row { grid-template-columns: 1fr 1fr; }
  .trust-card--location { grid-column: 1 / -1; min-height: 58px; }
  .hero-visual { min-height: auto; margin-top: 8px; }
  .scene-shell { aspect-ratio: 1 / 1.06; border-radius: 24px; }
  .cube { transform: translate(-50%,-50%) scale(.82) rotateX(-12deg) rotateY(28deg); }
  .floating-tool--wrench { width: 70px; left: 10%; }
  .floating-tool--level { width: 104px; right: 7%; }
  .house-plate { width: 68px; right: 8%; }
  .visual-note { left: 14px; right: 14px; bottom: 14px; }
  .proof-grid { grid-template-columns: 1fr; padding: 12px 0; }
  .proof-grid > div, .proof-grid > div:first-child { padding: 12px 0; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.09); }
  .proof-grid > div:last-child { border-bottom: 0; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 260px; }
  .experience-visual { min-height: 430px; }
  .photo-placeholder { inset: 0 34px 0 0; }
  .experience-badge { right: 0; bottom: 28px; }
  .feedback-shell { padding: 32px 22px; border-radius: 24px; }
  .feedback-placeholder { min-height: 200px; }
  .feedback-placeholder p { font-size: 24px; }
  .map-card { min-height: 330px; }
  .demo-form { padding: 22px 18px; border-radius: 20px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; }
  .mobile-cta {
    position: fixed; z-index: 120; left: 10px; right: 10px; bottom: 10px; height: 56px; display: grid; grid-template-columns: 1.25fr .75fr; gap: 8px; padding: 6px;
    background: rgba(7,21,34,.92); backdrop-filter: blur(15px); border: 1px solid rgba(255,255,255,.11); border-radius: 18px; box-shadow: 0 18px 50px rgba(0,0,0,.27);
  }
  .mobile-cta a { display: grid; place-items: center; border-radius: 12px; text-decoration: none; font-size: 12px; font-weight: 800; }
  .mobile-cta__call { background: var(--orange); color: var(--white); }
  .mobile-cta__estimate { background: rgba(255,255,255,.09); color: var(--white); }
}

@media (max-width: 390px) {
  .wrap { width: min(calc(100% - 24px), var(--wrap)); }
  h1 { font-size: 42px; }
  .hero { padding-top: 48px; }
  .trust-row { grid-template-columns: 1fr 1fr; gap: 8px; }
  .trust-card { padding: 11px 12px; }
  .scene-shell { aspect-ratio: 1 / 1.13; }
  .scene-gridlines { background-size: 36px 36px; }
  .cube { left: 49%; top: 48%; transform: translate(-50%,-50%) scale(.72) rotateX(-12deg) rotateY(28deg); }
  .visual-note div span { display: none; }
  .experience-visual { min-height: 390px; }
  .experience-badge { padding: 12px 14px; }
  .experience-badge > span { font-size: 23px; }
}

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