:root {
  --navy: #062f4d;
  --navy-2: #0a436b;
  --blue: #19abc5;
  --blue-soft: #e9f8fb;
  --yellow: #ffc400;
  --ink: #0d1b26;
  --muted: #61707c;
  --line: #dfe8ed;
  --offwhite: #f7fafb;
  --white: #ffffff;
  --black: #0b0f13;
  --green: #25d366;
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 34px;
  --shadow-soft: 0 18px 60px rgba(4, 46, 74, .10);
  --shadow-strong: 0 30px 90px rgba(4, 46, 74, .18);
  --container: min(1180px, calc(100% - 40px));
  --ease: cubic-bezier(.2,.8,.2,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button { color: inherit; }
svg { display: block; }
address { font-style: normal; }

.container { width: var(--container); margin-inline: auto; }
.section { position: relative; padding: 110px 0; }

.skip-link {
  position: fixed; top: 8px; left: 8px; z-index: 9999;
  transform: translateY(-160%); padding: 10px 14px; border-radius: 8px;
  background: var(--white); color: var(--ink); box-shadow: var(--shadow-soft);
}
.skip-link:focus { transform: translateY(0); }

.ubuild-bar { height: 38px; background: #0b0e11; color: rgba(255,255,255,.7); font-size: 12px; letter-spacing: .01em; }
.ubuild-bar__inner { height: 100%; display: flex; align-items: center; justify-content: center; gap: 14px; }
.ubuild-bar a { color: var(--white); font-weight: 650; transition: opacity .2s ease; }
.ubuild-bar a:hover { opacity: .75; }
.mobile-only { display: none; }

.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.92);
  border-bottom: 1px solid transparent;
  transition: background .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
}
.site-header.scrolled { background: rgba(255,255,255,.80); backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px); border-color: rgba(4,46,74,.08); box-shadow: 0 10px 30px rgba(4,46,74,.06); }
.nav-shell { min-height: 84px; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 34px; }
.brand { display: inline-flex; align-items: center; gap: 12px; min-width: max-content; }
.brand img { width: 58px; height: 58px; object-fit: contain; }
.brand-copy { display: grid; line-height: 1.05; gap: 5px; }
.brand-copy strong { font-size: 16px; letter-spacing: -.02em; color: var(--navy); }
.brand-copy small { font-size: 11px; color: var(--muted); }
.nav-links { display: flex; align-items: center; justify-content: center; gap: 26px; }
.nav-links a { font-size: 14px; font-weight: 600; color: #374652; position: relative; padding: 10px 0; }
.nav-links a::after { content: ""; position: absolute; left: 0; right: 0; bottom: 4px; height: 1px; background: var(--navy); transform: scaleX(0); transform-origin: left; transition: transform .25s var(--ease); }
.nav-links a:hover::after { transform: scaleX(1); }
.menu-toggle { display: none; width: 44px; height: 44px; border: 0; border-radius: 12px; background: var(--offwhite); padding: 0; place-items: center; cursor: pointer; }
.menu-toggle span { display: block; width: 20px; height: 2px; background: var(--navy); transition: transform .25s var(--ease); }
.menu-toggle span + span { margin-top: 5px; }

.button {
  min-height: 48px; display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 0 19px; border-radius: 999px; font-weight: 700; font-size: 14px; letter-spacing: -.01em;
  border: 1px solid transparent; transition: transform .22s var(--ease), box-shadow .22s var(--ease), background .22s var(--ease), border-color .22s var(--ease);
  white-space: nowrap;
}
.button:hover { transform: translateY(-2px); }
.button:focus-visible, .nav-links a:focus-visible, .text-link:focus-visible, .location-link:focus-visible { outline: 3px solid rgba(25,171,197,.35); outline-offset: 3px; }
.button svg { width: 18px; height: 18px; fill: currentColor; }
.button--dark { background: var(--navy); color: var(--white); box-shadow: 0 10px 22px rgba(6,47,77,.14); }
.button--dark:hover { background: var(--navy-2); box-shadow: 0 14px 30px rgba(6,47,77,.2); }
.button--primary { min-height: 54px; padding-inline: 23px; background: var(--navy); color: var(--white); box-shadow: 0 14px 34px rgba(6,47,77,.18); }
.button--primary:hover { background: var(--navy-2); box-shadow: 0 18px 40px rgba(6,47,77,.24); }
.button--ghost { min-height: 54px; background: transparent; color: var(--navy); border-color: rgba(6,47,77,.16); }
.button--ghost:hover { border-color: rgba(6,47,77,.35); background: rgba(6,47,77,.03); }
.button--light { background: var(--white); color: var(--navy); box-shadow: 0 12px 30px rgba(0,0,0,.12); }
.button--light:hover { box-shadow: 0 16px 36px rgba(0,0,0,.18); }
.button--accent { background: var(--yellow); color: #171b1e; box-shadow: 0 14px 34px rgba(255,196,0,.22); }
.button--accent:hover { box-shadow: 0 18px 44px rgba(255,196,0,.3); }

.hero { overflow: hidden; padding-top: 76px; padding-bottom: 88px; background: linear-gradient(180deg, #fff 0%, #fbfdfe 100%); }
.hero::before { content: ""; position: absolute; inset: auto auto -24% -12%; width: 420px; height: 420px; border-radius: 50%; background: radial-gradient(circle, rgba(25,171,197,.10), transparent 70%); filter: blur(10px); pointer-events: none; }
.hero-glow { position: absolute; width: 520px; height: 520px; top: -240px; right: -180px; border-radius: 50%; background: radial-gradient(circle, rgba(255,196,0,.10), transparent 65%); pointer-events: none; }
.hero-grid { display: grid; grid-template-columns: 1.02fr .98fr; align-items: center; gap: 70px; }
.hero-copy { position: relative; z-index: 2; max-width: 660px; }
.eyebrow { display: inline-flex; align-items: center; gap: 10px; padding: 9px 13px; border: 1px solid rgba(6,47,77,.10); border-radius: 999px; background: rgba(255,255,255,.78); color: var(--navy); font-size: 11px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.eyebrow-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--yellow); box-shadow: 0 0 0 5px rgba(255,196,0,.14); }
.hero h1 { margin: 28px 0 20px; max-width: 700px; font-size: clamp(3.45rem, 6.2vw, 5.65rem); line-height: .96; letter-spacing: -.065em; font-weight: 780; color: var(--ink); }
.hero h1 span { color: var(--navy); position: relative; }
.hero h1 span::after { content: ""; position: absolute; left: .04em; bottom: -.08em; width: 66%; height: .1em; border-radius: 99px; background: var(--yellow); opacity: .88; }
.hero-lead { max-width: 610px; margin: 0; font-size: 18px; line-height: 1.7; color: #52616d; }
.hero-actions { display: flex; align-items: center; gap: 12px; margin-top: 34px; }
.hero-proof { margin-top: 46px; padding-top: 24px; border-top: 1px solid var(--line); display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.hero-proof div { display: grid; gap: 3px; }
.hero-proof strong { font-size: 13px; color: var(--navy); }
.hero-proof span { font-size: 11px; color: #7a8791; }

.hero-media { position: relative; }
.hero-media::before { content: ""; position: absolute; inset: 7% -6% -5% 8%; border-radius: 38px; background: linear-gradient(140deg, rgba(25,171,197,.17), rgba(255,196,0,.14)); filter: blur(2px); }
.hero-media__frame { min-height: 620px; border-radius: 38px; overflow: hidden; position: relative; box-shadow: var(--shadow-strong); background: #dfe8ed; }
.hero-media__frame > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 54% center; transition: transform .8s var(--ease); }
.hero-media__frame:hover > img { transform: scale(1.02); }
.hero-media__shade { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(6,47,77,.02), rgba(6,47,77,.18)); }
.hero-chip { position: absolute; z-index: 2; display: flex; align-items: center; gap: 11px; padding: 12px 14px; border-radius: 17px; background: rgba(255,255,255,.88); border: 1px solid rgba(255,255,255,.74); backdrop-filter: blur(14px); box-shadow: 0 10px 35px rgba(6,47,77,.14); }
.hero-chip strong { display: block; color: var(--navy); font-size: 12px; line-height: 1.2; }
.hero-chip small { display: block; color: #6e7c86; font-size: 10px; margin-top: 3px; }
.hero-chip--top { top: 22px; right: 22px; }
.hero-chip--bottom { bottom: 22px; left: 22px; }
.chip-icon { width: 32px; height: 32px; border-radius: 10px; display: grid; place-items: center; background: var(--blue-soft); color: var(--blue); font-size: 17px; }
.status-dot { width: 9px; height: 9px; border-radius: 50%; background: #2ecc71; box-shadow: 0 0 0 6px rgba(46,204,113,.13); margin-inline: 6px 3px; }

.trust-strip { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--offwhite); }
.trust-strip__track { min-height: 68px; display: flex; align-items: center; justify-content: space-between; gap: 18px; color: #52616d; font-size: 11px; font-weight: 780; letter-spacing: .09em; text-transform: uppercase; }
.trust-strip i { width: 5px; height: 5px; border-radius: 50%; background: var(--yellow); opacity: .9; }

.section-heading { display: grid; grid-template-columns: 1.15fr .65fr; align-items: end; gap: 70px; margin-bottom: 48px; }
.section-heading--compact { margin-bottom: 44px; }
.section-kicker { display: block; margin-bottom: 14px; color: var(--blue); font-size: 11px; font-weight: 850; letter-spacing: .15em; text-transform: uppercase; }
.section-kicker--light { color: #77d8e7; }
.section-heading h2, .process-intro h2, .about-copy h2, .location-copy h2, .final-cta h2, .climate-copy h2 { margin: 0; font-size: clamp(2.3rem, 4.2vw, 4.1rem); line-height: 1.03; letter-spacing: -.055em; color: var(--ink); }
.section-heading p { margin: 0; color: var(--muted); font-size: 16px; line-height: 1.75; }

.services { background: var(--white); }
.services-layout { display: grid; grid-template-columns: 1.08fr .92fr; gap: 18px; }
.service-feature { min-height: 570px; border-radius: var(--radius-lg); padding: 34px; background: linear-gradient(145deg, var(--navy), #0b4c77); color: var(--white); display: flex; flex-direction: column; overflow: hidden; position: relative; box-shadow: var(--shadow-soft); }
.service-feature::before { content: ""; position: absolute; width: 360px; height: 360px; right: -140px; top: -80px; border-radius: 50%; border: 1px solid rgba(255,255,255,.12); box-shadow: 0 0 0 60px rgba(255,255,255,.025), 0 0 0 120px rgba(255,255,255,.018); }
.service-feature::after { content: ""; position: absolute; right: 28px; bottom: 24px; width: 96px; height: 7px; border-radius: 99px; background: var(--yellow); opacity: .96; }
.service-feature__top { display: flex; justify-content: space-between; align-items: center; position: relative; z-index: 2; }
.service-number { font-size: 12px; color: rgba(255,255,255,.55); letter-spacing: .14em; }
.service-symbol { width: 54px; height: 54px; display: grid; place-items: center; border-radius: 17px; background: rgba(255,255,255,.10); border: 1px solid rgba(255,255,255,.12); font-size: 26px; }
.service-feature__copy { margin-top: auto; position: relative; z-index: 2; max-width: 520px; }
.service-label { color: #80ddeb; font-size: 11px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.service-feature h3 { margin: 10px 0 12px; font-size: clamp(2.9rem, 5vw, 4.9rem); letter-spacing: -.06em; line-height: .95; }
.service-feature p { margin: 0; max-width: 510px; color: rgba(255,255,255,.72); font-size: 16px; line-height: 1.7; }
.service-pills { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 26px; position: relative; z-index: 2; }
.service-pills span { padding: 9px 12px; border-radius: 999px; border: 1px solid rgba(255,255,255,.15); background: rgba(255,255,255,.06); color: rgba(255,255,255,.85); font-size: 11px; }
.text-link { margin-top: 24px; display: inline-flex; align-items: center; gap: 8px; width: max-content; font-size: 13px; font-weight: 750; color: var(--white); position: relative; z-index: 2; }
.text-link span { transition: transform .2s var(--ease); }
.text-link:hover span { transform: translate(3px,-3px); }
.services-stack { display: grid; gap: 18px; grid-template-rows: repeat(3, 1fr); }
.service-card { padding: 30px; border-radius: var(--radius-md); background: var(--offwhite); border: 1px solid #e6edf1; transition: transform .25s var(--ease), border-color .25s var(--ease), box-shadow .25s var(--ease); }
.service-card:hover { transform: translateY(-4px); border-color: rgba(6,47,77,.16); box-shadow: var(--shadow-soft); }
.service-card__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.service-card__head span { font-size: 11px; color: #90a0aa; }
.service-card__head svg { width: 27px; height: 27px; fill: none; stroke: var(--navy); stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.service-card h3 { margin: 0 0 6px; font-size: 24px; letter-spacing: -.035em; }
.service-card p { margin: 0; color: var(--muted); line-height: 1.65; font-size: 14px; max-width: 420px; }

.climate { overflow: hidden; background: var(--navy); color: var(--white); padding-block: 120px; }
.climate-grid { position: absolute; inset: 0; opacity: .12; 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: 56px 56px; mask-image: linear-gradient(90deg, transparent 0%, black 35%, black 100%); }
.climate::before { content: ""; position: absolute; width: 520px; height: 520px; border-radius: 50%; background: radial-gradient(circle, rgba(25,171,197,.24), transparent 68%); right: -180px; top: -220px; }
.climate-inner { position: relative; z-index: 2; display: grid; grid-template-columns: .95fr 1.05fr; gap: 100px; align-items: center; }
.climate-copy h2 { color: var(--white); }
.climate-copy p { margin: 22px 0 30px; color: rgba(255,255,255,.68); font-size: 16px; line-height: 1.75; max-width: 590px; }
.climate-steps { display: grid; }
.climate-step { display: grid; grid-template-columns: 58px 1fr; gap: 18px; align-items: start; padding: 26px 0; border-bottom: 1px solid rgba(255,255,255,.14); }
.climate-step:first-child { border-top: 1px solid rgba(255,255,255,.14); }
.climate-step > span { color: var(--yellow); font-size: 12px; font-weight: 800; letter-spacing: .12em; padding-top: 4px; }
.climate-step strong { display: block; font-size: 19px; letter-spacing: -.02em; }
.climate-step small { display: block; margin-top: 5px; color: rgba(255,255,255,.58); font-size: 13px; }

.applications { background: var(--offwhite); }
.gallery-grid { display: grid; grid-template-columns: 1.18fr .82fr; grid-template-rows: 270px 270px; gap: 18px; }
.gallery-card { position: relative; overflow: hidden; border-radius: 28px; margin: 0; min-height: 0; box-shadow: 0 12px 45px rgba(6,47,77,.08); background: #dfe5e8; }
.gallery-card--large { grid-row: 1 / span 2; }
.gallery-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease), filter .4s var(--ease); }
.gallery-card:hover img { transform: scale(1.025); }
.gallery-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 42%, rgba(5,28,43,.75) 100%); }
.gallery-card figcaption { position: absolute; z-index: 2; left: 24px; right: 24px; bottom: 22px; color: var(--white); display: grid; gap: 2px; }
.gallery-card figcaption span { font-size: 10px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; color: #9ee6f0; }
.gallery-card figcaption strong { font-size: 20px; letter-spacing: -.025em; }
.gallery-card figcaption small { margin-top: 4px; color: rgba(255,255,255,.62); font-size: 10px; }

.process { background: var(--white); }
.process-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 110px; align-items: start; }
.process-intro { position: sticky; top: 130px; }
.process-intro p { color: var(--muted); margin: 20px 0 0; max-width: 430px; font-size: 16px; line-height: 1.7; }
.process-list { display: grid; }
.process-item { display: grid; grid-template-columns: 70px 1fr; gap: 20px; padding: 28px 0 32px; border-bottom: 1px solid var(--line); }
.process-item:first-child { border-top: 1px solid var(--line); }
.process-item > span { width: 46px; height: 46px; display: grid; place-items: center; border-radius: 15px; background: var(--blue-soft); color: var(--blue); font-weight: 850; font-size: 12px; }
.process-item h3 { margin: 1px 0 6px; font-size: 21px; letter-spacing: -.03em; }
.process-item p { margin: 0; color: var(--muted); font-size: 14px; }

.split-audience { display: grid; grid-template-columns: 1fr 1fr; min-height: 630px; }
.audience-card { min-height: 630px; position: relative; overflow: hidden; display: flex; align-items: end; padding: 54px; }
.audience-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.audience-card:hover img { transform: scale(1.025); }
.audience-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(5,28,43,.06) 25%, rgba(5,28,43,.82) 100%); }
.audience-copy { position: relative; z-index: 2; color: var(--white); max-width: 480px; }
.audience-copy > span { font-size: 11px; text-transform: uppercase; letter-spacing: .13em; color: #9ee6f0; font-weight: 850; }
.audience-copy h2 { margin: 12px 0 12px; font-size: clamp(2.3rem, 4vw, 4rem); line-height: 1.02; letter-spacing: -.055em; }
.audience-copy p { margin: 0; max-width: 420px; color: rgba(255,255,255,.72); line-height: 1.65; }

.about { background: var(--offwhite); }
.about-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 100px; align-items: center; }
.about-brand { min-height: 520px; display: grid; place-items: center; border-radius: 34px; background: linear-gradient(145deg, #fff, #edf5f8); border: 1px solid #e2ecef; box-shadow: var(--shadow-soft); position: relative; overflow: hidden; }
.about-brand::before, .about-brand::after { content: ""; position: absolute; border-radius: 50%; border: 1px solid rgba(6,47,77,.08); }
.about-brand::before { width: 420px; height: 420px; }
.about-brand::after { width: 300px; height: 300px; }
.about-brand img { width: min(330px, 70%); position: relative; z-index: 2; filter: drop-shadow(0 18px 20px rgba(6,47,77,.09)); }
.about-copy h2 { color: var(--ink); }
.about-copy p { margin: 22px 0 0; max-width: 680px; color: var(--muted); font-size: 16px; line-height: 1.75; }
.about-points { display: flex; flex-wrap: wrap; gap: 10px 18px; margin-top: 28px; }
.about-points span { display: inline-flex; align-items: center; gap: 8px; color: #44535f; font-size: 13px; }
.about-points i { width: 7px; height: 7px; border-radius: 50%; background: var(--yellow); box-shadow: 0 0 0 5px rgba(255,196,0,.12); }

.location { background: var(--white); }
.location-card { min-height: 520px; padding: 54px; border-radius: 36px; overflow: hidden; background: linear-gradient(135deg, var(--navy) 0%, #0a4167 100%); color: var(--white); display: grid; grid-template-columns: 1fr 1fr; gap: 70px; position: relative; box-shadow: var(--shadow-strong); }
.location-card::after { content: ""; position: absolute; width: 420px; height: 420px; border-radius: 50%; background: radial-gradient(circle, rgba(25,171,197,.24), transparent 68%); right: -160px; top: -170px; }
.location-copy { position: relative; z-index: 2; align-self: center; }
.location-copy h2 { color: var(--white); max-width: 640px; }
.location-copy address { margin-top: 24px; color: rgba(255,255,255,.66); font-size: 15px; line-height: 1.7; }
.location-actions { display: flex; align-items: center; gap: 20px; margin-top: 28px; }
.location-link { color: rgba(255,255,255,.82); font-size: 13px; font-weight: 700; }
.location-link:hover { color: var(--white); }
.location-visual { position: relative; min-height: 410px; display: grid; place-items: center; }
.map-ring { position: absolute; border-radius: 50%; border: 1px solid rgba(255,255,255,.13); }
.map-ring--one { width: 400px; height: 400px; }
.map-ring--two { width: 270px; height: 270px; box-shadow: 0 0 0 75px rgba(255,255,255,.025); }
.map-pin { width: 88px; height: 88px; border-radius: 28px; background: var(--yellow); display: grid; place-items: center; box-shadow: 0 20px 50px rgba(0,0,0,.20); transform: rotate(-4deg); }
.map-pin svg { width: 38px; height: 38px; fill: none; stroke: var(--navy); stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; transform: rotate(4deg); }
.map-label { position: absolute; bottom: 44px; left: 50%; transform: translateX(-50%); min-width: 210px; padding: 13px 16px; border-radius: 15px; background: rgba(255,255,255,.10); border: 1px solid rgba(255,255,255,.13); backdrop-filter: blur(12px); text-align: center; }
.map-label strong { display: block; font-size: 12px; }
.map-label span { display: block; margin-top: 2px; color: rgba(255,255,255,.6); font-size: 10px; }

.final-cta { padding-top: 0; background: var(--white); }
.final-cta__card { padding: 46px 50px; border-radius: 30px; background: #0c171f; color: var(--white); display: grid; grid-template-columns: 1.25fr .75fr; gap: 60px; align-items: center; position: relative; overflow: hidden; }
.final-cta__card::after { content: ""; position: absolute; width: 260px; height: 260px; border-radius: 50%; background: radial-gradient(circle, rgba(255,196,0,.15), transparent 70%); right: -80px; top: -100px; }
.final-cta h2 { color: var(--white); font-size: clamp(2rem, 3.6vw, 3.3rem); max-width: 800px; }
.final-cta p { color: rgba(255,255,255,.62); margin: 16px 0 0; }
.final-cta__actions { position: relative; z-index: 2; justify-self: end; display: grid; gap: 10px; justify-items: center; }
.final-cta__actions span { color: rgba(255,255,255,.55); font-size: 12px; }

.site-footer { background: #f6f8f9; border-top: 1px solid var(--line); padding: 72px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr .55fr .85fr; gap: 70px; }
.brand--footer img { width: 64px; height: 64px; }
.footer-brand > p { color: var(--muted); max-width: 420px; font-size: 13px; margin: 18px 0 0; line-height: 1.7; }
.footer-col { display: grid; align-content: start; gap: 11px; font-size: 13px; }
.footer-col strong { margin-bottom: 7px; color: var(--ink); }
.footer-col a, .footer-col span { color: var(--muted); transition: color .2s ease; }
.footer-col a:hover { color: var(--navy); }
.footer-bottom { margin-top: 54px; padding-top: 22px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; gap: 20px; color: #85919a; font-size: 10px; }

.whatsapp-float { position: fixed; right: 24px; bottom: 24px; z-index: 80; width: 56px; height: 56px; border-radius: 50%; display: grid; place-items: center; background: var(--green); color: #fff; box-shadow: 0 15px 32px rgba(37,211,102,.28); transition: transform .2s var(--ease), box-shadow .2s var(--ease); }
.whatsapp-float:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 20px 38px rgba(37,211,102,.34); }
.whatsapp-float svg { width: 27px; height: 27px; fill: currentColor; }
.mobile-whatsapp { display: none; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1080px) {
  :root { --container: min(100% - 34px, 1000px); }
  .nav-links { gap: 18px; }
  .nav-cta { display: none; }
  .nav-shell { grid-template-columns: auto 1fr; }
  .hero-grid { gap: 38px; }
  .hero-media__frame { min-height: 560px; }
  .services-layout { grid-template-columns: 1fr; }
  .service-feature { min-height: 520px; }
  .services-stack { grid-template-columns: repeat(3, 1fr); grid-template-rows: none; }
  .climate-inner { gap: 55px; }
  .process-grid { gap: 60px; }
  .about-grid { gap: 58px; }
}

@media (max-width: 860px) {
  :root { --container: min(100% - 28px, 760px); }
  .section { padding-block: 82px; }
  .ubuild-bar { height: 36px; }
  .desktop-only { display: none; }
  .mobile-only { display: inline; }
  .ubuild-bar__inner { justify-content: space-between; gap: 10px; }
  .ubuild-bar a { font-size: 11px; }
  .nav-shell { min-height: 74px; grid-template-columns: auto 1fr auto; gap: 10px; }
  .brand img { width: 50px; height: 50px; }
  .brand-copy small { display: none; }
  .nav-links { position: fixed; inset: 110px 14px auto; display: grid; gap: 0; background: rgba(255,255,255,.98); padding: 14px; border: 1px solid var(--line); border-radius: 20px; box-shadow: var(--shadow-strong); transform: translateY(-10px); opacity: 0; pointer-events: none; transition: opacity .2s ease, transform .2s var(--ease); }
  .nav-links.open { opacity: 1; transform: translateY(0); pointer-events: auto; }
  .nav-links a { padding: 13px 12px; border-bottom: 1px solid #edf1f3; }
  .nav-links a:last-child { border-bottom: 0; }
  .nav-links a::after { display: none; }
  .menu-toggle { display: grid; }
  .menu-toggle.active span:first-child { transform: translateY(3.5px) rotate(45deg); }
  .menu-toggle.active span:last-child { transform: translateY(-3.5px) rotate(-45deg); }

  .hero { padding-top: 54px; padding-bottom: 64px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: none; }
  .hero h1 { font-size: clamp(3.2rem, 11.7vw, 5rem); max-width: 700px; }
  .hero-lead { max-width: 680px; }
  .hero-media__frame { min-height: 500px; }
  .hero-proof { max-width: 650px; }
  .trust-strip__track { justify-content: flex-start; overflow-x: auto; padding-block: 18px; scrollbar-width: none; }
  .trust-strip__track::-webkit-scrollbar { display: none; }
  .trust-strip__track span { white-space: nowrap; }

  .section-heading { grid-template-columns: 1fr; gap: 18px; }
  .section-heading p { max-width: 620px; }
  .services-stack { grid-template-columns: 1fr; }
  .climate-inner { grid-template-columns: 1fr; gap: 48px; }
  .climate-copy { max-width: 650px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 430px 260px; }
  .gallery-card--large { grid-column: 1 / span 2; grid-row: auto; }
  .process-grid { grid-template-columns: 1fr; }
  .process-intro { position: static; }
  .split-audience { grid-template-columns: 1fr; }
  .audience-card { min-height: 560px; }
  .about-grid { grid-template-columns: 1fr; }
  .about-brand { min-height: 430px; }
  .location-card { grid-template-columns: 1fr; gap: 40px; }
  .location-visual { min-height: 320px; }
  .map-ring--one { width: 320px; height: 320px; }
  .map-ring--two { width: 210px; height: 210px; }
  .final-cta__card { grid-template-columns: 1fr; gap: 30px; }
  .final-cta__actions { justify-self: start; justify-items: start; }
  .footer-grid { grid-template-columns: 1.2fr .8fr; }
  .footer-col:last-child { grid-column: 2; }
}

@media (max-width: 620px) {
  :root { --container: calc(100% - 28px); }
  body { padding-bottom: 70px; }
  .ubuild-bar__inner { font-size: 10px; }
  .ubuild-bar a { font-size: 10px; }
  .brand-copy strong { font-size: 14px; }
  .hero { padding-top: 42px; }
  .eyebrow { max-width: 100%; font-size: 9px; letter-spacing: .08em; padding: 8px 11px; }
  .hero h1 { margin-top: 22px; font-size: clamp(2.65rem, 13.6vw, 4.25rem); line-height: .98; }
  .hero-lead { font-size: 16px; line-height: 1.65; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .hero-proof { grid-template-columns: 1fr; gap: 13px; margin-top: 32px; }
  .hero-proof div { grid-template-columns: 100px 1fr; align-items: center; }
  .hero-media__frame { min-height: 420px; border-radius: 28px; }
  .hero-media::before { border-radius: 28px; }
  .hero-chip { padding: 10px 11px; border-radius: 14px; }
  .hero-chip--top { top: 14px; right: 14px; }
  .hero-chip--bottom { bottom: 14px; left: 14px; }
  .hero-chip strong { font-size: 11px; }
  .hero-chip small { font-size: 9px; }

  .section-heading h2, .process-intro h2, .about-copy h2, .location-copy h2, .final-cta h2, .climate-copy h2 { font-size: clamp(2.25rem, 10vw, 3.25rem); }
  .service-feature { min-height: 540px; padding: 26px; border-radius: 26px; }
  .service-feature h3 { font-size: 3.35rem; }
  .service-card { padding: 24px; }
  .climate { padding-block: 90px; }
  .gallery-grid { grid-template-columns: 1fr; grid-template-rows: none; }
  .gallery-card, .gallery-card--large { grid-column: auto; grid-row: auto; min-height: 330px; }
  .gallery-card--large { min-height: 420px; }
  .process-item { grid-template-columns: 52px 1fr; gap: 14px; }
  .process-item > span { width: 42px; height: 42px; }
  .audience-card { min-height: 500px; padding: 32px 24px; }
  .audience-copy h2 { font-size: 2.65rem; }
  .about-brand { min-height: 360px; border-radius: 26px; }
  .about-points { display: grid; }
  .location-card { padding: 34px 24px; border-radius: 28px; }
  .location-actions { align-items: stretch; flex-direction: column; }
  .location-link { padding-left: 3px; }
  .map-ring--one { width: 260px; height: 260px; }
  .map-ring--two { width: 180px; height: 180px; }
  .final-cta__card { padding: 34px 24px; border-radius: 26px; }
  .final-cta__actions { width: 100%; }
  .final-cta__actions .button { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; gap: 34px; }
  .footer-col:last-child { grid-column: auto; }
  .footer-bottom { flex-direction: column; gap: 8px; }
  .photo-note { display: none; }
  .whatsapp-float { display: none; }
  .mobile-whatsapp { display: flex; position: fixed; z-index: 90; left: 10px; right: 10px; bottom: 10px; min-height: 52px; border-radius: 16px; align-items: center; justify-content: center; gap: 9px; background: var(--green); color: #fff; box-shadow: 0 16px 34px rgba(37,211,102,.3); font-size: 13px; font-weight: 800; opacity: 0; transform: translateY(18px); pointer-events: none; transition: opacity .22s ease, transform .22s var(--ease); }
  .mobile-whatsapp.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
  .mobile-whatsapp svg { width: 20px; height: 20px; fill: currentColor; }
}

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