:root {
  --black: #05070a;
  --black-2: #090d13;
  --black-3: #0d131c;
  --surface: #111925;
  --surface-2: #151f2d;
  --white: #f7f9fc;
  --muted: #98a4b5;
  --line: rgba(255, 255, 255, 0.11);
  --blue: #087cff;
  --blue-light: #3ea3ff;
  --orange: #ff9d00;
  --orange-light: #ffbe3d;
  --green: #25d366;
  --font-title: "Barlow Condensed", "Arial Narrow", sans-serif;
  --font-body: "Manrope", Arial, sans-serif;
  --radius: 22px;
  --container: min(1180px, calc(100% - 40px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--white);
  background: var(--black);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button { color: inherit; }
.container { width: var(--container); margin-inline: auto; }
.skip-link { position: fixed; top: -100px; left: 20px; z-index: 9999; background: var(--orange); color: #090a0c; padding: 10px 18px; font-weight: 800; }
.skip-link:focus { top: 12px; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  height: 86px;
  border-bottom: 1px solid transparent;
  transition: background .3s ease, border-color .3s ease, height .3s ease;
}
.site-header.scrolled { height: 72px; background: rgba(5, 7, 10, .9); border-color: var(--line); backdrop-filter: blur(18px); }
.header-inner { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.brand { display: flex; align-items: center; gap: 12px; min-width: 255px; }
.brand img { width: 82px; height: 67px; object-fit: contain; object-position: center; filter: drop-shadow(0 0 12px rgba(8, 124, 255, .22)); }
.brand-copy { display: grid; line-height: 1; border-left: 1px solid var(--line); padding-left: 12px; }
.brand-copy strong { font: 800 24px/1 var(--font-title); text-transform: uppercase; letter-spacing: .04em; }
.brand-copy small { color: var(--muted); font-size: 10px; letter-spacing: .16em; text-transform: uppercase; margin-top: 5px; }
.main-nav { display: flex; align-items: center; gap: 26px; }
.main-nav > a:not(.nav-cta) { position: relative; color: #d7deea; font-size: 13px; font-weight: 700; }
.main-nav > a:not(.nav-cta)::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -7px; height: 2px; background: var(--orange); transition: right .25s; }
.main-nav > a:not(.nav-cta):hover::after { right: 0; }
.nav-cta { padding: 12px 18px; background: var(--orange); color: #0a0b0e; font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .05em; border-radius: 7px; transition: transform .2s, box-shadow .2s; }
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(255, 157, 0, .22); }
.menu-toggle { display: none; width: 44px; height: 44px; border: 1px solid var(--line); background: transparent; border-radius: 8px; padding: 10px; }
.menu-toggle span { display: block; height: 2px; margin: 5px 0; background: var(--white); transition: .25s; }

.hero { position: relative; min-height: 850px; display: grid; align-items: center; padding: 140px 0 105px; isolation: isolate; overflow: hidden; }
.hero::before { content: ""; position: absolute; z-index: -3; inset: 0; background: radial-gradient(circle at 78% 42%, rgba(8, 124, 255, .14), transparent 30%), radial-gradient(circle at 60% 75%, rgba(255, 157, 0, .08), transparent 25%), linear-gradient(115deg, #05070a 20%, #080c12 62%, #05070a); }
.hero::after { content: ""; position: absolute; z-index: -2; inset: 0; opacity: .19; background-image: linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px); background-size: 64px 64px; mask-image: linear-gradient(to right, transparent, #000 48%, #000); }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 76px; align-items: center; }
.eyebrow, .kicker { color: var(--blue-light); font-size: 11px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
.eyebrow { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 25px; }
.pulse-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--orange); box-shadow: 0 0 0 0 rgba(255, 157, 0, .6); animation: pulse 2s infinite; }
@keyframes pulse { 70% { box-shadow: 0 0 0 9px rgba(255,157,0,0); } 100% { box-shadow: 0 0 0 0 rgba(255,157,0,0); } }
.hero h1 { margin: 0; font: 800 clamp(56px, 6vw, 91px)/.86 var(--font-title); letter-spacing: -.025em; text-transform: uppercase; }
.hero h1 span { color: var(--orange); text-shadow: 0 0 32px rgba(255, 157, 0, .14); }
.hero-copy > p { max-width: 620px; margin: 28px 0 30px; color: #b3bdca; font-size: 17px; line-height: 1.8; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.button { min-height: 54px; display: inline-flex; align-items: center; justify-content: center; gap: 18px; padding: 0 24px; border: 1px solid transparent; border-radius: 8px; font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: .035em; transition: transform .25s, border-color .25s, background .25s, box-shadow .25s; }
.button b { font-size: 20px; line-height: 1; }
.button-primary { background: linear-gradient(135deg, var(--orange), var(--orange-light)); color: #090b0e; box-shadow: 0 12px 38px rgba(255, 157, 0, .14); }
.button-primary:hover { transform: translateY(-3px); box-shadow: 0 17px 42px rgba(255, 157, 0, .26); }
.button-ghost { border-color: var(--line); color: #e7ebf1; background: rgba(255,255,255,.025); }
.button-ghost:hover { transform: translateY(-3px); border-color: rgba(62, 163, 255, .5); background: rgba(8,124,255,.08); }
.hero-proof { display: flex; gap: 25px; margin-top: 43px; padding-top: 27px; border-top: 1px solid var(--line); }
.hero-proof div { display: grid; gap: 3px; }
.hero-proof strong { color: var(--white); font: 700 19px/1 var(--font-title); text-transform: uppercase; }
.hero-proof span { max-width: 115px; color: var(--muted); font-size: 10px; line-height: 1.45; }

.hero-visual { position: relative; min-height: 610px; }
.hero-image-wrap { position: absolute; inset: 8% 4% 5% 12%; overflow: hidden; border-radius: 4px 80px 4px 4px; box-shadow: 0 40px 100px rgba(0,0,0,.6); }
.hero-image-wrap::before { content: ""; position: absolute; z-index: 1; inset: 0; background: linear-gradient(180deg, rgba(5,7,10,.02), rgba(5,7,10,.2) 50%, rgba(5,7,10,.8)), linear-gradient(90deg, rgba(5,7,10,.5), transparent 55%); }
.hero-image-wrap img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.88) contrast(1.08); }
.scan-line { position: absolute; z-index: 2; left: 0; right: 0; height: 1px; top: 18%; background: linear-gradient(90deg, transparent, rgba(62,163,255,.9), transparent); box-shadow: 0 0 15px var(--blue); animation: scan 5s ease-in-out infinite; }
@keyframes scan { 50% { top: 82%; opacity: .3; } }
.hero-visual::before { content: ""; position: absolute; z-index: -1; inset: 1% 0 12% 6%; border: 1px solid rgba(8,124,255,.3); border-radius: 4px 88px 4px 4px; transform: translate(16px, 16px); }
.visual-card { position: absolute; z-index: 3; background: rgba(9, 13, 19, .88); border: 1px solid var(--line); backdrop-filter: blur(12px); box-shadow: 0 18px 40px rgba(0,0,0,.34); }
.visual-card-top { top: 2%; right: -3%; display: flex; align-items: center; gap: 12px; padding: 15px 18px; border-radius: 12px; }
.card-icon { display: grid; place-items: center; width: 38px; height: 38px; background: rgba(255,157,0,.12); color: var(--orange); border: 1px solid rgba(255,157,0,.25); border-radius: 50%; }
.visual-card small { display: block; color: var(--muted); font-size: 9px; text-transform: uppercase; letter-spacing: .12em; }
.visual-card strong { display: block; font-size: 12px; margin-top: 3px; }
.visual-card-bottom { left: 0; bottom: 1%; padding: 19px 22px; border-left: 3px solid var(--orange); }
.visual-card-bottom strong { font: 700 20px/1.12 var(--font-title); text-transform: uppercase; }
.electric-orbit { position: absolute; right: -38px; top: 43%; width: 110px; height: 110px; border: 1px dashed rgba(255,157,0,.38); border-radius: 50%; animation: rotate 14s linear infinite; }
.electric-orbit::before { content: ""; position: absolute; width: 8px; height: 8px; border-radius: 50%; background: var(--orange); top: 3px; left: 50%; box-shadow: 0 0 17px var(--orange); }
@keyframes rotate { to { transform: rotate(360deg); } }
.energy-lines { position: absolute; z-index: -1; inset: 0; pointer-events: none; opacity: .6; }
.energy-lines i { position: absolute; display: block; width: 240px; height: 1px; background: linear-gradient(90deg, transparent, var(--blue), transparent); transform: rotate(-28deg); animation: current 5.5s infinite; }
.energy-lines i:nth-child(1) { top: 27%; left: -60px; }
.energy-lines i:nth-child(2) { right: -40px; bottom: 19%; animation-delay: 1.5s; }
.energy-lines i:nth-child(3) { width: 110px; right: 35%; top: 12%; animation-delay: 3s; }
@keyframes current { 0%, 100% { opacity: 0; transform: translateX(-25px) rotate(-28deg); } 45%, 55% { opacity: 1; transform: translateX(30px) rotate(-28deg); } }
.scroll-cue { position: absolute; left: 50%; bottom: 24px; transform: translateX(-50%); display: flex; align-items: center; gap: 9px; color: #707d90; font-size: 9px; letter-spacing: .13em; text-transform: uppercase; }
.scroll-cue span { width: 28px; height: 40px; border: 1px solid var(--line); border-radius: 20px; position: relative; }
.scroll-cue span::after { content: ""; position: absolute; top: 8px; left: 50%; width: 3px; height: 7px; border-radius: 3px; background: var(--orange); transform: translateX(-50%); animation: scroll 1.8s infinite; }
@keyframes scroll { to { transform: translate(-50%, 13px); opacity: 0; } }

.trust-bar { background: #080c12; border-block: 1px solid var(--line); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-grid > div { display: flex; align-items: center; gap: 13px; min-height: 105px; padding: 22px 24px; border-right: 1px solid var(--line); }
.trust-grid > div:first-child { border-left: 1px solid var(--line); }
.trust-grid span { color: var(--orange); font: 700 23px/1 var(--font-title); opacity: .75; }
.trust-grid p { margin: 0; color: var(--muted); font-size: 10px; line-height: 1.5; }
.trust-grid strong { display: block; color: var(--white); font-size: 11px; text-transform: uppercase; letter-spacing: .035em; }

.section { padding: 125px 0; }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 60px; margin-bottom: 55px; }
.section-heading h2, .business h2, .about h2, .faq h2, .contact h2 { margin: 12px 0 0; font: 700 clamp(44px, 5vw, 68px)/.97 var(--font-title); text-transform: uppercase; letter-spacing: -.02em; }
.section-heading > p { max-width: 440px; margin: 0; color: var(--muted); font-size: 14px; }
.kicker { display: inline-block; }
.kicker.orange { color: var(--orange); }
.services { background: #080c12; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.service-card { position: relative; min-height: 330px; padding: 34px 30px; border: 1px solid var(--line); background: linear-gradient(145deg, rgba(255,255,255,.035), rgba(255,255,255,.012)); overflow: hidden; transition: transform .3s, border-color .3s, background .3s; }
.service-card::after { content: ""; position: absolute; left: -100%; bottom: 0; width: 100%; height: 2px; background: linear-gradient(90deg, transparent, var(--blue), var(--orange)); transition: left .35s; }
.service-card:hover { transform: translateY(-6px); border-color: rgba(62,163,255,.32); background: linear-gradient(145deg, rgba(8,124,255,.08), rgba(255,255,255,.018)); }
.service-card:hover::after { left: 0; }
.service-card.featured { background: linear-gradient(145deg, rgba(8,124,255,.18), rgba(8,124,255,.035)); border-color: rgba(62,163,255,.32); }
.service-card.wallbox-card { background: radial-gradient(circle at 88% 14%, rgba(62,163,255,.27), transparent 30%), linear-gradient(145deg, rgba(8,124,255,.22), rgba(8,124,255,.04)); }
.service-number { color: #687486; font: 600 13px/1 var(--font-title); }
.service-symbol { position: absolute; right: 27px; top: 24px; color: var(--orange); font-size: 30px; }
.service-card h3 { margin: 65px 0 13px; font: 700 28px/1.05 var(--font-title); text-transform: uppercase; }
.service-card p { margin: 0; color: var(--muted); font-size: 13px; }
.service-card ul { display: flex; flex-wrap: wrap; gap: 6px; margin: 19px 0 0; padding: 0; list-style: none; }
.service-card li { padding: 4px 8px; color: #aeb8c6; background: rgba(255,255,255,.04); border: 1px solid var(--line); font-size: 9px; text-transform: uppercase; }

.wallbox { position: relative; overflow: hidden; background: #f3f5f7; color: #111821; }
.wallbox::before { content: ""; position: absolute; inset: 0; opacity: .65; background: linear-gradient(90deg, transparent 49.8%, rgba(8,124,255,.08) 50%, transparent 50.2%); background-size: 76px 100%; }
.wallbox-grid { position: relative; display: grid; grid-template-columns: 1.12fr .88fr; gap: 95px; align-items: center; }
.wallbox-copy .kicker { color: #0872e1; }
.section-index { margin: 22px 0 10px; color: #6b7786; font: 700 13px/1 var(--font-title); letter-spacing: .14em; }
.wallbox h2 { max-width: 760px; margin: 0; font: 750 clamp(45px, 5.4vw, 72px)/.94 var(--font-title); text-transform: uppercase; letter-spacing: -.025em; }
.wallbox-copy > p:not(.section-index) { max-width: 710px; margin: 26px 0 30px; color: #526071; font-size: 15px; }
.wallbox-steps { display: grid; grid-template-columns: repeat(3, 1fr); margin: 0 0 32px; border-top: 1px solid #d5dbe3; border-left: 1px solid #d5dbe3; }
.wallbox-steps > div { min-height: 155px; padding: 20px 16px; border-right: 1px solid #d5dbe3; border-bottom: 1px solid #d5dbe3; }
.wallbox-steps span { color: #0872e1; font: 800 19px/1 var(--font-title); }
.wallbox-steps strong { display: block; margin-top: 25px; color: #131c28; font-size: 12px; }
.wallbox-steps p { margin: 6px 0 0; color: #677383; font-size: 11px; line-height: 1.5; }
.wallbox-visual { position: relative; min-height: 620px; display: grid; place-items: center; border-radius: 4px 70px 4px 4px; overflow: hidden; background: radial-gradient(circle at 50% 35%, rgba(8,124,255,.27), transparent 24%), linear-gradient(145deg, #071a32, #050a11 68%); box-shadow: 0 35px 85px rgba(11,35,63,.24); }
.wallbox-visual::before { content: ""; position: absolute; inset: 0; opacity: .25; background-image: linear-gradient(rgba(255,255,255,.09) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.09) 1px, transparent 1px); background-size: 42px 42px; }
.wallbox-photo { position: absolute; inset: 0; z-index: 2; margin: 0; overflow: hidden; }
.wallbox-photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(4,9,15,.04), rgba(4,9,15,.12) 48%, rgba(4,9,15,.92)); }
.wallbox-photo img { width: 100%; height: 100%; object-fit: cover; object-position: 54% center; filter: saturate(.9) contrast(1.05); }
.wallbox-photo figcaption { position: absolute; z-index: 3; left: 30px; right: 30px; bottom: 30px; display: grid; gap: 5px; padding: 23px; color: white; background: rgba(4,10,18,.8); border-left: 3px solid var(--orange); backdrop-filter: blur(12px); }
.wallbox-photo figcaption span { color: var(--orange); font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: .12em; }
.wallbox-photo figcaption strong { font: 800 30px/1 var(--font-title); text-transform: uppercase; }
.wallbox-photo figcaption small { color: #b5c0ce; font-size: 10px; }
.wallbox-device { position: relative; z-index: 2; width: 245px; height: 330px; padding: 32px; color: white; background: linear-gradient(160deg, #fefefe, #dce6f0); border: 1px solid white; border-radius: 34px; box-shadow: 0 0 0 9px rgba(255,255,255,.05), 0 35px 80px rgba(0,0,0,.48); }
.wallbox-device span { color: #0677ed; font: 800 17px/1 var(--font-title); letter-spacing: .14em; }
.wallbox-device strong { display: block; margin-top: 46px; color: #0d1724; font: 800 94px/.78 var(--font-title); }
.wallbox-device i { display: block; width: 54px; height: 6px; margin-top: 47px; border-radius: 99px; background: var(--orange); box-shadow: 0 0 18px rgba(255,157,0,.65); }
.wallbox-device small { display: block; margin-top: 14px; color: #59687a; font-size: 10px; font-weight: 800; letter-spacing: .14em; }
.wallbox-energy-line { position: absolute; z-index: 1; bottom: -120px; width: 8px; height: 310px; border-radius: 8px; background: linear-gradient(var(--orange), #0677ed); box-shadow: 0 0 35px rgba(8,124,255,.7); }
.wallbox-spec { position: absolute; z-index: 3; right: 0; bottom: 28px; display: grid; gap: 8px; padding: 17px 20px; color: #b8c5d4; background: rgba(4,10,18,.82); border: 1px solid rgba(255,255,255,.12); backdrop-filter: blur(12px); font-size: 10px; text-transform: uppercase; letter-spacing: .07em; }
.wallbox-spec span:first-child { color: var(--orange); font: 800 21px/1 var(--font-title); }

.business { position: relative; overflow: hidden; background: linear-gradient(115deg, #071327, #07101d 55%, #06090e); }
.business::before { content: ""; position: absolute; inset: 0; opacity: .18; background-image: radial-gradient(circle at 1px 1px, rgba(62,163,255,.5) 1px, transparent 0); background-size: 30px 30px; mask-image: linear-gradient(90deg, transparent 15%, #000 80%); }
.business-grid { position: relative; display: grid; grid-template-columns: 1fr .82fr; gap: 95px; align-items: center; }
.business-copy > p { max-width: 660px; margin: 26px 0; color: #9fabbc; font-size: 14px; }
.business-audiences { display: flex; flex-wrap: wrap; gap: 8px; margin: -8px 0 30px; }
.business-audiences span { padding: 8px 12px; color: #c7d8ec; border: 1px solid rgba(62,163,255,.24); background: rgba(8,124,255,.08); font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: .05em; }
.business-points { display: grid; gap: 15px; margin: 32px 0 36px; }
.business-points > div { display: flex; align-items: flex-start; gap: 13px; }
.business-points span { display: grid; place-items: center; flex: 0 0 24px; height: 24px; margin-top: 3px; border-radius: 50%; color: #07101d; background: var(--orange); font-weight: 900; font-size: 12px; }
.business-points p { margin: 0; color: var(--muted); font-size: 12px; }
.business-points strong { display: block; color: var(--white); font-size: 13px; }
.business-panel { padding: 38px; border: 1px solid rgba(62,163,255,.2); background: rgba(6,11,18,.76); box-shadow: 0 30px 80px rgba(0,0,0,.32); }
.panel-head { padding-bottom: 25px; border-bottom: 1px solid var(--line); }
.panel-head span { display: block; color: var(--blue-light); font-size: 9px; text-transform: uppercase; letter-spacing: .16em; }
.panel-head strong { display: block; margin-top: 5px; font: 700 31px/1 var(--font-title); text-transform: uppercase; }
.panel-line { display: grid; grid-template-columns: 40px 1fr; gap: 13px; padding: 22px 0; border-bottom: 1px solid var(--line); }
.panel-line > span { color: var(--orange); font: 700 20px/1 var(--font-title); }
.panel-line p { margin: 0; color: var(--muted); font-size: 11px; line-height: 1.5; }
.panel-line strong { display: block; color: var(--white); font-size: 12px; }
.business-panel > small { display: block; margin-top: 20px; color: #6f7b8c; font-size: 9px; }

.about { background: #f3f5f7; color: #10151d; }
.about-grid { display: grid; grid-template-columns: .8fr 1.1fr; gap: 100px; align-items: center; }
.about-visual { position: relative; padding-right: 45px; }
.about-photo { height: 630px; background: #111; overflow: hidden; border-radius: 3px 55px 3px 3px; }
.about-photo img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.8) contrast(1.06); }
.personal-photo img { object-position: center 25%; filter: saturate(.92) contrast(1.03); }
.about-photo::after { content: ""; position: absolute; inset: auto 45px 0 0; height: 52%; background: linear-gradient(transparent, rgba(3,5,8,.7)); }
.about-stamp { position: absolute; right: 0; bottom: 55px; z-index: 2; width: 160px; height: 160px; display: grid; place-content: center; text-align: center; background: var(--orange); color: #080b10; border-radius: 50%; box-shadow: 0 18px 45px rgba(0,0,0,.2); }
.about-stamp span, .about-stamp small { font-size: 9px; text-transform: uppercase; letter-spacing: .09em; }
.about-stamp strong { font: 800 34px/1 var(--font-title); text-transform: uppercase; }
.about-copy .kicker { color: #036fdc; }
.about-lead { margin: 25px 0; color: #4e5969; font-size: 15px; }
.about blockquote { margin: 28px 0 35px; padding: 5px 0 5px 24px; border-left: 3px solid var(--orange); color: #1d2633; font: 600 20px/1.45 var(--font-title); }
.credentials { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid #d6dbe2; border-left: 1px solid #d6dbe2; }
.credentials > div { display: grid; grid-template-columns: 53px 1fr; gap: 12px; padding: 20px 15px; border-right: 1px solid #d6dbe2; border-bottom: 1px solid #d6dbe2; }
.credentials span { color: #0872e1; font: 800 21px/1 var(--font-title); }
.credentials p { margin: 0; color: #626c79; font-size: 9px; line-height: 1.55; }
.credentials strong { display: block; color: #18202b; font-size: 10px; }

.portfolio { background: #080c12; }
.portfolio-tabs { display: flex; gap: 8px; margin: -25px 0 35px; }
.portfolio-filter { padding: 9px 15px; border: 1px solid var(--line); background: transparent; color: var(--muted); cursor: pointer; font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.portfolio-filter.active { color: #07101a; background: var(--orange); border-color: var(--orange); }
.before-after-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.work-card { background: var(--black-3); border: 1px solid var(--line); transition: opacity .25s, transform .25s; }
.work-card.hidden { display: none; }
.work-images { display: grid; grid-template-columns: 1fr 1fr; height: 365px; }
.work-images figure { position: relative; margin: 0; min-width: 0; overflow: hidden; cursor: zoom-in; }
.work-images figure + figure { border-left: 2px solid var(--orange); }
.work-images img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease, filter .4s; }
.shower-images img { object-fit: contain; background: #111820; }
.work-images figure:first-child img { filter: saturate(.6) brightness(.76); }
.work-images figure:hover img { transform: scale(1.04); filter: saturate(1) brightness(1); }
.work-images figcaption { position: absolute; left: 12px; top: 12px; padding: 6px 9px; color: white; background: rgba(5,7,10,.82); font-size: 9px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.work-images .after { color: #07101a; background: var(--orange); }
.work-copy { display: grid; grid-template-columns: 48px 1fr; gap: 10px; padding: 22px; border-top: 1px solid var(--line); }
.work-copy > span { color: var(--blue-light); font: 700 20px/1 var(--font-title); }
.work-copy h3 { margin: 0; font: 700 22px/1 var(--font-title); text-transform: uppercase; }
.work-copy p { margin: 7px 0 0; color: var(--muted); font-size: 10px; }
.feature-work { position: relative; min-height: 446px; overflow: hidden; cursor: zoom-in; }
.feature-work > img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; transition: transform .5s; }
.feature-work:hover > img { transform: scale(1.04); }
.feature-work::after { content: ""; position: absolute; inset: 0; background: linear-gradient(transparent 30%, rgba(2,4,7,.9)); }
.feature-overlay { position: absolute; z-index: 2; left: 28px; right: 28px; bottom: 28px; }
.feature-overlay span { color: var(--orange); font-size: 9px; text-transform: uppercase; letter-spacing: .15em; }
.feature-overlay h3 { margin: 8px 0 0; max-width: 360px; font: 700 29px/1.05 var(--font-title); text-transform: uppercase; }
.gallery-heading { display: grid; grid-template-columns: .65fr .9fr 1.5fr; gap: 30px; align-items: end; margin: 80px 0 28px; padding-top: 30px; border-top: 1px solid var(--line); }
.gallery-heading > span { color: var(--blue-light); font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .15em; }
.gallery-heading h3 { margin: 0; font: 700 39px/1 var(--font-title); text-transform: uppercase; }
.gallery-heading p { margin: 0; color: var(--muted); font-size: 12px; }
.technical-gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.gallery-card { position: relative; min-height: 360px; margin: 0; overflow: hidden; cursor: zoom-in; }
.gallery-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease, filter .4s ease; }
.gallery-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(transparent 35%, rgba(3,6,10,.94)); }
.gallery-card:hover img { transform: scale(1.045); filter: saturate(1.08); }
.gallery-card figcaption { position: absolute; z-index: 2; left: 20px; right: 20px; bottom: 19px; color: white; font: 700 20px/1.05 var(--font-title); text-transform: uppercase; }
.gallery-card figcaption span { display: block; margin-bottom: 8px; color: var(--orange); font: 800 9px/1 var(--font-body); letter-spacing: .14em; }
.instagram-cta { display: flex; align-items: center; justify-content: space-between; gap: 30px; margin-top: 18px; padding: 26px 30px; border: 1px solid var(--line); background: linear-gradient(90deg, rgba(8,124,255,.11), rgba(255,157,0,.04)); }
.instagram-cta p { margin: 0; color: var(--muted); font-size: 12px; }
.instagram-cta p span { display: block; color: white; font-size: 13px; font-weight: 800; }
.instagram-cta a { color: var(--orange); font-size: 12px; font-weight: 800; }

.process { background: var(--black); }
.section-heading.center { justify-content: center; text-align: center; }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.process-step { min-height: 270px; padding: 33px 27px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.process-step span { color: var(--orange); font: 700 17px/1 var(--font-title); }
.process-step h3 { margin: 73px 0 12px; font: 700 23px/1.05 var(--font-title); text-transform: uppercase; }
.process-step p { margin: 0; color: var(--muted); font-size: 11px; }

.google-profile { padding: 0 0 100px; background: var(--black); }
.google-card { display: grid; grid-template-columns: 90px 1fr auto; align-items: center; gap: 30px; padding: 34px 38px; border: 1px solid rgba(62,163,255,.22); background: linear-gradient(110deg, rgba(8,124,255,.13), rgba(255,255,255,.025) 52%, rgba(255,157,0,.06)); box-shadow: 0 24px 75px rgba(0,0,0,.24); }
.google-mark { display: grid; place-items: center; width: 76px; height: 76px; border-radius: 50%; color: white; background: conic-gradient(from -35deg, #4285f4 0 28%, #34a853 28% 46%, #fbbc05 46% 68%, #ea4335 68% 84%, #4285f4 84%); font: 800 36px/1 var(--font-body); box-shadow: inset 0 0 0 17px #0b111a, 0 0 35px rgba(66,133,244,.22); }
.google-copy h2 { margin: 8px 0 7px; font: 700 34px/1 var(--font-title); text-transform: uppercase; }
.google-copy p { margin: 0; max-width: 610px; color: var(--muted); font-size: 11px; }
.button-google { border-color: rgba(255,255,255,.18); background: rgba(255,255,255,.06); }
.button-google:hover { transform: translateY(-3px); border-color: rgba(62,163,255,.55); background: rgba(8,124,255,.14); }

.faq { background: #0a0f16; }
.faq-grid { display: grid; grid-template-columns: .7fr 1fr; gap: 100px; }
.faq-intro > p { color: var(--muted); font-size: 12px; }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 24px 0; cursor: pointer; list-style: none; font-size: 13px; font-weight: 700; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { color: var(--orange); font-size: 23px; font-weight: 400; transition: transform .25s; }
.faq-list details[open] summary span { transform: rotate(45deg); }
.faq-list details p { margin: -8px 0 22px; padding-right: 50px; color: var(--muted); font-size: 12px; }

.contact { position: relative; padding: 130px 0; overflow: hidden; background: linear-gradient(135deg, #081327, #05080d); text-align: center; }
.contact::before { content: ""; position: absolute; inset: 0; opacity: .12; background-image: linear-gradient(30deg, transparent 48%, rgba(62,163,255,.7) 49%, transparent 50%); background-size: 36px 36px; }
.contact-glow { position: absolute; left: 50%; top: 40%; width: 620px; height: 250px; transform: translate(-50%, -50%); background: rgba(8,124,255,.18); filter: blur(90px); border-radius: 50%; }
.contact-inner { position: relative; }
.contact h2 { max-width: 930px; margin: 13px auto 20px; font-size: clamp(46px, 6vw, 76px); }
.contact-inner > p { max-width: 680px; margin: 0 auto 33px; color: var(--muted); font-size: 13px; }
.button-large { min-height: 62px; padding-inline: 32px; }
.contact-links { display: grid; grid-template-columns: repeat(3, 1fr); max-width: 990px; margin: 55px auto 0; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.contact-links > * { padding: 22px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); min-width: 0; }
.contact-links small { display: block; color: #6f7c8e; font-size: 8px; text-transform: uppercase; letter-spacing: .13em; }
.contact-links strong { display: block; margin-top: 5px; font-size: 10px; overflow-wrap: anywhere; }

.site-footer { padding: 70px 0 25px; background: #030507; border-top: 1px solid rgba(255,255,255,.06); }
.footer-grid { display: grid; grid-template-columns: 1.8fr repeat(3, 1fr); gap: 55px; }
.footer-brand img { width: 185px; height: 130px; object-fit: contain; object-position: left center; }
.footer-brand p { max-width: 300px; color: #687486; font-size: 10px; }
.footer-grid h3 { margin: 15px 0 18px; color: var(--white); font-size: 10px; text-transform: uppercase; letter-spacing: .13em; }
.footer-grid > div:not(.footer-brand) a, .footer-grid > div:not(.footer-brand) p { display: block; margin: 0 0 8px; color: #758195; font-size: 10px; }
.footer-grid a:hover { color: var(--orange) !important; }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 14px 25px; margin-top: 55px; padding: 22px 0 72px; border-top: 1px solid rgba(255,255,255,.06); color: #4c5666; font-size: 8px; text-transform: uppercase; letter-spacing: .05em; }
.footer-bottom p { margin: 0; }
.site-signature { width: 100%; color: #748197; text-transform: none; font-size: 9px; letter-spacing: .02em; }
.site-signature strong { color: #c7d0dc; }
.site-signature:hover strong { color: var(--orange); }

.quick-contact-bar { position: fixed; z-index: 990; left: 50%; bottom: 16px; width: min(430px, calc(100% - 24px)); display: grid; grid-template-columns: .78fr 1.35fr; overflow: hidden; border: 1px solid rgba(255,255,255,.17); border-radius: 14px; background: #08111d; box-shadow: 0 18px 55px rgba(0,0,0,.48); transform: translateX(-50%); }
.quick-contact-bar a { display: flex; align-items: center; justify-content: center; gap: 9px; min-height: 56px; color: white; font-size: 11px; font-weight: 900; text-transform: uppercase; letter-spacing: .035em; transition: filter .2s, background .2s; }
.quick-call { background: #101b2a; border-right: 1px solid rgba(255,255,255,.13); }
.quick-call span { color: var(--blue-light); font-size: 18px; }
.quick-call:hover { background: #16253a; }
.quick-whatsapp { background: var(--green); color: #031109 !important; }
.quick-whatsapp:hover { filter: brightness(1.08); }
.quick-contact-bar svg, .lead-popup svg { width: 23px; height: 23px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }

.lead-popup { position: fixed; z-index: 1100; right: 22px; bottom: 92px; width: min(390px, calc(100% - 28px)); padding: 28px 28px 24px; border: 1px solid rgba(62,163,255,.3); border-radius: 20px; color: white; background: linear-gradient(145deg, rgba(14,25,40,.98), rgba(5,9,15,.98)); box-shadow: 0 28px 85px rgba(0,0,0,.6), 0 0 45px rgba(8,124,255,.11); opacity: 0; pointer-events: none; transform: translateY(24px) scale(.97); transition: opacity .35s ease, transform .35s ease; }
.lead-popup.is-visible { opacity: 1; pointer-events: auto; transform: translateY(0) scale(1); }
.lead-popup::before { content: ""; position: absolute; top: 0; left: 22px; right: 22px; height: 2px; background: linear-gradient(90deg, transparent, var(--blue), var(--orange), transparent); }
.lead-popup-close { position: absolute; top: 12px; right: 13px; width: 35px; height: 35px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; background: rgba(255,255,255,.035); cursor: pointer; font-size: 21px; }
.lead-popup-icon { display: grid; place-items: center; width: 49px; height: 49px; margin-bottom: 18px; color: #041109; background: var(--green); border-radius: 50%; box-shadow: 0 10px 26px rgba(37,211,102,.23); }
.lead-popup-kicker { color: var(--orange); font-size: 9px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.lead-popup h2 { margin: 7px 35px 8px 0; font: 700 31px/1 var(--font-title); text-transform: uppercase; }
.lead-popup p { margin: 0 0 18px; color: #9ca8b8; font-size: 11px; }
.lead-popup > a { display: flex; align-items: center; justify-content: center; gap: 9px; min-height: 51px; border-radius: 8px; color: #031109; background: var(--green); font-size: 11px; font-weight: 900; text-transform: uppercase; }
.lead-popup > small { display: block; margin-top: 11px; color: #667487; font-size: 8px; text-align: center; }

.lightbox { position: fixed; z-index: 2000; inset: 0; display: none; place-items: center; padding: 35px; background: rgba(1,3,5,.94); }
.lightbox.open { display: grid; }
.lightbox img { max-width: min(1050px, 95vw); max-height: 88vh; object-fit: contain; box-shadow: 0 30px 90px #000; }
.lightbox button { position: absolute; top: 20px; right: 25px; width: 45px; height: 45px; border: 1px solid var(--line); background: #0d131c; cursor: pointer; border-radius: 50%; font-size: 27px; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .75s ease, transform .75s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: .1s; }
.delay-2 { transition-delay: .2s; }
.delay-3 { transition-delay: .3s; }

@media (max-width: 1080px) {
  .main-nav { gap: 17px; }
  .main-nav > a:not(.nav-cta) { display: none; }
  .hero-grid { gap: 35px; }
  .hero h1 { font-size: clamp(53px, 7vw, 76px); }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .wallbox-grid { gap: 50px; }
  .wallbox-steps { grid-template-columns: 1fr; }
  .wallbox-steps > div { min-height: 0; }
  .wallbox-steps strong { margin-top: 12px; }
  .technical-gallery { grid-template-columns: repeat(3, 1fr); }
  .business-grid, .about-grid { gap: 50px; }
  .about-photo { height: 570px; }
}

@media (max-width: 820px) {
  :root { --container: min(100% - 30px, 680px); }
  .site-header, .site-header.scrolled { height: 70px; }
  .brand { min-width: 0; }
  .brand img { width: 68px; height: 56px; }
  .brand-copy { display: none; }
  .menu-toggle { display: block; }
  .main-nav { position: fixed; top: 70px; right: 15px; left: 15px; display: none; align-items: stretch; flex-direction: column; gap: 0; padding: 12px; background: rgba(8,12,18,.98); border: 1px solid var(--line); box-shadow: 0 24px 60px rgba(0,0,0,.5); }
  .main-nav.open { display: flex; }
  .main-nav > a:not(.nav-cta) { display: block; padding: 13px 8px; border-bottom: 1px solid var(--line); }
  .nav-cta { margin-top: 10px; text-align: center; }
  .menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .hero { min-height: auto; padding: 120px 0 80px; }
  .hero-grid, .wallbox-grid, .business-grid, .about-grid, .faq-grid { grid-template-columns: 1fr; }
  .hero-visual { min-height: 530px; max-width: 570px; width: 100%; margin: 10px auto 0; }
  .scroll-cue { display: none; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .trust-grid > div:first-child { border-left: 0; }
  .trust-grid > div:nth-child(2n) { border-right: 0; }
  .trust-grid > div:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .section { padding: 90px 0; }
  .section-heading { align-items: flex-start; flex-direction: column; gap: 18px; }
  .business-grid { gap: 55px; }
  .wallbox-visual { min-height: 540px; max-width: 560px; width: 100%; margin-inline: auto; }
  .about-grid { gap: 65px; }
  .about-visual { max-width: 520px; margin-inline: auto; }
  .before-after-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .google-card { grid-template-columns: 72px 1fr; }
  .google-mark { width: 62px; height: 62px; font-size: 29px; box-shadow: inset 0 0 0 14px #0b111a, 0 0 30px rgba(66,133,244,.2); }
  .button-google { grid-column: 1 / -1; width: 100%; }
  .faq-grid { gap: 35px; }
  .contact-links { grid-template-columns: 1fr 1fr; border-left: 0; }
  .contact-links > * { border-left: 1px solid var(--line); }
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; }
  .footer-grid > div:last-child { grid-column: 2; }
}

@media (max-width: 560px) {
  :root { --container: calc(100% - 24px); }
  body { font-size: 15px; }
  .hero { padding-top: 105px; }
  .hero h1 { font-size: clamp(48px, 15vw, 67px); }
  .hero-copy > p { font-size: 14px; }
  .hero-actions { display: grid; }
  .button { width: 100%; }
  .hero-proof { gap: 12px; justify-content: space-between; }
  .hero-proof span { font-size: 8px; }
  .hero-visual { min-height: 430px; }
  .hero-image-wrap { inset: 7% 0 7% 7%; border-radius: 3px 50px 3px 3px; }
  .visual-card-top { right: 0; }
  .visual-card-bottom { left: 0; }
  .electric-orbit { display: none; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-grid > div { min-height: 80px; border-right: 0; border-bottom: 1px solid var(--line); }
  .trust-grid > div:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .services-grid, .credentials, .process-grid { grid-template-columns: 1fr; }
  .wallbox-steps, .technical-gallery, .gallery-heading { grid-template-columns: 1fr; }
  .wallbox-visual { min-height: 475px; }
  .wallbox-device { width: 205px; height: 290px; }
  .wallbox-device strong { font-size: 79px; }
  .gallery-heading { gap: 12px; margin-top: 60px; }
  .gallery-card { min-height: 390px; }
  .service-card { min-height: 290px; }
  .business-panel { padding: 26px 21px; }
  .about-visual { padding-right: 20px; }
  .about-photo { height: 450px; }
  .about-photo::after { right: 20px; }
  .about-stamp { width: 125px; height: 125px; bottom: 35px; }
  .work-images { height: 300px; }
  .instagram-cta { align-items: flex-start; flex-direction: column; }
  .process-step { min-height: 230px; }
  .process-step h3 { margin-top: 45px; }
  .contact { padding: 90px 0; }
  .contact h2 { font-size: 45px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 35px 24px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-grid > div:last-child { grid-column: auto; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
  .google-profile { padding-bottom: 75px; }
  .google-card { grid-template-columns: 1fr; padding: 28px 23px; }
  .google-mark { width: 58px; height: 58px; }
  .quick-contact-bar { right: 10px; bottom: 10px; left: 10px; width: auto; transform: none; }
  .quick-contact-bar a { min-height: 54px; font-size: 10px; }
  .lead-popup { right: 12px; bottom: 78px; width: calc(100% - 24px); padding: 24px 22px 21px; }
  .lead-popup h2 { font-size: 28px; }
  .contact-links { grid-template-columns: 1fr; }
}

@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 { opacity: 1; transform: none; }
}
