:root {
  --ink: #101820;
  --navy: #092b49;
  --blue: #075daa;
  --cyan: #27a8df;
  --paper: #f4f6f7;
  --line: #dbe2e6;
  --white: #ffffff;
  --muted: #63707b;
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--white); color: var(--ink); font-family: Arial, Helvetica, sans-serif; }
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; }
button, input, select, textarea { font: inherit; }
.wrap { width: min(1180px, calc(100% - 48px)); margin-inline: auto; }

.site-header { height: 82px; padding: 0 max(24px, calc((100vw - 1180px) / 2)); display: flex; align-items: center; justify-content: space-between; gap: 28px; position: sticky; top: 0; z-index: 30; background: rgba(255,255,255,.96); border-bottom: 1px solid rgba(11,42,66,.1); backdrop-filter: blur(14px); }
.brand { display: flex; align-items: center; gap: 14px; min-width: 350px; }
.brand > img { display: block; width: 92px; height: 58px; object-fit: contain; }
.brand-copy strong, .brand-copy small { display: block; }
.brand-copy strong { color: #0a3d6d; font-size: 11px; text-transform: uppercase; letter-spacing: .085em; white-space: nowrap; }
.brand-copy small { margin-top: 5px; color: var(--muted); font-size: 10px; letter-spacing: .05em; }
.desktop-nav { display: flex; gap: 28px; font-size: 14px; font-weight: 650; }
.desktop-nav a { position: relative; padding: 8px 0; }
.desktop-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 0; height: 2px; background: var(--cyan); transition: .2s; }
.desktop-nav a:hover::after { right: 0; }
.header-phone { text-align: right; }
.header-phone span, .header-phone small { display: block; }
.header-phone span { color: var(--navy); font-weight: 800; font-size: 17px; }
.header-phone small { color: var(--muted); font-size: 11px; margin-top: 2px; }
.mobile-header-actions, .mobile-menu-layer { display: none; }
.mobile-header-actions { margin-left: auto; align-items: center; gap: 8px; }
.mobile-call-button, .mobile-menu-button { min-height: 48px; border: 1px solid #cbd7de; border-radius: 8px; background: white; color: var(--navy); display: inline-flex; align-items: center; justify-content: center; gap: 7px; padding: 0 12px; cursor: pointer; }
.mobile-call-button > span { color: var(--blue); font-size: 19px; line-height: 1; }
.mobile-call-button small, .mobile-menu-button small { font-size: 11px; font-weight: 850; }
.mobile-menu-button { background: var(--navy); border-color: var(--navy); color: white; }
.menu-icon { width: 19px; display: grid; gap: 4px; }
.menu-icon i { display: block; width: 100%; height: 2px; background: currentColor; border-radius: 2px; transition: transform .2s, opacity .2s; }
.mobile-menu-button.is-open .menu-icon i:first-child { transform: translateY(6px) rotate(45deg); }
.mobile-menu-button.is-open .menu-icon i:nth-child(2) { opacity: 0; }
.mobile-menu-button.is-open .menu-icon i:last-child { transform: translateY(-6px) rotate(-45deg); }
.mobile-menu-layer { position: fixed; inset: 82px 0 0; z-index: 40; background: rgba(4,18,29,.58); backdrop-filter: blur(5px); justify-content: flex-end; }
.mobile-menu-panel { width: min(420px, 100%); height: calc(100dvh - 82px); overflow-y: auto; padding: 25px 22px 28px; background: white; box-shadow: -20px 20px 60px rgba(4,18,29,.24); }
.mobile-menu-heading { display: flex; align-items: center; justify-content: space-between; padding-bottom: 18px; border-bottom: 1px solid var(--line); }
.mobile-menu-heading small, .mobile-menu-heading strong { display: block; }
.mobile-menu-heading small { color: var(--blue); font-size: 10px; font-weight: 850; text-transform: uppercase; letter-spacing: .14em; }
.mobile-menu-heading strong { margin-top: 5px; color: var(--navy); font-size: 22px; }
.mobile-menu-heading button { width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 50%; background: var(--paper); color: var(--navy); font-size: 30px; line-height: 1; cursor: pointer; }
.mobile-menu-links { display: grid; }
.mobile-menu-links a { min-height: 58px; display: flex; align-items: center; gap: 16px; border-bottom: 1px solid var(--line); color: var(--navy); font-size: 18px; font-weight: 800; }
.mobile-menu-links a span { width: 24px; color: var(--cyan); font-size: 10px; letter-spacing: .08em; }
.mobile-menu-contacts { margin-top: 22px; padding: 20px; border-radius: 9px; background: #eaf6fb; }
.mobile-menu-contacts p { margin: 0 0 13px; color: var(--muted); font-size: 12px; font-weight: 750; }
.mobile-menu-contacts a { min-height: 48px; display: flex; align-items: center; justify-content: center; border-radius: 6px; font-size: 13px; font-weight: 850; text-align: center; }
.mobile-contact-primary { background: var(--navy); color: white; }
.mobile-contact-whatsapp { margin-top: 9px; background: #128c4b; color: white; }

.hero { min-height: 680px; position: relative; color: white; background-color: #0b2c47; background-image: linear-gradient(120deg,#061928,#164e76); background-size: cover; background-position: center; display: flex; align-items: stretch; }
.hero-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(4,18,29,.94) 0%, rgba(5,29,47,.84) 42%, rgba(6,31,50,.30) 72%, rgba(6,31,50,.08) 100%), linear-gradient(0deg, rgba(4,18,29,.42), transparent 45%); }
.hero-content { position: relative; z-index: 1; padding: 104px 0 50px; display: flex; flex-direction: column; align-items: flex-start; }
.kicker { margin: 0 0 24px; font-size: 12px; letter-spacing: .19em; text-transform: uppercase; font-weight: 800; display: flex; align-items: center; gap: 10px; color: #bce9fb; }
.kicker span { width: 30px; height: 2px; background: var(--cyan); }
h1 { max-width: 790px; margin: 0; font-size: clamp(46px, 5.8vw, 76px); line-height: .99; letter-spacing: -.045em; font-weight: 850; }
h1 em { display: block; color: #7fd6f8; font-style: normal; }
.hero-lead { max-width: 635px; margin: 28px 0 32px; color: #e6edf1; font-size: 19px; line-height: 1.55; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.button { min-height: 52px; padding: 0 24px; border: 0; border-radius: 7px; display: inline-flex; align-items: center; justify-content: center; font-weight: 800; cursor: pointer; transition: transform .2s, background .2s; }
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--cyan); color: #06233a; }
.button-primary:hover { background: #55c4ef; }
.button-ghost { color: white; border: 1px solid rgba(255,255,255,.38); background: rgba(255,255,255,.07); }
.hero-facts { width: 100%; margin-top: auto; padding-top: 72px; display: grid; grid-template-columns: repeat(3, 1fr); max-width: 830px; gap: 24px; }
.hero-facts span { padding-top: 15px; border-top: 1px solid rgba(255,255,255,.3); font-size: 13px; color: #e6edf1; }
.hero-facts b { color: #78d5f8; margin-right: 8px; }
.hero-photo-note { position: absolute; right: 0; bottom: 27px; margin: 0; padding: 9px 12px; background: rgba(4,18,29,.72); color: #dce9ef; font-size: 10px; letter-spacing: .05em; border-left: 2px solid var(--cyan); }

.trust-strip { background: var(--navy); color: white; }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-grid p { margin: 0; padding: 28px 24px; border-right: 1px solid rgba(255,255,255,.12); }
.trust-grid p:first-child { padding-left: 0; }
.trust-grid strong, .trust-grid span { display: block; }
.trust-grid strong { font-size: 15px; color: #8bdaf7; }
.trust-grid span { margin-top: 6px; color: #c4d1d9; font-size: 12px; }

.heritage { background: white; }
.heritage-grid { display: grid; grid-template-columns: .42fr 1.58fr; gap: 90px; align-items: center; }
.heritage-year { min-height: 330px; padding: 34px; display: flex; flex-direction: column; justify-content: flex-end; background: linear-gradient(145deg,#082d4a,#075daa); color: white; box-shadow: 0 25px 60px rgba(8,45,74,.17); }
.heritage-year span { margin-bottom: auto; color: #8bdaf7; text-transform: uppercase; letter-spacing: .16em; font-size: 11px; font-weight: 850; }
.heritage-year strong { font-size: clamp(72px,9vw,116px); line-height: .9; letter-spacing: -.07em; }
.heritage-year small { margin-top: 16px; color: #cae0eb; }
.heritage-copy h2 { max-width: 830px; }
.heritage-copy > p:not(.section-label) { max-width: 850px; margin: 24px 0 0; color: var(--muted); font-size: 16px; line-height: 1.75; }

.section { padding: 104px 0; }
.section-label { margin: 0 0 18px; color: var(--blue); font-size: 12px; font-weight: 850; letter-spacing: .16em; text-transform: uppercase; }
.section-label.light { color: #85d9fa; }
h2 { margin: 0; color: var(--navy); font-size: clamp(36px, 4vw, 54px); line-height: 1.06; letter-spacing: -.035em; }
.section-head { display: grid; grid-template-columns: 1.35fr .65fr; gap: 90px; align-items: end; margin-bottom: 44px; }
.section-head > p, .solution-copy > p, .calc-intro > p, .contact-grid > div > p { margin: 0; color: var(--muted); font-size: 17px; line-height: 1.7; }
.stock { background: linear-gradient(180deg, #f4f8fa 0%, #ffffff 100%); }
.stock-lead { display: grid; grid-template-columns: 1.15fr .85fr; gap: 90px; align-items: end; }
.stock-lead > p { margin: 0; color: var(--muted); font-size: 17px; line-height: 1.7; }
.stock-grid { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 48px; border: 1px solid var(--line); }
.stock-card { min-height: 246px; padding: 30px 25px; background: white; border-right: 1px solid var(--line); }
.stock-card:last-child { border-right: 0; }
.stock-card > span { display: block; margin-bottom: 38px; color: var(--cyan); font-size: 12px; font-weight: 850; }
.stock-card > strong { display: block; color: var(--navy); font-size: 21px; }
.stock-card > p { margin: 13px 0 0; color: var(--muted); font-size: 13px; line-height: 1.65; }
.stock-card-accent { background: var(--navy); }
.stock-card-accent > strong { color: white; }
.stock-card-accent > p { color: #c5d3dc; }
.compare-offer { display: grid; grid-template-columns: 1.4fr .6fr; gap: 70px; margin-top: 22px; padding: 48px; background: linear-gradient(120deg, #075b9e, #0a2f4d); color: white; }
.compare-offer h3 { max-width: 730px; margin: 0; font-size: clamp(30px, 3.3vw, 44px); line-height: 1.08; letter-spacing: -.03em; }
.compare-offer > div:first-child > p:last-child { max-width: 760px; margin: 20px 0 0; color: #d7e7f0; font-size: 15px; line-height: 1.7; }
.compare-proof { padding-left: 30px; border-left: 1px solid rgba(255,255,255,.25); align-self: stretch; }
.compare-proof strong { font-size: 18px; }
.compare-proof p { margin: 12px 0 24px; color: #cfdee7; font-size: 13px; line-height: 1.6; }
.compare-proof .button { width: 100%; }
.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.product-card { border: 1px solid var(--line); background: white; overflow: hidden; transition: transform .25s, box-shadow .25s; }
.product-card:hover { transform: translateY(-5px); box-shadow: 0 18px 45px rgba(18,45,64,.11); }
.product-image { height: 220px; background-size: cover; background-position: center; position: relative; background-color: #173c58; }
.product-image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg,rgba(4,22,35,.48),transparent 60%); }
.product-image span { position: absolute; z-index: 1; right: 18px; bottom: 16px; color: white; font-size: 12px; font-weight: 800; }
.product-body { padding: 27px; }
.product-body small { color: var(--blue); text-transform: uppercase; letter-spacing: .13em; font-weight: 800; font-size: 10px; }
.product-body h3 { margin: 9px 0 13px; font-size: 25px; color: var(--navy); }
.product-body p { min-height: 84px; margin: 0 0 24px; color: var(--muted); font-size: 14px; line-height: 1.65; }
.product-body a { font-size: 13px; font-weight: 800; color: var(--blue); }
.product-body a b { margin-left: 8px; }

.solution { background: #082d4a; color: white; overflow: hidden; }
.solution-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 70px; align-items: center; }
.solution h2, .contact h2 { color: white; }
.solution-copy > p { color: #c4d2db; margin-top: 24px; }
.solution-copy ul { list-style: none; padding: 0; margin: 32px 0 0; display: grid; gap: 12px; }
.solution-copy li { padding: 13px 0 13px 28px; border-bottom: 1px solid rgba(255,255,255,.13); position: relative; }
.solution-copy li::before { content: ""; position: absolute; left: 0; top: 20px; width: 9px; height: 9px; border: 2px solid #65cff6; border-radius: 50%; }
.solution-visual { min-height: 470px; position: relative; perspective: 900px; }
.solution-visual::before { content: ""; position: absolute; inset: 8% 2% -30%; background: radial-gradient(ellipse, rgba(60,186,232,.19), transparent 63%); }
.wall { position: absolute; background: linear-gradient(135deg,#1478b8,#0b4d7c); border: 1px solid rgba(255,255,255,.21); box-shadow: inset 0 0 0 8px rgba(255,255,255,.03), 0 24px 60px rgba(0,0,0,.25); overflow: hidden; }
.wall::after { content: ""; position: absolute; inset: 0; background: repeating-linear-gradient(90deg,transparent 0 24%,rgba(255,255,255,.11) 24.3% 24.8%,transparent 25% 49%); }
.wall span { position: absolute; z-index: 2; bottom: 24px; left: 28px; text-transform: uppercase; letter-spacing: .15em; font-size: 10px; color: #b9e9fb; }
.wall-a { width: 72%; height: 58%; right: 2%; top: 10%; transform: rotateY(-10deg); }
.wall-b { width: 42%; height: 42%; left: 2%; top: 29%; background: linear-gradient(135deg,#202c35,#111820); transform: rotateY(10deg); }
.column { position: absolute; width: 74px; height: 280px; left: 42%; top: 8%; border-radius: 36px 36px 10px 10px; background: linear-gradient(90deg,#092c48,#1484c8,#092c48); box-shadow: 0 15px 35px rgba(0,0,0,.3); z-index: 4; }
.column i { position: absolute; inset: 10px; border: 1px solid rgba(255,255,255,.25); border-radius: inherit; }
.floor-ring { position: absolute; left: 4%; right: 0; bottom: 1%; height: 42%; border-radius: 50%; background: radial-gradient(circle,transparent 0 23%,#20a8dd 24% 27%,#154a6b 28% 54%,#09283f 55%); transform: rotateX(67deg); box-shadow: 0 0 55px rgba(31,176,230,.18); }
.solution-visual > p { position: absolute; right: 5%; bottom: 1%; color: #b6cbd7; font-size: 11px; letter-spacing: .14em; text-transform: uppercase; }
.solution-product-image { position: absolute; inset: 0; width: 100%; height: calc(100% - 32px); object-fit: contain; object-position: center; filter: drop-shadow(0 28px 42px rgba(0,0,0,.28)); }

.real-project { background: white; }
.project-head { display: grid; grid-template-columns: 1fr .75fr; gap: 95px; align-items: end; margin-bottom: 42px; }
.project-summary { border-left: 3px solid var(--cyan); padding: 4px 0 4px 22px; }
.project-summary strong { color: var(--blue); font-size: 12px; text-transform: uppercase; letter-spacing: .13em; }
.project-summary p { margin: 9px 0 0; color: var(--muted); font-size: 15px; line-height: 1.65; }
.project-gallery { display: grid; grid-template-columns: 1.28fr .72fr .72fr; grid-template-rows: 270px 270px; gap: 14px; }
.project-gallery figure { margin: 0; overflow: hidden; position: relative; background: #dbe4e9; }
.project-gallery .project-wide { grid-row: span 2; }
.project-gallery figure:nth-child(2) { grid-column: span 2; }
.project-gallery img { display: block; width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.project-gallery figure:hover img { transform: scale(1.025); }
.project-gallery figcaption { position: absolute; left: 12px; bottom: 12px; margin: 0; padding: 8px 10px; background: rgba(5,27,43,.8); color: white; font-size: 10px; letter-spacing: .04em; }

.orgs { background: var(--paper); }
.org-grid { display: grid; grid-template-columns: .7fr 1.3fr; gap: 90px; }
.org-list { border-top: 1px solid #cbd5da; }
.org-list article { display: grid; grid-template-columns: 55px 1fr; gap: 20px; padding: 27px 0; border-bottom: 1px solid #cbd5da; }
.org-list article > span { color: var(--cyan); font-weight: 800; font-size: 13px; }
.org-list h3 { margin: 0 0 8px; color: var(--navy); font-size: 20px; }
.org-list p { margin: 0; color: var(--muted); line-height: 1.6; font-size: 14px; }
.text-link { display: inline-block; margin-top: 10px; color: var(--blue); font-size: 13px; font-weight: 800; }

.section-head.compact { margin-bottom: 50px; }
.steps { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(4,1fr); border-top: 1px solid var(--line); }
.steps li { padding: 32px 24px 0 0; position: relative; }
.steps li::before { content: ""; position: absolute; top: -5px; left: 0; width: 10px; height: 10px; background: var(--cyan); border-radius: 50%; box-shadow: 0 0 0 7px white; }
.steps span { color: var(--blue); font-size: 12px; font-weight: 850; }
.steps h3 { margin: 14px 0 10px; color: var(--navy); font-size: 21px; }
.steps p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.6; max-width: 230px; }

.calculator { background: #0b2335; color: white; }
.calc-grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: 80px; align-items: start; }
.calc-intro h2 { color: white; }
.calc-intro > p { margin-top: 24px; color: #b8c9d4; }
.calc-phone { margin-top: 44px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.17); }
.calc-phone small, .calc-phone a { display: block; }
.calc-phone small { color: #9cb3c1; margin-bottom: 6px; }
.calc-phone a { font-size: 28px; font-weight: 850; color: #80d7f8; }
.calc-form { background: white; color: var(--ink); padding: 38px; border-radius: 8px; }
.calc-form > label, .field-row label, .select-small { display: grid; gap: 9px; font-size: 12px; font-weight: 800; color: var(--navy); }
select, input, textarea { width: 100%; border: 1px solid #cad5db; background: #f8fafb; padding: 13px 14px; color: var(--ink); outline: 0; border-radius: 4px; }
select:focus, input:focus, textarea:focus { border-color: var(--cyan); box-shadow: 0 0 0 3px rgba(39,168,223,.12); }
.field-row { display: grid; grid-template-columns: 1fr 1fr .8fr; gap: 12px; margin-top: 18px; }
.area-box { padding: 12px 14px; background: #e9f5fa; border-radius: 4px; align-self: end; min-height: 47px; }
.area-box span, .area-box strong { display: block; }
.area-box span { color: #5f7380; font-size: 10px; }
.area-box strong { color: var(--blue); margin-top: 3px; }
.choice-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; align-items: end; margin: 18px 0; }
.check { display: flex !important; align-items: center; gap: 10px !important; min-height: 48px; cursor: pointer; }
.check input { position: absolute; opacity: 0; width: 1px; }
.check span { width: 22px; height: 22px; border: 2px solid #91a4af; border-radius: 3px; position: relative; flex: 0 0 auto; }
.check input:checked + span { border-color: var(--blue); background: var(--blue); }
.check input:checked + span::after { content: "✓"; position: absolute; color: white; inset: -2px 0 0 3px; font-size: 16px; }
.calc-form textarea { resize: vertical; }
.diva-honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.form-consent { display: flex; align-items: flex-start; gap: 9px; margin-top: 18px; color: #536872; font-size: 12px; line-height: 1.5; }
.form-consent input { width: 18px; height: 18px; flex: 0 0 auto; }
.form-consent a { color: var(--blue); text-decoration: underline; }
.form-note { margin: 12px 0 0; color: #63707b; font-size: 11px; line-height: 1.5; }
.submit { width: 100%; margin-top: 20px; }
.request-result { margin-top: 20px; padding: 20px; background: #eaf7fc; border-left: 4px solid var(--cyan); }
.request-result > p { color: #526670; font-size: 13px; line-height: 1.6; }
.request-result > div { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }
.request-result button { border: 0; background: var(--navy); color: white; padding: 10px 14px; border-radius: 4px; cursor: pointer; }
.request-result a { color: var(--blue); font-weight: 800; font-size: 13px; }
.request-result .whatsapp-send { padding: 10px 14px; border-radius: 4px; background: #128c4b; color: white; }

.faq-grid { display: grid; grid-template-columns: .65fr 1.35fr; gap: 90px; }
.faq-list { border-top: 1px solid var(--line); }
details { border-bottom: 1px solid var(--line); }
summary { list-style: none; padding: 24px 0; cursor: pointer; font-size: 18px; font-weight: 800; color: var(--navy); display: flex; justify-content: space-between; gap: 24px; }
summary::-webkit-details-marker { display: none; }
summary span { font-size: 24px; color: var(--blue); transition: transform .2s; }
details[open] summary span { transform: rotate(45deg); }
details > p { margin: -8px 45px 24px 0; color: var(--muted); line-height: 1.7; font-size: 14px; }

.contact { padding: 96px 0; background: linear-gradient(120deg,#083657,#0a2133); color: white; }
.contact-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 95px; align-items: center; }
.contact-grid > div > p { color: #bbccd6; max-width: 650px; margin-top: 22px; }
.contact-card { padding: 34px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.18); border-radius: 8px; }
.contact-card small { display: block; color: #92b7c9; margin: 0 0 8px; font-size: 11px; text-transform: uppercase; letter-spacing: .12em; }
.contact-card > a:not(.button) { display: block; font-size: 27px; font-weight: 850; margin-bottom: 5px; }
.contact-card p { margin: 0 0 26px; font-size: 18px; }
.contact-card small:nth-of-type(2) { margin-top: 25px; }
.contact-card .button { width: 100%; margin-top: 6px; }
footer { background: #071621; color: #9db0bc; padding: 28px 0; }
.footer-grid { display: grid; grid-template-columns: 1fr 1.4fr auto; gap: 35px; align-items: center; font-size: 11px; }
.footer-grid p { margin: 0; }
.footer-grid b, .footer-grid span { display: block; }
.footer-grid b { color: white; margin-bottom: 4px; }
.footer-grid a { color: #80d7f8; }
.footer-brand { display: flex; align-items: center; gap: 12px; }
.footer-brand > img { width: 58px; height: 40px; padding: 3px 6px; background: white; object-fit: contain; border-radius: 3px; }
.footer-brand > span { line-height: 1.45; }

.service-hero { padding: 74px 0; background: linear-gradient(120deg,#071d2c,#0b456c); color: white; }
.service-hero-grid { display: grid; grid-template-columns: 1fr .8fr; gap: 70px; align-items: center; }
.service-hero h1 { font-size: clamp(42px,5vw,68px); }
.service-hero figure { margin: 0; min-height: 490px; position: relative; overflow: hidden; border: 1px solid rgba(255,255,255,.19); box-shadow: 0 30px 70px rgba(0,0,0,.28); }
.service-hero figure::after { content: ""; position: absolute; inset: 0; box-shadow: inset 0 0 0 9px rgba(255,255,255,.05); pointer-events: none; }
.service-hero figure img { display: block; width: 100%; height: 490px; object-fit: cover; }
.service-hero figcaption { position: absolute; left: 14px; bottom: 14px; padding: 9px 11px; background: rgba(5,26,41,.84); font-size: 10px; letter-spacing: .04em; }
.service-intro-grid { display: grid; grid-template-columns: 1fr .9fr; gap: 90px; align-items: start; }
.service-intro-grid > div:first-child > p:last-child { margin: 26px 0 0; color: var(--muted); font-size: 17px; line-height: 1.75; }
.service-intro-grid > ul { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.service-intro-grid > ul li { padding: 19px 14px 19px 38px; border-bottom: 1px solid var(--line); color: var(--navy); font-weight: 750; position: relative; }
.service-intro-grid > ul li::before { content: "✓"; position: absolute; left: 8px; color: var(--blue); font-weight: 900; }
.service-options { background: var(--paper); }
.option-grid { display: grid; grid-template-columns: repeat(4,1fr); border: 1px solid var(--line); }
.option-grid article { padding: 30px 26px; min-height: 230px; background: white; border-right: 1px solid var(--line); }
.option-grid article:last-child { border-right: 0; }
.option-grid span { color: var(--cyan); font-size: 12px; font-weight: 850; }
.option-grid h3 { margin: 38px 0 12px; color: var(--navy); font-size: 21px; }
.option-grid p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.65; }
.service-solutions { background: #eef4f6; }
.service-solution-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.service-solution-grid article { min-height: 255px; padding: 30px 28px; background: white; border: 1px solid var(--line); }
.service-solution-grid span { color: var(--cyan); font-size: 12px; font-weight: 850; }
.service-solution-grid h3 { margin: 44px 0 13px; color: var(--navy); font-size: 22px; line-height: 1.16; }
.service-solution-grid p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.68; }
.service-gallery { background: white; }
.service-gallery-grid { display: grid; grid-template-columns: 1.18fr .82fr; grid-template-rows: 310px 310px; gap: 14px; }
.service-gallery-grid figure { position: relative; margin: 0; overflow: hidden; background: #dce6ea; }
.service-gallery-grid figure.featured { grid-row: span 2; }
.service-gallery-grid img { display: block; width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.service-gallery-grid figure:hover img { transform: scale(1.02); }
.service-gallery-grid figcaption { position: absolute; left: 14px; bottom: 14px; padding: 9px 12px; background: rgba(5,28,44,.86); color: white; font-size: 11px; letter-spacing: .03em; }
.audiences { padding-top: 78px; padding-bottom: 78px; }
.tag-list { display: flex; flex-wrap: wrap; gap: 10px; }
.tag-list span { padding: 13px 16px; border: 1px solid #c9d5db; background: #f7fafb; color: var(--navy); font-size: 13px; font-weight: 750; }
.faq-note { margin: 24px 0 0; color: var(--muted); line-height: 1.65; max-width: 360px; }
.faq-hero { padding: 92px 0; background: linear-gradient(120deg,#092b49,#075daa); color: white; }
.faq-hero h1 { max-width: 900px; }
.faq-hero > .wrap > p:last-child { max-width: 760px; margin: 26px 0 0; color: #d8e9f2; font-size: 18px; line-height: 1.65; }
.faq-catalog { display: grid; gap: 90px; }
.faq-catalog > section { display: grid; grid-template-columns: .58fr 1.42fr; gap: 80px; align-items: start; }
.faq-catalog h2 { font-size: clamp(30px,3vw,44px); }

.generic-page { min-height: 70vh; padding: 100px 0; background: linear-gradient(180deg,#f1f6f8,#fff 340px); }
.generic-page h1 { color: var(--navy); }
.legal-copy { max-width: 880px; }
.legal-copy > p { color: var(--muted); font-size: 16px; line-height: 1.75; }
.legal-copy h2 { margin-top: 44px; font-size: clamp(28px,3vw,38px); }
.legal-copy a { color: var(--blue); text-decoration: underline; }
.legal-note { margin-top: 40px; padding: 20px; border-left: 4px solid var(--cyan); background: #eaf6fb; color: var(--navy) !important; }
.narrow-card { max-width: 850px; padding: 50px; background: white; border: 1px solid var(--line); box-shadow: 0 24px 70px rgba(10,43,73,.11); }
.narrow-card > p:not(.section-label) { color: var(--muted); font-size: 18px; line-height: 1.7; }
body.admin-bar .site-header { top: 32px; }

@media (max-width: 980px) {
  .desktop-nav, .header-phone { display: none; }
  .mobile-header-actions, .mobile-menu-layer { display: flex; }
  .brand { min-width: 0; }
  .section-head, .solution-grid, .org-grid, .calc-grid, .faq-grid, .contact-grid, .project-head { gap: 45px; }
  .product-grid { grid-template-columns: 1fr 1fr; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .trust-grid p { border-bottom: 1px solid rgba(255,255,255,.12); }
  .stock-lead { gap: 45px; }
  .stock-grid { grid-template-columns: 1fr 1fr; }
  .stock-card { border-bottom: 1px solid var(--line); }
  .stock-card:nth-child(2) { border-right: 0; }
  .compare-offer { grid-template-columns: 1fr; gap: 34px; }
  .compare-proof { padding: 28px 0 0; border-left: 0; border-top: 1px solid rgba(255,255,255,.25); }
  .heritage-grid { gap: 45px; }
  .service-hero-grid, .service-intro-grid { gap: 45px; }
  .option-grid { grid-template-columns: 1fr 1fr; }
  .option-grid article { border-bottom: 1px solid var(--line); }
  .option-grid article:nth-child(2) { border-right: 0; }
  .service-solution-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .wrap { width: min(100% - 32px, 1180px); }
  .site-header { height: 70px; padding-inline: 16px; }
  .brand { min-width: 0; gap: 8px; }
  .brand > img { width: 70px; height: 46px; }
  .brand-copy { display: none; }
  .mobile-menu-layer { inset: 70px 0 0; }
  .mobile-menu-panel { height: calc(100dvh - 70px); }
  .mobile-call-button, .mobile-menu-button { min-height: 46px; padding-inline: 10px; }
  .hero { min-height: 680px; background-position: 63% center; }
  .hero-shade { background: linear-gradient(90deg,rgba(4,18,29,.95),rgba(5,29,47,.71)); }
  .hero-content { padding-top: 74px; }
  h1 { font-size: clamp(42px, 13vw, 62px); }
  .hero-lead { font-size: 16px; }
  .hero-actions, .hero-actions .button { width: 100%; }
  .hero-facts { grid-template-columns: 1fr; gap: 8px; padding-top: 45px; }
  .hero-facts span { padding-top: 8px; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .trust-grid p, .trust-grid p:first-child { padding: 20px 12px; }
  .section { padding: 74px 0; }
  .section-head, .solution-grid, .org-grid, .calc-grid, .faq-grid, .contact-grid, .project-head { grid-template-columns: 1fr; gap: 34px; }
  .stock-lead { grid-template-columns: 1fr; gap: 24px; }
  .heritage-grid { grid-template-columns: 1fr; gap: 34px; }
  .heritage-year { min-height: 250px; }
  .stock-lead > p { font-size: 15px; }
  .stock-grid { grid-template-columns: 1fr; margin-top: 32px; }
  .stock-card { min-height: 0; border-right: 0; padding: 26px 22px; }
  .stock-card > span { margin-bottom: 22px; }
  .compare-offer { margin-top: 14px; padding: 34px 24px; }
  .section-head { margin-bottom: 30px; }
  .section-head > p { font-size: 15px; }
  h2 { font-size: 38px; }
  .product-grid { grid-template-columns: 1fr; }
  .product-image { height: 230px; }
  .product-body p { min-height: 0; }
  .solution-visual { min-height: 350px; }
  .project-gallery { grid-template-columns: 1fr 1fr; grid-template-rows: 310px 210px 210px; }
  .project-gallery .project-wide { grid-column: span 2; grid-row: auto; }
  .project-gallery figure:nth-child(2) { grid-column: span 2; }
  .steps { grid-template-columns: 1fr 1fr; row-gap: 42px; }
  .calc-form { padding: 24px 18px; }
  .field-row { grid-template-columns: 1fr 1fr; }
  .area-box { grid-column: span 2; }
  .choice-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 14px; }
  .service-hero { padding: 52px 0; }
  .service-hero-grid, .service-intro-grid, .faq-catalog > section { grid-template-columns: 1fr; gap: 32px; }
  .service-hero figure { min-height: 320px; }
  .service-hero figure img { height: 320px; }
  .option-grid { grid-template-columns: 1fr; }
  .option-grid article { min-height: 0; border-right: 0; }
  .service-solution-grid { grid-template-columns: 1fr; }
  .service-solution-grid article { min-height: 0; }
  .service-solution-grid h3 { margin-top: 25px; }
  .service-gallery-grid { grid-template-columns: 1fr; grid-template-rows: 430px 280px 280px; }
  .service-gallery-grid figure.featured { grid-row: auto; }
  .faq-hero { padding: 68px 0; }
  .faq-catalog { gap: 64px; }
  .generic-page { padding: 70px 0; }
  .narrow-card { padding: 32px 22px; }
  body.admin-bar .site-header { top: 46px; }
}

@media (max-width: 380px) {
  .mobile-call-button { width: 46px; padding: 0; }
  .mobile-call-button small { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
}
