/* ==========================================================
   01. ROOT VARIABLES
========================================================== */

:root {
  /* Colors */
  --blue: #0E356F;
  --green: #8FD400;
  --orange: #FF4A1C;
  --orange-2: #FF6B00;
  --navy: #081B3A;
  --light: #F7F9FC;
  --white: #FFFFFF;
  --text: #172033;
  --muted: #667085;
  --line: rgba(14, 53, 111, .14);

  /* Typography */
  --head: "Plus Jakarta Sans", Arial, sans-serif;
  --body: "Inter", Arial, sans-serif;

  /* Spacing */
  --space-section: clamp(5rem, 9vw, 10rem);
  --space-site-x: clamp(1.1rem, 4.8vw, 5.5rem);

  /* Shadows */
  --shadow-header: 0 18px 50px rgba(8, 27, 58, .10);
  --shadow-mega-menu: 0 28px 90px rgba(8, 27, 58, .18);

  /* Border Radius */
  --radius-none: 0;
}

/* ==========================================================
   02. GLOBAL RESET
========================================================== */

/* body */
/* html */
/* container */
/* images */
/* links */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--body);
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

/* ==========================================================
   03. TYPOGRAPHY SYSTEM
========================================================== */

/* headings */
/* paragraphs */
/* section titles */
/* labels */

p {
  color: var(--muted);
  font-size: clamp(1rem, 1.15vw, 1.22rem);
  line-height: 1.8;
}

h1,
h2,
h3,
h4 {
  font-family: var(--head);
  letter-spacing: 0;
  line-height: .98;
  margin: 0;
}

h1 {
  font-size: clamp(2.2rem, 5vw, 5.5rem);
  font-weight: 700;
}

h2 {
  font-size: clamp(1.8rem, 3vw, 3.5rem);
  font-weight: 700;
  color: var(--navy);
}

h3 {
  font-size: clamp(1.15rem, 1.6vw, 1.8rem);
  font-weight: 700;
  color: var(--navy);
}

.px-site {
  padding-left: clamp(1.1rem, 4.8vw, 5.5rem);
  padding-right: clamp(1.1rem, 4.8vw, 5.5rem);
}

.section {
  padding: clamp(5rem, 9vw, 10rem) 0;
  position: relative;
}

.section-head {
  max-width: 980px;
  margin-bottom: clamp(2.5rem, 4.5vw, 5rem);
}

.label {
  display: inline-block;
  color: var(--orange);
  font-weight: 800;
  font-size: .78rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

/* ==========================================================
   04. PRELOADER
========================================================== */

/* loader */
/* spinner */
/* loader animation */

.premium-preload {
  background: var(--navy);
}

.preloader {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: grid;
  place-items: center;
  background: var(--navy);
  overflow: hidden;
  transform: translateZ(0);
  will-change: opacity, transform;
}

.preloader-spinner {
  width: 60px;
  height: 60px;
  border: 2px solid rgba(255, 255, 255, .15);
  border-top-color: var(--white);
  border-radius: 50%;
  animation: spinnerRotate .8s linear infinite;
  transform: translateZ(0);
  will-change: transform;
}

/* ==========================================================
   05. HEADER
========================================================== */

/* top bar */
/* navbar */
/* sticky navbar */
/* navigation links */

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 2000;
  transition: background .3s ease, box-shadow .3s ease, transform .3s ease;
}

.premium-preload .site-header {
  opacity: 0;
  transform: translateY(-8px);
}

.site-header.scrolled {
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 18px 50px rgba(8, 27, 58, .10);
  backdrop-filter: blur(18px);
}

.nav-shell {
  min-height: 98px;
  padding: 0 clamp(1.1rem, 4.8vw, 5.5rem);
  display: flex;
  align-items: center;
  gap: 2rem;
}

/* ==========================================================
   06. LOGO SYSTEM
========================================================== */


.brand {
  display: grid;
  align-items: center;
  margin-right: auto;
  position: relative;
}

.brand-logo {
  grid-area: 1 / 1;
  height: 125px;
  width: auto;
  max-width: min(260px, 36vw);
  object-fit: contain;
  transition: opacity .3s ease, height .3s ease;
  padding: 10PX;
}

.brand .logo-light {
  opacity: 1;
}

.brand .logo-dark {
  opacity: 0;
}

.site-header.scrolled .brand .logo-light {
  opacity: 0;
}

.site-header.scrolled .brand .logo-dark {
  opacity: 1;
}

.site-header.scrolled .brand-logo {
  height: 98px;
  padding: 7PX;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.desktop-nav>a,
.mega-trigger>a {
  color: rgba(255, 255, 255, .86);
  font-weight: 800;
  font-size: .82rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 2.4rem 0;
}

.site-header.scrolled .desktop-nav>a,
.site-header.scrolled .mega-trigger>a {
  color: var(--navy);
}

.desktop-nav > a.active,
.mega-trigger > a.active,
.site-header.scrolled .desktop-nav > a.active,
.site-header.scrolled .mega-trigger > a.active {
  color: var(--green) !important;
}
.desktop-nav a.active,
.desktop-nav a:hover {
  color: var(--green);
}

.nav-cta {
  border: 1px solid rgba(255, 255, 255, .32);
  color: var(--white);
  padding: .85rem 1rem;
  font-weight: 800;
  font-size: .82rem;
  text-transform: uppercase;
}

.site-header.scrolled .nav-cta {
  border-color: var(--line);
  color: var(--blue);
}

.mega-trigger {
  position: relative;
}

.mega-menu {
  position: absolute;
  right: -360px;
  top: 100%;
  width: min(1100px, 90vw);
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 2rem;
  padding: 2.4rem;
  background: var(--white);
  color: var(--navy);
  box-shadow: 0 28px 90px rgba(8, 27, 58, .18);
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  transition: opacity .25s ease, transform .25s ease;
}

.mega-trigger:hover .mega-menu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.mega-intro span,
.mega-service-list span {
  color: var(--orange);
  font-size: .76rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .16em;
}

.mega-intro h3 {
  font-size: clamp(2rem, 2.8vw, 3.15rem);
  margin-top: .85rem;
  line-height: 1;
}

.mega-intro p {
  font-size: .98rem;
  line-height: 1.75;
  margin: 1.1rem 0 1.4rem;
}

.mega-button {
  display: inline-flex;
  color: var(--blue);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .8rem;
}

.mega-service-list {
  display: grid;
  gap: 1px;
  background: var(--line);
}

.mega-service-list a {
  background: var(--white);
  padding: 1.3rem 1.35rem;
  transition: background .25s ease, padding .25s ease;
}

.mega-service-list a:hover {
  background: var(--light);
  padding-left: 1.65rem;
}

.mega-service-list strong {
  display: block;
  color: var(--blue);
  font-family: var(--head);
  font-size: 1.1rem;
  margin: .45rem 0 .55rem;
}

.mega-service-list small {
  display: block;
  color: var(--muted);
  line-height: 1.55;
}

/* ==========================================================
   07. MOBILE MENU
========================================================== */

/* mobile navigation */
/* hamburger */
/* mobile overlay */

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  width: 44px;
  height: 44px;
  padding: 0;
}

.menu-toggle span {
  display: block;
  height: 2px;
  background: var(--white);
  margin: 7px 0;
}

.site-header.scrolled .menu-toggle span {
  background: var(--navy);
}

.mobile-panel {
  position: fixed;
  inset: 0 0 0 auto;
  width: min(420px, 86vw);
  background: var(--navy);
  padding: 2rem;
  transform: translateX(100%);
  transition: transform .35s ease;
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}

.mobile-panel.open {
  transform: translateX(0);
}

.mobile-panel img {
  width: auto;
  height: 60px;
  max-width: 220px;
  object-fit: contain;
  margin-bottom: 2rem;
}

.mobile-panel a {
  color: var(--white);
  font-family: var(--head);
  font-size: 1.35rem;
}

/* ==========================================================
   08. HERO SECTION
========================================================== */

/* hero background */
/* overlay */
/* hero content */
/* hero typography */
/* hero buttons */

.home-hero,
.inner-hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: end;
  justify-content: flex-start;
  overflow: hidden;
  background: var(--navy);
  isolation: isolate;
}

.home-hero video,
.hero-bg,
.inner-hero::before {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -4;
}

.hero-bg {
  background: url("https://res.cloudinary.com/dkozkftyo/image/upload/v1782220495/1545_rglj0p.jpg") center/cover no-repeat;
  z-index: -5;
}

.home-hero::after,
.inner-hero::after,
.safety-band::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 78% 42%, rgba(8, 27, 58, 0) 0%, rgba(8, 27, 58, .34) 70%),
    linear-gradient(90deg, rgba(8, 27, 58, 0.577) 0%, rgba(8, 27, 58, 0.363) 40%, rgba(8, 27, 58, 0.3) 100%);
}

.watermark {
  position: absolute;
  right: -8vw;
  top: 18vh;
  width: min(700px, 62vw);
  opacity: .02;
  pointer-events: none;
  z-index: 0;
}

.watermark img {
  opacity: .65;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(980px, 84vw);
  max-width: 980px;
  margin-left: 8vw;
  margin-right: auto;
  text-align: left;
  padding-top: 210px;
  padding-left: 0;
  padding-right: 0;
  padding-bottom: clamp(5rem, 10vh, 8rem);
}

.home-hero h1,
.inner-hero h1 {
  color: var(--white);
  max-width: 1250px;
}

.home-hero p,
.inner-hero p {
  color: rgba(255, 255, 255, .82);
  max-width: 860px;
}

.home-hero .hero-label {
  margin-bottom: 0.3rem;
  color: var(--orange-2);
  letter-spacing: .22em;
  text-align: left;
}

.hero-title {
  max-width: 980px;
  color: var(--white);
  font-size: clamp(3rem, 4.4vw, 5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.2;
  text-align: left;
  text-shadow: 0 10px 40px rgba(0, 0, 0, .25);
}

.hero-title__line {
  display: block;
  white-space: nowrap;
}

.hero-line {
  width: 120px;
  height: 3px;
  margin: 25px 0;
  background: linear-gradient(90deg, var(--orange), var(--green));
  transform-origin: left center;
  text-align: left;
}

.hero-description {
  max-width: 650px;
  margin: 0;
  color: rgba(255, 255, 255, .80);
  font-size: clamp(0.8rem, 0.9vw, 0.9rem);
  font-weight: 500;
  letter-spacing: .08em;
  line-height: 1.45;
  text-transform: uppercase;
}

.hero-stats {
  display: flex;
  width: fit-content;
  max-width: 100%;
  margin-top: 2.4rem;
  margin-bottom: 0;
  padding: 1rem 1.5rem;
  gap: 2rem;
  border: 1px solid rgba(255, 255, 255, .08);
  background: rgba(255, 255, 255, .04);
  backdrop-filter: blur(10px);
}

.hero-stat {
  flex: 0 0 auto;
  padding: 0;
  border-right: 0;
}

.hero-stat:last-child {
  border-right: 0;
}

.hero-stat strong {
  display: block;
  color: var(--white);
  font-family: var(--head);
  font-size: clamp(1.85rem, 2.4vw, 2.8rem);
  font-weight: 800;
  line-height: 1;
}

.hero-stat span {
  display: block;
  margin-top: .45rem;
  color: rgba(255, 255, 255, .68);
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 1rem 1.35rem;
  font-weight: 900;
  text-transform: uppercase;
  font-size: .82rem;
  letter-spacing: .08em;
  border: 1px solid transparent;
  transition: transform .25s ease, background .25s ease, color .25s ease;
}

.button:hover {
  transform: translateY(-3px);
}

.button.orange {
  background: var(--orange);
  color: var(--white);
}

.button.orange:hover {
  background: var(--orange-2);
}

.button.ghost {
  border-color: rgba(255, 255, 255, .38);
  color: var(--white);
}

.button.ghost:hover {
  border-color: rgba(255, 255, 255, .85);
  background: rgba(255, 255, 255, .08);
}

.inner-hero {
  min-height: 78vh;
}

.inner-hero::before {
  content: "";
  background: var(--bg) center/cover no-repeat;
  transform: scale(1.05);
}

.inner-hero .container-fluid {
  padding-top: 160px;
  padding-bottom: 6rem;
  position: relative;
  z-index: 2;
}

/* ==========================================================
   09. ABOUT SECTION
========================================================== */

/* about layout */
/* timeline */
/* company overview */

.about-split {
  background: var(--light);
}

.about-copy {
  min-height: 720px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-right: clamp(1rem, 5vw, 5rem);
}

.timeline {
  min-height: 720px;
  background: var(--navy);
  padding: clamp(2rem, 5vw, 5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.timeline-row {
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 1.4rem;
  padding: 1.8rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, .14);
}

.timeline-row span {
  color: var(--green);
  font-family: var(--head);
  font-size: 2rem;
  font-weight: 800;
}

.timeline-row p {
  color: var(--white);
  margin: 0;
  font-size: clamp(1.1rem, 1.5vw, 1.55rem);
}

.home-about-section {
  position: relative;
  overflow: hidden;
  padding: 80px 0;
  background:
    radial-gradient(circle at 80% 44%, rgba(255, 107, 0, .14), transparent 26%),
    radial-gradient(circle at 8% 18%, rgba(7, 26, 53, .055), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #F8FAFC 100%);
}

.home-about-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .35;
  background-image:
    linear-gradient(rgba(7, 26, 53, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 26, 53, .035) 1px, transparent 1px);
  background-size: 74px 74px;
  mask-image: radial-gradient(circle at 78% 26%, #000 0%, transparent 52%);
}

.home-about-section::after {
  content: "";
  position: absolute;
  right: 10%;
  bottom: 16%;
  width: 160px;
  height: 1px;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(255, 107, 0, .45), transparent);
}

.home-about-section__accent {
  position: absolute;
  top: 16%;
  right: 8%;
  width: 160px;
  height: 160px;
  pointer-events: none;
  border: 1px solid rgba(7, 26, 53, .06);
  border-radius: 50%;
}

.home-about-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 50% 50%;
  gap: 1.5rem;
  align-items: center;
}

.home-about-copy {
  max-width: 780px;
}

.home-about-copy h2 {
  max-width: 650px;
  color: #071A35;
  font-size: clamp(1.8rem, 3vw, 3.5rem);
  line-height: 1.04;
  letter-spacing: -.04em;
}

.home-about-copy p {
  max-width: 640px;
  margin: 1.25rem 0 0;
  color: #2F3E52;
  font-size: 0.95rem;
  line-height: 1.7;
  text-align: justify;
}

.about-checklist {
  display: grid;
  grid-template-columns: repeat(2, minmax(220px, 1fr));
  gap: .95rem 1.1rem;
  max-width: 760px;
  margin: 2rem 0 0;
}

.about-check {
  display: flex;
  align-items: center;
  gap: .9rem;
  color: #071A35;
  font-weight: 800;
}

.home-about-section .about-check span {
  display: grid;
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  place-items: center;
  color: #FF6B00;
  border: 1px solid rgba(255, 107, 0, .16);
  border-radius: 50%;
  background: rgba(255, 107, 0, .10);
}

.home-about-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .85rem;
  margin-top: 2.2rem;
}

.home-about-actions .about-secondary {
  gap: .55rem;
  color: #FF6B00;
  border-color: rgba(255, 107, 0, .45);
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(7, 26, 53, .06);
}

.home-about-actions .about-secondary:hover {
  color: #ffffff;
  border-color: #FF6B00;
  background: #FF6B00;
}

.home-about-visual {
  position: relative;
  min-height: 500px;
}

.home-about-image {
  position: relative;
  overflow: hidden;
  height: 500px;
  border-radius: 24px;
  background: #071A35;
  box-shadow: 0 28px 65px #071a3537;
}

.home-about-image::before {
  content: "";
  position: absolute;
  inset: -18%;
  z-index: -1;
  border-radius: 34px;
  background: radial-gradient(circle, rgba(255, 107, 0, .28), transparent 58%);
  filter: blur(18px);
}

.home-about-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 26, 53, .08), rgba(7, 26, 53, .28));
  pointer-events: none;
}

.home-about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s ease;
}

.home-about-visual:hover .home-about-image img {
  transform: scale(1.06);
}

.about-metrics-panel {
  position: absolute;
  left: 50%;
  bottom: -38px;
  width: 80%;
  padding: 24px 32px;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 24px;
  border: 1px solid rgba(255, 255, 255, .76);
  border-radius: 24px;
  background: rgba(255, 255, 255, .85);
  box-shadow: 0 30px 60px rgba(0, 0, 0, .12);
  backdrop-filter: blur(12px);
  transform: translateX(-50%);
  animation: aboutPanelFloat 2s ease-in-out infinite alternate;
  transition: box-shadow .4s ease, transform .4s ease;
  -webkit-animation: aboutPanelFloat 2s ease-in-out infinite alternate;
}

.about-metrics-panel:hover {
  box-shadow: 0 34px 76px rgba(0, 0, 0, .16);
}

.about-metrics-panel::before {
  display: none;
}

.about-metric {
  position: relative;
  z-index: 1;
  display: flex;
  flex: 1 1 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 0;
  padding: 0;
  text-align: center;
}

.about-metric:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -12px;
  width: 1px;
  height: 50px;
  background: rgba(7, 26, 53, .12);
  transform: translateY(-50%);
}

.about-metric__icon {
  display: none;
}

.about-metric strong {
  color: #ff3700;
  font-family: var(--head);
  font-size: clamp(1.5rem, 2vw, 2.2rem);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -.05em;
  white-space: nowrap;
  background: linear-gradient(135deg, #ff3700 0%, #ff8a24 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.about-metric em {
  display: block;
  margin-top: .45rem;
  color: #6B7280;
  font-size: 10px;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

@keyframes aboutPanelFloat {
  from {
    transform: translate(-50%, 0);
  }

  to {
    transform: translate(-50%, -10px);
  }
}

@keyframes aboutPanelFloatMobile {
  from {
    transform: translateX(-50%);
  }

  to {
    transform: translate(-50%, -8px);
  }
}

.about-intro-grid,
.who-we-are-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: clamp(2.5rem, 6vw, 7rem);
  align-items: start;
}

.about-intro-copy {
  border-left: 4px solid var(--orange);
  padding-left: clamp(1.5rem, 3vw, 3rem);
}

.who-we-are-section {
  background: var(--light);
}

.who-we-are-image {
  min-height: 620px;
  overflow: hidden;
  height: 100%;
}

.who-we-are-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s cubic-bezier(.2, .8, .2, 1);
  -webkit-transition: transform 1s cubic-bezier(.2, .8, .2, 1);
  -moz-transition: transform 1s cubic-bezier(.2, .8, .2, 1);
  -ms-transition: transform 1s cubic-bezier(.2, .8, .2, 1);
  -o-transition: transform 1s cubic-bezier(.2, .8, .2, 1);
}

.who-we-are-image:hover img {
  transform: scale(1.05);
}

.about-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 2rem;
  background: var(--line);
}

.about-feature-card,
.about-service-card {
  background: var(--white);
  padding: 1.5rem;
  min-height: 190px;
  transition: transform .3s ease, background .3s ease;
}

.about-feature-card:hover,
.about-service-card:hover {
  background: var(--light);
  transform: translateY(-6px);
}

.about-feature-card h3,
.about-service-card h3 {
  font-size: clamp(1.15rem, 1.4vw, 1.55rem);
  line-height: 1.1;
}

.about-feature-card p,
.about-service-card p {
  margin-bottom: 0;
  font-size: .96rem;
}

.about-service-grid,
.why-card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
}

.about-service-card span {
  display: inline-grid;
  min-width: 54px;
  height: 54px;
  margin-bottom: 1.4rem;
  place-items: center;
  background: var(--navy);
  color: var(--green);
  font-family: var(--head);
  font-weight: 900;
  font-size: .82rem;
}

.why-choose-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px),
    var(--navy);
  background-size: 64px 64px;
}

.why-choose-section h2,
.why-choose-section h3 {
  color: var(--white);
}

.why-card-grid {
  grid-template-columns: repeat(3, 1fr);
  background: rgba(255, 255, 255, .12);
}

.why-card {
  min-height: 220px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .06);
  transition: transform .3s ease, border-color .3s ease;
}

.why-card:hover {
  transform: translateY(-6px);
  border-color: rgba(155, 224, 0, .42);
}

.why-card span {
  color: var(--green);
  font-family: var(--head);
  font-size: 2rem;
  font-weight: 900;
}

/* ==========================================================
   10. SERVICES SECTION
========================================================== */

/* service layout */
/* service image */
/* service content */
/* service hover effects */

.service-ledger {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1px;
  background: rgba(14, 53, 111, .20);
}

.service-tile {
  position: relative;
  min-height: 520px;
  grid-column: span 2;
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: clamp(1.2rem, 2vw, 2rem);
  color: var(--white);
  overflow: hidden;
  isolation: isolate;
}

.service-tile:nth-child(1),
.service-tile:nth-child(6) {
  grid-column: span 3;
  min-height: 640px;
}

.service-tile img,
.project-block img,
.industry-block img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
  transition: transform 1s cubic-bezier(.2, .8, .2, 1);
}

.service-tile::after,
.project-block::after,
.industry-block::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 27, 58, .05), rgba(8, 27, 58, 0.396));
  z-index: -1;
}

.service-tile:hover img,
.project-block:hover img,
.industry-block:hover img {
  transform: scale(1.08);
}

.service-tile span,
.project-block span {
  color: var(--green);
  font-weight: 900;
  font-size: .78rem;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.service-tile h3,
.project-block h3 {
  color: var(--white);
  margin: .75rem 0;
}

.service-tile p,
.project-block p {
  color: rgba(255, 255, 255, .76);
  margin: 0;
  font-size: 1rem;
}

.services-showcase {
  position: relative;
  background:
    linear-gradient(rgba(14, 53, 111, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14, 53, 111, .045) 1px, transparent 1px),
    var(--white);
  background-size: 72px 72px;
}

.service-band {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
}

.service-band.reverse .service-media {
  order: 2;
}

.service-band.reverse .service-copy {
  order: 1;
}

.service-media {
  position: relative;
  min-height: 680px;
  overflow: hidden;
  background: var(--navy);
}

.service-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s cubic-bezier(.2, .8, .2, 1);
}

.service-media:hover img {
  transform: scale(1.06);
}

.service-copy {
  position: relative;
  padding: clamp(3rem, 7vw, 7rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service-number {
  position: absolute;
  top: clamp(1.5rem, 4vw, 4rem);
  right: clamp(1.5rem, 4vw, 4rem);
  color: rgba(14, 53, 111, .10);
  font-family: var(--head);
  font-size: clamp(5rem, 10vw, 12rem);
  font-weight: 800;
  line-height: .8;
}

.service-copy h2 {
  max-width: 760px;
}

.service-copy p {
  max-width: 790px;
  margin: 1.25rem 0 1.7rem;
}

.service-included {
  columns: 2;
  column-gap: 2rem;
  padding: 0;
  margin: 0 0 2rem;
  list-style: none;
}

.service-included li {
  break-inside: avoid;
  position: relative;
  padding: .55rem 0 .55rem 1.35rem;
  color: var(--navy);
  font-weight: 800;
}

.service-included li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.15rem;
  width: 7px;
  height: 7px;
  background: var(--green);
}

.text-link-premium {
  color: var(--blue);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .82rem;
}

.premium-services-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 12%, rgba(155, 224, 0, .10), transparent 24%),
    radial-gradient(circle at 90% 22%, rgba(255, 90, 31, .09), transparent 28%),
    linear-gradient(rgba(8, 27, 58, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(8, 27, 58, .035) 1px, transparent 1px),
    linear-gradient(180deg, var(--white), var(--light)),
    var(--white);
  background-size: auto, auto, 58px 58px, 58px 58px, auto, auto;
}

.premium-services-section::before {
  content: "";
  position: absolute;
  top: 12%;
  left: -120px;
  width: 360px;
  height: 360px;
  border: 1px solid rgba(14, 53, 111, .08);
  border-radius: 50%;
  background: rgba(255, 255, 255, .36);
  backdrop-filter: blur(10px);
  pointer-events: none;
}

.premium-services-section::after {
  content: "";
  position: absolute;
  right: 7%;
  bottom: 9%;
  width: 170px;
  height: 170px;
  border: 1px solid rgba(155, 224, 0, .24);
  transform: rotate(18deg);
  pointer-events: none;
}

.premium-services-section .container-fluid {
  position: relative;
  z-index: 1;
}

.service-section-head {
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.service-section-head p {
  max-width: 780px;
  margin: 1.2rem auto 0;
}

.premium-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 2vw, 1.8rem);
  align-items: stretch;
}

.premium-services-grid .premium-service-card:nth-child(2) {
  transform: translateY(34px);
}

.premium-services-grid .premium-service-card:nth-child(2):hover {
  transform: translateY(20px);
}

.premium-service-card {
  position: relative;
  min-height: clamp(460px, 36vw, 640px);
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, .08);
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 30px 80px rgba(8, 27, 58, .14);
  transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease;
}

.premium-service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(8, 27, 58, 0.177), rgba(8, 27, 58, 0.336) 45%, rgba(8, 27, 58, 0.385)),
    linear-gradient(90deg, rgba(8, 27, 58, 0.323), transparent 65%);
  pointer-events: none;
}

.premium-service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  border-radius: inherit;
  border: 1px solid transparent;
  box-shadow: inset 0 0 0 0 rgba(155, 224, 0, 0);
  transition: box-shadow .35s ease, border-color .35s ease;
  pointer-events: none;
}

.premium-service-card > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 1s cubic-bezier(.2, .8, .2, 1), filter .45s ease;
}

.premium-service-card__glow {
  position: absolute;
  inset: auto 1.25rem 1.25rem 1.25rem;
  z-index: 2;
  height: 48%;
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.36), rgba(255, 255, 255, 0.24));
  border: 1px solid rgba(255, 255, 255, 0.233);
  backdrop-filter: blur(28px);
  opacity: .92;
}

.premium-service-card__system {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  z-index: 4;
  padding: .72rem .9rem;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 999px;
  color: rgba(255, 255, 255, .82);
  background: rgba(8, 27, 58, .32);
  backdrop-filter: blur(12px);
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.premium-service-card:hover {
  transform: translateY(-12px);
  border-color: rgba(155, 224, 0, .55);
  box-shadow: 0 45px 110px rgba(8, 27, 58, .30);
}

.premium-service-card:hover::after {
  box-shadow: inset 0 0 0 1px rgba(155, 224, 0, .35), 0 0 48px rgba(155, 224, 0, .18);
}

.premium-service-card:hover > img {
  transform: scale(1.11);
  filter: saturate(1.08) contrast(1.05);
}

.premium-service-card__panel {
  position: absolute;
  inset: auto 1.25rem 1.25rem;
  z-index: 4;
  min-height: 48%;
  padding: clamp(1.3rem, 2vw, 2rem);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.premium-service-card__number {
  display: inline-flex;
  width: fit-content;
  margin-bottom: auto;
  padding-bottom: 1.2rem;
  color: var(--green);
  font-size: .75rem;
  font-weight: 900;
  letter-spacing: .16em;
}

.premium-service-card h3 {
  color: var(--white);
  font-size: clamp(1.2rem, 1.6vw, 1.8rem);
  line-height: 1.05;
  transform: translateY(0);
  transition: transform .35s ease;
}

.premium-service-card p {
  color: rgba(255, 255, 255, .72);
  font-size: .8rem;
  line-height: 1.7;
  margin: .8rem 0 1.2rem;
}

.premium-service-card:hover h3 {
  transform: translateY(-6px);
}


.premium-service-card__link {
  display: inline-flex;
  width: fit-content;
  position: relative;
  padding-top: 1rem;
  color: var(--green);
  font-size: .8rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: transform .3s ease;
}


.premium-service-card:hover .premium-service-card__link::before {
  width: 130px;
}

.premium-service-card:hover .premium-service-card__link {
  transform: translateX(8px);
}

.home-service-why {
  position: relative;
  margin-top: clamp(3rem, 7vw, 6rem);
  padding: clamp(1.2rem, 2vw, 1.5rem);
  display: grid;
  grid-template-columns: minmax(260px, .72fr) 1.4fr;
  gap: 1px;
  overflow: hidden;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, .10);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .12), rgba(255, 255, 255, .04)),
    var(--navy);
  box-shadow: 0 34px 110px rgba(8, 27, 58, .18);
}

.home-service-why::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, .055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .055) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, .78), transparent);
  pointer-events: none;
}

.home-service-why__intro {
  position: relative;
  z-index: 1;
  min-height: 310px;
  padding: clamp(1.5rem, 2.5vw, 2.5rem);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.home-service-why__intro h3 {
  max-width: 420px;
  margin-top: 1rem;
  color: var(--white);
  font-size: clamp(1.8rem, 2.5vw, 3rem);
  line-height: .98;
  letter-spacing: -0.04em;
}

.home-service-why__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .8rem;
  background: transparent;
}

.home-service-why__item {
  position: relative;
  min-height: 310px;
  padding: clamp(1.3rem, 2vw, 2rem);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .10);
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .10), rgba(255, 255, 255, .035));
  backdrop-filter: blur(12px);
  transition: transform .35s ease, border-color .35s ease, background .35s ease;
}

.home-service-why__item::before {
display: none;
}

.home-service-why__item::after {
  content: "";
  position: absolute;
  left: 1.4rem;
  top: 1.5rem;
  width: 2px;
  height: 76px;
  background: linear-gradient(var(--green), transparent);
  opacity: .72;
}

.home-service-why__item:hover {
  transform: translateY(-8px);
  border-color: rgba(155, 224, 0, .42);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .14), rgba(255, 255, 255, .05));
}



.home-service-why__item span {
  display: block;
  margin-bottom: 3.7rem;
  color: var(--green);
  font-family: var(--head);
  font-size: clamp(2.8rem, 5vw, 5.4rem);
  font-weight: 900;
  line-height: .8;
  letter-spacing: -0.08em;
  opacity: .9;
}

.home-service-why__item h3 {
  color: var(--white);
  font-size: clamp(1.25rem, 1.6vw, 1.65rem);
}

.home-service-why__item p {
  color: rgba(255, 255, 255, .68);
  font-size: .98rem;
}

.service-detail-hero {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: end;
  overflow: hidden;
  background: var(--navy);
}

.service-detail-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-detail-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8, 27, 58, .94), rgba(8, 27, 58, .68) 48%, rgba(8, 27, 58, .26));
}

.service-detail-hero__content {
  position: relative;
  z-index: 2;
  padding-top: 160px;
  padding-bottom: clamp(4rem, 8vw, 7rem);
}

.service-breadcrumb {
  display: flex;
  gap: .65rem;
  align-items: center;
  margin-bottom: 1.4rem;
  color: rgba(255, 255, 255, .72);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.service-breadcrumb strong {
  color: var(--green);
}

.service-detail-hero h1 {
  max-width: 980px;
  color: var(--white);
  font-size: clamp(3rem, 5vw, 6rem);
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: .95;
}

.service-detail-hero p {
  max-width: 680px;
  color: rgba(255, 255, 255, .80);
}

.service-overview-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(360px, .7fr);
  gap: clamp(2rem, 5vw, 6rem);
  align-items: center;
}

.service-overview-image {
  overflow: hidden;
  border-radius: 22px;
  box-shadow: 0 28px 90px rgba(8, 27, 58, .14);
}

.service-overview-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s cubic-bezier(.2, .8, .2, 1);
}

.service-overview-image:hover img {
  transform: scale(1.05);
}

.service-highlight-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .9rem;
  margin-top: 2rem;
}

.service-highlight {
  display: flex;
  gap: .75rem;
  align-items: center;
  color: var(--navy);
  font-weight: 900;
}

.service-highlight span {
  color: var(--green);
  font-weight: 900;
}

.service-included-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 18%, rgba(155, 224, 0, .08), transparent 24%),
    radial-gradient(circle at 92% 18%, rgba(255, 90, 31, .08), transparent 26%),
    linear-gradient(rgba(8, 27, 58, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(8, 27, 58, .035) 1px, transparent 1px),
    var(--light);
  background-size: auto, auto, 52px 52px, 52px 52px, auto;
}

.service-included-section::before,
.service-included-section::after {
  content: "";
  position: absolute;
  z-index: 0;
  border: 1px solid rgba(14, 53, 111, .08);
  border-radius: 999px;
  pointer-events: none;
}

.service-included-section::before {
  width: 280px;
  height: 280px;
  right: -110px;
  top: 90px;
  background: rgba(255, 255, 255, .38);
  backdrop-filter: blur(12px);
}

.service-included-section::after {
  width: 150px;
  height: 150px;
  left: 7%;
  bottom: 70px;
  background: rgba(155, 224, 0, .08);
}

.service-included-section .container-fluid {
  position: relative;
  z-index: 1;
}

.service-icon-grid,
.service-why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  background: transparent;
}

.service-icon-card {
  position: relative;
  min-height: 245px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: var(--white);
  border: 1px solid rgba(1, 33, 73, .08);
  border-radius: 20px;
  box-shadow: 0 18px 55px rgba(8, 27, 58, .08);
  transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease;
}

.service-icon-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  z-index: 3;
  width: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--green), var(--orange));
  transition: width .35s ease;
}

.service-icon-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(8, 27, 58, .06), rgba(8, 27, 58, .18) 45%, rgba(8, 27, 58, .62)),
    linear-gradient(135deg, rgba(255, 255, 255, .10), transparent 55%);
  opacity: .72;
  pointer-events: none;
  transition: opacity .35s ease;
}

.service-icon-card:hover {
  transform: translateY(-10px);
  border-color: rgba(155, 224, 0, .56);
  box-shadow: 0 34px 90px rgba(8, 27, 58, .18), 0 0 38px rgba(155, 224, 0, .14);
}

.service-icon-card:hover::before {
  width: 100%;
}

.service-icon-card:hover::after {
  opacity: .86;
}

.service-icon-card__image {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.service-icon-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform .75s cubic-bezier(.2, .8, .2, 1), filter .35s ease;
}

.service-icon-card:hover .service-icon-card__image img {
  transform: scale(1.11);
  filter: saturate(1.08) contrast(1.05);
}

.service-icon-card__body {
  position: relative;
  z-index: 2;
  min-height: 150px;
  margin: 1rem;
  padding: 1rem;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: .9rem;
  align-items: end;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 16px;
  background: rgba(8, 27, 58, .54);
  backdrop-filter: blur(14px);
  transition: background .35s ease, transform .35s ease;
}

.service-icon-card:hover .service-icon-card__body {
  background: rgba(8, 27, 58, .68);
  transform: translateY(-4px);
}

.service-icon-card__icon {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(155, 224, 0, .36);
  color: var(--green);
  background: rgba(255, 255, 255, .08);
  transition: color .35s ease, border-color .35s ease, transform .35s ease;
}

.service-icon-card__icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-icon-card:hover .service-icon-card__icon {
  color: var(--white);
  border-color: var(--green);
  transform: rotate(-8deg) scale(1.06);
}

.service-icon-card h3 {
  margin-bottom: .45rem;
  color: var(--white);
  font-size: clamp(1rem, 1.25vw, 1.28rem);
  line-height: 1.1;
}

.service-icon-card p {
  margin: 0;
  color: rgba(255, 255, 255, .72);
  font-size: .86rem;
  line-height: 1.45;
}

.service-icon-card__arrow {
  position: absolute;
  right: 1.2rem;
  top: 1.2rem;
  z-index: 4;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  color: var(--navy);
  background: var(--green);
  font-weight: 900;
  opacity: 0;
  transform: translate(10px, -10px);
  transition: opacity .3s ease, transform .3s ease;
}

.service-icon-card:hover .service-icon-card__arrow {
  opacity: 1;
  transform: translate(0, 0);
}

.service-gallery-section {
  background: var(--light);
}

.service-gallery-grid {
  display: grid;
  grid-template-columns: 1.35fr .65fr .65fr;
  grid-auto-rows: 260px;
  gap: 1rem;
}

.service-gallery-item {
  position: relative;
  overflow: hidden;
  padding: 0;
  border: 0;
  border-radius: 20px;
  background: var(--navy);
  cursor: pointer;
}

.service-gallery-item.featured {
  grid-row: span 2;
}

.service-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .9s cubic-bezier(.2, .8, .2, 1), opacity .3s ease;
}

.service-gallery-item::after {
  content: "View";
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  padding: .55rem .85rem;
  border: 1px solid rgba(255, 255, 255, .2);
  color: var(--white);
  background: rgba(8, 27, 58, .42);
  backdrop-filter: blur(10px);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .3s ease, transform .3s ease;
}

.service-gallery-item:hover img {
  transform: scale(1.08);
  opacity: .9;
}

.service-gallery-item:hover::after {
  opacity: 1;
  transform: translateY(0);
}

.service-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  padding: 2rem;
  background: rgba(8, 27, 58, .92);
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
}

.service-lightbox.open {
  opacity: 1;
  pointer-events: auto;
}

.service-lightbox img {
  max-width: min(1100px, 92vw);
  max-height: 86vh;
  border-radius: 18px;
  box-shadow: 0 40px 120px rgba(0, 0, 0, .45);
}

.service-lightbox button {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, .18);
  color: var(--white);
  background: rgba(255, 255, 255, .08);
  font-size: 1.6rem;
}

.service-why-section,
.service-cta-section {
  background: var(--navy);
}

.service-why-split {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.service-why-image {
  overflow: hidden;
  border-radius: 22px;
}

.service-why-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .9s cubic-bezier(.2, .8, .2, 1);
}

.service-why-image:hover img {
  transform: scale(1.06);
}

.service-why-section h2,
.service-why-section h3,
.service-cta-section h2 {
  color: var(--white);
}

.service-why-grid {
  grid-template-columns: repeat(2, 1fr);
  margin-top: 2rem;
}

.service-why-card {
  min-height: 65px;
  padding: 1.25rem;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .06);
  border-radius: 16px;
  transition: transform .3s ease, border-color .3s ease;
}

.service-why-card:hover {
  transform: translateY(-6px);
  border-color: rgba(155, 224, 0, .42);
}

.service-why-card span {
  display: block;
  margin-bottom: 2rem;
  color: var(--green);
  font-family: var(--head);
  font-size: 1.35rem;
  font-weight: 900;
}

.service-process-timeline {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  border-top: 1px solid var(--line);
}

.service-process-step {
  position: relative;
  min-height: 190px;
  padding: 1.4rem;
  border-right: 1px solid var(--line);
}

.service-process-step::before {
  content: "";
  position: absolute;
  top: -5px;
  left: 1.4rem;
  width: 10px;
  height: 10px;
  background: var(--green);
}

.service-process-step span {
  color: var(--orange);
  font-family: var(--head);
  font-size: 2rem;
  font-weight: 900;
}

.service-process-step h3 {
  margin-top: 4rem;
}

.service-showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 2vw, 1.5rem);
}

.service-showcase-card {
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 24px 70px rgba(8, 27, 58, .08);
  transition: transform .35s ease, box-shadow .35s ease;
}

.service-showcase-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 34px 90px rgba(8, 27, 58, .16);
}

.service-showcase-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform .8s cubic-bezier(.2, .8, .2, 1);
}

.service-showcase-card:hover img {
  transform: scale(1.07);
}

.service-showcase-card div {
  padding: 1.5rem;
}

.service-showcase-card span {
  color: var(--orange);
  font-size: .75rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.service-showcase-card p {
  margin: 1rem 0;
  color: var(--navy);
  font-weight: 800;
}

.service-showcase-card strong {
  display: block;
  margin-bottom: 1.2rem;
  color: var(--muted);
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.service-showcase-card a {
  color: var(--blue);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.service-cta-section {
  padding: clamp(5rem, 8vw, 9rem) 0;
}

.service-cta-inner {
  max-width: 1050px;
}

.service-cta-inner p {
  max-width: 700px;
  color: rgba(255, 255, 255, .72);
}

.service-stats {
  padding: clamp(4rem, 7vw, 7rem) 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, .14);
}

.stat-item {
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: 1.5rem;
  background: rgba(255, 255, 255, .05);
}

.stat-item strong {
  color: var(--green);
  font-family: var(--head);
  font-size: clamp(2.6rem, 4.7vw, 5.5rem);
  line-height: .9;
}

.stat-item span {
  color: rgba(255, 255, 255, .78);
  font-weight: 900;
  margin-top: 1rem;
}

/* ==========================================================
   11. PROJECTS SECTION
========================================================== */

/* project grid */
/* project cards */
/* project hover */
/* project filters */

.project-masonry {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1px;
  background: var(--line);
}

.project-block {
  position: relative;
  min-height: 560px;
  grid-column: span 4;
  padding: 1.8rem;
  display: flex;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
}

.project-block.wide {
  grid-column: span 8;
  min-height: 680px;
}

.project-block div {
  max-width: 620px;
}

.project-block .project-logo {
  position: relative;
  inset: auto;
  z-index: 2;
  width: min(260px, 70%);
  max-height: 98px;
  object-fit: contain;
  background: rgba(255, 255, 255, .92);
  padding: .65rem;
  margin-bottom: 1rem;
  transition: none;
}

.project-block:hover .project-logo {
  transform: none;
}

.featured-projects-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 86% 18%, rgba(155, 224, 0, .12), transparent 28%),
    linear-gradient(rgba(1, 33, 73, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(1, 33, 73, .035) 1px, transparent 1px),
    #F8FAFC;
  background-size: auto, 58px 58px, 58px 58px, auto;
}

.featured-projects-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1.4rem;
  margin-bottom: clamp(1.4rem, 2.6vw, 2.5rem);
}

.featured-projects-head h2 {
  max-width: 920px;
  color: var(--navy);
  font-size: clamp(2.4rem, 4vw, 4.7rem);
  line-height: .92;
  letter-spacing: -0.055em;
}

.featured-projects-head p {
  max-width: 760px;
  margin-top: .9rem;
  color: var(--muted);
  font-size: clamp(.94rem, 1.05vw, 1.05rem);
}

.featured-projects-head__line {
  display: block;
  width: 120px;
  height: 3px;
  margin-top: 1.3rem;
  background: linear-gradient(90deg, var(--orange), var(--green));
  transform-origin: left;
  animation: featuredLine 3s ease-in-out infinite;
}

.featured-project-controls {
  display: flex;
  gap: .55rem;
}

.featured-project-controls button {
  width: 46px;
  height: 46px;
  border: 1px solid rgba(1, 33, 73, .10);
  border-radius: 50%;
  color: var(--navy);
  background: var(--white);
  box-shadow: 0 18px 50px rgba(1, 33, 73, .08);
  font-weight: 900;
  transition: transform .3s ease, border-color .3s ease, color .3s ease;
}

.featured-project-controls button:hover {
  transform: translateY(-4px);
  border-color: rgba(155, 224, 0, .55);
  color: var(--green);
}

.featured-project-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 760px;
  margin-bottom: clamp(1.3rem, 2.5vw, 2.2rem);
  overflow: hidden;
  border: 1px solid rgba(1, 33, 73, .08);
  border-radius: 18px;
  background: rgba(255, 255, 255, .72);
  backdrop-filter: blur(14px);
  box-shadow: 0 20px 70px rgba(1, 33, 73, .06);
}

.featured-project-stats div {
  min-height: 96px;
  padding: 1rem 1.15rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid rgba(1, 33, 73, .08);
}

.featured-project-stats div:last-child {
  border-right: 0;
}

.featured-project-stats strong {
  color: var(--navy);
  font-family: var(--head);
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: .9;
}

.featured-project-stats span {
  margin-top: .5rem;
  color: var(--muted);
  font-size: .66rem;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.featured-project-slider {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: min(980px, 84vw);
  gap: clamp(.8rem, 1.4vw, 1.15rem);
  overflow-x: auto;
  overflow-y: hidden;
  padding: .35rem max(var(--space-site-x), calc((100vw - 1480px) / 2)) 1.1rem 0;
  margin-right: calc(var(--space-site-x) * -1);
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.featured-project-slider::-webkit-scrollbar {
  display: none;
}

.featured-project-slide {
  display: grid;
  grid-template-columns: minmax(0, 2.2fr) minmax(280px, .82fr);
  min-height: clamp(450px, 36vw, 500px);
  overflow: hidden;
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 25px 80px rgba(1, 33, 73, .08);
  scroll-snap-align: start;
}

.featured-project-slide__media {
  position: relative;
  display: block;
  overflow: hidden;
  background: var(--navy);
}

.featured-project-slide__media > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 1s cubic-bezier(.2, .8, .2, 1), filter .45s ease;
}

.featured-project-slide__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(1, 33, 73, .12), transparent 46%),
    linear-gradient(180deg, transparent 48%, rgba(1, 33, 73, .58));
  opacity: .72;
  transition: opacity .35s ease;
}

.featured-project-slide:hover .featured-project-slide__media > img {
  transform: scale(1.10);
  filter: saturate(1.06) contrast(1.04);
}

.featured-project-slide:hover .featured-project-slide__overlay {
  opacity: 1;
}

.featured-project-logo {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  z-index: 2;
  width: min(170px, 38%);
  min-height: 74px;
  padding: .75rem;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .26);
  border-radius: 16px;
  background: rgba(255, 255, 255, .15);
  backdrop-filter: blur(20px);
  box-shadow: 0 18px 60px rgba(1, 33, 73, .20);
}

.featured-project-logo img {
  max-width: 100%;
  max-height: 54px;
  object-fit: contain;
}

.featured-project-slide__info {
  position: relative;
  padding: clamp(1.15rem, 2vw, 2rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

.featured-project-slide__info::before {
  content: "";
  position: absolute;
  right: -80px;
  top: -80px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(155, 224, 0, .18), transparent 64%);
}

.featured-project-badges {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  margin-bottom: 1.15rem;
}

.featured-project-badges span {
  padding: .42rem .58rem;
  border: 1px solid rgba(1, 33, 73, .08);
  border-radius: 999px;
  color: var(--navy);
  background: #F8FAFC;
  font-size: .58rem;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.featured-project-badges span:last-child {
  border-color: rgba(155, 224, 0, .4);
  color: var(--navy);
  background: rgba(155, 224, 0, .16);
}

.featured-project-slide__eyebrow {
  position: relative;
  z-index: 1;
  margin-bottom: .45rem;
  color: var(--orange);
  font-size: .62rem;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.featured-project-slide__info h3 {
  position: relative;
  z-index: 1;
  margin-bottom: 1.25rem;
  color: var(--navy);
  font-size: clamp(1.75rem, 2.25vw, 2.8rem);
  line-height: .95;
  letter-spacing: -0.045em;
  transition: transform .35s ease;
}

.featured-project-slide:hover .featured-project-slide__info h3 {
  transform: translateY(-5px);
}

.featured-project-slide__info dl {
  position: relative;
  z-index: 1;
  display: grid;
  gap: .55rem;
  margin: 0;
}

.featured-project-slide__info dl div {
  padding-bottom: .55rem;
  border-bottom: 1px solid rgba(1, 33, 73, .08);
}

.featured-project-slide__info dt {
  color: var(--muted);
  font-size: .58rem;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.featured-project-slide__info dd {
  margin: .25rem 0 0;
  color: var(--navy);
  font-weight: 850;
  font-size: .86rem;
}

.featured-project-slide__info dd span {
  display: inline-flex;
  margin-right: .42rem;
  color: var(--navy);
}

.featured-project-cta {
  position: relative;
  z-index: 1;
  width: fit-content;
  margin-top: 1.2rem;
  color: var(--navy);
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  transform: translateX(-12px);
  opacity: .72;
  transition: transform .35s ease, opacity .35s ease, color .35s ease;
}

.featured-project-slide:hover .featured-project-cta {
  transform: translateX(0);
  opacity: 1;
  color: var(--green);
}

@keyframes featuredLine {
  0%,
  100% {
    transform: scaleX(.48);
  }

  50% {
    transform: scaleX(1);
  }
}

.project-filters {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  margin-bottom: 2rem;
}

.project-filters button {
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--blue);
  padding: .8rem 1.05rem;
  font-weight: 900;
  text-transform: uppercase;
  font-size: .76rem;
  letter-spacing: .08em;
}

.project-filters button.active,
.project-filters button:hover {
  background: var(--blue);
  color: var(--white);
}

.project-list {
  border-top: 1px solid var(--line);
}

.project-row {
  display: grid;
  grid-template-columns: 220px 1fr 150px;
  gap: 1rem;
  align-items: center;
  min-height: 92px;
  border-bottom: 1px solid var(--line);
  transition: background .25s ease, padding .25s ease;
}

.project-row:hover {
  background: var(--light);
  padding-left: 1rem;
}

.project-row span {
  color: var(--orange);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.project-row strong {
  color: var(--navy);
  font-family: var(--head);
  font-size: clamp(1.4rem, 2.5vw, 2.8rem);
  line-height: 1.05;
  display: flex;
  align-items: center;
  gap: 1.1rem;
}

.project-row strong img {
  width: 120px;
  height: 58px;
  object-fit: contain;
  background: var(--white);
  border: 1px solid var(--line);
  padding: .4rem;
  flex: 0 0 auto;
}

.project-row em {
  justify-self: end;
  color: var(--blue);
  font-style: normal;
  font-weight: 700;
}

.industry-showcase-section {
  overflow: hidden;
  background: var(--white);
  padding: 60px 0;
}

.industry-showcase {
  display: grid;
  grid-template-columns: minmax(280px, .45fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: stretch;
}

.industry-showcase__intro {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 680px;
  padding-top: 2rem;
}

.industry-showcase__intro h2 {
  max-width: 520px;
  color: var(--navy);
  font-size: clamp(2rem, 4vw, 5rem);
  line-height: .9;
  letter-spacing: -0.055em;
}

.industry-showcase__intro p {
  max-width: 430px;
  margin-top: 1.4rem;
  color: var(--muted);
  font-size: clamp(0.9rem, 1vw, 1rem);
}

.industry-showcase__counter {
  margin-top: 1rem;
  display: flex;
  align-items: end;
  gap: .6rem;
}

.industry-showcase__counter strong {
  color: var(--navy);
  font-family: var(--head);
  font-size: clamp(3.5rem, 7vw, 8rem);
  line-height: .82;
  letter-spacing: -0.08em;
}

.industry-showcase__counter span {
  padding-bottom: .65rem;
  color: var(--muted);
  font-weight: 900;
  letter-spacing: .12em;
}

.industry-showcase__progress {
  width: min(300px, 100%);
  height: 3px;
  margin-top: 1.4rem;
  overflow: hidden;
  background: rgba(1, 33, 73, .10);
}

.industry-showcase__progress span {
  display: block;
  width: 16.666%;
  height: 100%;
  background: linear-gradient(90deg, var(--orange), var(--green));
  transition: width .6s cubic-bezier(.2, .8, .2, 1);
}

.industry-showcase__stage {
  position: relative;
  height: 550px; 
  min-height: 550px;
  border-radius: 24px;
  overflow: hidden;
  background: var(--navy);
  isolation: isolate;
}

.industry-showcase__images {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.industry-showcase__images img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.06);
  transition: opacity .6s ease, transform 1s cubic-bezier(.2, .8, .2, 1);
}

.industry-showcase__images img.active {
  opacity: 1;
  transform: scale(1);
}

.industry-showcase__shade {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(1, 33, 73, 0.422), rgba(1, 33, 73, 0.323) 46%, rgba(1, 33, 73, .18)),
    linear-gradient(180deg, rgba(1, 33, 73, .12), rgba(1, 33, 73, 0.421));
}

.industry-showcase__content {
  position: absolute;
  left: clamp(1.4rem, 4vw, 4rem);
  bottom: clamp(2rem, 5vw, 5rem);
  max-width: min(760px, 72%);
  color: var(--white);
}

.industry-showcase__content span {
  display: block;
  margin-bottom: 1rem;
  color: var(--green);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.industry-showcase__content h3 {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: .85;
  letter-spacing: -0.04em;
  transition: transform .5s ease, opacity .5s ease;
}

.industry-showcase__content p {
  max-width: 560px;
  margin-top: 1.2rem;
  color: rgba(255, 255, 255, .76);
  font-size: clamp(0.9rem, 1vw, 1rem);
}

.industry-showcase__content.switching h3,
.industry-showcase__content.switching p,
.industry-showcase__content.switching span {
  opacity: 0;
  transform: translateY(18px);
}

.industry-showcase__list {
  position: absolute;
  top: clamp(1.4rem, 3vw, 3rem);
  right: clamp(1.2rem, 3vw, 3rem);
  z-index: 2;
  width: min(320px, 36%);
  display: grid;
  gap: .35rem;
}

.industry-showcase__list button {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: .9rem 0;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, .18);
  color: rgba(255, 255, 255, .66);
  background: transparent;
  font-family: var(--head);
  font-size: clamp(1rem, 1.25vw, 1.35rem);
  font-weight: 700;
  text-align: left;
  transition: color .3s ease, padding .3s ease;
}

.industry-showcase__list button span {
  color: rgba(255, 255, 255, .36);
  font-size: .72rem;
  letter-spacing: .12em;
}

.industry-showcase__list button.active,
.industry-showcase__list button:hover {
  padding-left: .75rem;
  color: var(--white);
}

.industry-showcase__list button.active span,
.industry-showcase__list button:hover span {
  color: var(--green);
}

/* ==========================================================
   12. PROJECT DETAIL PAGE
========================================================== */

/* project hero */
/* project gallery */
/* project information */

.detail-project-logo img { max-width: 300px; max-height: 150px; padding: 1rem; border: 1px solid var(--line); background: var(--white); object-fit: contain; }

.gallery-strip {
  display: grid;
  grid-template-columns: 1.4fr .8fr 1fr;
  gap: 1px;
  background: var(--line);
}

.gallery-strip img {
  width: 100%;
  height: 560px;
  object-fit: cover;
}

.gallery-strip img:nth-child(2) {
  height: 420px;
  align-self: end;
}

/* ==========================================================
   13. CLIENTS SECTION
========================================================== */

/* logo wall */
/* original color logo wall */
/* hover animation */

.logo-marquee {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-bottom: 2rem;
}

.logo-marquee div {
  display: flex;
  width: max-content;
  animation: marquee 28s linear infinite;
}

.logo-marquee span {
  padding: 1.4rem 2.3rem;
  font-family: var(--head);
  font-weight: 800;
  color: var(--blue);
  white-space: nowrap;
}

.logo-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
  background: transparent;
}

.client-logo {
  min-height: 160px;
  padding: 40px;
  display: grid;
  place-items: center;
  border: 1px solid #EAEAEA;
  border-radius: 16px;
  background: #FFFFFF;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(1, 33, 73, 0);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.client-logo img {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 190px;
  max-height: 70px;
  object-fit: contain;
  transform: scale(1);
  filter: none;
  opacity: 1;
  transition: transform .3s ease;
}

.client-logo:hover {
  transform: translateY(-5px);
  border-color: #A4D233;
  background: #FFFFFF;
  box-shadow: 0 18px 46px rgba(1, 33, 73, .10);
}

.client-logo:hover img {
  transform: scale(1.05);
}

/* ==========================================================
   14. QUALITY POLICY SECTION
========================================================== */

/* quality objectives */
/* policy cards */
/* policy layout */

.process-line {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 1.5rem;
  align-items: center;
  padding: 2rem 0;
  border-bottom: 1px solid var(--line);
}

.deliverable-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
}

.deliverable {
  background: var(--light);
  padding: 2rem;
  color: var(--blue);
  font-family: var(--head);
  font-size: 1.25rem;
  font-weight: 800;
  min-height: 150px;
  display: flex;
  align-items: end;
}

.quality-showcase {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(rgba(1, 33, 73, .03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(1, 33, 73, .03) 1px, transparent 1px),
    #F8FAFC;
  background-size: 56px 56px, 56px 56px, auto;
  padding-top: clamp(3.8rem, 5vw, 5.4rem);
  padding-bottom: clamp(3.8rem, 5vw, 5.4rem);
}

.quality-showcase::before {
  content: "";
  position: absolute;
  right: -90px;
  top: 12%;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(164, 210, 51, .12), transparent 65%);
  pointer-events: none;
}

.quality-showcase .container-fluid {
  position: relative;
  z-index: 1;
}

.quality-showcase__head {
  max-width: 700px;
  margin-bottom: clamp(1.35rem, 2vw, 1.9rem);
}

.quality-showcase__head h2 {
  max-width: 700px;
  color: var(--navy);
  font-size: clamp(2.15rem, 3.2vw, 4.2rem);
  line-height: .98;
  letter-spacing: -0.045em;
}

.quality-showcase__head p {
  max-width: 660px;
  margin-top: .85rem;
  color: var(--muted);
  font-size: clamp(1rem, 1.1vw, 1.1rem);
}

.quality-stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  max-width: 820px;
  margin-bottom: clamp(1.25rem, 2vw, 1.75rem);
}

.quality-stat-row div {
  min-height: 104px;
  padding: 1.05rem 1.25rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 1px solid rgba(1, 33, 73, .08);
  border-radius: 20px;
  background: var(--white);
  box-shadow: 0 12px 36px rgba(1, 33, 73, .07);
}

.quality-stat-row strong {
  color: var(--navy);
  font-family: var(--head);
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: .9;
}

.quality-stat-row span {
  margin-top: .55rem;
  color: var(--muted);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.quality-pillar-track {
  width: 100%;
  overflow: hidden;
  padding: .4rem 0 1rem;
}

.quality-pillar {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 320px;
  height: 220px;
  min-height: 220px;
  overflow: hidden;
  padding: 1.3rem;
  border: 1px solid rgba(0, 0, 0, .06);
  border-radius: 24px;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(12px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, .08);
  transition: transform .35s cubic-bezier(.2, .8, .2, 1), box-shadow .35s ease, border-color .35s ease;
}

.quality-pillar::before {
  content: "";
  position: absolute;
  left: 1.3rem;
  right: 1.3rem;
  top: 0;
  height: 3px;
  background: linear-gradient(90deg, #A4D233, #FF5E14);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s ease;
}

.quality-pillar:hover {
  transform: translateY(-10px);
  border-color: rgba(164, 210, 51, .34);
  box-shadow: 0 22px 58px rgba(1, 33, 73, .13);
}

.quality-pillar:hover::before {
  transform: scaleX(1);
}

.quality-pillar__top {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 1rem;
}

.quality-pillar__top span {
  color: #FF5E14;
  font-family: var(--head);
  font-size: .92rem;
  font-weight: 900;
  letter-spacing: .12em;
}

.quality-pillar__top i {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(1, 33, 73, .08);
  border-radius: 50%;
  color: #A4D233;
  background: #F8FAFC;
  transition: transform .35s ease, color .35s ease, background .35s ease;
}

.quality-pillar:hover .quality-pillar__top i {
  transform: rotate(-10deg) scale(1.05);
  color: #071A35;
  background: rgba(164, 210, 51, .18);
}

.quality-pillar h3 {
  max-width: 230px;
  color: #071A35;
  font-size: 24px;
  line-height: 1.08;
  letter-spacing: -0.035em;
  transition: transform .45s ease, color .45s ease;
}

.quality-pillar:hover h3 {
  color: #071A35;
}

.quality-pillar p {
  max-width: 255px;
  margin: .65rem 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.42;
}

.quality-pillar__arrow {
  position: absolute;
  right: 1.3rem;
  bottom: 1.2rem;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 999px;
  color: #071A35;
  background: var(--white);
  border: 1px solid rgba(1, 33, 73, .10);
  font-weight: 900;
  transition: transform .35s ease, background .35s ease, color .35s ease, border-color .35s ease;
}

.quality-pillar:hover .quality-pillar__arrow {
  transform: translateX(6px);
  background: #A4D233;
  color: #071A35;
  border-color: #A4D233;
}

.quality-slider-controls {
  display: grid;
  grid-template-columns: auto minmax(160px, 280px) auto;
  align-items: center;
  gap: .9rem;
  width: fit-content;
  margin: .7rem auto 0;
}

.quality-slider-controls button {
  width: 46px;
  height: 46px;
  border: 1px solid rgba(1, 33, 73, .10);
  border-radius: 50%;
  color: var(--navy);
  background: rgba(255, 255, 255, .88);
  backdrop-filter: blur(18px);
  font-size: .9rem;
  font-weight: 900;
  transition: transform .3s ease, border-color .3s ease, color .3s ease;
}

.quality-slider-controls button:hover {
  transform: translateY(-4px);
  border-color: rgba(164, 225, 0, .55);
  color: #A4E100;
}

.quality-slider-progress {
  height: 3px;
  overflow: hidden;
  background: rgba(1, 33, 73, .10);
}

.quality-slider-progress span {
  display: block;
  width: 10%;
  height: 100%;
  background: linear-gradient(90deg, #A4D233, #FF5E14);
  transform-origin: left;
}

/* ==========================================================
   15. VISION MISSION VALUES
========================================================== */

/* vision block */
/* mission block */
/* values block */

.value-track {
  display: grid;
  grid-template-columns: repeat(6, minmax(240px, 1fr));
  gap: 1px;
  background: var(--line);
  overflow-x: auto;
}

.value-slab {
  min-height: 290px;
  padding: 1.4rem;
  background: var(--light);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.value-slab span,
.process-line span {
  color: var(--orange);
  font-family: var(--head);
  font-size: 2rem;
  font-weight: 800;
}

.mission-vision-section {
  background: var(--light);
}

.mission-vision-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
}

.mission-card {
  min-height: 360px;
  padding: clamp(2rem, 4vw, 4rem);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--white);
}

.mission-card h3 {
  max-width: 720px;
  font-size: clamp(1.8rem, 2.8vw, 3.4rem);
  line-height: 1.05;
}

/* ==========================================================
   16. EHS SECTION
========================================================== */

/* safety section */
/* statistics */
/* certifications */

.safety-band {
  min-height: 84vh;
  display: flex;
  align-items: center;
  position: relative;
  background: var(--bg) center/cover fixed;
  isolation: isolate;
}

.safety-content {
  max-width: 820px;
}

.safety-content h2 {
  color: var(--white);
}

.safety-content p {
  color: rgba(255, 255, 255, .78);
}

/* ==========================================================
   17. COUNTERS
========================================================== */

/* counter animation */
/* stats section */

.section-dark {
  background: var(--navy);
  color: var(--white);
}

.section-dark h2,
.section-dark h3 {
  color: var(--white);
}

.section-dark p {
  color: rgba(255, 255, 255, .70);
}

.numbers-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, .14);
}

.number-item {
  min-height: 220px;
  background: rgba(255, 255, 255, .05);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: end;
}

.number-item strong {
  color: var(--green);
  font-family: var(--head);
  font-size: clamp(3rem, 5vw, 6rem);
  line-height: .9;
}

.number-item span {
  color: rgba(255, 255, 255, .78);
  font-weight: 800;
  margin-top: .8rem;
}

.strengths-showcase {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 18%, rgba(155, 224, 0, .16), transparent 26%),
    radial-gradient(circle at 16% 84%, rgba(255, 90, 31, .08), transparent 24%),
    linear-gradient(rgba(1, 33, 73, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(1, 33, 73, .035) 1px, transparent 1px),
    var(--white);
  background-size: auto, auto, 58px 58px, 58px 58px, auto;
}

.strengths-showcase::before {
  content: "";
  position: absolute;
  right: 9%;
  top: 16%;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(155, 224, 0, .16), transparent 62%);
  animation: strengthsGlow 7s ease-in-out infinite alternate;
  pointer-events: none;
}

.strengths-showcase::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(620px, 42vw);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(1, 33, 73, .18), rgba(155, 224, 0, .7), transparent);
  transform: translate(-12%, -50%);
  pointer-events: none;
}

.strengths-showcase .container-fluid {
  position: relative;
  z-index: 1;
}

.strengths-showcase__grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: clamp(2rem, 5vw, 6rem);
  align-items: center;
}

.strengths-showcase__intro {
  position: sticky;
  top: 120px;
  padding-top: .5rem;
}

.strengths-showcase__intro h2 {
  max-width: 520px;
  color: var(--navy);
  font-size: clamp(1.8rem, 3vw, 3.5rem);
  line-height: 1.05;
  letter-spacing: -0.055em;
}

.strengths-showcase__intro p {
  max-width: 460px;
  margin-top: 1.4rem;
  color: var(--muted);
  font-size: clamp(1rem, 1.2vw, 1.18rem);
}

.strengths-showcase__line {
  display: block;
  width: 140px;
  height: 3px;
  margin-top: 2.3rem;
  background: linear-gradient(90deg, var(--orange), var(--green));
  transform-origin: left;
  animation: strengthsLine 2.8s ease-in-out infinite;
}

.strengths-accordion {
  position: relative;
  display: grid;
  gap: .75rem;
}

.strengths-accordion::before {
  content: "";
  position: relative;
  display: block;
  height: 2px;
  margin: 0 1.5rem .75rem;
  background: linear-gradient(90deg, rgba(1, 33, 73, .10), var(--green), rgba(1, 33, 73, .10));
}

.strength-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(1, 33, 73, .08);
  border-radius: 24px;
  background: var(--white);
  box-shadow: 0 20px 60px rgba(1, 33, 73, .08);
  transition: box-shadow .45s ease, border-color .45s ease, transform .45s ease;
}

.strength-panel::before {
  content: "";
  position: absolute;
  right: 4%;
  top: 50%;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(155, 224, 0, .22), transparent 66%);
  opacity: 0;
  transform: translateY(-50%) scale(.74);
  transition: opacity .45s ease, transform .45s ease;
  pointer-events: none;
}

.strength-panel::after {
  content: "";
  position: absolute;
  left: 32px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 9px rgba(155, 224, 0, .12);
  transform: translateY(-50%);
  transition: transform .45s ease, box-shadow .45s ease;
}

.strength-panel.active,
.strength-panel:hover {
  transform: translateY(-4px);
  border-color: rgba(155, 224, 0, .38);
  box-shadow: 0 28px 80px rgba(1, 33, 73, .12);
}

.strength-panel.active::before,
.strength-panel:hover::before {
  opacity: 1;
  transform: translateY(-50%) scale(1);
}

.strength-panel.active::after,
.strength-panel:hover::after {
  transform: translateY(-50%) scale(1.18);
  box-shadow: 0 0 0 13px rgba(155, 224, 0, .16);
}

.strength-panel button {
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: 78px;
  padding: 1.2rem 1.5rem 1.2rem 4rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  border: 0;
  color: var(--navy);
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.strength-panel button span {
  color: rgba(1, 33, 73, .42);
  font-family: var(--head);
  font-size: 1.05rem;
  font-weight: 900;
  transition: color .35s ease;
}

.strength-panel button strong {
  flex: 1;
  color: var(--navy);
  font-family: var(--head);
  font-size: clamp(1.25rem, 1.6vw, 1.65rem);
  line-height: 1.05;
}

.strength-panel button i {
  color: var(--green);
  font-size: 1.15rem;
  transition: transform .35s ease, color .35s ease;
}

.strength-panel.active button span,
.strength-panel:hover button span {
  color: var(--green);
}

.strength-panel.active button i,
.strength-panel:hover button i {
  transform: rotate(-8deg) scale(1.08);
  color: var(--navy);
}

.strength-panel__content {
  position: relative;
  z-index: 1;
  max-height: 0;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.2rem;
  padding: 0 1.5rem 0 4rem;
  opacity: 0;
  transition: max-height .6s cubic-bezier(.2, .8, .2, 1), padding .6s cubic-bezier(.2, .8, .2, 1), opacity .35s ease;
}

.strength-panel.active .strength-panel__content {
  max-height: 280px;
  padding-bottom: 1.5rem;
  opacity: 1;
}

.strength-panel__icon {
  display: grid;
  width: 76px;
  height: 76px;
  place-items: center;
  border-radius: 22px;
  color: var(--navy);
  background: linear-gradient(135deg, rgba(155, 224, 0, .24), rgba(155, 224, 0, .08));
  font-size: 1.7rem;
  transition: transform .45s ease;
}

.strength-panel.active .strength-panel__icon {
  transform: translateY(-4px) rotate(-4deg);
}

.strength-panel__content h3 {
  margin-bottom: .8rem;
  color: var(--navy);
  font-size: clamp(1.6rem, 2vw, 2.3rem);
}

.strength-panel__content ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .75rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.strength-panel__content li {
  min-height: 82px;
  padding: .9rem;
  display: flex;
  align-items: end;
  border: 1px solid rgba(1, 33, 73, .07);
  border-radius: 16px;
  color: var(--navy);
  background: rgba(247, 249, 252, .78);
  font-weight: 800;
  line-height: 1.25;
}

.strength-panel__line {
  grid-column: 1 / -1;
  width: 0;
  height: 2px;
  margin-top: .4rem;
  background: linear-gradient(90deg, var(--green), transparent);
  transition: width .7s ease;
}

.strength-panel.active .strength-panel__line {
  width: 100%;
}

@keyframes strengthsGlow {
  from {
    opacity: .45;
    transform: translate3d(-2%, -1%, 0) scale(.96);
  }

  to {
    opacity: .9;
    transform: translate3d(2%, 1%, 0) scale(1.04);
  }
}

.strengths-showcase {
  background:
    radial-gradient(circle at 8% 22%, rgba(255, 107, 0, .08), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  background-size: auto;
}

.strengths-showcase::before {
  left: 0;
  top: 16%;
  width: 18vw;
  height: 1px;
  border-radius: 0;
  background: linear-gradient(90deg, rgba(255, 107, 0, .55), transparent);
  animation: none;
}

.strengths-showcase::after {
  display: none;
}

.strengths-showcase__grid {
  grid-template-columns: minmax(0, .4fr) minmax(0, .6fr);
  gap: clamp(2.5rem, 6vw, 7rem);
  align-items: start;
}

.strengths-showcase__intro {
  padding-top: 1.25rem;
}

.strengths-showcase__intro h2 {
  color: #071A35;
  font-size: clamp(2.2rem, 3.6vw, 4.2rem);
  line-height: 1.05;
}

.strengths-showcase__intro p {
  color: #5E6B7C;
}

.strengths-showcase__line {
  width: 140px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(135deg, #FF6B00 0%, #FF9D2E 100%);
}

.strengths-showcase__cta {
  margin-top: 2.2rem;
}

.strengths-feature-list {
  position: relative;
  width: 100%;
  padding-top: .35rem;
}

.strength-feature-row {
  position: relative;
  display: grid;
  grid-template-columns: 140px minmax(0, 1fr);
  gap: clamp(1.25rem, 3vw, 3rem);
  align-items: center;
  min-height: 136px;
  padding: 1.35rem 0;
  border-top: 1px solid rgba(7, 26, 53, .12);
  overflow: hidden;
}

.strength-feature-row:last-child {
  border-bottom: 1px solid rgba(7, 26, 53, .12);
}

.strength-feature-row__number {
  color: transparent;
  font-family: var(--head);
  font-size: clamp(2.5rem, 4vw, 4.5rem);
  font-weight: 700;
  line-height: .85;
  letter-spacing: -.08em;
  -webkit-text-stroke: 1px rgba(255, 107, 0, .65);
  background: linear-gradient(135deg, #FF6B00 0%, #FF9D2E 100%);
  background-clip: text;
  -webkit-background-clip: text;
  opacity: .86;
  transition: transform .45s ease, opacity .45s ease;
}

.strength-feature-row__body {
  position: relative;
  z-index: 1;
}

.strength-feature-row h3 {
  display: flex;
  align-items: center;
  gap: .85rem;
  margin-bottom: .45rem;
  color: #071A35;
  font-size: clamp(1.45rem, 2vw, 2.15rem);
  line-height: 1.08;
  transition: transform .45s ease;
}

.strength-feature-row h3 i {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: #FF6B00;
  border-radius: 50%;
  background: rgba(255, 107, 0, .10);
  font-size: .92rem;
  transition: transform .45s ease, background .45s ease;
}

.strength-feature-row p {
  max-width: 540px;
  margin: 0;
  color: #5E6B7C;
  font-size: clamp(.98rem, 1.05vw, 1.12rem);
  line-height: 1.65;
}

.strength-feature-row__line {
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 0;
  height: 2px;
  background: linear-gradient(135deg, #FF6B00 0%, #FF9D2E 100%);
  transition: width .55s ease;
}

.strength-feature-row:hover .strength-feature-row__number {
  transform: scale(1.06);
  opacity: 1;
}

.strength-feature-row:hover h3 {
  transform: translateX(8px);
}

.strength-feature-row:hover h3 i {
  transform: rotate(-8deg) scale(1.08);
  background: rgba(255, 107, 0, .16);
}

.strength-feature-row:hover .strength-feature-row__line {
  width: 100%;
}

.about-numbers-section {
  padding: clamp(4rem, 7vw, 7rem) 0;
}

.about-number-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, .12);
}

.about-number-item {
  min-height: 240px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: end;
  background: rgba(255, 255, 255, .04);
}

.about-number-item strong {
  color: var(--green);
  font-family: var(--head);
  font-size: clamp(3rem, 5vw, 6rem);
  line-height: .9;
}

.about-number-item span {
  margin-top: 1rem;
  color: rgba(255, 255, 255, .78);
  font-weight: 900;
}

/* ==========================================================
   18. TESTIMONIALS
========================================================== */

/* testimonial layout */
/* quote design */

.testimonial-section { display: none; }

.testimonial-section blockquote { margin: 0; }

/* ==========================================================
   19. CONTACT SECTION
========================================================== */

/* contact form */
/* contact cards */
/* map */

.contact-experience {
  background: var(--light);
}

.premium-form {
  background: var(--white);
  padding: clamp(1.4rem, 3vw, 3rem);
  border-left: 6px solid var(--orange);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
  margin-bottom: 1.4rem;
}

.premium-form label {
  display: block;
  color: var(--blue);
  font-weight: 900;
}

.premium-form input,
.premium-form select,
.premium-form textarea {
  width: 100%;
  margin-top: .5rem;
  min-height: 58px;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: var(--light);
  padding: .9rem 1rem;
  color: var(--text);
}

.premium-form textarea {
  min-height: 160px;
  resize: vertical;
}

.premium-form .full {
  grid-column: 1 / -1;
}

.hp-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
}

.contact-stack {
  background: var(--navy);
  color: var(--white);
  padding: 2rem;
  min-height: 100%;
}

.contact-stack img {
  max-width: 260px;
  max-height: 120px;
  object-fit: contain;
  margin-bottom: 2rem;
}

.contact-stack p,
.contact-stack a {
  color: rgba(255, 255, 255, .82);
  display: block;
  margin-bottom: 1.3rem;
}

.contact-stack .whatsapp {
  color: var(--green);
  font-weight: 900;
  font-size: 1.3rem;
}

.map-wrap {
  margin-top: 3rem;
}

.map-wrap iframe {
  width: 100%;
  height: 460px;
  border: 0;
  filter: grayscale(.25);
}

/* ==========================================================
   20. FOOTER
========================================================== */

/* footer layout */
/* footer logo */
/* footer navigation */

.footer {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #071A35 0%, #051225 100%);
  color: #AEB8C5;
  padding: 80px 0 60px;
}

.footer .container-fluid {
  position: relative;
  z-index: 1;
  max-width: 1400px;
}

.tagline {
  color: #A4D233;
  font-weight: 900;
  margin: .85rem 0 0;
  letter-spacing: .03em;
}

.footer-company h3 {
  color: var(--white);
  max-width: 420px;
  font-size: clamp(1.35rem, 2vw, 2rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(180px, .55fr) minmax(0, .95fr) minmax(220px, .55fr);
  gap: clamp(2rem, 4vw, 4.5rem);
  align-items: start;
  padding-bottom: 2.4rem;
}

.footer-company__type {
  color: var(--white);
  font-family: var(--head);
  font-size: .82rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.footer-company p:not(.tagline):not(.footer-company__type) {
  margin-top: 1rem;
  max-width: 540px;
  color: #AEB8C5;
  font-size: 1rem;
  line-height: 1.7;
}

.footer h4 {
  color: var(--white);
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .18em;
  margin-bottom: 1.2rem;
}

.footer-links {
  padding: 0;
}

.footer a,
.footer address {
  display: block;
  color: #AEB8C5;
  margin: .68rem 0;
  font-style: normal;
}

.footer-links a {
  width: fit-content;
  transition: transform .3s ease, color .3s ease;
}

.footer-links a:hover {
  color: #FF5E14;
  transform: translateX(5px);
}

.footer-contact-card a,
.footer-contact-card address {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: .7rem;
  align-items: start;
  font-size: .92rem;
  line-height: 1.55;
}

.footer-contact-card i {
  color: #A4D233;
  margin-top: .25rem;
  transition: color .3s ease;
}

.footer-contact-card a:hover,
.footer-contact-card address:hover {
  color: var(--white);
}

.footer-contact-card a:hover i,
.footer-contact-card address:hover i {
  color: #FF5E14;
}

.footer-map-card {
  padding: 15px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 20px;
  background: rgba(255, 255, 255, .04);
}

.footer-map-card p {
  margin: -.55rem 0 1rem;
  color: #AEB8C5;
  font-size: .92rem;
  line-height: 1.5;
}

.footer-map-card strong {
  color: var(--white);
  font-weight: 800;
}

.footer-map-card iframe {
  display: block;
  width: 100%;
  height: 260px;
}

.socials {
  display: flex;
  gap: .7rem;
}

.socials a {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin: 0;
  color: var(--white);
  background: transparent;
  transition: transform .3s ease, color .3s ease, border-color .3s ease;
}

.socials a:hover {
  transform: scale(1.1);
  color: #FF5E14;
  border-color: #FF5E14;
  background: transparent;
}

.copyright {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
  border-top: 1px solid rgba(255, 255, 255, .12);
  padding-top: 1.5rem;
  font-size: .88rem;
}

.copyright strong {
  color: #A4D233;
  font-family: var(--head);
  letter-spacing: .06em;
  text-transform: uppercase;
}

.copyright .socials {
  justify-content: end;
}

/* ==========================================================
   21. GSAP ANIMATIONS
========================================================== */

/* reveal animations */
/* parallax */
/* scroll effects */

.reveal {
  opacity: 0;
  transform: translateY(36px);
}

.split {
  visibility: hidden;
}

@keyframes scrollPulse {

  0%,
  100% {
    transform: scaleY(.45);
    transform-origin: top;
  }

  50% {
    transform: scaleY(1);
  }
}

@keyframes spinnerRotate {
  to {
    transform: rotate(360deg);
  }
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* ==========================================================
   22. UTILITIES
========================================================== */

/* spacing helpers */
/* visibility helpers */

.cta-panel {
  padding: clamp(4rem, 8vw, 8rem) 0;
  background: var(--light);
}

.cta-inner {
  position: relative;
  isolation: isolate;
  max-width: 1400px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 32px;
  background:
    radial-gradient(circle at 76% 20%, rgba(164, 210, 51, .18), transparent 28%),
    radial-gradient(circle at 14% 90%, rgba(255, 94, 20, .14), transparent 30%),
    linear-gradient(135deg, #071A35 0%, #081B3A 58%, #06142d 100%);
  color: var(--white);
  padding: clamp(2.5rem, 5vw, 5rem);
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .15);
}

.cta-inner::before,
.cta-inner::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}

.cta-inner::before {
  background:
    linear-gradient(rgba(255, 255, 255, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .045) 1px, transparent 1px);
  background-size: 54px 54px;
  opacity: .42;
}

.cta-inner::after {
  background:
    linear-gradient(115deg, transparent 0 30%, rgba(255, 255, 255, .05) 31%, transparent 32% 100%),
    linear-gradient(25deg, transparent 0 62%, rgba(164, 210, 51, .08) 63%, transparent 64% 100%);
}

.cta-copy {
  position: relative;
  z-index: 2;
}

.cta-inner h2 {
  color: var(--white);
  max-width: 620px;
  margin-top: .95rem;
  font-size: clamp(2.45rem, 4vw, 3.5rem);
  line-height: .98;
  letter-spacing: -0.045em;
}

.cta-inner p {
  max-width: 610px;
  margin-top: 1.25rem;
  color: rgba(255, 255, 255, .74);
  font-size: clamp(1rem, 1.1vw, 1.125rem);
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .9rem;
  margin-top: 2rem;
}

.cta-button {
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .7rem;
  padding: 1rem 1.25rem;
  border-radius: 999px;
  font-family: var(--head);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .09em;
  text-transform: uppercase;
  transition: transform .3s ease, box-shadow .3s ease, background .3s ease, color .3s ease, border-color .3s ease;
}

.cta-button i {
  font-style: normal;
  transition: transform .3s ease;
}

.cta-button--primary {
  color: #071A35;
  background: #A4D233;
  box-shadow: 0 12px 34px rgba(164, 210, 51, .22);
}

.cta-button--secondary {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, .34);
  background: transparent;
}

.cta-button:hover {
  transform: translateY(-4px);
}

.cta-button--primary:hover {
  color: #071A35;
  box-shadow: 0 18px 42px rgba(164, 210, 51, .36);
}

.cta-button--primary:hover i {
  transform: translateX(6px);
}

.cta-button--secondary:hover {
  color: #071A35;
  border-color: var(--white);
  background: var(--white);
}

.cta-visual {
  position: relative;
  min-height: clamp(360px, 30vw, 460px);
}

.cta-visual__grid {
  position: absolute;
  inset: 7% 0 0 4%;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 28px;
  background:
    radial-gradient(circle at 50% 50%, rgba(164, 210, 51, .10), transparent 48%),
    linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px);
  background-size: auto, 32px 32px, 32px 32px;
  animation: ctaGridFloat 8s ease-in-out infinite alternate;
}

.cta-wireframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.cta-wireframe path,
.cta-wireframe circle {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cta-wireframe__building path {
  stroke: rgba(255, 255, 255, .68);
  stroke-width: 2;
  vector-effect: non-scaling-stroke;
}

.cta-wireframe__network path {
  stroke-width: 3;
  vector-effect: non-scaling-stroke;
}

.cta-wireframe__network path:nth-child(1) {
  stroke: #0E356F;
}

.cta-wireframe__network path:nth-child(2) {
  stroke: #A4D233;
}

.cta-wireframe__network path:nth-child(3) {
  stroke: #FF5E14;
}

.cta-wireframe__network circle {
  fill: #071A35;
  stroke: rgba(255, 255, 255, .82);
  stroke-width: 2;
  animation: ctaNodePulse 2.6s ease-in-out infinite;
}

.cta-badge {
  position: absolute;
  z-index: 2;
  padding: .85rem 1rem;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 999px;
  color: rgba(255, 255, 255, .86);
  background: rgba(255, 255, 255, .08);
  backdrop-filter: blur(18px);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  box-shadow: 0 18px 46px rgba(0, 0, 0, .18);
  animation: ctaBadgeFloat 6s ease-in-out infinite alternate;
}

.cta-badge--one {
  top: 10%;
  right: 8%;
}

.cta-badge--two {
  left: 1%;
  top: 42%;
  animation-delay: .8s;
}

.cta-badge--three {
  right: 3%;
  bottom: 13%;
  animation-delay: 1.4s;
}

@keyframes ctaGridFloat {
  from {
    transform: translate3d(-1%, 1%, 0);
  }

  to {
    transform: translate3d(1.5%, -1.5%, 0);
  }
}

@keyframes ctaNodePulse {
  0%,
  100% {
    r: 5;
    opacity: .7;
  }

  50% {
    r: 8;
    opacity: 1;
  }
}

@keyframes ctaBadgeFloat {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(0, -10px, 0);
  }
}

.statement {
  padding: 2rem 0;
  border-bottom: 1px solid var(--line);
}

.statement h3 {
  margin-bottom: .65rem;
  color: var(--blue);
}

.about-cta-section {
  padding: clamp(5rem, 8vw, 9rem) 0;
  background: var(--navy);
}

.about-cta-inner {
  max-width: 1100px;
}

.about-cta-inner h2 {
  max-width: 1000px;
  color: var(--white);
  font-size: clamp(2.5rem, 5vw, 5.8rem);
}

.about-cta-inner p {
  max-width: 680px;
  color: rgba(255, 255, 255, .72);
}

/* Non-footer design refinement */

.button,
.nav-cta,
.mega-button,
.premium-service-card__link,
.featured-project-cta,
.project-filters button,
.quality-slider-controls button,
.cta-button,
.premium-form button,
.service-showcase-card a,
.service-gallery-item::after,
.service-icon-card__arrow,
.text-link-premium {
  height: 52px;
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .65rem;
  border-radius: 999px;
  padding: 0 30px;
  font-weight: 600;
  letter-spacing: .5px;
  text-transform: none;
  transition: all .35s ease;
}

.button.orange,
.nav-cta,
.site-header.scrolled .nav-cta,
.mega-button,
.premium-service-card__link,
.featured-project-cta,
.project-filters button.active,
.cta-button--primary,
.premium-form button,
.service-showcase-card a,
.text-link-premium {
  border: 0;
  color: #fff;
  background: linear-gradient(135deg, #ff6100 0%, #ff8c1a 100%);
  box-shadow: 0 12px 30px rgba(255, 97, 0, .25);
}

.button.orange:hover,
.nav-cta:hover,
.site-header.scrolled .nav-cta:hover,
.mega-button:hover,
.premium-service-card__link:hover,
.featured-project-cta:hover,
.project-filters button.active:hover,
.cta-button--primary:hover,
.premium-form button:hover,
.service-showcase-card a:hover,
.text-link-premium:hover {
  color: #fff;
  background: linear-gradient(135deg, #ff7a00 0%, #ff9f2d 100%);
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(255, 97, 0, .35);
}

.button.ghost,
.cta-button--secondary {
  border: 1px solid rgba(255, 255, 255, .45);
  color: #fff;
  background: transparent;
  box-shadow: none;
}

.button.ghost:hover,
.cta-button--secondary:hover {
  color: #012149;
  background: #fff;
  border-color: #fff;
  transform: translateY(-3px);
}

.premium-services-section,
.services-showcase,
.service-gallery-section,
.service-showcase-section,
.clients-wall,
.quality-showcase,
.project-showcase,
.about-intro-section,
.who-we-are-section,
.mission-vision-section {
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  background-size: auto;
}

.service-overview-section,
.service-included-section,
.service-process-section,
.contact-experience {
  background: #ffffff;
}

.why-choose-section,
.section-dark,
.service-why-section,
.service-cta-section,
.about-cta-section,
.home-service-why {
  background: linear-gradient(135deg, #071A35 0%, #0B2347 100%);
  background-size: auto;
}

.premium-services-section::before,
.premium-services-section::after,
.home-service-why::before,
.cta-inner::before,
.cta-inner::after,
.strengths-showcase::before,
.strengths-showcase::after {
  display: none;
}

.strengths-showcase::before {
  display: block;
  left: 0;
  top: 16%;
  width: 18vw;
  height: 1px;
  border-radius: 0;
  background: linear-gradient(90deg, rgba(255, 107, 0, .55), transparent);
  animation: none;
}

.cta-panel {
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.cta-inner {
  background: linear-gradient(135deg, #071A35 0%, #0B2347 100%);
  box-shadow: 0 20px 50px rgba(1, 33, 73, .14);
}

.cta-actions {
  position: relative;
  z-index: 10;
  overflow: visible;
}

.cta-button--primary,
.cta-button--primary:visited {
  position: relative;
  z-index: 10;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 34px;
  border: 0;
  border-radius: 999px;
  color: #ffffff;
  opacity: 1;
  visibility: visible;
  background: linear-gradient(135deg, #FF6A00 0%, #FF9A2F 100%);
  box-shadow: 0 12px 30px rgba(255, 106, 0, .35);
  font-weight: 700;
  transition: transform .3s ease, box-shadow .3s ease, background .3s ease;
}

.cta-button--primary:hover {
  color: #ffffff;
  transform: translateY(-3px);
  background: linear-gradient(135deg, #FF7A00 0%, #FFAA3D 100%);
  box-shadow: 0 18px 44px rgba(255, 106, 0, .46);
}

.cta-button--primary:active {
  transform: translateY(0);
}

.cta-visual__grid {
  border-color: rgba(255, 255, 255, .08);
  background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, .08), transparent 48%);
  background-size: auto;
  animation: none;
}

.premium-service-card,
.service-tile,
.service-icon-card,
.service-showcase-card,
.featured-project-slide,
.quality-pillar,
.client-logo,
.project-block,
.service-gallery-item,
.gallery-strip img,
.service-media,
.who-we-are-image,
.featured-project-slide__media,
.featured-project-logo,
.project-row strong img,
.detail-project-logo,
.map-wrap,
.contact-stack,
.premium-form {
  border-radius: 24px;
}

.premium-service-card,
.service-icon-card,
.service-showcase-card,
.quality-pillar,
.client-logo,
.about-feature-card,
.about-service-card,
.why-card,
.mission-card {
  background-color: #fff;
  box-shadow: 0 15px 40px rgba(0, 0, 0, .05);
}

.premium-service-card {
  border-radius: 28px;
  border-color: transparent;
  box-shadow: 0 15px 40px rgba(0, 0, 0, .05);
}

.premium-service-card:hover,
.premium-services-grid .premium-service-card:nth-child(2):hover,
.service-icon-card:hover,
.service-showcase-card:hover,
.quality-pillar:hover,
.client-logo:hover {
  transform: translateY(-10px);
  border-color: rgba(1, 33, 73, .08);
  box-shadow: 0 22px 55px rgba(1, 33, 73, .10);
}

.premium-service-card:hover::after,
.service-icon-card:hover {
  box-shadow: 0 22px 55px rgba(1, 33, 73, .10);
}

.premium-service-card__system,
.premium-service-card__chips span,
.service-tile span,
.project-block span,
.featured-project-badges span,
.quality-pillar__top span {
  border-radius: 999px;
}

.premium-service-card__system {
  padding: 10px 18px;
  border-color: rgba(255, 255, 255, .14);
  color: rgba(255, 255, 255, .86);
  background: rgba(255, 255, 255, .12);
  backdrop-filter: blur(12px);
}

/* Services Page Alignment Refinement */

.services-page .services-showcase {
  background: #ffffff;
}

.services-page .service-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  min-height: auto;
  padding: 120px var(--space-site-x);
}

.services-page .image-column,
.services-page .content-column {
  display: flex;
  align-items: center;
  height: 100%;
}

.services-page .service-media {
  min-height: 0;
  height: 100%;
  max-height: 720px;
  border-radius: 24px;
  box-shadow: 0 24px 70px rgba(1, 33, 73, .12);
}

.services-page .service-media img {
  min-height: 620px;
}

.services-page .service-copy {
  position: relative;
  width: 100%;
  min-height: 620px;
  padding: 0;
  justify-content: center;
}

.services-page .service-content-wrap {
  position: relative;
  width: 100%;
  padding-right: 128px;
}

.services-page .service-band.reverse .service-media {
  order: 2;
}

.services-page .service-band.reverse .service-copy {
  order: 1;
}

.services-page .service-number {
  position: absolute;
  top: 0;
  right: 0;
  width: 90px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  border: 2px solid rgba(255, 97, 0, .15);
  border-radius: 24px;
  background: linear-gradient(135deg, #012149, #001633);
  box-shadow: 0 20px 50px rgba(1, 33, 73, .12);
  font-family: var(--head);
  font-size: 36px;
  font-weight: 800;
  line-height: 1;
  transition: transform .3s ease;
}

.services-page .service-copy:hover .service-number {
  transform: translateY(-4px);
}

.services-page .service-copy .label {
  color: #ff6100;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 3px;
}

.services-page .service-copy h2 {
  max-width: 760px;
  margin-top: .9rem;
  color: #012149;
  font-size: clamp(2.6rem, 4.2vw, 56px);
  font-weight: 800;
  line-height: 1.05;
}

.services-page .service-copy p {
  max-width: 790px;
  margin: 1.5rem 0 2.1rem;
  color: #5d708b;
  font-size: 20px;
  line-height: 1.9;
}

.services-page .service-included {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 60px;
  columns: auto;
  margin: 0;
}

.services-page .service-included li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 0;
  color: #012149;
  font-weight: 800;
  line-height: 1.45;
}

.services-page .service-included li::before {
  position: static;
  flex: 0 0 auto;
  width: 10px;
  height: 10px;
  margin-top: .45em;
  border-radius: 50%;
  background: #89c400;
}

.services-page .text-link-premium {
  width: 100%;
  max-width: 520px;
  height: 64px;
  min-height: 64px;
  margin-top: 50px;
  border-radius: 50px;
  background: #ff6100;
  box-shadow: 0 14px 34px rgba(255, 97, 0, .24);
  color: #ffffff;
  font-weight: 700;
}

.services-page .service-stats {
  padding: 120px 0;
  background: linear-gradient(135deg, #012149 0%, #001633 100%);
}

.services-page .stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  background: transparent;
}

.services-page .stat-item {
  min-height: 300px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 24px;
  background: rgba(255, 255, 255, .06);
  box-shadow: none;
  backdrop-filter: blur(10px);
  transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease;
}

.services-page .stat-item:hover {
  transform: translateY(-8px);
  border-color: #ff6100;
  box-shadow: 0 24px 60px rgba(0, 0, 0, .24);
}

.services-page .stat-item strong {
  color: #89c400;
  font-family: var(--head);
  font-size: 56px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -.04em;
}

.services-page .stat-item span {
  margin-top: 1rem;
  color: #ffffff;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;
}

.services-page .stat-item p {
  margin: .9rem 0 0;
  color: rgba(255, 255, 255, .75);
  font-size: 15px;
  line-height: 1.7;
}

/* Premium About Page */

.about-page .container-fluid {
  max-width: 1320px;
  margin-right: auto;
  margin-left: auto;
}

.about-page .section,
.about-page .about-numbers-section,
.about-page .about-cta-section {
  padding-top: 90px;
  padding-bottom: 90px;
}

.about-page .inner-hero {
  min-height: 62vh;
}

.about-page .section-head,
.about-section-head {
  max-width: 760px;
  margin-bottom: 2.8rem;
}

.about-intro-section,
.who-we-are-section,
.about-services-section,
.mission-vision-section,
.about-certificates-section,
.director-message-section {
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.about-intro-grid,
.who-we-are-grid,
.about-framework-grid,
.director-message-grid {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: center;
}

.about-intro-grid h2,
.who-we-are-copy h2,
.about-framework-intro h2,
.director-message-copy h2 {
  color: #081B3A;
  font-size: clamp(1.25rem, 2.8vw, 3.4rem);
  line-height: 1.02;
  letter-spacing: -.05em;
}

.about-intro-copy {
  padding-left: clamp(1.4rem, 3vw, 2.5rem);
  border-left: 3px solid #FF6A00;
}

.about-intro-copy p,
.who-we-are-copy p,
.about-framework-intro p,
.director-message-copy blockquote {
  color: #5E6B7C;
  font-size: clamp(1rem, 1.08vw, 1.14rem);
  line-height: 1.75;
}

.who-we-are-image {
  min-height: 480px;
  border-radius: 24px;
  box-shadow: 0 24px 60px rgba(8, 27, 58, .14);
}

.about-feature-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
  background: transparent;
}

.about-feature-card {
  min-height: 176px;
  border: 1px solid rgba(8, 27, 58, .08);
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 18px 42px rgba(8, 27, 58, .06);
}

.about-feature-card i,
.about-service-card span,
.why-card i,
.mission-card > i {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  margin-bottom: 1.1rem;
  color: #FF6A00;
  border-radius: 50%;
  background: rgba(255, 106, 0, .10);
}

.about-service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  background: transparent;
}

.about-service-card {
  position: relative;
  min-height: 300px;
  padding: 2rem;
  overflow: hidden;
  border: 1px solid rgba(8, 27, 58, .08);
  border-radius: 26px;
  background: rgba(255, 255, 255, .84);
  box-shadow: 0 18px 42px rgba(8, 27, 58, .07);
  backdrop-filter: blur(12px);
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}

.about-service-card h3 {
  color: #081B3A;
}

.about-service-card p {
  color: #5E6B7C;
}

.about-service-card em {
  position: absolute;
  left: 2rem;
  right: 2rem;
  bottom: 1.6rem;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(135deg, #FF6A00 0%, #FF9A2F 100%);
  transform: scaleX(.32);
  transform-origin: left;
  transition: transform .35s ease;
}

.about-service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 106, 0, .35);
  box-shadow: 0 24px 60px rgba(255, 106, 0, .12);
}

.about-service-card:hover span {
  transform: scale(1.08);
}

.about-service-card:hover em {
  transform: scaleX(1);
}

.about-framework-section {
  background: #ffffff;
}

.about-framework-grid {
  grid-template-columns: minmax(0, .42fr) minmax(0, .58fr);
}

.why-card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  background: transparent;
}

.why-card {
  min-height: 230px;
  padding: 1.6rem;
  border: 1px solid rgba(8, 27, 58, .08);
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 18px 44px rgba(8, 27, 58, .07);
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}

.why-card--navy {
  background: linear-gradient(135deg, #081B3A 0%, #0B2347 100%);
}

.why-card span {
  display: block;
  margin-bottom: .85rem;
  color: #FF6A00;
  font-family: var(--head);
  font-size: 1rem;
  font-weight: 800;
}

.why-card h3 {
  color: #081B3A;
  font-size: clamp(1.15rem, 1.4vw, 1.45rem);
}

.why-card p {
  margin: .7rem 0 0;
  color: #5E6B7C;
  line-height: 1.6;
}

.why-card--navy h3,
.why-card--navy p {
  color: #ffffff;
}

.why-card--navy p {
  color: rgba(255, 255, 255, .72);
}

.why-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 106, 0, .35);
  box-shadow: 0 24px 60px rgba(8, 27, 58, .12);
}

.mission-vision-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  background: transparent;
}

.mission-card {
  position: relative;
  min-height: 360px;
  padding: clamp(2rem, 4vw, 3.6rem);
  overflow: hidden;
  border: 1px solid rgba(8, 27, 58, .08);
  border-radius: 28px;
  box-shadow: 0 22px 58px rgba(8, 27, 58, .08);
}

.mission-card--navy {
  background: linear-gradient(135deg, #081B3A 0%, #0B2347 100%);
}

.mission-card--navy h3,
.mission-card--navy .label {
  color: #ffffff;
}

.mission-card h3 {
  position: relative;
  z-index: 1;
  font-size: clamp(1.55rem, 2.35vw, 2.65rem);
}

.mission-card em {
  position: absolute;
  right: -50px;
  bottom: -50px;
  width: 220px;
  height: 220px;
  border: 1px solid rgba(255, 106, 0, .18);
  border-radius: 50%;
}

.director-message-grid {
  grid-template-columns: minmax(320px, .42fr) minmax(0, .58fr);
}

.director-message-photo {
  position: relative;
  min-height: 540px;
}

.director-message-photo::before {
  content: "";
  position: absolute;
  left: -28px;
  bottom: -28px;
  width: 62%;
  height: 62%;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(255, 106, 0, .18), rgba(155, 224, 0, .12));
}

.director-message-photo img {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 540px;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: 0 26px 70px rgba(8, 27, 58, .16);
}

.director-message-copy blockquote {
  margin: 1.5rem 0 0;
  padding-left: 1.6rem;
  border-left: 3px solid #FF6A00;
}

.director-signature {
  margin-top: 2rem;
}

.director-signature strong,
.director-signature span,
.director-signature em {
  display: block;
}

.director-signature strong {
  color: #081B3A;
  font-family: var(--head);
  font-size: 1.25rem;
}

.director-signature span {
  color: #5E6B7C;
  font-weight: 700;
}

.director-signature em {
  margin-top: .8rem;
  color: #FF6A00;
  font-family: var(--head);
  font-size: 1.6rem;
  font-style: italic;
  letter-spacing: .06em;
}

/* Redesigned About Page Core Sections */

.about-dashboard-section {
  background: #ffffff;
}

.about-dashboard {
  position: relative;
  overflow: hidden;
  padding: clamp(2rem, 4vw, 3.5rem);
  background-size: 48px 48px;
}

.about-dashboard h2 {
  max-width: 720px;
  margin-bottom: 2rem;
  color: #081B3A;
  font-size: clamp(2rem, 3.2vw, 3.7rem);
  line-height: 1.04;
  letter-spacing: -.045em;
}

.about-dashboard .about-number-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  background: transparent;
}

.about-dashboard .about-number-item {
  position: relative;
  min-height: 230px;
  padding: 1.6rem;
  overflow: hidden;
  border: 1px solid rgba(8, 27, 58, .12);
  border-radius: 15px;
  background: #ffffff;
  box-shadow: 0 18px 44px rgba(8, 27, 58, .06);
  transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -ms-border-radius: 15px;
  -o-border-radius: 15px;
}

.about-dashboard .about-number-item i {
  color: #081B3A;
  font-size: 1.35rem;
}

.about-dashboard .about-number-item strong {
  margin-top: auto;
  color: #9BE000;
  font-family: var(--head);
  font-size: clamp(2.7rem, 4vw, 4.6rem);
  line-height: .9;
  letter-spacing: -.055em;
}

.about-dashboard .about-number-item span {
  max-width: 150px;
  margin-top: .8rem;
  color: #081B3A;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.about-dashboard .about-number-item em {
  position: absolute;
  left: 1.6rem;
  right: 1.6rem;
  top: 0;
  height: 3px;
  background: linear-gradient(135deg, #FF6A00 0%, #FF9A2F 100%);
  transform: scaleX(.28);
  transform-origin: left;
  transition: transform .35s ease;
}

.about-dashboard .about-number-item:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 106, 0, .36);
  box-shadow: 0 24px 60px rgba(8, 27, 58, .10);
}

.about-dashboard .about-number-item:hover em {
  transform: scaleX(1);
}

.about-certificates-section {
  position: relative;
  overflow: hidden;
}

.about-certificates-section::before {
  content: "";
  position: absolute;
  right: -120px;
  top: 10%;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 106, 0, .10), transparent 68%);
  pointer-events: none;
}

.about-certificates-section .about-section-head p {
  max-width: 760px;
  color: #5E6B7C;
  font-size: clamp(1rem, 1.05vw, 1.12rem);
  line-height: 1.75;
}

.about-certificate-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.about-certificate-card {
  overflow: hidden;
  border: 1px solid rgba(8, 27, 58, .08);
  border-radius: 28px;
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 22px 55px rgba(8, 27, 58, .08);
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}

.about-certificate-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 106, 0, .24);
  box-shadow: 0 30px 70px rgba(8, 27, 58, .13);
}

.about-certificate-card__media {
  display: grid;
  place-items: center;
  height: 430px;
  padding: 1.2rem;
  background: #F7F9FC;
  border-bottom: 1px solid rgba(8, 27, 58, .08);
}

.about-certificate-card__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 12px 24px rgba(8, 27, 58, .12));
  transition: transform .45s ease;
}

.about-certificate-card:hover .about-certificate-card__media img {
  transform: scale(1.035);
}

.about-certificate-card__body {
  padding: 1.45rem 1.5rem 1.65rem;
}

.about-certificate-card__body span {
  display: block;
  margin-bottom: .65rem;
  color: #FF6A00;
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.about-certificate-card__body h3 {
  margin: 0;
  color: #081B3A;
  font-size: clamp(1.15rem, 1.35vw, 1.45rem);
  font-weight: 850;
  letter-spacing: -.025em;
  line-height: 1.18;
}

.about-trust-section {
  color: #081B3A;
  background: #ffffff;
}

.about-trust-head {
  max-width: 780px;
  margin: 0 auto 3.5rem;
  text-align: center;
}

.about-trust-head h2 {
  color: #081B3A;
  font-size: 32px;
  line-height: 1.02;
  letter-spacing: -.055em;
}

.about-trust-head p {
  margin-top: 1rem;
  color: #5E6B7C;
  font-size: clamp(1.05rem, 1.25vw, 1.22rem);
}

.about-trust-timeline {
  position: relative;
  display: grid;
  gap: 40px;
}

.about-trust-timeline::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: linear-gradient(
    180deg,
    transparent,
    #FF6A00 12%,
    #FF6A00 88%,
    transparent
  );
  transform: translateX(-50%);
}

.trust-milestone {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 120px 1fr;
  align-items: center;
  min-height: 180px;
}

.trust-milestone__node {
  grid-column: 2;
  grid-row: 1;
  display: grid;
  place-items: center;
  justify-self: center;
  width: 64px;
  height: 64px;
  z-index: 3;

  color: #ffffff;
  border: 6px solid #ffffff;
  border-radius: 50%;
  background: linear-gradient(135deg, #FF6A00 0%, #FF9A2F 100%);
  box-shadow: 0 14px 34px rgba(255, 106, 0, .28);
  font-family: var(--head);
  font-weight: 800;
}

.trust-milestone__content {
  position: relative;
  width: 100%;
  max-width: 460px;
  padding: 32px;
  border: 1px solid rgba(8, 27, 58, .10);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 16px 42px rgba(8, 27, 58, .07);
  transition: transform .35s ease,
              box-shadow .35s ease,
              border-color .35s ease;
}

/* LEFT CARDS - 01,03,05 */

.trust-milestone--left .trust-milestone__content {
  grid-column: 1;
  justify-self: end;
  text-align: right;
  margin-right: 30px;
}

.trust-milestone--left .trust-milestone__content::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -30px;
  width: 30px;
  height: 2px;
  background: #FF6A00;
  transform: translateY(-50%);
}

/* RIGHT CARDS - 02,04,06 */

.trust-milestone--right .trust-milestone__content {
  grid-column: 3;
  justify-self: start;
  text-align: left;
  margin-left: 30px;
}

.trust-milestone--right .trust-milestone__content::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -30px;
  width: 30px;
  height: 2px;
  background: #FF6A00;
  transform: translateY(-50%);
}

.trust-milestone:hover .trust-milestone__content {
  transform: translateY(-8px);
  border-color: rgba(255, 106, 0, .28);
  box-shadow: 0 24px 56px rgba(8, 27, 58, .11);
}

.trust-milestone__content h3 {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  margin: 0 0 .65rem;
  color: #081B3A;
  font-size: 24px;
  line-height: 1.15;
}

.trust-milestone__content h3 i {
  color: #FF6A00;
  font-size: 1.25rem;
}

.trust-milestone__content p {
  margin: 0;
  color: #5E6B7C;
  font-size: 17px;
  line-height: 1.65;
}

.trust-milestone:hover .trust-milestone__content {
  transform: translateY(-8px);
  border-color: rgba(255, 106, 0, .28);
  box-shadow: 0 24px 56px rgba(8, 27, 58, .11);
}

.executive-statement-section {
  background: #ffffff;
}

.executive-statement-head {
  max-width: 760px;
  margin: 0 auto 3.25rem;
  text-align: center;
}

.executive-statement-head h2 {
  color: #081B3A;
  font-size: clamp(2.4rem, 4.5vw, 5rem);
  line-height: 1;
  letter-spacing: -.06em;
}

.executive-statement-section .mission-vision-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 1px minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: stretch;
  background: transparent;
}

.executive-statement-section .mission-vision-grid::before {
  content: "";
  grid-column: 2;
  grid-row: 1;
  background: rgba(8, 27, 58, .14);
}

.executive-statement-section .mission-card {
  min-height: auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.executive-statement-section .mission-card:nth-child(1) {
  grid-column: 1;
}

.executive-statement-section .mission-card:nth-child(2) {
  grid-column: 3;
}

.executive-statement-section .mission-card i {
  width: 58px;
  height: 58px;
  margin-bottom: 1.8rem;
  color: #FF6A00;
  background: rgba(255, 106, 0, .10);
  font-size: 1.25rem;
}

.executive-statement-section .mission-card span {
  display: block;
  color: #081B3A;
  font-family: var(--head);
  font-size: clamp(2rem, 3.6vw, 4rem);
  font-weight: 800;
  letter-spacing: -.055em;
  text-transform: uppercase;
}

.executive-statement-section .mission-card span::after {
  content: "";
  display: block;
  width: 90px;
  height: 3px;
  margin: 1.2rem 0 1.4rem;
  background: linear-gradient(135deg, #FF6A00 0%, #FF9A2F 100%);
}

.executive-statement-section .mission-card p {
  max-width: 560px;
  margin: 0;
  color: #39485B;
  font-size: clamp(1.12rem, 1.45vw, 1.45rem);
  line-height: 1.65;
}

.service-tile span,
.project-block span {
  display: inline-flex;
  width: fit-content;
  padding: 10px 18px;
  color: rgba(255, 255, 255, .86);
  background: rgba(255, 255, 255, .12);
  backdrop-filter: blur(12px);
}

.premium-service-card:hover::after,
.service-icon-card:hover::before,
.home-service-why__item::after,
.strengths-accordion::before {
  display: none;
}

.home-service-why__item,
.strength-panel,
.service-why-card,
.why-card {
  border-color: rgba(255, 255, 255, .10);
  box-shadow: none;
}

.home-service-why__item:hover,
.strength-panel.active,
.strength-panel:hover,
.service-why-card:hover,
.why-card:hover {
  border-color: rgba(255, 255, 255, .18);
  box-shadow: 0 16px 36px rgba(0, 0, 0, .12);
}

.home-service-why__item::before,
.strength-panel::before {
  opacity: .28;
  background: radial-gradient(circle, rgba(255, 255, 255, .10), transparent 66%);
  border-color: rgba(255, 255, 255, .12);
}

.strength-panel::after {
  background: #A4D233;
  box-shadow: none;
}

.service-icon-card:hover,
.premium-service-card:hover,
.quality-pillar:hover {
  border-color: rgba(1, 33, 73, .08);
}

.featured-project-badges span:last-child,
.service-icon-card__arrow {
  color: #012149;
  background: rgba(164, 210, 51, .16);
}

.about-service-card span,
.about-check span,
.service-icon-card__icon,
.strength-panel button i,
.quality-pillar__top i {
  color: #A4D233;
}

.featured-project-head__line,
.featured-projects-head__line,
.hero-line,
.strengths-showcase__line {
  background: linear-gradient(90deg, #FF5E14, #A4D233);
}

/* ==========================================================
   23. RESPONSIVE - DESKTOP
========================================================== */

/* min-width 1200px */

@media (min-width: 1200px) {
  .desktop-nav { display: flex; }
}

/* ==========================================================
   24. RESPONSIVE - TABLET
========================================================== */

/* max-width 992px */

@media (max-width: 1200px) {

  .desktop-nav,
  .nav-cta {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .brand-logo,
  .site-header.scrolled .brand-logo {
    height: 55px;
  }

  .service-ledger,
  .project-masonry {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-tile,
  .service-tile:nth-child(1),
  .service-tile:nth-child(6),
  .project-block,
  .project-block.wide {
    grid-column: span 1;
    min-height: 520px;
  }

  .featured-projects-head {
    align-items: start;
    flex-direction: column;
  }

  .featured-project-slide {
    grid-template-columns: 1fr;
  }

  .featured-project-slide__media {
    min-height: 480px;
  }

  .numbers-grid,
  .industry-grid,
  .logo-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .industry-showcase {
    grid-template-columns: 1fr;
  }

  .industry-showcase__intro {
    min-height: auto;
  }

  .industry-showcase__stage {
    min-height: 620px;
  }

  .service-band {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .service-band.reverse .service-media,
  .service-band.reverse .service-copy {
    order: initial;
  }

  .service-media {
    min-height: 520px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-company {
    grid-column: span 2;
  }

  .home-about-grid,
  .about-intro-grid,
  .who-we-are-grid,
  .about-framework-grid,
  .director-message-grid,
  .home-service-why,
  .strengths-showcase__grid,
  .service-why-split,
  .cta-inner {
    grid-template-columns: 1fr;
  }

  .cta-visual {
    min-height: 360px;
  }

  .home-about-visual {
    min-height: 560px;
  }

  .about-metrics-panel {
    bottom: -44px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 18px;
  }

  .about-metric {
    padding: .75rem .9rem;
  }

  .about-metric:not(:last-child)::after {
    display: none;
  }

  .quality-stat-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-service-grid,
  .premium-services-grid,
  .service-overview-grid,
  .home-service-why__grid,
  .service-gallery-grid,
  .service-showcase-grid,
  .about-number-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-dashboard .about-number-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-milestone {
    grid-template-columns: 1fr 90px 1fr;
    min-height: 150px;
  }

  .about-trust-timeline::before {
    left: 50%;
  }

  .trust-milestone__node {
    grid-column: 2;
    width: 58px;
    height: 58px;
  }

  .trust-milestone--left .trust-milestone__content {
    grid-column: 1;
    justify-self: end;
    text-align: right;
  }

  .trust-milestone--right .trust-milestone__content {
    grid-column: 3;
    justify-self: start;
    text-align: left;
  }

  .executive-statement-section .mission-vision-grid {
    grid-template-columns: 1fr;
  }

  .executive-statement-section .mission-vision-grid::before {
    display: none;
  }

  .executive-statement-section .mission-card:nth-child(1),
  .executive-statement-section .mission-card:nth-child(2) {
    grid-column: auto;
  }

  .executive-statement-section .mission-card + .mission-card {
    padding-top: 2rem;
    border-top: 1px solid rgba(8, 27, 58, .14);
  }

  .about-page .section,
  .about-page .about-numbers-section,
  .about-page .about-cta-section {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .about-framework-intro {
    max-width: 760px;
  }

  .director-message-photo,
  .director-message-photo img {
    min-height: 460px;
  }

  .why-card-grid,
  .service-icon-grid,
  .service-why-grid,
  .service-process-timeline {
    grid-template-columns: repeat(2, 1fr);
  }

  .strengths-showcase__intro {
    position: relative;
    top: auto;
  }

  .strength-feature-row {
    grid-template-columns: 110px minmax(0, 1fr);
  }

  .premium-services-grid .premium-service-card:nth-child(2) {
    transform: none;
  }

  .premium-services-grid .premium-service-card:nth-child(2):hover {
    transform: translateY(-12px);
  }

  .services-page .service-row {
    gap: 48px;
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .services-page .service-copy,
  .services-page .service-media img {
    min-height: 560px;
  }

  .services-page .service-content-wrap {
    padding-right: 112px;
  }

  .services-page .service-included {
    gap: 16px 36px;
  }

  .services-page .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .about-certificate-card__media {
    height: 390px;
  }
}

/* ==========================================================
   25. RESPONSIVE - MOBILE
========================================================== */

/* max-width 768px */

@media (max-width: 768px) {
  .nav-shell {
    min-height: 76px;
  }

  .brand-logo,
  .site-header.scrolled .brand-logo {
    height: 40px;
  }

  .mobile-panel img {
    height: 40px;
  }

  .home-hero,
  .inner-hero {
    min-height: 86vh;
  }

  .hero-content,
  .inner-hero .container-fluid {
    padding-top: 120px;
    padding-bottom: 4rem;
  }

  .hero-content {
    width: auto;
    max-width: none;
    margin-left: 0;
    padding-left: var(--space-site-x);
    padding-right: var(--space-site-x);
  }

  .hero-actions .button,
  .cta-inner .button,
  .cta-button {
    width: 100%;
  }

  .hero-title {
    max-width: 100%;
    font-size: clamp(3rem, 13vw, 4.2rem);
    letter-spacing: -0.035em;
  }

  .hero-title__line {
    white-space: normal;
  }

  .hero-line {
    margin: 30px 0;
  }

  .hero-stats {
    display: grid;
    width: 100%;
    grid-template-columns: 1fr;
    margin-top: 1.6rem;
    margin-bottom: 1.6rem;
    gap: 0;
  }

  .hero-stat {
    padding: 1rem 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
  }

  .hero-stat:last-child {
    border-bottom: 0;
  }

  .scroll-indicator {
    display: none;
  }

  .about-copy,
  .timeline {
    min-height: auto;
    padding: 4rem 0;
  }

  .about-page .section,
  .about-page .about-numbers-section,
  .about-page .about-cta-section {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .about-page .inner-hero {
    min-height: 58vh;
  }

  .about-intro-grid,
  .who-we-are-grid,
  .about-framework-grid,
  .director-message-grid {
    gap: 2rem;
  }

  .about-intro-grid h2,
  .who-we-are-copy h2,
  .about-framework-intro h2,
  .director-message-copy h2 {
    font-size: clamp(2rem, 9vw, 3rem);
  }

  .about-intro-copy {
    padding-left: 1.1rem;
  }

  .who-we-are-image {
    min-height: 340px;
  }

  .about-feature-grid,
  .about-service-grid,
  .why-card-grid,
  .mission-vision-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .about-dashboard {
    padding: 1.3rem;
  }

  .about-dashboard .about-number-grid {
    grid-template-columns: 1fr;
  }

  .about-dashboard .about-number-item {
    min-height: 190px;
  }

  .about-trust-head,
  .executive-statement-head {
    margin-bottom: 2.25rem;
    text-align: left;
  }

  .about-trust-timeline::before {
    left: 28px;
  }

  .trust-milestone {
    grid-template-columns: 56px 1fr;
    gap: 1rem;
    min-height: auto;
    padding: 1.1rem 0;
  }

  .trust-milestone__node {
    grid-column: 1;
    width: 52px;
    height: 52px;
    border-width: 5px;
    font-size: .8rem;
  }

  .trust-milestone--left .trust-milestone__content,
  .trust-milestone--right .trust-milestone__content {
    grid-column: 2;
    justify-self: start;
    text-align: left;
  }

  .trust-milestone__content {
    max-width: none;
    padding: 1.25rem;
  }

  .trust-milestone__content h3 {
    font-size: 22px;
  }

  .trust-milestone__content p {
    font-size: 16px;
  }

  .executive-statement-section .mission-card i {
    margin-bottom: 1.2rem;
  }

  .about-service-card,
  .why-card {
    min-height: auto;
  }

  .mission-card {
    min-height: 300px;
  }

  .about-certificate-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .about-certificate-card {
    border-radius: 24px;
  }

  .about-certificate-card__media {
    height: min(520px, 118vw);
    padding: 1rem;
  }

  .about-certificate-card__body {
    padding: 1.2rem 1.25rem 1.4rem;
  }

  .director-message-photo,
  .director-message-photo img {
    min-height: 420px;
  }

  .director-message-photo::before {
    left: -12px;
    bottom: -12px;
  }

  .home-about-section {
    padding: 4.5rem 0;
  }

  .home-about-copy h2 {
    font-size: clamp(2.25rem, 9vw, 3.35rem);
  }

  .home-about-actions .button {
    width: 100%;
  }

  .home-about-visual {
    min-height: auto;
    padding-bottom: 78px;
  }

  .home-about-image {
    height: 380px;
  }

  .about-metrics-panel {
    position: absolute;
    left: 50%;
    bottom: 18px;
    width: calc(100% - 2rem);
    padding: 1rem;
    gap: 10px;
    transform: translateX(-50%);
    animation: aboutPanelFloatMobile 6s ease-in-out infinite alternate;
  }

  .about-metric strong {
    font-size: clamp(1.8rem, 7vw, 2.35rem);
  }

  .about-metric em {
    font-size: 11px;
  }

  .timeline {
    padding: 2rem 1.2rem;
  }

  .timeline-row,
  .process-line {
    grid-template-columns: 1fr;
    gap: .7rem;
  }

  .service-ledger,
  .project-masonry,
  .numbers-grid,
  .industry-grid,
  .logo-grid,
  .about-checklist,
  .about-feature-grid,
  .about-service-grid,
  .about-certificate-grid,
  .premium-services-grid,
  .home-service-why__grid,
  .service-overview-grid,
  .service-highlight-grid,
  .service-icon-grid,
  .service-why-grid,
  .service-process-timeline,
  .service-why-split,
  .home-service-why,
  .strengths-showcase__grid,
  .industry-showcase,
  .strength-panel__content ul,
  .service-gallery-grid,
  .service-showcase-grid,
  .why-card-grid,
  .about-number-grid,
  .mission-vision-grid,
  .form-grid,
  .deliverable-grid,
  .gallery-strip,
  .cta-inner,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-company {
    grid-column: span 1;
  }

  .footer {
    padding: 60px 0 42px;
  }

  .footer-grid {
    gap: 1rem;
  }

  .footer-links {
    padding: .5rem 0;
  }

  .copyright {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .copyright .socials {
    justify-content: start;
  }

  .cta-inner {
    border-radius: 24px;
    padding: 2rem;
  }

  .cta-visual {
    min-height: 300px;
  }

  .cta-badge {
    position: relative;
    inset: auto;
    display: block;
    width: fit-content;
    margin-top: .75rem;
  }

  .cta-badge--one {
    margin-left: auto;
  }

  .cta-badge--two {
    margin-right: auto;
  }

  .cta-badge--three {
    margin-left: auto;
    margin-right: auto;
  }

  .service-included {
    columns: 1;
  }

  .service-copy {
    padding: 3.5rem 1.1rem;
  }

  .services-page .service-row {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 80px var(--space-site-x);
  }

  .services-page .service-band.reverse .service-media,
  .services-page .service-band.reverse .service-copy {
    order: initial;
  }

  .services-page .image-column,
  .services-page .content-column {
    display: flex;
    align-items: center;
  }

  .services-page .service-copy {
    min-height: auto;
    padding: 0;
  }

  .services-page .service-content-wrap {
    padding-right: 0;
    text-align: left;
  }

  .services-page .service-media,
  .services-page .service-media img {
    min-height: 360px;
    height: auto;
  }

  .services-page .service-number {
    position: relative;
    top: auto;
    right: auto;
    width: 74px;
    height: 74px;
    margin-bottom: 1.4rem;
    border-radius: 20px;
    font-size: 28px;
  }

  .services-page .service-copy:hover .service-number {
    transform: none;
  }

  .services-page .service-copy h2 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .services-page .service-copy p {
    font-size: 17px;
    line-height: 1.75;
  }

  .services-page .service-included {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .services-page .text-link-premium {
    max-width: none;
    height: 60px;
    min-height: 60px;
    margin-top: 36px;
  }

  .services-page .service-stats {
    padding: 80px 0;
  }

  .services-page .stats-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .services-page .stat-item {
    min-height: 240px;
    padding: 32px;
  }

  .services-page .stat-item strong {
    font-size: 46px;
  }

  .about-metrics-panel {
    border-radius: 26px;
  }

  .about-metric {
    gap: 0;
    min-height: 104px;
    padding: .9rem .6rem;
    border-right: 0;
  }

  .service-media {
    min-height: 360px;
  }

  .premium-service-card {
    min-height: 430px;
  }

  .premium-services-grid .premium-service-card:nth-child(2),
  .premium-services-grid .premium-service-card:nth-child(2):hover {
    transform: none;
  }

  .premium-service-card__glow,
  .premium-service-card__panel {
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
  }

  .premium-service-card__panel {
    min-height: auto;
    padding: 1.45rem;
    justify-content: flex-end;
  }

  .premium-service-card__number {
    margin-bottom: 1rem;
    padding-bottom: 0;
  }

  .premium-service-card h3 {
    font-size: clamp(1.35rem, 5vw, 1.85rem);
    line-height: 1.08;
  }

  .premium-service-card p {
    display: none !important;
  }

  .premium-service-card__link {
    margin-top: 1.05rem;
  }

  .service-gallery-item.featured {
    grid-row: span 1;
  }

  .service-gallery-grid {
    grid-auto-rows: 280px;
  }

  .home-service-why {
    margin-top: 3rem;
  }

  .home-service-why__intro,
  .home-service-why__item {
    min-height: 250px;
  }

  .strength-panel button {
    padding-left: 3.2rem;
  }

  .strengths-showcase__cta {
    width: 100%;
  }

  .strength-feature-row {
    grid-template-columns: 1fr;
    gap: .9rem;
    min-height: auto;
    padding: 1.55rem 0;
  }

  .strength-feature-row__number {
    font-size: clamp(3rem, 18vw, 5.4rem);
  }

  .strength-feature-row h3 {
    align-items: flex-start;
    font-size: clamp(1.35rem, 7vw, 2rem);
  }

  .strength-panel::after {
    left: 1.5rem;
  }

  .strength-panel__content {
    grid-template-columns: 1fr;
    padding-left: 3.2rem;
  }

  .quality-stat-row {
    grid-template-columns: 1fr;
  }

  .quality-stat-row div {
    min-height: 100px;
  }

  .quality-pillar-track {
    overflow: hidden;
  }

  .quality-pillar {
    width: 100%;
    height: 220px;
    min-height: 220px;
    border-radius: 24px;
  }

  .quality-pillar h3 {
    font-size: 24px;
  }

  .quality-slider-controls {
    grid-template-columns: auto 1fr auto;
    width: 100%;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .project-row {
    grid-template-columns: 1fr;
    gap: .45rem;
    padding: 1.2rem 0;
  }

  .project-row:hover {
    padding-left: 0;
  }

  .project-row em {
    justify-self: start;
  }

  .project-row strong {
    display: block;
  }

  .project-row strong img {
    display: block;
    margin-bottom: .75rem;
  }

  .project-list {
    overflow: hidden;
  }

  .project-row {
    border-radius: 0;
    min-width: 0;
  }

  .project-row strong,
  .project-row em,
  .project-row span {
    min-width: 0;
  }

  .industry-showcase__intro {
    min-height: auto;
  }

  .industry-showcase__counter {
    margin-top: 2rem;
  }

  .industry-showcase__stage {
    min-height: 76vh;
  }

  .industry-showcase__content {
    left: 1.2rem;
    right: 1.2rem;
    bottom: 2rem;
    max-width: none;
  }

  .industry-showcase__content h3 {
    font-size: clamp(3.2rem, 15vw, 5rem);
  }

  .industry-showcase__list {
    top: 1rem;
    left: 1rem;
    right: 1rem;
    width: auto;
    display: flex;
    overflow-x: auto;
    gap: .8rem;
    scrollbar-width: none;
  }

  .industry-showcase__list::-webkit-scrollbar {
    display: none;
  }

  .industry-showcase__list button {
    min-width: 190px;
    padding: .75rem 0;
    white-space: nowrap;
  }

  .featured-project-stats,
  .featured-project-slide__info dl,
  .featured-project-slide__info dd span {
    display: grid;
    grid-template-columns: 1fr;
  }

  .featured-project-stats div {
    min-height: 120px;
    border-right: 0;
    border-bottom: 1px solid rgba(1, 33, 73, .08);
  }

  .featured-project-stats div:last-child {
    border-bottom: 0;
  }

  .featured-project-slider {
    grid-auto-columns: 88vw;
    margin-right: calc(var(--space-site-x) * -1);
  }

  .featured-project-slide {
    min-height: auto;
  }

  .featured-project-slide__media {
    min-height: 360px;
  }

  .featured-project-logo {
    width: min(190px, 52%);
    min-height: 82px;
  }

  .service-tile,
  .service-tile:nth-child(1),
  .service-tile:nth-child(6),
  .project-block,
  .project-block.wide {
    min-height: 430px;
  }

  .number-item {
    min-height: 170px;
  }

  .gallery-strip img,
  .gallery-strip img:nth-child(2) {
    height: 330px;
  }

  .footer-top {
    display: block;
  }

  .footer-contact {
    margin-top: 2rem;
  }
}

/* ==========================================================
   26. RESPONSIVE - SMALL MOBILE
========================================================== */

/* max-width 576px */

@media (max-width: 576px) {
  h1 { font-size: clamp(3rem, 16vw, 4.4rem); }
  h2 { font-size: clamp(2rem, 11vw, 3rem); }
  .mobile-panel { width: 100vw; }
  .brand-logo, .site-header.scrolled .brand-logo { height: 40px; max-width: 220px; }
}
@media (max-width: 991px) {

  .about-trust-timeline::before {
    left: 32px !important;
  }

  .trust-milestone {
    grid-template-columns: 64px 1fr !important;
    min-height: auto !important;
  }

  .trust-milestone__node {
    grid-column: 1 !important;
  }

  .trust-milestone--left .trust-milestone__content,
  .trust-milestone--right .trust-milestone__content {
    grid-column: 2 !important;
    margin: 0 0 0 30px !important;
    justify-self: start !important;
    text-align: left !important;
  }

  .trust-milestone--left .trust-milestone__content::after,
  .trust-milestone--right .trust-milestone__content::before {
    left: -30px !important;
    right: auto !important;
    width: 30px !important;
  }
}
@media (max-width: 991px) {

  .trust-milestone--left .trust-milestone__content,
  .trust-milestone--right .trust-milestone__content {
    grid-column: 2 !important;
    justify-self: start !important;
    text-align: left !important;
    margin-left: 30px !important;
    margin-right: 0 !important;
  }
}
.trust-milestone--left .trust-milestone__content {
  justify-self: end;
  text-align: right;
  margin-right: 30px;
}

/* ==========================================================
   27. RESPONSIVE REPAIR PATCH
========================================================== */

@media (max-width: 991px) {
  .site-header {
    background: rgba(255, 255, 255, .96);
    backdrop-filter: blur(16px);
  }

  .nav-shell {
    min-height: 104px;
    padding-left: 22px;
    padding-right: 22px;
  }

  .brand-logo,
  .site-header.scrolled .brand-logo {
    height: 82px !important;
    max-width: 150px !important;
    padding: 4px !important;
  }

  .brand .logo-light {
    opacity: 0;
  }

  .brand .logo-dark {
    opacity: 1;
  }

  .menu-toggle {
    display: grid;
    height: 48px;
    place-content: center;
    position: relative;
    width: 56px;
    z-index: 2800;
  }

  .menu-toggle span,
  .site-header.scrolled .menu-toggle span {
    background: var(--navy);
    width: 44px;
  }

  .mobile-panel {
    background: linear-gradient(135deg, #071A35 0%, #012149 100%) !important;
    bottom: 0 !important;
    height: 100dvh !important;
    left: 0 !important;
    box-shadow: -24px 0 70px rgba(0, 0, 0, .24);
    max-width: none;
    overflow-y: auto;
    padding: 118px 30px 34px;
    right: auto !important;
    top: 0 !important;
    width: 100vw !important;
    z-index: 2600;
  }

  body.mobile-menu-open {
    overflow: hidden;
  }

  .mobile-panel img {
    height: 74px !important;
    margin-bottom: 1.25rem;
    max-width: 170px;
  }

  .mobile-panel a {
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    font-size: 1.06rem;
    opacity: 1;
    padding: .78rem 0;
    width: 100%;
  }

  .hero-title {
    font-size: clamp(2.75rem, 11vw, 3.85rem) !important;
    letter-spacing: -.045em;
    line-height: .95;
  }

  .home-about-copy p,
  .about-intro-copy p,
  .who-we-are-copy p,
  .about-framework-intro p {
    text-align: left !important;
    word-spacing: normal !important;
  }

  .premium-services-grid .premium-service-card:nth-child(2),
  .premium-services-grid .premium-service-card:nth-child(2):hover {
    transform: none !important;
  }

  .service-process-timeline {
    border-top: 0;
    gap: 1rem;
  }

  .service-process-step {
    border: 1px solid rgba(1, 33, 73, .08);
    border-radius: 18px;
    min-height: auto;
    padding: 1.2rem;
  }

  .service-process-step::before {
    display: none;
  }

  .service-process-step h3 {
    margin-top: .65rem;
  }

  .trust-milestone {
    grid-template-columns: 56px minmax(0, 1fr) !important;
    gap: .8rem !important;
    overflow: visible;
  }

  .about-trust-timeline::before {
    left: 28px !important;
  }

  .trust-milestone--left .trust-milestone__content,
  .trust-milestone--right .trust-milestone__content {
    grid-column: 2 !important;
    margin-left: 12px !important;
    margin-right: 0 !important;
    max-width: 100% !important;
    min-width: 0;
    padding: 1rem !important;
  }

  .trust-milestone--left .trust-milestone__content::after,
  .trust-milestone--right .trust-milestone__content::before {
    left: -22px !important;
    width: 22px !important;
  }

  .cta-copy h2 {
    font-size: clamp(2.1rem, 10vw, 3.2rem);
    line-height: 1.05;
  }
}

@media (max-width: 576px) {
  h1 {
    font-size: clamp(2.65rem, 12vw, 3.65rem);
  }

  .nav-shell {
    min-height: 96px;
    padding-left: 18px;
    padding-right: 18px;
  }

  .brand-logo,
  .site-header.scrolled .brand-logo {
    height: 76px !important;
    max-width: 135px !important;
  }

  .mobile-panel {
    width: 100vw !important;
  }

  .home-hero,
  .inner-hero {
    min-height: 100svh;
  }

  .hero-content,
  .inner-hero .container-fluid {
    padding-top: 125px;
  }

  .hero-title {
    font-size: clamp(2.85rem, 13vw, 3.75rem) !important;
  }

  .hero-description {
    font-size: .95rem;
    line-height: 1.55;
  }

  .premium-service-card {
    min-height: 400px;
  }

  .premium-service-card__panel {
    padding: 1.35rem;
  }

  .premium-service-card p {
    display: none !important;
  }

  .trust-milestone__content h3 {
    font-size: 20px !important;
    line-height: 1.2;
  }

  .trust-milestone__content p {
    font-size: 15px !important;
    line-height: 1.55;
  }
}

/* Mobile parity fixes for Services and Projects pages only */
@media (max-width: 768px) {
  .services-page .inner-hero,
  .projects-page .inner-hero {
    min-height: auto !important;
    padding-top: 0;
  }

  .services-page .inner-hero .container-fluid,
  .projects-page .inner-hero .container-fluid {
    padding-top: 7.25rem !important;
    padding-bottom: 4.75rem !important;
  }

  .services-page .inner-hero h1,
  .projects-page .inner-hero h1 {
    font-size: clamp(3rem, 12vw, 4.1rem) !important;
    line-height: .98;
    max-width: 100%;
  }

  .services-page .inner-hero p,
  .projects-page .inner-hero p {
    font-size: 1rem;
    line-height: 1.7;
    max-width: 100%;
  }

  .premium-services-section {
    overflow: hidden;
  }

  .premium-services-grid {
    align-items: stretch;
    gap: 1.5rem;
  }

  .premium-service-card {
    min-height: 430px;
    display: block;
  }

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

  .premium-service-card__panel {
    inset: auto 1rem 1rem !important;
    min-height: auto !important;
    max-height: calc(100% - 2rem);
    padding: 1.35rem !important;
    justify-content: flex-end;
  }

  .premium-service-card__number {
    margin-bottom: .95rem !important;
    padding-bottom: 0 !important;
  }

  .premium-service-card h3 {
    font-size: clamp(1.45rem, 6vw, 2rem);
    line-height: 1.08;
  }

  .premium-service-card p {
    display: none !important;
  }

  .premium-service-card__link {
    margin-top: 1rem;
    padding-top: .85rem;
  }
}

@media (max-width: 576px) {
  .services-page .inner-hero .container-fluid,
  .projects-page .inner-hero .container-fluid {
    padding-top: 6.5rem !important;
    padding-bottom: 4rem !important;
  }

  .services-page .inner-hero h1,
  .projects-page .inner-hero h1 {
    font-size: clamp(2.75rem, 12.5vw, 3.7rem) !important;
  }

  .premium-service-card {
    min-height: 390px !important;
  }

  .premium-service-card__panel {
    padding: 1.15rem !important;
  }

  .premium-service-card h3 {
    font-size: clamp(1.35rem, 6.3vw, 1.85rem);
  }

  .premium-service-card__link {
    font-size: .72rem;
  }
}
