/* =========================================================
   UVC CONTRACTING LLC
   GLOBAL + HEADER + HOME HERO V2
========================================================= */

:root {
  --uvc-primary: #6090A7;
  --uvc-deep-blue: #5A8CA3;
  --uvc-light-blue: #7BB8DF;
  --uvc-sky: #89C6E8;

  --uvc-charcoal: #555555;
  --uvc-dark: #182329;
  --uvc-dark-soft: #253239;
  --uvc-text: #52616A;

  --uvc-white: #FFFFFF;
  --uvc-light: #F6F9FB;
  --uvc-border: #DDE7EC;

  --container-width: 1280px;
  --header-height: 88px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--uvc-text);
  background: var(--uvc-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

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

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

button {
  font: inherit;
}

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

/* Accessibility */
.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 9999;
  padding: 10px 14px;
  border-radius: 6px;
  color: var(--uvc-white);
  background: var(--uvc-dark);
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}

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

/* =========================================================
   HEADER
========================================================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--header-height);
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid rgba(90, 140, 163, 0.10);
  transition: box-shadow 0.28s ease, border-color 0.28s ease;
}

.site-header.is-scrolled {
  border-color: rgba(90, 140, 163, 0.16);
  box-shadow: 0 10px 30px rgba(24, 35, 41, 0.07);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.site-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.site-logo {
  width: 86px;
  height: 58px;
  object-fit: contain;
}

.brand-name {
  color: var(--uvc-dark);
  font-size: 0.88rem;
  font-weight: 750;
  letter-spacing: 0.055em;
  white-space: nowrap;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.primary-nav > a:not(.header-cta) {
  position: relative;
  padding: 10px 0;
  color: var(--uvc-dark-soft);
  font-size: 0.96rem;
  font-weight: 650;
  transition: color 0.2s ease;
}

.primary-nav > a:not(.header-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 4px;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: var(--uvc-primary);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
}

.primary-nav > a:hover,
.primary-nav > a[aria-current="page"] {
  color: var(--uvc-deep-blue);
}

.primary-nav > a:hover::after,
.primary-nav > a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 25px;
  border-radius: 9px;
  color: var(--uvc-white);
  background: linear-gradient(135deg, var(--uvc-deep-blue), var(--uvc-primary));
  font-size: 0.94rem;
  font-weight: 750;
  box-shadow: 0 10px 24px rgba(90, 140, 163, 0.20);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.header-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(90, 140, 163, 0.27);
}

/* Mobile menu button */
.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  margin: 5px auto;
  background: var(--uvc-dark);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.menu-toggle.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.is-active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* =========================================================
   HOME HERO
========================================================= */

.home-hero {
  --hero-progress: 0;

  position: relative;
  min-height: calc(100svh - var(--header-height));
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;

  padding: 54px 0 52px;

  background:
    radial-gradient(circle at 6% 10%, rgba(137, 198, 232, 0.20), transparent 30%),
    radial-gradient(circle at 95% 50%, rgba(96, 144, 167, 0.12), transparent 29%),
    linear-gradient(180deg, #FBFDFE 0%, #F4F8FA 100%);
}

.hero-grid-pattern {
  position: absolute;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  opacity: 0.56;
  background-image:
    linear-gradient(rgba(90, 140, 163, 0.065) 1px, transparent 1px),
    linear-gradient(90deg, rgba(90, 140, 163, 0.065) 1px, transparent 1px);
  background-size: 48px 48px;
  transform:
    translate3d(
        0,
        calc(var(--hero-progress) * 28px),
        0
    );
  will-change: transform;
}

.hero-glow {
  position: absolute;
  z-index: -2;
  border-radius: 50%;
  pointer-events: none;
}

.hero-glow-one {
  width: 390px;
  height: 390px;
  top: -220px;
  left: -160px;
  background: rgba(137, 198, 232, 0.13);
}

.hero-glow-two {
  width: 460px;
  height: 460px;
  right: -250px;
  bottom: -240px;
  background: rgba(90, 140, 163, 0.09);
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(390px, 0.82fr);
  align-items: center;
  gap: clamp(56px, 6vw, 96px);
}

/* Hero copy */
.hero-copy {
    max-width: 720px;

    transform:
        translate3d(
            0,
            calc(var(--hero-progress) * -42px),
            0
        );

    opacity:
        calc(
            1 - (var(--hero-progress) * 0.24)
        );

    will-change:
        transform,
        opacity;
}

.hero-kicker {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--uvc-deep-blue);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.115em;
  text-transform: uppercase;
}

.hero-kicker-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--uvc-light-blue);
}

.hero-copy h1 {
  margin: 0 0 22px;
  max-width: 720px;
  color: var(--uvc-dark);
  font-size: clamp(3rem, 4vw, 4rem);
  line-height: 1.04;
  letter-spacing: -0.042em;
  font-weight: 780;
}

.hero-copy h1 span {
  display: block;
}

.hero-description {
  max-width: 650px;
  margin: 0 0 28px;
  color: var(--uvc-text);
  font-size: clamp(1rem, 1.22vw, 1.12rem);
  line-height: 1.72;
}

/* Buttons */
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-bottom: 25px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  min-height: 52px;
  padding: 0 25px;
  border: 1px solid transparent;
  border-radius: 9px;
  font-size: 0.95rem;
  font-weight: 750;
  transition:
    transform 0.22s ease,
    background-color 0.22s ease,
    border-color 0.22s ease,
    color 0.22s ease,
    box-shadow 0.22s ease;
}

.btn-primary {
  color: var(--uvc-white);
  background: linear-gradient(135deg, var(--uvc-deep-blue), var(--uvc-primary));
  box-shadow: 0 13px 28px rgba(90, 140, 163, 0.22);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 17px 34px rgba(90, 140, 163, 0.29);
}

.btn-arrow {
  font-size: 1.12rem;
  transition: transform 0.22s ease;
}

.btn-primary:hover .btn-arrow {
  transform: translateX(4px);
}

.btn-outline {
  color: var(--uvc-dark);
  background: rgba(255, 255, 255, 0.64);
  border-color: rgba(90, 140, 163, 0.24);
}

.btn-outline:hover {
  color: var(--uvc-deep-blue);
  background: var(--uvc-white);
  border-color: var(--uvc-primary);
  transform: translateY(-2px);
}

/* Service chips */
.hero-services {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-services li {
  padding: 8px 12px;
  color: #43525A;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(90, 140, 163, 0.14);
  border-radius: 7px;
  font-size: 0.80rem;
  font-weight: 700;
  box-shadow: 0 5px 14px rgba(24, 35, 41, 0.035);
}

/* Hero media */
.hero-media {
    position: relative;
    display: flex;
    justify-content: flex-end;

    transform:
        translate3d(
            0,
            calc(var(--hero-progress) * -22px),
            0
        )
        scale(
            calc(1 + (var(--hero-progress) * 0.018))
        );

    opacity:
        calc(
            1 - (var(--hero-progress) * 0.10)
        );

    will-change:
        transform,
        opacity;
}

.hero-media-frame {
  position: relative;
  width: min(100%, 500px);
  padding: 12px 12px 0 0;
}

.hero-media-frame::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 79%;
  height: 83%;
  z-index: -1;
  border: 1px solid rgba(90, 140, 163, 0.25);
  border-radius: 24px;
}

.hero-image {
  width: 100%;
  height: clamp(500px, 67vh, 630px);
  object-fit: cover;
  object-position: center center;
  border-radius: 22px;
  background: #E8F0F4;
  box-shadow: 0 26px 60px rgba(24, 35, 41, 0.15);
}

.hero-technical-card {
  position: absolute;
  left: -26px;
  bottom: 28px;
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 260px;
  padding: 15px 17px;
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 17px 38px rgba(24, 35, 41, 0.13);
  backdrop-filter: blur(12px);
}

.technical-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 9px;
  color: var(--uvc-white);
  background: var(--uvc-deep-blue);
  font-size: 0.86rem;
  font-weight: 800;
}

.technical-small {
  display: block;
  margin-bottom: 2px;
  color: var(--uvc-primary);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.10em;
}

.hero-technical-card strong {
  display: block;
  color: var(--uvc-dark);
  font-size: 0.88rem;
  font-weight: 750;
}

.hero-frame-line {
  position: absolute;
  pointer-events: none;
  background: var(--uvc-light-blue);
}

.hero-frame-line-one {
  width: 64px;
  height: 2px;
  top: 48px;
  left: -20px;
}

.hero-frame-line-two {
  width: 2px;
  height: 70px;
  right: -7px;
  bottom: 65px;
}

/* Scroll cue */
.hero-scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 16px;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  transform: translateX(-50%);
  opacity: calc(1 - (var(--hero-progress) * 1.5));
  color: #748188;
  font-size: 0.61rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  pointer-events: none;
}

.hero-scroll-line {
  position: relative;
  width: 1px;
  height: 30px;
  overflow: hidden;
  background: rgba(90, 140, 163, 0.18);
}

.hero-scroll-line span {
  position: absolute;
  top: -55%;
  left: 0;
  width: 100%;
  height: 48%;
  background: var(--uvc-primary);
  animation: heroScrollLine 1.7s ease-in-out infinite;
}

@keyframes heroScrollLine {
  to {
    transform: translateY(330%);
  }
}

.hero-bottom-transition {
  position: absolute;

  left: 0;
  right: 0;
  bottom: 0;

  height: 28px;

  pointer-events: none;

  background:
    linear-gradient(
      to bottom,
      transparent,
      rgba(24, 35, 41, 0.035)
    );
}

/* =========================================================
   PROJECT JOURNEY SECTION
========================================================= */

.journey-section {
  position: relative;
  overflow: hidden;

  padding:
    clamp(72px, 7.5vw, 110px)
    0;

  color: var(--uvc-white);

  background:
    radial-gradient(
      circle at 85% 10%,
      rgba(123, 184, 223, 0.11),
      transparent 28%
    ),
    linear-gradient(
      135deg,
      #182329 0%,
      #202E35 100%
    );
}


/* Subtle technical grid */
.journey-grid-overlay {
  position: absolute;

  inset: 0;

  pointer-events: none;

  opacity: 0.22;

  background-image:
    linear-gradient(
      rgba(137, 198, 232, 0.10) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(137, 198, 232, 0.10) 1px,
      transparent 1px
    );

  background-size:
    56px 56px;

  mask-image:
    linear-gradient(
      to right,
      transparent,
      black 22%,
      black 80%,
      transparent
    );
}


.journey-inner {
  position: relative;

  z-index: 2;
}


/* =========================
   SECTION INTRO
========================= */

.journey-heading {
  display: grid;

  grid-template-columns:
    minmax(0, 0.9fr)
    minmax(320px, 0.7fr);

  align-items: end;

  gap: clamp(
    40px,
    8vw,
    110px
  );

  margin-bottom:
    clamp(
      60px,
      7vw,
      90px
    );
}


.section-kicker {
  grid-column: 1 / -1;

  margin:
    0
    0
    -18px;

  color: var(--uvc-light-blue);

  font-size: 0.73rem;

  font-weight: 800;

  letter-spacing: 0.13em;

  text-transform: uppercase;
}


.journey-heading h2 {
  margin: 0;

  max-width: 650px;

  color: var(--uvc-white);

  font-size:
    clamp(
      2.5rem,
      4.3vw,
      4.7rem
    );

  line-height: 1.02;

  letter-spacing: -0.042em;

  font-weight: 760;
}


.journey-heading h2 span {
  display: block;

  color: var(--uvc-light-blue);
}


.journey-intro {
  max-width: 570px;

  margin: 0;

  color: #BBC8CE;

  font-size:
    clamp(
      1rem,
      1.25vw,
      1.08rem
    );

  line-height: 1.78;
}


/* =========================
   STEPS
========================= */

.journey-steps {
  display: grid;

  grid-template-columns:
    repeat(3, 1fr);

  border-top:
    1px solid
    rgba(255, 255, 255, 0.13);

  border-left:
    1px solid
    rgba(255, 255, 255, 0.13);
}


.journey-step {
  position: relative;

  min-height: 245px;

  padding:
    32px
    30px
    34px;

  border-right:
    1px solid
    rgba(255, 255, 255, 0.13);

  border-bottom:
    1px solid
    rgba(255, 255, 255, 0.13);

  transition:
    background-color 0.3s ease,
    transform 0.3s ease;
}


.journey-step::before {
  content: "";

  position: absolute;

  left: 0;
  top: 0;

  width: 3px;
  height: 0;

  background:
    linear-gradient(
      to bottom,
      var(--uvc-light-blue),
      var(--uvc-primary)
    );

  transition:
    height 0.35s ease;
}


.journey-step:hover {
  background:
    rgba(255, 255, 255, 0.035);
}


.journey-step:hover::before {
  height: 100%;
}


.journey-number {
  display: block;

  margin-bottom: 43px;

  color: var(--uvc-light-blue);

  font-size: 0.75rem;

  font-weight: 800;

  letter-spacing: 0.08em;
}


.journey-step h3 {
  margin:
    0
    0
    10px;

  color: var(--uvc-white);

  font-size: 1.32rem;

  font-weight: 720;
}


.journey-step p {
  max-width: 310px;

  margin: 0;

  color: #AEBCC2;

  font-size: 0.90rem;

  line-height: 1.65;
}


/* =========================================================
   LIGHT SCROLL REVEAL
========================================================= */

.reveal-on-scroll {
  opacity: 0;

  transform:
    translate3d(
      0,
      26px,
      0
    );

  transition:
    opacity 0.75s ease,
    transform 0.75s ease;
}


.reveal-on-scroll.is-visible {
  opacity: 1;

  transform:
    translate3d(
      0,
      0,
      0
    );
}


/* Add slight stagger without JS */
.journey-step:nth-child(2) {
  transition-delay: 0.06s;
}


.journey-step:nth-child(3) {
  transition-delay: 0.12s;
}


.journey-step:nth-child(4) {
  transition-delay: 0.06s;
}


.journey-step:nth-child(5) {
  transition-delay: 0.12s;
}


.journey-step:nth-child(6) {
  transition-delay: 0.18s;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 900px) {

  .journey-heading {
    grid-template-columns: 1fr;

    gap: 25px;
  }


  .section-kicker {
    grid-column: auto;

    margin-bottom: 0;
  }


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

}


@media (max-width: 600px) {

  .journey-section {
    padding:
      75px
      0;
  }


  .journey-heading {
    margin-bottom: 50px;
  }


  .journey-heading h2 {
    font-size:
      clamp(
        2.35rem,
        10vw,
        3.3rem
      );
  }


  .journey-steps {
    grid-template-columns: 1fr;
  }


  .journey-step {
    min-height: 0;

    padding:
      28px
      24px;
  }


  .journey-number {
    margin-bottom: 30px;
  }

}


/* Reduced motion */
@media (prefers-reduced-motion: reduce) {

  .reveal-on-scroll {
    opacity: 1;

    transform: none;
  }

}


/* =========================================================
   SERVICES OVERVIEW
========================================================= */

.services-overview {
  position: relative;

  padding:
    clamp(90px, 9vw, 140px)
    0;

  background:
    linear-gradient(
      180deg,
      #FFFFFF 0%,
      #F7FAFC 100%
    );
}


/* =========================
   SECTION HEADING
========================= */

.services-overview-head {
  display: grid;

  grid-template-columns:
    minmax(0, 1.1fr)
    minmax(320px, 0.65fr);

  align-items: end;

  gap:
    clamp(
      45px,
      8vw,
      120px
    );

  margin-bottom:
    clamp(
      55px,
      7vw,
      85px
    );
}


.services-kicker {
  margin:
    0
    0
    18px;

  color:
    var(--uvc-deep-blue);
}


.services-overview-head h2 {
  max-width: 720px;

  margin: 0;

  color:
    var(--uvc-dark);

  font-size:
    clamp(
      2.5rem,
      4.2vw,
      4.5rem
    );

  line-height: 1.04;

  letter-spacing:
    -0.042em;

  font-weight: 760;
}


.services-overview-head h2 span {
  display: block;

  color:
    var(--uvc-primary);
}


.services-overview-intro p {
  max-width: 520px;

  margin:
    0
    0
    20px;

  color:
    var(--uvc-text);

  font-size: 1rem;

  line-height: 1.75;
}


.text-link {
  display: inline-flex;

  align-items: center;

  gap: 10px;

  color:
    var(--uvc-deep-blue);

  font-size: 0.92rem;

  font-weight: 750;
}


.text-link span {
  transition:
    transform 0.25s ease;
}


.text-link:hover span {
  transform:
    translateX(4px);
}


/* =========================================================
   SERVICES GRID
========================================================= */

.services-grid {
  display: grid;

  grid-template-columns:
    repeat(3, 1fr);

  gap: 16px;
}


/* =========================================================
   SERVICE CARD
========================================================= */

.service-card {
  position: relative;

  display: flex;

  flex-direction: column;

  justify-content: space-between;

  min-height: 335px;

  padding:
    28px
    28px
    30px;

  overflow: hidden;

  border:
    1px solid
    rgba(90, 140, 163, 0.14);

  border-radius: 16px;

  background:
    rgba(255, 255, 255, 0.92);

  box-shadow:
    0 12px 34px
    rgba(24, 35, 41, 0.045);

  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}


/* Top blue line */
.service-card::before {
  content: "";

  position: absolute;

  left: 0;
  top: 0;

  width: 100%;
  height: 3px;

  background:
    linear-gradient(
      90deg,
      var(--uvc-deep-blue),
      var(--uvc-light-blue)
    );

  transform:
    scaleX(0);

  transform-origin:
    left;

  transition:
    transform 0.35s ease;
}


.service-card:hover {
  transform:
    translateY(-6px);

  border-color:
    rgba(90, 140, 163, 0.28);

  box-shadow:
    0 22px 50px
    rgba(24, 35, 41, 0.08);
}


.service-card:hover::before {
  transform:
    scaleX(1);
}


/* Featured card */
.service-card-featured {
  grid-column:
    span 2;

  min-height: 370px;

  color:
    var(--uvc-white);

  border-color:
    transparent;

  background:
    linear-gradient(
      135deg,
      #23333B 0%,
      #304750 100%
    );

  box-shadow:
    0 22px 50px
    rgba(24, 35, 41, 0.13);
}


.service-card-featured::after {
  content: "";

  position: absolute;

  width: 270px;
  height: 270px;

  right: -115px;
  bottom: -120px;

  border-radius: 50%;

  background:
    rgba(137, 198, 232, 0.10);

  pointer-events: none;
}


.service-card-featured:hover {
  border-color:
    transparent;

  box-shadow:
    0 27px 58px
    rgba(24, 35, 41, 0.18);
}


/* =========================================================
   CARD TOP
========================================================= */

.service-card-top {
  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 15px;

  margin-bottom:
    65px;
}


.service-number {
  color:
    var(--uvc-primary);

  font-size:
    0.73rem;

  font-weight:
    800;

  letter-spacing:
    0.08em;
}


.service-card-featured
.service-number {

  color:
    var(--uvc-light-blue);
}


.service-label {
  display: inline-flex;

  padding:
    7px
    10px;

  border:
    1px solid
    rgba(255, 255, 255, 0.16);

  border-radius:
    999px;

  color:
    #D8E7EE;

  font-size:
    0.65rem;

  font-weight:
    750;

  letter-spacing:
    0.08em;

  text-transform:
    uppercase;
}


/* =========================================================
   CARD CONTENT
========================================================= */

.service-card h3 {
  max-width:
    390px;

  margin:
    0
    0
    14px;

  color:
    var(--uvc-dark);

  font-size:
    clamp(
      1.35rem,
      1.8vw,
      1.65rem
    );

  line-height:
    1.2;

  font-weight:
    730;
}


.service-card-featured h3 {
  max-width:
    560px;

  color:
    var(--uvc-white);

  font-size:
    clamp(
      1.7rem,
      2.6vw,
      2.35rem
    );
}


.service-card p {
  max-width:
    420px;

  margin:
    0
    0
    25px;

  color:
    #6A777E;

  font-size:
    0.91rem;

  line-height:
    1.68;
}


.service-card-featured p {
  max-width:
    600px;

  color:
    #BAC8CE;
}


/* =========================================================
   SERVICE LINKS
========================================================= */

.service-link {
  display:
    inline-flex;

  align-items:
    center;

  gap:
    9px;

  color:
    var(--uvc-deep-blue);

  font-size:
    0.87rem;

  font-weight:
    750;
}


.service-card-featured
.service-link {

  color:
    var(--uvc-light-blue);
}


.service-link span {
  transition:
    transform
    0.25s
    ease;
}


.service-link:hover span {
  transform:
    translateX(5px);
}


/* =========================================================
   CTA CARD
========================================================= */

.services-cta-card {
  display:
    flex;

  flex-direction:
    column;

  justify-content:
    center;

  min-height:
    335px;

  padding:
    32px;

  border:
    1px solid
    rgba(90, 140, 163, 0.15);

  border-radius:
    16px;

  background:
    linear-gradient(
      145deg,
      #EFF6F9,
      #E7F1F5
    );
}


.services-cta-small {
  margin-bottom:
    12px;

  color:
    var(--uvc-deep-blue);

  font-size:
    0.73rem;

  font-weight:
    800;

  letter-spacing:
    0.07em;

  text-transform:
    uppercase;
}


.services-cta-card h3 {
  margin:
    0
    0
    13px;

  color:
    var(--uvc-dark);

  font-size:
    clamp(
      1.6rem,
      2vw,
      2rem
    );

  line-height:
    1.18;
}


.services-cta-card p {
  margin:
    0
    0
    23px;

  color:
    var(--uvc-text);

  font-size:
    0.90rem;

  line-height:
    1.65;
}


.services-cta-link {
  display:
    inline-flex;

  align-items:
    center;

  gap:
    10px;

  color:
    var(--uvc-deep-blue);

  font-size:
    0.89rem;

  font-weight:
    750;
}


.services-cta-link span {
  transition:
    transform
    0.25s
    ease;
}


.services-cta-link:hover span {
  transform:
    translateX(5px);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

  .services-overview-head {
    grid-template-columns:
      1fr;

    gap:
      25px;
  }


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


  .service-card-featured {
    grid-column:
      span 2;
  }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

  .services-overview {
    padding:
      75px
      0;
  }


  .services-overview-head {
    margin-bottom:
      45px;
  }


  .services-overview-head h2 {
    font-size:
      clamp(
        2.3rem,
        10vw,
        3.2rem
      );
  }


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


  .service-card-featured {
    grid-column:
      auto;
  }


  .service-card,
  .service-card-featured,
  .services-cta-card {

    min-height:
      0;

    padding:
      27px
      24px;
  }


  .service-card-top {
    margin-bottom:
      45px;
  }

}

/* =========================================================
   WHY UVC
========================================================= */

.why-uvc {
  position: relative;

  padding:
    clamp(95px, 10vw, 150px)
    0;

  overflow: clip;

  background:
    #FFFFFF;
}


/* =========================================================
   MAIN LAYOUT
========================================================= */

.why-uvc-layout {
  display: grid;

  grid-template-columns:
    minmax(250px, 0.48fr)
    minmax(0, 1.52fr);

  align-items: center;

  gap:
    clamp(
      55px,
      6vw,
      85px
    );
}


/* =========================================================
   IMAGE
========================================================= */

.why-uvc-media {
  position: relative;
}


.why-uvc-image-wrap {
  position: relative;

  width: min(
    100%,
    330px
  );

  margin-inline: auto;

  padding:
    10px
    0
    0
    10px;
}

/* Thin technical outline */
.why-uvc-image-wrap::before {
  content: "";

  position: absolute;

  top: 0;
  left: 0;

  width: 82%;
  height: 84%;

  z-index: 0;

  border:
    1px solid
    rgba(90, 140, 163, 0.28);

  border-radius:
    22px;
}


.why-uvc-image {
  position: relative;

  z-index: 1;

  width: 100%;
  height: 420px;

  object-fit: cover;
  object-position: center;

  border-radius: 18px;

  background: #EAF1F4;

  box-shadow:
    0 22px 48px
    rgba(24, 35, 41, 0.11);
}


/* Decorative line */
.why-uvc-image-line {
  position: absolute;

  z-index: 3;

  top: 55px;
  right: -20px;

  width: 58px;
  height: 2px;

  background:
    var(--uvc-light-blue);
}


/* Floating card */
.why-uvc-image-card {
  position: absolute;

  z-index: 4;

  right: -20px;
  bottom: 22px;

  display: flex;
  align-items: center;

  gap: 10px;

  min-width: 215px;

  padding:
    12px
    14px;

  border:
    1px solid
    rgba(90, 140, 163, 0.12);

  border-radius: 10px;

  background:
    rgba(255, 255, 255, 0.94);

  box-shadow:
    0 14px 30px
    rgba(24, 35, 41, 0.11);

  backdrop-filter: blur(10px);
}


.why-card-number {
  display: flex;

  align-items: center;
  justify-content: center;

  width: 46px;
  height: 46px;

  flex-shrink: 0;

  border-radius:
    8px;

  color:
    var(--uvc-white);

  background:
    var(--uvc-deep-blue);

  font-size:
    0.80rem;

  font-weight:
    800;
}


.why-uvc-image-card small {
  display: block;

  margin-bottom:
    2px;

  color:
    var(--uvc-primary);

  font-size:
    0.60rem;

  font-weight:
    800;

  letter-spacing:
    0.09em;
}


.why-uvc-image-card strong {
  display: block;

  color:
    var(--uvc-dark);

  font-size:
    0.90rem;

  font-weight:
    750;
}


/* =========================================================
   CONTENT
========================================================= */

.why-uvc-content {
  max-width:
    690px;
}


.why-uvc-kicker {
  margin:
    0
    0
    17px;

  color:
    var(--uvc-deep-blue);
}


.why-uvc-heading h2 {
  margin:
    0
    0
    25px;

  color:
    var(--uvc-dark);

  font-size:
    clamp(
      2.55rem,
      4vw,
      4.35rem
    );

  line-height:
    1.04;

  letter-spacing:
    -0.042em;

  font-weight:
    760;
}


.why-uvc-heading h2 span {
  display: block;

  color:
    var(--uvc-primary);
}


.why-uvc-intro {
  max-width:
    630px;

  margin:
    0
    0
    46px;

  color:
    var(--uvc-text);

  font-size:
    1rem;

  line-height:
    1.78;
}


/* =========================================================
   WHY POINTS
========================================================= */

.why-uvc-points {
  border-top:
    1px solid
    rgba(90, 140, 163, 0.16);
}


.why-point {
  display: grid;

  grid-template-columns:
    45px
    1fr;

  gap:
    18px;

  padding:
    24px
    0;

  border-bottom:
    1px solid
    rgba(90, 140, 163, 0.16);

  transition:
    padding-left
    0.3s ease;
}


.why-point:hover {
  padding-left:
    8px;
}


.why-point-number {
  padding-top:
    4px;

  color:
    var(--uvc-primary);

  font-size:
    0.72rem;

  font-weight:
    800;

  letter-spacing:
    0.08em;
}


.why-point h3 {
  margin:
    0
    0
    7px;

  color:
    var(--uvc-dark);

  font-size:
    1.18rem;

  font-weight:
    750;
}


.why-point p {
  max-width:
    560px;

  margin: 0;

  color:
    #6B787F;

  font-size:
    0.91rem;

  line-height:
    1.65;
}


/* =========================================================
   LINK
========================================================= */

.why-uvc-action {
  margin-top:
    29px;
}


/* =========================================================
   WHY UVC - DESKTOP STICKY IMAGE
========================================================= */

@media (min-width: 951px) {

  .why-uvc-media {
    align-self: stretch;
  }

  .why-uvc-image-wrap {
    position: sticky;

    top:
      calc(
        var(--header-height) + 42px
      );
  }

}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 950px) {

  .why-uvc-layout {
    grid-template-columns:
      1fr;

    gap:
      70px;
  }


  .why-uvc-media {
    order: 2;
  }


  .why-uvc-content {
    max-width:
      760px;
  }


  .why-uvc-image-wrap {
  width: min(
    82%,
    380px
  );

  margin-inline: auto;
}

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

  .why-uvc {
    padding:
      75px
      0;
  }


  .why-uvc-layout {
    gap:
      55px;
  }


  .why-uvc-heading h2 {
    font-size:
      clamp(
        2.3rem,
        10vw,
        3.2rem
      );
  }


  .why-uvc-intro {
    margin-bottom:
      35px;
  }


  .why-point {
    grid-template-columns:
      38px
      1fr;

    gap:
      12px;

    padding:
      21px
      0;
  }


  .why-point:hover {
    padding-left:
      0;
  }


  .why-uvc-image-wrap {
    width:
      94%;

    padding:
      9px
      0
      0
      9px;
  }


  .why-uvc-image-card {
    right:
      -8px;

    left:
      -8px;

    bottom:
      20px;

    min-width:
      0;
  }


  .why-uvc-image-line {
    right:
      -5px;

    width:
      55px;
  }

}

/* =========================================================
   SECTORS WE SERVE
========================================================= */

.sectors-section {
  position: relative;

  padding:
    clamp(90px, 9vw, 140px)
    0;

  overflow: hidden;

  background:
    linear-gradient(
      180deg,
      #F5F9FB 0%,
      #EEF5F8 100%
    );
}


/* =========================
   HEADING
========================= */

.sectors-head {
  display: grid;

  grid-template-columns:
    minmax(0, 1.1fr)
    minmax(300px, 0.65fr);

  align-items: end;

  gap:
    clamp(
      45px,
      7vw,
      100px
    );

  margin-bottom:
    clamp(
      55px,
      6vw,
      80px
    );
}


.sectors-kicker {
  margin:
    0
    0
    18px;

  color:
    var(--uvc-deep-blue);
}


.sectors-head h2 {
  max-width: 760px;

  margin: 0;

  color:
    var(--uvc-dark);

  font-size:
    clamp(
      2.5rem,
      4vw,
      4.3rem
    );

  line-height: 1.04;

  letter-spacing:
    -0.042em;

  font-weight: 760;
}


.sectors-head h2 span {
  display: block;

  color:
    var(--uvc-primary);
}


.sectors-intro {
  max-width: 530px;

  margin: 0;

  color:
    var(--uvc-text);

  font-size: 1rem;

  line-height: 1.75;
}


/* =========================================================
   GRID
========================================================= */

.sectors-grid {
  display: grid;

  grid-template-columns:
    repeat(3, 1fr);

  gap: 15px;
}


/* =========================================================
   CARD
========================================================= */

.sector-card {
  position: relative;

  min-height: 285px;

  padding:
    27px
    27px
    30px;

  overflow: hidden;

  border:
    1px solid
    rgba(90, 140, 163, 0.14);

  border-radius: 15px;

  background:
    rgba(255, 255, 255, 0.78);

  box-shadow:
    0 10px 30px
    rgba(24, 35, 41, 0.035);

  transition:
    transform 0.3s ease,
    background-color 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}


.sector-card::after {
  content: "";

  position: absolute;

  right: -70px;
  bottom: -70px;

  width: 150px;
  height: 150px;

  border-radius: 50%;

  background:
    rgba(137, 198, 232, 0.08);

  transition:
    transform 0.35s ease;
}


.sector-card:hover {
  transform:
    translateY(-5px);

  background:
    #FFFFFF;

  border-color:
    rgba(90, 140, 163, 0.28);

  box-shadow:
    0 18px 45px
    rgba(24, 35, 41, 0.07);
}


.sector-card:hover::after {
  transform:
    scale(1.25);
}


/* =========================================================
   CARD TOP
========================================================= */

.sector-card-top {
  display: flex;

  align-items: center;
  justify-content: space-between;

  margin-bottom: 65px;
}


.sector-number {
  color:
    var(--uvc-primary);

  font-size: 0.72rem;

  font-weight: 800;

  letter-spacing: 0.08em;
}


.sector-icon {
  display: flex;

  align-items: center;
  justify-content: center;

  width: 45px;
  height: 45px;

  border-radius: 10px;

  color:
    var(--uvc-deep-blue);

  background:
    rgba(96, 144, 167, 0.09);
}


.sector-icon svg {
  width: 24px;
  height: 24px;

  fill: none;

  stroke: currentColor;

  stroke-width: 1.5;

  stroke-linecap: round;

  stroke-linejoin: round;
}


/* =========================================================
   CONTENT
========================================================= */

.sector-card h3 {
  margin:
    0
    0
    10px;

  color:
    var(--uvc-dark);

  font-size:
    1.35rem;

  font-weight:
    750;
}


.sector-card p {
  max-width: 310px;

  margin: 0;

  color:
    #6B787F;

  font-size:
    0.90rem;

  line-height:
    1.65;
}


/* =========================================================
   BOTTOM CTA
========================================================= */

.sectors-bottom {
  display: flex;

  align-items: center;
  justify-content: space-between;

  gap: 30px;

  margin-top:
    35px;

  padding-top:
    25px;

  border-top:
    1px solid
    rgba(90, 140, 163, 0.16);
}


.sectors-bottom p {
  margin: 0;

  color:
    var(--uvc-text);

  font-size:
    0.92rem;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

  .sectors-head {
    grid-template-columns:
      1fr;

    gap:
      25px;
  }


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

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

  .sectors-section {
    padding:
      75px
      0;
  }


  .sectors-head {
    margin-bottom:
      45px;
  }


  .sectors-head h2 {
    font-size:
      clamp(
        2.3rem,
        10vw,
        3.2rem
      );
  }


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


  .sector-card {
    min-height: 0;

    padding:
      24px;
  }


  .sector-card-top {
    margin-bottom:
      42px;
  }


  .sectors-bottom {
    align-items:
      flex-start;

    flex-direction:
      column;

    gap:
      14px;
  }

}

/* =========================================================
   AUTHORITY COORDINATION
========================================================= */

.authority-section {
  position: relative;

  overflow: hidden;

  padding:
    clamp(90px, 9vw, 135px)
    0;

  color: var(--uvc-white);

  background:
    linear-gradient(
      135deg,
      #182329 0%,
      #22343C 100%
    );
}


/* Technical background */
.authority-grid-bg {
  position: absolute;

  inset: 0;

  pointer-events: none;

  opacity: 0.18;

  background-image:
    linear-gradient(
      rgba(137, 198, 232, 0.12) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(137, 198, 232, 0.12) 1px,
      transparent 1px
    );

  background-size: 58px 58px;

  mask-image:
    linear-gradient(
      to right,
      transparent,
      black 20%,
      black 85%,
      transparent
    );
}


/* =========================================================
   MAIN GRID
========================================================= */

.authority-layout {
  position: relative;

  z-index: 2;

  display: grid;

  grid-template-columns:
    minmax(0, 0.88fr)
    minmax(430px, 1.12fr);

  align-items: center;

  gap:
    clamp(
      60px,
      8vw,
      120px
    );
}


/* =========================================================
   CONTENT
========================================================= */

.authority-kicker {
  margin:
    0
    0
    18px;

  color:
    var(--uvc-light-blue);
}


.authority-content h2 {
  max-width: 650px;

  margin:
    0
    0
    25px;

  color:
    var(--uvc-white);

  font-size:
    clamp(
      2.5rem,
      4vw,
      4.25rem
    );

  line-height: 1.04;

  letter-spacing:
    -0.042em;

  font-weight: 760;
}


.authority-content h2 span {
  display: block;

  color:
    var(--uvc-light-blue);
}


.authority-intro {
  max-width: 600px;

  margin:
    0
    0
    28px;

  color:
    #BBC7CD;

  font-size: 1rem;

  line-height: 1.78;
}


.authority-link {
  display: inline-flex;

  align-items: center;

  gap: 10px;

  color:
    var(--uvc-light-blue);

  font-size: 0.91rem;

  font-weight: 750;
}


.authority-link span {
  transition:
    transform 0.25s ease;
}


.authority-link:hover span {
  transform:
    translateX(5px);
}


/* =========================================================
   FLOW
========================================================= */

.authority-flow {
  position: relative;

  padding:
    8px 0;
}


.authority-flow-item {
  display: grid;

  grid-template-columns:
    52px
    1fr;

  align-items: center;

  gap: 18px;

  padding:
    18px
    20px;

  border:
    1px solid
    rgba(255, 255, 255, 0.11);

  border-radius: 12px;

  background:
    rgba(255, 255, 255, 0.035);

  transition:
    background-color 0.3s ease,
    border-color 0.3s ease,
    transform 0.3s ease;
}


.authority-flow-item:hover {
  transform:
    translateX(5px);

  background:
    rgba(255, 255, 255, 0.06);

  border-color:
    rgba(123, 184, 223, 0.25);
}


.authority-step {
  display: flex;

  align-items: center;
  justify-content: center;

  width: 42px;
  height: 42px;

  border-radius: 9px;

  color:
    var(--uvc-light-blue);

  background:
    rgba(123, 184, 223, 0.09);

  font-size: 0.70rem;

  font-weight: 800;

  letter-spacing: 0.07em;
}


.authority-flow-item h3 {
  margin:
    0
    0
    3px;

  color:
    var(--uvc-white);

  font-size: 1.03rem;

  font-weight: 730;
}


.authority-flow-item p {
  margin: 0;

  color:
    #9EAFB7;

  font-size: 0.82rem;

  line-height: 1.5;
}


/* Connecting line */
.authority-flow-line {
  width: 1px;
  height: 18px;

  margin-left: 41px;

  background:
    linear-gradient(
      to bottom,
      rgba(123, 184, 223, 0.16),
      rgba(123, 184, 223, 0.65)
    );
}


.authority-flow-final {
  border-color:
    rgba(123, 184, 223, 0.28);

  background:
    rgba(123, 184, 223, 0.07);
}


/* =========================================================
   AUTHORITY TYPES
========================================================= */

.authority-types {
  position: relative;

  z-index: 2;

  display: flex;

  flex-wrap: wrap;

  gap: 10px;

  margin-top:
    clamp(
      55px,
      6vw,
      80px
    );

  padding-top: 27px;

  border-top:
    1px solid
    rgba(255, 255, 255, 0.10);
}


.authority-types span {
  padding:
    8px
    12px;

  border:
    1px solid
    rgba(255, 255, 255, 0.10);

  border-radius: 6px;

  color:
    #B9C8CE;

  background:
    rgba(255, 255, 255, 0.025);

  font-size: 0.78rem;

  font-weight: 650;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 950px) {

  .authority-layout {
    grid-template-columns:
      1fr;

    gap:
      60px;
  }


  .authority-content {
    max-width:
      720px;
  }


  .authority-flow {
    max-width:
      680px;
  }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

  .authority-section {
    padding:
      75px
      0;
  }


  .authority-content h2 {
    font-size:
      clamp(
        2.3rem,
        10vw,
        3.2rem
      );
  }


  .authority-layout {
    gap:
      48px;
  }


  .authority-flow-item {
    grid-template-columns:
      44px
      1fr;

    gap:
      12px;

    padding:
      15px;
  }


  .authority-step {
    width: 38px;
    height: 38px;
  }


  .authority-flow-line {
    height: 14px;

    margin-left:
      34px;
  }


  .authority-types {
    margin-top:
      50px;
  }

}


/* =========================================================
   INSIGHTS
========================================================= */

.insights-section {
  padding:
    clamp(80px, 8vw, 120px)
    0;
}

/* =========================================================
   HEADING
========================================================= */

.insights-head {
  display: grid;

  grid-template-columns:
    minmax(0, 1.1fr)
    minmax(300px, 0.65fr);

  align-items: end;

  gap:
    clamp(
      45px,
      7vw,
      100px
    );

  margin-bottom:
    clamp(
      50px,
      6vw,
      75px
    );
}


.insights-kicker {
  margin:
    0
    0
    18px;

  color:
    var(--uvc-deep-blue);
}


.insights-head h2 {
  max-width: 720px;

  margin: 0;

  color:
    var(--uvc-dark);

  font-size:
    clamp(
      2.5rem,
      4vw,
      4.2rem
    );

  line-height: 1.04;

  letter-spacing:
    -0.042em;

  font-weight: 760;
}


.insights-head h2 span {
  display: block;

  color:
    var(--uvc-primary);
}


.insights-head-right p {
  max-width: 500px;

  margin:
    0
    0
    19px;

  color:
    var(--uvc-text);

  font-size: 0.97rem;

  line-height: 1.72;
}


/* =========================================================
   GRID
========================================================= */

.insights-grid {
  display: grid;

  grid-template-columns:
    repeat(3, 1fr);

  gap: 20px;
}


/* =========================================================
   CARD
========================================================= */

.insight-card {
  overflow: hidden;

  border:
    1px solid
    rgba(90, 140, 163, 0.14);

  border-radius: 16px;

  background:
    #FFFFFF;

  box-shadow:
    0 10px 30px
    rgba(24, 35, 41, 0.04);

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}


.insight-card:hover {
  transform:
    translateY(-6px);

  border-color:
    rgba(90, 140, 163, 0.26);

  box-shadow:
    0 22px 48px
    rgba(24, 35, 41, 0.08);
}


/* =========================================================
   IMAGE
========================================================= */

.insight-image-link {
  display: block;

  overflow: hidden;

  background:
    #EAF1F4;
}


.insight-image {
  width: 100%;
  height: 260px;

  object-fit: cover;

  transition:
    transform 0.5s ease;
}


.insight-card:hover
.insight-image {

  transform:
    scale(1.035);
}


/* =========================================================
   CONTENT
========================================================= */

.insight-content {
  padding:
    22px
    23px
    24px;
}


.insight-meta {
  margin-bottom:
    12px;
}


.insight-meta span {
  color:
    var(--uvc-primary);

  font-size:
    0.68rem;

  font-weight:
    800;

  letter-spacing:
    0.08em;

  text-transform:
    uppercase;
}


.insight-content h3 {
  margin:
    0
    0
    13px;

  color:
    var(--uvc-dark);

  font-size:
    clamp(
      1.25rem,
      1.6vw,
      1.52rem
    );

  line-height:
    1.28;

  font-weight:
    740;
}


.insight-content h3 a {
  transition:
    color
    0.22s ease;
}


.insight-content h3 a:hover {
  color:
    var(--uvc-deep-blue);
}


.insight-content p {
  margin:
    0
    0
    22px;

  color:
    #6B787F;

  font-size:
    0.90rem;

  line-height:
    1.65;
}


.insight-link {
  display:
    inline-flex;

  align-items:
    center;

  gap:
    9px;

  color:
    var(--uvc-deep-blue);

  font-size:
    0.86rem;

  font-weight:
    750;
}


.insight-link span {
  transition:
    transform
    0.25s ease;
}


.insight-link:hover span {
  transform:
    translateX(5px);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

  .insights-head {
    grid-template-columns:
      1fr;

    gap:
      25px;
  }


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


  .insight-card:last-child {
    grid-column:
      1 / -1;

    max-width:
      50%;
  }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

  .insights-section {
    padding:
      75px
      0;
  }


  .insights-head {
    margin-bottom:
      42px;
  }


  .insights-head h2 {
    font-size:
      clamp(
        2.3rem,
        10vw,
        3.2rem
      );
  }


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


  .insight-card:last-child {
    grid-column:
      auto;

    max-width:
      none;
  }

}


/* =========================================================
   FINAL PROJECT CTA
========================================================= */

.project-cta {
  position: relative;

  overflow: hidden;

  padding:
    clamp(85px, 8vw, 120px)
    0;

  background:
    linear-gradient(
      135deg,
      #203039 0%,
      #182329 100%
    );
}


/* Technical background */
.project-cta-grid {
  position: absolute;

  inset: 0;

  pointer-events: none;

  opacity: 0.17;

  background-image:
    linear-gradient(
      rgba(137, 198, 232, 0.10) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(137, 198, 232, 0.10) 1px,
      transparent 1px
    );

  background-size:
    54px 54px;

  mask-image:
    linear-gradient(
      to right,
      black,
      black 65%,
      transparent
    );
}


/* =========================================================
   LAYOUT
========================================================= */

.project-cta-inner {
  position: relative;

  z-index: 2;

  display: grid;

  grid-template-columns:
    minmax(0, 1.08fr)
    minmax(350px, 0.72fr);

  align-items: center;

  gap:
    clamp(
      60px,
      8vw,
      115px
    );
}


/* =========================================================
   CONTENT
========================================================= */

.project-cta-kicker {
  margin:
    0
    0
    18px;

  color:
    var(--uvc-light-blue);
}


.project-cta-content h2 {
  max-width: 720px;

  margin:
    0
    0
    24px;

  color:
    var(--uvc-white);

  font-size:
    clamp(
      2.6rem,
      4.4vw,
      4.7rem
    );

  line-height:
    1.02;

  letter-spacing:
    -0.045em;

  font-weight:
    760;
}


.project-cta-content h2 span {
  display: block;

  color:
    var(--uvc-light-blue);
}


.project-cta-intro {
  max-width: 610px;

  margin:
    0
    0
    32px;

  color:
    #BAC7CD;

  font-size:
    1rem;

  line-height:
    1.75;
}


/* =========================================================
   BUTTONS
========================================================= */

.project-cta-actions {
  display: flex;

  flex-wrap: wrap;

  align-items: center;

  gap: 13px;
}


.project-cta-primary {
  display: inline-flex;

  align-items: center;
  justify-content: center;

  gap: 12px;

  min-height: 54px;

  padding:
    0
    26px;

  border-radius: 9px;

  color:
    var(--uvc-dark);

  background:
    var(--uvc-light-blue);

  font-size:
    0.94rem;

  font-weight:
    780;

  transition:
    transform 0.25s ease,
    background-color 0.25s ease,
    box-shadow 0.25s ease;
}


.project-cta-primary:hover {
  transform:
    translateY(-2px);

  background:
    var(--uvc-sky);

  box-shadow:
    0 15px 32px
    rgba(123, 184, 223, 0.18);
}


.project-cta-primary span {
  transition:
    transform 0.25s ease;
}


.project-cta-primary:hover span {
  transform:
    translateX(4px);
}


.project-cta-secondary {
  display: inline-flex;

  align-items: center;
  justify-content: center;

  min-height: 54px;

  padding:
    0
    23px;

  border:
    1px solid
    rgba(255, 255, 255, 0.16);

  border-radius: 9px;

  color:
    #E1E9ED;

  background:
    rgba(255, 255, 255, 0.035);

  font-size:
    0.91rem;

  font-weight:
    700;

  transition:
    border-color 0.25s ease,
    background-color 0.25s ease;
}


.project-cta-secondary:hover {
  border-color:
    rgba(123, 184, 223, 0.40);

  background:
    rgba(255, 255, 255, 0.065);
}


/* =========================================================
   CONTACT PANEL
========================================================= */

.project-contact-panel {
  padding:
    27px
    28px
    28px;

  border:
    1px solid
    rgba(255, 255, 255, 0.11);

  border-radius:
    16px;

  background:
    rgba(255, 255, 255, 0.045);

  box-shadow:
    0 24px 55px
    rgba(0, 0, 0, 0.14);

  backdrop-filter:
    blur(8px);
}


.project-contact-top {
  display: flex;

  align-items: center;
  justify-content: space-between;

  gap: 15px;

  margin-bottom:
    24px;

  padding-bottom:
    18px;

  border-bottom:
    1px solid
    rgba(255, 255, 255, 0.10);
}


.project-contact-label {
  color:
    var(--uvc-light-blue);

  font-size:
    0.68rem;

  font-weight:
    800;

  letter-spacing:
    0.09em;
}


.project-contact-status {
  color:
    #98AAB2;

  font-size:
    0.72rem;

  font-weight:
    650;
}


/* Contact rows */
.project-contact-row {
  display: grid;

  grid-template-columns:
    35px
    1fr;

  gap:
    14px;

  padding:
    16px
    0;

  border-bottom:
    1px solid
    rgba(255, 255, 255, 0.075);
}


.project-contact-number {
  padding-top:
    3px;

  color:
    var(--uvc-light-blue);

  font-size:
    0.67rem;

  font-weight:
    800;
}


.project-contact-row small {
  display: block;

  margin-bottom:
    3px;

  color:
    #8799A2;

  font-size:
    0.66rem;

  font-weight:
    700;

  text-transform:
    uppercase;

  letter-spacing:
    0.07em;
}


.project-contact-row a,
.project-contact-row p {
  margin: 0;

  color:
    #E3EAED;

  font-size:
    0.90rem;

  line-height:
    1.55;
}


.project-contact-row a:hover {
  color:
    var(--uvc-light-blue);
}


/* Bottom link */
.project-contact-link {
  display: inline-flex;

  align-items: center;

  gap: 9px;

  margin-top:
    22px;

  color:
    var(--uvc-light-blue);

  font-size:
    0.87rem;

  font-weight:
    750;
}


.project-contact-link span {
  transition:
    transform 0.25s ease;
}


.project-contact-link:hover span {
  transform:
    translateX(5px);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

  .project-cta-inner {
    grid-template-columns:
      1fr;

    gap:
      55px;
  }


  .project-cta-content {
    max-width:
      760px;
  }


  .project-contact-panel {
    max-width:
      600px;
  }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

  .project-cta {
    padding:
      75px
      0;
  }


  .project-cta-content h2 {
    font-size:
      clamp(
        2.3rem,
        10vw,
        3.2rem
      );
  }


  .project-cta-actions {
    flex-direction:
      column;

    align-items:
      stretch;
  }


  .project-cta-primary,
  .project-cta-secondary {
    width: 100%;
  }


  .project-contact-panel {
    padding:
      22px;
  }


  .project-contact-top {
    align-items:
      flex-start;

    flex-direction:
      column;
  }

}

/* =========================================================
   FOOTER
   Basic styling only. We can redesign this later.
========================================================= */

/* =========================================================
   FOOTER
========================================================= */

.site-footer {
  padding:
    70px
    0
    24px;

  color:
    #C2CDD2;

  background:
    #152229;

  border-top:
    1px solid
    rgba(255, 255, 255, 0.06);
}


/* =========================================================
   MAIN GRID
========================================================= */

.footer-main {
  display: grid;

  grid-template-columns:
    minmax(280px, 1.35fr)
    minmax(140px, 0.65fr)
    minmax(190px, 0.85fr)
    minmax(230px, 1fr);

  gap:
    clamp(
      40px,
      6vw,
      80px
    );

  padding-bottom:
    55px;
}


/* =========================================================
   BRAND
========================================================= */

.footer-brand {
  max-width:
    390px;
}


.footer-logo-link {
  display:
    inline-block;

  margin-bottom:
    20px;
}


.footer-logo {
  width:
    105px;

  height:
    auto;

  object-fit:
    contain;
}


.footer-brand p {
  max-width:
    360px;

  margin:
    0;

  color:
    #A9B7BE;

  font-size:
    0.91rem;

  line-height:
    1.7;
}


/* =========================================================
   COLUMNS
========================================================= */

.footer-column h2 {
  margin:
    0
    0
    20px;

  color:
    #FFFFFF;

  font-size:
    0.82rem;

  font-weight:
    750;

  letter-spacing:
    0.075em;

  text-transform:
    uppercase;
}


.footer-links {
  display:
    grid;

  gap:
    11px;
}


.footer-links a {
  width:
    fit-content;

  color:
    #B5C1C7;

  font-size:
    0.88rem;

  transition:
    color 0.22s ease,
    transform 0.22s ease;
}


.footer-links a:hover {
  color:
    var(--uvc-light-blue);

  transform:
    translateX(3px);
}


/* =========================================================
   CONTACT
========================================================= */

.footer-contact {
  display:
    flex;

  flex-direction:
    column;

  align-items:
    flex-start;
}


.footer-contact > a:not(.footer-enquiry-link) {
  margin-bottom:
    9px;

  color:
    #D2DCE0;

  font-size:
    0.88rem;

  transition:
    color 0.22s ease;
}


.footer-contact > a:not(.footer-enquiry-link):hover {
  color:
    var(--uvc-light-blue);
}


.footer-contact address {
  margin:
    8px
    0
    0;

  color:
    #9EADB4;

  font-size:
    0.87rem;

  line-height:
    1.65;

  font-style:
    normal;
}


.footer-enquiry-link {
  display:
    inline-flex;

  align-items:
    center;

  gap:
    9px;

  margin-top:
    20px;

  color:
    var(--uvc-light-blue);

  font-size:
    0.87rem;

  font-weight:
    750;
}


.footer-enquiry-link span {
  transition:
    transform 0.25s ease;
}


.footer-enquiry-link:hover span {
  transform:
    translateX(5px);
}


/* =========================================================
   BOTTOM
========================================================= */

.footer-bottom {
  display:
    flex;

  align-items:
    center;

  justify-content:
    space-between;

  gap:
    25px;

  padding-top:
    22px;

  border-top:
    1px solid
    rgba(255, 255, 255, 0.08);
}


.footer-bottom p {
  margin:
    0;

  color:
    #7F919A;

  font-size:
    0.79rem;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 950px) {

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

    gap:
      45px
      55px;
  }


  .footer-brand {
    max-width:
      430px;
  }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

  .site-footer {
    padding-top:
      55px;
  }


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

    gap:
      38px;

    padding-bottom:
      40px;
  }


  .footer-brand {
    max-width:
      none;
  }


  .footer-bottom {
    align-items:
      flex-start;

    flex-direction:
      column;

    gap:
      8px;
  }

}

/* =========================================================
   GLOBAL RESPONSIVE
   HEADER + HERO
========================================================= */

@media (max-width: 1100px) {

  .brand-name {
    display: none;
  }

  .primary-nav {
    gap: 22px;
  }

  .hero-layout {
    grid-template-columns:
      minmax(0, 1fr)
      minmax(350px, 0.78fr);

    gap: 46px;
  }

  .hero-copy h1 {
    font-size:
      clamp(
        2.8rem,
        4.6vw,
        3.6rem
      );
  }

  .hero-image {
    height:
      clamp(
        480px,
        62vh,
        590px
      );
  }

}


@media (max-width: 860px) {

  :root {
    --header-height: 76px;
  }


  .site-logo {
    width: 78px;
    height: 50px;
  }


  .menu-toggle {
    display: block;
  }


  .primary-nav {
    position: absolute;

    top: calc(100% + 8px);

    left: 20px;
    right: 20px;

    flex-direction: column;
    align-items: stretch;

    gap: 0;

    padding: 14px;

    border:
      1px solid
      rgba(90, 140, 163, 0.14);

    border-radius: 14px;

    background:
      rgba(255, 255, 255, 0.99);

    box-shadow:
      0 25px 60px
      rgba(24, 35, 41, 0.15);

    transform:
      translateY(-8px);

    opacity: 0;

    visibility: hidden;

    pointer-events: none;

    transition:
      transform 0.26s ease,
      opacity 0.26s ease,
      visibility 0.26s ease;
  }


  .primary-nav.is-open {
    transform:
      translateY(0);

    opacity: 1;

    visibility: visible;

    pointer-events: auto;
  }


  .primary-nav > a:not(.header-cta) {
    width: 100%;

    padding:
      13px
      10px;

    border-bottom:
      1px solid
      rgba(90, 140, 163, 0.09);
  }


  .primary-nav > a:not(.header-cta)::after {
    display: none;
  }


  .header-cta {
    width: 100%;

    margin-top: 10px;
  }


  .home-hero {
    min-height: auto;

    padding:
      70px
      0
      84px;
  }


  .hero-layout {
    grid-template-columns:
      1fr;

    gap: 52px;
  }


  .hero-copy,
  .hero-media,
  .hero-grid-pattern {
    transform: none;

    opacity: 1;
  }


  .hero-copy h1 {
    max-width: 720px;
  }


  .hero-media {
    justify-content: center;
  }


  .hero-media-frame {
    width:
      min(
        90%,
        510px
      );
  }


  .hero-image {
    height: auto;

    aspect-ratio:
      4 / 5;
  }


  .hero-scroll-cue {
    display: none;
  }

}


@media (max-width: 560px) {

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


  .home-hero {
    padding-top: 52px;
  }


  .hero-kicker {
    gap: 7px;

    font-size: 0.66rem;

    letter-spacing:
      0.085em;
  }


  .hero-copy h1 {
    margin-bottom: 18px;

    font-size:
      clamp(
        2.35rem,
        11vw,
        3rem
      );

    line-height: 1.04;
  }


  .hero-copy h1 span {
    display: inline;
  }


  .hero-copy h1 span + span::before {
    content: " ";
  }


  .hero-description {
    margin-bottom: 25px;

    font-size: 0.98rem;
  }


  .hero-actions {
    flex-direction: column;
  }


  .btn {
    width: 100%;
  }


  .hero-services {
    gap: 7px;
  }


  .hero-services li {
    font-size: 0.75rem;
  }


  .hero-media-frame {
    width: 94%;
  }


  .hero-technical-card {
    left: -8px;
    right: -8px;

    bottom: 18px;

    min-width: 0;
  }


  .hero-frame-line-two {
    right: -3px;
  }

}


/* =========================================================
   GLOBAL REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration:
      0.01ms !important;

    animation-iteration-count:
      1 !important;

    transition-duration:
      0.01ms !important;

    scroll-behavior:
      auto !important;
  }

  .hero-copy,
  .hero-media,
  .hero-grid-pattern {
    transform:
      none !important;

    opacity:
      1 !important;
  }

}