/* ================================================================
   VAASTU — SHARP PREMIUM THEME v3
   Logo palette: Sky Blue #6ec6f0 · Steel #7a8fa6 · Navy #0d1f35
   Concept: Deep navy + electric sky blue + crisp white
   Bold typography · Hard edges · Maximum contrast
   ================================================================ */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,700;1,9..40,300&family=Playfair+Display:wght@400;700&display=swap');

:root {
  /* Core palette — from logo */
  --navy: #0b1929;
  --navy2: #0f2035;
  --navy3: #162840;
  --navy4: #1c324e;
  --sky: #6ec6f0;
  --sky-bright: #4db8f0;
  --sky-deep: #2a9fd4;
  --sky-dim: rgba(110, 198, 240, 0.14);
  --sky-glow: rgba(110, 198, 240, 0.35);
  --steel: #7a8fa6;
  --steel-light: #a8bdd0;
  --white: #ffffff;
  --offwhite: #e8f0f8;
  --muted: rgba(168, 189, 208, 0.55);
  --gold: #f0b429;
  --gold-dim: rgba(240, 180, 41, 0.18);
  /* Keep old vars pointing to new values for compat */
  --black: var(--navy);
  --black2: var(--navy2);
  --black3: var(--navy3);
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--navy);
  color: var(--offwhite);
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
  cursor: none;
}

@media (pointer: coarse) {
  body {
    cursor: auto;
  }

  .v-cursor,
  .v-cursor-ring {
    display: none !important;
  }
}

/* ── CURSOR ── */
.v-cursor {
  position: fixed;
  width: 10px;
  height: 10px;
  background: var(--sky-bright);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width .15s, height .15s;
  box-shadow: 0 0 12px var(--sky-glow);
}

.v-cursor-ring {
  position: fixed;
  width: 32px;
  height: 32px;
  border: 1.5px solid var(--sky);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: all .12s ease-out;
  opacity: .7;
}

/* ── NAVIGATION ── */
#main-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 60px;
  transition: all .4s;
}

#main-nav.scrolled {
  background: rgba(11, 25, 41, .97);
  backdrop-filter: blur(20px);
  padding: 12px 60px;
  border-bottom: 1px solid rgba(110, 198, 240, .2);
  box-shadow: 0 4px 40px rgba(0, 0, 0, .5);
}

/* LOGO — clean, no box */
.nav-logo-clean {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-logo-img {
  height: 50px;
  width: auto;
  mix-blend-mode: screen;
  filter: brightness(1.6) saturate(1.3) contrast(1.1);
}

.nav-brand-text {
  display: flex;
  flex-direction: column;
}

.nav-brand-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 4px;
  color: var(--white);
  line-height: 1;
}

.nav-brand-sub {
  font-size: 8px;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--sky);
  font-weight: 500;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-menu a {
  text-decoration: none;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--steel-light);
  transition: color .25s;
  position: relative;
  padding-bottom: 4px;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--sky);
  transition: width .3s;
  border-radius: 1px;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--white);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
  width: 100%;
}

.nav-cta-btn {
  background: var(--sky) !important;
  color: var(--navy) !important;
  padding: 10px 26px;
  font-weight: 700 !important;
  letter-spacing: 2px !important;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1) !important;
  box-shadow: 0 4px 15px rgba(110, 198, 240, 0.1) !important;
}

.nav-cta-btn:hover {
  background: var(--sky-bright) !important;
  box-shadow: 0 10px 25px var(--sky-glow) !important;
  color: var(--navy) !important;
  transform: translateY(-2px);
}

.nav-cta-btn::after {
  display: none !important;
}

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

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all .3s;
}

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

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

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

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  padding: 140px 60px 80px;
  background: var(--navy);
  position: relative;
  overflow: hidden;
  min-height: 360px;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(110, 198, 240, .06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(110, 198, 240, .06) 1px, transparent 1px);
  background-size: 80px 80px;
  animation: gridShift 20s linear infinite;
  z-index: 0;
}

.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 0%, rgba(11, 25, 41, .8) 100%);
  z-index: 1;
}

.page-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.page-hero-tag {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.page-hero-tag-line {
  width: 44px;
  height: 2px;
  background: var(--sky);
}

.page-hero-tag span {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--sky);
}

.page-hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(52px, 7vw, 96px);
  line-height: .9;
  letter-spacing: 2px;
  color: var(--white);
  margin-bottom: 20px;
}

.page-hero h1 em {
  font-style: normal;
  color: var(--sky);
}

.page-hero p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--muted);
  max-width: 520px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
}

.breadcrumb a {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color .3s;
}

.breadcrumb a:hover {
  color: var(--sky);
}

.breadcrumb sep {
  color: rgba(110, 198, 240, .3);
}

.breadcrumb .cur {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--sky);
  font-weight: 500;
}

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

  to {
    transform: translateY(80px);
  }
}

/* ── SECTIONS ── */
.section {
  padding: 100px 60px;
}

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

.section-mid {
  background: var(--navy2);
}

.section-deep {
  background: var(--navy3);
}

.container {
  max-width: 1280px;
  margin: 0 auto;
}

.sec-tag {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.sec-tag-line {
  width: 36px;
  height: 2px;
  background: var(--sky);
}

.sec-tag span {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--sky);
}

h2.sec-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(48px, 5.5vw, 80px);
  line-height: .88;
  letter-spacing: 1px;
  color: var(--white);
  margin-bottom: 18px;
}

h2.sec-title em {
  font-style: normal;
  color: var(--sky);
}

h2.sec-title.dark {
  color: var(--navy);
}

.sec-lead {
  font-size: 16px;
  line-height: 1.85;
  color: var(--muted);
  max-width: 540px;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-size: 11px;
  padding: 16px 40px;
  transition: all 0.45s cubic-bezier(0.23, 1, 0.32, 1);
  cursor: pointer;
  border: none;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn:active {
  transform: scale(0.96);
}

.btn-gold {
  background: var(--sky);
  color: var(--navy);
  box-shadow: 0 4px 15px rgba(110, 198, 240, 0.2);
}

.btn-gold:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 10px 25px rgba(110, 198, 240, 0.4);
  background: var(--sky-bright);
  color: var(--navy);
}

/* Shine effect for solid buttons */
.btn-gold::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.3) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-25deg);
  transition: none;
}

.btn-gold:hover::after {
  left: 150%;
  transition: all 0.7s ease-in-out;
}

.btn-outline {
  border: 1.5px solid rgba(110, 198, 240, 0.4);
  color: var(--sky);
  background: transparent;
}

.btn-outline:hover {
  border-color: var(--sky);
  background: var(--sky);
  color: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(110, 198, 240, 0.25);
}

.btn-dark-fill {
  background: rgba(110, 198, 240, 0.08);
  color: var(--sky);
  border: 1.5px solid rgba(110, 198, 240, 0.25);
}

.btn-dark-fill:hover {
  background: var(--sky);
  color: var(--navy);
  border-color: var(--sky);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(110, 198, 240, 0.25);
}

/* ── REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.reveal-l {
  opacity: 0;
  transform: translateX(-32px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal-l.visible {
  opacity: 1;
  transform: none;
}

.reveal-r {
  opacity: 0;
  transform: translateX(32px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal-r.visible {
  opacity: 1;
  transform: none;
}

/* ── STAT STRIP ── */
.stat-strip {
  background: var(--sky);
  position: relative;
  overflow: hidden;
}

.stat-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(90deg,
      transparent 0, transparent 280px,
      rgba(11, 25, 41, .08) 280px, rgba(11, 25, 41, .08) 281px);
}

.stat-strip-inner {
  display: flex;
  max-width: 1440px;
  margin: 0 auto;
  position: relative;
}

.ssi {
  flex: 1;
  padding: 32px 44px;
  border-right: 1px solid rgba(11, 25, 41, .15);
  display: flex;
  flex-direction: column;
}

.ssi:first-child {
  padding-left: 60px;
}

.ssi:last-child {
  border-right: none;
}

.ssi-n {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 60px;
  color: var(--navy);
  line-height: 1;
  letter-spacing: 1px;
}

.ssi-l {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(11, 25, 41, .6);
  margin-top: 2px;
}

/* ── MARQUEE ── */
.marquee-wrap {
  overflow: hidden;
  background: var(--navy2);
  padding: 14px 0;
  border-top: 2px solid rgba(110, 198, 240, .2);
  border-bottom: 2px solid rgba(110, 198, 240, .2);
}

.marquee-track {
  display: flex;
  gap: 48px;
  animation: marquee 22s linear infinite;
  white-space: nowrap;
  align-items: center;
}

.marquee-track span {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--steel-light);
}

.m-dot {
  width: 5px;
  height: 5px;
  background: var(--sky);
  border-radius: 50%;
  flex-shrink: 0;
}

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

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

/* ── SERVICE CARDS ── */
.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1px;
  background: rgba(110, 198, 240, .1);
}

.svc-card {
  flex: 1 1 300px;
  background: var(--navy2);
  padding: 44px 32px;
  position: relative;
  overflow: hidden;
  transition: background .3s, transform .4s, box-shadow .4s;
  cursor: default;
}

.svc-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 0;
  background: var(--sky);
  transition: height .4s;
}

.svc-card::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 0;
  background: linear-gradient(to left, rgba(110, 198, 240, .04), transparent);
  transition: width .4s;
}

.svc-card:hover::before {
  height: 4px;
}

.svc-card:hover::after {
  width: 100%;
}

.svc-card:hover {
  background: var(--navy3);
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, .5), 0 0 0 1px rgba(110, 198, 240, .2), 0 0 40px rgba(110, 198, 240, .06);
}

.svc-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 80px;
  color: rgba(110, 198, 240, .05);
  position: absolute;
  top: 4px;
  right: 12px;
  line-height: 1;
  transition: color .4s;
}

.svc-card:hover .svc-num {
  color: rgba(110, 198, 240, .12);
}

.svc-icon {
  width: 56px;
  height: 56px;
  background: var(--sky-dim);
  border: 1.5px solid rgba(110, 198, 240, .25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 24px;
  transition: background .3s, transform .4s, box-shadow .3s;
}

.svc-card:hover .svc-icon {
  background: var(--sky);
  transform: scale(1.1);
  box-shadow: 0 8px 24px rgba(110, 198, 240, .4);
}

.svc-card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 1px;
  color: var(--white);
  margin-bottom: 10px;
}

.svc-card p {
  font-size: 14px;
  line-height: 1.75;
  color: var(--muted);
}

.svc-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--sky);
  text-decoration: none;
  opacity: 0;
  transition: opacity .3s, gap .3s;
}

.svc-card:hover .svc-link {
  opacity: 1;
}

.svc-card:hover .svc-link:hover {
  gap: 14px;
}

/* ── PROCESS ── */
.process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 44px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--sky), var(--sky), transparent);
  opacity: .4;
}

.proc-step {
  text-align: center;
  padding: 0 14px;
}

.proc-ring {
  width: 90px;
  height: 90px;
  border: 2px solid rgba(110, 198, 240, .3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  background: var(--navy2);
  position: relative;
  transition: all .4s;
}

.proc-ring:hover {
  border-color: var(--sky);
  background: var(--sky);
  box-shadow: 0 0 40px rgba(110, 198, 240, .5);
  transform: scale(1.1);
}

.proc-ring:hover span {
  color: var(--navy);
}

.proc-ring::after {
  content: '';
  position: absolute;
  inset: 8px;
  border: 1px dashed rgba(110, 198, 240, .25);
  border-radius: 50%;
  animation: spinRing 8s linear infinite;
}

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

.proc-ring span {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 32px;
  color: var(--sky);
  position: relative;
  z-index: 1;
}

.proc-step h4 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 8px;
}

.proc-step p {
  font-size: 13px;
  line-height: 1.7;
  color: var(--muted);
}

/* ── SECTORS ── */
.sectors-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1px;
  background: rgba(110, 198, 240, .1);
}

.sector-card {
  background: var(--navy2);
  flex: 1 1 280px;
  padding: 40px 20px 30px;
  text-align: center;
  transition: background .3s, border-color .3s, transform .4s, box-shadow .3s;
}

.sector-card:hover {
  background: var(--navy3);
  transform: translateY(-4px);
  z-index: 1;
  box-shadow: 0 12px 30px rgba(0,0,0,0.4);
  border-color: var(--sky);
}

.sector-icon {
  font-size: 36px;
  margin-bottom: 14px;
  display: block;
  transition: transform .4s;
}

.sector-card:hover .sector-icon {
  transform: scale(1.2);
}

.sector-card h3 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 4px;
}

.sector-card p {
  font-size: 12px;
  color: var(--muted);
}

/* ── WHY US ── */
.why-list {
  display: flex;
  flex-direction: column;
}

.why-item {
  display: flex;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(110, 198, 240, .1);
  transition: padding-left .3s;
}

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

.why-icon {
  width: 46px;
  height: 46px;
  background: var(--sky-dim);
  border: 1.5px solid rgba(110, 198, 240, .25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
  transition: background .3s;
}

.why-item:hover .why-icon {
  background: var(--sky);
}

.why-item h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.why-item p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.7;
}

/* ── QUOTE BOX ── */
.quote-box {
  background: var(--navy3);
  border: 1.5px solid rgba(110, 198, 240, .15);
  border-left: 4px solid var(--sky);
  padding: 40px;
  position: relative;
  overflow: hidden;
}

.quote-box::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 160px;
  height: 160px;
  background: radial-gradient(circle, rgba(110, 198, 240, .08), transparent 70%);
  pointer-events: none;
}

.quote-text {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 16px;
  line-height: 1.8;
  color: var(--offwhite);
  padding-left: 0;
  margin-bottom: 24px;
}

.quote-text::before {
  content: '\201C';
  font-size: 60px;
  color: var(--sky);
  line-height: 0;
  vertical-align: -24px;
  margin-right: 8px;
  font-family: Georgia, serif;
}

.quote-author-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
}

.quote-author-role {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--sky);
}

.cert-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  margin-top: 24px;
  background: rgba(110, 198, 240, .1);
}

.cert-item {
  background: var(--navy2);
  padding: 14px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--sky);
  text-align: center;
  transition: background .3s;
}

.cert-item:hover {
  background: var(--sky);
  color: var(--navy);
}

/* ── TEAM ── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

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

.team-avatar {
  width: 100%;
  aspect-ratio: 1;
  background: var(--navy2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  position: relative;
  overflow: hidden;
  border: 1.5px solid rgba(110, 198, 240, .15);
  transition: border-color .3s;
}

.team-card:hover .team-avatar {
  border-color: var(--sky);
}

.team-avatar-letter {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 64px;
  color: rgba(110, 198, 240, .25);
}

.team-avatar::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--sky);
}

.team-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.team-role {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--sky);
  margin-bottom: 8px;
}

.team-bio {
  font-size: 13px;
  line-height: 1.7;
  color: var(--muted);
}

/* ── TESTIMONIALS ── */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.testi-card {
  background: var(--navy2);
  border: 1.5px solid rgba(110, 198, 240, .1);
  padding: 36px 28px;
  transition: border-color .3s, transform .4s, box-shadow .4s;
  position: relative;
  overflow: hidden;
}

.testi-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--sky);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s;
}

.testi-card:hover {
  border-color: rgba(110, 198, 240, .35);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, .4), 0 0 30px rgba(110, 198, 240, .06);
}

.testi-card:hover::after {
  transform: scaleX(1);
}

.testi-q {
  font-size: 48px;
  color: var(--sky);
  line-height: 1;
  margin-bottom: 10px;
  font-family: Georgia, serif;
}

.testi-text {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 14px;
  line-height: 1.9;
  color: var(--offwhite);
  margin-bottom: 24px;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testi-av {
  width: 44px;
  height: 44px;
  background: var(--sky);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px;
  color: var(--navy);
}

.testi-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
}

.testi-role {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--sky);
}

/* ── VALUES ── */
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(110, 198, 240, .1);
}

.value-card {
  background: var(--navy2);
  padding: 36px 24px;
  text-align: center;
  border-bottom: 3px solid transparent;
  transition: all .3s;
}

.value-card:hover {
  background: var(--navy3);
  border-bottom-color: var(--sky);
  transform: translateY(-4px);
}

.value-icon {
  font-size: 36px;
  margin-bottom: 14px;
  display: block;
  transition: transform .5s;
}

.value-card:hover .value-icon {
  transform: rotateY(360deg);
}

.value-card h3 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 8px;
}

.value-card p {
  font-size: 13px;
  line-height: 1.7;
  color: var(--muted);
}

/* ── CTA BAND ── */
.cta-band {
  background: var(--sky);
  padding: 80px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(90deg,
      transparent 0, transparent 100px,
      rgba(11, 25, 41, .06) 100px, rgba(11, 25, 41, .06) 101px);
}

.cta-band::after {
  content: '';
  position: absolute;
  right: -100px;
  top: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(11, 25, 41, .12), transparent 70%);
}

.cta-band h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(40px, 5vw, 68px);
  color: var(--navy);
  line-height: .9;
  letter-spacing: 1px;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.cta-band p {
  font-size: 15px;
  color: rgba(11, 25, 41, .65);
  max-width: 400px;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

.cta-band-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.btn-dark-fill {
  background: var(--navy);
  color: var(--sky);
  border: none;
}

.btn-dark-fill:hover {
  background: var(--navy2);
  box-shadow: 0 8px 30px rgba(11, 25, 41, .4);
  color: var(--white);
}

.cta-tel {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(11, 25, 41, .6);
  text-decoration: none;
  transition: color .3s;
}

.cta-tel:hover {
  color: var(--navy);
}

/* ── PORTFOLIO ── */
.portfolio-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1px;
  background: rgba(110, 198, 240, .1);
}

.p-card {
  flex: 1 1 300px;
  background: var(--navy2);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
}

.p-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--navy2), var(--navy3));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  transition: transform .5s;
}

.p-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(-45deg, rgba(110, 198, 240, .03) 0, rgba(110, 198, 240, .03) 1px, transparent 1px, transparent 36px);
}

.p-card:hover .p-placeholder {
  transform: scale(1.06);
}

.p-icon {
  font-size: 52px;
  opacity: .1;
  position: relative;
  z-index: 1;
}

.p-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11, 25, 41, .97) 0%, rgba(11, 25, 41, .3) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  transform: translateY(6px);
  transition: transform .4s;
}

.p-card:hover .p-overlay {
  transform: translateY(0);
}

.p-location {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}

.p-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  color: var(--white);
  margin-bottom: 4px;
  letter-spacing: 1px;
}

.p-cat {
  font-size: 11px;
  color: var(--muted);
  margin-bottom: 12px;
}

.p-duration {
  display: inline-block;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 12px;
  border: 1.5px solid rgba(110, 198, 240, .5);
  color: var(--sky);
}

.portfolio-filter {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}

.f-btn {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 10px 22px;
  border: 1.5px solid rgba(110, 198, 240, .25);
  color: var(--steel-light);
  background: transparent;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.f-btn:hover,
.f-btn.active {
  background: var(--sky);
  border-color: var(--sky);
  color: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(110, 198, 240, 0.2);
}

/* Modal */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(11, 25, 41, .97);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s;
}

.modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.modal {
  background: var(--navy2);
  border: 1.5px solid rgba(110, 198, 240, .2);
  max-width: 860px;
  width: 100%;
  max-height: 88vh;
  overflow-y: auto;
  position: relative;
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 18px;
  background: none;
  border: none;
  font-size: 22px;
  cursor: pointer;
  color: var(--muted);
  transition: color .3s;
  z-index: 1;
}

.modal-close:hover {
  color: var(--sky);
}

.modal-img {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--navy3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 72px;
  position: relative;
  overflow: hidden;
}

.modal-body {
  padding: 36px;
}

.modal-cat {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--sky);
  margin-bottom: 8px;
}

.modal-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 32px;
  color: var(--white);
  margin-bottom: 12px;
  letter-spacing: 1px;
}

.modal-text {
  font-size: 14px;
  line-height: 1.9;
  color: var(--muted);
}

.modal-details {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid rgba(110, 198, 240, .1);
}

.md-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--sky);
  margin-bottom: 4px;
}

.md-val {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
}

/* ── CONTACT FORM ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.ci-item {
  display: flex;
  gap: 14px;
  margin-bottom: 28px;
}

.ci-icon {
  width: 46px;
  height: 46px;
  background: var(--sky-dim);
  border: 1.5px solid rgba(110, 198, 240, .25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
  transition: background .3s;
}

.ci-item:hover .ci-icon {
  background: var(--sky);
}

.ci-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--sky);
  margin-bottom: 4px;
}

.ci-val {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
}

.ci-val a {
  color: var(--muted);
  text-decoration: none;
  transition: color .3s;
}

.ci-val a:hover {
  color: var(--sky);
}

.form-box {
  background: var(--navy2);
  padding: 44px 40px;
  border: 1.5px solid rgba(110, 198, 240, .15);
}

.form-box h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 36px;
  color: var(--white);
  margin-bottom: 6px;
  letter-spacing: 1px;
}

.form-box p {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 28px;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 18px;
}

.form-group label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(168, 189, 208, .6);
}

.form-group input,
.form-group textarea,
.form-group select {
  padding: 13px 15px;
  border: 1.5px solid rgba(110, 198, 240, .15);
  background: var(--navy3);
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: var(--white);
  outline: none;
  transition: border-color .25s, box-shadow .25s;
  width: 100%;
  -webkit-appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(110, 198, 240, .3);
}

.form-group select option {
  background: var(--navy2);
  color: var(--white);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--sky);
  box-shadow: 0 0 0 3px rgba(110, 198, 240, .1);
}

.form-group textarea {
  resize: vertical;
  min-height: 110px;
}

.form-msg {
  padding: 12px 18px;
  margin-bottom: 16px;
  font-size: 13px;
  font-weight: 700;
}

.form-msg.success {
  background: rgba(110, 198, 240, .1);
  border-left: 4px solid var(--sky);
  color: var(--sky);
}

.form-msg.error {
  background: rgba(220, 38, 38, .1);
  border-left: 4px solid #dc2626;
  color: #fca5a5;
}

/* ── PROFILE ── */
.profile-frame {
  background: var(--navy2);
  padding: 40px;
  border: 1.5px solid rgba(110, 198, 240, .15);
  position: relative;
  margin-bottom: 24px;
}

.profile-frame::before {
  content: '';
  position: absolute;
  top: -10px;
  left: -10px;
  width: 60px;
  height: 60px;
  border-top: 3px solid var(--sky);
  border-left: 3px solid var(--sky);
}

.profile-frame::after {
  content: '';
  position: absolute;
  bottom: -10px;
  right: -10px;
  width: 60px;
  height: 60px;
  border-bottom: 3px solid var(--gold);
  border-right: 3px solid var(--gold);
}

.profile-inner {
  min-height: 340px;
  background: var(--navy3);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.profile-inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(-45deg, rgba(110, 198, 240, .02) 0, rgba(110, 198, 240, .02) 1px, transparent 1px, transparent 36px);
}

.profile-badge {
  position: absolute;
  bottom: -16px;
  right: -16px;
  background: var(--sky);
  padding: 20px 24px;
  z-index: 2;
  text-align: center;
}

.profile-badge-n {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 48px;
  color: var(--navy);
  line-height: 1;
}

.profile-badge-l {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(11, 25, 41, .7);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* ── FOOTER ── */
footer {
  background: var(--navy2);
  border-top: 3px solid var(--sky);
}

.footer-top {
  padding: 80px 60px 56px;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 56px;
  max-width: 1440px;
  margin: 0 auto;
}

/* FOOTER LOGO — clean, no box */
.footer-logo-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  margin-bottom: 20px;
}

.footer-logo-img {
  height: 56px;
  width: auto;
  mix-blend-mode: screen;
  filter: brightness(1.6) saturate(1.3) contrast(1.1);
}

.footer-brand-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 4px;
  color: var(--white);
  line-height: 1;
}

.footer-brand-sub {
  font-size: 8px;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--sky);
  font-weight: 700;
}

.footer-desc {
  font-size: 14px;
  line-height: 1.8;
  color: var(--muted);
  max-width: 280px;
  margin-bottom: 28px;
}

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

.social-btn {
  width: 38px;
  height: 38px;
  border: 1.5px solid rgba(110, 198, 240, .3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sky);
  font-size: 12px;
  text-decoration: none;
  font-weight: 700;
  transition: all .25s;
}

.social-btn:hover {
  background: var(--sky);
  color: var(--navy);
  border-color: var(--sky);
  box-shadow: 0 4px 16px rgba(110, 198, 240, .4);
}

.footer-col h5 {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--sky);
  margin-bottom: 20px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col a {
  font-size: 14px;
  color: var(--muted);
  text-decoration: none;
  transition: color .25s;
}

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

.footer-cr {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
}

.footer-ci {
  color: var(--sky);
  font-size: 14px;
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-ct {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}

.footer-ct a {
  color: var(--muted);
  text-decoration: none;
  transition: color .25s;
}

.footer-ct a:hover {
  color: var(--sky);
}

.footer-bottom {
  border-top: 1px solid rgba(110, 198, 240, .12);
  padding: 24px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1440px;
  margin: 0 auto;
}

.footer-bottom p {
  font-size: 12px;
  color: var(--muted);
}

.footer-bottom a {
  color: var(--sky);
  text-decoration: none;
}

/* ================================================================
   HOME HERO
   ================================================================ */
.hero-home {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 0 60px 80px;
  overflow: hidden;
  background: linear-gradient(160deg, #0b2240 0%, #0b1929 40%, #091420 100%);
}

/* Animated grid */
.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(110, 198, 240, .07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(110, 198, 240, .07) 1px, transparent 1px);
  background-size: 70px 70px;
  z-index: 0;
  animation: gridShift 20s linear infinite;
}

/* Radial spotlight */
.hero-bg-gradient {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse at 15% 50%, rgba(110, 198, 240, .14) 0%, transparent 50%),
    radial-gradient(ellipse at 85% 20%, rgba(110, 198, 240, .06) 0%, transparent 40%),
    linear-gradient(to bottom, transparent 50%, rgba(9, 20, 32, .95) 100%);
}

/* Hero content */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 640px;
  margin-top: 150px;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp .8s .2s forwards;
}

.hero-eyebrow-line {
  width: 48px;
  height: 3px;
  background: var(--sky);
}

.hero-eyebrow span {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--sky);
}

.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(80px, 11vw, 160px);
  line-height: .88;
  letter-spacing: 2px;
  color: var(--white);
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp .8s .35s forwards;
}

.hero-title em {
  font-style: normal;
  color: var(--sky);
  display: block;
  text-shadow: 0 0 60px rgba(110, 198, 240, .35);
}

.hero-desc {
  font-size: 17px;
  line-height: 1.8;
  color: var(--steel-light);
  max-width: 500px;
  margin-bottom: 44px;
  opacity: 0;
  animation: fadeUp .8s .55s forwards;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  opacity: 0;
  animation: fadeUp .8s .7s forwards;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  right: 60px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.hero-scroll span {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(110, 198, 240, .4);
}

.hero-scroll-line {
  width: 2px;
  height: 48px;
  background: linear-gradient(to bottom, var(--sky), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {

  0%,
  100% {
    opacity: .3
  }

  50% {
    opacity: 1
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

/* ── CONSTRUCTION SCENE ── */
.hero-construction-scene {
  position: absolute;
  right: 0;
  top: 0;
  width: 55%;
  height: 100%;
  z-index: 1;
  perspective: 900px;
  perspective-origin: 50% 90%;
  overflow: hidden;
}

.ground-plane {
  position: absolute;
  bottom: 56px;
  left: -10%;
  right: -10%;
  height: 200px;
  transform: rotateX(68deg);
  transform-origin: bottom;
  border-top: 1px solid rgba(110, 198, 240, .2);
}

.ground-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(110, 198, 240, .14) 1px, transparent 1px),
    linear-gradient(90deg, rgba(110, 198, 240, .14) 1px, transparent 1px);
  background-size: 38px 38px;
  animation: groundMove 3s linear infinite;
}

@keyframes groundMove {
  from {
    background-position: 0 0
  }

  to {
    background-position: 38px 38px
  }
}

/* Building under construction */
.buc-wrap {
  position: absolute;
  right: 2%;
  bottom: 56px;
  width: 118px;
  animation: slideInUp 1s .3s both;
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(60px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

.buc-floor {
  width: 100%;
  height: 34px;
  margin-bottom: 2px;
  background: linear-gradient(to right, rgba(110, 198, 240, .12), rgba(110, 198, 240, .05));
  border: 1px solid rgba(110, 198, 240, .2);
  position: relative;
  animation: floorPulse 3s ease-in-out infinite alternate;
}

@keyframes floorPulse {
  from {
    border-color: rgba(110, 198, 240, .12)
  }

  to {
    border-color: rgba(110, 198, 240, .35)
  }
}

.buc-floor::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(90deg, transparent 0, transparent 17px, rgba(110, 198, 240, .08) 17px, rgba(110, 198, 240, .08) 19px);
}

.buc-top-rebar {
  display: flex;
  gap: 8px;
  justify-content: space-around;
  position: absolute;
  top: -8px;
  left: 0;
  right: 0;
}

.rebar {
  width: 3px;
  height: 12px;
  background: linear-gradient(to top, var(--gold), transparent);
  animation: rebarGlow 1.5s ease-in-out infinite alternate;
}

@keyframes rebarGlow {
  from {
    box-shadow: none
  }

  to {
    box-shadow: 0 0 8px rgba(240, 180, 41, .8)
  }
}

.weld-flash {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #fff;
  animation: weldFlash 1.8s ease-in-out infinite;
}

@keyframes weldFlash {

  0%,
  100% {
    opacity: 0;
    transform: scale(0)
  }

  10% {
    opacity: 1;
    transform: scale(1.8)
  }

  18% {
    opacity: 0
  }
}

/* Crane */
.crane-wrap {
  position: absolute;
  right: 16%;
  bottom: 56px;
  width: 60px;
  height: 330px;
  animation: slideInUp 1s .7s both;
}

.crane-mast {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 9px;
  height: 100%;
  background: linear-gradient(to right, #1e3a5e, #2e5a8e, #1e3a5e);
  transform: translateX(-50%);
  box-shadow: 0 0 12px rgba(110, 198, 240, .15);
}

.crane-mast::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(0deg, transparent 0, transparent 16px, rgba(110, 198, 240, .3) 16px, rgba(110, 198, 240, .3) 18px);
}

.crane-arm {
  position: absolute;
  top: 16px;
  right: 0;
  width: 150px;
  height: 7px;
  background: linear-gradient(to right, #1a3060, #2a5090);
  box-shadow: 0 0 10px rgba(110, 198, 240, .2);
}

.crane-arm-counter {
  position: absolute;
  top: 16px;
  left: 0;
  width: 48px;
  height: 6px;
  background: linear-gradient(to left, #1a3060, #2a4070);
}

.crane-trolley {
  position: absolute;
  top: 9px;
  right: 60px;
  width: 16px;
  height: 10px;
  background: #3a6090;
  border-radius: 2px;
  animation: trolleyMove 5s ease-in-out infinite;
}

@keyframes trolleyMove {

  0%,
  100% {
    right: 30px
  }

  50% {
    right: 90px
  }
}

.crane-hook-line {
  position: absolute;
  top: 23px;
  right: 68px;
  width: 1px;
  background: linear-gradient(to bottom, rgba(110, 198, 240, .7), rgba(110, 198, 240, .2));
  height: 60px;
  animation: hookLineSwing 5s ease-in-out infinite;
  transform-origin: top;
}

@keyframes hookLineSwing {

  0%,
  100% {
    transform: rotate(2deg)
  }

  50% {
    transform: rotate(-3deg)
  }
}

.crane-hook {
  position: absolute;
  bottom: -8px;
  left: -5px;
  width: 11px;
  height: 11px;
  border: 2px solid var(--sky);
  border-radius: 0 0 8px 8px;
  border-top: none;
}

.crane-load {
  position: absolute;
  bottom: -34px;
  left: -16px;
  width: 34px;
  height: 22px;
  background: linear-gradient(135deg, var(--gold), #a07010);
  border: 1px solid rgba(240, 180, 41, .5);
  box-shadow: 0 4px 16px rgba(240, 180, 41, .3);
  animation: loadBob 5s ease-in-out infinite;
}

@keyframes loadBob {

  0%,
  100% {
    transform: translateY(0) rotate(1deg)
  }

  50% {
    transform: translateY(-8px) rotate(-1deg)
  }
}

/* Scaffolding */
.scaffold-wrap {
  position: absolute;
  right: 3%;
  bottom: 56px;
  width: 56px;
  height: 280px;
  animation: slideInUp 1s .5s both;
}

.scaffold-v {
  position: absolute;
  bottom: 0;
  width: 5px;
  background: linear-gradient(to top, #1e3a5e, #2e5a8e);
  border-radius: 2px;
}

.scaffold-v.v1 {
  left: 4px;
  height: 280px
}

.scaffold-v.v2 {
  right: 4px;
  height: 260px
}

.scaffold-v.v3 {
  left: 26px;
  height: 210px
}

.scaffold-h {
  position: absolute;
  left: 3px;
  right: 3px;
  height: 5px;
  background: linear-gradient(to right, #2e5a8e, #1e3a5e);
  border-radius: 2px;
}

.scaffold-h.h1 {
  bottom: 56px
}

.scaffold-h.h2 {
  bottom: 112px
}

.scaffold-h.h3 {
  bottom: 168px
}

.scaffold-h.h4 {
  bottom: 224px
}

.scaffold-plank {
  position: absolute;
  left: 0;
  right: 0;
  height: 9px;
  background: linear-gradient(135deg, #8a6040, #5a3018);
  border-radius: 1px;
  border: 1px solid rgba(0, 0, 0, .3);
}

.scaffold-plank.p1 {
  bottom: 61px
}

.scaffold-plank.p2 {
  bottom: 117px
}

.scaffold-plank.p3 {
  bottom: 173px
}

.scaffold-diag {
  position: absolute;
  left: 7px;
  width: 40px;
  height: 54px;
  border-left: 2px solid rgba(46, 90, 142, .5);
  transform: skewY(-45deg);
  transform-origin: bottom left;
}

.scaffold-diag.d1 {
  bottom: 56px
}

.scaffold-diag.d2 {
  bottom: 110px
}

.scaffold-diag.d3 {
  bottom: 164px
}

/* Bricks */
.bricks-wrap {
  position: absolute;
  right: 53%;
  bottom: 56px;
  animation: slideInUp 1s .9s both;
}

.brick-row {
  display: flex;
  gap: 2px;
  margin-bottom: 3px;
}

.brick-row.off {
  margin-left: 16px;
}

.brick {
  width: 30px;
  height: 15px;
  border-radius: 1px;
  border: 1px solid rgba(0, 0, 0, .25);
  position: relative;
}

.brick::after {
  content: '';
  position: absolute;
  inset: 3px 4px;
  background: rgba(255, 255, 255, .06);
}

.bc1 {
  background: linear-gradient(135deg, #b5522a, #8a3218)
}

.bc2 {
  background: linear-gradient(135deg, #c56030, #9a4520)
}

.bg1 {
  background: linear-gradient(135deg, #5a6a7a, #3a4a5a)
}

.mortar-line {
  height: 5px;
  background: linear-gradient(90deg, #8a9a9e, #6a7a80);
  margin-bottom: 3px;
  border-radius: 1px;
}

/* Bags */
.bags-wrap {
  position: absolute;
  right: 40%;
  bottom: 56px;
  animation: slideInUp 1s 1.1s both;
}

.bag {
  width: 56px;
  height: 28px;
  border-radius: 3px;
  margin-bottom: 3px;
  position: relative;
  border: 1px solid rgba(255, 255, 255, .06);
  overflow: hidden;
}

.bag::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(90deg, transparent 0, transparent 9px, rgba(255, 255, 255, .04) 9px, rgba(255, 255, 255, .04) 10px);
}

.bag-label {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .4);
  white-space: nowrap;
  font-family: 'DM Sans', sans-serif;
}

.bag.b1 {
  background: linear-gradient(135deg, #3a5a3a, #2a4228)
}

.bag.b2 {
  background: linear-gradient(135deg, #3a3a5a, #2a2a48);
  transform: rotate(-1.5deg)
}

.bag.b3 {
  background: linear-gradient(135deg, #5a3a26, #3a2010);
  transform: rotate(1deg)
}

/* Mixer */
.mixer-wrap {
  position: absolute;
  right: 26%;
  bottom: 56px;
  animation: slideInUp 1s 1.3s both;
}

.mixer-body {
  width: 58px;
  height: 40px;
  margin: 0 auto;
  background: linear-gradient(135deg, #1e4070, #142848);
  border: 1px solid rgba(110, 198, 240, .22);
  border-radius: 3px;
  position: relative;
}

.mixer-drum {
  position: absolute;
  top: -26px;
  left: 50%;
  transform: translateX(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: conic-gradient(from 0deg, var(--gold) 0deg 55deg, #1a3060 55deg 110deg, var(--gold) 110deg 165deg, #1a3060 165deg 220deg, var(--gold) 220deg 275deg, #1a3060 275deg 330deg, var(--gold) 330deg 360deg);
  animation: drumSpin 1.8s linear infinite;
  border: 3px solid rgba(110, 198, 240, .25);
}

@keyframes drumSpin {
  to {
    transform: translateX(-50%) rotate(360deg)
  }
}

.mixer-leg {
  position: absolute;
  bottom: -16px;
  width: 7px;
  height: 16px;
  background: #1a3060;
  border-radius: 2px;
}

.mixer-leg.l {
  left: 12px
}

.mixer-leg.r {
  right: 12px
}

.mixer-wheel {
  position: absolute;
  bottom: -6px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid #2a5080;
  background: #080c10;
}

.mixer-wheel.l {
  left: 6px
}

.mixer-wheel.r {
  right: 6px
}

/* Worker */
.worker-wrap {
  position: absolute;
  right: 38%;
  bottom: 56px;
  animation: slideInUp 1s 1.5s both;
}

.worker {
  width: 22px;
  position: relative;
  animation: workerWork 2s ease-in-out infinite;
}

@keyframes workerWork {

  0%,
  100% {
    transform: rotate(0)
  }

  30% {
    transform: rotate(-4deg) translateY(-2px)
  }

  60% {
    transform: rotate(2deg)
  }
}

.worker-head {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: linear-gradient(135deg, #d4a574, #b07040);
  margin: 0 auto 1px;
  position: relative;
}

.worker-helmet {
  position: absolute;
  top: -5px;
  left: -3px;
  right: -3px;
  height: 12px;
  background: linear-gradient(135deg, var(--gold), #a07820);
  border-radius: 50% 50% 0 0/60% 60% 0 0;
  border-bottom: 2px solid #806010;
}

.worker-body {
  width: 18px;
  height: 26px;
  margin: 0 auto;
  background: linear-gradient(135deg, #e05500, #b03300);
  border-radius: 2px;
  position: relative;
}

.worker-vest {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(90deg, transparent 0, transparent 3px, rgba(255, 220, 0, .5) 3px, rgba(255, 220, 0, .5) 4px);
}

.worker-legs {
  display: flex;
  gap: 2px;
  justify-content: center;
}

.worker-leg {
  width: 7px;
  height: 20px;
  background: #162238;
  border-radius: 2px;
  border-bottom: 3px solid #1a3050;
}

.worker-tool {
  position: absolute;
  right: -16px;
  top: 10px;
  width: 20px;
  height: 3px;
  background: linear-gradient(to right, #666, #ccc);
  border-radius: 1px;
  transform-origin: left;
  animation: toolSwing 2s ease-in-out infinite;
}

@keyframes toolSwing {

  0%,
  100% {
    transform: rotate(-15deg)
  }

  50% {
    transform: rotate(20deg)
  }
}

/* Dust & sparks */
.dust-particle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  animation: dustRise linear infinite;
}

@keyframes dustRise {
  0% {
    transform: translateY(0) scale(1);
    opacity: 0
  }

  20% {
    opacity: .5
  }

  80% {
    opacity: .2
  }

  100% {
    transform: translateY(-180px) scale(.3);
    opacity: 0
  }
}

.spark {
  position: absolute;
  width: 3px;
  height: 3px;
  background: var(--gold);
  border-radius: 50%;
  animation: sparkFly ease-out forwards;
}

@keyframes sparkFly {
  0% {
    transform: translate(0, 0) scale(1);
    opacity: 1
  }

  100% {
    transform: translate(var(--sx), var(--sy)) scale(0);
    opacity: 0
  }
}

/* Scene fades */
.hero-fog {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to top, rgba(9, 20, 32, .95), transparent);
  z-index: 2;
  pointer-events: none;
}

.hero-fog-left {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 90px;
  background: linear-gradient(to right, rgba(9, 20, 32, .9), transparent);
  z-index: 2;
  pointer-events: none;
}

/* ── ABOUT — logo float ── */
@keyframes logoFloat {

  0%,
  100% {
    transform: translateY(0) rotateY(0)
  }

  30% {
    transform: translateY(-8px) rotateY(4deg)
  }

  70% {
    transform: translateY(-4px) rotateY(-3deg)
  }
}

.logo-float {
  animation: logoFloat 7s ease-in-out infinite;
}

/* ── RESPONSIVE ── */
@media(max-width:1100px) {
  #main-nav {
    padding: 16px 28px;
  }

  #main-nav.scrolled {
    padding: 12px 28px;
  }

  .section {
    padding: 72px 28px;
  }

  .hero-home {
    padding: 0 28px 60px;
  }

  .stat-strip-inner {
    padding: 0 28px;
  }

  .ssi {
    padding: 24px 28px;
  }

  .ssi:first-child {
    padding-left: 28px;
  }

  .services-grid,
  .sectors-grid,
  .values-grid,
  .team-grid {
    grid-template-columns: 1fr 1fr;
  }

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

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

  .process-steps {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

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

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 56px 28px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
    padding: 20px 28px;
  }

  .contact-grid,
  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .cta-band {
    flex-direction: column;
    padding: 56px 28px;
    text-align: center;
  }

  .cta-band-actions {
    align-items: center;
  }

  .page-hero {
    padding: 130px 28px 60px;
  }

  .hero-construction-scene {
    opacity: .4;
  }
}

@media(max-width:768px) {
  body {
    cursor: auto;
  }

  .v-cursor,
  .v-cursor-ring {
    display: none !important;
  }

  .nav-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: rgba(11, 25, 41, .99);
    padding: 24px 28px;
    gap: 20px;
    border-top: 2px solid rgba(110, 198, 240, .2);
  }

  .nav-menu.open {
    display: flex;
  }

  .nav-toggle {
    display: flex;
  }

  .services-grid,
  .sectors-grid,
  .portfolio-grid,
  .values-grid,
  .team-grid {
    grid-template-columns: 1fr;
  }

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

  .stat-strip-inner {
    flex-wrap: wrap;
  }

  .ssi {
    min-width: 50%;
    border-right: none;
    border-bottom: 1px solid rgba(11, 25, 41, .2);
  }

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

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

  .modal-details {
    grid-template-columns: 1fr 1fr;
  }

  .hero-title {
    font-size: clamp(64px, 14vw, 100px);
  }

  .page-hero {
    padding: 110px 20px 48px;
  }

  .hero-construction-scene {
    display: none;
  }
}