html {
  scroll-behavior: smooth;
}

body {
  font-family: "Barlow", sans-serif;
  background: var(--navy);
  color: var(--dirty-white);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.05'/%3E%3C/svg%3E");
}

/* Hero logo display */
.hero-logo-display {
  margin-bottom: 20px;
}

.hero-logo-img {
  height: 100px;
  width: auto;
  filter: drop-shadow(0 0 24px rgba(92, 75, 226, 0.7)) brightness(1.2)
    contrast(1.05);
  display: block;
}

/* NAV */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  height: 72px;
  background: var(--white);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: height 0.3s;
}

nav::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--blue-glow),
    var(--accent),
    var(--blue-glow),
    transparent
  );
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.nav-logo-img {
  height: 58px;
  width: auto;
  filter: drop-shadow(0 0 14px rgba(92, 75, 226, 0.6)) brightness(1.15)
    contrast(1.05);
}

.nav-brand {
  display: none;
}

.nav-brand-main {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 3px;
  color: var(--chrome-hi);
}

.nav-brand-sub {
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--silver);
  font-weight: 500;
}

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  color: var(--steel);
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  transition: color 0.2s;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform 0.2s;
  transform-origin: left;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--accent);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: white;
  padding: 10px 22px;
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
  transition: all 0.25s;
}

.nav-cta:hover {
  background: var(--blue-glow);
  box-shadow: 0 0 24px rgba(92, 75, 226, 0.5);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--chrome);
  transition: all 0.3s;
}

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: var(--navy);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
}

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

.mobile-menu a {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 40px;
  font-weight: 800;
  letter-spacing: 3px;
  color: var(--chrome);
  text-decoration: none;
  transition: color 0.2s;
}

.mobile-menu a:hover {
  color: var(--accent);
}

.mobile-close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  background: none;
  border: 1px solid var(--border-hi);
  color: var(--chrome);
  font-size: 22px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-menu-phone {
  font-family: "Share Tech Mono", monospace !important;
  font-size: 16px !important;
  letter-spacing: 2px;
  color: var(--accent) !important;
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 100px 48px 80px;
  background: linear-gradient(135deg, #f8fbff 0%, #e0f2fe 100%);
}

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

.hero-bp svg {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0.06;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(92, 75, 226, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(92, 75, 226, 0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: linear-gradient(
    to bottom,
    transparent,
    black 15%,
    black 85%,
    transparent
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 18px;
  border: 1px solid var(--border-hi);
  background: rgba(92, 75, 226, 0.1);
  font-family: "Share Tech Mono", monospace;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 28px;
}

.hero-tag-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: blink 2s ease-in-out infinite;
}

@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.2;
  }
}

.hero h1 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(54px, 7vw, 96px);
  font-weight: 900;
  line-height: 0.88;
  letter-spacing: 1px;
  color: var(--chrome-hi);
  margin-bottom: 20px;
}

.hero h1 .outline {
  -webkit-text-stroke: 1.5px var(--accent);
  color: transparent;
  display: block;
}

.hero h1 .solid {
  display: block;
}

.hero-sub {
  font-size: 15px;
  color: var(--silver);
  line-height: 1.75;
  max-width: 460px;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: white;
  padding: 14px 32px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
  transition: all 0.25s;
}

.btn-primary:hover {
  background: var(--blue-glow);
  box-shadow: 0 0 30px rgba(92, 75, 226, 0.5);
  transform: translateY(-2px);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--chrome);
  padding: 13px 30px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: 1px solid var(--border-hi);
  transition: all 0.25s;
}

.btn-secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(92, 75, 226, 0.08);
}

.hero-phones {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.hero-phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--chrome);
  text-decoration: none;
  font-family: "Share Tech Mono", monospace;
  font-size: 13px;
  letter-spacing: 1px;
  transition: color 0.2s;
}

.hero-phone:hover {
  color: var(--accent);
}

.hero-right {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero-building-wrap {
  width: 100%;
  max-width: 520px;
  position: relative;
}

.hero-building {
  width: 100%;
  filter: drop-shadow(0 20px 60px rgba(92, 75, 226, 0.3));
}

.stat-float {
  position: absolute;
  background: rgba(10, 18, 38, 0.92);
  border: 1px solid var(--border-hi);
  padding: 14px 20px;
  backdrop-filter: blur(12px);
}

.stat-float-1 {
  top: 0%;
  left: -5%;
}
.stat-float-2 {
  bottom: 8%;
  right: -4%;
}

.stat-float-num {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 30px;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
}

.stat-float-label {
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--silver);
  margin-top: 3px;
}

/* ===== TICKER ===== */
.ticker-wrap {
  overflow: hidden;
  background: var(--navy-mid);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
}

.ticker-wrap::before,
.ticker-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
}

.ticker-wrap::before {
  left: 0;
  background: linear-gradient(to right, var(--navy-mid), transparent);
}
.ticker-wrap::after {
  right: 0;
  background: linear-gradient(to left, var(--navy-mid), transparent);
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker 32s linear infinite;
  padding: 14px 0;
}

@keyframes ticker {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.ticker-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 0 32px;
  font-family: "Share Tech Mono", monospace;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--silver);
  white-space: nowrap;
}

.ticker-divider {
  width: 4px;
  height: 4px;
  background: var(--accent);
  transform: rotate(45deg);
  flex-shrink: 0;
}

/* ===== STATS BAR ===== */
.stats-bar {
  background: var(--panel);
  border-bottom: 1px solid var(--border);
}

.stats-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat-item {
  padding: 48px 40px;
  border-right: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.stat-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s;
}

.stat-item:hover::before {
  transform: scaleX(1);
}
.stat-item:last-child {
  border-right: none;
}

.stat-num {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 56px;
  font-weight: 900;
  line-height: 1;
  color: var(--chrome-hi);
  letter-spacing: -1px;
}

.stat-num span {
  color: var(--accent);
}

.stat-lbl {
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--silver);
  margin-top: 8px;
  font-weight: 500;
}

/* ===== SECTIONS ===== */
section {
  padding: 100px 48px;
}
.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.section-eyebrow {
  font-family: "Share Tech Mono", monospace;
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.section-eyebrow::before {
  content: "//";
  color: var(--steel);
}

.section-title {
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(38px, 5vw, 64px);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: 1px;
  color: var(--chrome-hi);
  margin-bottom: 24px;
}

.section-body {
  font-size: 15px;
  color: var(--silver);
  line-height: 1.8;
  max-width: 520px;
}

/* ===== ABOUT ===== */
.about {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

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

.strengths {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 40px;
}

.strength-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 20px;
  background: var(--panel);
  border: 1px solid var(--border);
  transition: border-color 0.25s;
}

.strength-item:hover {
  border-color: var(--accent);
}

.strength-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(92, 75, 226, 0.15);
  border: 1px solid var(--border-hi);
}

.strength-icon svg {
  width: 18px;
  height: 18px;
}

.strength-text {
  font-size: 13px;
  color: var(--silver);
  line-height: 1.6;
}

.ibeam-card {
  background: var(--panel);
  border: 1px solid var(--border);
  padding: 36px;
  position: relative;
  overflow: hidden;
}

.ibeam-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--accent),
    var(--blue-glow),
    transparent
  );
}

/* ===== PRODUCTS ===== */
.products {
  background: var(--panel);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  margin-top: 60px;
  border: 1px solid var(--border);
}

.product-card {
  background: var(--navy);
  padding: 40px 36px;
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
}

.product-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s;
}

.product-card:hover {
  background: var(--navy-mid);
}
.product-card:hover::before {
  transform: scaleX(1);
}

/* Rivet decorations */
.product-card::after {
  content: "";
  position: absolute;
  top: 14px;
  right: 14px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--border-hi);
  box-shadow:
    -14px 0 0 var(--border-hi),
    0 14px 0 var(--border-hi),
    -14px 14px 0 var(--border-hi);
}

.product-card.wide {
  grid-column: span 2;
}

.product-num {
  font-family: "Share Tech Mono", monospace;
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--accent);
  opacity: 0.7;
  margin-bottom: 18px;
  display: block;
}

.product-icon {
  margin-bottom: 18px;
}
.product-icon svg {
  width: 44px;
  height: 44px;
}

.product-name {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--chrome-hi);
  margin-bottom: 16px;
}

.product-items {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.product-items li {
  font-size: 13px;
  color: var(--silver);
  display: flex;
  align-items: center;
  gap: 10px;
}

.product-items li::before {
  content: "";
  width: 16px;
  height: 1px;
  background: var(--accent);
  flex-shrink: 0;
}

.product-card.wide .product-items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

/* ===== GALLERY ====*/
/* ===== GALLERY ===== */

.gallery {
  background: var(--panel);
}

.gallery .section-body {
  margin-bottom: 50px;
}

.gallery-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
}

.gallery-tab {
  background: var(--navy);
  border: 1px solid var(--border);
  color: var(--silver);
  padding: 12px 22px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 0.25s ease;
}

.gallery-tab:hover {
  border-color: var(--accent);
  color: var(--chrome-hi);
}

.gallery-tab.active {
  background: var(--accent);
  color: white;
  border-color: var(--accent);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  background: var(--navy);
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}

.gallery-item:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
}

.gallery-item img,
.gallery-item video {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}

.gallery-loadmore {
  text-align: center;
  margin-top: 50px;
}

#loadMoreBtn {
  background: var(--accent);
  color: white;
  border: none;
  padding: 14px 34px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.25s ease;
}

#loadMoreBtn:hover {
  background: var(--blue-glow);
  transform: translateY(-2px);
}

@media (max-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item img,
  .gallery-item video {
    height: 220px;
  }

  .gallery-tabs {
    justify-content: center;
  }
}
/* ===== PROCESS ===== */
.process {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

/* Crane silhouette bg */
.process-crane {
  position: absolute;
  right: 40px;
  bottom: 0;
  opacity: 0.04;
  pointer-events: none;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  margin-top: 64px;
  position: relative;
}

.process-steps::before {
  content: "";
  position: absolute;
  top: 39px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: repeating-linear-gradient(
    90deg,
    var(--border-hi) 0,
    var(--border-hi) 18px,
    transparent 18px,
    transparent 28px
  );
  z-index: 0;
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 12px;
  position: relative;
  z-index: 1;
}

.step-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 2px solid var(--border-hi);
  background: var(--panel);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: all 0.3s;
  position: relative;
}

.step-circle::after {
  content: "";
  position: absolute;
  inset: 7px;
  border-radius: 50%;
  background: rgba(92, 75, 226, 0.1);
  transition: background 0.3s;
}

.process-step:hover .step-circle {
  border-color: var(--accent);
  box-shadow: 0 0 24px rgba(92, 75, 226, 0.3);
}
.process-step:hover .step-circle::after {
  background: rgba(92, 75, 226, 0.25);
}

.step-num {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 26px;
  font-weight: 900;
  color: var(--accent);
  position: relative;
  z-index: 1;
}

.step-title {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--chrome-hi);
  margin-bottom: 8px;
}

.step-desc {
  font-size: 12px;
  color: var(--silver);
  line-height: 1.6;
}

/* ===== SERVICES ===== */
.services {
  background: var(--panel);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 60px;
}

.service-card {
  background: var(--navy);
  border: 1px solid var(--border);
  padding: 36px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
  transition:
    border-color 0.25s,
    transform 0.25s;
  position: relative;
  overflow: hidden;
}

/* Rivet corners */
.service-card::before {
  content: "";
  position: absolute;
  top: 12px;
  right: 12px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--border-hi);
  box-shadow: -15px 0 0 var(--border-hi);
}

.service-card:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
}

.service-icon-box {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  border: 1px solid var(--border-hi);
  background: rgba(92, 75, 226, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
}

.service-icon-box svg {
  width: 22px;
  height: 22px;
}

.service-name {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--chrome-hi);
  margin-bottom: 10px;
}

.service-desc {
  font-size: 13px;
  color: var(--silver);
  line-height: 1.7;
}

/* ===== INDUSTRIES ===== */
.industries {
  background: var(--navy-mid);
  padding: 80px 48px;
  position: relative;
  overflow: hidden;
}

.industries::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    90deg,
    rgba(92, 75, 226, 0.04) 0,
    rgba(92, 75, 226, 0.04) 2px,
    transparent 2px,
    transparent 40px
  );
}

.industries-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 48px;
}

.industry-card {
  background: #fff;
  border: 1px solid var(--border);
  padding: 26px 22px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition:
    border-color 0.25s,
    background 0.25s;
  backdrop-filter: blur(4px);
}

.industry-card:hover {
  border-color: var(--accent);
  background: rgba(14, 30, 56, 0.9);
  .industry-name {
    color: #fff;
  }
}

.industry-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(92, 75, 226, 0.12);
  border: 1px solid var(--border-hi);
}

.industry-name {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--chrome);
}

/* ===== WHY US ===== */
.why {
  background: var(--navy);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  margin-top: 60px;
  border: 1px solid var(--border);
}

.why-item {
  background: var(--panel);
  padding: 48px 44px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
  transition: background 0.25s;
  position: relative;
  overflow: hidden;
}

.why-item:hover {
  background: var(--navy-mid);
}

.why-item::after {
  content: attr(data-num);
  position: absolute;
  bottom: 16px;
  right: 20px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 72px;
  font-weight: 900;
  color: rgba(92, 75, 226, 0.05);
  line-height: 1;
}

.why-num {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 52px;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
  flex-shrink: 0;
  letter-spacing: -2px;
}

.why-title {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--chrome-hi);
  margin-bottom: 10px;
}

.why-desc {
  font-size: 14px;
  color: var(--silver);
  line-height: 1.7;
}

/* ===== CONTACT ===== */
.contact {
  background: var(--panel);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  margin-top: 60px;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-card {
  background: var(--navy);
  border: 1px solid var(--border);
  padding: 22px 26px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  transition: border-color 0.25s;
}

.contact-card:hover {
  border-color: var(--accent);
}

.contact-icon-box {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  background: rgba(92, 75, 226, 0.12);
  border: 1px solid var(--border-hi);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-icon-box svg {
  width: 18px;
  height: 18px;
}

.contact-label {
  font-family: "Share Tech Mono", monospace;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 6px;
}

.contact-value {
  font-size: 14px;
  color: var(--chrome);
  line-height: 1.7;
}
.contact-value a {
  color: var(--chrome);
  text-decoration: none;
  transition: color 0.2s;
}
.contact-value a:hover {
  color: var(--accent);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-label {
  font-family: "Share Tech Mono", monospace;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--silver);
}

.form-input,
.form-textarea {
  background: var(--navy);
  border: 1px solid var(--border);
  color: var(--dirty-white);
  padding: 13px 16px;
  font-family: "Barlow", sans-serif;
  font-size: 14px;
  outline: none;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
  resize: none;
}

.form-input:focus,
.form-textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(92, 75, 226, 0.1);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--silver);
  opacity: 0.4;
}

/* ===== FOOTER ===== */
footer {
  background: var(--navy);
  border-top: 1px solid var(--border);
  padding: 64px 48px 36px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 32px;
}

.footer-tagline {
  font-size: 13px;
  color: var(--silver);
  font-style: italic;
  margin-top: 12px;
}

.footer-col-title {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--chrome-hi);
  margin-bottom: 20px;
}

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

.footer-links a {
  color: var(--silver);
  text-decoration: none;
  font-size: 13px;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-links a::before {
  content: "→";
  font-size: 10px;
  color: var(--accent);
}
.footer-links a:hover {
  color: var(--accent);
}

.footer-phones {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-phone {
  color: var(--chrome);
  text-decoration: none;
  font-family: "Share Tech Mono", monospace;
  font-size: 13px;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-phone:hover {
  color: var(--accent);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copy {
  font-size: 12px;
  color: var(--silver);
}
.footer-loc {
  font-family: "Share Tech Mono", monospace;
  font-size: 11px;
  color: rgba(138, 168, 200, 0.35);
  letter-spacing: 1px;
}

/* ===== ANIMATIONS ===== */
.fade-up {
  opacity: 1;
  transform: translateY(0);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   CONSTRUCTION SCROLL ANIMATIONS
   ============================================ */

/* Animated crane that builds as you scroll */
.crane-widget {
  position: fixed;
  bottom: 0;
  right: 80px;
  width: 90px;
  z-index: 100;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.5s;
}

.crane-widget.visible {
  opacity: 1;
}

.crane-svg {
  width: 100%;
}

/* Steel beam slide-in for section headers */
.beam-slide {
  overflow: hidden;
  position: relative;
}

.beam-slide::after {
  content: "";
  position: absolute;
  left: -100%;
  top: 0;
  bottom: 0;
  width: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(92, 75, 226, 0.08),
    transparent
  );
  animation: beamSweep 2.5s ease-in-out infinite;
}

@keyframes beamSweep {
  0% {
    left: -100%;
  }
  100% {
    left: 200%;
  }
}

/* Rivets that appear on scroll */
.rivet-row {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 24px;
}

.rivet {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #7ab0d0, #1e1e5a);
  box-shadow:
    inset 0 1px 2px rgba(255, 255, 255, 0.3),
    0 1px 3px rgba(0, 0, 0, 0.4);
  flex-shrink: 0;
  transform: scale(0);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.rivet.popped {
  transform: scale(1);
}

.rivet:nth-child(2) {
  transition-delay: 0.08s;
}
.rivet:nth-child(3) {
  transition-delay: 0.16s;
}
.rivet:nth-child(4) {
  transition-delay: 0.24s;
}
.rivet:nth-child(5) {
  transition-delay: 0.32s;
}
.rivet:nth-child(6) {
  transition-delay: 0.4s;
}

.rivet-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--border-hi), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.8s ease 0.5s;
}

.rivet-row.popped .rivet-line {
  transform: scaleX(1);
}

/* Stat counters that count up */
.count-up {
  display: inline-block;
}

/* Steel beam progress bars */
.build-bar-wrap {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.build-bar-item {
}

.build-bar-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
  font-family: "Share Tech Mono", monospace;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--silver);
}

.build-bar-label span {
  color: var(--accent);
}

.build-bar-track {
  height: 6px;
  background: rgba(92, 75, 226, 0.1);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.build-bar-fill {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  background: linear-gradient(90deg, #4038c8, #5c4be2);
  width: 0%;
  transition: width 1.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 0 8px rgba(92, 75, 226, 0.5);
}

/* Bolts on process steps */
.step-bolt {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #7ab0d0, #14144a);
  box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.4);
}

.step-bolt-tl {
  top: -4px;
  left: -4px;
}
.step-bolt-tr {
  top: -4px;
  right: -4px;
}
.step-bolt-bl {
  bottom: -4px;
  left: -4px;
}
.step-bolt-br {
  bottom: -4px;
  right: -4px;
}

/* Weld spark animation on hover */
@keyframes spark {
  0% {
    transform: scale(0) rotate(0deg);
    opacity: 1;
  }
  100% {
    transform: scale(1.5) rotate(180deg);
    opacity: 0;
  }
}

.process-step:hover .step-circle::before {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 2px dashed var(--accent);
  animation: spin 3s linear infinite;
}

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

/* Building construction timeline on scroll */
.construction-progress {
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: rgba(92, 75, 226, 0.08);
  z-index: 50;
}

.construction-progress-fill {
  width: 100%;
  background: linear-gradient(180deg, #7b6ef0, #5c4be2);
  height: 0%;
  transition: height 0.1s linear;
  box-shadow: 0 0 8px rgba(92, 75, 226, 0.6);
  position: relative;
}

/* Tiny crane icon at top of progress bar */
.construction-progress-fill::after {
  content: "🏗";
  position: absolute;
  bottom: -12px;
  left: -8px;
  font-size: 14px;
  filter: drop-shadow(0 0 4px rgba(92, 75, 226, 0.8));
}

/* ===== WHATSAPP FLOATING BUTTON ===== */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.wa-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25d366;
  color: white;
  text-decoration: none;
  border-radius: 50px;
  padding: 12px 20px 12px 14px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 1px;
  box-shadow: 0 4px 24px rgba(37, 211, 102, 0.45);
  transition: all 0.3s ease;
  white-space: nowrap;
  overflow: hidden;
  max-width: 54px;
}

.wa-btn:hover {
  max-width: 260px;
  background: #20ba5a;
  box-shadow: 0 6px 32px rgba(37, 211, 102, 0.6);
}

.wa-btn svg {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
}

.wa-btn span {
  opacity: 0;
  transition: opacity 0.2s ease 0.1s;
  white-space: nowrap;
}

.wa-btn:hover span {
  opacity: 1;
}

/* Pulse ring on WhatsApp button */
.wa-btn::before {
  content: "";
  position: absolute;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.3);
  animation: waPulse 2s ease-out infinite;
  pointer-events: none;
}

@keyframes waPulse {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }
  100% {
    transform: scale(1.8);
    opacity: 0;
  }
}

/* Quick message popup */
.wa-popup {
  background: white;
  border-radius: 12px;
  padding: 16px;
  width: 260px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  display: none;
  flex-direction: column;
  gap: 10px;
  border: 1px solid rgba(37, 211, 102, 0.3);
}

.wa-popup.open {
  display: flex;
}

.wa-popup-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #f0f0f0;
}

.wa-popup-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.wa-popup-name {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #111;
  line-height: 1.2;
}

.wa-popup-status {
  font-size: 11px;
  color: #25d366;
  letter-spacing: 0.5px;
}

.wa-popup-msg {
  background: #f0fdf4;
  border-radius: 8px;
  padding: 10px 12px;
  font-size: 13px;
  color: #333;
  line-height: 1.5;
  border-left: 3px solid #25d366;
}

.wa-quick-btns {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.wa-quick-btn {
  display: block;
  text-align: center;
  padding: 9px 12px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: all 0.2s;
}

.wa-quick-btn.primary {
  background: #25d366;
  color: white;
}

.wa-quick-btn.primary:hover {
  background: #20ba5a;
}

.wa-quick-btn.secondary {
  background: #f5f5f5;
  color: #333;
  border: 1px solid #e0e0e0;
}

.wa-quick-btn.secondary:hover {
  background: #eee;
}

.wa-close {
  position: absolute;
  top: 10px;
  right: 10px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 16px;
  color: #999;
  line-height: 1;
}

.wa-popup {
  position: relative;
}

@media (max-width: 480px) {
  .wa-float {
    bottom: 20px;
    right: 16px;
  }
  .wa-popup {
    width: 240px;
  }
}

/* ===== SCROLL TOP ===== */
.scroll-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 50;
  width: 48px;
  height: 48px;
  background: var(--accent);
  border: none;
  cursor: pointer;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.3s,
    transform 0.3s;
  font-size: 18px;
}

.scroll-top.visible {
  opacity: 1;
  pointer-events: all;
}
.scroll-top:hover {
  transform: scale(1.1);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
  }
  .hero-right {
    display: none;
  }
  .about-grid {
    grid-template-columns: 1fr;
  }
  .process-steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }
  .process-steps::before {
    display: none;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  nav {
    padding: 0 24px;
  }
  .nav-links,
  .nav-cta {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  section {
    padding: 64px 24px;
  }
  .industries {
    padding: 64px 24px;
  }
  .hero {
    padding: 90px 24px 60px;
  }
  .stats-bar-inner {
    grid-template-columns: 1fr 1fr;
  }
  .stat-item {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }
  .products-grid {
    grid-template-columns: 1fr;
  }
  .product-card.wide {
    grid-column: span 1;
  }
  .product-card.wide .product-items {
    grid-template-columns: 1fr;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .service-card.wide {
    grid-column: span 1;
  }
  .service-card[style] {
    grid-column: span 1 !important;
  }
  .industries-grid {
    grid-template-columns: 1fr 1fr;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .gallery-item img {
    height: 220px;
  }
  .why-grid {
    grid-template-columns: 1fr;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .footer-top {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
  .process-steps {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .industries-grid {
    grid-template-columns: 1fr;
  }
  .process-steps {
    grid-template-columns: 1fr;
  }
  .strengths {
    grid-template-columns: 1fr;
  }
}
