:root {
  --navy: #06264e;
  --navy-deep: #041b38;
  --blue: #0a4067;
  --teal: #20b7b9;
  --teal-dark: #0e696a;
  --green: #52b84b;
  --lime: #9bd431;
  --ice: #f5fafa;
  --mint: #e8f7f3;
  --surface: #fff;
  --text: #172235;
  --muted: #64748b;
  --border: #d7e7e5;
  --shadow: 0 22px 70px rgba(6, 38, 78, .10);
  --radius: 16px;
  --container: 1240px;
  --header-height: 84px;
}

[data-theme="dark"] {
  --ice: #071625;
  --mint: #0c2430;
  --surface: #0e2235;
  --text: #eaf7f6;
  --muted: #a5bac4;
  --border: #214050;
  --navy: #0b385c;
  --shadow: 0 22px 70px rgba(0, 0, 0, .25);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 110px; }
body { margin: 0; color: var(--text); background: var(--ice); font-family: Inter, Avenir, "Segoe UI", Arial, sans-serif; line-height: 1.6; -webkit-font-smoothing: antialiased; }
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 3px solid var(--teal); outline-offset: 4px; }
.container { width: min(var(--container), calc(100% - 48px)); margin-inline: auto; }
.skip-link { position: fixed; z-index: 9999; top: 12px; left: 12px; padding: 10px 16px; background: var(--surface); transform: translateY(-150%); border-radius: 8px; }
.skip-link:focus { transform: translateY(0); }

.topbar { color: #d7eeed; background: var(--navy-deep); font-size: 12px; letter-spacing: .02em; }
.topbar-inner { height: 34px; display: flex; align-items: center; justify-content: space-between; }
.topbar p { margin: 0; display: flex; align-items: center; gap: 8px; }
.status-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 0 4px rgba(155, 212, 49, .13); }
.topbar-links { display: flex; align-items: center; gap: 12px; }
.topbar a:hover { color: white; }

.site-header { position: sticky; z-index: 100; top: 0; background: color-mix(in srgb, var(--surface) 92%, transparent); border-bottom: 1px solid color-mix(in srgb, var(--border) 75%, transparent); backdrop-filter: blur(18px); }
.nav-wrap { min-height: var(--header-height); display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: flex; align-items: center; gap: 10px; color: var(--navy-deep); font-weight: 800; font-size: 23px; letter-spacing: -.03em; line-height: 1; }
[data-theme="dark"] .brand { color: white; }
.brand img { width: 48px; height: 48px; object-fit: cover; object-position: center top; border-radius: 50%; mix-blend-mode: multiply; }
[data-theme="dark"] .brand img { mix-blend-mode: normal; }
.brand-tm { margin-left: 2px; font-size: .36em; font-weight: 800; letter-spacing: 0; vertical-align: super; }
.brand small { display: block; margin-top: 7px; color: var(--muted); font-size: 8px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.desktop-nav { display: flex; gap: 30px; align-items: center; margin-left: auto; }
.desktop-nav a { position: relative; color: var(--text); font-size: 14px; font-weight: 650; }
.desktop-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -9px; height: 2px; background: var(--teal); transition: right .25s; }
.desktop-nav a:hover::after { right: 0; }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.icon-button { width: 42px; height: 42px; display: grid; place-items: center; padding: 0; color: var(--text); background: transparent; border: 1px solid var(--border); border-radius: 50%; cursor: pointer; }
.icon-button svg { width: 19px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; }
.moon-icon { display: none; }
[data-theme="dark"] .sun-icon { display: none; }
[data-theme="dark"] .moon-icon { display: block; }
.menu-toggle { display: none; }
.mobile-nav { position: fixed; inset: 84px 0 auto; padding: 28px 24px 36px; background: var(--surface); border-bottom: 1px solid var(--border); box-shadow: var(--shadow); }
.mobile-nav a { display: block; padding: 14px 0; font-size: 20px; font-weight: 700; border-bottom: 1px solid var(--border); }

.button { min-height: 50px; display: inline-flex; align-items: center; justify-content: center; gap: 20px; padding: 0 23px; border: 1px solid transparent; border-radius: 7px; background: var(--navy); color: white; font-size: 14px; font-weight: 750; letter-spacing: .01em; cursor: pointer; transition: transform .2s, background .2s, box-shadow .2s; }
.button:hover { transform: translateY(-2px); background: var(--navy-deep); box-shadow: 0 10px 25px rgba(6, 38, 78, .18); }
.button-small { min-height: 42px; padding-inline: 18px; }
.button-accent { background: var(--lime); color: var(--navy-deep); }
.button-accent:hover { background: #b4e858; }
.button-ghost { color: white; background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.35); backdrop-filter: blur(10px); }
.button-ghost:hover { background: rgba(255,255,255,.17); }

.hero { position: relative; min-height: calc(100svh - 118px); display: flex; align-items: center; overflow: hidden; background: var(--navy-deep); }
.hero-media, .hero-overlay { position: absolute; inset: 0; }
.hero-media { background: url("assets/gallery-facade-technology.png") center 42% / cover no-repeat; animation: hero-in 1.3s ease-out both; }
.hero-overlay { background: linear-gradient(90deg, rgba(2, 22, 45, .95) 0%, rgba(3, 30, 56, .79) 42%, rgba(3, 27, 47, .23) 74%, rgba(3, 20, 37, .12) 100%), linear-gradient(0deg, rgba(1, 16, 30, .62), transparent 45%); }
.hero::after { content: ""; position: absolute; inset: 0; opacity: .16; background-image: linear-gradient(rgba(255,255,255,.12) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.12) 1px, transparent 1px); background-size: 80px 80px; mask-image: linear-gradient(90deg, black, transparent 75%); }
.hero-content { position: relative; z-index: 2; padding-block: 90px 110px; color: white; }
.eyebrow { display: flex; align-items: center; gap: 10px; color: var(--teal-dark); font-size: 11px; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.eyebrow span { width: 27px; height: 2px; background: currentColor; }
.eyebrow.light { color: #98e5db; }
.hero h1, .section h2 { margin: 18px 0 22px; font-size: clamp(48px, 6.2vw, 88px); line-height: .98; letter-spacing: -.06em; }
.hero h1 { max-width: 830px; animation: rise .8s .15s both; }
.hero h1 em, .section h2 em { color: var(--teal); font-family: Georgia, "Times New Roman", serif; font-weight: 400; letter-spacing: -.04em; }
.hero-content > p { max-width: 610px; margin: 0 0 32px; color: #d4e1e7; font-size: clamp(17px, 1.5vw, 21px); line-height: 1.65; animation: rise .8s .3s both; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; animation: rise .8s .4s both; }
.hero-trust { display: grid; grid-template-columns: repeat(3, minmax(140px, 190px)); gap: 28px; margin-top: 62px; animation: rise .8s .55s both; }
.hero-trust div { padding-left: 14px; border-left: 2px solid rgba(32,183,185,.7); }
.hero-trust strong, .hero-trust span { display: block; }
.hero-trust strong { font-size: 13px; }
.hero-trust span { color: #b8cbd3; font-size: 10px; }
.scroll-cue { position: absolute; z-index: 3; right: 34px; bottom: 24px; display: flex; align-items: center; gap: 10px; color: #d8e8ec; font-size: 10px; letter-spacing: .12em; text-transform: uppercase; transform: rotate(90deg); transform-origin: right center; }
.scroll-cue span { width: 45px; height: 1px; background: currentColor; }

.trust-bar { color: var(--navy-deep); background: var(--lime); }
.trust-grid { min-height: 78px; display: grid; grid-template-columns: repeat(4, 1fr); align-items: center; }
.trust-grid p { margin: 0; padding: 4px 18px; font-size: 12px; font-weight: 800; border-right: 1px solid rgba(4,27,56,.2); text-align: center; text-transform: uppercase; letter-spacing: .05em; }
.trust-grid p:last-child { border: 0; }
.trust-grid span { margin-right: 9px; opacity: .5; }

.section { padding-block: 120px; }
.section h2, .content-section .section-head h2 { color: var(--navy-deep); font-size: clamp(42px, 5vw, 68px); }
[data-theme="dark"] .section:not(.technology-section):not(.areas-section):not(.quote-section) h2, [data-theme="dark"] .content-section .section-head h2 { color: white; }
.section-head { margin-bottom: 58px; }
.split-head { display: grid; grid-template-columns: 1.3fr .7fr; align-items: end; gap: 70px; }
.split-head h2 { margin-bottom: 0; }
.split-head > p { max-width: 480px; margin: 0 0 8px; color: var(--muted); font-size: 16px; }
.centered { max-width: 760px; margin-inline: auto; text-align: center; }
.centered .eyebrow { justify-content: center; }
.centered p { color: var(--muted); }

.services-section { background: var(--ice); }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.service-card { overflow: hidden; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); transition: transform .3s, box-shadow .3s; }
.service-card:hover { transform: translateY(-7px); box-shadow: var(--shadow); }
.service-card img { width: 100%; aspect-ratio: 1.52; object-fit: cover; }
.service-card:nth-child(3) img { object-position: center 39%; }
.service-card-body { position: relative; padding: 30px; }
.service-number { position: absolute; top: 30px; right: 30px; color: var(--teal-dark); font: italic 18px Georgia, serif; }
.service-card h3 { margin: 0 50px 14px 0; color: var(--navy-deep); font-size: 24px; letter-spacing: -.03em; }
[data-theme="dark"] .service-card h3 { color: white; }
.service-card p { color: var(--muted); font-size: 14px; }
.service-card ul { display: flex; flex-wrap: wrap; gap: 6px; padding: 0; margin: 20px 0 26px; list-style: none; }
.service-card li { padding: 6px 9px; color: var(--teal-dark); background: var(--mint); border-radius: 5px; font-size: 10px; font-weight: 700; }
.text-link { display: inline-flex; gap: 22px; align-items: center; color: var(--navy); font-size: 13px; font-weight: 800; }
[data-theme="dark"] .text-link { color: #9be7e8; }
.text-link span { transition: transform .2s; }
.text-link:hover span { transform: translateX(5px); }

.technology-section { position: relative; overflow: hidden; color: white; background: var(--navy-deep); }
.technology-section::before { content: ""; position: absolute; left: -170px; top: -180px; width: 500px; height: 500px; background: radial-gradient(circle, rgba(32,183,185,.22), transparent 67%); }
.technology-grid { position: relative; display: grid; grid-template-columns: .85fr 1.15fr; align-items: center; gap: 76px; }
.technology-section h2 { color: white; }
.technology-section h2 em { color: var(--lime); }
.lead { max-width: 580px; color: #c5d8df; font-size: 17px; }
.tech-points { margin: 36px 0; border-top: 1px solid rgba(255,255,255,.15); }
.tech-points > div { display: grid; grid-template-columns: 42px 1fr; gap: 12px; padding: 17px 0; border-bottom: 1px solid rgba(255,255,255,.15); }
.tech-points span { color: var(--teal); font: italic 15px Georgia, serif; }
.tech-points p { margin: 0; color: #aac0c9; font-size: 12px; }
.tech-points strong { display: block; margin-bottom: 3px; color: white; font-size: 14px; }
.technology-visual { position: relative; }
.technology-visual::before { content: ""; position: absolute; z-index: 2; inset: 18px -18px -18px 18px; border: 1px solid rgba(155,212,49,.45); border-radius: var(--radius); }
.technology-visual img { position: relative; z-index: 3; width: 100%; min-height: 540px; object-fit: cover; border-radius: var(--radius); }
.tech-badge { position: absolute; z-index: 4; left: -48px; bottom: 36px; width: 148px; padding: 19px; color: var(--navy-deep); background: var(--lime); border-radius: 10px; box-shadow: var(--shadow); }
.tech-badge small, .tech-badge strong { display: block; }
.tech-badge small { margin-bottom: 8px; font-size: 9px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; opacity: .65; }
.tech-badge strong { font-size: 17px; line-height: 1.15; }

.process-section { position: relative; overflow: hidden; background: linear-gradient(180deg, var(--surface), #f4fbf8); }
.process-list { position: relative; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; padding: 0; margin: 56px 0 0; list-style: none; }
.process-list::before { display: none; }
.process-list li { position: relative; min-height: 226px; display: grid; grid-template-columns: minmax(190px, .78fr) minmax(0, 1fr); grid-template-rows: auto 1fr; overflow: hidden; padding: 0; text-align: left; background: color-mix(in srgb, var(--surface) 94%, var(--mint)); border: 1px solid var(--border); border-radius: 24px; box-shadow: 0 20px 60px rgba(6, 38, 78, .08); }
.process-list > li > span { position: absolute; z-index: 4; top: 18px; left: 18px; width: 54px; height: 54px; display: grid; place-items: center; color: var(--navy-deep); background: var(--lime); border: 6px solid rgba(255,255,255,.82); border-radius: 50%; box-shadow: 0 14px 28px rgba(6,38,78,.16); font: italic 15px Georgia, serif; }
.process-icon { position: relative; z-index: 2; width: 74px; height: 74px; display: grid; place-items: center; margin: 15px auto 26px; color: var(--teal-dark); background: var(--mint); border: 8px solid var(--surface); border-radius: 50%; font-size: 26px; }
.process-image { position: relative; z-index: 2; grid-row: 1 / span 2; width: 100%; height: 100%; min-height: 226px; margin: 0; overflow: hidden; background: var(--mint); border: 0; border-radius: 0; box-shadow: none; }
.process-image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, transparent 55%, rgba(4,27,56,.14)); border: 0; border-radius: 0; }
.process-image img { width: 100%; height: 100%; object-fit: cover; }
.process-list h3 { align-self: end; margin: 0; padding: 34px 34px 8px; color: var(--navy-deep); font-size: 21px; line-height: 1.15; letter-spacing: -.035em; }
[data-theme="dark"] .process-list h3 { color: white; }
.process-list p { margin: 0; padding: 0 34px 34px; color: var(--muted); font-size: 14px; line-height: 1.7; }

.why-section { background: var(--mint); }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 90px; }
.why-visual { position: relative; }
.why-visual img { width: 100%; min-height: 590px; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow); }
.floating-note { position: absolute; right: -34px; bottom: 36px; width: 220px; padding: 18px; display: flex; align-items: center; gap: 12px; color: white; background: var(--navy-deep); border-radius: 10px; box-shadow: var(--shadow); }
.floating-note span { color: var(--lime); font-size: 23px; }
.floating-note p { margin: 0; font-size: 11px; }
.why-copy > p { max-width: 520px; color: var(--muted); }
.why-list { display: grid; grid-template-columns: 1fr 1fr; margin-top: 34px; border-top: 1px solid var(--border); }
.why-list > div { position: relative; padding: 22px 22px 18px 35px; border-right: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.why-list > div:nth-child(even) { border-right: 0; }
.why-list span { position: absolute; left: 0; top: 23px; color: var(--teal-dark); font: italic 12px Georgia, serif; }
.why-list h3 { margin: 0 0 6px; color: var(--navy-deep); font-size: 14px; }
[data-theme="dark"] .why-list h3 { color: white; }
.why-list p { margin: 0; color: var(--muted); font-size: 11px; }

.areas-section { color: white; background: linear-gradient(120deg, var(--navy-deep), #083c57); }
.areas-grid { display: grid; grid-template-columns: 1fr .8fr; align-items: center; gap: 90px; }
.areas-section h2 { color: white; }
.areas-section h2 em { color: var(--lime); }
.areas-copy > p { max-width: 610px; color: #bfd2da; }
.location-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 28px; }
.location-chips span { padding: 7px 12px; color: #d9eeee; border: 1px solid rgba(255,255,255,.22); border-radius: 99px; font-size: 11px; }
.area-checker { padding: 38px; color: var(--text); background: var(--surface); border-radius: var(--radius); box-shadow: var(--shadow); }
.area-checker label { display: block; color: var(--navy-deep); font-size: 20px; font-weight: 800; }
[data-theme="dark"] .area-checker label { color: white; }
.area-checker > p { margin: 5px 0 22px; color: var(--muted); font-size: 12px; }
.input-row { display: flex; }
.input-row input { min-width: 0; flex: 1; height: 52px; padding: 0 15px; color: var(--text); background: var(--ice); border: 1px solid var(--border); border-radius: 7px 0 0 7px; }
.input-row button { padding: 0 21px; color: var(--navy-deep); background: var(--lime); border: 0; border-radius: 0 7px 7px 0; font-weight: 800; cursor: pointer; }
.form-result { min-height: 22px; margin-top: 12px; color: var(--teal-dark); font-size: 12px; font-weight: 700; }

.faq-section { background: var(--ice); }
.faq-grid { display: grid; grid-template-columns: .65fr 1.35fr; gap: 100px; }
.faq-intro { position: sticky; top: 130px; align-self: start; }
.faq-intro > p { color: var(--muted); font-size: 13px; }
.accordion { border-top: 1px solid var(--border); }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item button { width: 100%; min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 0; color: var(--text); background: transparent; border: 0; text-align: left; font-weight: 750; cursor: pointer; }
.faq-item button i { position: relative; width: 22px; height: 22px; flex: 0 0 22px; }
.faq-item button i::before, .faq-item button i::after { content: ""; position: absolute; top: 10px; left: 4px; width: 14px; height: 1px; background: currentColor; transition: transform .2s; }
.faq-item button i::after { transform: rotate(90deg); }
.faq-item.active button i::after { transform: rotate(0); }
.faq-answer { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .3s ease; }
.faq-answer p { min-height: 0; overflow: hidden; margin: 0; color: var(--muted); font-size: 13px; }
.faq-item.active .faq-answer { grid-template-rows: 1fr; }
.faq-item.active .faq-answer p { padding-bottom: 26px; }

.quote-section { color: white; background: var(--navy-deep); }
.quote-grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: 90px; }
.quote-section h2 { color: white; }
.quote-section h2 em { color: var(--lime); }
.quote-copy > p { color: #b9ced6; }
.contact-list { margin-top: 42px; border-top: 1px solid rgba(255,255,255,.14); }
.contact-list > * { display: block; padding: 17px 0; border-bottom: 1px solid rgba(255,255,255,.14); }
.contact-list span, .contact-list strong { display: block; }
.contact-list span { color: var(--teal); font-size: 9px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.contact-list strong { margin-top: 4px; font-size: 13px; }
.quote-form { padding: 38px; color: var(--text); background: var(--surface); border-radius: var(--radius); }
.form-heading { display: flex; align-items: center; justify-content: space-between; margin-bottom: 27px; }
.form-heading span { color: var(--navy-deep); font-size: 22px; font-weight: 850; }
[data-theme="dark"] .form-heading span { color: white; }
.form-heading small { color: var(--muted); font-size: 9px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: flex; flex-direction: column; }
.field.full { grid-column: 1 / -1; }
.field label { margin-bottom: 6px; font-size: 10px; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; }
.field input, .field select, .field textarea { width: 100%; color: var(--text); background: var(--ice); border: 1px solid var(--border); border-radius: 7px; }
.field input, .field select { height: 48px; padding: 0 13px; }
.field textarea { resize: vertical; padding: 12px 13px; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--teal); outline: 3px solid rgba(32,183,185,.13); }
.field.invalid input, .field.invalid select { border-color: #c53f4a; }
.error { min-height: 16px; color: #c53f4a; font-size: 10px; }
.consent { display: flex; align-items: flex-start; gap: 9px; margin-top: 19px; color: var(--muted); font-size: 10px; cursor: pointer; }
.consent input { margin-top: 3px; accent-color: var(--teal-dark); }
.button-submit { width: 100%; margin-top: 16px; color: var(--navy-deep); background: var(--lime); border: 0; }
.form-success { margin-top: 15px; padding: 12px 14px; color: #0c5c40; background: #dff8e8; border-radius: 6px; font-size: 12px; font-weight: 700; }

.site-footer { padding: 70px 0 24px; color: #d6e4e9; background: #021426; }
.footer-grid { display: grid; grid-template-columns: 1.6fr repeat(3, 1fr); gap: 65px; }
.brand-light { color: white; }
.footer-brand > p { max-width: 330px; color: #8da7b2; font-size: 12px; }
.footer-grid h2 { margin: 7px 0 18px; color: var(--teal); font-size: 10px; letter-spacing: .12em; text-transform: uppercase; }
.footer-grid > div:not(:first-child) a, .footer-grid > div:not(:first-child) p { display: block; margin: 0 0 10px; color: #a9bec6; font-size: 11px; }
.footer-grid a:hover { color: white !important; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 50px; padding-top: 22px; color: #6f8b97; border-top: 1px solid rgba(255,255,255,.09); font-size: 10px; }
.footer-bottom p { margin: 0; }
.footer-bottom div { display: flex; gap: 20px; }
.whatsapp { position: fixed; z-index: 90; right: 22px; bottom: 22px; width: 53px; height: 53px; display: grid; place-items: center; color: white; background: #20b95b; border-radius: 50%; box-shadow: 0 10px 28px rgba(0,0,0,.25); transition: transform .2s; }
.whatsapp:hover { transform: translateY(-4px) scale(1.04); }
.whatsapp svg { width: 27px; fill: currentColor; }
.whatsapp i { font-size: 27px; line-height: 1; }

/* Shared navigation and interior pages */
.premium-nav { position: static; gap: 25px; }
.premium-nav > a, .nav-trigger { white-space: nowrap; }
.premium-nav > a.active { color: var(--teal-dark); }
.nav-group { position: static; }
.nav-trigger { display: flex; align-items: center; gap: 5px; padding: 28px 0; color: var(--text); background: transparent; border: 0; font-size: 14px; font-weight: 650; cursor: pointer; }
.nav-trigger span { color: var(--teal-dark); font-size: 13px; transition: transform .2s; }
.nav-group.open .nav-trigger span { transform: rotate(180deg); }
.mega-menu { position: absolute; top: calc(100% + 1px); left: 50%; width: min(1180px, calc(100vw - 48px)); display: grid; grid-template-columns: 1.15fr repeat(3, 1fr); gap: 0; padding: 0; color: var(--text); background: var(--surface); border: 1px solid var(--border); border-radius: 0 0 16px 16px; box-shadow: 0 26px 70px rgba(4,27,56,.18); opacity: 0; visibility: hidden; transform: translate(-50%, 10px); transition: opacity .2s, transform .2s, visibility .2s; }
.nav-group.open .mega-menu { opacity: 1; visibility: visible; transform: translate(-50%, 0); }
.company-menu { grid-template-columns: 1.2fr 1fr 1fr; }
.mega-intro { padding: 34px; color: white; background: linear-gradient(145deg, var(--navy-deep), var(--blue)); border-radius: 0 0 0 15px; }
.mega-intro small, .mega-column > small { color: var(--teal); font-size: 9px; font-weight: 850; letter-spacing: .14em; text-transform: uppercase; }
.mega-intro h2 { margin: 12px 0; font-size: 27px; line-height: 1.05; letter-spacing: -.04em; }
.mega-intro p { color: #b9cdd5; font-size: 12px; }
.mega-intro a { display: inline-block; margin-top: 12px; color: var(--lime); font-size: 11px; font-weight: 800; }
.mega-column { padding: 30px 26px; border-right: 1px solid var(--border); }
.mega-column:last-child { border: 0; }
.mega-column > small { display: block; margin-bottom: 12px; color: var(--teal-dark); }
.mega-column a { display: block; padding: 10px 8px; border-radius: 7px; }
.mega-column a:hover { background: var(--mint); }
.mega-column strong, .mega-column span { display: block; }
.mega-column strong { color: var(--navy-deep); font-size: 12px; }
[data-theme="dark"] .mega-column strong { color: white; }
.mega-column span { margin-top: 2px; color: var(--muted); font-size: 9px; }
.mobile-nav details { border-bottom: 1px solid var(--border); }
.mobile-nav summary { display: flex; justify-content: space-between; align-items: center; padding: 14px 0; font-size: 20px; font-weight: 700; cursor: pointer; list-style: none; }
.mobile-nav summary::-webkit-details-marker { display: none; }
.mobile-nav details a { margin-left: 15px; padding: 10px 0; color: var(--muted); font-size: 14px; border: 0; }
.mobile-nav .mobile-cta { margin-top: 18px; padding: 14px 18px; color: var(--navy-deep); background: var(--lime); border: 0; border-radius: 7px; text-align: center; }

.page-hero { position: relative; overflow: hidden; padding: 105px 0 92px; color: white; background: var(--navy-deep); }
.page-hero::before { content: ""; position: absolute; inset: 0; opacity: .18; background-image: linear-gradient(rgba(255,255,255,.15) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.15) 1px, transparent 1px); background-size: 68px 68px; mask-image: linear-gradient(90deg, #000, transparent 85%); }
.page-hero::after { content: ""; position: absolute; width: 540px; height: 540px; right: -180px; top: -250px; background: radial-gradient(circle, rgba(32,183,185,.35), transparent 68%); }
.page-hero .container { position: relative; z-index: 1; }
.page-hero-grid { display: grid; grid-template-columns: 1fr .65fr; align-items: end; gap: 70px; }
.page-hero h1 { max-width: 900px; margin: 20px 0 0; font-size: clamp(48px, 7vw, 88px); line-height: .96; letter-spacing: -.06em; }
.page-hero h1 em { color: var(--lime); font-family: Georgia, serif; font-weight: 400; }
.page-hero p { max-width: 580px; margin: 0; color: #c1d4dc; font-size: 17px; }
.breadcrumbs { margin-bottom: 22px; color: #9ab6c0; font-size: 10px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.breadcrumbs a { color: var(--teal); }
.content-section { padding: 100px 0; background: var(--ice); }
.content-section.alt { background: var(--surface); }
.content-section.mint { background: var(--mint); }
.content-section.dark { color: white; background: var(--navy-deep); }
.inner-head { max-width: 760px; margin-bottom: 48px; }
.inner-head.center { margin-inline: auto; text-align: center; }
.inner-head.center .eyebrow { justify-content: center; }
.inner-head h2 { margin: 16px 0; color: var(--navy-deep); font-size: clamp(38px, 5vw, 62px); line-height: 1; letter-spacing: -.05em; }
[data-theme="dark"] .inner-head h2, .dark .inner-head h2 { color: white; }
.inner-head h2 em { color: var(--teal); font-family: Georgia, serif; font-weight: 400; }
.inner-head p { color: var(--muted); }
.dark .inner-head p { color: #bdd0d7; }
.two-column { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 85px; }
.editorial-image { width: 100%; min-height: 490px; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow); }
.copy-block h2 { margin: 16px 0 22px; color: var(--navy-deep); font-size: clamp(38px, 5vw, 62px); line-height: 1; letter-spacing: -.05em; }
[data-theme="dark"] .copy-block h2 { color: white; }
.copy-block h2 em { color: var(--teal); font-family: Georgia, serif; font-weight: 400; }
.copy-block p { color: var(--muted); }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.feature-card { padding: 30px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); }
.feature-card .feature-icon { width: 45px; height: 45px; display: grid; place-items: center; margin-bottom: 28px; color: var(--teal-dark); background: var(--mint); border-radius: 12px; font-size: 20px; }
.feature-card small { color: var(--teal-dark); font: italic 12px Georgia, serif; }
.feature-card h3 { margin: 8px 0; color: var(--navy-deep); font-size: 19px; }
[data-theme="dark"] .feature-card h3 { color: white; }
.feature-card p { margin: 0; color: var(--muted); font-size: 12px; }
.stat-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; margin-top: 60px; overflow: hidden; background: var(--border); border: 1px solid var(--border); border-radius: var(--radius); }
.stat-strip div { padding: 27px; background: var(--surface); }
.stat-strip strong, .stat-strip span { display: block; }
.stat-strip strong { color: var(--navy-deep); font-size: 20px; }
[data-theme="dark"] .stat-strip strong { color: white; }
.stat-strip span { color: var(--muted); font-size: 10px; }
.proof-image { padding: 14px; background: white; border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow); }
.proof-image img { width: 100%; border-radius: 9px; }
.proof-caption { margin: 10px 5px 0; color: var(--muted); font-size: 10px; }
.section-cta { display: flex; align-items: center; justify-content: space-between; gap: 30px; padding: 45px; color: white; background: linear-gradient(130deg, var(--navy-deep), var(--blue)); border-radius: var(--radius); }
.section-cta h2 { margin: 0; font-size: clamp(28px, 4vw, 46px); line-height: 1.05; letter-spacing: -.04em; }
.section-cta p { margin: 8px 0 0; color: #bcd0d8; font-size: 13px; }

.service-detail-list { display: grid; gap: 20px; }
.service-detail { display: grid; grid-template-columns: 90px 1fr .55fr; align-items: center; gap: 28px; padding: 29px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); }
.service-detail > span { color: var(--teal); font: italic 26px Georgia, serif; }
.service-detail h2 { margin: 0 0 7px; color: var(--navy-deep); font-size: 25px; }
[data-theme="dark"] .service-detail h2 { color: white; }
.service-detail p { margin: 0; color: var(--muted); font-size: 12px; }
.service-detail ul { margin: 0; padding: 0; list-style: none; color: var(--muted); font-size: 11px; }
.service-detail li { padding: 3px 0; }
.service-detail li::before { content: "✓"; margin-right: 7px; color: var(--green); font-weight: 900; }
.industry-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.industry-card { min-height: 150px; display: flex; flex-direction: column; justify-content: space-between; padding: 23px; color: white; background: var(--navy); border-radius: 12px; }
.industry-card span { color: var(--lime); font-size: 21px; }
.industry-card strong { font-size: 14px; }

.product-hero { background: linear-gradient(115deg, #052850, #0e696a); }
.product-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; }
.product-card { overflow: hidden; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); transition: transform .25s, box-shadow .25s; }
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.product-image { position: relative; overflow: hidden; background: #f4f6f2; }
.product-image img { width: 100%; aspect-ratio: .82; object-fit: cover; transition: transform .4s; }
.product-card:hover img { transform: scale(1.025); }
.product-tag { position: absolute; left: 14px; top: 14px; padding: 6px 9px; color: var(--navy-deep); background: var(--lime); border-radius: 99px; font-size: 8px; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.product-body { padding: 24px; }
.product-body small { color: var(--teal-dark); font-size: 9px; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; }
.product-body h2 { margin: 7px 0; color: var(--navy-deep); font-size: 21px; }
[data-theme="dark"] .product-body h2 { color: white; }
.product-body p { margin: 0 0 18px; color: var(--muted); font-size: 11px; }
.product-meta { display: flex; justify-content: space-between; padding-top: 15px; border-top: 1px solid var(--border); color: var(--muted); font-size: 9px; }
.filter-bar { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 34px; }
.filter-bar button { padding: 9px 14px; color: var(--text); background: var(--surface); border: 1px solid var(--border); border-radius: 99px; font-size: 10px; font-weight: 750; cursor: pointer; }
.filter-bar button.active { color: white; background: var(--navy); border-color: var(--navy); }
[data-category][hidden] { display: none; }
.application-panel { display: grid; grid-template-columns: .8fr 1.2fr; align-items: center; gap: 65px; }
.application-panel img { width: 100%; border-radius: var(--radius); }

.platform-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.platform-card { padding: 28px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); }
.platform-card .platform-logo { width: 48px; height: 48px; display: grid; place-items: center; margin-bottom: 30px; color: white; background: var(--navy); border-radius: 12px; font-weight: 900; }
.platform-card h2 { margin: 0; color: var(--navy-deep); font-size: 19px; }
[data-theme="dark"] .platform-card h2 { color: white; }
.platform-card p { color: var(--muted); font-size: 11px; }
.review-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.review-card { padding: 31px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); }
.review-card blockquote { margin: 17px 0 24px; color: var(--text); font: 20px/1.5 Georgia, serif; }
.review-card footer { display: flex; justify-content: space-between; gap: 20px; color: var(--muted); font-size: 10px; }
.review-source { color: var(--teal-dark); font-size: 9px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.review-note { margin-top: 25px; padding: 14px 18px; color: var(--muted); background: var(--mint); border-radius: 8px; font-size: 10px; }

.blog-feature { display: grid; grid-template-columns: 1.15fr .85fr; overflow: hidden; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); }
.blog-feature img { width: 100%; height: 100%; min-height: 480px; object-fit: cover; }
.blog-feature-copy { display: flex; flex-direction: column; justify-content: center; padding: 50px; }
.article-meta { color: var(--teal-dark); font-size: 9px; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.blog-feature h2 { margin: 14px 0; color: var(--navy-deep); font-size: clamp(30px, 4vw, 48px); line-height: 1.05; letter-spacing: -.04em; }
[data-theme="dark"] .blog-feature h2 { color: white; }
.blog-feature p { color: var(--muted); }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 28px; }
.blog-card { overflow: hidden; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); }
.blog-card img { width: 100%; aspect-ratio: 1.45; object-fit: cover; }
.blog-card-copy { padding: 24px; }
.blog-card h2 { margin: 10px 0; color: var(--navy-deep); font-size: 20px; line-height: 1.2; }
[data-theme="dark"] .blog-card h2 { color: white; }
.blog-card p { color: var(--muted); font-size: 11px; }
.article-hero { padding: 88px 0 55px; background: var(--surface); border-bottom: 1px solid var(--border); }
.article-title { max-width: 920px; margin: 17px 0 25px; color: var(--navy-deep); font-size: clamp(46px, 7vw, 84px); line-height: .98; letter-spacing: -.06em; }
[data-theme="dark"] .article-title { color: white; }
.article-dek { max-width: 720px; color: var(--muted); font-size: 18px; }
.article-layout { display: grid; grid-template-columns: 1fr 280px; align-items: start; gap: 80px; }
.article-body { max-width: 760px; }
.article-body > img { width: 100%; max-height: 520px; margin-bottom: 42px; object-fit: cover; border-radius: var(--radius); }
.article-body h2 { margin: 42px 0 14px; color: var(--navy-deep); font-size: 31px; line-height: 1.15; letter-spacing: -.035em; }
[data-theme="dark"] .article-body h2 { color: white; }
.article-body h3 { margin: 27px 0 9px; color: var(--navy-deep); font-size: 20px; }
[data-theme="dark"] .article-body h3 { color: white; }
.article-body p, .article-body li { color: var(--muted); font-size: 16px; line-height: 1.85; }
.article-body ul, .article-body ol { padding-left: 23px; }
.article-callout { margin: 35px 0; padding: 25px 28px; color: var(--navy-deep); background: var(--mint); border-left: 4px solid var(--teal); border-radius: 0 10px 10px 0; }
[data-theme="dark"] .article-callout { color: white; }
.article-sidebar { position: sticky; top: 125px; padding: 25px; background: var(--surface); border: 1px solid var(--border); border-radius: 12px; }
.article-sidebar h2 { margin: 0 0 15px; color: var(--navy-deep); font-size: 15px; }
[data-theme="dark"] .article-sidebar h2 { color: white; }
.article-sidebar a { display: block; padding: 8px 0; color: var(--muted); border-bottom: 1px solid var(--border); font-size: 10px; }
.article-sidebar .button { margin-top: 20px; color: white; }
.home-gallery { background: linear-gradient(180deg, var(--surface), var(--ice)); }
.home-gallery-stage { display: grid; grid-template-columns: minmax(280px, 420px) minmax(0, 1fr); gap: 24px; align-items: stretch; }
.home-gallery-video { position: relative; overflow: hidden; width: min(100%, 420px); aspect-ratio: 9 / 16; min-height: 0; justify-self: center; background: var(--navy-deep); border-radius: 28px; box-shadow: var(--shadow); }
.home-gallery-video video { width: 100%; height: 100%; display: block; background: var(--navy-deep); object-fit: cover; }
.media-badge { position: absolute; left: 18px; right: 18px; bottom: 18px; max-width: none; padding: 16px 18px; color: white; background: linear-gradient(145deg, rgba(4, 27, 56, .86), rgba(7, 59, 73, .72)); border: 1px solid rgba(255,255,255,.22); border-radius: 16px; backdrop-filter: blur(16px); pointer-events: none; }
.media-badge span, .home-gallery-tile span { display: block; margin-bottom: 5px; color: #9ff1e8; font-size: 9px; font-weight: 850; letter-spacing: .14em; text-transform: uppercase; }
.media-badge strong, .home-gallery-tile strong { display: block; font-size: 18px; line-height: 1.12; letter-spacing: -.03em; }
.home-gallery-mosaic { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.home-gallery-tile { position: relative; overflow: hidden; min-height: 250px; margin: 0; background: var(--navy-deep); border-radius: 22px; box-shadow: 0 18px 46px rgba(6, 38, 78, .08); }
.home-gallery-tile img { width: 100%; height: 100%; display: block; object-fit: cover; transition: transform .5s ease; }
.home-gallery-tile:hover img { transform: scale(1.045); }
.home-gallery-tile::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 42%, rgba(3,20,37,.78)); }
.home-gallery-tile div { position: absolute; z-index: 1; left: 18px; right: 18px; bottom: 18px; color: white; }
.tile-large { grid-column: 1 / -1; min-height: 332px; }
.contact-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.contact-card { padding: 27px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); }
.contact-card small { color: var(--teal-dark); font-size: 9px; font-weight: 800; text-transform: uppercase; }
.contact-card strong { display: block; margin-top: 8px; color: var(--navy-deep); font-size: 15px; }
[data-theme="dark"] .contact-card strong { color: white; }


.legal-page { min-height: 100vh; background: var(--ice); }
.legal-header { padding: 22px 0; background: var(--surface); border-bottom: 1px solid var(--border); }
.legal-header .container { display: flex; align-items: center; justify-content: space-between; }
.legal-main { max-width: 820px; padding-block: 80px 110px; }
.legal-main h1 { margin: 18px 0; color: var(--navy-deep); font-size: clamp(42px, 7vw, 70px); line-height: 1; letter-spacing: -.05em; }
[data-theme="dark"] .legal-main h1 { color: white; }
.legal-main .updated { margin-bottom: 45px; color: var(--muted); font-size: 12px; }
.legal-main h2 { margin: 35px 0 10px; color: var(--navy-deep); font-size: 22px; }
[data-theme="dark"] .legal-main h2 { color: white; }
.legal-main p, .legal-main li { color: var(--muted); font-size: 15px; }
.legal-main a { color: var(--teal-dark); text-decoration: underline; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }
@keyframes rise { from { opacity: 0; transform: translateY(28px); } }
@keyframes hero-in { from { transform: scale(1.05); opacity: .7; } }

@media (max-width: 1050px) {
  .desktop-nav { display: none; }
  .menu-toggle { display: grid; }
  .service-grid { grid-template-columns: 1fr 1fr; }
  .service-card:last-child { grid-column: 1 / -1; display: grid; grid-template-columns: 1fr 1fr; }
  .service-card:last-child img { height: 100%; aspect-ratio: auto; }
  .technology-grid, .why-grid, .areas-grid, .quote-grid { gap: 48px; }
  .technology-visual img { min-height: 440px; }
  .footer-grid { grid-template-columns: 1.4fr repeat(3, 1fr); gap: 30px; }
  .premium-nav { display: none; }
  .product-grid, .blog-grid { grid-template-columns: 1fr 1fr; }
  .feature-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 820px) {
  :root { --header-height: 72px; }
  .topbar-links { display: none; }
  .topbar-inner { justify-content: center; }
  .nav-wrap { min-height: 72px; }
  .brand img { width: 42px; height: 42px; }
  .brand { font-size: 20px; }
  .nav-actions .button-small { display: none; }
  .mobile-nav { inset-block-start: 72px; }
  .hero { min-height: calc(100svh - 106px); }
  .hero-overlay { background: linear-gradient(90deg, rgba(2,22,45,.93), rgba(3,30,56,.62)), linear-gradient(0deg, rgba(1,16,30,.68), transparent 50%); }
  .hero-content { padding-block: 76px 95px; }
  .hero-trust { grid-template-columns: repeat(3, 1fr); }
  .scroll-cue { display: none; }
  .trust-grid { grid-template-columns: 1fr 1fr; padding-block: 12px; }
  .trust-grid p { padding: 8px; border: 0; text-align: left; }
  .section { padding-block: 85px; }
  .split-head, .technology-grid, .why-grid, .areas-grid, .faq-grid, .quote-grid { grid-template-columns: 1fr; }
  .split-head { gap: 25px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card:last-child { grid-column: auto; display: block; }
  .service-card:last-child img { height: auto; aspect-ratio: 1.52; }
  .technology-grid { gap: 64px; }
  .technology-visual { max-width: 650px; }
  .technology-visual img { min-height: 360px; }
  .tech-badge { left: 20px; }
  .process-list { grid-template-columns: 1fr; gap: 18px; }
  .process-list::before { display: none; }
  .why-visual { order: 2; }
  .why-copy { order: 1; }
  .why-visual img { min-height: 430px; }
  .faq-grid { gap: 40px; }
  .faq-intro { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .page-hero-grid, .two-column, .application-panel, .article-layout, .home-gallery-stage { grid-template-columns: 1fr; }
  .home-gallery-video { width: min(100%, 390px); }
  .page-hero-grid { gap: 25px; }
  .service-detail { grid-template-columns: 60px 1fr; }
  .service-detail ul { grid-column: 2; }
  .industry-grid, .stat-strip { grid-template-columns: 1fr 1fr; }
  .blog-feature { grid-template-columns: 1fr; }
  .blog-feature img { min-height: 340px; }
  .article-sidebar { position: static; }
}

@media (max-width: 560px) {
  .container { width: min(100% - 30px, var(--container)); }
  .hero-media { background-position: 62% center; }
  .hero::after { background-size: 52px 52px; }
  .hero h1 { font-size: clamp(45px, 14vw, 64px); }
  .hero-content > p { font-size: 16px; }
  .home-gallery-mosaic { grid-template-columns: 1fr; }
  .home-gallery-tile, .tile-large { min-height: 260px; }
  .home-gallery-video { width: min(100%, 320px); border-radius: 22px; }
  .media-badge { left: 14px; right: 14px; bottom: 14px; padding: 14px 16px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-trust { grid-template-columns: 1fr; gap: 13px; margin-top: 42px; }
  .section { padding-block: 72px; }
  .section h2 { font-size: 43px; }
  .section-head { margin-bottom: 38px; }
  .service-card-body { padding: 24px; }
  .technology-visual::before { display: none; }
  .technology-visual img { min-height: 300px; }
  .tech-badge { left: 12px; bottom: 12px; }
  .process-list li { grid-template-columns: 1fr; grid-template-rows: auto auto auto; }
  .process-image { grid-row: auto; min-height: 220px; aspect-ratio: 16 / 10; }
  .process-image::after { background: linear-gradient(180deg, transparent 58%, rgba(4,27,56,.2)); }
  .process-list h3 { padding: 24px 24px 8px; font-size: 20px; }
  .process-list p { padding: 0 24px 26px; }
  .why-grid { gap: 50px; }
  .why-visual img { min-height: 320px; }
  .floating-note { right: 12px; bottom: 12px; }
  .why-list { grid-template-columns: 1fr; }
  .why-list > div { border-right: 0; }
  .area-checker, .quote-form { padding: 25px 20px; }
  .form-grid { grid-template-columns: 1fr; }
  .field.full { grid-column: auto; }
  .form-heading { align-items: flex-start; flex-direction: column; gap: 4px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
  .legal-main { padding-block: 55px 80px; }
  .page-hero { padding: 72px 0 62px; }
  .page-hero h1 { font-size: 48px; }
  .content-section { padding: 72px 0; }
  .feature-grid, .product-grid, .platform-grid, .review-grid, .blog-grid, .contact-cards { grid-template-columns: 1fr; }
  .stat-strip, .industry-grid { grid-template-columns: 1fr; }
  .service-detail { grid-template-columns: 1fr; }
  .service-detail ul { grid-column: auto; }
  .section-cta { align-items: flex-start; flex-direction: column; padding: 30px 24px; }
  .blog-feature-copy { padding: 30px 24px; }
  .article-title { font-size: 47px; }
  .article-body p, .article-body li { font-size: 15px; }
}

/* Targeted visual corrections from UI review */
.theme-toggle { display: inline-grid !important; }
.service-grid { align-items: stretch; }
.service-card { display: flex; min-width: 0; flex-direction: column; }
.service-card img,
.service-card:nth-child(3) img { width: 100%; height: 275px; flex: 0 0 275px; aspect-ratio: auto; object-fit: cover; object-position: center; }
.service-card:nth-child(3) img { object-position: center 42%; }
.service-card-body { display: flex; flex: 1; flex-direction: column; }
.service-card-body .text-link { margin-top: auto; padding-top: 6px; }

.home-products { background: #f2f8f6; }
.home-products .product-card { background: #fff; border-color: #dce9e5; }
.home-products .product-image { height: 360px; padding: 18px; background: linear-gradient(145deg, #fbfcfb, #eef5f1); }
.home-products .product-image img,
.product-image img { width: 100%; height: 100%; padding: 12px; aspect-ratio: auto; object-fit: contain; object-position: center; }
.home-products .product-body { min-height: 205px; display: flex; flex-direction: column; }
.home-products .product-body .text-link { margin-top: auto; }
.product-grid .product-card { display: flex; flex-direction: column; }
.product-grid .product-body { flex: 1; }
.why-visual img { object-position: center 46%; }
.why-section { background: #f7faf9; }
.why-list { border-color: #dce9e5; }

@media (max-width: 1050px) {
  .service-card:last-child { display: flex; grid-column: auto; }
  .service-card:last-child img { width: 100%; height: 275px; flex-basis: 275px; }
}

@media (max-width: 820px) {
  .service-card:last-child { grid-column: 1 / -1; }
  .home-products .product-image { height: 320px; }
}

@media (max-width: 560px) {
  .service-card img,
  .service-card:nth-child(3) img,
  .service-card:last-child img { height: 225px; flex-basis: 225px; }
  .home-products .product-image { height: 300px; }
}

/* Hero wow final override — intentionally last */
.hero { isolation: isolate; }
.hero-content {
  position: relative;
  min-height: 520px;
}
.hero-content::before {
  content: "";
  position: absolute;
  z-index: -1;
  left: -34px;
  top: 58px;
  width: min(650px, 72vw);
  height: 455px;
  border: 1px solid rgba(32,183,185,.16);
  border-radius: 36px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.74), rgba(255,255,255,.28)),
    radial-gradient(circle at 18% 22%, rgba(155,212,49,.22), transparent 30%),
    radial-gradient(circle at 82% 78%, rgba(32,183,185,.18), transparent 34%);
  box-shadow: 0 28px 80px rgba(6,38,78,.08);
  transform: rotate(-1.2deg);
  animation: hero-card-breathe 7s ease-in-out infinite;
}
.hero .eyebrow.light { animation: hero-rise-in .72s ease both; }
.hero h1 { animation: hero-rise-in .85s cubic-bezier(.2,.78,.2,1) .08s both !important; }
.hero h1 em {
  position: relative;
  display: inline-block;
  text-shadow: 0 10px 34px rgba(32,183,185,.20);
  animation: clean-word-pulse 4.8s ease-in-out infinite;
}
.hero h1 em::after {
  content: "";
  position: absolute;
  inset: 6% -8% 2%;
  background: linear-gradient(110deg, transparent 0 38%, rgba(255,255,255,.74) 48%, transparent 58% 100%);
  transform: translateX(-120%) skewX(-18deg);
  animation: clean-shine 4.6s ease-in-out 1s infinite;
  pointer-events: none;
}
.hero-content > p { animation: hero-rise-in .85s cubic-bezier(.2,.78,.2,1) .18s both !important; }
.hero-actions { animation: hero-rise-in .85s cubic-bezier(.2,.78,.2,1) .30s both !important; }
.hero-trust { animation: hero-rise-in .85s cubic-bezier(.2,.78,.2,1) .45s both !important; }
.hero-display { animation: display-float 6s ease-in-out .4s infinite, hero-rise-in .9s cubic-bezier(.2,.78,.2,1) .36s both; }

@media (max-width: 1050px) {
  .hero-content::before { width: min(620px, 92vw); }
  .hero-display {
    position: relative;
    top: auto;
    right: auto;
    width: min(100%, 430px);
    margin-top: 28px;
  }
  .hero-trust { margin-top: 34px; }
}

@media (max-width: 820px) {
  .hero-content { min-height: 0; }
  .hero-content::before {
    left: -15px;
    top: 336px;
    width: calc(100% + 30px);
    height: 455px;
    border-radius: 26px;
  }
}

@media (max-width: 560px) {
  .hero-content::before {
    top: 284px;
    height: 520px;
    transform: none;
  }
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }
  .home-products .product-image,
  .product-image {
    height: 190px;
    padding: 10px;
  }
  .product-image img {
    padding: 6px;
  }
  .product-body {
    padding: 14px;
  }
  .home-products .product-body {
    min-height: 190px;
  }
  .product-body h2 {
    font-size: 16px;
    line-height: 1.15;
  }
  .product-body p {
    font-size: 10px;
    line-height: 1.5;
  }
  .product-tag {
    left: 9px;
    top: 9px;
    max-width: calc(100% - 18px);
    font-size: 7px;
  }
  .product-meta {
    flex-direction: column;
    gap: 4px;
  }
}

/* Final responsive hardening — intentionally last */
html,
body {
  max-width: 100%;
  overflow-x: clip;
}

img,
svg,
video,
canvas {
  max-width: 100%;
}

.container,
.hero,
.section,
.content-section,
.site-header,
.site-footer,
.footer-modern-grid,
.service-grid,
.product-grid,
.quote-grid,
.areas-grid,
.two-column,
.page-hero-grid,
.article-layout {
  min-width: 0;
}

.footer-modern-grid > *,
.service-grid > *,
.product-grid > *,
.quote-grid > *,
.areas-grid > *,
.two-column > *,
.page-hero-grid > *,
.article-layout > * {
  min-width: 0;
}

.brand span,
.footer-column a,
.footer-contact p,
.footer-hours p {
  overflow-wrap: anywhere;
}

@media (max-width: 380px) {
  .container { width: min(100% - 24px, var(--container)); }
  .hero { width: calc(100% - 16px); }
  .areas-section,
  .technology-section,
  .quote-section,
  .page-hero,
  .article-hero {
    margin-inline: 0;
    border-radius: 0;
  }
  .areas-grid,
  .quote-grid,
  .technology-grid,
  .why-grid,
  .faq-grid {
    width: min(100% - 24px, var(--container));
    gap: 24px;
  }
  .areas-section h2,
  .quote-section h2,
  .technology-section h2,
  .page-hero h1,
  .article-title {
    font-size: clamp(34px, 11vw, 43px);
  }
  .location-chips { gap: 7px; }
  .location-chips span { padding: 6px 10px; font-size: 10px; }
  .area-checker,
  .quote-form { padding: 22px 16px; }
  .input-row {
    flex-direction: column;
    gap: 10px;
  }
  .input-row input,
  .input-row button {
    width: 100%;
    border-radius: 999px;
  }
  .hero-display { width: 100%; }
  .hero-floating-tags span { min-width: auto; }
  .whatsapp {
    right: 14px;
    bottom: 14px;
    width: 48px;
    height: 48px;
  }
}

@supports not (overflow: clip) {
  html,
  body { overflow-x: hidden; }
}

/* Final product mobile grid lock */
@media (max-width: 560px) {
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }
  .home-products .product-image,
  .product-image {
    height: 190px;
    padding: 10px;
  }
  .product-image img {
    padding: 6px;
  }
  .product-body {
    padding: 14px;
  }
  .home-products .product-body {
    min-height: 190px;
  }
  .product-body h2 {
    font-size: 16px;
    line-height: 1.15;
  }
  .product-body p {
    font-size: 10px;
    line-height: 1.5;
  }
  .product-tag {
    left: 9px;
    top: 9px;
    max-width: calc(100% - 18px);
    font-size: 7px;
  }
  .product-meta {
    flex-direction: column;
    gap: 4px;
  }
}

@media (max-width: 380px) {
  .product-grid {
    gap: 9px;
  }
  .home-products .product-image,
  .product-image {
    height: 160px;
  }
  .product-body {
    padding: 12px 10px;
  }
  .home-products .product-body {
    min-height: 185px;
  }
  .product-body h2 {
    font-size: 14px;
  }
  .product-body small,
  .product-meta {
    font-size: 7px;
  }
}

/* Final product mobile grid lock */
@media (max-width: 560px) {
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }
  .home-products .product-image,
  .product-image {
    height: 190px;
    padding: 10px;
  }
  .product-image img {
    padding: 6px;
  }
  .product-body {
    padding: 14px;
  }
  .home-products .product-body {
    min-height: 190px;
  }
  .product-body h2 {
    font-size: 16px;
    line-height: 1.15;
  }
  .product-body p {
    font-size: 10px;
    line-height: 1.5;
  }
  .product-tag {
    left: 9px;
    top: 9px;
    max-width: calc(100% - 18px);
    font-size: 7px;
  }
  .product-meta {
    flex-direction: column;
    gap: 4px;
  }
}

@media (max-width: 380px) {
  .product-grid {
    gap: 9px;
  }
  .home-products .product-image,
  .product-image {
    height: 160px;
  }
  .product-body {
    padding: 12px 10px;
  }
  .home-products .product-body {
    min-height: 185px;
  }
  .product-body h2 {
    font-size: 14px;
  }
  .product-body small,
  .product-meta {
    font-size: 7px;
  }
}

/* Product grid must remain 2-up on mobile */
@media (max-width: 560px) {
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }
  .home-products .product-image,
  .product-image {
    height: 190px;
    padding: 10px;
  }
  .product-image img {
    padding: 6px;
  }
  .product-body {
    padding: 14px;
  }
  .home-products .product-body {
    min-height: 190px;
  }
  .product-body h2 {
    font-size: 16px;
    line-height: 1.15;
  }
  .product-body p {
    font-size: 10px;
    line-height: 1.5;
  }
  .product-tag {
    left: 9px;
    top: 9px;
    max-width: calc(100% - 18px);
    font-size: 7px;
  }
  .product-meta {
    flex-direction: column;
    gap: 4px;
  }
}

@media (max-width: 380px) {
  .product-grid {
    gap: 9px;
  }
  .home-products .product-image,
  .product-image {
    height: 160px;
  }
  .product-body {
    padding: 12px 10px;
  }
  .home-products .product-body {
    min-height: 185px;
  }
  .product-body h2 {
    font-size: 14px;
  }
  .product-body small,
  .product-meta {
    font-size: 7px;
  }
}

/* Animated navigation pointer */
@media (hover: hover) and (pointer: fine) {
  body.custom-pointer-enabled,
  body.custom-pointer-enabled a,
  body.custom-pointer-enabled button,
  body.custom-pointer-enabled summary,
  body.custom-pointer-enabled .text-link,
  body.custom-pointer-enabled .product-card,
  body.custom-pointer-enabled .service-card,
  body.custom-pointer-enabled .review-card,
  body.custom-pointer-enabled .footer-socials a,
  body.custom-pointer-enabled .whatsapp,
  body.custom-pointer-enabled [role="button"] {
    cursor: none;
  }

  body.custom-pointer-enabled input,
  body.custom-pointer-enabled textarea,
  body.custom-pointer-enabled select,
  body.custom-pointer-enabled label,
  body.custom-pointer-enabled [contenteditable="true"] {
    cursor: auto;
  }

  .site-pointer {
    --pointer-x: -120px;
    --pointer-y: -120px;
    --pointer-ring-x: -120px;
    --pointer-ring-y: -120px;
    position: fixed;
    inset: 0;
    z-index: 9998;
    pointer-events: none;
    opacity: 0;
    mix-blend-mode: normal;
    transition: opacity 180ms ease;
  }

  .site-pointer.is-visible {
    opacity: 1;
  }

  .site-pointer-dot,
  .site-pointer-ring {
    position: fixed;
    top: 0;
    left: 0;
    border-radius: 999px;
    will-change: transform, width, height, opacity;
  }

  .site-pointer-dot {
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, var(--lime), var(--teal));
    box-shadow: 0 0 18px rgba(138, 223, 38, 0.78);
    transform: translate3d(calc(var(--pointer-x) - 4px), calc(var(--pointer-y) - 4px), 0);
    transition: transform 140ms ease, background 180ms ease, box-shadow 180ms ease;
  }

  .site-pointer-ring {
    --pointer-size: 38px;
    --pointer-offset: 19px;
    width: var(--pointer-size);
    height: var(--pointer-size);
    border: 1px solid color-mix(in srgb, var(--teal) 72%, transparent);
    background:
      radial-gradient(circle at 50% 50%, rgba(138, 223, 38, 0.18), transparent 38%),
      radial-gradient(circle at 50% 50%, rgba(31, 199, 195, 0.12), transparent 62%);
    box-shadow:
      0 0 0 1px rgba(255, 255, 255, 0.08) inset,
      0 18px 42px rgba(31, 199, 195, 0.18);
    transform: translate3d(calc(var(--pointer-ring-x) - var(--pointer-offset)), calc(var(--pointer-ring-y) - var(--pointer-offset)), 0);
    transition:
      width 180ms ease,
      height 180ms ease,
      border-color 180ms ease,
      background 180ms ease,
      box-shadow 180ms ease,
      transform 90ms ease;
  }

  .site-pointer.is-link .site-pointer-ring {
    --pointer-size: 58px;
    --pointer-offset: 29px;
    border-color: color-mix(in srgb, var(--lime) 78%, transparent);
    background:
      radial-gradient(circle at 50% 50%, rgba(138, 223, 38, 0.26), transparent 44%),
      radial-gradient(circle at 50% 50%, rgba(31, 199, 195, 0.18), transparent 68%);
    box-shadow:
      0 0 0 1px rgba(255, 255, 255, 0.12) inset,
      0 0 28px rgba(138, 223, 38, 0.30),
      0 22px 54px rgba(31, 199, 195, 0.22);
  }

  .site-pointer.is-link .site-pointer-dot {
    background: #ffffff;
    box-shadow: 0 0 22px rgba(255, 255, 255, 0.76);
    transform: translate3d(calc(var(--pointer-x) - 4px), calc(var(--pointer-y) - 4px), 0) scale(0.7);
  }

  .site-pointer.is-pressed .site-pointer-ring {
    --pointer-size: 32px;
    --pointer-offset: 16px;
    border-color: color-mix(in srgb, var(--lime) 90%, transparent);
    background: rgba(138, 223, 38, 0.18);
  }

  .site-pointer.is-text .site-pointer-ring {
    --pointer-size: 24px;
    --pointer-offset: 12px;
    width: 16px;
    height: 36px;
    border-radius: 999px;
    border-color: rgba(31, 199, 195, 0.7);
    background: rgba(31, 199, 195, 0.08);
    box-shadow: 0 0 20px rgba(31, 199, 195, 0.24);
  }
}

@media (pointer: coarse), (prefers-reduced-motion: reduce) {
  .site-pointer {
    display: none !important;
  }

  body.custom-pointer-enabled,
  body.custom-pointer-enabled * {
    cursor: auto;
  }
}

/* Final responsive hardening */
html,
body {
  max-width: 100%;
  overflow-x: clip;
}

img,
svg,
video,
canvas {
  max-width: 100%;
}

.container,
.hero,
.section,
.content-section,
.site-header,
.site-footer {
  min-width: 0;
}

.footer-modern-grid,
.service-grid,
.product-grid,
.quote-grid,
.areas-grid,
.two-column,
.page-hero-grid,
.article-layout {
  min-width: 0;
}

.footer-modern-grid > *,
.service-grid > *,
.product-grid > *,
.quote-grid > *,
.areas-grid > *,
.two-column > *,
.page-hero-grid > *,
.article-layout > * {
  min-width: 0;
}

.brand span,
.footer-column a,
.footer-contact p,
.footer-hours p {
  overflow-wrap: anywhere;
}

@media (max-width: 380px) {
  .container { width: min(100% - 24px, var(--container)); }
  .hero { width: calc(100% - 16px); }
  .areas-section,
  .technology-section,
  .quote-section,
  .page-hero,
  .article-hero {
    margin-inline: 0;
    border-radius: 0;
  }
  .areas-grid,
  .quote-grid,
  .technology-grid,
  .why-grid,
  .faq-grid {
    width: min(100% - 24px, var(--container));
    gap: 24px;
  }
  .areas-section h2,
  .quote-section h2,
  .technology-section h2,
  .page-hero h1,
  .article-title {
    font-size: clamp(34px, 11vw, 43px);
  }
  .location-chips { gap: 7px; }
  .location-chips span { padding: 6px 10px; font-size: 10px; }
  .area-checker,
  .quote-form { padding: 22px 16px; }
  .input-row {
    flex-direction: column;
    gap: 10px;
  }
  .input-row input,
  .input-row button {
    width: 100%;
    border-radius: 999px;
  }
  .hero-display { width: 100%; }
  .hero-floating-tags span { min-width: auto; }
  .whatsapp {
    right: 14px;
    bottom: 14px;
    width: 48px;
    height: 48px;
  }
}

@supports not (overflow: clip) {
  html,
  body { overflow-x: hidden; }
}

/* Final product mobile grid lock */
@media (max-width: 560px) {
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }
  .home-products .product-image,
  .product-image {
    height: 190px;
    padding: 10px;
  }
  .product-image img {
    padding: 6px;
  }
  .product-body {
    padding: 14px;
  }
  .home-products .product-body {
    min-height: 190px;
  }
  .product-body h2 {
    font-size: 16px;
    line-height: 1.15;
  }
  .product-body p {
    font-size: 10px;
    line-height: 1.5;
  }
  .product-tag {
    left: 9px;
    top: 9px;
    max-width: calc(100% - 18px);
    font-size: 7px;
  }
  .product-meta {
    flex-direction: column;
    gap: 4px;
  }
}

@media (max-width: 380px) {
  .product-grid {
    gap: 9px;
  }
  .home-products .product-image,
  .product-image {
    height: 160px;
  }
  .product-body {
    padding: 12px 10px;
  }
  .home-products .product-body {
    min-height: 185px;
  }
  .product-body h2 {
    font-size: 14px;
  }
  .product-body small,
  .product-meta {
    font-size: 7px;
  }
}

/* Day/night mode — final cascade layer */
.theme-toggle {
  position: relative;
  display: inline-grid !important;
  flex: 0 0 auto;
  overflow: hidden;
  color: var(--navy-deep);
  background:
    linear-gradient(var(--surface), var(--surface)) padding-box,
    linear-gradient(135deg, rgba(32,183,185,.65), rgba(155,212,49,.75)) border-box;
  border-color: transparent;
  box-shadow: 0 8px 22px rgba(6,38,78,.08);
}
.theme-toggle::after {
  content: "";
  position: absolute;
  inset: 6px;
  z-index: -1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(155,212,49,.25), transparent 62%);
  transform: scale(.65);
  transition: transform .25s ease, background .25s ease;
}
.theme-toggle:hover::after { transform: scale(1); }
.theme-toggle svg {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  transition: opacity .22s ease, transform .22s ease;
}
.theme-toggle .sun-icon { opacity: 1; transform: translate(-50%, -50%) rotate(0) scale(1); }
.theme-toggle .moon-icon { opacity: 0; transform: translate(-50%, -50%) rotate(-30deg) scale(.7); }
[data-theme="dark"] .theme-toggle {
  color: #eaf7f6;
  background:
    linear-gradient(#102231, #102231) padding-box,
    linear-gradient(135deg, rgba(89,216,212,.7), rgba(155,212,49,.55)) border-box;
  box-shadow: 0 10px 26px rgba(0,0,0,.28);
}
[data-theme="dark"] .theme-toggle::after { background: radial-gradient(circle, rgba(89,216,212,.28), transparent 62%); }
[data-theme="dark"] .theme-toggle .sun-icon { opacity: 0; transform: translate(-50%, -50%) rotate(30deg) scale(.7); }
[data-theme="dark"] .theme-toggle .moon-icon { opacity: 1; transform: translate(-50%, -50%) rotate(0) scale(1); }

.legal-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.legal-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

[data-theme="dark"] body { background: var(--ice); color: var(--text); }
[data-theme="dark"] .site-header,
[data-theme="dark"] .mobile-nav,
[data-theme="dark"] .legal-header {
  background: color-mix(in srgb, var(--surface) 94%, transparent);
  border-color: var(--border);
}
[data-theme="dark"] .icon-button {
  color: #eaf7f6;
  background: var(--surface);
  border-color: var(--border);
}
[data-theme="dark"] .hero-content::before {
  border-color: rgba(89,216,212,.18);
  background:
    linear-gradient(135deg, rgba(16,34,49,.74), rgba(16,34,49,.28)),
    radial-gradient(circle at 18% 22%, rgba(155,212,49,.12), transparent 30%),
    radial-gradient(circle at 82% 78%, rgba(89,216,212,.16), transparent 34%);
  box-shadow: 0 28px 80px rgba(0,0,0,.22);
}
[data-theme="dark"] .service-card,
[data-theme="dark"] .product-card,
[data-theme="dark"] .review-card,
[data-theme="dark"] .feature-card,
[data-theme="dark"] .blog-card,
[data-theme="dark"] .blog-feature,
[data-theme="dark"] .contact-card,
[data-theme="dark"] .platform-card,
[data-theme="dark"] .service-detail,
[data-theme="dark"] .article-sidebar,
[data-theme="dark"] .article-callout {
  background: var(--surface);
  border-color: var(--border);
}
[data-theme="dark"] .services-section,
[data-theme="dark"] .process-section,
[data-theme="dark"] .home-products,
[data-theme="dark"] .why-section,
[data-theme="dark"] .content-section.alt,
[data-theme="dark"] .legal-header {
  background: var(--ice);
}
[data-theme="dark"] .home-products .product-card { background: var(--surface); border-color: var(--border); }
[data-theme="dark"] .home-products .product-image,
[data-theme="dark"] .product-image {
  background: linear-gradient(145deg, #102231, #0b1d2a);
}
[data-theme="dark"] .why-list { border-color: var(--border); }
[data-theme="dark"] .legal-main,
[data-theme="dark"] .legal-main p,
[data-theme="dark"] .legal-main li { color: var(--muted); }
[data-theme="dark"] .legal-main h1,
[data-theme="dark"] .legal-main h2 { color: #fff; }

@media (max-width: 560px) {
  .legal-header .container { align-items: flex-start; flex-direction: column; }
  .legal-actions { width: 100%; justify-content: space-between; }
  .nav-actions { gap: 7px; }
}

/* Footer brand contrast fix */
.site-footer .brand,
.site-footer .brand-light,
.site-footer .brand-light span {
  color: #ffffff !important;
}
.site-footer .brand small,
.site-footer .brand-light small {
  color: #9fb6bf !important;
}
.site-footer .brand img,
.site-footer .brand-light img {
  background: rgba(255,255,255,.08);
  box-shadow: 0 10px 28px rgba(0,0,0,.18);
}

/* Modern expanded footer */
.modern-footer {
  padding: 60px 0 0;
  color: #aaa;
  background: #1a1a1a;
}
.footer-modern-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
}
.footer-brand-logo {
  display: inline-flex;
  margin-bottom: 16px;
}
.footer-brand-logo img {
  width: 46px;
  height: 46px;
}
.modern-footer .footer-brand > p {
  max-width: 390px;
  margin: 0 0 20px;
  color: #aaa;
  font-size: 14px;
  line-height: 1.7;
}
.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
}
.footer-socials a {
  width: 36px;
  height: 36px;
  display: inline-grid;
  place-items: center;
  color: #fff;
  background: rgba(255,255,255,.10);
  border-radius: 50%;
  font-size: 15px;
  font-weight: 800;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}
.footer-socials a:hover {
  color: #061724 !important;
  background: var(--lime);
  transform: translateY(-2px);
}
.footer-socials svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}
.footer-socials i {
  font-size: 16px;
  line-height: 1;
}
.modern-footer .footer-column h2 {
  margin: 0 0 16px;
  color: #fff;
  font-size: 16px;
  font-weight: 650;
  letter-spacing: -.01em;
  text-transform: none;
}
.modern-footer .footer-column ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.modern-footer .footer-column li {
  margin-bottom: 8px;
}
.modern-footer .footer-column a,
.modern-footer .footer-contact p,
.modern-footer .footer-hours p {
  color: #aaa;
  font-size: 14px;
  line-height: 1.6;
}
.modern-footer .footer-column a:hover {
  color: var(--lime) !important;
}
.modern-footer .footer-contact p,
.modern-footer .footer-hours p {
  margin: 0 0 12px;
}
.modern-footer .footer-hours-heading {
  margin-top: 24px !important;
}
.footer-bottom-modern {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 40px;
  padding: 20px 0;
  color: #aaa;
  border-top: 1px solid rgba(255,255,255,.10);
  font-size: 13px;
}
.footer-bottom-modern div {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-bottom-modern a {
  color: #aaa;
}
.footer-bottom-modern a:hover {
  color: var(--lime) !important;
}
[data-theme="dark"] .modern-footer {
  background: #101010;
}

@media (max-width: 1050px) {
  .footer-modern-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .modern-footer { padding-top: 46px; }
  .footer-modern-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer-bottom-modern {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* Day/night mode and frontend polish */
.theme-toggle {
  position: relative;
  display: inline-grid !important;
  flex: 0 0 auto;
  overflow: hidden;
  color: var(--navy-deep);
  background:
    linear-gradient(var(--surface), var(--surface)) padding-box,
    linear-gradient(135deg, rgba(32,183,185,.65), rgba(155,212,49,.75)) border-box;
  border-color: transparent;
  box-shadow: 0 8px 22px rgba(6,38,78,.08);
}
.theme-toggle::after {
  content: "";
  position: absolute;
  inset: 6px;
  z-index: -1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(155,212,49,.25), transparent 62%);
  transform: scale(.65);
  transition: transform .25s ease, background .25s ease;
}
.theme-toggle:hover::after { transform: scale(1); }
.theme-toggle svg {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  transition: opacity .22s ease, transform .22s ease;
}
.theme-toggle .sun-icon { opacity: 1; transform: translate(-50%, -50%) rotate(0) scale(1); }
.theme-toggle .moon-icon { opacity: 0; transform: translate(-50%, -50%) rotate(-30deg) scale(.7); }
[data-theme="dark"] .theme-toggle {
  color: #eaf7f6;
  background:
    linear-gradient(#102231, #102231) padding-box,
    linear-gradient(135deg, rgba(89,216,212,.7), rgba(155,212,49,.55)) border-box;
  box-shadow: 0 10px 26px rgba(0,0,0,.28);
}
[data-theme="dark"] .theme-toggle::after {
  background: radial-gradient(circle, rgba(89,216,212,.28), transparent 62%);
}
[data-theme="dark"] .theme-toggle .sun-icon { opacity: 0; transform: translate(-50%, -50%) rotate(30deg) scale(.7); }
[data-theme="dark"] .theme-toggle .moon-icon { opacity: 1; transform: translate(-50%, -50%) rotate(0) scale(1); }

.legal-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.legal-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

[data-theme="dark"] body { background: var(--ice); color: var(--text); }
[data-theme="dark"] .site-header,
[data-theme="dark"] .mobile-nav,
[data-theme="dark"] .legal-header {
  background: color-mix(in srgb, var(--surface) 94%, transparent);
  border-color: var(--border);
}
[data-theme="dark"] .icon-button {
  color: #eaf7f6;
  background: var(--surface);
  border-color: var(--border);
}
[data-theme="dark"] .hero-content::before {
  border-color: rgba(89,216,212,.18);
  background:
    linear-gradient(135deg, rgba(16,34,49,.74), rgba(16,34,49,.28)),
    radial-gradient(circle at 18% 22%, rgba(155,212,49,.12), transparent 30%),
    radial-gradient(circle at 82% 78%, rgba(89,216,212,.16), transparent 34%);
  box-shadow: 0 28px 80px rgba(0,0,0,.22);
}
[data-theme="dark"] .service-card,
[data-theme="dark"] .product-card,
[data-theme="dark"] .review-card,
[data-theme="dark"] .feature-card,
[data-theme="dark"] .blog-card,
[data-theme="dark"] .blog-feature,
[data-theme="dark"] .contact-card,
[data-theme="dark"] .platform-card,
[data-theme="dark"] .service-detail,
[data-theme="dark"] .article-sidebar,
[data-theme="dark"] .article-callout {
  background: var(--surface);
  border-color: var(--border);
}
[data-theme="dark"] .services-section,
[data-theme="dark"] .process-section,
[data-theme="dark"] .home-products,
[data-theme="dark"] .why-section,
[data-theme="dark"] .content-section.alt,
[data-theme="dark"] .legal-header {
  background: var(--ice);
}
[data-theme="dark"] .home-products .product-card { background: var(--surface); border-color: var(--border); }
[data-theme="dark"] .home-products .product-image,
[data-theme="dark"] .product-image {
  background: linear-gradient(145deg, #102231, #0b1d2a);
}
[data-theme="dark"] .why-list { border-color: var(--border); }
[data-theme="dark"] .legal-main,
[data-theme="dark"] .legal-main p,
[data-theme="dark"] .legal-main li { color: var(--muted); }
[data-theme="dark"] .legal-main h1,
[data-theme="dark"] .legal-main h2 { color: #fff; }

@media (max-width: 560px) {
  .legal-header .container { align-items: flex-start; flex-direction: column; }
  .legal-actions { width: 100%; justify-content: space-between; }
  .nav-actions { gap: 7px; }
}

/* Hero wow cascade lock — keep the animated hero above the final UI refresh */
.hero { isolation: isolate; }
.hero-content {
  position: relative;
  min-height: 520px;
}
.hero-content::before {
  content: "";
  position: absolute;
  z-index: -1;
  left: -34px;
  top: 58px;
  width: min(650px, 72vw);
  height: 455px;
  border: 1px solid rgba(32,183,185,.16);
  border-radius: 36px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.74), rgba(255,255,255,.28)),
    radial-gradient(circle at 18% 22%, rgba(155,212,49,.22), transparent 30%),
    radial-gradient(circle at 82% 78%, rgba(32,183,185,.18), transparent 34%);
  box-shadow: 0 28px 80px rgba(6,38,78,.08);
  transform: rotate(-1.2deg);
  animation: hero-card-breathe 7s ease-in-out infinite;
}
.hero .eyebrow.light { animation: hero-rise-in .72s ease both; }
.hero h1 { animation: hero-rise-in .85s cubic-bezier(.2,.78,.2,1) .08s both !important; }
.hero h1 em {
  position: relative;
  display: inline-block;
  text-shadow: 0 10px 34px rgba(32,183,185,.20);
  animation: clean-word-pulse 4.8s ease-in-out infinite;
}
.hero h1 em::after {
  content: "";
  position: absolute;
  inset: 6% -8% 2%;
  background: linear-gradient(110deg, transparent 0 38%, rgba(255,255,255,.74) 48%, transparent 58% 100%);
  transform: translateX(-120%) skewX(-18deg);
  animation: clean-shine 4.6s ease-in-out 1s infinite;
  pointer-events: none;
}
.hero-content > p { animation: hero-rise-in .85s cubic-bezier(.2,.78,.2,1) .18s both !important; }
.hero-actions { animation: hero-rise-in .85s cubic-bezier(.2,.78,.2,1) .30s both !important; }
.hero-trust { animation: hero-rise-in .85s cubic-bezier(.2,.78,.2,1) .45s both !important; }
.hero-display { animation: display-float 6s ease-in-out .4s infinite, hero-rise-in .9s cubic-bezier(.2,.78,.2,1) .36s both; }

@media (max-width: 1050px) {
  .hero-content::before { width: min(620px, 92vw); }
  .hero-display {
    position: relative;
    top: auto;
    right: auto;
    width: min(100%, 430px);
    margin-top: 28px;
  }
  .hero-trust { margin-top: 34px; }
}

@media (max-width: 820px) {
  .hero-content { min-height: 0; }
  .hero-content::before {
    left: -15px;
    top: 336px;
    width: calc(100% + 30px);
    height: 455px;
    border-radius: 26px;
  }
}

@media (max-width: 560px) {
  .hero-content::before {
    top: 284px;
    height: 520px;
    transform: none;
  }
}

/* Hero wow layer */
.hero { isolation: isolate; }
.hero-content { min-height: 520px; }
.hero-content::before {
  content: "";
  position: absolute;
  z-index: -1;
  left: -34px;
  top: 58px;
  width: min(650px, 72vw);
  height: 455px;
  border: 1px solid rgba(32,183,185,.16);
  border-radius: 36px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.74), rgba(255,255,255,.28)),
    radial-gradient(circle at 18% 22%, rgba(155,212,49,.22), transparent 30%),
    radial-gradient(circle at 82% 78%, rgba(32,183,185,.18), transparent 34%);
  box-shadow: 0 28px 80px rgba(6,38,78,.08);
  transform: rotate(-1.2deg);
  animation: hero-card-breathe 7s ease-in-out infinite;
}
.hero-ambient {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}
.hero-glow,
.hero-spark {
  position: absolute;
  display: block;
  border-radius: 999px;
}
.hero-glow {
  width: 180px;
  height: 180px;
  filter: blur(12px);
  opacity: .45;
  mix-blend-mode: multiply;
}
.hero-glow-one {
  left: -74px;
  top: 80px;
  background: radial-gradient(circle, rgba(155,212,49,.65), transparent 66%);
  animation: aurora-drift 9s ease-in-out infinite;
}
.hero-glow-two {
  left: 480px;
  top: 342px;
  background: radial-gradient(circle, rgba(32,183,185,.55), transparent 68%);
  animation: aurora-drift 11s ease-in-out -2s infinite reverse;
}
.hero-spark {
  width: 10px;
  height: 10px;
  background: var(--lime);
  box-shadow: 0 0 0 7px rgba(155,212,49,.15), 0 0 30px rgba(155,212,49,.45);
}
.spark-one { left: 54px; top: 360px; animation: sparkle-float 5.8s ease-in-out infinite; }
.spark-two { left: 420px; top: 112px; width: 7px; height: 7px; background: var(--teal); animation: sparkle-float 6.5s ease-in-out -1.4s infinite; }
.spark-three { left: 584px; top: 260px; width: 6px; height: 6px; animation: sparkle-float 7.2s ease-in-out -2.1s infinite; }
.hero .eyebrow.light { animation: hero-rise-in .72s ease both; }
.hero h1 {
  position: relative;
  animation: hero-rise-in .85s cubic-bezier(.2,.78,.2,1) .08s both !important;
}
.hero h1 em {
  position: relative;
  display: inline-block;
  text-shadow: 0 10px 34px rgba(32,183,185,.20);
  animation: clean-word-pulse 4.8s ease-in-out infinite;
}
.hero h1 em::after {
  content: "";
  position: absolute;
  inset: 6% -8% 2%;
  background: linear-gradient(110deg, transparent 0 38%, rgba(255,255,255,.74) 48%, transparent 58% 100%);
  transform: translateX(-120%) skewX(-18deg);
  animation: clean-shine 4.6s ease-in-out 1s infinite;
  pointer-events: none;
}
.hero-content > p { animation: hero-rise-in .85s cubic-bezier(.2,.78,.2,1) .18s both !important; }
.hero-actions { animation: hero-rise-in .85s cubic-bezier(.2,.78,.2,1) .30s both !important; }
.hero-actions .button-accent {
  position: relative;
  overflow: hidden;
  box-shadow: 0 16px 42px rgba(155,212,49,.24);
}
.hero-actions .button-accent::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, transparent 0 34%, rgba(255,255,255,.56) 48%, transparent 62% 100%);
  transform: translateX(-120%);
  animation: cta-sweep 3.8s ease-in-out 1.2s infinite;
}
.hero-trust { animation: hero-rise-in .85s cubic-bezier(.2,.78,.2,1) .45s both !important; }
.hero-trust div { transition: transform .25s ease, border-color .25s ease; }
.hero-trust div:hover {
  transform: translateY(-4px);
  border-color: var(--lime);
}
.hero-display {
  position: absolute;
  z-index: 4;
  top: 100px;
  right: 0;
  width: 322px;
  min-height: 178px;
  padding: 22px 22px 58px;
  color: white;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 28px;
  background:
    linear-gradient(145deg, rgba(3,27,56,.86), rgba(8,93,118,.68)),
    radial-gradient(circle at 20% 20%, rgba(155,212,49,.30), transparent 38%);
  box-shadow: 0 30px 80px rgba(3,27,56,.28);
  backdrop-filter: blur(18px);
  animation: display-float 6s ease-in-out .4s infinite, hero-rise-in .9s cubic-bezier(.2,.78,.2,1) .36s both;
}
.hero-display::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(155,212,49,.9), rgba(32,183,185,.14), rgba(255,255,255,.5));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.display-orbit {
  position: relative;
  width: 78px;
  height: 78px;
  display: grid;
  place-items: center;
  float: left;
  margin: 1px 18px 10px 0;
  border: 1px solid rgba(151,239,226,.5);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,.14), rgba(255,255,255,.03));
}
.display-orbit::before,
.display-orbit::after {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1px dashed rgba(151,239,226,.42);
  border-radius: 50%;
  animation: orbit-spin 10s linear infinite;
}
.display-orbit::after {
  inset: -7px;
  opacity: .55;
  animation-duration: 16s;
  animation-direction: reverse;
}
.display-orbit strong {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: var(--navy-deep);
  background: var(--lime);
  border-radius: 50%;
  font-size: 22px;
  line-height: 1;
}
.orbit-dot {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #8ff0e7;
  box-shadow: 0 0 18px rgba(143,240,231,.8);
}
.dot-one { top: 7px; left: 50%; }
.dot-two { right: 5px; bottom: 22px; background: var(--lime); }
.dot-three { left: 11px; bottom: 12px; }
.display-copy span {
  display: block;
  color: #9ff1e8;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.display-copy strong {
  display: block;
  margin-top: 4px;
  color: white;
  font-size: 23px;
  line-height: 1.05;
}
.display-copy em {
  display: block;
  margin-top: 8px;
  color: rgba(235,252,250,.78);
  font-size: 11px;
  font-style: normal;
}
.display-meter {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 24px;
  height: 7px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255,255,255,.16);
}
.display-meter span {
  display: block;
  width: 76%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--lime), #85f4e8);
  animation: meter-breathe 3.2s ease-in-out infinite;
}
.hero-floating-tags span {
  position: absolute;
  right: 18px;
  min-width: 70px;
  padding: 7px 11px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 999px;
  background: rgba(255,255,255,.12);
  color: #eafffb;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .08em;
  text-align: center;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}
.hero-floating-tags span:nth-child(1) { top: -16px; animation: chip-hover 5s ease-in-out infinite; }
.hero-floating-tags span:nth-child(2) { right: -18px; top: 72px; animation: chip-hover 6s ease-in-out -1s infinite; }
.hero-floating-tags span:nth-child(3) { right: 32px; bottom: -17px; animation: chip-hover 5.5s ease-in-out -2s infinite; }

@keyframes hero-card-breathe {
  0%, 100% { transform: rotate(-1.2deg) translateY(0); opacity: .86; }
  50% { transform: rotate(.5deg) translateY(-8px); opacity: 1; }
}
@keyframes hero-rise-in {
  from { opacity: 0; transform: translateY(24px) scale(.985); filter: blur(7px); }
  to { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }
}
@keyframes aurora-drift {
  0%, 100% { transform: translate3d(0,0,0) scale(1); }
  50% { transform: translate3d(28px,-22px,0) scale(1.16); }
}
@keyframes sparkle-float {
  0%, 100% { transform: translateY(0) scale(1); opacity: .55; }
  50% { transform: translateY(-22px) scale(1.35); opacity: 1; }
}
@keyframes clean-word-pulse {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}
@keyframes clean-shine {
  0%, 54% { transform: translateX(-120%) skewX(-18deg); opacity: 0; }
  64% { opacity: .95; }
  82%, 100% { transform: translateX(120%) skewX(-18deg); opacity: 0; }
}
@keyframes cta-sweep {
  0%, 42% { transform: translateX(-120%); }
  70%, 100% { transform: translateX(120%); }
}
@keyframes display-float {
  0%, 100% { transform: translateY(0) rotate(.6deg); }
  50% { transform: translateY(-13px) rotate(-.4deg); }
}
@keyframes orbit-spin {
  to { transform: rotate(360deg); }
}
@keyframes meter-breathe {
  0%, 100% { width: 62%; }
  50% { width: 88%; }
}
@keyframes chip-hover {
  0%, 100% { transform: translate3d(0,0,0); }
  50% { transform: translate3d(-7px,-8px,0); }
}

@media (max-width: 1050px) {
  .hero-content::before { width: min(620px, 92vw); }
  .hero-display {
    position: relative;
    top: auto;
    right: auto;
    width: min(100%, 430px);
    margin-top: 28px;
  }
  .hero-trust { margin-top: 34px; }
}

@media (max-width: 820px) {
  .hero-content { min-height: 0; }
  .hero-content::before {
    left: -15px;
    top: 336px;
    width: calc(100% + 30px);
    height: 455px;
    border-radius: 26px;
  }
  .hero-glow-one { top: 366px; }
  .hero-glow-two { left: 55%; top: 545px; }
  .spark-one { top: 680px; }
  .spark-two { left: 75%; top: 406px; }
  .spark-three { display: none; }
}

@media (max-width: 560px) {
  .hero-content::before {
    top: 284px;
    height: 520px;
    transform: none;
  }
  .hero-display {
    width: 100%;
    padding: 19px 18px 54px;
    border-radius: 22px;
  }
  .display-orbit {
    width: 66px;
    height: 66px;
    margin-right: 14px;
  }
  .display-copy strong { font-size: 20px; }
  .hero-floating-tags span:nth-child(2) { right: 10px; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-content::before,
  .hero-glow,
  .hero-spark,
  .hero .eyebrow.light,
  .hero h1,
  .hero h1 em,
  .hero h1 em::after,
  .hero-content > p,
  .hero-actions,
  .hero-actions .button-accent::after,
  .hero-trust,
  .hero-display,
  .display-orbit::before,
  .display-orbit::after,
  .display-meter span,
  .hero-floating-tags span {
    animation: none !important;
  }
}

@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; }
}

/* =========================================================
   ACLEANZ UI REFRESH — clean editorial corporate system
   ========================================================= */
:root {
  --ice: #f7faf9;
  --mint: #edf7f3;
  --surface: #ffffff;
  --text: #14263a;
  --muted: #607382;
  --border: #dce9e5;
  --shadow: 0 18px 55px rgba(6, 38, 78, .08);
  --radius: 22px;
  --container: 1280px;
  --header-height: 76px;
}

[data-theme="dark"] {
  --ice: #091722;
  --mint: #10252b;
  --surface: #102231;
  --text: #edf7f5;
  --muted: #a8bbc3;
  --border: #25404a;
  --shadow: 0 18px 55px rgba(0, 0, 0, .25);
}

body { background: var(--ice); letter-spacing: -.005em; }
.container { width: min(var(--container), calc(100% - 56px)); }
.topbar { display: none; }
.site-header { top: 0; background: color-mix(in srgb, var(--surface) 94%, transparent); border-color: var(--border); box-shadow: 0 8px 28px rgba(6, 38, 78, .04); }
.nav-wrap { min-height: 76px; }
.brand { gap: 11px; color: var(--navy-deep); font-size: 22px; }
.brand img { width: 42px; height: 42px; object-fit: contain; border-radius: 12px; mix-blend-mode: normal; }
.brand-tm { font-size: .34em; }
.brand small { margin-top: 6px; font-size: 7px; letter-spacing: .14em; }
.premium-nav { gap: 23px; }
.desktop-nav a, .nav-trigger { color: var(--text); font-size: 13px; font-weight: 650; }
.nav-trigger { padding: 25px 0; }
.desktop-nav a::after { bottom: -11px; height: 2px; border-radius: 99px; }
.nav-actions { gap: 9px; }
.icon-button { width: 40px; height: 40px; background: var(--surface); border-color: var(--border); }

.button { min-height: 48px; padding-inline: 23px; gap: 14px; border-radius: 999px; box-shadow: none; }
.button-small { min-height: 42px; padding-inline: 19px; }
.button:hover { transform: translateY(-2px); box-shadow: 0 10px 25px rgba(6,38,78,.13); }
.button-accent { color: var(--navy-deep); background: var(--lime); }

.mega-menu { top: calc(100% + 1px); overflow: hidden; border-radius: 0 0 24px 24px; box-shadow: 0 28px 70px rgba(6,38,78,.13); }
.mega-intro { padding: 36px; background: linear-gradient(145deg, #052d52, #0c5265); border-radius: 0; }
.mega-intro h2 { font-size: 29px; }
.mega-column { padding: 31px 27px; }
.mega-column a { padding: 11px 10px; border-radius: 10px; }

.hero { width: min(1500px, calc(100% - 32px)); min-height: 680px; margin: 18px auto 0; color: var(--text); background: #eff8f5; border: 1px solid #deebe7; border-radius: 32px; }
[data-theme="dark"] .hero { background: #0d242c; border-color: var(--border); }
.hero-media { inset: 22px 22px 22px 51.5%; border-radius: 24px; background-position: 60% center; animation: none; }
.hero-overlay { background: linear-gradient(90deg, #eff8f5 0%, #eff8f5 47%, rgba(239,248,245,.85) 51%, rgba(239,248,245,0) 68%); }
[data-theme="dark"] .hero-overlay { background: linear-gradient(90deg, #0d242c 0%, #0d242c 47%, rgba(13,36,44,.86) 52%, rgba(13,36,44,0) 70%); }
.hero::after { inset: auto auto -220px -120px; width: 520px; height: 520px; opacity: .5; background: radial-gradient(circle, rgba(32,183,185,.15), transparent 68%); mask-image: none; }
.hero-content { padding-block: 86px; color: var(--text); }
.hero h1 { max-width: 660px; margin: 22px 0 24px; color: var(--navy-deep); font-size: clamp(54px, 5.7vw, 80px); line-height: .98; letter-spacing: -.06em; animation: none; }
[data-theme="dark"] .hero h1 { color: white; }
.hero h1 em { color: var(--teal-dark); }
[data-theme="dark"] .hero h1 em { color: #59d8d4; }
.hero-content > p { max-width: 570px; margin-bottom: 30px; color: var(--muted); font-size: 17px; line-height: 1.65; animation: none; }
.hero-actions, .hero-trust { animation: none; }
.hero .button-ghost { color: var(--navy-deep); background: rgba(255,255,255,.7); border-color: #c8dcd6; }
[data-theme="dark"] .hero .button-ghost { color: white; background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.2); }
.hero-trust { grid-template-columns: repeat(3, minmax(120px,170px)); gap: 19px; margin-top: 50px; }
.hero-trust div { padding-left: 12px; border-color: var(--teal); }
.hero-trust strong { color: var(--navy-deep); font-size: 12px; }
[data-theme="dark"] .hero-trust strong { color: white; }
.hero-trust span { color: var(--muted); font-size: 9px; }
.scroll-cue { display: none; }
.trust-bar { width: min(1340px, calc(100% - 56px)); margin: 18px auto 0; color: var(--text); background: transparent; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.trust-grid { min-height: 72px; }
.trust-grid p { color: var(--text); border-color: var(--border); font-size: 10px; letter-spacing: .07em; }
.trust-grid span { color: var(--teal-dark); opacity: 1; }

.section, .content-section { padding-block: 94px; }
.section h2, .content-section .section-head h2, .inner-head h2, .copy-block h2 { font-size: clamp(40px, 4.5vw, 61px); line-height: 1.02; }
.eyebrow { color: var(--teal-dark); font-size: 10px; }
.eyebrow.light { color: #8ce0d7; }
.split-head { grid-template-columns: 1.08fr .7fr; gap: 60px; }
.split-head > p { font-size: 15px; line-height: 1.75; }
.section-head { margin-bottom: 45px; }

.services-section { background: var(--ice); }
.service-grid { gap: 18px; }
.service-card { border-radius: 24px; box-shadow: 0 8px 35px rgba(6,38,78,.04); }
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.service-card img { aspect-ratio: 1.58; }
.service-card-body { padding: 27px; }
.service-card h3 { font-size: 22px; }
.service-card p { line-height: 1.7; }
.service-card li { color: var(--teal-dark); background: var(--mint); border-radius: 999px; }

.technology-section { margin-inline: 16px; padding-block: 100px; background: linear-gradient(135deg, #031d37, #073d52); border-radius: 32px; }
.technology-grid { gap: 70px; }
.technology-section h2 { font-size: clamp(42px, 4.7vw, 64px); }
.technology-visual::before { inset: 16px -16px -16px 16px; border-radius: 24px; }
.technology-visual img { min-height: 500px; border-radius: 24px; }

.technology-visual img[src*="technology-facade-cleaning-system"] {
  aspect-ratio: 4 / 5;
  min-height: 560px;
  object-fit: cover;
  object-position: center center;
}
.tech-badge { left: -32px; width: 155px; padding: 20px; border-radius: 16px; }
.tech-points > div { padding: 15px 0; }

.process-section { background: linear-gradient(180deg, var(--surface), #f4fbf8); }
.process-icon { width: 68px; height: 68px; color: var(--teal-dark); background: var(--mint); border-width: 7px; }
.process-image { width: 100%; height: 100%; border-width: 0; }
.process-list h3 { font-size: 20px; }
.process-list p { line-height: 1.65; }

.why-section { background: #eef7f4; }
[data-theme="dark"] .why-section { background: var(--mint); }
.why-grid { gap: 78px; }
.why-visual img { min-height: 545px; border-radius: 28px; }
.floating-note { right: 18px; bottom: 18px; border-radius: 16px; }
.why-list > div { padding-block: 20px; }

.areas-section { margin-inline: 16px; background: linear-gradient(135deg, #06264e, #0b5262); border-radius: 32px; }
.area-checker, .quote-form { border-radius: 22px; box-shadow: 0 20px 60px rgba(0,0,0,.12); }
.input-row input { height: 54px; border-radius: 999px 0 0 999px; }
.input-row button { border-radius: 0 999px 999px 0; }

.faq-item button { min-height: 72px; font-size: 15px; }
.quote-section { margin-inline: 16px; background: linear-gradient(135deg, #041b38, #073c51); border-radius: 32px 32px 0 0; }
.field input, .field select { height: 50px; }
.field input, .field select, .field textarea { border-radius: 10px; }

.home-products .product-image img { aspect-ratio: .92; }
.product-card { border-radius: 22px; box-shadow: 0 8px 30px rgba(6,38,78,.04); }
.product-card:hover { transform: translateY(-4px); }
.product-body { padding: 22px; }
.review-card { border-radius: 20px; box-shadow: 0 8px 30px rgba(6,38,78,.035); }
.review-card blockquote { font-size: 18px; }

.page-hero { margin: 18px 16px 0; padding: 82px 0 76px; color: var(--text); background: linear-gradient(135deg, #eef8f5, #e8f4f7); border: 1px solid #dae9e5; border-radius: 30px; }
[data-theme="dark"] .page-hero { background: linear-gradient(135deg, #0d242c, #102c3a); border-color: var(--border); }
.page-hero::before { opacity: .28; background-size: 60px 60px; mask-image: linear-gradient(90deg, #000, transparent 65%); }
.page-hero::after { opacity: .55; }
.page-hero h1 { color: var(--navy-deep); font-size: clamp(48px, 6vw, 76px); }
[data-theme="dark"] .page-hero h1 { color: white; }
.page-hero h1 em { color: var(--teal-dark); }
[data-theme="dark"] .page-hero h1 em { color: #6edfd8; }
.page-hero p { color: var(--muted); font-size: 16px; line-height: 1.75; }
.breadcrumbs { color: var(--muted); }
.product-hero { background: linear-gradient(135deg, #eef8f5, #e7f2ff); }

.content-section.alt { background: var(--surface); }
.content-section.mint { background: #eef7f4; }
[data-theme="dark"] .content-section.mint { background: var(--mint); }
.editorial-image { min-height: 460px; border-radius: 26px; }
.feature-grid { gap: 16px; }
.feature-card { padding: 27px; border-radius: 20px; box-shadow: 0 8px 30px rgba(6,38,78,.035); }
.feature-card .feature-icon { margin-bottom: 23px; border-radius: 13px; }
.feature-card h3 { font-size: 18px; }
.feature-card p { line-height: 1.7; }
.proof-image { border-radius: 22px; }
.proof-image img { border-radius: 14px; }
.section-cta { padding: 38px 42px; border-radius: 24px; }
.service-detail { padding: 27px; border-radius: 20px; }
.industry-card { min-height: 140px; border-radius: 18px; }
.product-grid { gap: 18px; }
.product-image { background: linear-gradient(145deg, #f7f9f6, #edf3ef); }
.product-image img { aspect-ratio: .84; }
.product-tag { border-radius: 999px; }
.filter-bar button { padding: 10px 16px; }
.platform-card { border-radius: 20px; }
.platform-card .platform-logo { border-radius: 14px; }
.blog-feature, .blog-card { border-radius: 22px; }
.blog-feature-copy { padding: 44px; }
.blog-card-copy { padding: 22px; }
.article-hero { margin: 18px 16px 0; padding: 72px 0 58px; background: linear-gradient(135deg, var(--surface), var(--mint)); border: 1px solid var(--border); border-radius: 30px; }
.article-title { max-width: 980px; font-size: clamp(46px, 6.3vw, 76px); }
.article-dek { font-size: 17px; line-height: 1.75; }
.article-body > img { border-radius: 24px; }
.article-body p, .article-body li { font-size: 16px; line-height: 1.8; }
.article-callout, .article-sidebar { border-radius: 16px; }
.contact-card { border-radius: 18px; }
.legal-header { background: var(--surface); }
.legal-main { max-width: 850px; }
.site-footer { padding-top: 66px; background: #031a2e; }
.footer-grid { gap: 55px; }
.whatsapp { right: 20px; bottom: 20px; width: 52px; height: 52px; }

@media (max-width: 1050px) {
  .hero { min-height: 650px; }
  .hero-media { inset-inline-start: 55%; }
  .hero-overlay { background: linear-gradient(90deg, #eff8f5 0%, #eff8f5 52%, rgba(239,248,245,.55) 66%, transparent 78%); }
  [data-theme="dark"] .hero-overlay { background: linear-gradient(90deg, #0d242c 0%, #0d242c 52%, rgba(13,36,44,.55) 66%, transparent 78%); }
}

@media (max-width: 820px) {
  .container { width: min(var(--container), calc(100% - 38px)); }
  .nav-wrap { min-height: 70px; }
  .mobile-nav { inset-block-start: 70px; max-height: calc(100svh - 70px); overflow-y: auto; padding: 20px 24px 30px; }
  .hero { width: calc(100% - 20px); min-height: auto; border-radius: 26px; }
  .hero-media { inset: 14px 14px auto; height: 320px; background-position: 63% center; border-radius: 20px; }
  .hero-overlay { background: linear-gradient(180deg, transparent 0 305px, #eff8f5 360px); }
  [data-theme="dark"] .hero-overlay { background: linear-gradient(180deg, transparent 0 305px, #0d242c 360px); }
  .hero-content { padding-block: 370px 60px; }
  .hero h1 { max-width: 680px; font-size: clamp(49px, 10vw, 69px); }
  .hero-content > p { max-width: 650px; }
  .hero-trust { grid-template-columns: repeat(3, 1fr); }
  .trust-bar { width: calc(100% - 38px); }
  .technology-section, .areas-section, .quote-section { margin-inline: 10px; border-radius: 26px; }
  .page-hero, .article-hero { margin-inline: 10px; border-radius: 26px; }
  .section, .content-section { padding-block: 78px; }
}

@media (max-width: 560px) {
  .container { width: min(100% - 28px, var(--container)); }
  .brand { font-size: 19px; }
  .brand img { width: 39px; height: 39px; }
  .hero { margin-top: 10px; }
  .hero-media { height: 260px; }
  .hero-overlay { background: linear-gradient(180deg, transparent 0 245px, #eff8f5 295px); }
  [data-theme="dark"] .hero-overlay { background: linear-gradient(180deg, transparent 0 245px, #0d242c 295px); }
  .hero-content { padding-block: 305px 44px; }
  .hero h1 { margin-top: 17px; font-size: clamp(42px, 13vw, 56px); }
  .hero-content > p { font-size: 15px; }
  .hero-trust { grid-template-columns: 1fr; margin-top: 36px; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .trust-grid p { font-size: 9px; }
  .section, .content-section { padding-block: 66px; }
  .section h2, .content-section .section-head h2, .inner-head h2, .copy-block h2 { font-size: 39px; }
  .split-head { gap: 18px; }
  .technology-section { padding-block: 70px; }
  .technology-visual img { min-height: 285px; }
  .areas-section, .quote-section { margin-inline: 0; border-radius: 0; }
  .page-hero, .article-hero { margin: 8px 8px 0; padding-block: 60px 52px; border-radius: 22px; }
  .page-hero h1, .article-title { font-size: 43px; }
  .page-hero-grid { gap: 18px; }
  .service-card, .product-card, .review-card, .feature-card, .blog-card { border-radius: 18px; }
  .section-cta { padding: 28px 23px; border-radius: 19px; }
}

/* Final card and media normalisation */
.theme-toggle { display: inline-grid !important; }
.service-grid { align-items: stretch; }
.service-card,
.service-card:last-child { display: flex; min-width: 0; flex-direction: column; grid-column: auto; }
.service-card img,
.service-card:nth-child(3) img,
.service-card:last-child img { width: 100%; height: 275px; flex: 0 0 275px; aspect-ratio: auto; object-fit: cover; object-position: center; }
.service-card:nth-child(3) img { object-position: center 42%; }
.service-card-body { display: flex; flex: 1; flex-direction: column; }
.service-card-body .text-link { margin-top: auto; padding-top: 6px; }

.home-products { background: #f2f8f6; }
.home-products .product-card { background: #fff; border-color: #dce9e5; }
.home-products .product-image { height: 360px; padding: 18px; background: linear-gradient(145deg, #fbfcfb, #eef5f1); }
.home-products .product-image img,
.product-image img { width: 100%; height: 100%; padding: 12px; aspect-ratio: auto; object-fit: contain; object-position: center; }
.home-products .product-body { min-height: 205px; display: flex; flex-direction: column; }
.home-products .product-body .text-link { margin-top: auto; }
.product-grid .product-card { display: flex; flex-direction: column; }
.product-grid .product-body { flex: 1; }
.why-visual img { object-position: center 46%; }
.why-section { background: #f7faf9; }

@media (max-width: 820px) {
  .service-card:last-child { grid-column: 1 / -1; }
  .home-products .product-image { height: 320px; }
}

@media (max-width: 560px) {
  .service-card img,
  .service-card:nth-child(3) img,
  .service-card:last-child img { height: 225px; flex-basis: 225px; }
  .home-products .product-image { height: 300px; }
}

/* Hero wow final override — intentionally last */
.hero { isolation: isolate; }
.hero-content {
  position: relative;
  min-height: 520px;
}
.hero-content::before {
  content: "";
  position: absolute;
  z-index: -1;
  left: -34px;
  top: 58px;
  width: min(650px, 72vw);
  height: 455px;
  border: 1px solid rgba(32,183,185,.16);
  border-radius: 36px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.74), rgba(255,255,255,.28)),
    radial-gradient(circle at 18% 22%, rgba(155,212,49,.22), transparent 30%),
    radial-gradient(circle at 82% 78%, rgba(32,183,185,.18), transparent 34%);
  box-shadow: 0 28px 80px rgba(6,38,78,.08);
  transform: rotate(-1.2deg);
  animation: hero-card-breathe 7s ease-in-out infinite;
}
.hero .eyebrow.light { animation: hero-rise-in .72s ease both; }
.hero h1 { animation: hero-rise-in .85s cubic-bezier(.2,.78,.2,1) .08s both !important; }
.hero h1 em {
  position: relative;
  display: inline-block;
  text-shadow: 0 10px 34px rgba(32,183,185,.20);
  animation: clean-word-pulse 4.8s ease-in-out infinite;
}
.hero h1 em::after {
  content: "";
  position: absolute;
  inset: 6% -8% 2%;
  background: linear-gradient(110deg, transparent 0 38%, rgba(255,255,255,.74) 48%, transparent 58% 100%);
  transform: translateX(-120%) skewX(-18deg);
  animation: clean-shine 4.6s ease-in-out 1s infinite;
  pointer-events: none;
}
.hero-content > p { animation: hero-rise-in .85s cubic-bezier(.2,.78,.2,1) .18s both !important; }
.hero-actions { animation: hero-rise-in .85s cubic-bezier(.2,.78,.2,1) .30s both !important; }
.hero-trust { animation: hero-rise-in .85s cubic-bezier(.2,.78,.2,1) .45s both !important; }
.hero-display { animation: display-float 6s ease-in-out .4s infinite, hero-rise-in .9s cubic-bezier(.2,.78,.2,1) .36s both; }

@media (max-width: 1050px) {
  .hero-content::before { width: min(620px, 92vw); }
  .hero-display {
    position: relative;
    top: auto;
    right: auto;
    width: min(100%, 430px);
    margin-top: 28px;
  }
  .hero-trust { margin-top: 34px; }
}

@media (max-width: 820px) {
  .hero-content { min-height: 0; }
  .hero-content::before {
    left: -15px;
    top: 336px;
    width: calc(100% + 30px);
    height: 455px;
    border-radius: 26px;
  }
}

@media (max-width: 560px) {
  .hero-content::before {
    top: 284px;
    height: 520px;
    transform: none;
  }
}

/* Product mobile grid lock */
@media (max-width: 560px) {
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }
  .home-products .product-image,
  .product-image {
    height: 190px;
    padding: 10px;
  }
  .product-image img {
    padding: 6px;
  }
  .product-body {
    padding: 14px;
  }
  .home-products .product-body {
    min-height: 190px;
  }
  .product-body h2 {
    font-size: 16px;
    line-height: 1.15;
  }
  .product-body p {
    font-size: 10px;
    line-height: 1.5;
  }
  .product-tag {
    left: 9px;
    top: 9px;
    max-width: calc(100% - 18px);
    font-size: 7px;
  }
  .product-meta {
    flex-direction: column;
    gap: 4px;
  }
}

@media (max-width: 380px) {
  .product-grid {
    gap: 9px;
  }
  .home-products .product-image,
  .product-image {
    height: 160px;
  }
  .product-body {
    padding: 12px 10px;
  }
  .home-products .product-body {
    min-height: 185px;
  }
  .product-body h2 {
    font-size: 14px;
  }
  .product-body small,
  .product-meta {
    font-size: 7px;
  }
}
/* Product catalogue polish */
.product-catalogue-section {
  background:
    radial-gradient(circle at 12% 0%, rgba(32,183,185,.12), transparent 30%),
    linear-gradient(180deg, #f7fbf9, #eef6f3);
}

.product-catalogue-section .inner-head {
  max-width: 850px;
  margin-bottom: 28px;
}

.catalogue-toolbar {
  position: sticky;
  z-index: 8;
  top: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 24px;
  padding: 12px;
  background: rgba(255,255,255,.86);
  border: 1px solid rgba(20,79,93,.12);
  border-radius: 20px;
  box-shadow: 0 16px 44px rgba(6,38,78,.07);
  backdrop-filter: blur(14px);
}

.product-catalogue-section .filter-bar {
  flex: 1;
  flex-wrap: nowrap;
  gap: 10px;
  margin: 0;
  overflow-x: auto;
  scrollbar-width: none;
}

.product-catalogue-section .filter-bar::-webkit-scrollbar {
  display: none;
}

.product-catalogue-section .filter-bar button {
  flex: 0 0 auto;
  min-height: 42px;
  padding: 11px 16px;
  color: var(--navy-deep);
  background: #fff;
  border-color: rgba(20,79,93,.14);
  box-shadow: inset 0 -1px 0 rgba(6,38,78,.04);
  font-size: 11px;
  transition: color .2s, background .2s, border-color .2s, transform .2s;
}

.product-catalogue-section .filter-bar button:hover {
  transform: translateY(-1px);
  border-color: rgba(0,114,126,.34);
}

.product-catalogue-section .filter-bar button.active,
.product-catalogue-section .filter-bar button[aria-pressed="true"] {
  color: #fff;
  background: linear-gradient(135deg, var(--navy), var(--teal-dark));
  border-color: transparent;
}

.filter-status {
  flex: 0 0 auto;
  margin: 0;
  padding-inline: 4px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
  white-space: nowrap;
}

.product-catalogue-section .catalogue-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
}

.product-catalogue-section .product-card {
  display: grid;
  grid-template-columns: minmax(210px, .92fr) minmax(0, 1fr);
  min-height: 318px;
  overflow: hidden;
  background: rgba(255,255,255,.96);
  border-color: rgba(20,79,93,.13);
  border-radius: 24px;
  box-shadow: 0 18px 50px rgba(6,38,78,.075);
}

.product-catalogue-section .product-image {
  height: 100%;
  min-height: 318px;
  padding: 18px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.7), rgba(235,245,240,.9)),
    radial-gradient(circle at 50% 30%, rgba(155,212,49,.18), transparent 45%);
}

.product-catalogue-section .product-image img {
  width: 100%;
  height: 100%;
  padding: 0;
  aspect-ratio: auto;
  object-fit: contain;
  object-position: center;
}

.product-catalogue-section .product-tag {
  left: 14px;
  top: 14px;
  padding: 7px 10px;
  color: var(--navy-deep);
  background: var(--lime);
  border: 3px solid rgba(255,255,255,.82);
  font-size: 8px;
  box-shadow: 0 10px 22px rgba(6,38,78,.12);
}

.product-catalogue-section .product-body {
  display: flex;
  min-width: 0;
  flex: 1;
  flex-direction: column;
  padding: 26px;
}

.product-catalogue-section .product-body small {
  color: var(--teal-dark);
  font-size: 10px;
}

.product-catalogue-section .product-body h2 {
  margin: 8px 0 10px;
  color: var(--navy-deep);
  font-size: clamp(21px, 1.8vw, 28px);
  line-height: 1.04;
  letter-spacing: -.04em;
}

.product-catalogue-section .product-body p {
  margin: 0;
  color: #587084;
  font-size: 13px;
  line-height: 1.65;
}

.product-catalogue-section .product-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-top: auto;
  padding-top: 22px;
  border-top-color: rgba(20,79,93,.12);
  font-size: 10px;
}

.product-catalogue-section .product-meta span {
  min-width: 0;
  padding: 9px 10px;
  overflow-wrap: anywhere;
  color: var(--navy-deep);
  background: #f2f8f5;
  border: 1px solid rgba(20,79,93,.1);
  border-radius: 12px;
  font-weight: 750;
  text-align: center;
}

@media (max-width: 1050px) {
  .product-catalogue-section .product-card {
    grid-template-columns: 1fr;
  }

  .product-catalogue-section .product-image {
    height: 310px;
    min-height: 310px;
  }
}

@media (max-width: 700px) {
  .catalogue-toolbar {
    top: 72px;
    display: block;
    padding: 10px;
    border-radius: 18px;
  }

  .filter-status {
    margin-top: 10px;
    padding-left: 4px;
    font-size: 11px;
  }

  .product-catalogue-section .catalogue-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .product-catalogue-section .product-card {
    min-height: 0;
    border-radius: 18px;
  }

  .product-catalogue-section .product-image {
    height: 188px;
    min-height: 188px;
    padding: 10px;
  }

  .product-catalogue-section .product-body {
    min-height: 172px;
    padding: 14px;
  }

  .product-catalogue-section .product-body small {
    font-size: 8px;
  }

  .product-catalogue-section .product-body h2 {
    margin-block: 6px;
    font-size: clamp(14px, 4vw, 17px);
    line-height: 1.12;
  }

  .product-catalogue-section .product-body p {
    display: -webkit-box;
    overflow: hidden;
    font-size: 10px;
    line-height: 1.45;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .product-catalogue-section .product-meta {
    grid-template-columns: 1fr;
    gap: 5px;
    padding-top: 10px;
    font-size: 8px;
  }

  .product-catalogue-section .product-meta span {
    padding: 6px 7px;
    border-radius: 9px;
  }

  .product-catalogue-section .product-tag {
    left: 8px;
    top: 8px;
    max-width: calc(100% - 16px);
    padding: 5px 7px;
    font-size: 7px;
    border-width: 2px;
  }
}

@media (max-width: 380px) {
  .product-catalogue-section .catalogue-grid {
    gap: 9px;
  }

  .product-catalogue-section .product-image {
    height: 160px;
    min-height: 160px;
  }

  .product-catalogue-section .product-body {
    min-height: 160px;
    padding: 11px 10px;
  }
}

/* Final responsive hardening — EOF cascade lock */
html,
body {
  max-width: 100%;
  overflow-x: clip;
}

img,
svg,
video,
canvas {
  max-width: 100%;
}

.container,
.hero,
.section,
.content-section,
.site-header,
.site-footer,
.footer-modern-grid,
.service-grid,
.product-grid,
.quote-grid,
.areas-grid,
.two-column,
.page-hero-grid,
.article-layout {
  min-width: 0;
}

.footer-modern-grid > *,
.service-grid > *,
.product-grid > *,
.quote-grid > *,
.areas-grid > *,
.two-column > *,
.page-hero-grid > *,
.article-layout > * {
  min-width: 0;
}

.brand span,
.footer-column a,
.footer-contact p,
.footer-hours p {
  overflow-wrap: anywhere;
}

@media (max-width: 380px) {
  .container { width: min(100% - 24px, var(--container)); }
  .hero { width: calc(100% - 16px); }
  .areas-section,
  .technology-section,
  .quote-section,
  .page-hero,
  .article-hero {
    margin-inline: 0;
    border-radius: 0;
  }
  .areas-grid,
  .quote-grid,
  .technology-grid,
  .why-grid,
  .faq-grid {
    width: min(100% - 24px, var(--container));
    gap: 24px;
  }
  .areas-section h2,
  .quote-section h2,
  .technology-section h2,
  .page-hero h1,
  .article-title {
    font-size: clamp(34px, 11vw, 43px);
  }
  .location-chips { gap: 7px; }
  .location-chips span { padding: 6px 10px; font-size: 10px; }
  .area-checker,
  .quote-form { padding: 22px 16px; }
  .input-row {
    flex-direction: column;
    gap: 10px;
  }
  .input-row input,
  .input-row button {
    width: 100%;
    border-radius: 999px;
  }
  .hero-display { width: 100%; }
  .hero-floating-tags span { min-width: auto; }
  .whatsapp {
    right: 14px;
    bottom: 14px;
    width: 48px;
    height: 48px;
  }
}

@supports not (overflow: clip) {
  html,
  body { overflow-x: hidden; }
}
