@font-face {
  font-family: "DM Sans";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("../fonts/dm-sans.woff2") format("woff2");
}

@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 500 800;
  font-display: swap;
  src: url("../fonts/manrope.woff2") format("woff2");
}

:root {
  --navy-950: #031124;
  --navy-900: #06162e;
  --navy-800: #092342;
  --navy-700: #0c345b;
  --blue-700: #005090;
  --blue-600: #006fb0;
  --blue-500: #0087d1;
  --electric: #00a0f0;
  --electric-light: #47c5ff;
  --white: #ffffff;
  --mist: #f3f7fb;
  --line: #dbe6ef;
  --ink: #0c1d2f;
  --muted: #5e6c79;
  --success: #087b50;
  --error: #b42318;
  --radius-sm: 6px;
  --radius: 14px;
  --radius-lg: 24px;
  --shadow-sm: 0 10px 30px rgba(6, 22, 46, 0.08);
  --shadow: 0 24px 70px rgba(6, 22, 46, 0.14);
  --container: 1200px;
  --header-height: 86px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "DM Sans", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.nav-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;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--electric-light);
  outline-offset: 3px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: "Manrope", Arial, sans-serif;
  line-height: 1.12;
  letter-spacing: -0.035em;
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(2.15rem, 4.5vw, 4.2rem);
  font-weight: 800;
}

h2 em,
h1 em {
  color: var(--electric);
  font-style: normal;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.section {
  padding: clamp(84px, 10vw, 148px) 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 10000;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  color: var(--navy-950);
  background: var(--white);
  border-radius: var(--radius-sm);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  color: #b9ddf3;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow span {
  display: block;
  width: 34px;
  height: 3px;
  background: var(--electric);
  clip-path: polygon(0 0, 100% 0, 86% 100%, 0 100%);
}

.eyebrow.dark {
  color: var(--blue-700);
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 15px 24px;
  color: var(--white);
  background: var(--blue-600);
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  font-weight: 700;
  line-height: 1.2;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 35px rgba(0, 160, 240, 0.24);
}

.button-sm {
  min-height: 44px;
  padding: 12px 18px;
  font-size: 0.9rem;
}

.button-primary {
  background: linear-gradient(135deg, var(--blue-600), var(--electric));
}

.button-dark {
  background: var(--navy-900);
}

.button-ghost {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.42);
}

.button-ghost:hover {
  background: rgba(255, 255, 255, 0.13);
}

.icon,
.service-icon {
  display: inline-block;
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  background: currentColor;
  -webkit-mask: var(--icon) center / contain no-repeat;
  mask: var(--icon) center / contain no-repeat;
}

.icon-lightning,
.icon-lightning-charge { --icon: url("../icons/lightning-charge.svg"); }
.icon-plug { --icon: url("../icons/plug.svg"); }
.icon-shield,
.icon-shield-check { --icon: url("../icons/shield-check.svg"); }
.icon-sun { --icon: url("../icons/sun.svg"); }
.icon-droplet,
.icon-droplet-half { --icon: url("../icons/droplet-half.svg"); }
.icon-buildings { --icon: url("../icons/buildings.svg"); }
.icon-tools { --icon: url("../icons/tools.svg"); }
.icon-water { --icon: url("../icons/water.svg"); }
.icon-ethernet { --icon: url("../icons/ethernet.svg"); }
.icon-snow { --icon: url("../icons/snow.svg"); }
.icon-telephone { --icon: url("../icons/telephone.svg"); }
.icon-envelope { --icon: url("../icons/envelope.svg"); }
.icon-geo-alt { --icon: url("../icons/geo-alt.svg"); }
.icon-clock { --icon: url("../icons/clock.svg"); }
.icon-whatsapp { --icon: url("../icons/whatsapp.svg"); }
.icon-check { --icon: url("../icons/check2.svg"); }

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms ease;
}

[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

.site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  right: 0;
  left: 0;
  height: var(--header-height);
  color: var(--white);
  background: linear-gradient(180deg, rgba(3, 17, 36, 0.92), rgba(3, 17, 36, 0));
  transition: height 200ms ease, background-color 200ms ease, box-shadow 200ms ease;
}

.site-header.scrolled {
  height: 74px;
  background: rgba(3, 17, 36, 0.97);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(12px);
}

.header-inner {
  display: flex;
  height: 100%;
  align-items: center;
  gap: 28px;
}

.brand {
  position: relative;
  z-index: 2;
  display: flex;
  width: 96px;
  height: 100%;
  align-items: center;
  overflow: visible;
}

.brand img {
  width: auto;
  height: 78px;
  max-height: calc(100% - 8px);
  object-fit: contain;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-left: auto;
}

.primary-nav a {
  position: relative;
  padding: 8px 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.9rem;
  font-weight: 600;
}

.primary-nav a::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 2px;
  background: var(--electric);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.primary-nav a:hover {
  color: var(--white);
}

.primary-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.85rem;
  font-weight: 600;
}

.text-link .icon {
  width: 17px;
  height: 17px;
  color: var(--electric);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 11px 8px;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 27px;
  height: 2px;
  margin: 5px auto;
  background: var(--white);
  transition: transform 180ms ease, opacity 180ms ease;
}

.hero {
  position: relative;
  min-height: 680px;
  height: calc(100svh - 104px);
  overflow: hidden;
  color: var(--white);
  background: var(--navy-950);
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(3, 17, 36, 0.98) 0%, rgba(3, 17, 36, 0.91) 36%, rgba(3, 17, 36, 0.32) 70%, rgba(3, 17, 36, 0.14) 100%),
    linear-gradient(0deg, rgba(3, 17, 36, 0.74) 0%, transparent 46%);
}

.hero-geometry {
  position: absolute;
  z-index: 1;
  right: -8vw;
  bottom: -24vw;
  width: 48vw;
  height: 48vw;
  border: 1px solid rgba(0, 160, 240, 0.3);
  transform: rotate(45deg);
}

.hero-geometry::before,
.hero-geometry::after {
  position: absolute;
  border: 1px solid rgba(0, 160, 240, 0.2);
  content: "";
  inset: 8%;
}

.hero-geometry::after {
  inset: 18%;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  height: 100%;
  align-items: center;
  padding-top: var(--header-height);
}

.hero-copy {
  width: min(920px, 72%);
  padding: 58px 0 30px;
}

.hero h1 {
  max-width: 920px;
  margin-bottom: 22px;
  font-size: clamp(3rem, 4vw, 4.6rem);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.hero-lead {
  max-width: 740px;
  margin-bottom: 30px;
  color: #c9d5e0;
  font-size: clamp(1rem, 1.25vw, 1.16rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 50px;
}

.trust-line {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.77rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.trust-line span {
  position: relative;
}

.trust-line span:not(:last-child)::after {
  position: absolute;
  top: 50%;
  right: -14px;
  width: 3px;
  height: 3px;
  background: var(--electric);
  content: "";
  transform: translateY(-50%);
}

.hero-scroll {
  position: absolute;
  z-index: 3;
  bottom: 36px;
  left: max(20px, calc((100vw - var(--container)) / 2));
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-scroll span {
  display: block;
  width: 1px;
  height: 36px;
  background: linear-gradient(var(--electric), transparent);
}

.quick-contact {
  color: var(--white);
  background: var(--navy-900);
}

.quick-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1.08fr;
}

.quick-contact-grid > div,
.quick-contact-grid > a {
  display: flex;
  min-height: 104px;
  align-items: center;
  gap: 16px;
  padding: 20px 28px;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.quick-contact-grid > :last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.quick-contact-grid .icon {
  width: 26px;
  height: 26px;
  color: var(--electric);
}

.quick-contact-grid p {
  display: flex;
  flex-direction: column;
  margin: 0;
}

.quick-contact-grid strong {
  font-family: "Manrope", sans-serif;
  font-size: 0.95rem;
}

.quick-contact-grid p span {
  color: #9fb1c1;
  font-size: 0.82rem;
}

.quick-contact-grid > a {
  background: linear-gradient(135deg, var(--blue-700), var(--blue-600));
  transition: background 180ms ease;
}

.quick-contact-grid > a:hover {
  background: linear-gradient(135deg, var(--blue-600), var(--blue-500));
}

.quick-contact-grid > a > span:last-child {
  margin-left: auto;
  font-size: 1.4rem;
}

.services-section {
  background:
    linear-gradient(90deg, rgba(0, 111, 176, 0.035) 1px, transparent 1px),
    linear-gradient(rgba(0, 111, 176, 0.035) 1px, transparent 1px),
    var(--mist);
  background-size: 72px 72px;
}

.section-heading {
  max-width: 800px;
  margin-bottom: clamp(48px, 6vw, 76px);
}

.section-heading > p:last-child {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.split-heading {
  display: grid;
  max-width: none;
  grid-template-columns: 1.35fr 0.65fr;
  align-items: end;
  gap: 70px;
}

.split-heading h2 {
  margin-bottom: 0;
}

.centered {
  margin-inline: auto;
  text-align: center;
}

.centered .eyebrow {
  justify-content: center;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  gap: 1px;
  overflow: hidden;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.service-card {
  position: relative;
  display: flex;
  min-height: 285px;
  flex-direction: column;
  padding: 30px;
  overflow: hidden;
  background: var(--white);
  transition: color 220ms ease, background-color 220ms ease;
}

.service-card::after {
  position: absolute;
  right: -48px;
  bottom: -70px;
  width: 125px;
  height: 125px;
  background: rgba(0, 160, 240, 0.08);
  content: "";
  transform: rotate(45deg);
  transition: transform 300ms ease;
}

.service-card:hover {
  z-index: 1;
  color: var(--white);
  background: var(--navy-900);
}

.service-card:hover::after {
  transform: rotate(45deg) translate(-20px, -20px);
}

.service-card.featured {
  color: var(--white);
  background: linear-gradient(150deg, var(--blue-700), var(--blue-600));
}

.service-number {
  position: absolute;
  top: 30px;
  right: 30px;
  color: #a8b7c5;
  font-family: "Manrope", sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
}

.service-card.featured .service-number,
.service-card:hover .service-number {
  color: rgba(255, 255, 255, 0.55);
}

.service-icon {
  width: 38px;
  height: 38px;
  margin-bottom: 30px;
  color: var(--electric);
}

.service-card.featured .service-icon {
  color: var(--white);
}

.service-card h3 {
  min-height: 54px;
  margin-bottom: 13px;
  font-size: 1.2rem;
}

.service-card p {
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 0.91rem;
}

.service-card.featured p,
.service-card:hover p {
  color: rgba(255, 255, 255, 0.75);
}

.learn-more {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 10px;
  margin-top: auto;
  color: var(--blue-600);
  font-size: 0.83rem;
  font-weight: 700;
  text-transform: uppercase;
}

.service-card.featured .learn-more,
.service-card:hover .learn-more {
  color: var(--white);
}

.about-section {
  overflow: hidden;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  align-items: center;
  gap: clamp(55px, 8vw, 110px);
}

.about-media {
  position: relative;
  min-height: 640px;
}

.about-media > img {
  width: calc(100% - 46px);
  height: 600px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.about-media::before {
  position: absolute;
  z-index: -1;
  top: 36px;
  right: 0;
  width: 80%;
  height: 92%;
  background: var(--blue-600);
  border-radius: var(--radius-lg);
  content: "";
}

.about-badge {
  position: absolute;
  right: 0;
  bottom: 0;
  display: flex;
  width: 220px;
  min-height: 116px;
  flex-direction: column;
  justify-content: center;
  padding: 24px 30px;
  color: var(--white);
  background: var(--navy-900);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.about-badge strong {
  font-family: "Manrope", sans-serif;
  font-size: 1.45rem;
}

.about-badge span {
  color: #9fb1c1;
  font-size: 0.84rem;
}

.blueprint-lines {
  position: absolute;
  z-index: -1;
  top: -40px;
  left: -45px;
  width: 190px;
  height: 190px;
  background-image:
    linear-gradient(rgba(0, 111, 176, 0.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 111, 176, 0.18) 1px, transparent 1px);
  background-size: 18px 18px;
}

.about-copy .lead {
  color: var(--ink);
  font-size: 1.12rem;
  font-weight: 600;
}

.about-copy > p:not(.eyebrow) {
  color: var(--muted);
}

.check-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px 20px;
  margin: 32px 0 38px;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 27px;
  font-size: 0.92rem;
  font-weight: 600;
}

.check-list li::before {
  position: absolute;
  top: 0.38em;
  left: 0;
  width: 14px;
  height: 14px;
  background: var(--electric);
  clip-path: polygon(14% 44%, 0 58%, 38% 100%, 100% 24%, 84% 8%, 36% 70%);
  content: "";
}

.why-section {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 85% 25%, rgba(0, 160, 240, 0.16), transparent 30%),
    var(--navy-950);
}

.why-geometry {
  position: absolute;
  top: -30%;
  right: -12%;
  width: 50vw;
  height: 50vw;
  border: 1px solid rgba(0, 160, 240, 0.13);
  transform: rotate(45deg);
}

.light-heading {
  position: relative;
  z-index: 1;
}

.light-heading > p:last-child {
  color: #a8b7c5;
}

.benefits-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.benefits-grid article {
  min-height: 230px;
  padding: 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.benefits-grid article > span,
.benefits-grid .benefit-icon {
  display: block;
  margin-bottom: 42px;
}

.benefits-grid article > span {
  color: var(--electric);
  font-family: "Manrope", sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
}

.benefits-grid .benefit-icon {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.benefits-grid h3 {
  margin-bottom: 12px;
  font-size: 1.12rem;
}

.benefits-grid p {
  margin: 0;
  color: #9fb1c1;
  font-size: 0.88rem;
}

.sector-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.sector-card {
  position: relative;
  min-height: 610px;
  overflow: hidden;
  color: var(--white);
  border-radius: var(--radius-lg);
}

.sector-card img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms ease;
}

.sector-card:hover img {
  transform: scale(1.035);
}

.sector-card::after {
  position: absolute;
  content: "";
  inset: 0;
  background: linear-gradient(0deg, rgba(3, 17, 36, 0.96) 0%, rgba(3, 17, 36, 0.14) 75%);
}

.sector-content {
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 45px;
}

.sector-content > span {
  color: var(--electric-light);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.sector-content h3 {
  margin: 13px 0;
  font-size: clamp(1.65rem, 2.5vw, 2.45rem);
}

.sector-content p {
  max-width: 530px;
  color: #c2ced8;
}

.sector-content a {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  color: var(--white);
  font-weight: 700;
}

.projects-section {
  background: var(--mist);
}

.project-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: -25px 0 34px;
}

.project-filters button {
  padding: 9px 16px;
  color: var(--muted);
  background: transparent;
  border: 1px solid #c7d5e0;
  border-radius: 30px;
  font-size: 0.83rem;
  font-weight: 700;
  cursor: pointer;
}

.project-filters button.active,
.project-filters button:hover {
  color: var(--white);
  background: var(--navy-900);
  border-color: var(--navy-900);
}

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

.project-card {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  color: var(--white);
  border-radius: var(--radius);
}

.project-card.large {
  grid-column: span 2;
}

.project-card[hidden] {
  display: none;
}

.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.project-card::after {
  position: absolute;
  content: "";
  inset: 0;
  background: linear-gradient(0deg, rgba(3, 17, 36, 0.97), rgba(3, 17, 36, 0.02) 78%);
}

.project-card:hover img {
  transform: scale(1.045);
}

.project-card > div {
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 28px;
}

.project-card > div span {
  color: var(--electric-light);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.project-card h3 {
  margin: 7px 0;
  font-size: 1.35rem;
}

.project-card p {
  max-width: 520px;
  margin: 0;
  color: #b7c5d1;
  font-size: 0.87rem;
}

.process-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(60px, 10vw, 140px);
}

.process-intro {
  position: sticky;
  top: 120px;
  align-self: start;
}

.process-intro > p:not(.eyebrow) {
  margin-bottom: 34px;
  color: var(--muted);
}

.process-steps {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: steps;
}

.process-steps li {
  position: relative;
  display: grid;
  grid-template-columns: 88px 1fr;
  min-height: 155px;
  gap: 24px;
  padding: 6px 0 38px;
}

.process-steps li:not(:last-child)::after {
  position: absolute;
  top: 54px;
  bottom: 0;
  left: 27px;
  width: 1px;
  background: var(--line);
  content: "";
}

.process-steps li > span {
  position: relative;
  z-index: 1;
  display: flex;
  width: 56px;
  height: 56px;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: var(--navy-900);
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 700;
}

.process-steps h3 {
  margin: 5px 0 8px;
  font-size: 1.35rem;
}

.process-steps p {
  margin: 0;
  color: var(--muted);
}

.trust-panel {
  padding: 70px 0;
  color: var(--white);
  background: linear-gradient(120deg, var(--blue-700), var(--blue-500));
}

.trust-panel-inner {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  align-items: center;
  gap: 80px;
}

.trust-panel h2 {
  margin-bottom: 0;
  font-size: clamp(1.9rem, 3vw, 3.2rem);
}

.trust-panel ul {
  display: grid;
  gap: 13px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.trust-panel li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
}

.trust-panel .icon {
  width: 18px;
  height: 18px;
}

.quote-section {
  background:
    linear-gradient(90deg, rgba(0, 111, 176, 0.035) 1px, transparent 1px),
    linear-gradient(rgba(0, 111, 176, 0.035) 1px, transparent 1px),
    var(--white);
  background-size: 64px 64px;
}

.quote-layout {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  align-items: start;
  gap: clamp(50px, 8vw, 100px);
}

.quote-copy {
  position: sticky;
  top: 110px;
}

.quote-copy > p:not(.eyebrow) {
  color: var(--muted);
}

.quote-points {
  display: grid;
  gap: 22px;
  margin: 38px 0;
}

.quote-points > div {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
}

.quote-points > div > span {
  display: flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  color: var(--blue-600);
  background: #e3f4fc;
  border-radius: 50%;
  font-size: 0.7rem;
  font-weight: 700;
}

.quote-points p {
  display: flex;
  flex-direction: column;
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.quote-points strong {
  color: var(--ink);
  font-family: "Manrope", sans-serif;
}

.privacy-note {
  display: flex;
  gap: 12px;
  padding: 18px;
  color: var(--muted);
  background: var(--mist);
  border-left: 3px solid var(--electric);
  border-radius: var(--radius-sm);
}

.privacy-note .icon {
  margin-top: 3px;
  color: var(--blue-600);
}

.privacy-note p {
  margin: 0;
  font-size: 0.83rem;
}

.quote-form {
  padding: clamp(26px, 4vw, 48px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.form-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 30px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.form-header > span {
  font-family: "Manrope", sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
}

.form-header p {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
}

.form-header b,
.field label b,
.consent b {
  color: var(--blue-600);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.field {
  min-width: 0;
}

.field.full {
  grid-column: 1 / -1;
}

.field label {
  display: block;
  margin-bottom: 7px;
  color: var(--ink);
  font-size: 0.84rem;
  font-weight: 700;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  color: var(--ink);
  background: #f8fafc;
  border: 1px solid #cbd8e2;
  border-radius: var(--radius-sm);
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.field input,
.field select {
  height: 51px;
  padding: 0 14px;
}

.field textarea {
  min-height: 130px;
  padding: 13px 14px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  background: var(--white);
  border-color: var(--blue-500);
  box-shadow: 0 0 0 3px rgba(0, 160, 240, 0.12);
}

.field [aria-invalid="true"] {
  border-color: var(--error);
}

.field small,
.field-meta {
  display: flex;
  justify-content: space-between;
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.72rem;
}

.field-error {
  display: block;
  min-height: 1em;
  margin-top: 4px;
  color: var(--error);
  font-size: 0.76rem;
  font-weight: 600;
}

.field-meta .field-error {
  margin: 0;
}

.consent {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  margin-top: 24px;
  color: var(--muted);
  font-size: 0.82rem;
  cursor: pointer;
}

.consent input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  accent-color: var(--blue-600);
}

.consent-error {
  min-height: 18px;
}

.form-submit {
  width: 100%;
  margin-top: 10px;
  border: 0;
}

.form-submit:disabled {
  cursor: wait;
  opacity: 0.7;
}

.honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.form-status {
  margin-bottom: 24px;
  padding: 17px 19px;
  border-radius: var(--radius-sm);
}

.form-status strong,
.form-status span {
  display: block;
}

.form-status span {
  margin-top: 3px;
  font-size: 0.86rem;
}

.form-status.success {
  color: #075d3e;
  background: #e7f8f0;
  border: 1px solid #adddc7;
}

.form-status.error {
  color: #8c1d18;
  background: #fdf0ef;
  border: 1px solid #efc0bd;
}

.status-link {
  display: inline-block !important;
  margin-top: 10px;
  color: inherit;
  font-weight: 700;
}

.contact-section {
  color: var(--white);
  background: var(--navy-950);
}

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

.contact-card {
  display: flex;
  min-height: 190px;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  transition: background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

a.contact-card:hover {
  background: rgba(0, 160, 240, 0.12);
  border-color: rgba(0, 160, 240, 0.45);
  transform: translateY(-3px);
}

.contact-card .icon {
  width: 30px;
  height: 30px;
  margin-bottom: auto;
  color: var(--electric);
}

.contact-card > span:not(.icon) {
  color: #8fa4b5;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-card strong {
  margin-top: 4px;
  font-family: "Manrope", sans-serif;
  font-size: 1rem;
}

.map-placeholder {
  position: relative;
  display: flex;
  min-height: 260px;
  align-items: center;
  justify-content: center;
  gap: 25px;
  margin-top: 24px;
  overflow: hidden;
  text-align: left;
  background: var(--navy-800);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
}

.map-lines {
  position: absolute;
  opacity: 0.25;
  inset: -50%;
  background:
    linear-gradient(35deg, transparent 49%, rgba(0, 160, 240, 0.4) 50%, transparent 51%) 0 0 / 130px 130px,
    linear-gradient(-35deg, transparent 49%, rgba(255, 255, 255, 0.17) 50%, transparent 51%) 0 0 / 160px 160px;
  transform: rotate(10deg);
}

.map-pin {
  position: relative;
  width: 54px;
  height: 54px;
  color: var(--electric);
}

.map-placeholder > div:last-child {
  position: relative;
}

.map-placeholder p {
  margin: 0 0 4px;
  color: var(--electric-light);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.map-placeholder h3 {
  margin: 0 0 5px;
  font-size: 1.6rem;
}

.map-placeholder > div:last-child > span {
  color: #8fa4b5;
  font-size: 0.85rem;
}

.site-footer {
  padding-top: 75px;
  color: #a8b7c5;
  background: #020d1c;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.5fr 1fr 0.8fr 1.2fr;
  gap: 55px;
  padding-bottom: 60px;
}

.footer-brand > a {
  display: inline-flex;
  align-items: flex-start;
}

.footer-brand img {
  width: 155px;
  height: auto;
  aspect-ratio: 635 / 589;
  object-fit: contain;
  margin-bottom: 20px;
}

.footer-brand p {
  max-width: 330px;
  font-size: 0.88rem;
}

.site-footer h2 {
  margin-bottom: 22px;
  color: var(--white);
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-footer ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer li,
.site-footer a {
  font-size: 0.85rem;
}

.site-footer a:hover {
  color: var(--electric-light);
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
}

.footer-contact .icon {
  width: 17px;
  height: 17px;
  margin-top: 4px;
  color: var(--electric);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  margin: 0;
  font-size: 0.78rem;
}

.footer-bottom .site-credit::before {
  margin: 0 0.65em;
  color: var(--electric);
  content: "•";
}

.footer-bottom .site-credit a {
  color: var(--white);
  font-weight: 600;
}

.footer-bottom .site-credit a:hover {
  color: var(--electric-light);
}

.footer-bottom nav {
  display: flex;
  gap: 22px;
}

.mobile-cta {
  display: none;
}

.legal-hero {
  padding: 170px 0 80px;
  color: var(--white);
  background: linear-gradient(135deg, var(--navy-950), var(--navy-800));
}

.legal-hero h1 {
  max-width: 800px;
  margin: 0;
  font-size: clamp(2.6rem, 6vw, 5.4rem);
}

.legal-content {
  padding: 80px 0 120px;
}

.legal-prose {
  max-width: 820px;
}

.legal-prose .notice {
  margin-bottom: 42px;
  padding: 18px 20px;
  color: #674b0d;
  background: #fff7db;
  border-left: 4px solid #e0a51d;
}

.legal-prose h2 {
  margin-top: 48px;
  font-size: 1.6rem;
}

.legal-prose h3 {
  margin-top: 28px;
  font-size: 1.15rem;
}

.legal-prose p,
.legal-prose li {
  color: var(--muted);
}

.legal-prose a {
  color: var(--blue-600);
  text-decoration: underline;
}

.simple-header {
  position: absolute;
  background: var(--navy-950);
}

.back-link {
  margin-left: auto;
  color: var(--white);
  font-weight: 700;
}

.server-message {
  display: grid;
  min-height: 100svh;
  place-items: center;
  padding: 30px;
  color: var(--white);
  text-align: center;
  background: radial-gradient(circle at top right, rgba(0, 160, 240, 0.24), transparent 35%), var(--navy-950);
}

.server-message-card {
  width: min(100%, 660px);
  padding: 48px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius-lg);
}

.server-message-card h1 {
  font-size: clamp(2rem, 6vw, 3.4rem);
}

.server-message-card p {
  color: #b6c5d0;
}

.server-message-card ul {
  margin: 25px 0;
  padding: 0;
  color: #ffd3cf;
  list-style: none;
}

@media (max-width: 1120px) {
  .primary-nav {
    gap: 17px;
  }

  .primary-nav a {
    font-size: 0.82rem;
  }

  .text-link {
    display: none;
  }

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

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

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

@media (max-height: 950px) {
  .hero-scroll {
    display: none;
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 74px;
  }

  .header-actions .button {
    display: none;
  }

  .nav-toggle {
    position: relative;
    z-index: 2;
    display: block;
    margin-left: auto;
    touch-action: manipulation;
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(2) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(3) {
    opacity: 0;
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(4) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .primary-nav {
    position: fixed;
    z-index: 1;
    top: 0;
    right: 0;
    bottom: auto;
    display: flex;
    width: min(84vw, 420px);
    height: 100vh;
    height: 100dvh;
    max-height: 100dvh;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: 100px 36px calc(90px + env(safe-area-inset-bottom));
    overflow-x: hidden;
    overflow-y: auto;
    background: var(--navy-950);
    box-shadow: -30px 0 70px rgba(0, 0, 0, 0.35);
    overscroll-behavior: contain;
    opacity: 0;
    pointer-events: none;
    transform: translateX(110%);
    visibility: hidden;
    -webkit-overflow-scrolling: touch;
    transition: transform 240ms ease, opacity 180ms ease, visibility 240ms ease;
  }

  .primary-nav.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0);
    visibility: visible;
  }

  .site-header.scrolled {
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }

  .primary-nav a {
    padding: 16px 0;
    font-size: 1.2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .hero {
    min-height: 760px;
  }

  .hero-copy {
    width: 82%;
  }

  .hero-overlay {
    background: linear-gradient(90deg, rgba(3, 17, 36, 0.98), rgba(3, 17, 36, 0.63)), linear-gradient(0deg, rgba(3, 17, 36, 0.8), transparent);
  }

  .split-heading,
  .about-grid,
  .process-layout,
  .trust-panel-inner,
  .quote-layout {
    grid-template-columns: 1fr;
  }

  .split-heading {
    gap: 25px;
  }

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

  .about-media {
    min-height: 570px;
  }

  .about-media > img {
    height: 530px;
  }

  .sector-card {
    min-height: 520px;
  }

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

  .project-card.large {
    grid-column: span 1;
  }

  .process-intro,
  .quote-copy {
    position: static;
  }

  .trust-panel-inner {
    gap: 35px;
  }

  .footer-main {
    grid-template-columns: 1.4fr 1fr 1fr;
  }

  .footer-main > :last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 680px) {
  body {
    padding-bottom: 63px;
  }

  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .section {
    padding: 82px 0;
  }

  h2 {
    font-size: clamp(2rem, 10vw, 3.1rem);
  }

  .brand {
    width: 78px;
  }

  .brand img {
    width: auto;
    height: 62px;
    max-height: calc(100% - 8px);
  }

  .hero {
    min-height: 740px;
    height: 100svh;
  }

  .hero-image {
    object-position: 63% center;
  }

  .hero-overlay {
    background: linear-gradient(90deg, rgba(3, 17, 36, 0.97), rgba(3, 17, 36, 0.62)), linear-gradient(0deg, rgba(3, 17, 36, 0.91), transparent 70%);
  }

  .hero-copy {
    width: 100%;
    padding-top: 86px;
  }

  .hero h1 {
    font-size: clamp(2.3rem, 10.5vw, 3.25rem);
    line-height: 1.04;
  }

  .hero-lead {
    font-size: 1rem;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    margin-bottom: 35px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .trust-line {
    gap: 8px 20px;
    font-size: 0.67rem;
  }

  .hero-scroll {
    display: none;
  }

  .quick-contact-grid {
    grid-template-columns: 1fr;
  }

  .quick-contact-grid > div,
  .quick-contact-grid > a {
    min-height: 84px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .section-heading {
    margin-bottom: 42px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

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

  .about-media {
    min-height: 470px;
  }

  .about-media > img {
    width: calc(100% - 20px);
    height: 430px;
  }

  .about-badge {
    width: 190px;
    min-height: 98px;
    padding: 20px;
  }

  .check-list {
    grid-template-columns: 1fr;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .benefits-grid article {
    min-height: 190px;
  }

  .sector-grid {
    grid-template-columns: 1fr;
  }

  .sector-card {
    min-height: 500px;
  }

  .sector-content {
    padding: 28px;
  }

  .project-filters {
    margin-top: -15px;
  }

  .project-grid {
    grid-template-columns: 1fr;
  }

  .project-card {
    min-height: 410px;
  }

  .process-steps li {
    grid-template-columns: 68px 1fr;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .field.full {
    grid-column: auto;
  }

  .form-header {
    display: block;
  }

  .form-header p {
    margin-top: 6px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-card {
    min-height: 150px;
  }

  .map-placeholder {
    flex-direction: column;
    padding: 34px 22px;
    text-align: center;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 40px 25px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-main > :last-child {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-bottom .site-credit {
    display: block;
    margin-top: 6px;
  }

  .footer-bottom .site-credit::before {
    display: none;
  }

  .mobile-cta {
    position: fixed;
    z-index: 999;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    min-height: 63px;
    color: var(--white);
    background: var(--navy-950);
    box-shadow: 0 -12px 34px rgba(3, 17, 36, 0.38);
  }

  .mobile-cta a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px;
    font-size: 0.86rem;
    font-weight: 700;
  }

  .mobile-cta a:first-child {
    background: linear-gradient(135deg, #075e57, #087b70);
  }

  .mobile-cta-icon {
    display: block;
    width: 20px;
    height: 20px;
    flex: 0 0 20px;
  }

  .mobile-cta a:first-child .mobile-cta-icon {
    filter: brightness(0) invert(1);
  }

  .mobile-cta a:last-child {
    background: linear-gradient(135deg, #087fbe, var(--electric));
  }

  .mobile-cta a:first-child:active {
    background: #064f49;
  }

  .mobile-cta a:last-child:active {
    background: var(--blue-700);
  }
}

@media (max-width: 420px) {
  .hero h1 {
    font-size: 2.35rem;
  }

  .hero .eyebrow {
    font-size: 0.67rem;
  }

  .quote-form {
    padding: 24px 18px;
  }

  .footer-main {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

@media print {
  .site-header,
  .mobile-cta,
  .hero-scroll,
  .project-filters {
    display: none !important;
  }

  body {
    padding: 0;
  }
}
