/* =========================================================
   YDE SAVVY — DESIGN TOKENS
========================================================= */
:root {
  --navy: #0E1B2E;
  --navy-deep: #08101C;
  --royal: #0EA5E9;
  --royal-light: #38BDF8;
  --orange: #E11D48;
  --orange-light: #FF4D6A;
  --white: #FFFFFF;
  --ink: #0F1A2C;
  --muted: #637B9D;
  --line: rgba(99, 123, 157, 0.12);

  --glass-bg: rgba(255, 255, 255, 0.55);
  --glass-bg-dark: rgba(255, 255, 255, 0.06);
  --glass-border: rgba(255, 255, 255, 0.35);
  --glass-border-dark: rgba(255, 255, 255, 0.12);

  --font-display: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;

  --radius: 20px;
  --radius-sm: 12px;
  --shadow-soft: 0 20px 60px -20px rgba(14, 27, 46, 0.25);
  --shadow-lift: 0 30px 80px -20px rgba(14, 27, 46, 0.35);
  --ease: cubic-bezier(.16, .84, .44, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  margin: 0;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: var(--font-display);
  color: var(--navy);
  font-weight: 700;
  margin: 0;
}

p {
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
}

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

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

section {
  position: relative;
}

.section {
  padding: 110px 0;
}

.section-alt {
  background: linear-gradient(180deg, #F5F8FC 0%, #FFFFFF 100%);
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* =========================================================
   LOADER
========================================================= */
.page-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--navy-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .6s var(--ease), visibility .6s var(--ease);
}

.page-loader.loaded {
  opacity: 0;
  visibility: hidden;
}

.loader-mark {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  color: #fff;
}

.loader-mark span {
  font-family: var(--font-display);
  letter-spacing: 4px;
  font-size: 13px;
  font-weight: 600;
  opacity: .8;
}

.loader-ring {
  fill: none;
  stroke: var(--orange);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-dasharray: 210;
  stroke-dashoffset: 60;
  transform-origin: center;
  animation: spin 1.1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* =========================================================
   CURSOR GLOW
========================================================= */
.cursor-glow {
  position: fixed;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(30, 136, 229, 0.12) 0%, transparent 70%);
  pointer-events: none;
  z-index: 2;
  transform: translate(-50%, -50%);
  transition: opacity .3s ease;
  opacity: 0;
}

/* =========================================================
   NAV
========================================================= */
.site-nav {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 92%;
  max-width: 1280px;
  z-index: 1000;
  padding: 10px 24px;
  background: rgba(14, 27, 46, 0.45);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 100px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transition: all .4s var(--ease);
}

.site-nav.scrolled {
  top: 12px;
  padding: 8px 24px;
  background: rgba(255, 255, 255, 0.85);
  border-color: rgba(26, 79, 156, 0.12);
  box-shadow: 0 10px 40px rgba(14, 27, 46, 0.12);
}

.site-nav .container {
  width: 100%;
  max-width: 100%;
  padding: 0;
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #FFFFFF;
  padding: 6px 16px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  transition: all .4s var(--ease);
  flex-shrink: 0;
}

.site-nav.scrolled .brand {
  background: transparent;
  box-shadow: none;
  padding: 0;
}

.brand-logo-img {
  height: 38px;
  width: auto;
  display: block;
  flex-shrink: 0;
}

.nav-close {
  display: none;
}

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

.nav-links a {
  font-size: 14.5px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  position: relative;
  padding: 4px 0;
  transition: color .25s ease;
}

.site-nav.scrolled .nav-links a {
  color: var(--navy);
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: var(--orange);
  transition: width .3s var(--ease);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-links a:hover {
  color: var(--orange);
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  color: #fff !important;
  font-weight: 600;
  font-size: 14.5px;
  padding: 12px 24px;
  border-radius: 100px;
  border: none;
  box-shadow: 0 10px 30px -8px rgba(225, 29, 72, 0.4);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
  white-space: nowrap;
  cursor: pointer;
}

.btn-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px -8px rgba(225, 29, 72, 0.5);
  color: #fff;
}

.btn-cta-lg {
  padding: 16px 30px;
  font-size: 15.5px;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  color: #fff;
  padding: 14.5px 28px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 15px;
  backdrop-filter: blur(6px);
  transition: all .3s var(--ease);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #fff;
  color: #fff;
}

.btn-ghost.light {
  border-color: rgba(255, 255, 255, 0.4);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
  cursor: pointer;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: .3s;
}

.site-nav.scrolled .nav-toggle span {
  background: var(--navy);
}

/* =========================================================
   HERO
========================================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(150deg, var(--navy-deep) 0%, var(--navy) 55%, #112136 100%);
  overflow: hidden;
  padding-top: 100px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.blueprint-grid {
  position: absolute;
  inset: -10%;
  background-image:
    linear-gradient(rgba(56, 189, 248, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(56, 189, 248, 0.12) 1px, transparent 1px);
  background-size: 46px 46px;
  animation: driftGrid 40s linear infinite;
  mask-image: radial-gradient(ellipse at center, black 40%, transparent 85%);
}

@keyframes driftGrid {
  from {
    transform: translate(0, 0);
  }

  to {
    transform: translate(46px, 46px);
  }
}

.float-layer {
  position: absolute;
  inset: 0;
  perspective: 1200px;
  transform-style: preserve-3d;
}

.float-el {
  position: absolute;
  will-change: transform;
  transform-style: preserve-3d;
}

.crane {
  font-size: 68px;
  color: rgba(255, 255, 255, 0.12);
  transform: rotateX(25deg) rotateY(15deg);
  animation: floatY-crane 8s ease-in-out infinite;
}

.doc {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--glass-bg-dark);
  border: 1px solid var(--glass-border-dark);
  backdrop-filter: blur(10px);
  border-radius: 14px;
  padding: 12px 18px;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  box-shadow: 0 15px 35px -10px rgba(0, 0, 0, 0.35);
  transition: border-color 0.4s ease;
}

.doc:hover {
  border-color: rgba(255, 140, 0, 0.4);
}

.doc i {
  color: var(--orange);
  font-size: 16px;
}

.doc-boq {
  transform: rotateX(15deg) rotateY(-20deg) rotateZ(5deg);
  animation: floatY-boq 7s ease-in-out infinite;
}

.doc-cad {
  transform: rotateX(15deg) rotateY(15deg) rotateZ(-5deg);
  animation: floatY-cad 8s ease-in-out infinite;
}

.doc-measure {
  transform: rotateX(20deg) rotateY(-10deg) rotateZ(8deg);
  animation: floatY-measure 6.5s ease-in-out infinite;
}

.card-3d {
  position: absolute;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(30, 136, 229, 0.18) 0%, rgba(30, 136, 229, 0.02) 100%);
  border: 1.5px dashed rgba(79, 163, 237, 0.4);
  box-shadow: 0 0 30px rgba(30, 136, 229, 0.12), inset 0 0 20px rgba(30, 136, 229, 0.1);
  transform-style: preserve-3d;
}

.building-1 {
  width: 100px;
  height: 240px;
  bottom: -20px;
  left: 14%;
  transform: rotateX(20deg) rotateY(-30deg) rotateZ(10deg);
  animation: floatBuilding1 9s ease-in-out infinite;
  border-bottom: none;
  background-image:
    linear-gradient(rgba(79, 163, 237, 0.15) 2px, transparent 2px),
    linear-gradient(90deg, rgba(79, 163, 237, 0.15) 2px, transparent 2px);
  background-size: 20px 20px;
}

.building-2 {
  width: 130px;
  height: 190px;
  bottom: -10px;
  right: 18%;
  transform: rotateX(20deg) rotateY(25deg) rotateZ(-8deg);
  animation: floatBuilding2 10s ease-in-out infinite;
  background-image:
    linear-gradient(rgba(79, 163, 237, 0.15) 2px, transparent 2px),
    linear-gradient(90deg, rgba(79, 163, 237, 0.15) 2px, transparent 2px);
  background-size: 25px 25px;
}

.ring {
  border-radius: 50%;
  border: 1.5px solid rgba(16, 185, 129, 0.35);
  position: absolute;
}

.ring-1 {
  width: 260px;
  height: 260px;
  top: 12%;
  right: 6%;
  transform: rotateX(45deg) rotateY(15deg);
  animation: spinSlow1 30s linear infinite;
}

.ring-2 {
  width: 160px;
  height: 160px;
  bottom: 14%;
  left: 4%;
  border-color: rgba(56, 189, 248, 0.35);
  transform: rotateX(-35deg) rotateY(20deg);
  animation: spinSlow2 20s linear infinite reverse;
}

@keyframes spinSlow1 {
  from {
    transform: rotateX(45deg) rotateY(15deg) rotateZ(0deg);
  }

  to {
    transform: rotateX(45deg) rotateY(15deg) rotateZ(360deg);
  }
}

@keyframes spinSlow2 {
  from {
    transform: rotateX(-35deg) rotateY(20deg) rotateZ(360deg);
  }

  to {
    transform: rotateX(-35deg) rotateY(20deg) rotateZ(0deg);
  }
}

@keyframes floatY-crane {

  0%,
  100% {
    transform: rotateX(25deg) rotateY(15deg) translateY(0);
  }

  50% {
    transform: rotateX(25deg) rotateY(15deg) translateY(-14px);
  }
}

@keyframes floatY-boq {

  0%,
  100% {
    transform: rotateX(15deg) rotateY(-20deg) rotateZ(5deg) translateY(0);
  }

  50% {
    transform: rotateX(15deg) rotateY(-20deg) rotateZ(5deg) translateY(-16px);
  }
}

@keyframes floatY-cad {

  0%,
  100% {
    transform: rotateX(15deg) rotateY(15deg) rotateZ(-5deg) translateY(0);
  }

  50% {
    transform: rotateX(15deg) rotateY(15deg) rotateZ(-5deg) translateY(-20px);
  }
}

@keyframes floatY-measure {

  0%,
  100% {
    transform: rotateX(20deg) rotateY(-10deg) rotateZ(8deg) translateY(0);
  }

  50% {
    transform: rotateX(20deg) rotateY(-10deg) rotateZ(8deg) translateY(-12px);
  }
}

@keyframes floatBuilding1 {

  0%,
  100% {
    transform: rotateX(20deg) rotateY(-30deg) rotateZ(10deg) translateY(0);
  }

  50% {
    transform: rotateX(20deg) rotateY(-30deg) rotateZ(10deg) translateY(-12px);
  }
}

@keyframes floatBuilding2 {

  0%,
  100% {
    transform: rotateX(20deg) rotateY(25deg) rotateZ(-8deg) translateY(0);
  }

  50% {
    transform: rotateX(20deg) rotateY(25deg) rotateZ(-8deg) translateY(-15px);
  }
}

.hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  animation: riseUp linear infinite;
}

@keyframes riseUp {
  from {
    transform: translateY(0);
    opacity: 0;
  }

  10% {
    opacity: 1;
  }

  90% {
    opacity: 1;
  }

  to {
    transform: translateY(-100vh);
    opacity: 0;
  }
}

.hero-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 220px;
  background: linear-gradient(180deg, transparent, var(--white));
}

.hero-content {
  position: relative;
  z-index: 3;
}

.hero-swiper {
  padding-bottom: 10px;
}

.hero-slide-inner {
  max-width: 720px;
}

.eyebrow {
  display: inline-block;
  color: var(--orange);
  font-weight: 700;
  font-size: 13.5px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.eyebrow.light {
  color: var(--orange-light);
}

.hero h1 {
  color: #fff;
  font-size: clamp(2.2rem, 4.6vw, 3.75rem);
  line-height: 1.12;
  margin-bottom: 22px;
  letter-spacing: -0.5px;
}

.hero p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
  max-width: 600px;
  margin-bottom: 34px;
}

.hero-actions {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.hero-pagination {
  display: flex;
  gap: 8px;
  margin-top: 52px;
}

.hero-pagination .swiper-pagination-bullet {
  width: 34px;
  height: 4px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.25);
  opacity: 1;
  transition: .3s;
}

.hero-pagination .swiper-pagination-bullet-active {
  background: var(--orange);
}

.scroll-hint {
  position: absolute;
  bottom: 34px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 3;
  color: rgba(255, 255, 255, 0.5);
  font-size: 11px;
  letter-spacing: 2px;
}

.scroll-line {
  width: 1px;
  height: 34px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.6), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0% {
    opacity: 0;
    transform: scaleY(0.3);
  }

  50% {
    opacity: 1;
    transform: scaleY(1);
  }

  100% {
    opacity: 0;
    transform: scaleY(0.3);
    transform-origin: bottom;
  }
}

/* =========================================================
   CLIENTS MARQUEE
========================================================= */
.section-clients {
  padding: 70px 0 60px;
}

.section-eyebrow {
  color: var(--royal);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 14px;
  display: block;
}

.text-center {
  text-align: center;
}

.marquee {
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}

.marquee-track {
  display: flex;
  gap: 60px;
  width: max-content;
  animation: marqueeMove 28s linear infinite;
}

@keyframes marqueeMove {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.marquee-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  transition: all .3s var(--ease);
}

.client-brand-logo {
  height: 44px;
  width: auto;
  max-width: 170px;
  object-fit: contain;
  filter: none;
  opacity: 1;
  transition: all .3s ease;
}

.marquee-logo:hover .client-brand-logo {
  filter: none;
  opacity: 1;
  transform: scale(1.08);
}

.client-name-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: #B9C4D4;
  letter-spacing: 0.5px;
  transition: all .3s ease;
}

.marquee-logo:hover .client-name-text {
  color: var(--royal);
  opacity: 1;
}

/* =========================================================
   STATS
========================================================= */
.section-stats {
  padding: 70px 0;
  background: linear-gradient(135deg, var(--navy) 0%, #1A2E4C 100%);
  position: relative;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}

.stat-card {
  text-align: center;
  padding: 20px 10px;
}

.stat-value {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 2.6vw, 2.6rem);
  font-weight: 800;
  color: #fff;
}

.stat-value span {
  background: linear-gradient(135deg, #fff, var(--orange-light));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-label {
  color: rgba(255, 255, 255, 0.65);
  font-size: 13.5px;
  margin-top: 8px;
  font-weight: 500;
}

/* =========================================================
   SECTION HEADS
========================================================= */
.section-head {
  max-width: 680px;
  margin: 0 auto 56px;
  text-align: center;
}

.section-head h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.section-sub {
  font-size: 16.5px;
}

/* =========================================================
   GLASS CARDS
========================================================= */
.glass-card {
  background: var(--glass-bg);
  border: 1px solid rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(16px);
  border-radius: var(--radius);
  padding: 36px 30px;
  height: 100%;
  box-shadow:
    0 10px 30px -15px rgba(10, 35, 66, 0.15),
    inset 0 1px 2px rgba(255, 255, 255, 0.6);
  transition:
    transform .4s var(--ease),
    box-shadow .4s var(--ease),
    border-color .4s var(--ease),
    background-color .4s var(--ease);
  transform-style: preserve-3d;
  perspective: 1000px;
  transform: rotateX(0deg) rotateY(0deg) translateZ(0);
}

.tilt-card {
  /* The class is retained, but behavior is now handled cleanly by static 3D CSS hover */
}

.glass-card:hover {
  background: rgba(255, 255, 255, 0.7);
  border-color: rgba(30, 136, 229, 0.25);
  transform: translateY(-8px) rotateX(4deg) rotateY(-2deg) translateZ(10px);
  box-shadow:
    0 25px 50px -20px rgba(10, 35, 66, 0.25),
    0 0 30px -5px rgba(30, 136, 229, 0.12),
    inset 0 1px 3px rgba(255, 255, 255, 0.8);
}

.glass-card-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--royal), #0B4F6C);
  color: #fff;
  font-size: 24px;
  margin-bottom: 22px;
  box-shadow: 0 12px 24px -8px rgba(14, 165, 233, 0.4);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
  transform: translateZ(0);
}

.glass-card:hover .glass-card-icon {
  transform: translateZ(25px) scale(1.05);
  box-shadow: 0 16px 32px -8px rgba(14, 165, 233, 0.55);
}

.glass-card-icon.small {
  width: 50px;
  height: 50px;
  font-size: 20px;
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  box-shadow: 0 12px 24px -8px rgba(16, 185, 129, 0.4);
}

.glass-card:hover .glass-card-icon.small {
  box-shadow: 0 16px 32px -8px rgba(16, 185, 129, 0.55);
}

.glass-card h3,
.glass-card h4 {
  font-size: 20px;
  margin-bottom: 12px;
  transition: transform .4s var(--ease);
  transform: translateZ(0);
}

.glass-card h4 {
  font-size: 17px;
  margin-bottom: 10px;
}

.glass-card:hover h3,
.glass-card:hover h4 {
  transform: translateZ(15px);
}

.glass-card p {
  font-size: 14.5px;
  transition: transform .4s var(--ease);
  transform: translateZ(0);
}

.glass-card:hover p {
  transform: translateZ(10px);
}

.why-card {
  padding: 30px 26px;
}

/* =========================================================
   INDUSTRIES
========================================================= */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}

.industry-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 44px 20px;
  min-height: 175px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: all .35s var(--ease);
  box-shadow: 0 10px 30px -15px rgba(10, 35, 66, 0.12);
}

.industry-card i {
  font-size: 38px;
  color: var(--royal);
  margin-bottom: 16px;
  display: block;
  transition: .35s;
}

.industry-card span {
  font-weight: 600;
  font-size: 15px;
  color: var(--navy);
  line-height: 1.35;
}

.industry-card:hover {
  transform: translateY(-8px);
  border-color: var(--orange);
  box-shadow: 0 20px 40px -18px rgba(225, 29, 72, 0.25);
}

.industry-card:hover i {
  color: var(--orange);
  transform: scale(1.1);
}

/* =========================================================
   PROJECTS
========================================================= */
.project-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 10px 30px -20px rgba(10, 35, 66, 0.2);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
  height: 100%;
}

.project-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lift);
}

.project-media {
  height: 180px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--navy), var(--royal));
}

.project-media-pattern {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 24px 24px;
}

.project-status {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .5px;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.92);
  color: var(--navy);
}

.status-in-progress {
  background: rgba(255, 140, 0, 0.92);
  color: #fff;
}

.project-body {
  padding: 26px;
}

.project-body h3 {
  font-size: 18px;
  margin-bottom: 14px;
}

.project-meta {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.project-meta li {
  font-size: 13.5px;
  color: var(--muted);
  display: flex;
  gap: 8px;
  align-items: center;
}

.project-meta i {
  color: var(--royal);
  width: 14px;
}

/* =========================================================
   PROCESS TIMELINE
========================================================= */
.process-line {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  position: relative;
  flex-wrap: wrap;
}

.process-line::before {
  content: '';
  position: absolute;
  top: 34px;
  left: 5%;
  right: 5%;
  height: 2px;
  background: linear-gradient(90deg, rgba(14, 165, 233, 0.15), rgba(225, 29, 72, 0.4), rgba(14, 165, 233, 0.15));
}

.process-step {
  flex: 1;
  min-width: 120px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.process-icon {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  margin: 0 auto 16px;
  background: #fff;
  border: 2px solid var(--royal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--royal);
  box-shadow: 0 14px 30px -14px rgba(14, 165, 233, 0.3);
  transition: .4s var(--ease);
}

.process-step:hover .process-icon {
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  border-color: var(--orange);
  color: #fff;
  transform: translateY(-6px) scale(1.05);
}

.process-num {
  display: block;
  font-size: 11px;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.process-step h4 {
  font-size: 14.5px;
}

/* =========================================================
   TESTIMONIALS
========================================================= */
.testimonial-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px;
  box-shadow: 0 10px 30px -20px rgba(10, 35, 66, 0.2);
  height: 100%;
}

.testimonial-stars {
  color: var(--orange);
  margin-bottom: 16px;
  font-size: 14px;
}

.testimonial-card p {
  color: var(--ink);
  font-size: 15.5px;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.avatar-initial {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--royal), var(--navy));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-family: var(--font-display);
}

.testimonial-author strong {
  display: block;
  font-size: 14.5px;
  color: var(--navy);
}

.testimonial-author span {
  font-size: 12.5px;
  color: var(--muted);
}

.testimonial-pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 36px;
}

.testimonial-pagination .swiper-pagination-bullet {
  width: 9px;
  height: 9px;
  background: var(--line);
  opacity: 1;
}

.testimonial-pagination .swiper-pagination-bullet-active {
  background: var(--orange);
  width: 26px;
  border-radius: 6px;
}

/* =========================================================
   INSIGHTS
========================================================= */
.insight-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
  height: 100%;
}

.insight-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lift);
}

.insight-media {
  height: 140px;
  background: linear-gradient(135deg, #eef4fc, #f7f9fc);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
  color: var(--royal);
}

.insight-body {
  padding: 26px;
}

.insight-tag {
  color: var(--orange);
  font-weight: 700;
  font-size: 11.5px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.insight-body h4 {
  font-size: 16.5px;
  margin: 12px 0;
  line-height: 1.4;
}

.insight-body p {
  font-size: 14px;
  margin-bottom: 16px;
}

.insight-link {
  color: var(--royal);
  font-weight: 600;
  font-size: 13.5px;
  display: inline-flex;
  gap: 8px;
  align-items: center;
  transition: .3s;
}

.insight-link:hover {
  gap: 12px;
  color: var(--orange);
}

/* =========================================================
   CTA
========================================================= */
.section-cta {
  position: relative;
  padding: 110px 0;
  overflow: hidden;
  background: linear-gradient(135deg, var(--navy-deep), var(--navy) 60%, #112136);
}

.cta-bg {
  position: absolute;
  inset: 0;
  opacity: .6;
}

.cta-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.cta-text h2 {
  color: #fff;
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  margin: 14px 0 18px;
  letter-spacing: -0.5px;
}

.cta-text p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 16.5px;
  margin-bottom: 32px;
  max-width: 480px;
}

.cta-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.glass-form {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(18px);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow-lift);
}

.glass-form h3 {
  color: #fff;
  font-size: 20px;
  margin-bottom: 22px;
}

.glass-form .form-control {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  border-radius: 12px;
  padding: 13px 16px;
  font-size: 14.5px;
}

.glass-form .form-control::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.glass-form .form-control:focus {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--orange);
  color: #fff;
  box-shadow: 0 0 0 3px rgba(225, 29, 72, 0.15);
  outline: none;
}

.glass-form select.form-control option {
  background: var(--navy);
  color: #fff;
}

.form-status {
  background: rgba(76, 187, 120, 0.15);
  border: 1px solid rgba(76, 187, 120, 0.4);
  color: #c9f2d8;
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 13.5px;
  margin-bottom: 18px;
}

/* =========================================================
   FOOTER
========================================================= */
.site-footer {
  background: var(--navy-deep);
  padding: 80px 0 0;
  color: rgba(255, 255, 255, 0.65);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.3fr 1.3fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
  margin: 18px 0 20px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: .3s;
}

.footer-social a:hover {
  background: var(--orange);
}

.footer-col h5 {
  color: #fff;
  font-size: 15px;
  margin-bottom: 20px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col ul a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  transition: .3s;
}

.footer-col ul a:hover {
  color: var(--orange);
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  line-height: 1.5;
}

.footer-contact i {
  color: var(--orange);
  margin-top: 3px;
}

.newsletter-form {
  display: flex;
  gap: 8px;
  margin-top: 16px;
}

.newsletter-form input {
  flex: 1;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  padding: 11px 14px;
  color: #fff;
  font-size: 13.5px;
}

.newsletter-form button {
  width: 42px;
  border-radius: 10px;
  border: none;
  background: var(--orange);
  color: #fff;
  cursor: pointer;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding: 26px 0;
  font-size: 13px;
  flex-wrap: wrap;
  gap: 12px;
}

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

.footer-legal a:hover {
  color: var(--orange);
}

/* =========================================================
   RESPONSIVE
========================================================= */
@media (max-width:1199px) {
  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

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

@media (max-width:991px) {
  .brand {
    order: 1 !important;
  }

  .site-nav .btn-cta {
    order: 2 !important;
    margin-left: auto !important;
    padding: 6px 12px !important;
    font-size: 11px !important;
    gap: 6px !important;
    white-space: nowrap !important;
  }

  .nav-toggle {
    display: flex;
    order: 3 !important;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 280px;
    background: var(--navy);
    flex-direction: column;
    justify-content: center;
    gap: 26px;
    padding: 40px;
    transition: right .4s var(--ease);
    z-index: 999;
  }

  .nav-close {
    display: block;
    position: absolute;
    top: 24px;
    right: 24px;
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    line-height: 1;
    padding: 8px;
    z-index: 1001;
    transition: color .25s ease, transform .25s ease;
  }

  .nav-close:hover {
    color: var(--orange);
    transform: rotate(90deg);
  }

  .nav-close svg {
    display: block;
  }

  .nav-links.open {
    right: 0;
  }

  .nav-links a {
    color: #fff !important;
  }

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

  .process-line::before {
    display: none;
  }
}

@media (max-width:767px) {

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

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

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

  .section {
    padding: 80px 0;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}