/* === Widget 0 === */

/* ===== SCOPED STYLES — safe for Elementor HTML widget ===== */
.kyz-hero * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.kyz-hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  font-family: 'Poppins', sans-serif;
}

/* ===== BACKGROUND IMAGE ===== */
.kyz-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('/wp-content/uploads/2026/02/Gemini_Generated_Image_lhv1r7lhv1r7lhv1.jpg');
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  z-index: 1;
}

/* cinematic gradient overlay — dark left, transparent right */
.kyz-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(0, 0, 0, 0.92) 0%,
    rgba(0, 0, 0, 0.85) 30%,
    rgba(0, 0, 0, 0.6) 55%,
    rgba(0, 0, 0, 0.3) 75%,
    rgba(0, 0, 0, 0.15) 100%
  );
  z-index: 2;
}

/* subtle grain texture */
.kyz-hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0, 0, 0, 0.03) 2px,
    rgba(0, 0, 0, 0.03) 4px
  );
  z-index: 3;
  pointer-events: none;
}

/* ===== CONTENT ===== */
.kyz-hero-content {
  position: relative;
  z-index: 4;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 120px 60px 140px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* small orange tag line */
.kyz-hero-tag {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #E8720C !important;
  margin-bottom: 20px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.kyz-hero-tag::before {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background: #E8720C;
}

/* main heading */
.kyz-hero-heading {
  font-family: 'Montserrat', sans-serif;
  font-size: 56px;
  font-weight: 900;
  color: #ffffff !important;
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 10px;
  max-width: 700px;
}

.kyz-hero-heading span {
  color: #E8720C !important;
  display: inline;
}

/* subheading */
.kyz-hero-sub {
  font-family: 'Poppins', sans-serif;
  font-size: 17px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.7) !important;
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 40px;
}

/* CTA buttons */
.kyz-hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.kyz-hero-btn {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none !important;
  padding: 16px 36px;
  border: none;
  cursor: pointer;
  transition: all 0.35s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.kyz-hero-btn-primary {
  background: #E8720C !important;
  color: #ffffff !important;
}

.kyz-hero-btn-primary:hover {
  background: #ff8c2a !important;
  box-shadow: 0 8px 30px rgba(232, 114, 12, 0.4);
  transform: translateY(-2px);
}

.kyz-hero-btn-secondary {
  background: transparent !important;
  color: #ffffff !important;
  border: 2px solid rgba(255, 255, 255, 0.3) !important;
}

.kyz-hero-btn-secondary:hover {
  border-color: #ffffff !important;
  background: rgba(255, 255, 255, 0.05) !important;
  transform: translateY(-2px);
}

.kyz-hero-btn svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

/* ===== STATS BAR ===== */
.kyz-hero-stats {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 5;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(232, 114, 12, 0.2);
}

.kyz-hero-stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  padding: 0 60px;
}

.kyz-stat-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 28px 20px;
  position: relative;
  flex: 1;
  justify-content: center;
}

/* vertical dividers between stats */
.kyz-stat-item + .kyz-stat-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 25%;
  height: 50%;
  width: 1px;
  background: rgba(255, 255, 255, 0.1);
}

.kyz-stat-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.kyz-stat-icon svg {
  width: 28px;
  height: 28px;
  fill: #E8720C;
  opacity: 0.9;
}

.kyz-stat-text {
  display: flex;
  flex-direction: column;
}

.kyz-stat-number {
  font-family: 'Montserrat', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: #ffffff !important;
  line-height: 1.2;
}

.kyz-stat-label {
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.5) !important;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.4;
}

/* ===== RESPONSIVE — TABLET ===== */
@media (max-width: 1024px) {
  .kyz-hero {
    min-height: 90vh;
  }

  .kyz-hero-content {
    padding: 100px 40px 180px;
  }

  .kyz-hero-heading {
    font-size: 42px;
    max-width: 550px;
  }

  .kyz-hero-sub {
    font-size: 15px;
    max-width: 450px;
    margin-bottom: 36px;
  }

  .kyz-hero-stats-inner {
    padding: 0 20px;
  }

  .kyz-stat-item {
    gap: 10px;
    padding: 24px 12px;
  }

  .kyz-stat-number {
    font-size: 17px;
  }

  .kyz-stat-label {
    font-size: 10px;
  }

  .kyz-stat-icon svg {
    width: 22px;
    height: 22px;
  }
}

/* ===== RESPONSIVE — MOBILE ===== */
@media (max-width: 640px) {
  .kyz-hero {
    min-height: auto;
    flex-direction: column;
  }

  .kyz-hero-bg {
    background-position: center center;
  }

  .kyz-hero-bg::after {
    background: linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.88) 0%,
      rgba(0, 0, 0, 0.7) 50%,
      rgba(0, 0, 0, 0.92) 100%
    );
  }

  .kyz-hero-content {
    padding: 70px 24px 50px;
    align-items: center;
    text-align: center;
  }

  .kyz-hero-tag {
    font-size: 10px;
    letter-spacing: 3px;
    justify-content: center;
  }

  .kyz-hero-tag::before {
    display: none;
  }

  .kyz-hero-heading {
    font-size: 32px;
    max-width: 100%;
  }

  .kyz-hero-sub {
    font-size: 14px;
    max-width: 100%;
    margin-bottom: 32px;
  }

  .kyz-hero-ctas {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }

  .kyz-hero-btn {
    justify-content: center;
    width: 100%;
    padding: 16px 24px;
    font-size: 12px;
  }

  /* stats bar — static flow on mobile instead of absolute */
  .kyz-hero-stats {
    position: relative;
    z-index: 5;
  }

  .kyz-hero-stats-inner {
    flex-direction: column;
    padding: 0;
  }

  .kyz-stat-item {
    padding: 18px 28px;
    justify-content: flex-start;
  }

  /* horizontal dividers instead of vertical on mobile */
  .kyz-stat-item + .kyz-stat-item::before {
    top: 0;
    left: 28px;
    right: 28px;
    height: 1px;
    width: auto;
    bottom: auto;
  }

  .kyz-stat-number {
    font-size: 18px;
  }

  .kyz-stat-label {
    font-size: 11px;
  }
}

/* === Widget 1 === */

/* ===== SCOPED — Elementor HTML widget safe ===== */
.kyz-equip * { margin: 0; padding: 0; box-sizing: border-box; }

.kyz-equip {
  background: #111111;
  padding: 90px 40px;
  position: relative;
  overflow: hidden;
  font-family: 'Poppins', sans-serif;
}

.kyz-equip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    135deg, transparent, transparent 40px,
    rgba(255,255,255,0.006) 40px,
    rgba(255,255,255,0.006) 41px
  );
  pointer-events: none;
}

.kyz-equip::after {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 60px; height: 3px;
  background: #E8720C;
}

.kyz-equip-inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
}

/* ── HEADER ── */
.kyz-equip-header {
  text-align: center;
  margin-bottom: 50px;
}

.kyz-equip-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #E8720C !important;
  margin-bottom: 14px;
  display: block;
}

.kyz-equip-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: #ffffff !important;
  text-transform: uppercase;
  line-height: 1.15;
  margin-bottom: 14px;
}

.kyz-equip-subtitle {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: rgba(255,255,255,0.4) !important;
  line-height: 1.7;
  max-width: 500px;
  margin: 0 auto;
}

/* ── BENTO GRID ── */
.kyz-equip-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 250px 250px;
  gap: 12px;
}

/* ── SHARED CARD STYLES ── */
.kyz-equip-card {
  position: relative;
  border-radius: 5px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  text-decoration: none !important;
  color: inherit !important;
  cursor: pointer;
}

.kyz-equip-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.kyz-equip-card:hover .kyz-equip-card-bg {
  transform: scale(1.06);
}

.kyz-equip-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0.15) 0%,
    rgba(0,0,0,0.45) 40%,
    rgba(0,0,0,0.88) 100%
);
  transition: background 0.4s ease;
}

.kyz-equip-card:hover .kyz-equip-card-overlay {
  background: linear-gradient(
    180deg,
    rgba(232,114,12,0.04) 0%,
    rgba(0,0,0,0.35) 40%,
    rgba(0,0,0,0.88) 100%
  );
}

.kyz-equip-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: #E8720C;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s ease;
  z-index: 3;
}

.kyz-equip-card:hover::after {
  transform: scaleX(1);
}

.kyz-equip-card-content {
  position: relative;
  z-index: 2;
  padding: 26px 28px;
}

.kyz-equip-card-tag {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #E8720C !important;
  background: rgba(232, 114, 12, 0.12);
  border: 1px solid rgba(232, 114, 12, 0.2);
  border-radius: 3px;
  padding: 4px 10px;
  margin-bottom: 12px;
}

.kyz-equip-card-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: #ffffff !important;
  text-transform: uppercase;
  line-height: 1.2;
  margin-bottom: 6px;
}

.kyz-equip-card-desc {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: rgba(255,255,255,0.7) !important;
  line-height: 1.65;
  margin-bottom: 14px;
  max-width: 340px;
}

.kyz-equip-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #E8720C !important;
  text-decoration: none !important;
  transition: gap 0.3s ease;
}

.kyz-equip-card:hover .kyz-equip-card-link {
  gap: 12px;
}

.kyz-equip-card-link svg {
  width: 14px; height: 14px;
  fill: #E8720C;
  transition: transform 0.3s ease;
}

.kyz-equip-card:hover .kyz-equip-card-link svg {
  transform: translateX(2px);
}

/* ── FEATURED (tall left) ── */
.kyz-equip-card--featured {
  grid-row: 1 / 3;
}

.kyz-equip-card--featured .kyz-equip-card-content {
  padding: 36px 32px;
}

.kyz-equip-card--featured .kyz-equip-card-name {
  font-size: 28px;
}

.kyz-equip-card--featured .kyz-equip-card-overlay {
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0.12) 0%,
    rgba(0,0,0,0.35) 50%,
    rgba(0,0,0,0.88) 100%
);
}

.kyz-equip-card--featured:hover .kyz-equip-card-overlay {
  background: linear-gradient(
    180deg,
    rgba(232,114,12,0.03) 0%,
    rgba(0,0,0,0.28) 50%,
    rgba(0,0,0,0.86) 100%
  );
}

/* ── COMING SOON tiles (Excavators / Loaders) ── */
.kyz-equip-card--soon {
  cursor: default;
  opacity: 0.65;
  pointer-events: none;
}

.kyz-equip-card--soon::after {
  display: none; /* suppress the orange hover underline */
}

.kyz-equip-card-tag--soon {
  color: #9ca3af !important;
  background: rgba(156, 163, 175, 0.12);
  border: 1px solid rgba(156, 163, 175, 0.25);
}

.kyz-equip-card-link--muted {
  color: #9ca3af !important;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ── BOTTOM BAR (Other) ── */
.kyz-equip-bar {
  margin-top: 12px;
  border-radius: 5px;
  overflow: hidden;
  position: relative;
  min-height: 110px;
  display: flex;
  align-items: center;
  cursor: pointer;
  text-decoration: none !important;
  color: inherit !important;
}

.kyz-equip-bar .kyz-equip-card-bg {
  position: absolute;
  inset: 0;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.kyz-equip-bar:hover .kyz-equip-card-bg {
  transform: scale(1.04);
}

.kyz-equip-bar .kyz-equip-card-overlay {
  background: linear-gradient(
    90deg,
    rgba(0,0,0,0.88) 0%,
    rgba(0,0,0,0.65) 40%,
    rgba(0,0,0,0.35) 100%
  ) !important;
}

.kyz-equip-bar:hover .kyz-equip-card-overlay {
  background: linear-gradient(
    90deg,
    rgba(0,0,0,0.9) 0%,
    rgba(0,0,0,0.7) 40%,
    rgba(0,0,0,0.4) 100%
  ) !important;
}

.kyz-equip-bar::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: #E8720C;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s ease;
  z-index: 3;
}

.kyz-equip-bar:hover::after {
  transform: scaleX(1);
}

.kyz-equip-bar-content {
  position: relative;
  z-index: 2;
  padding: 28px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 24px;
}

.kyz-equip-bar-text .kyz-equip-card-name {
  margin-bottom: 4px;
}

.kyz-equip-bar-text .kyz-equip-card-desc {
  margin-bottom: 0;
  max-width: 500px;
}

.kyz-equip-bar:hover .kyz-equip-card-link {
  gap: 12px;
}

.kyz-equip-bar:hover .kyz-equip-card-link svg {
  transform: translateX(2px);
}

/* ── CARD BACKGROUNDS ── */
.kyz-equip-card--cranes .kyz-equip-card-bg {
  background-image: url('/wp-content/uploads/2026/03/rough-terrain-cranes-terex-rt-90-for-sale-100128-c072ec5154eeaecefa284c88c720a964.jpg');
}
.kyz-equip-card--excavators .kyz-equip-card-bg {
  background-image: url('/wp-content/uploads/2026/03/1616575590.jpg');
}
.kyz-equip-card--loaders .kyz-equip-card-bg {
  background-image: url('/wp-content/uploads/2026/03/624L_Wheel_Loader_4_header_r4f023112_rrd.webp');
}
.kyz-equip-card--other .kyz-equip-card-bg {
  background-image: url('/wp-content/uploads/2026/03/IMAG0154-1086x598-1.jpg');
}

/* ── RESPONSIVE — TABLET ── */
@media (max-width: 1024px) {
  .kyz-equip { padding: 70px 30px; }
  .kyz-equip-title { font-size: 28px; }

  .kyz-equip-grid {
    grid-template-rows: 280px 220px;
  }

  .kyz-equip-card--featured {
    grid-row: auto;
    grid-column: 1 / -1;
  }

  .kyz-equip-card--featured .kyz-equip-card-name { font-size: 24px; }

  .kyz-equip-bar-content { padding: 24px 28px; }
}

/* ── RESPONSIVE — MOBILE ── */
@media (max-width: 640px) {
  .kyz-equip { padding: 50px 20px; }
  .kyz-equip-title { font-size: 24px; }
  .kyz-equip-subtitle { font-size: 13px; }

  .kyz-equip-grid {
    grid-template-columns: 1fr;
    grid-template-rows: 240px 200px 200px;
    gap: 10px;
  }

  .kyz-equip-card--featured { grid-column: auto; }
  .kyz-equip-card--featured .kyz-equip-card-name { font-size: 22px; }
  .kyz-equip-card-name { font-size: 18px; }
  .kyz-equip-card-content { padding: 22px 20px; }
  .kyz-equip-card--featured .kyz-equip-card-content { padding: 24px 22px; }
  .kyz-equip-card-desc { font-size: 11px; }

  .kyz-equip-bar { min-height: auto; }

  .kyz-equip-bar-content {
    flex-direction: column;
    align-items: flex-start;
    padding: 22px 20px;
    gap: 14px;
  }

  .kyz-equip-bar .kyz-equip-card-overlay {
    background: linear-gradient(
      180deg,
      rgba(0,0,0,0.6) 0%,
      rgba(0,0,0,0.88) 100%
    ) !important;
  }
}

/* === Widget 2 === */

/* ===== SCOPED STYLES — safe for Elementor HTML widget ===== */
.kyz-process-section * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.kyz-process-section {
  background: #ffffff;
  padding: 80px 40px;
  position: relative;
  overflow: hidden;
  font-family: 'Poppins', sans-serif;
}

/* subtle diagonal texture overlay */
.kyz-process-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    135deg,
    transparent,
    transparent 40px,
    rgba(0, 0, 0, 0.015) 40px,
    rgba(0, 0, 0, 0.015) 41px
  );
  pointer-events: none;
}

/* top orange accent line */
.kyz-process-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: #E8720C;
}

.kyz-process-header {
  text-align: center;
  margin-bottom: 70px;
  position: relative;
}

.kyz-process-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #E8720C !important;
  margin-bottom: 16px;
  display: block;
}

.kyz-process-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: #1a1a1a !important;
  text-transform: uppercase;
  line-height: 1.2;
}

/* ===== TIMELINE CONTAINER ===== */
.kyz-timeline {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

/* horizontal connecting line — circle center to circle center */
.kyz-timeline::before {
  content: '';
  position: absolute;
  top: 35px;
  left: calc(100% / 12);
  right: calc(100% / 12);
  height: 2px;
  background: linear-gradient(90deg, #E8720C 0%, rgba(232, 114, 12, 0.2) 50%, #E8720C 100%);
  z-index: 1;
}

/* ===== EACH STEP ===== */
.kyz-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 2;
  padding: 0 8px;
}

/* numbered circle */
.kyz-step-circle {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #ffffff;
  border: 2px solid #E8720C;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  position: relative;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  flex-shrink: 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}

.kyz-step:hover .kyz-step-circle {
  background: #E8720C;
  box-shadow: 0 0 30px rgba(232, 114, 12, 0.4);
  transform: scale(1.1);
}

.kyz-step-number {
  font-family: 'Montserrat', sans-serif;
  font-size: 24px;
  font-weight: 800;
  color: #E8720C !important;
  transition: color 0.4s ease;
  line-height: 1;
}

.kyz-step:hover .kyz-step-number {
  color: #ffffff !important;
}

/* icon below circle */
.kyz-step-icon {
  margin-bottom: 16px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.kyz-step-icon svg {
  width: 32px;
  height: 32px;
  fill: #E8720C;
  opacity: 0.8;
  transition: opacity 0.4s ease;
}

.kyz-step:hover .kyz-step-icon svg {
  opacity: 1;
}

/* step title */
.kyz-step-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #1a1a1a !important;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
  line-height: 1.4;
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* step description */
.kyz-step-desc {
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 300;
  color: rgba(0, 0, 0, 0.5) !important;
  line-height: 1.6;
  max-width: 150px;
  margin: 0 auto;
}

/* ===== RESPONSIVE — TABLET ===== */
@media (max-width: 1024px) {
  .kyz-process-section {
    padding: 60px 30px;
  }

  .kyz-timeline {
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px 0;
  }

  .kyz-timeline::before {
    display: none;
  }

  .kyz-step {
    flex: 0 0 33.333%;
  }

  .kyz-process-title {
    font-size: 28px;
  }
}

/* ===== RESPONSIVE — MOBILE ===== */
@media (max-width: 640px) {
  .kyz-process-section {
    padding: 50px 20px;
  }

  .kyz-process-header {
    margin-bottom: 50px;
  }

  .kyz-process-title {
    font-size: 22px;
  }

  .kyz-timeline {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    position: relative;
    max-width: 360px;
    margin: 0 auto;
  }

  /* vertical line on mobile — runs through circle centers */
  .kyz-timeline::before {
    display: block;
    top: 25px;
    bottom: 25px;
    left: 25px;
    right: auto;
    width: 2px;
    height: auto;
    background: linear-gradient(180deg, #E8720C 0%, rgba(232, 114, 12, 0.2) 100%);
  }

  .kyz-step {
    flex: none;
    flex-direction: row;
    align-items: center;
    text-align: left;
    padding: 12px 0;
    gap: 16px;
  }

  .kyz-step-circle {
    width: 50px;
    height: 50px;
    min-width: 50px;
    margin-bottom: 0;
    position: relative;
    left: auto;
  }

  .kyz-step-number {
    font-size: 18px;
  }

  .kyz-step-content-mobile {
    display: flex;
    flex-direction: column;
  }

  .kyz-step-icon {
    display: none;
  }

  .kyz-step-title {
    min-height: unset;
    font-size: 14px;
    margin-bottom: 4px;
    justify-content: flex-start;
  }

  .kyz-step-desc {
    max-width: 100%;
    font-size: 12px;
    margin: 0;
  }
}

/* === Widget 3 === */

/* ===== SCOPED — Elementor HTML widget safe ===== */
.kyz-why * { margin: 0; padding: 0; box-sizing: border-box; }

.kyz-why {
  position: relative;
  background: #0e0e0e;
  padding: 100px 40px;
  overflow: hidden;
  font-family: 'Poppins', sans-serif;
}

/* background image with heavy overlay */
.kyz-why-bg {
  position: absolute;
  inset: 0;
  background-image: url('/wp-content/uploads/2026/02/Gemini_Generated_Image_ivx0xgivx0xgivx0.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.12;
  pointer-events: none;
}

/* grain texture */
.kyz-why::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    135deg,
    transparent, transparent 40px,
    rgba(255,255,255,0.006) 40px,
    rgba(255,255,255,0.006) 41px
  );
  pointer-events: none;
  z-index: 1;
}

/* top orange accent */
.kyz-why::after {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 60px; height: 3px;
  background: #E8720C;
  z-index: 2;
}

.kyz-why-inner {
  position: relative;
  z-index: 3;
  max-width: 1200px;
  margin: 0 auto;
}

/* ── HEADER ── */
.kyz-why-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 60px;
  gap: 40px;
}

.kyz-why-header-left {
  max-width: 560px;
}

.kyz-why-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #E8720C !important;
  margin-bottom: 14px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.kyz-why-label::before {
  content: '';
  width: 32px; height: 2px;
  background: #E8720C;
  display: block;
}

.kyz-why-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 38px;
  font-weight: 800;
  color: #ffffff !important;
  text-transform: uppercase;
  line-height: 1.15;
}

.kyz-why-title span {
  color: #E8720C !important;
}

.kyz-why-header-right {
  max-width: 360px;
  flex-shrink: 0;
}

.kyz-why-intro {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: rgba(255,255,255,0.7) !important;
  line-height: 1.8;
}

/* ── DIVIDER ── */
.kyz-why-divider {
  height: 1px;
  background: linear-gradient(90deg, rgba(232,114,12,0.4) 0%, rgba(255,255,255,0.04) 100%);
  margin-bottom: 50px;
}

/* ── FEATURES GRID ── */
.kyz-why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-bottom: 56px;
}

.kyz-why-card {
  padding: 36px 32px;
  position: relative;
  border-right: 1px solid rgba(255,255,255,0.05);
  transition: background 0.4s ease;
}

.kyz-why-card:last-child {
  border-right: none;
}

.kyz-why-card:hover {
  background: rgba(232, 114, 12, 0.03);
}

/* step number */
.kyz-why-card-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 48px;
  font-weight: 900;
  color: rgba(255,255,255,0.03) !important;
  line-height: 1;
  position: absolute;
  top: 20px;
  right: 24px;
  pointer-events: none;
  user-select: none;
}

/* icon */
.kyz-why-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 6px;
  background: rgba(232, 114, 12, 0.08);
  border: 1px solid rgba(232, 114, 12, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  transition: all 0.35s ease;
}

.kyz-why-card:hover .kyz-why-card-icon {
  background: rgba(232, 114, 12, 0.14);
  border-color: rgba(232, 114, 12, 0.25);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232, 114, 12, 0.12);
}

.kyz-why-card-icon svg {
  width: 22px;
  height: 22px;
  fill: #E8720C;
  opacity: 0.85;
}

.kyz-why-card:hover .kyz-why-card-icon svg {
  opacity: 1;
}

/* card title */
.kyz-why-card-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #ffffff !important;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.4;
  margin-bottom: 10px;
}

/* card description */
.kyz-why-card-desc {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.7) !important;
  line-height: 1.7;
}

/* ── CTA ROW ── */
.kyz-why-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.kyz-why-cta-text {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.8) !important;
  line-height: 1.6;
  max-width: 480px;
}

.kyz-why-cta-text strong {
  color: rgba(255,255,255,0.6) !important;
  font-weight: 500;
}

.kyz-why-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none !important;
  color: #ffffff !important;
  background: #E8720C;
  padding: 15px 32px;
  border-radius: 3px;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.kyz-why-btn:hover {
  background: #ff8c2a;
  box-shadow: 0 6px 24px rgba(232, 114, 12, 0.35);
  transform: translateY(-2px);
}

.kyz-why-btn svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
  transition: transform 0.25s ease;
}

.kyz-why-btn:hover svg {
  transform: translateX(3px);
}

/* ── RESPONSIVE — TABLET ── */
@media (max-width: 1024px) {
  .kyz-why { padding: 70px 30px; }

  .kyz-why-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 44px;
  }

  .kyz-why-title { font-size: 30px; }

  .kyz-why-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
  }

  .kyz-why-card {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    padding: 30px 24px;
  }

  .kyz-why-card:nth-child(odd) {
    border-right: 1px solid rgba(255,255,255,0.04);
  }

  .kyz-why-card:nth-child(3),
  .kyz-why-card:nth-child(4) {
    border-bottom: none;
  }

  .kyz-why-cta {
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
  }
}

/* ── RESPONSIVE — MOBILE ── */
@media (max-width: 640px) {
  .kyz-why { padding: 50px 20px; }

  .kyz-why-title { font-size: 24px; }

  .kyz-why-grid {
    grid-template-columns: 1fr;
  }

  .kyz-why-card {
    border-right: none !important;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    padding: 24px 16px;
  }

  .kyz-why-card:last-child { border-bottom: none; }

  .kyz-why-card-num { display: none; }

  .kyz-why-btn {
    width: 100%;
    justify-content: center;
  }
}

/* === Widget 4 === */

/* ===== SCOPED STYLES — safe for Elementor HTML widget ===== */
.kyz-industries * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.kyz-industries {
  background: #111111;
  padding: 90px 40px;
  position: relative;
  overflow: hidden;
  font-family: 'Poppins', sans-serif;
}

/* subtle diagonal texture */
.kyz-industries::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    135deg,
    transparent,
    transparent 40px,
    rgba(255, 255, 255, 0.008) 40px,
    rgba(255, 255, 255, 0.008) 41px
  );
  pointer-events: none;
}

/* top accent line */
.kyz-industries::after {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: #E8720C;
}

/* ===== HEADER ===== */
.kyz-industries-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
}

.kyz-industries-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #E8720C !important;
  margin-bottom: 16px;
  display: block;
}

.kyz-industries-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: #ffffff !important;
  text-transform: uppercase;
  line-height: 1.2;
  margin-bottom: 16px;
}

.kyz-industries-subtitle {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.5) !important;
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto;
}

/* ===== INDUSTRY CARDS GRID ===== */
.kyz-industries-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.kyz-industry-card {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  cursor: default;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.kyz-industry-card:hover {
  transform: translateY(-4px);
}

/* background image layer */
.kyz-industry-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 0.6s ease;
}

.kyz-industry-card:hover .kyz-industry-card-bg {
  transform: scale(1.08);
}

/* gradient overlay */
.kyz-industry-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.1) 0%,
    rgba(0, 0, 0, 0.55) 50%,
    rgba(0, 0, 0, 0.88) 100%
  );
  transition: background 0.4s ease;
}

.kyz-industry-card:hover .kyz-industry-card-overlay {
  background: linear-gradient(
    180deg,
    rgba(232, 114, 12, 0.05) 0%,
    rgba(0, 0, 0, 0.6) 50%,
    rgba(0, 0, 0, 0.92) 100%
  );
}

/* card content */
.kyz-industry-card-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 24px 20px;
}

.kyz-industry-card-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  background: rgba(232, 114, 12, 0.15);
  border-radius: 4px;
  transition: background 0.3s ease;
}

.kyz-industry-card:hover .kyz-industry-card-icon {
  background: rgba(232, 114, 12, 0.3);
}

.kyz-industry-card-icon svg {
  width: 20px;
  height: 20px;
  fill: #E8720C;
}

.kyz-industry-card-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #ffffff !important;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.4;
  margin-bottom: 6px;
  display: block;
}

.kyz-industry-card-desc {
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.45) !important;
  line-height: 1.5;
  display: block;
}

/* orange bottom border on hover */
.kyz-industry-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: #E8720C;
  transform: scaleX(0);
  transition: transform 0.4s ease;
  z-index: 3;
}

.kyz-industry-card:hover::after {
  transform: scaleX(1);
}

/* background images per card */
.kyz-industry-card-bg {
  background: linear-gradient(145deg, #1e1e1e 0%, #141414 50%, #0f0f0f 100%);
}
.kyz-industry-card--construction .kyz-industry-card-bg {
  background: linear-gradient(145deg, #1f1b18 0%, #141210 100%);
}
.kyz-industry-card--infrastructure .kyz-industry-card-bg {
  background: linear-gradient(145deg, #191b1f 0%, #111318 100%);
}
.kyz-industry-card--oilgas .kyz-industry-card-bg {
  background: linear-gradient(145deg, #1e1a14 0%, #131109 100%);
}
.kyz-industry-card--industrial .kyz-industry-card-bg {
  background: linear-gradient(145deg, #191919 0%, #101010 100%);
}
.kyz-industry-card--logistics .kyz-industry-card-bg {
  background: linear-gradient(145deg, #141a1e 0%, #0d1217 100%);
}

/* ===== BOTTOM STATS ROW ===== */
.kyz-industries-stats {
  max-width: 1200px;
  margin: 50px auto 0;
  display: flex;
  justify-content: center;
  gap: 50px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.kyz-industries-stat {
  text-align: center;
}

.kyz-industries-stat-number {
  font-family: 'Montserrat', sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: #E8720C !important;
  line-height: 1.2;
  margin-bottom: 4px;
}

.kyz-industries-stat-label {
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.4) !important;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ===== RESPONSIVE — TABLET ===== */
@media (max-width: 1024px) {
  .kyz-industries {
    padding: 70px 30px;
  }

  .kyz-industries-title {
    font-size: 28px;
  }

  .kyz-industries-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  /* make last 2 cards span center */
  .kyz-industry-card:nth-child(4) {
    grid-column: 1 / 2;
  }

  .kyz-industry-card:nth-child(5) {
    grid-column: 2 / 3;
  }

  .kyz-industries-stats {
    gap: 30px;
    flex-wrap: wrap;
  }

  .kyz-industries-stat-number {
    font-size: 26px;
  }
}

/* ===== RESPONSIVE — MOBILE ===== */
@media (max-width: 640px) {
  .kyz-industries {
    padding: 50px 20px;
  }

  .kyz-industries-header {
    margin-bottom: 40px;
  }

  .kyz-industries-title {
    font-size: 22px;
  }

  .kyz-industries-subtitle {
    font-size: 13px;
  }

  .kyz-industries-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .kyz-industry-card {
    min-height: 160px;
  }

  .kyz-industry-card:nth-child(4) {
    grid-column: auto;
  }

  .kyz-industry-card:nth-child(5) {
    grid-column: 1 / -1;
  }

  .kyz-industry-card-content {
    padding: 16px 14px;
  }

  .kyz-industry-card-name {
    font-size: 12px;
  }

  .kyz-industry-card-desc {
    display: none;
  }

  .kyz-industry-card-icon {
    width: 30px;
    height: 30px;
    margin-bottom: 8px;
  }

  .kyz-industry-card-icon svg {
    width: 16px;
    height: 16px;
  }

  .kyz-industries-stats {
    gap: 20px;
    margin-top: 36px;
    padding-top: 30px;
  }

  .kyz-industries-stat-number {
    font-size: 22px;
  }

  .kyz-industries-stat-label {
    font-size: 10px;
  }
}

/* === Widget 5 === */

.kyz-clients * { margin: 0; padding: 0; box-sizing: border-box; }

.kyz-clients {
  background: #f5f4f0;
  padding: 80px 40px;
  position: relative;
  overflow: hidden;
  font-family: 'Poppins', sans-serif;
}

.kyz-clients::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 60px; height: 3px;
  background: #E8720C;
}

.kyz-clients-header { text-align: center; margin-bottom: 48px; }

.kyz-clients-label {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px; font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #E8720C;
  margin-bottom: 12px;
}

.kyz-clients-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 32px; font-weight: 800;
  color: #111111;
  text-transform: uppercase;
  line-height: 1.2;
  margin-bottom: 12px;
}

.kyz-clients-subtitle {
  font-family: 'Poppins', sans-serif;
  font-size: 15px; font-weight: 300;
  color: rgba(0, 0, 0, 0.45);
  line-height: 1.7;
  max-width: 500px;
  margin: 0 auto;
}

.kyz-clients-divider {
  width: 100%; max-width: 600px; height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(232,114,12,0.5) 30%, rgba(232,114,12,0.5) 70%, transparent 100%);
  margin: 0 auto 48px;
}

.kyz-clients-carousel-wrapper { position: relative; overflow: hidden; }

.kyz-clients-carousel-wrapper::before,
.kyz-clients-carousel-wrapper::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0; width: 160px;
  z-index: 2; pointer-events: none;
}

.kyz-clients-carousel-wrapper::before {
  left: 0;
  background: linear-gradient(90deg, #f5f4f0 0%, transparent 100%);
}

.kyz-clients-carousel-wrapper::after {
  right: 0;
  background: linear-gradient(270deg, #f5f4f0 0%, transparent 100%);
}

.kyz-clients-track {
  display: flex; align-items: center;
  gap: 0; width: max-content;
  animation: kyz-scroll 28s linear infinite;
}

.kyz-clients-track:hover { animation-play-state: paused; }

@keyframes kyz-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.kyz-client-item {
  display: flex; align-items: center; justify-content: center;
  padding: 0 60px; height: 100px;
  flex-shrink: 0; position: relative;
}

.kyz-client-item::after {
  content: '';
  position: absolute; right: 0;
  top: 50%; transform: translateY(-50%);
  height: 40px; width: 1px;
  background: rgba(0, 0, 0, 0.08);
}

.kyz-client-item img {
  height: 52px; width: auto; max-width: 160px;
  object-fit: contain;
  filter: grayscale(100%) brightness(0.7) contrast(0.9);
  transition: filter 0.4s ease, transform 0.4s ease;
  display: block;
}

.kyz-client-item:hover img {
  filter: grayscale(0%) brightness(1) contrast(1);
  transform: scale(1.06);
}

.kyz-clients-footer {
  text-align: center;
  margin-top: 48px; padding-top: 36px;
  border-top: 1px solid rgba(0, 0, 0, 0.07);
}

.kyz-clients-footer p {
  font-family: 'Poppins', sans-serif;
  font-size: 13px; font-weight: 300;
  color: rgba(0, 0, 0, 0.35);
  letter-spacing: 0.5px;
}

.kyz-clients-footer span { color: #E8720C; font-weight: 500; }

@media (max-width: 768px) {
  .kyz-clients { padding: 60px 20px; }
  .kyz-clients-title { font-size: 22px; }
  .kyz-clients-carousel-wrapper::before,
  .kyz-clients-carousel-wrapper::after { width: 60px; }
  .kyz-client-item { padding: 0 36px; height: 80px; }
  .kyz-client-item img { height: 38px; }
}

