/* =========================================================
   ABOUT PAGE
   UVC CONTRACTING LLC
========================================================= */


/* =========================================================
   ABOUT HERO
========================================================= */

.about-hero {
  position: relative;

  overflow: hidden;

  padding:
  clamp(42px, 4.5vw, 62px)
  0;

  background:
    radial-gradient(
      circle at 8% 15%,
      rgba(137, 198, 232, 0.12),
      transparent 27%
    ),
    linear-gradient(
      180deg,
      #FBFDFE 0%,
      #F2F7F9 100%
    );
}


/* Technical grid background */
.about-hero-grid {
  position: absolute;

  inset: 0;

  pointer-events: none;

  opacity: 0.48;

  background-image:
    linear-gradient(
      rgba(90, 140, 163, 0.055) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(90, 140, 163, 0.055) 1px,
      transparent 1px
    );

  background-size:
    52px 52px;

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


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

.about-hero-layout {
  position: relative;

  z-index: 2;

  display: grid;

  grid-template-columns:
    minmax(0, 1.18fr)
    minmax(340px, 0.72fr);

  align-items: center;

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


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

.about-hero-content {
  max-width: 740px;
}


/* Kicker */
.about-hero-kicker {
  display: flex;

  align-items: center;

  gap: 12px;

  margin:
    0
    0
    18px;

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

  font-size: 0.72rem;

  font-weight: 800;

  letter-spacing: 0.12em;

  text-transform: uppercase;
}


.about-hero-kicker::before {
  content: "";

  width: 34px;
  height: 2px;

  flex-shrink: 0;

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


/* Heading */
.about-hero h1 {
  max-width: 720px;

  margin:
    0
    0
    20px;

  color:
    var(--uvc-dark);

  font-size:
    clamp(
      2.75rem,
      3.8vw,
      4rem
    );

  line-height: 1.03;

  letter-spacing: -0.043em;

  font-weight: 780;
}


.about-hero h1 span {
  display: block;

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


/* Intro */
.about-hero-intro {
  max-width: 640px;

  margin:
    0
    0
    28px;

  color:
    var(--uvc-text);

  font-size:
    clamp(
      0.98rem,
      1.1vw,
      1.05rem
    );

  line-height: 1.72;
}


/* =========================================================
   HERO META
========================================================= */

.about-hero-meta {
  display: flex;

  flex-wrap: wrap;

  gap: 12px;
}


.about-hero-meta > div {
  position: relative;

  display: flex;

  align-items: center;

  gap: 10px;

  padding:
    10px
    13px;

  overflow: hidden;

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

  border-radius: 7px;

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


/* Small interaction line */
.about-hero-meta > div::before {
  content: "";

  position: absolute;

  left: 0;
  top: 0;

  width: 3px;
  height: 100%;

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

  opacity: 0;

  transition:
    opacity 0.25s ease;
}


.about-hero-meta > div:hover::before {
  opacity: 1;
}


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

  font-size: 0.66rem;

  font-weight: 800;
}


.about-hero-meta p {
  margin: 0;

  color:
    #43525A;

  font-size: 0.78rem;

  font-weight: 700;
}


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

.about-hero-media {
  display: flex;

  justify-content: flex-end;
}


.about-hero-image-wrap {
  position: relative;

  width:
    min(
      100%,
      420px
    );

  padding:
    10px
    10px
    0
    0;
}


/* Background technical outline */
.about-hero-image-wrap::before {
  content: "";

  position: absolute;

  top: 0;
  right: 0;

  width: 80%;
  height: 83%;

  z-index: 0;

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

  border-radius: 22px;
}


/* Decorative technical corner */
.about-hero-image-wrap::after {
  content: "";

  position: absolute;

  top: -9px;
  right: -9px;

  width: 46px;
  height: 46px;

  z-index: 2;

  border-top:
    2px solid
    var(--uvc-light-blue);

  border-right:
    2px solid
    var(--uvc-light-blue);

  border-radius:
    0 10px 0 0;

  opacity: 0.75;

  pointer-events: none;
}


/* Main image */
.about-hero-image {
  position: relative;

  z-index: 1;

  width: 100%;
  height: clamp(340px, 26vw, 370px);

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

  border-radius: 18px;

  background: #E8F0F4;

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


/* =========================================================
   FLOATING IMAGE CARD
========================================================= */

.about-hero-card {
  position: absolute;

  left: -24px;
  bottom: 20px;

  z-index: 3;

  display: flex;

  align-items: center;

  gap: 11px;

  padding:
    12px
    15px;

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

  border-radius: 11px;

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

  box-shadow:
    0 17px 38px
    rgba(24, 35, 41, 0.12);

  backdrop-filter:
    blur(10px);
}


.about-hero-card > span {
  display: flex;

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

  width: 45px;
  height: 45px;

  flex-shrink: 0;

  border-radius: 8px;

  color:
    #FFFFFF;

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

  font-size: 0.73rem;

  font-weight: 800;
}


.about-hero-card small {
  display: block;

  margin-bottom: 2px;

  color:
    var(--uvc-primary);

  font-size: 0.59rem;

  font-weight: 800;

  letter-spacing: 0.09em;
}


.about-hero-card strong {
  display: block;

  color:
    var(--uvc-dark);

  font-size: 0.87rem;

  font-weight: 750;
}

/* =========================================================
   ABOUT HERO EXTRA DECORATION
========================================================= */

/* Large technical circle behind image */
.about-hero::before {
  content: "";

  position: absolute;

  width: 330px;
  height: 330px;

  right: -135px;
  top: 70px;

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

  border-radius: 50%;

  pointer-events: none;

  z-index: 0;
}


/* Secondary circle */
.about-hero::after {
  content: "";

  position: absolute;

  width: 145px;
  height: 145px;

  right: 35px;
  bottom: -70px;

  border:
    1px dashed
    rgba(123, 184, 223, 0.20);

  border-radius: 50%;

  pointer-events: none;

  z-index: 0;
}

.about-hero-content {
  position: relative;
}


/* Small technical marker near content */
.about-hero-content::after {
  content: "";

  position: absolute;

  left: -42px;
  bottom: 5px;

  width: 18px;
  height: 18px;

  border-left:
    2px solid
    rgba(123, 184, 223, 0.55);

  border-bottom:
    2px solid
    rgba(123, 184, 223, 0.55);

  pointer-events: none;
}


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

@media (max-width: 900px) {

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

    gap: 55px;
  }


  .about-hero-content {
    max-width: 760px;
  }


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


  .about-hero-image-wrap {
    width:
      min(
        88%,
        500px
      );
  }

}


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

@media (max-width: 600px) {

  .about-hero {
    padding:
    48px
    0
    60px;
  }
    .about-hero-image 
    {
    height: 310px;
    }

  .about-hero-layout {
    gap: 48px;
  }

  .about-hero::before,
.about-hero::after,
.about-hero-content::after {
  display: none;
}

  .about-hero h1 {
    font-size:
      clamp(
        2.4rem,
        10.5vw,
        3.25rem
      );
  }


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


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


  .about-hero-intro {
    margin-bottom: 25px;

    font-size: 0.98rem;
  }


  .about-hero-meta {
    display: grid;

    grid-template-columns:
      1fr;

    gap: 8px;
  }


  .about-hero-meta > div {
    padding:
      10px
      12px;
  }


  .about-hero-image-wrap {
    width:
      min(
        94%,
        420px
      );
  }


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

    bottom: 17px;

    padding:
      11px
      13px;
  }


  .about-hero-image-wrap::after {
    top: -6px;
    right: -6px;

    width: 36px;
    height: 36px;
  }

}


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

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

  .about-hero-meta > div::before {
    transition: none;
  }

}

/* =========================================================
   WHO WE ARE
========================================================= */

.about-who {
  position: relative;

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

  overflow: hidden;

  background:
    #FFFFFF;
}


/* Small architectural line */
.about-who::before {
  content: "";

  position: absolute;

  top: 0;
  left: 50%;

  width: min(
    calc(100% - 48px),
    var(--container-width)
  );

  height: 1px;

  transform:
    translateX(-50%);

  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(90, 140, 163, 0.18) 15%,
      rgba(90, 140, 163, 0.18) 85%,
      transparent
    );
}


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

.about-who-layout {
  display: grid;

  grid-template-columns:
    minmax(150px, 0.32fr)
    minmax(0, 1.68fr);

  gap:
    clamp(
      50px,
      7vw,
      100px
    );
}


/* =========================================================
   LEFT LABEL
========================================================= */

.about-who-label {
  position: relative;

  padding-top:
    6px;
}


.about-who-kicker {
  margin:
    0
    0
    28px;

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


.about-who-index {
  display: block;

  color:
    rgba(90, 140, 163, 0.14);

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

  line-height:
    1;

  font-weight:
    800;

  letter-spacing:
    -0.06em;
}


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

.about-who-main {
  max-width:
    960px;
}


.about-who-heading {
  margin-bottom:
    35px;
}


.about-who-heading h2 {
  max-width:
    850px;

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


.about-who-heading h2 span {
  display: block;

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


/* =========================================================
   COPY
========================================================= */

.about-who-copy {
  display: grid;

  grid-template-columns:
    minmax(0, 1fr)
    minmax(0, 0.95fr);

  gap:
    clamp(
      35px,
      5vw,
      70px
    );

  margin-bottom:
    58px;

  padding-bottom:
    48px;

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


.about-who-copy p {
  margin: 0;

  color:
    var(--uvc-text);

  font-size:
    0.98rem;

  line-height:
    1.78;
}


.about-who-copy .about-who-lead {
  color:
    #34454D;

  font-size:
    clamp(
      1.08rem,
      1.4vw,
      1.22rem
    );

  line-height:
    1.7;

  font-weight:
    550;
}


/* =========================================================
   PILLARS
========================================================= */

.about-who-pillars {
  display: grid;

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

  gap:
    16px;
}


.about-pillar {
  position: relative;

  min-height:
    215px;

  padding:
    25px;

  overflow: hidden;

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

  border-radius:
    13px;

  background:
    linear-gradient(
      145deg,
      #FFFFFF,
      #F8FBFC
    );

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


.about-pillar::before {
  content: "";

  position: absolute;

  left: 0;
  top: 0;

  width: 3px;
  height: 0;

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

  transition:
    height 0.3s ease;
}


.about-pillar:hover {
  transform:
    translateY(-4px);

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

  box-shadow:
    0 17px 38px
    rgba(24, 35, 41, 0.06);
}


.about-pillar:hover::before {
  height: 100%;
}


.about-pillar-number {
  display: block;

  margin-bottom:
    45px;

  color:
    var(--uvc-primary);

  font-size:
    0.70rem;

  font-weight:
    800;

  letter-spacing:
    0.08em;
}


.about-pillar h3 {
  margin:
    0
    0
    9px;

  color:
    var(--uvc-dark);

  font-size:
    1.16rem;

  font-weight:
    750;
}


.about-pillar p {
  margin: 0;

  color:
    #6B787F;

  font-size:
    0.88rem;

  line-height:
    1.65;
}


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

@media (max-width: 900px) {

  .about-who-layout {
    grid-template-columns:
      1fr;

    gap:
      30px;
  }


  .about-who-label {
    display: flex;

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

    gap:
      30px;
  }


  .about-who-kicker {
    margin: 0;
  }


  .about-who-index {
    font-size:
      4rem;
  }


  .about-who-copy {
    grid-template-columns:
      1fr;

    gap:
      22px;
  }


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


  .about-pillar:last-child {
    grid-column:
      1 / -1;
  }

}


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

@media (max-width: 600px) {

  .about-who {
    padding:
      70px
      0;
  }


  .about-who-index {
    font-size:
      3rem;
  }


  .about-who-heading h2 {
    font-size:
      clamp(
        2.25rem,
        10vw,
        3.1rem
      );
  }


  .about-who-copy {
    margin-bottom:
      46px;

    padding-bottom:
      38px;
  }


  .about-who-pillars {
    grid-template-columns:
      1fr;
  }


  .about-pillar,
  .about-pillar:last-child {
    grid-column:
      auto;

    min-height:
      0;
  }


  .about-pillar-number {
    margin-bottom:
      30px;
  }

}

/* =========================================================
   ONE COORDINATED PROJECT PARTNER
========================================================= */

.about-partner {
  position: relative;

  overflow: hidden;

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

  color:
    #FFFFFF;

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


/* Technical grid */
.about-partner-grid {
  position: absolute;

  inset: 0;

  pointer-events: none;

  opacity: 0.19;

  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:
    58px 58px;

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


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

.about-partner-head {
  position: relative;

  z-index: 2;

  display: grid;

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

  align-items: end;

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

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


.about-partner-label {
  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 25px;

  margin-bottom: 17px;
}


.partner-kicker {
  margin: 0;

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


.partner-section-number {
  color:
    rgba(137, 198, 232, 0.15);

  font-size:
    3.4rem;

  line-height: 1;

  font-weight: 800;

  letter-spacing:
    -0.05em;
}


.about-partner-heading h2 {
  max-width: 760px;

  margin: 0;

  color:
    #FFFFFF;

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

  line-height: 1.04;

  letter-spacing:
    -0.042em;

  font-weight: 760;
}


.about-partner-heading h2 span {
  display: block;

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


.about-partner-intro {
  max-width: 540px;

  margin: 0;

  color:
    #B7C5CB;

  font-size: 0.98rem;

  line-height: 1.78;
}


/* =========================================================
   COORDINATION MAP
========================================================= */

.partner-map {
  position: relative;

  z-index: 2;

  display: grid;

  grid-template-columns:
    minmax(250px, 1fr)
    minmax(250px, 0.72fr)
    minmax(250px, 1fr);

  align-items: center;

  gap:
    clamp(
      28px,
      4vw,
      55px
    );
}


/* =========================================================
   SIDE NODES
========================================================= */

.partner-side {
  display: grid;

  gap: 18px;
}


.partner-node {
  position: relative;

  display: grid;

  grid-template-columns:
    38px
    1fr;

  gap: 14px;

  min-height: 135px;

  padding:
    20px;

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

  border-radius: 12px;

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

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


.partner-node:hover {
  transform:
    translateY(-4px);

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

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


.partner-node > span {
  padding-top: 3px;

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

  font-size: 0.68rem;

  font-weight: 800;

  letter-spacing: 0.07em;
}


.partner-node h3 {
  margin:
    0
    0
    7px;

  color:
    #FFFFFF;

  font-size: 1.08rem;

  font-weight: 740;
}


.partner-node p {
  margin: 0;

  color:
    #9EAFB7;

  font-size: 0.84rem;

  line-height: 1.58;
}


/* Connection lines */
.partner-side-left .partner-node::after,
.partner-side-right .partner-node::before {
  content: "";

  position: absolute;

  top: 50%;

  width: 36px;
  height: 1px;

  background:
    linear-gradient(
      90deg,
      rgba(123, 184, 223, 0.18),
      rgba(123, 184, 223, 0.75)
    );

  pointer-events: none;
}


.partner-side-left .partner-node::after {
  right: -37px;
}


.partner-side-right .partner-node::before {
  left: -37px;

  transform:
    rotate(180deg);
}


/* =========================================================
   CENTRAL CORE
========================================================= */

.partner-core {
  position: relative;

  min-height: 315px;

  display: flex;

  flex-direction: column;

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

  text-align: center;

  padding:
    35px
    28px;

  overflow: hidden;

  border:
    1px solid
    rgba(123, 184, 223, 0.28);

  border-radius: 50%;

  background:
    radial-gradient(
      circle,
      rgba(123, 184, 223, 0.13),
      rgba(255, 255, 255, 0.025) 65%
    );

  box-shadow:
    0 25px 65px
    rgba(0, 0, 0, 0.18);
}


.partner-core-small {
  margin-bottom: 12px;

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

  font-size: 0.60rem;

  font-weight: 800;

  letter-spacing: 0.11em;
}


.partner-core > strong {
  display: block;

  margin-bottom: 13px;

  color:
    #FFFFFF;

  font-size:
    clamp(
      3.5rem,
      5vw,
      5rem
    );

  line-height: 1;

  letter-spacing:
    -0.06em;

  font-weight: 800;
}


.partner-core p {
  max-width: 190px;

  margin: 0;

  color:
    #B9C6CC;

  font-size: 0.84rem;

  line-height: 1.6;
}


.partner-core-ring {
  position: absolute;

  inset: 14px;

  border:
    1px dashed
    rgba(123, 184, 223, 0.17);

  border-radius: 50%;

  pointer-events: none;
}


/* =========================================================
   OUTCOME
========================================================= */

.partner-outcome {
  position: relative;

  z-index: 2;

  display: flex;

  align-items: center;

  gap: 17px;

  max-width: 720px;

  margin:
    clamp(50px, 6vw, 75px)
    auto
    0;

  padding:
    18px
    20px;

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

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


.partner-outcome > span {
  color:
    var(--uvc-light-blue);

  font-size: 0.70rem;

  font-weight: 800;
}


.partner-outcome small {
  display: block;

  margin-bottom: 3px;

  color:
    #8499A2;

  font-size: 0.61rem;

  font-weight: 800;

  letter-spacing: 0.09em;
}


.partner-outcome strong {
  display: block;

  color:
    #DCE5E9;

  font-size: 0.90rem;

  line-height: 1.55;

  font-weight: 650;
}


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

@media (max-width: 950px) {

  .about-partner-head {
    grid-template-columns:
      1fr;

    gap: 25px;
  }


  .partner-map {
    grid-template-columns:
      1fr;
  }


  .partner-core {
    width:
      min(
        100%,
        330px
      );

    min-height: 330px;

    margin-inline: auto;

    order: -1;
  }


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


  .partner-side-left .partner-node::after,
  .partner-side-right .partner-node::before {
    display: none;
  }

}


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

@media (max-width: 600px) {

  .about-partner {
    padding:
      70px
      0;
  }


  .partner-section-number {
    font-size:
      2.8rem;
  }


  .about-partner-heading h2 {
    font-size:
      clamp(
        2.25rem,
        10vw,
        3.1rem
      );
  }


  .partner-side {
    grid-template-columns:
      1fr;
  }


  .partner-core {
    width: 270px;
    min-height: 270px;
  }


  .partner-node {
    min-height: 0;
  }


  .partner-outcome {
    align-items: flex-start;

    margin-top: 45px;
  }

}

/* =========================================================
   WHAT UVC BRINGS
========================================================= */

.about-value {
  position: relative;

  padding:
    clamp(80px, 7.5vw, 115px)
    0;

  overflow: hidden;

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


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

.about-value-head {
  display: grid;

  grid-template-columns:
    minmax(0, 1.08fr)
    minmax(300px, 0.62fr);

  align-items: end;

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

  margin-bottom:
    clamp(
      48px,
      5vw,
      68px
    );
}


.about-value-label {
  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 25px;

  margin-bottom: 15px;
}


.about-value-kicker {
  margin: 0;

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


.about-value-number {
  color:
    rgba(90, 140, 163, 0.13);

  font-size:
    3.2rem;

  line-height: 1;

  font-weight: 800;

  letter-spacing:
    -0.05em;
}


.about-value-title h2 {
  max-width: 720px;

  margin: 0;

  color:
    var(--uvc-dark);

  font-size:
    clamp(
      2.45rem,
      3.8vw,
      4rem
    );

  line-height: 1.04;

  letter-spacing:
    -0.042em;

  font-weight: 760;
}


.about-value-title h2 span {
  display: block;

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


.about-value-intro {
  max-width: 520px;

  margin: 0;

  color:
    var(--uvc-text);

  font-size: 0.97rem;

  line-height: 1.75;
}


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

.about-value-grid {
  display: grid;

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

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

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


.about-value-item {
  position: relative;

  min-height: 245px;

  padding:
    28px
    30px
    32px;

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

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

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

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


.about-value-item:hover {
  background:
    #FFFFFF;
}


/* =========================================================
   TOP DETAIL
========================================================= */

.about-value-top {
  display: flex;

  align-items: center;

  gap: 13px;

  margin-bottom:
    52px;
}


.about-value-index {
  color:
    var(--uvc-primary);

  font-size:
    0.70rem;

  font-weight:
    800;

  letter-spacing:
    0.08em;
}


.about-value-line {
  width: 30px;

  height: 1px;

  background:
    rgba(90, 140, 163, 0.30);

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


.about-value-item:hover
.about-value-line {

  width: 48px;

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


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

.about-value-item h3 {
  margin:
    0
    0
    11px;

  color:
    var(--uvc-dark);

  font-size:
    1.25rem;

  font-weight:
    750;
}


.about-value-item p {
  max-width: 450px;

  margin: 0;

  color:
    #68777E;

  font-size:
    0.90rem;

  line-height:
    1.68;
}


/* Small technical highlight */
.about-value-item::before {
  content: "";

  position: absolute;

  left: 0;
  top: 0;

  width: 3px;
  height: 0;

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

  transition:
    height 0.3s ease;
}


.about-value-item:hover::before {
  height: 100%;
}


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

@media (max-width: 900px) {

  .about-value-head {
    grid-template-columns:
      1fr;

    gap:
      25px;
  }

}


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

@media (max-width: 600px) {

  .about-value {
    padding:
      70px
      0;
  }


  .about-value-number {
    font-size:
      2.7rem;
  }


  .about-value-title h2 {
    font-size:
      clamp(
        2.25rem,
        10vw,
        3.1rem
      );
  }


  .about-value-grid {
    grid-template-columns:
      1fr;
  }


  .about-value-item {
    min-height: 0;

    padding:
      25px
      24px
      28px;
  }


  .about-value-top {
    margin-bottom:
      35px;
  }

}

/* =========================================================
   HOW WE WORK
========================================================= */

.about-process {
  position: relative;

  padding:
    clamp(80px, 7.5vw, 115px)
    0;

  overflow: hidden;

  background:
    #FFFFFF;
}


/* Subtle technical background */
.about-process::before {
  content: "";

  position: absolute;

  inset: 0;

  pointer-events: none;

  opacity: 0.24;

  background-image:
    linear-gradient(
      rgba(90, 140, 163, 0.055) 1px,
      transparent 1px
    );

  background-size:
    100% 54px;

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


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

.about-process-head {
  position: relative;

  z-index: 2;

  display: grid;

  grid-template-columns:
    minmax(0, 1.08fr)
    minmax(300px, 0.62fr);

  align-items: end;

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

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


.about-process-label {
  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 25px;

  margin-bottom: 15px;
}


.about-process-kicker {
  margin: 0;

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


.about-process-section-number {
  color:
    rgba(90, 140, 163, 0.13);

  font-size: 3.2rem;

  line-height: 1;

  font-weight: 800;

  letter-spacing:
    -0.05em;
}


.about-process-title h2 {
  max-width: 720px;

  margin: 0;

  color:
    var(--uvc-dark);

  font-size:
    clamp(
      2.45rem,
      3.8vw,
      4rem
    );

  line-height: 1.04;

  letter-spacing:
    -0.042em;

  font-weight: 760;
}


.about-process-title h2 span {
  display: block;

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


.about-process-intro {
  max-width: 510px;

  margin: 0;

  color:
    var(--uvc-text);

  font-size: 0.97rem;

  line-height: 1.75;
}


/* =========================================================
   PROCESS TRACK
========================================================= */

.about-process-track {
  position: relative;

  z-index: 2;

  display: grid;

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

  gap: 0;

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


/* Horizontal connecting line */
.about-process-track::before {
  content: "";

  position: absolute;

  left: 0;
  right: 0;

  top: 42px;

  height: 1px;

  background:
    linear-gradient(
      90deg,
      rgba(90, 140, 163, 0.15),
      rgba(123, 184, 223, 0.45),
      rgba(90, 140, 163, 0.15)
    );

  pointer-events: none;
}


/* =========================================================
   STEP
========================================================= */

.about-process-step {
  position: relative;

  padding:
    25px
    20px
    30px;

  border-right:
    1px solid
    rgba(90, 140, 163, 0.13);

  transition:
    background-color 0.3s ease;
}


.about-process-step:first-child {
  border-left:
    1px solid
    rgba(90, 140, 163, 0.13);
}


.about-process-step:hover {
  background:
    rgba(246, 249, 251, 0.70);
}


/* =========================================================
   MARKER
========================================================= */

.process-marker {
  position: relative;

  z-index: 2;

  display: flex;

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

  width: 36px;
  height: 36px;

  margin-bottom:
    40px;

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

  border-radius:
    50%;

  background:
    #FFFFFF;

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


.process-marker span {
  color:
    var(--uvc-primary);

  font-size:
    0.64rem;

  font-weight:
    800;
}


.about-process-step:hover
.process-marker {

  transform:
    scale(1.08);

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

  background:
    #F0F7FA;
}


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

.process-content small {
  display: block;

  margin-bottom:
    7px;

  color:
    var(--uvc-primary);

  font-size:
    0.62rem;

  font-weight:
    800;

  letter-spacing:
    0.09em;

  text-transform:
    uppercase;
}


.process-content h3 {
  margin:
    0
    0
    10px;

  color:
    var(--uvc-dark);

  font-size:
    1.08rem;

  line-height:
    1.3;

  font-weight:
    750;
}


.process-content p {
  margin: 0;

  color:
    #6C7A81;

  font-size:
    0.84rem;

  line-height:
    1.62;
}


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

.about-process-bottom {
  position: relative;

  z-index: 2;

  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 30px;

  margin-top:
    32px;

  padding-top:
    24px;

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


.about-process-bottom p {
  max-width: 630px;

  margin: 0;

  color:
    #6C7A81;

  font-size:
    0.88rem;

  line-height:
    1.6;
}


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

@media (max-width: 1000px) {

  .about-process-head {
    grid-template-columns:
      1fr;

    gap: 25px;
  }


  .about-process-track {
    grid-template-columns:
      repeat(2, 1fr);

    gap: 0;
  }


  .about-process-track::before {
    display: none;
  }


  .about-process-step {
    border-bottom:
      1px solid
      rgba(90, 140, 163, 0.13);
  }


  .about-process-step:nth-child(odd) {
    border-left:
      1px solid
      rgba(90, 140, 163, 0.13);
  }


  .about-process-step:last-child {
    grid-column:
      1 / -1;

    max-width:
      50%;
  }

}


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

@media (max-width: 600px) {

  .about-process {
    padding:
      70px
      0;
  }


  .about-process-section-number {
    font-size:
      2.7rem;
  }


  .about-process-title h2 {
    font-size:
      clamp(
        2.25rem,
        10vw,
        3.1rem
      );
  }


  .about-process-track {
    grid-template-columns:
      1fr;
  }


  .about-process-step,
  .about-process-step:nth-child(odd),
  .about-process-step:first-child {
    border-left:
      1px solid
      rgba(90, 140, 163, 0.13);

    border-right:
      1px solid
      rgba(90, 140, 163, 0.13);
  }


  .about-process-step:last-child {
    grid-column:
      auto;

    max-width:
      none;
  }


  .process-marker {
    margin-bottom:
      28px;
  }


  .about-process-bottom {
    align-items:
      flex-start;

    flex-direction:
      column;

    gap:
      14px;
  }

}

/* =========================================================
   PROJECT ENVIRONMENTS
========================================================= */

.about-sectors {
  position: relative;

  padding:
    clamp(80px, 7.5vw, 115px)
    0;

  overflow: clip;

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


/* Subtle decorative circle */
.about-sectors::after {
  content: "";

  position: absolute;

  width: 360px;
  height: 360px;

  left: -180px;
  bottom: -180px;

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

  border-radius: 50%;

  pointer-events: none;
}


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

.about-sectors-layout {
  position: relative;

  z-index: 2;

  display: grid;

  grid-template-columns:
    minmax(300px, 0.72fr)
    minmax(0, 1.28fr);

  align-items: start;

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


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

.about-sectors-intro {
  position: sticky;

  top: calc(var(--header-height, 88px) + 28px);

  align-self: start;

  height: max-content;
}


.about-sectors-label {
  display: flex;

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

  gap: 25px;

  margin-bottom: 15px;
}


.about-sectors-kicker {
  margin: 0;

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


.about-sectors-section-number {
  color:
    rgba(90, 140, 163, 0.13);

  font-size: 3.1rem;

  line-height: 1;

  font-weight: 800;

  letter-spacing:
    -0.05em;
}


.about-sectors-intro h2 {
  max-width: 560px;

  margin:
    0
    0
    22px;

  color:
    var(--uvc-dark);

  font-size:
    clamp(
      2.4rem,
      3.6vw,
      3.8rem
    );

  line-height: 1.04;

  letter-spacing:
    -0.042em;

  font-weight: 760;
}


.about-sectors-intro h2 span {
  display: block;

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


.about-sectors-intro > p {
  max-width: 510px;

  margin:
    0
    0
    25px;

  color:
    var(--uvc-text);

  font-size: 0.96rem;

  line-height: 1.75;
}


/* =========================================================
   SECTOR LIST
========================================================= */

.about-sectors-list {
  border-top:
    1px solid
    rgba(90, 140, 163, 0.18);
}


.about-sector-row {
  display: grid;

  grid-template-columns:
    40px
    minmax(150px, 0.65fr)
    minmax(220px, 1fr)
    30px;

  align-items: center;

  gap: 18px;

  min-height: 105px;

  padding:
    20px
    8px;

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

  transition:
    padding-left 0.3s ease,
    background-color 0.3s ease;
}


.about-sector-row:hover {
  padding-left: 15px;

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


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

  font-size: 0.68rem;

  font-weight: 800;

  letter-spacing:
    0.08em;
}


.about-sector-row h3 {
  margin: 0;

  color:
    var(--uvc-dark);

  font-size: 1.08rem;

  font-weight: 750;
}


.about-sector-row p {
  margin: 0;

  color:
    #6A787F;

  font-size: 0.87rem;

  line-height: 1.55;
}


.about-sector-arrow {
  display: flex;

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

  width: 28px;
  height: 28px;

  color:
    var(--uvc-primary);

  font-size: 0.90rem;

  opacity: 0.55;

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


.about-sector-row:hover
.about-sector-arrow {

  transform:
    translate(
      2px,
      -2px
    );

  opacity: 1;
}


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

@media (max-width: 950px) {

  .about-sectors-layout {
    grid-template-columns:
      1fr;

    gap:
      50px;
  }


  .about-sectors-intro {
    position: static;

    max-width: 700px;
  }

}


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

@media (max-width: 600px) {

  .about-sectors {
    padding:
      70px
      0;
  }


  .about-sectors-section-number {
    font-size:
      2.7rem;
  }


  .about-sectors-intro h2 {
    font-size:
      clamp(
        2.25rem,
        10vw,
        3.1rem
      );
  }


  .about-sector-row {
    grid-template-columns:
      34px
      1fr
      24px;

    gap:
      10px;

    min-height: 0;

    padding:
      20px
      4px;
  }


  .about-sector-row p {
    grid-column:
      2 / -1;

    padding-right:
      25px;
  }


  .about-sector-arrow {
    grid-column: 3;

    grid-row: 1;
  }


  .about-sector-row:hover {
    padding-left: 4px;
  }


  .about-sectors::after {
    display: none;
  }

}

/* =========================================================
   ABOUT FINAL CTA
========================================================= */

.about-final-cta {
  position: relative;

  overflow: clip;

  padding:
    clamp(72px, 7vw, 100px)
    0;

  background:
    linear-gradient(
      135deg,
      #1A282F 0%,
      #223A46 100%
    );
}


/* Technical background */
.about-final-cta-grid {
  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:
    54px 54px;

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


/* Decorative glow */
.about-final-cta::before {
  content: "";

  position: absolute;

  width: 420px;
  height: 420px;

  right: -180px;
  top: -190px;

  border-radius: 50%;

  background:
    radial-gradient(
      circle,
      rgba(137, 198, 232, 0.13),
      transparent 68%
    );

  pointer-events: none;
}


/* =========================================================
   INNER
========================================================= */

.about-final-cta-inner {
  position: relative;

  z-index: 2;

  display: grid;

  grid-template-columns:
    minmax(0, 1.25fr)
    minmax(280px, 0.55fr);

  align-items: center;

  gap:
    clamp(
      50px,
      7vw,
      100px
    );
}


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

.about-final-cta-kicker {
  margin:
    0
    0
    15px;

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

  font-size:
    0.70rem;

  font-weight:
    800;

  letter-spacing:
    0.12em;

  text-transform:
    uppercase;
}


.about-final-cta-content h2 {
  max-width: 760px;

  margin:
    0
    0
    20px;

  color:
    #FFFFFF;

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

  line-height:
    1.04;

  letter-spacing:
    -0.042em;

  font-weight:
    760;
}


.about-final-cta-content h2 span {
  display: block;

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


.about-final-cta-content > p:last-child {
  max-width:
    680px;

  margin: 0;

  color:
    #B8C6CC;

  font-size:
    0.96rem;

  line-height:
    1.75;
}


/* =========================================================
   ACTIONS
========================================================= */

.about-final-cta-actions {
  display: flex;

  flex-direction: column;

  align-items: flex-start;

  gap: 21px;
}


.about-final-cta-actions .btn-primary {
  min-width: 170px;
}


.about-cta-phone {
  display: block;

  padding:
    5px
    0;

  text-decoration: none;

  cursor: pointer;
}


.about-cta-phone small {
  display: block;

  margin-bottom: 4px;

  color:
    #8299A3;

  font-size:
    0.60rem;

  font-weight:
    800;

  letter-spacing:
    0.10em;
}


.about-cta-phone strong {
  display: block;

  color:
    #FFFFFF;

  font-size:
    1rem;

  font-weight:
    700;

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


.about-cta-phone:hover strong {
  color:
    var(--uvc-light-blue);

  transform:
    translateX(3px);
}

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

@media (max-width: 850px) {

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

    gap:
      38px;
  }


  .about-final-cta-actions {
    flex-direction:
      row;

    align-items:
      center;

    flex-wrap:
      wrap;

    gap:
      24px;
  }

}


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

@media (max-width: 600px) {

  .about-final-cta {
    padding:
      65px
      0;
  }


  .about-final-cta-content h2 {
    font-size:
      clamp(
        2.25rem,
        10vw,
        3.1rem
      );
  }


  .about-final-cta-actions {
    flex-direction:
      column;

    align-items:
      flex-start;

    gap:
      22px;
  }

}
