:root {
  --navy: #001025;
  --navy-2: #001d39;
  --ink: #0b1423;
  --muted: #536174;
  --line: #dce4ec;
  --green: #8ccb2a;
  --green-2: #a6d93b;
  --blue: #1e87c8;
  --white: #ffffff;
  --soft: #f6f8fb;
  --shadow: 0 18px 45px rgba(5, 18, 32, .16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 28px;
  min-height: 72px;
  padding: 14px clamp(22px, 5vw, 48px);
  background: #061726;
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 164px;
}

.brand img {
  width: 172px;
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 1.6vw, 24px);
  flex: 1;
  color: rgba(255, 255, 255, .86);
  font-size: 13px;
  font-weight: 650;
  white-space: nowrap;
}

.main-nav a {
  position: relative;
  padding: 12px 0;
}

.main-nav .active::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 2px;
  background: var(--green);
  content: "";
}

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 44px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}

.header-cta {
  padding: 0 19px;
  border: 1px solid var(--green);
  color: var(--white);
}

.icon-inline {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
}

.section-dark {
  color: var(--white);
  background:
    radial-gradient(circle at 78% 40%, rgba(13, 113, 183, .55), transparent 28%),
    linear-gradient(135deg, #061624 0%, #092841 100%);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(330px, 560px) 1fr;
  gap: 28px;
  min-height: 684px;
  padding: 68px clamp(26px, 5vw, 64px) 34px;
  overflow: hidden;
}

.hero::before {
  position: absolute;
  inset: 0 47% 0 0;
  z-index: 1;
  background: linear-gradient(110deg, rgba(4, 18, 31, .96), rgba(4, 18, 31, .98) 72%, transparent 73%);
  content: "";
}

.hero-copy {
  position: relative;
  z-index: 2;
  padding-top: 34px;
}

.eyebrow {
  position: relative;
  margin: 0 0 18px;
  padding-left: 50px;
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .7px;
  text-transform: uppercase;
}

.eyebrow::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 34px;
  height: 2px;
  background: var(--green);
  content: "";
}

.eyebrow.centered {
  display: table;
  margin: 0 auto 14px;
  padding-right: 50px;
}

.eyebrow.centered::after {
  position: absolute;
  top: 50%;
  right: 0;
  width: 34px;
  height: 2px;
  background: var(--green);
  content: "";
}

.hero h1 {
  max-width: 640px;
  margin: 0;
  color: var(--white);
  font-size: clamp(38px, 4.1vw, 54px);
  line-height: 1.04;
  font-weight: 950;
}

.hero h1 span,
.cta h2 span {
  color: var(--green);
}

.lead {
  max-width: 500px;
  margin: 28px 0 24px;
  color: rgba(255, 255, 255, .87);
  font-size: 16px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 28px;
}

.btn {
  min-width: 178px;
  padding: 0 22px;
  border: 1px solid transparent;
}

.btn.primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--green), var(--green-2));
  box-shadow: 0 10px 24px rgba(145, 198, 34, .28);
}

.btn.ghost {
  border-color: rgba(255, 255, 255, .65);
  color: var(--white);
  background: rgba(6, 24, 38, .36);
}

.hero-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(210px, 1fr));
  gap: 12px 30px;
  max-width: 660px;
  color: rgba(255, 255, 255, .92);
  font-size: 14px;
  font-weight: 650;
}

.hero-points span {
  position: relative;
  padding-left: 26px;
}

.hero-points span::before {
  position: absolute;
  top: 2px;
  left: 0;
  display: grid;
  place-items: center;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  color: #062032;
  background: var(--green);
  font-size: 11px;
  font-weight: 950;
  content: "✓";
}

.hero-media {
  position: absolute;
  inset: 0 0 0 38%;
  z-index: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .96;
}

.hero-media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(6, 22, 36, .78), rgba(6, 22, 36, .04) 42%, rgba(6, 22, 36, .48));
  content: "";
}

.segment-panel {
  position: relative;
  z-index: 2;
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  align-self: end;
  margin-top: 26px;
  border: 1px solid rgba(255, 255, 255, .45);
  border-radius: 8px;
  background: rgba(5, 22, 37, .7);
  backdrop-filter: blur(8px);
}

.segment-panel article {
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 20px;
  padding: 30px 28px;
  border-right: 1px solid rgba(255, 255, 255, .28);
}

.segment-panel article:last-child {
  border-right: 0;
}

.panel-icon {
  width: 58px;
  height: 58px;
}

.segment-panel h3,
.service-card h3,
.project-grid h3,
.process h3,
.cap-grid h3,
.values h3,
.footer h3 {
  margin: 0;
  font-size: 16px;
}

.segment-panel p,
.values p,
.cap-grid p,
.service-card p,
.project-grid p,
.process p,
.footer p {
  margin: 9px 0 0;
  line-height: 1.55;
}

.segment-panel p {
  color: rgba(255, 255, 255, .84);
  font-size: 13px;
}

.values {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
  padding: 50px clamp(28px, 6vw, 82px);
  background: var(--white);
}

.values article {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  padding: 0 18px 0 0;
  border-right: 1px solid var(--line);
}

.values article:last-child {
  border-right: 0;
}

.feature-icon {
  width: 47px;
  height: 47px;
}

.values p,
.cap-grid p,
.project-grid p {
  color: #4f5f70;
  font-size: 13px;
}

.section {
  padding: 58px clamp(28px, 6vw, 74px);
}

.light {
  background: radial-gradient(circle at top, #ffffff, #f7f9fb 70%);
}

.section h2 {
  max-width: 940px;
  margin: 0 auto 16px;
  text-align: center;
  color: #0b1423;
  font-size: clamp(26px, 3vw, 34px);
  line-height: 1.18;
  font-weight: 950;
}

.section-intro {
  max-width: 760px;
  margin: 0 auto 34px;
  text-align: center;
  color: #4d5d6d;
  line-height: 1.6;
}

.cap-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(148px, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.cap-grid article {
  min-height: 188px;
  padding: 26px 18px 20px;
  text-align: center;
  border: 1px solid #e9eef3;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 34px rgba(12, 32, 52, .09);
}

.proof-icon {
  width: 50px;
  height: 50px;
  margin: 0 auto 18px;
}

.cap-grid h3 {
  font-size: 14px;
  line-height: 1.25;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.service-card {
  position: relative;
  min-height: 330px;
  overflow: hidden;
  border-radius: 8px;
  color: var(--white);
  background: #08243b;
  box-shadow: var(--shadow);
}

.service-card > img {
  width: 100%;
  height: 130px;
  object-fit: cover;
}

.service-card::after {
  position: absolute;
  inset: 100px 0 0;
  background: linear-gradient(180deg, rgba(7, 32, 53, .94), #062039);
  content: "";
}

.service-card > :not(img) {
  position: relative;
  z-index: 1;
}

.service-icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin: -28px 0 18px 22px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 12px 26px rgba(0, 0, 0, .22);
}

.service-icon.blue {
  background: var(--white);
}

.service-card .service-icon > img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.service-card h3,
.service-card p,
.service-card a {
  margin-left: 24px;
  margin-right: 24px;
}

.service-card h3 {
  max-width: 220px;
  font-size: 21px;
  line-height: 1.18;
}

.service-card p {
  color: rgba(255, 255, 255, .86);
  font-size: 13px;
}

.service-card a {
  display: inline-flex;
  gap: 10px;
  margin-top: 18px;
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
}

.process {
  padding: 52px clamp(28px, 8vw, 96px);
  background:
    linear-gradient(rgba(2, 17, 31, .9), rgba(2, 17, 31, .9)),
    repeating-linear-gradient(35deg, rgba(38, 140, 209, .16) 0 1px, transparent 1px 34px);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
  margin-top: 26px;
}

.process article {
  position: relative;
  min-height: 184px;
  padding: 26px 28px;
  border: 1px solid rgba(255, 255, 255, .32);
  border-radius: 8px;
  background: rgba(6, 24, 39, .72);
}

.process-icon {
  width: 43px;
  height: 43px;
  margin-bottom: 18px;
}

.process article:not(:last-child)::after {
  position: absolute;
  top: 50%;
  right: -34px;
  width: 22px;
  height: 22px;
  border-top: 2px solid var(--green);
  border-right: 2px solid var(--green);
  transform: translateY(-50%) rotate(45deg);
  content: "";
}

.process span {
  display: block;
  margin-bottom: 18px;
  color: var(--green);
  font-size: 20px;
  font-weight: 900;
}

.process article:nth-child(2) span,
.process article:nth-child(4) span {
  color: var(--blue);
}

.process h3 {
  color: var(--white);
}

.process p {
  color: rgba(255, 255, 255, .82);
  font-size: 13px;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.project-grid article {
  overflow: hidden;
  border: 1px solid #e2e8ef;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 30px rgba(14, 35, 57, .08);
}

.project-grid article > img {
  width: 100%;
  height: 126px;
  object-fit: cover;
}

.project-grid div {
  position: relative;
  min-height: 130px;
  padding: 24px 18px 20px 72px;
}

.project-icon {
  position: absolute;
  top: 24px;
  left: 18px;
  width: 38px;
  height: 38px;
  padding: 8px;
  color: #0b1423;
  border: 1px solid #d6dee7;
  border-radius: 7px;
  background: var(--white);
  box-shadow: 0 8px 18px rgba(9, 25, 42, .11);
  object-fit: contain;
}

.all-projects {
  display: table;
  margin: 34px auto 0;
  color: #0575b3;
  font-size: 14px;
  font-weight: 900;
}

.cta {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  align-items: center;
  padding: 50px clamp(28px, 6vw, 82px);
  background:
    linear-gradient(90deg, #061826, #092b49),
    repeating-linear-gradient(30deg, rgba(21, 151, 223, .2) 0 1px, transparent 1px 36px);
}

.cta h2 {
  max-width: 620px;
  margin: 0 0 14px;
  color: var(--white);
  font-size: clamp(26px, 3.4vw, 40px);
  line-height: 1.14;
}

.cta p {
  max-width: 560px;
  margin: 0;
  color: rgba(255, 255, 255, .84);
  line-height: 1.6;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
  max-width: 560px;
}

.cta-actions .whatsapp {
  flex-basis: 100%;
  text-align: center;
  color: rgba(255, 255, 255, .88);
  font-size: 15px;
}

.whatsapp-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  color: var(--green);
  font-weight: 850;
  line-height: 1.2;
  transition:
    transform 180ms ease,
    color 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.whatsapp-link__icon {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  transition: transform 180ms ease, filter 180ms ease;
}

.whatsapp-link__icon--panel {
  display: inline-block;
  margin: 0 10px 0 0;
  vertical-align: -4px;
}

.whatsapp-link:hover {
  transform: translateY(-1px);
}

.whatsapp-link:hover .whatsapp-link__icon {
  transform: scale(1.08);
  filter: drop-shadow(0 0 8px rgba(140, 203, 42, .22));
}

.whatsapp-link:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 4px;
}

.whatsapp-link--light {
  color: #117f47;
}

.whatsapp-link--dark {
  color: rgba(255, 255, 255, .94);
}

.whatsapp-link--chip {
  min-height: 38px;
  padding: 8px 14px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 999px;
  background: rgba(255, 255, 255, .075);
  backdrop-filter: blur(8px);
}

.whatsapp-link--chip strong {
  color: #fff;
}

.whatsapp-link--chip:hover {
  border-color: rgba(140, 203, 42, .68);
  background: rgba(140, 203, 42, .12);
  box-shadow: 0 12px 26px rgba(0, 0, 0, .18);
}

.whatsapp-link--button {
  margin-top: 18px;
  padding: 10px 14px;
  border: 1px solid rgba(140, 203, 42, .36);
  border-radius: 999px;
  background: rgba(140, 203, 42, .08);
}

.whatsapp-link--button:hover {
  border-color: var(--green);
  background: rgba(140, 203, 42, .14);
}

.whatsapp-contact-card {
  border-color: rgba(140, 203, 42, .34);
}

.footer {
  padding: 30px clamp(28px, 6vw, 82px) 18px;
  color: var(--white);
  background: #061523;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.7fr repeat(4, 1fr);
  gap: 42px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255, 255, 255, .16);
}

.footer-brand {
  margin-bottom: 14px;
}

.footer-brand img {
  width: 154px;
}

.footer p,
.footer a {
  display: block;
  color: rgba(255, 255, 255, .76);
  font-size: 13px;
}

.footer h3 {
  margin: 4px 0 14px;
}

.footer a {
  margin: 0 0 10px;
}

.socials {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.socials a {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, .42);
  border-radius: 50%;
  color: var(--white);
  font-size: 12px;
  font-weight: 900;
}

.socials img {
  width: 16px;
  height: 16px;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  justify-content: center;
  padding-top: 16px;
  color: rgba(255, 255, 255, .72);
  font-size: 12px;
}

@media (max-width: 1340px) {
  .site-header {
    gap: 18px;
    padding-right: clamp(18px, 3vw, 34px);
    padding-left: clamp(18px, 3vw, 34px);
  }

  .main-nav {
    gap: clamp(8px, 1vw, 14px);
    font-size: 12px;
  }

  .header-cta {
    padding-right: 14px;
    padding-left: 14px;
    font-size: 12px;
  }
}

@media (max-width: 1180px) {
  .site-header {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .main-nav {
    order: 3;
    justify-content: flex-start;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .cap-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .segment-panel,
  .values,
  .service-grid,
  .process-grid,
  .project-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .segment-panel article:nth-child(2) {
    border-right: 0;
  }

  .process article:not(:last-child)::after {
    display: none;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  .site-header {
    position: static;
    gap: 16px;
    padding: 16px 20px;
    overflow: hidden;
  }

  .main-nav {
    flex-wrap: wrap;
    overflow-x: hidden;
    white-space: normal;
    row-gap: 0;
  }

  .main-nav a {
    padding: 8px 0;
  }

  .header-cta {
    width: 100%;
  }

  .hero {
    display: block;
    min-height: auto;
    padding: 44px 20px 24px;
  }

  .hero::before {
    inset: 0;
    background: linear-gradient(180deg, rgba(4, 18, 31, .96), rgba(4, 18, 31, .86));
  }

  .hero-media {
    inset: 0;
  }

  .hero-media img {
    opacity: .35;
  }

  .hero-copy {
    padding-top: 12px;
  }

  .hero h1 {
    font-size: clamp(34px, 11vw, 48px);
  }

  .lead {
    font-size: 15px;
  }

  .hero-actions,
  .cta-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .btn {
    width: 100%;
  }

  .hero-points,
  .segment-panel,
  .values,
  .cap-grid,
  .service-grid,
  .process-grid,
  .project-grid,
  .cta,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .segment-panel {
    margin-top: 30px;
  }

  .segment-panel article,
  .values article {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .16);
  }

  .values article {
    border-bottom-color: var(--line);
    padding-bottom: 18px;
  }

  .segment-panel article:last-child,
  .values article:last-child {
    border-bottom: 0;
  }

  .section,
  .process,
  .cta,
  .footer,
  .values {
    padding-right: 20px;
    padding-left: 20px;
  }

  .service-card {
    min-height: 315px;
  }

  .cta-actions {
    justify-content: stretch;
  }

  .cta-actions .whatsapp {
    text-align: left;
  }
}

.home-page .hero {
  min-height: 720px;
}

.home-page .hero h1 {
  max-width: 670px;
}

.home-page .segment-panel {
  box-shadow: 0 22px 54px rgba(0, 0, 0, .28);
}

.home-page .segment-panel article {
  background: linear-gradient(180deg, rgba(255, 255, 255, .035), rgba(255, 255, 255, 0));
}

.home-page .values {
  border-bottom: 1px solid #eef2f6;
}

.home-page .service-card {
  min-height: 350px;
}

.home-page .process {
  padding-top: 62px;
  padding-bottom: 62px;
}

@media (max-width: 760px) {
  .home-page .hero {
    min-height: auto;
  }
}

/* Motion layer: subtle Ecoluz V2 animation system. */
.js-enabled .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 680ms ease,
    transform 680ms ease;
  will-change: opacity, transform;
}

.js-enabled .reveal.reveal-left {
  transform: translateX(-24px);
}

.js-enabled .reveal.reveal-right {
  transform: translateX(24px);
}

.js-enabled .reveal.reveal-scale {
  transform: scale(.985);
}

.js-enabled .reveal.is-visible {
  opacity: 1;
  transform: translate(0, 0) scale(1);
  will-change: auto;
}

.stagger > .reveal:nth-child(1),
.stagger > .motion-card:nth-child(1) {
  transition-delay: 0ms;
}

.stagger > .reveal:nth-child(2),
.stagger > .motion-card:nth-child(2) {
  transition-delay: 80ms;
}

.stagger > .reveal:nth-child(3),
.stagger > .motion-card:nth-child(3) {
  transition-delay: 150ms;
}

.stagger > .reveal:nth-child(4),
.stagger > .motion-card:nth-child(4) {
  transition-delay: 220ms;
}

.stagger > .reveal:nth-child(5),
.stagger > .motion-card:nth-child(5) {
  transition-delay: 260ms;
}

.stagger > .reveal:nth-child(6),
.stagger > .motion-card:nth-child(6) {
  transition-delay: 300ms;
}

.js-enabled .hero-anim {
  opacity: 0;
  transform: translateY(16px);
  animation: heroReveal 680ms ease forwards;
}

.js-enabled .hero-anim-eyebrow {
  animation-duration: 500ms;
  animation-delay: 80ms;
}

.js-enabled .hero-anim-title {
  animation-duration: 700ms;
  animation-delay: 170ms;
}

.js-enabled .hero-anim-text {
  animation-duration: 650ms;
  animation-delay: 280ms;
}

.js-enabled .hero-anim-actions {
  animation-duration: 600ms;
  animation-delay: 390ms;
}

.js-enabled .hero-anim-points {
  animation-duration: 620ms;
  animation-delay: 500ms;
}

.js-enabled .hero-anim-panel {
  animation-delay: 430ms;
}

.js-enabled .hero-media-anim {
  opacity: .72;
  transform: scale(1.035);
  animation: heroMediaReveal 900ms ease 120ms forwards;
  transform-origin: center;
}

@keyframes heroReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroMediaReveal {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes ecoluzHorizontalDrift {
  0%,
  100% {
    transform: scale(1.045) translateX(-7px);
  }

  50% {
    transform: scale(1.045) translateX(7px);
  }
}

@keyframes ecoluzFlowArrow {
  0%,
  100% {
    opacity: .42;
    transform: translateY(-50%) translateX(-4px) rotate(45deg);
  }

  50% {
    opacity: .95;
    transform: translateY(-50%) translateX(4px) rotate(45deg);
  }
}

.motion-card,
.service-card,
.project-grid article,
.mini-card,
.photo-card,
.feature-banner,
.process-row article,
.process article,
.segment-panel article,
.values article,
.cap-grid article,
.form-card,
.dark-panel {
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease,
    background 220ms ease,
    filter 220ms ease;
}

.motion-card:hover,
.service-card:hover,
.project-grid article:hover,
.mini-card:hover,
.photo-card:hover,
.feature-banner:hover,
.process-row article:hover,
.process article:hover,
.segment-panel article:hover,
.values article:hover,
.cap-grid article:hover {
  transform: translateY(-4px);
  border-color: rgba(140, 203, 42, .55);
  box-shadow: 0 20px 48px rgba(6, 24, 38, .16);
}

.photo-card:hover .motion-image,
.service-card:hover > .motion-image,
.project-grid article:hover > .motion-image,
.feature-banner:hover > .motion-image {
  transform: scale(1.035);
}

.motion-image {
  transition: transform 520ms ease, opacity 520ms ease, filter 520ms ease;
  transform-origin: center;
}

.service-card:hover::after {
  background: linear-gradient(180deg, rgba(7, 32, 53, .9), #041a30);
}

.service-icon,
.card-icon,
.project-icon,
.panel-icon,
.feature-icon,
.proof-icon,
.process-icon {
  transition: transform 220ms ease, filter 220ms ease;
}

.motion-card:hover .service-icon,
.motion-card:hover .card-icon,
.motion-card:hover .project-icon,
.motion-card:hover .panel-icon,
.motion-card:hover .feature-icon,
.motion-card:hover .proof-icon,
.motion-card:hover .process-icon {
  transform: translateY(-2px);
  filter: drop-shadow(0 0 9px rgba(140, 203, 42, .24));
}

.btn,
.header-cta,
.card-link,
.all-projects,
.main-nav a {
  transition:
    transform 180ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease,
    color 220ms ease,
    background 220ms ease,
    opacity 220ms ease;
}

.btn:hover,
.header-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(140, 203, 42, .22);
}

.btn:active,
.header-cta:active {
  transform: translateY(0) scale(.985);
}

.btn:hover .icon-inline,
.header-cta:hover .icon-inline,
.card-link:hover span,
.all-projects:hover span {
  transform: translateX(4px);
}

.icon-inline,
.card-link span,
.all-projects span {
  transition: transform 180ms ease;
}

.btn:focus-visible,
.header-cta:focus-visible,
.main-nav a:focus-visible,
.card-link:focus-visible,
.all-projects:focus-visible,
.form-grid input:focus-visible,
.form-grid select:focus-visible,
.form-grid textarea:focus-visible {
  outline: 3px solid rgba(76, 195, 241, .75);
  outline-offset: 3px;
}

.main-nav a::before {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 2px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms ease;
  content: "";
}

.main-nav a:hover::before,
.main-nav a:focus-visible::before {
  transform: scaleX(1);
}

.main-nav a.active::before {
  display: none;
}

.header-cta:hover {
  border-color: var(--green-2);
  background: rgba(140, 203, 42, .08);
}

.process-row article::after,
.process article::after {
  transition: opacity 320ms ease, transform 320ms ease;
}

.hero-media img,
.project-grid article > img,
.service-card > img {
  animation: ecoluzHorizontalDrift 18s ease-in-out infinite;
  will-change: transform;
}

.project-grid article:nth-child(2) > img,
.service-card:nth-child(2) > img {
  animation-delay: -5s;
}

.project-grid article:nth-child(3) > img,
.service-card:nth-child(3) > img {
  animation-delay: -9s;
}

.project-grid article:nth-child(4) > img,
.service-card:nth-child(4) > img {
  animation-delay: -13s;
}

.process article:not(:last-child)::after,
.process-row article:not(:last-child)::after {
  animation: ecoluzFlowArrow 2.8s ease-in-out infinite;
}

.process article:nth-child(2)::after,
.process-row article:nth-child(2)::after {
  animation-delay: .35s;
}

.process article:nth-child(3)::after,
.process-row article:nth-child(3)::after {
  animation-delay: .7s;
}

.process-row:hover article::after,
.process:hover article::after {
  opacity: .95;
}

.screen-section.dark,
.process,
.screen-cta,
.cta {
  position: relative;
  overflow: hidden;
}

.screen-section.dark::before,
.process::before,
.screen-cta::before,
.cta::before {
  position: absolute;
  inset: -20% auto auto 62%;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(30, 135, 200, .12), transparent 66%);
  pointer-events: none;
  content: "";
}

.screen-section.dark > *,
.process > *,
.screen-cta > *,
.cta > * {
  position: relative;
  z-index: 1;
}

.form-grid input,
.form-grid select,
.form-grid textarea {
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.form-grid input:focus,
.form-grid select:focus,
.form-grid textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(30, 135, 200, .11);
  background: #fff;
}

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

  .reveal,
  .js-enabled .reveal,
  .hero-anim,
  .hero-media-anim {
    opacity: 1 !important;
    transform: none !important;
  }
}

.cookie-banner,
.cookie-modal,
.cookie-banner *,
.cookie-modal * {
  box-sizing: border-box;
}

.cookie-banner {
  position: fixed;
  right: 24px;
  bottom: 24px;
  left: 24px;
  z-index: 1000;
  max-width: 1120px;
  margin: auto;
  color: #fff;
}

.cookie-banner__content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  padding: 22px;
  border: 1px solid rgba(140, 203, 42, .35);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(4, 28, 51, .97), rgba(4, 42, 76, .97)),
    var(--navy);
  box-shadow: 0 22px 64px rgba(1, 18, 34, .34);
}

.cookie-banner__copy h2 {
  margin: 0 0 8px;
  color: #fff;
  font-size: 1.05rem;
  line-height: 1.2;
}

.cookie-banner__copy p {
  max-width: 760px;
  margin: 0 0 8px;
  color: rgba(255, 255, 255, .84);
  font-size: .92rem;
  line-height: 1.55;
}

.cookie-banner__copy a {
  color: var(--green);
  font-weight: 800;
  text-decoration: none;
}

.cookie-banner__copy a:hover {
  text-decoration: underline;
}

.cookie-banner__actions,
.cookie-modal__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.cookie-btn {
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 999px;
  background: transparent;
  color: #fff;
  font-family: inherit;
  font-size: .9rem;
  font-weight: 900;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.cookie-btn:hover {
  transform: translateY(-1px);
}

.cookie-btn:focus-visible,
.cookie-preferences-link:focus-visible,
.cookie-modal__close:focus-visible,
.cookie-toggle input:focus-visible + .cookie-toggle__control {
  outline: 3px solid rgba(30, 135, 200, .42);
  outline-offset: 3px;
}

.cookie-btn--primary {
  border-color: var(--green);
  background: linear-gradient(135deg, var(--green), var(--green-2));
  color: #08233d;
  box-shadow: 0 12px 28px rgba(140, 203, 42, .25);
}

.cookie-btn--secondary {
  border-color: rgba(255, 255, 255, .42);
  background: rgba(255, 255, 255, .08);
}

.cookie-btn--ghost {
  border-color: rgba(30, 135, 200, .55);
  color: #d8f2ff;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 1100;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(1, 18, 34, .74);
}

.cookie-modal__panel {
  width: min(720px, 100%);
  max-height: min(720px, calc(100vh - 48px));
  overflow: auto;
  border: 1px solid rgba(30, 135, 200, .38);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 24px 80px rgba(1, 18, 34, .45);
}

.cookie-modal__header {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  padding: 24px 24px 14px;
  border-bottom: 1px solid rgba(8, 35, 61, .1);
}

.cookie-modal__header h2 {
  margin: 0;
  color: var(--ink);
  font-size: 1.4rem;
  line-height: 1.2;
}

.cookie-modal__close {
  position: relative;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(8, 35, 61, .14);
  border-radius: 999px;
  background: #f4f8fb;
  color: var(--ink);
  font-family: inherit;
  font-size: 0;
  cursor: pointer;
}

.cookie-modal__close::before,
.cookie-modal__close::after {
  position: absolute;
  width: 16px;
  height: 2px;
  margin: -1px 0 0 -8px;
  border-radius: 2px;
  background: var(--ink);
  content: "";
}

.cookie-modal__close::before {
  transform: rotate(45deg);
}

.cookie-modal__close::after {
  transform: rotate(-45deg);
}

.cookie-modal__body {
  display: grid;
  gap: 14px;
  padding: 20px 24px;
}

.cookie-modal__body > p {
  margin: 0 0 4px;
  color: var(--muted);
  font-size: .98rem;
  line-height: 1.6;
}

.cookie-modal__actions {
  padding: 0 24px 24px;
}

.cookie-modal__actions .cookie-btn--secondary,
.cookie-modal__actions .cookie-btn--ghost {
  border-color: rgba(8, 35, 61, .18);
  color: var(--ink);
}

.cookie-modal__actions .cookie-btn--secondary {
  background: rgba(8, 35, 61, .05);
}

.cookie-toggle {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 16px;
  border: 1px solid rgba(8, 35, 61, .1);
  border-radius: 8px;
  background: #f8fbfd;
  cursor: pointer;
}

.cookie-toggle.is-disabled {
  cursor: not-allowed;
}

.cookie-toggle__copy {
  display: grid;
  gap: 5px;
}

.cookie-toggle__copy strong {
  color: var(--ink);
  font-size: 1rem;
}

.cookie-toggle__copy span {
  color: var(--muted);
  font-size: .9rem;
  line-height: 1.5;
}

.cookie-toggle input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.cookie-toggle__control {
  position: relative;
  width: 54px;
  height: 30px;
  border-radius: 999px;
  background: rgba(8, 35, 61, .18);
  transition: background 180ms ease;
}

.cookie-toggle__control::after {
  position: absolute;
  top: 4px;
  left: 4px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 8px rgba(1, 18, 34, .18);
  transition: transform 180ms ease;
  content: "";
}

.cookie-toggle input:checked + .cookie-toggle__control {
  background: var(--green);
}

.cookie-toggle input:checked + .cookie-toggle__control::after {
  transform: translateX(24px);
}

.cookie-toggle input:disabled + .cookie-toggle__control {
  background: rgba(140, 203, 42, .72);
}

.cookie-preferences-link {
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, .74);
  font-family: inherit;
  font-size: .82rem;
  font-weight: 700;
  cursor: pointer;
}

.cookie-preferences-link:hover {
  color: var(--green);
}

.cookie-modal-open {
  overflow: hidden;
}

@media (max-width: 820px) {
  .cookie-banner {
    right: 12px;
    bottom: 12px;
    left: 12px;
  }

  .cookie-banner__content {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 18px;
  }

  .cookie-banner__actions,
  .cookie-modal__actions {
    justify-content: stretch;
  }

  .cookie-btn {
    flex: 1 1 100%;
  }

  .cookie-modal {
    padding: 12px;
  }

  .cookie-modal__panel {
    max-height: calc(100vh - 24px);
  }

  .cookie-modal__header,
  .cookie-modal__body,
  .cookie-modal__actions {
    padding-right: 18px;
    padding-left: 18px;
  }

  .cookie-toggle {
    grid-template-columns: 1fr;
  }
}
