/* =========================================================
   BRIGHT CRANE EQUIPMENT — Global Stylesheet
   Modern UI/UX redesign · Industrial blue palette
   ========================================================= */

:root {
  --primary: #f27509;
  --primary-dark: #c75c00;
  --primary-light: #f99441;
  --accent: #111111;
  --accent-soft: #fff7ed;
  --dark: #0a0a0a;
  --gray-900: #111827;
  --gray-700: #374151;
  --gray-500: #6b7280;
  --gray-300: #d1d5db;
  --gray-100: #f3f4f6;
  --light: #fff7ed;
  --white: #ffffff;
  --success: #16a34a;
  --radius-sm: 8px;
  --radius: 16px;
  --radius-lg: 28px;
  --shadow-sm: 0 2px 8px rgba(10, 25, 41, 0.06);
  --shadow: 0 12px 40px rgba(10, 25, 41, 0.10);
  --shadow-lg: 0 30px 80px rgba(242, 117, 9, 0.18);
  --container: 1240px;
  --font-display: 'Poppins', system-ui, -apple-system, sans-serif;
  --font-body: 'Poppins', system-ui, -apple-system, sans-serif;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--gray-900);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}
img, svg { max-width: 100%; display: block; }
.ico svg,
.icon svg,
.whatsapp-float svg {
  width: 1.15em;
  height: 1.15em;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.whatsapp-float svg,
.whatsapp-ico svg {
  fill: currentColor;
  stroke: none;
}
a { color: inherit; text-decoration: none; transition: color 0.25s var(--ease); }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--dark);
}
h1 { font-size: clamp(2.5rem, 6vw, 4.75rem); }
h2 { font-size: clamp(2rem, 4vw, 3.25rem); }
h3 { font-size: clamp(1.4rem, 2.2vw, 1.85rem); }
p { color: var(--gray-700); }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  border-bottom: 1px solid rgba(242, 117, 9, 0.08);
  transition: padding 0.3s var(--ease), background 0.3s var(--ease);
}
.site-header.scrolled {
  padding: 10px 0;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-sm);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--primary);
}
.logo img {
  height: 54px;
  width: auto;
  display: block;
  transition: height 0.3s var(--ease);
}
.site-header.scrolled .logo img { height: 44px; }
.footer-brand .logo img {
  height: 60px;
  filter: brightness(0) invert(1);
}
.nav-list {
  display: flex;
  gap: 6px;
  align-items: center;
}
.nav-list a {
  padding: 10px 16px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--gray-700);
  border-radius: 10px;
  position: relative;
}
.nav-list a:hover, .nav-list a.active {
  color: var(--primary);
  background: rgba(249, 148, 65, 0.08);
}
.nav-cta {
  background: var(--primary);
  color: var(--white) !important;
  padding: 12px 22px !important;
  border-radius: 999px !important;
  font-weight: 600 !important;
  box-shadow: 0 6px 18px rgba(242, 117, 9, 0.3);
}
.nav-cta:hover {
  background: var(--primary-dark) !important;
  transform: translateY(-2px);
}
/* Per-item icons: only shown inside the mobile drawer, hidden on desktop */
.nav-ico { display: none; }
.nav-ico svg {
  width: 21px; height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.menu-toggle { display: none; }
.dropdown-toggle { display: none; }
.nav-close { display: none; }
.nav-backdrop { display: none; }

/* ---------- Header · Clean white variant (HOME PAGE ONLY) ---------- */
.site-header.header-home {
  background: #ffffff;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: 1px solid var(--gray-100);
  box-shadow: 0 4px 24px rgba(10, 25, 41, 0.06);
}
.site-header.header-home.scrolled {
  background: #ffffff;
  box-shadow: 0 6px 22px rgba(10, 25, 41, 0.10);
}
/* Thin orange rule under the bar for a crisp brand accent */
.site-header.header-home::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--primary-light) 45%, transparent 100%);
  opacity: 0.85;
}
.site-header.header-home .nav-list a {
  color: var(--gray-900);
  font-weight: 500;
}
.site-header.header-home .nav-list a:hover,
.site-header.header-home .nav-list a.active {
  color: var(--primary);
  background: rgba(242, 117, 9, 0.08);
}
/* Orange underline indicator on the active/hovered link */
.site-header.header-home .nav-list > li > a::before {
  content: "";
  position: absolute;
  left: 16px; right: 16px; bottom: 4px;
  height: 2px;
  border-radius: 2px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s var(--ease);
}
.site-header.header-home .nav-list > li > a:hover::before,
.site-header.header-home .nav-list > li > a.active::before {
  transform: scaleX(1);
}
/* Keep the CTA underline-free (it's a pill) */
.site-header.header-home .nav-list > li > a.nav-cta::before { display: none; }

/* ---------- Nav dropdown ---------- */
.nav-list .has-dropdown { position: relative; }
.nav-list .has-dropdown > a::after {
  content: "";
  display: inline-block;
  width: 6px; height: 6px;
  margin-left: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  opacity: 0.55;
  transition: transform 0.2s var(--ease);
}
.nav-list .has-dropdown:hover > a::after { transform: translateY(0) rotate(45deg); }
.nav-dropdown {
  position: absolute;
  top: calc(100% + 14px);
  left: 0;
  width: 480px;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 20px;
  box-shadow: 0 26px 64px rgba(17, 24, 39, 0.16);
  padding: 14px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.22s var(--ease), transform 0.22s var(--ease), visibility 0.22s;
  z-index: 120;
}
.nav-dropdown::before {
  content: "";
  position: absolute;
  top: -16px; left: 0; right: 0;
  height: 16px;
}
.nav-list .has-dropdown:hover .nav-dropdown,
.nav-list .has-dropdown:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-dropdown a {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 11px 13px;
  border-radius: 12px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray-700);
  white-space: nowrap;
  transition: background 0.2s var(--ease), color 0.2s var(--ease), transform 0.2s var(--ease);
}
.nav-dropdown a::before {
  content: "";
  width: 9px; height: 9px;
  border-radius: 3px;
  background: var(--gray-300);
  flex-shrink: 0;
  transition: background 0.2s var(--ease), transform 0.2s var(--ease);
}
.nav-dropdown a:hover {
  background: var(--accent-soft);
  color: var(--primary);
  transform: translateX(3px);
}
.nav-dropdown a:hover::before {
  background: linear-gradient(145deg, var(--primary), var(--primary-dark));
  transform: rotate(45deg);
}
.nav-dropdown li:last-child { grid-column: 1 / -1; margin-top: 8px; border-top: 1px solid var(--gray-100); }
.nav-dropdown li:last-child a {
  justify-content: center;
  padding-top: 14px;
  border-radius: 0 0 12px 12px;
  color: var(--primary);
  font-weight: 600;
}
.nav-dropdown li:last-child a::before { display: none; }
.nav-dropdown li:last-child a:hover { background: transparent; transform: none; color: var(--primary-dark); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.25s var(--ease);
  white-space: nowrap;
}
.btn-primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 10px 28px rgba(242, 117, 9, 0.3);
}
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.btn-accent {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
}
.btn-accent:hover { background: #2a2a2a; transform: translateY(-3px); }
.btn-ghost {
  background: transparent;
  color: var(--primary);
  border: 1.5px solid rgba(242, 117, 9, 0.2);
}
.btn-ghost:hover { background: var(--primary); color: var(--white); border-color: var(--primary); }

/* ---------- Hero v1 (kept for legacy refs) ---------- */
.hero {
  position: relative;
  padding: 180px 0 120px;
  overflow: hidden;
  background:
    radial-gradient(circle at 90% 10%, rgba(249, 148, 65, 0.12), transparent 50%),
    radial-gradient(circle at 10% 90%, rgba(242, 117, 9, 0.08), transparent 50%),
    linear-gradient(180deg, #fff7ed 0%, #ffffff 100%);
}

/* ---------- Hero v2 — Magazine / Editorial Style ---------- */
.hero-v2 {
  position: relative;
  padding: 140px 0 0;
  overflow: hidden;
  background: #ffffff;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-v2-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.hero-v2-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(242, 117, 9, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(242, 117, 9, 0.05) 1px, transparent 1px);
  background-size: 70px 70px;
  mask-image: radial-gradient(ellipse 90% 70% at 50% 50%, black, transparent 90%);
  -webkit-mask-image: radial-gradient(ellipse 90% 70% at 50% 50%, black, transparent 90%);
}
.hero-v2-glow {
  position: absolute;
  top: 10%; right: -15%;
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(242, 117, 9, 0.18), transparent 60%);
  border-radius: 50%;
  filter: blur(60px);
}
.hero-v2-watermark {
  position: absolute;
  bottom: 5%; left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-size: clamp(8rem, 28vw, 28rem);
  font-weight: 700;
  color: rgba(242, 117, 9, 0.07);
  letter-spacing: -0.05em;
  white-space: nowrap;
  line-height: 0.85;
  user-select: none;
}

.hero-v2-content {
  position: relative;
  z-index: 2;
  padding: 60px 0;
}

.hero-v2-toptag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  padding: 10px 20px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 36px;
  color: var(--gray-700);
  border: 1px solid rgba(242, 117, 9, 0.2);
  box-shadow: 0 6px 20px rgba(242, 117, 9, 0.08);
}
.hero-v2-toptag .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 4px rgba(22, 163, 74, 0.2);
  animation: pulse 1.8s infinite;
}

.hero-v2-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 50px;
  align-items: center;
}

.hero-v2-text .hero-v2-eyebrow {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--primary);
  margin-bottom: 22px;
  text-transform: uppercase;
}
.hero-v2-text h1 {
  font-size: clamp(2.8rem, 6.4vw, 5.2rem);
  line-height: 0.98;
  font-weight: 700;
  letter-spacing: -0.035em;
  text-transform: none;
}
.hero-v2-text h1 .hl {
  position: relative;
  color: var(--primary);
  display: inline-block;
  white-space: nowrap;
}
.hero-v2-text h1 .hl::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 4px;
  height: 12px;
  background: rgba(242, 117, 9, 0.25);
  border-radius: 99px;
  z-index: -1;
}
.hero-v2-text h1 .stroke {
  -webkit-text-stroke: 2px var(--dark);
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.hero-v2-text p {
  margin: 32px 0 38px;
  max-width: 500px;
  font-size: 1.08rem;
  line-height: 1.65;
}

.hero-v2-actions {
  display: flex;
  gap: 14px;
  margin-bottom: 56px;
  flex-wrap: wrap;
}

.hero-mini-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  padding-top: 30px;
  border-top: 1px solid rgba(242, 117, 9, 0.18);
}
.hero-mini-stats > div {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.hero-mini-stats .num {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: -0.02em;
  line-height: 1;
}
.hero-mini-stats .label {
  font-size: 0.72rem;
  color: var(--gray-500);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
}

/* Visual side with crane image + floating badges */
.hero-v2-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 500px;
}
.hero-v2-visual .crane-img {
  width: 110%;
  max-width: 700px;
  height: auto;
  position: relative;
  z-index: 2;
  animation: heroFloat 5s ease-in-out infinite;
  filter: drop-shadow(0 30px 60px rgba(242, 117, 9, 0.2));
}
@keyframes heroFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}
.hero-v2-spotlight {
  position: absolute;
  bottom: 5%;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  height: 60px;
  background: radial-gradient(ellipse at center, rgba(242, 117, 9, 0.35), transparent 70%);
  filter: blur(20px);
  z-index: 1;
}

.hero-badge {
  position: absolute;
  background: var(--white);
  padding: 14px 20px;
  border-radius: 16px;
  box-shadow: 0 18px 50px rgba(242, 117, 9, 0.18), 0 4px 12px rgba(0, 0, 0, 0.05);
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 4px;
  border: 1px solid rgba(242, 117, 9, 0.12);
  animation: badgeFloat 4s ease-in-out infinite;
}
.hero-badge:nth-child(odd) { animation-delay: -2s; }
@keyframes badgeFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.hero-badge .lbl {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--gray-500);
  text-transform: uppercase;
}
.hero-badge .val {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: -0.02em;
  line-height: 1;
}
.hero-badge .val .unit { font-size: 0.85rem; color: var(--gray-500); font-weight: 500; }
.hero-badge-1 { top: 12%; left: -10px; }
.hero-badge-2 { top: 38%; right: -10px; }
.hero-badge-3 {
  bottom: 14%; left: 6%;
  background: var(--dark);
  color: var(--white);
}
.hero-badge-3 .val { color: var(--primary); }
.hero-badge-3 .lbl { color: rgba(255,255,255,0.5); }

/* Marquee strip beneath hero */
.hero-marquee {
  background: var(--dark);
  color: var(--white);
  padding: 22px 0;
  overflow: hidden;
  border-top: 4px solid var(--primary);
  position: relative;
  z-index: 5;
}
.hero-marquee-track {
  display: flex;
  gap: 48px;
  width: max-content;
  animation: marquee 30s linear infinite;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  white-space: nowrap;
  text-transform: uppercase;
}
.hero-marquee-track span {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.hero-marquee-track span::after {
  content: '◆';
  color: var(--primary);
  font-size: 0.8rem;
}

/* Mid CTA Banner — "Power your progress" */
.power-cta {
  background: linear-gradient(115deg,
    #a83800 0%,
    var(--primary-dark) 18%,
    var(--primary) 34%,
    #ffbf5e 50%,
    var(--primary) 66%,
    var(--primary-dark) 82%,
    #a83800 100%);
  background-size: 280% 280%;
  animation: ctaWave 7s ease-in-out infinite;
  color: var(--white);
  padding: 80px 60px;
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  text-align: center;
}
@keyframes ctaWave {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.power-cta::before, .power-cta::after {
  content: '';
  position: absolute;
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(255,255,255,0.18), transparent 70%);
  border-radius: 50%;
  animation: ctaGlow 12s ease-in-out infinite;
  pointer-events: none; /* decorative glow must not intercept taps on the CTA buttons (mobile) */
}
.power-cta::before { top: -100px; left: -100px; }
.power-cta::after { bottom: -100px; right: -100px; animation-delay: -6s; }
@keyframes ctaGlow {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.75; }
  50%      { transform: translate(40px, 30px) scale(1.25); opacity: 1; }
}
.power-cta h2 {
  color: var(--white);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  max-width: 800px;
  margin: 0 auto 30px;
  line-height: 1.15;
  position: relative;
}
.power-cta .actions {
  display: inline-flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  position: relative;
}

/* Global network world map section */
.global-network {
  background: linear-gradient(180deg, var(--white), var(--light));
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.global-network-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 60px;
  align-items: center;
}
.world-map-wrap {
  position: relative;
}
/* Pins live inside this box (not the whole wrap), so they anchor to the map
   image and never ride up over the heading — critical on narrow screens where
   the heading takes several lines. */
.world-map-img {
  position: relative;
  display: block;
}
.world-map-wrap img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 20px 40px rgba(242, 117, 9, 0.1));
}
.world-map-wrap .pin {
  position: absolute;
  width: 16px; height: 16px;
  background: var(--primary);
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(242, 117, 9, 0.3), 0 0 0 14px rgba(242, 117, 9, 0.15);
  animation: pinPulse 2s infinite;
}
@keyframes pinPulse {
  0%, 100% { box-shadow: 0 0 0 6px rgba(242, 117, 9, 0.3), 0 0 0 14px rgba(242, 117, 9, 0.15); }
  50% { box-shadow: 0 0 0 10px rgba(242, 117, 9, 0.25), 0 0 0 22px rgba(242, 117, 9, 0.08); }
}
.world-map-wrap .pin-1 { top: 48%; left: 67%; }
.world-map-wrap .pin-2 { top: 32%; left: 78%; }
.world-map-wrap .pin-3 { top: 40%; left: 45%; }

.consultation-card {
  background: var(--white);
  padding: 40px 36px;
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 80px rgba(242, 117, 9, 0.12);
  border: 1px solid var(--gray-100);
}
.consultation-card h3 { margin-bottom: 10px; }
.consultation-card > p { margin-bottom: 24px; font-size: 0.95rem; }
.consultation-card .form-group { margin-bottom: 14px; }
.consultation-card .form-group input,
.consultation-card .form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--gray-300);
  border-radius: 10px;
  font-family: inherit;
  font-size: 0.95rem;
  background: transparent;
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease);
}
.consultation-card .form-group input::placeholder,
.consultation-card .form-group textarea::placeholder { color: var(--gray-300); }
.consultation-card .form-group input:hover,
.consultation-card .form-group textarea:hover { border-color: var(--gray-500); }
.consultation-card .form-group input:focus,
.consultation-card .form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(242, 117, 9, 0.12);
}
.consultation-card textarea { min-height: 90px; resize: vertical; }

/* Industries icon grid (real icons) */
.industries-icons {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}
.industry-tile {
  background: var(--white);
  padding: 30px 18px;
  border-radius: var(--radius);
  text-align: center;
  border: 1px solid var(--gray-100);
  transition: all 0.3s var(--ease);
}
.industry-tile:hover {
  transform: translateY(-6px);
  border-color: var(--primary);
  box-shadow: 0 18px 40px rgba(242, 117, 9, 0.15);
}
.industry-tile .icon-wrap {
  width: 70px; height: 70px;
  margin: 0 auto 16px;
  background: var(--light);
  border-radius: 18px;
  display: grid; place-items: center;
  transition: all 0.3s var(--ease);
}
.industry-tile:hover .icon-wrap {
  background: var(--primary);
}
.industry-tile .icon-wrap img {
  width: 40px; height: 40px;
  object-fit: contain;
  transition: filter 0.3s var(--ease);
}
.industry-tile:hover .icon-wrap img {
  filter: brightness(0) invert(1);
}
.industry-tile h4 {
  font-size: 1rem;
  font-weight: 600;
}

/* Real client logos */
.client-tile-real {
  width: 200px;
  height: 150px;
  background: var(--white);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid var(--gray-100);
  padding: 14px 16px;
  box-shadow: 0 10px 28px rgba(31, 41, 55, 0.05);
  transition: all 0.25s var(--ease);
}
.client-tile-real img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  opacity: 1;
  transition: all 0.3s var(--ease);
}
.client-tile-real:hover {
  transform: translateY(-4px);
  border-color: rgba(242, 117, 9, 0.22);
  box-shadow: 0 16px 34px rgba(31, 41, 55, 0.1);
}
.client-tile-real:hover img {
  filter: grayscale(0);
  opacity: 1;
}

/* Image fits for product/blog cards */
.bento-card .img-slot.has-img,
.blog-card .img-slot.has-img,
.product-card-full .img-slot.has-img {
  padding: 0;
  background: var(--light);
  overflow: hidden;
}
.bento-card .img-slot img,
.blog-card .img-slot img,
.product-card-full .img-slot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.bento-card .img-slot.has-img {
  padding: 0;
  background:
    linear-gradient(135deg, rgba(242, 117, 9, 0.1), rgba(255, 255, 255, 0.96)),
    #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.bento-card .img-slot img {
  width: 92%;
  height: 92%;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 12px 18px rgba(31, 41, 55, 0.12));
  transition: transform 0.35s var(--ease), filter 0.35s var(--ease);
}
.bento-card:hover .img-slot img {
  transform: scale(1.03);
  filter: drop-shadow(0 16px 22px rgba(31, 41, 55, 0.16));
}
.bento-card .img-slot {
  overflow: hidden;
}
/* Transparent product renders (cutout artwork): always show the whole product */
.product-card-full .img-slot.has-img {
  position: relative;
}
.product-card-full .img-slot img.img-contain {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.product-detail-visual img.img-contain {
  object-fit: contain;
}

@media (max-width: 1024px) {
  .hero-v2-grid { grid-template-columns: 1fr; gap: 50px; }
  .hero-v2-visual { min-height: 400px; }
  .hero-mini-stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .industries-icons { grid-template-columns: repeat(3, 1fr); }
  .global-network-grid { grid-template-columns: 1fr; gap: 40px; }
  .power-cta { padding: 60px 32px; }
  .hero-v2-watermark { font-size: clamp(6rem, 24vw, 16rem); }
}
@media (max-width: 768px) {
  .hero-v2 { padding-top: 110px; min-height: auto; }
  .hero-v2-grid { gap: 30px; }
  .hero-v2-visual { min-height: 320px; }
  .hero-v2-visual .crane-img { width: 100%; }
  .hero-badge { padding: 10px 14px; }
  .hero-badge .val { font-size: 1.1rem; }
  .hero-badge-1 { top: 5%; left: 0; }
  .hero-badge-2 { top: 40%; right: 0; }
  .hero-badge-3 { bottom: 5%; left: 0; }
  .industries-icons { grid-template-columns: repeat(2, 1fr); }
  .hero-marquee-track { gap: 30px; font-size: 0.82rem; }
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(242, 117, 9, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(242, 117, 9, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 60% 60% at 50% 40%, black, transparent 70%);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  background: rgba(249, 148, 65, 0.1);
  border: 1px solid rgba(249, 148, 65, 0.2);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 24px;
  letter-spacing: 0.04em;
}
.hero-tag .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 4px rgba(22, 163, 74, 0.2);
  animation: pulse 1.8s infinite;
}
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.5; } }

.hero h1 .accent {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
}
.hero h1 .underline {
  position: relative;
  display: inline-block;
}
.hero h1 .underline::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 6px;
  height: 12px;
  background: var(--accent);
  z-index: -1;
  border-radius: 4px;
  opacity: 0.6;
}
.hero-lead {
  margin-top: 24px;
  font-size: 1.15rem;
  max-width: 540px;
  color: var(--gray-700);
}
.hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 36px;
  flex-wrap: wrap;
}
.hero-trust {
  display: flex;
  gap: 32px;
  margin-top: 48px;
  flex-wrap: wrap;
}
.hero-trust .item {
  display: flex; flex-direction: column;
}
.hero-trust .num {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--primary);
}
.hero-trust .label {
  font-size: 0.82rem;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.hero-visual {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero-visual .placeholder-img {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.85rem;
  background-image:
    repeating-linear-gradient(45deg, transparent, transparent 30px, rgba(255,255,255,0.05) 30px, rgba(255,255,255,0.05) 60px);
}
.hero-visual .float-card {
  position: absolute;
  background: var(--white);
  padding: 14px 18px;
  border-radius: 14px;
  box-shadow: var(--shadow);
  display: flex; align-items: center; gap: 12px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray-900);
}
.hero-visual .float-card .ico {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: var(--primary);
  color: var(--white);
  display: grid; place-items: center;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}
.hero-visual .float-card.one { top: 30px; left: -24px; }
.hero-visual .float-card.two { bottom: 40px; right: -24px; }
.hero-visual .float-card.three {
  bottom: 30%; left: 30%;
  background: var(--accent);
  color: var(--white);
}

/* ---------- Section base ---------- */
section { padding: 100px 0; position: relative; }
.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 64px;
}
.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary-light);
  margin-bottom: 14px;
}
.section-head p {
  margin-top: 18px;
  font-size: 1.08rem;
}

/* ---------- Product Range Cards ---------- */
.bento {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  counter-reset: product-card;
}
.bento-card {
  counter-increment: product-card;
  position: relative;
  background: var(--white);
  border: 1px solid rgba(242, 117, 9, 0.12);
  border-radius: 8px;
  min-height: 280px;
  padding: 16px 22px 18px 16px;
  overflow: hidden;
  transition: all 0.4s var(--ease);
  display: grid;
  grid-template-columns: minmax(190px, 42%) 1fr;
  grid-template-rows: auto auto 1fr auto;
  gap: 8px 22px;
  align-items: center;
  isolation: isolate;
  box-shadow: 0 16px 38px rgba(31, 41, 55, 0.07);
}
.bento-card::before {
  content: counter(product-card, decimal-leading-zero);
  position: absolute;
  right: 20px;
  top: 18px;
  font-family: var(--font-display);
  font-size: 3.8rem;
  line-height: 1;
  font-weight: 700;
  color: rgba(242, 117, 9, 0.08);
  transition: color 0.3s var(--ease), transform 0.3s var(--ease);
  z-index: 0;
}
.bento-card::after {
  content: '';
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, var(--primary), var(--primary-light));
  transition: all 0.3s var(--ease);
}
.bento-card:hover {
  transform: translateY(-6px);
  border-color: rgba(242, 117, 9, 0.35);
  box-shadow: 0 24px 58px rgba(31, 41, 55, 0.13);
}
.bento-card:hover::before {
  color: rgba(242, 117, 9, 0.14);
  transform: translateX(-4px);
}
.bento-card .img-slot {
  grid-row: 1 / -1;
  width: 100%;
  height: 100%;
  min-height: 244px;
  aspect-ratio: auto;
  background:
    linear-gradient(135deg, rgba(242, 117, 9, 0.08), rgba(255, 255, 255, 0.95)),
    #fffaf4;
  border-radius: 8px;
  margin-bottom: 0;
  display: grid; place-items: center;
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 1;
  box-shadow: inset 0 0 0 1px rgba(242, 117, 9, 0.08);
}
.bento-card .product-tag {
  position: relative;
  z-index: 1;
  width: fit-content;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(242, 117, 9, 0.1);
  color: var(--primary);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.bento-card h3 {
  position: relative;
  z-index: 1;
  font-size: 1.22rem;
  margin-bottom: 0;
  letter-spacing: 0;
  min-height: auto;
}
.bento-card p {
  position: relative;
  z-index: 1;
  font-size: 0.92rem;
  color: var(--gray-600);
  margin-top: 2px;
}
.bento-card .arrow {
  position: relative;
  z-index: 1;
  margin-top: 10px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  font-weight: 600;
  font-size: 0.9rem;
}
.bento-card.large,
.bento-card.medium,
.bento-card.small,
.bento-card.wide {
  grid-column: auto;
  grid-row: auto;
}

/* ---------- Why Choose ---------- */
.why {
  background: var(--light);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.feature {
  background: var(--white);
  padding: 36px 28px;
  border-radius: var(--radius);
  transition: all 0.3s var(--ease);
  border: 1px solid transparent;
}
.feature:hover {
  transform: translateY(-6px);
  border-color: var(--primary-light);
  box-shadow: var(--shadow);
}
.feature .icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--white);
  display: grid; place-items: center;
  margin-bottom: 22px;
  font-size: 1rem;
  box-shadow: 0 8px 22px rgba(242, 117, 9, 0.22);
}
.feature h4 { font-size: 1.2rem; margin-bottom: 10px; }
.feature p { font-size: 0.93rem; }

/* ---------- Stats / Counters ---------- */
.stats {
  background:
    linear-gradient(180deg, #fffaf4 0%, #ffffff 100%);
  color: var(--dark);
  padding: 90px 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(242, 117, 9, 0.12);
  border-bottom: 1px solid rgba(242, 117, 9, 0.1);
}
.stats::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 18% 22%, rgba(249, 148, 65, 0.13), transparent 34%),
    radial-gradient(circle at 84% 76%, rgba(242, 117, 9, 0.1), transparent 32%),
    linear-gradient(90deg, rgba(242, 117, 9, 0.04) 1px, transparent 1px),
    linear-gradient(180deg, rgba(242, 117, 9, 0.04) 1px, transparent 1px);
  background-size: auto, auto, 56px 56px, 56px 56px;
  pointer-events: none;
}
.stats .container,
.stats .section-head,
.stats .stats-grid,
.stats .why-grid,
.achievement-layout,
.achievement-list {
  position: relative;
  z-index: 1;
}
.stats .section-head .eyebrow {
  color: var(--primary) !important;
}
.stats .section-head h2 {
  color: var(--dark) !important;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.stat {
  text-align: left;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(242, 117, 9, 0.13);
  border-radius: 8px;
  padding: 30px 28px;
  box-shadow: 0 18px 42px rgba(31, 41, 55, 0.08);
  transition: all 0.3s var(--ease);
}
.stat:hover {
  transform: translateY(-6px);
  border-color: rgba(242, 117, 9, 0.32);
  box-shadow: 0 24px 52px rgba(31, 41, 55, 0.12);
}
.stat .num {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 8px;
}
.stat .label {
  font-size: 0.95rem;
  color: var(--gray-600);
  opacity: 1;
  font-weight: 600;
}
.achievement-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.72fr);
  gap: 34px;
  align-items: stretch;
}
.achievement-list {
  background:
    linear-gradient(180deg, #ffffff 0%, #fffaf5 100%),
    #ffffff;
  border-radius: 8px;
  padding: 30px;
  border: 1px solid rgba(242, 117, 9, 0.13);
  box-shadow: 0 22px 54px rgba(31, 41, 55, 0.08);
}
.achievement-item {
  position: relative;
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  align-items: start;
  padding: 22px 0;
}
.achievement-item:first-child { padding-top: 0; }
.achievement-item:last-child { padding-bottom: 0; }
.achievement-item + .achievement-item {
  border-top: 1px solid rgba(31, 41, 55, 0.08);
}
.achievement-item .icon {
  width: 52px;
  height: 52px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  font-size: 1rem;
  box-shadow: 0 12px 26px rgba(242, 117, 9, 0.22);
}
.achievement-item:nth-child(2) .icon {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
}
.achievement-item:nth-child(3) .icon {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
}
.achievement-item h4 {
  color: var(--dark) !important;
  font-size: 1.08rem;
  margin-bottom: 6px;
}
.achievement-item p {
  color: var(--gray-700) !important;
  font-size: 0.92rem;
}
.stats .feature {
  position: relative;
  overflow: hidden;
  background: #111827 !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: 8px;
  padding: 34px 32px 32px;
  box-shadow: 0 22px 54px rgba(17, 24, 39, 0.18);
  isolation: isolate;
}
.stats .feature::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(242, 117, 9, 0.18), transparent 48%),
    radial-gradient(circle at 88% 8%, rgba(249, 148, 65, 0.22), transparent 30%);
  opacity: 1;
  transition: opacity 0.3s var(--ease);
  z-index: -1;
}
.stats .feature::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
}
.stats .feature:hover {
  transform: translateY(-8px);
  border-color: rgba(249, 148, 65, 0.42) !important;
  box-shadow: 0 28px 64px rgba(17, 24, 39, 0.24);
}
.stats .feature:hover::before {
  opacity: 1;
}
.stats .feature h4 {
  color: #ffffff !important;
}
.stats .feature p {
  color: rgba(255, 255, 255, 0.76) !important;
}
.stats .feature .icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  margin-bottom: 24px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--white);
  box-shadow: 0 12px 28px rgba(242, 117, 9, 0.22);
}
.stats .why-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 980px;
  margin-top: 46px !important;
  margin-left: auto;
  margin-right: auto;
  align-items: stretch;
}
.stats .why-grid .feature {
  min-height: 282px;
}
.stats .why-grid .feature:nth-child(2) .icon {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
}
.stats .why-grid .feature:nth-child(3) .icon {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
}

/* ---------- Industries / split section ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
/* Let each half shrink below its content's intrinsic width — wide children
   (counter grids, long words) must clip/wrap inside, not widen the page. */
.split > * { min-width: 0; }
.split-visual {
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, var(--primary-light), var(--primary));
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  display: grid; place-items: center;
  color: rgba(255,255,255,0.45);
  font-size: 0.85rem;
}
.industries-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 30px;
}
.industry-chip {
  padding: 16px 20px;
  background: var(--light);
  border-radius: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
  transition: all 0.25s var(--ease);
  border: 1px solid transparent;
}
.industry-chip:hover {
  background: var(--white);
  border-color: var(--primary-light);
  transform: translateX(6px);
}
.industry-chip .ico {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: var(--primary);
  color: var(--white);
  display: grid; place-items: center;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

/* ---------- Marquee clients ---------- */
.clients {
  padding: 80px 0;
  background: var(--white);
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
}
.clients-head {
  text-align: center;
  margin-bottom: 40px;
}
.clients-head p {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.85rem;
  color: var(--gray-500);
  font-weight: 600;
}
.marquee {
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
}
.marquee-track {
  display: flex;
  gap: 50px;
  width: max-content;
  animation: marquee 30s linear infinite;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.client-tile {
  width: 180px;
  height: 90px;
  background: var(--light);
  border-radius: 12px;
  display: grid; place-items: center;
  color: var(--gray-500);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  flex-shrink: 0;
  border: 1px solid var(--gray-100);
}

/* ---------- Testimonial ---------- */
.testimonial {
  background: var(--light);
}
.quote-card {
  max-width: 880px;
  margin: 0 auto;
  background: var(--white);
  padding: 60px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  position: relative;
}
.quote-card::before {
  content: '"';
  position: absolute;
  top: -20px; left: 40px;
  font-family: var(--font-display);
  font-size: 8rem;
  line-height: 1;
  color: var(--primary);
}
.quote-card blockquote {
  font-family: var(--font-display);
  font-size: 1.5rem;
  line-height: 1.4;
  color: var(--dark);
  font-weight: 500;
  margin-bottom: 30px;
}
.quote-meta { display: flex; align-items: center; gap: 16px; }
.quote-avatar {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  display: grid; place-items: center;
  color: var(--white); font-weight: 700;
}
.quote-meta .name { font-weight: 700; color: var(--dark); }
.quote-meta .role { font-size: 0.88rem; color: var(--gray-500); }

/* ---------- Blog cards ---------- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.blog-loadmore {
  display: flex;
  justify-content: center;
  margin-top: 44px;
}
.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease);
}
.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 26px 56px rgba(17, 24, 39, 0.08);
  border-color: var(--primary-light);
}
.blog-card .img-slot {
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, #fde6cc, #fff0e0);
  display: grid; place-items: center;
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  overflow: hidden;
}
.blog-card .img-slot img { transition: transform 0.5s var(--ease); }
.blog-card:hover .img-slot img { transform: scale(1.05); }
.blog-card .body { padding: 26px 24px; }
.blog-card .meta {
  display: flex; gap: 12px;
  font-size: 0.78rem;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  margin-bottom: 12px;
}
.blog-card .meta .tag { color: var(--primary); }
/* Break long words (e.g. compound crane terms) and allow the meta row to wrap so a
   card title can never spill out of / overlap its card on a narrow (320px) screen. */
.blog-card h3 { font-size: 1.25rem; margin-bottom: 10px; overflow-wrap: break-word; word-break: break-word; }
.blog-card .meta { flex-wrap: wrap; }
.blog-card p { font-size: 0.92rem; margin-bottom: 16px; overflow-wrap: break-word; }
.blog-card .arrow {
  color: var(--primary);
  font-weight: 600;
  font-size: 0.9rem;
}

/* ---------- CTA banner ---------- */
.cta-banner {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  border-radius: var(--radius-lg);
  padding: 70px 60px;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  align-items: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  background: radial-gradient(circle, #ffffff, transparent 70%);
  opacity: 0.18;
  right: -100px; top: -100px;
  border-radius: 50%;
}
.cta-banner h2 { color: var(--white); margin-bottom: 12px; }
.cta-banner p { color: rgba(255,255,255,0.85); max-width: 540px; }
.cta-banner .actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  z-index: 1;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--dark);
  color: rgba(255,255,255,0.7);
  padding: 80px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 50px;
  margin-bottom: 60px;
}
.footer-brand p { color: rgba(255,255,255,0.6); margin-top: 18px; font-size: 0.92rem; }
.footer-col h5 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 20px;
}
.footer-col ul li {
  margin-bottom: 10px;
  font-size: 0.92rem;
}
.footer-col a:hover { color: var(--primary); }
.footer-contact li {
  display: flex; gap: 10px;
  align-items: flex-start;
  font-size: 0.9rem;
  line-height: 1.5;
}
.footer-contact .ico {
  color: var(--white);
  flex-shrink: 0;
  margin-top: 3px;
  width: 20px;
  height: 20px;
  display: inline-grid;
  place-items: center;
}
.footer-contact .whatsapp-ico {
  color: #25D366;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  flex-wrap: wrap;
  gap: 16px;
}
.socials { display: flex; gap: 10px; }
.socials a {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,0.08);
  display: grid; place-items: center;
  color: var(--white);
  transition: all 0.25s var(--ease);
}
.socials a svg { width: 18px; height: 18px; fill: var(--white); display: block; }
.socials a:hover { background: var(--primary); color: var(--white); transform: translateY(-3px); }
.socials a:hover svg { fill: var(--white); }

/* WhatsApp float */
.whatsapp-float {
  position: fixed;
  right: 24px; bottom: 24px;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: var(--white);
  display: grid; place-items: center;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.36);
  z-index: 90;
  transition: transform 0.25s var(--ease);
  font-size: 1.15rem;
}
.whatsapp-float:hover { transform: scale(1.1); }

/* ---------- Page banner (inner pages) ---------- */
.page-banner {
  padding: 180px 0 80px;
  background:
    radial-gradient(circle at 80% 30%, rgba(249, 148, 65, 0.1), transparent 50%),
    linear-gradient(180deg, #fff7ed, #ffffff);
  text-align: center;
  border-bottom: 1px solid var(--gray-100);
}
.breadcrumb {
  display: inline-flex;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--gray-500);
  margin-top: 18px;
}
.breadcrumb a { color: var(--primary); }
.breadcrumb .sep { color: var(--gray-300); }

/* ---------- About specifics ---------- */
.about-mvv {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.mvv-card {
  background: var(--white);
  padding: 38px 32px;
  border-radius: var(--radius);
  border: 1px solid var(--gray-100);
  position: relative;
  overflow: hidden;
  transition: all 0.3s var(--ease);
}
.mvv-card .num {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 700;
  color: var(--light);
  position: absolute;
  top: 10px; right: 20px;
  line-height: 1;
}
.mvv-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--primary-light); }
.mvv-card h3 { font-size: 1.3rem; margin-bottom: 12px; color: var(--primary); }

.skill-bars { margin-top: 30px; }
.skill {
  margin-bottom: 22px;
}
.skill .top {
  display: flex; justify-content: space-between;
  margin-bottom: 8px;
  font-weight: 600;
  font-size: 0.95rem;
}
.skill .bar {
  height: 10px;
  background: var(--gray-100);
  border-radius: 999px;
  overflow: hidden;
}
.skill .fill {
  height: 100%;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  border-radius: 999px;
  transition: width 1.4s var(--ease);
}

/* About — Industry Performance stat cards (counters beside the skill bars).
   minmax(0, 1fr) tracks: plain 1fr floors at the min-content of the counted-up
   number ("4,500+"), which pushes the grid past the container on 320px phones
   and clips the right column. */
.perf-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

/* Standalone counter band (four-in-a-row) used on product pages */
.crane-counters { padding: 60px 0; background: var(--light); }
.crane-stats { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 18px; }
@media (max-width: 1024px) { .crane-stats { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (max-width: 600px) { .crane-stats { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
/* Two-up product grid (e.g. EOT single vs double) */
.prange-grid.cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); max-width: 880px; margin-left: auto; margin-right: auto; }
@media (max-width: 768px) { .prange-grid.cols-2 { grid-template-columns: 1fr; } }
.perf-stat {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 28px 22px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease);
}
.perf-stat:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  border-color: var(--primary-light);
}
.perf-stat .num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.5rem;
  line-height: 1;
  font-weight: 800;
  color: var(--primary);
}
.perf-stat .lbl {
  display: block;
  margin-top: 10px;
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gray-500);
}

/* leadership cards */
.leaders { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.leader-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}
.leader-card:hover { box-shadow: 0 26px 56px rgba(17, 24, 39, 0.08); transform: translateY(-4px); border-color: var(--primary-light); }
.leader-photo {
  width: 100%;
  aspect-ratio: 730 / 472;
  background: var(--light);
  overflow: hidden;
}
.leader-photo img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s var(--ease); }
.leader-card:hover .leader-photo img { transform: scale(1.04); }
.leader-body { padding: 22px 26px 24px; }
.leader-card h4 { font-size: 1.3rem; margin-bottom: 4px; }
.leader-card .title { font-size: 0.88rem; color: var(--gray-500); margin-bottom: 16px; }
.leader-card .links { display: flex; gap: 10px; }
.leader-card .links a {
  width: 40px; height: 40px;
  border-radius: 10px;
  display: grid; place-items: center;
  color: var(--white);
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.leader-card .links a svg { width: 19px; height: 19px; fill: currentColor; display: block; }
.leader-card .links a.soc-whatsapp { background: #25D366; }
.leader-card .links a.soc-linkedin { background: #0A66C2; }
.leader-card .links a:hover { transform: translateY(-2px); box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18); }

/* ---------- Product detail / Components list ---------- */
.products-filter {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 50px;
}
.filter-pill {
  padding: 10px 20px;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid var(--gray-100);
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--gray-700);
  cursor: pointer;
  transition: all 0.25s var(--ease);
}
.filter-pill:hover, .filter-pill.active {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.product-card-full {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--gray-100);
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 30px;
  transition: all 0.3s var(--ease);
}
.product-card-full:nth-child(even) { grid-template-columns: 1fr 1fr; direction: rtl; }
.product-card-full:nth-child(even) > * { direction: ltr; }
.product-card-full:hover { box-shadow: var(--shadow); }
.product-card-full .img-slot {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  display: grid; place-items: center;
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
}
.product-card-full .body { padding: 42px; }
.product-card-full .badge {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--accent-soft);
  color: var(--dark);
  padding: 5px 12px;
  border-radius: 999px;
  font-weight: 700;
  margin-bottom: 14px;
}
.product-card-full h3 { font-size: 1.6rem; margin-bottom: 14px; }
.product-card-full .specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 20px 0 26px;
}
.product-card-full .spec {
  background: var(--light);
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 0.85rem;
}
.product-card-full .spec strong { display: block; color: var(--primary); font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 2px; }

/* ---------- Single product detail ---------- */
.product-detail-hero {
  padding: 140px 0 90px;
  background:
    radial-gradient(circle at 82% 18%, rgba(249, 148, 65, 0.12), transparent 44%),
    linear-gradient(180deg, var(--light) 0%, var(--white) 100%);
  overflow: hidden;
}
.product-detail-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 56px;
  align-items: center;
}
.product-detail-copy .breadcrumb {
  display: flex;
  justify-content: flex-start;
  margin: 0 0 22px;
}
.product-detail-copy h1 {
  max-width: 620px;
  margin-bottom: 20px;
  font-size: clamp(2.4rem, 4vw, 3.6rem);
}
.product-detail-copy p {
  max-width: 560px;
  font-size: 1.05rem;
  color: var(--gray-500);
}
.product-quick-specs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 580px;
  margin-top: 34px;
}
.product-quick-specs div {
  padding: 18px 18px 16px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-sm);
}
.product-quick-specs strong {
  display: block;
  color: var(--dark);
  font-family: var(--font-display);
  font-size: 0.98rem;
  margin-bottom: 4px;
}
.product-quick-specs span {
  display: block;
  color: var(--gray-500);
  font-size: 0.82rem;
}
.product-detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}
.btn-outline {
  border: 1.5px solid var(--gray-300);
  color: var(--gray-900);
  background: var(--white);
}
.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--accent-soft);
}
.product-detail-visual {
  position: relative;
  min-height: 500px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-100);
  box-shadow: 0 30px 70px rgba(17, 24, 39, 0.10);
  overflow: hidden;
}
.product-detail-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(10, 10, 10, 0.18) 0%, transparent 28%, transparent 62%, rgba(10, 10, 10, 0.30) 100%);
}
.visual-label {
  position: absolute;
  left: 20px;
  bottom: 20px;
  z-index: 3;
  color: var(--primary);
  background: var(--white);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 7px 13px;
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
}
.product-detail-visual img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
}
.detail-metric {
  position: absolute;
  z-index: 2;
  min-width: 116px;
  padding: 14px 16px;
  border-radius: 16px;
  background: var(--white);
  border: 1px solid var(--gray-100);
  box-shadow: 0 16px 36px rgba(17, 24, 39, 0.14);
}
.detail-metric strong {
  display: block;
  color: var(--primary);
  font-family: var(--font-display);
  font-size: 1.5rem;
  line-height: 1;
}
.detail-metric span {
  display: block;
  margin-top: 5px;
  color: var(--gray-500);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}
.metric-one { left: 22px; top: 22px; }
.metric-two { right: 22px; bottom: 22px; }
.product-detail-section {
  padding: 96px 0;
  background: var(--white);
}
.product-detail-split {
  display: grid;
  grid-template-columns: minmax(300px, 0.8fr) 1fr;
  gap: 36px;
  align-items: start;
}
.product-spec-panel {
  position: sticky;
  top: 100px;
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  background: var(--white);
  border: 1px solid var(--gray-100);
  box-shadow: 0 24px 60px rgba(17, 24, 39, 0.06);
}
.product-spec-panel::before {
  content: "";
  display: block;
  width: 42px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  margin-bottom: 18px;
}
.product-spec-panel h2 {
  color: var(--dark);
  font-size: 1.5rem;
  margin-top: 8px;
}
.product-spec-panel p {
  color: var(--gray-500);
  margin-top: 12px;
}
.product-spec-panel .eyebrow {
  color: var(--primary);
}
.spec-list {
  display: grid;
  gap: 0;
  margin-top: 24px;
}
.spec-list div {
  padding: 16px 0;
  border-top: 1px solid var(--gray-100);
}
.spec-list div:last-child {
  padding-bottom: 0;
}
.spec-list strong {
  display: block;
  color: var(--gray-500);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
}
.spec-list span {
  color: var(--dark);
  font-weight: 600;
}
.product-story {
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid var(--gray-100);
  padding: 44px;
  box-shadow: var(--shadow-sm);
}
.product-story h2 {
  font-size: 1.9rem;
  margin: 6px 0 18px;
}
.product-story p {
  color: var(--gray-500);
}
.product-story p + p {
  margin-top: 16px;
}
.story-callout {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 18px;
  margin-top: 30px;
  padding: 22px 24px;
  border-radius: var(--radius);
  background: var(--accent-soft);
  border: 1px solid rgba(242, 117, 9, 0.16);
}
.story-callout strong {
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.76rem;
}
.story-callout span {
  color: var(--gray-700);
}
.product-feature-section {
  padding: 96px 0;
  background: var(--light);
}
.detail-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.detail-feature {
  grid-column: auto;
  min-height: auto;
  padding: 30px 28px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}
.detail-feature:hover {
  transform: translateY(-6px);
  border-color: var(--primary-light);
  box-shadow: 0 26px 58px rgba(242, 117, 9, 0.12);
}
.detail-feature span {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: linear-gradient(145deg, var(--primary), var(--primary-dark));
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  margin-bottom: 22px;
  box-shadow: 0 8px 20px rgba(242, 117, 9, 0.28);
}
.detail-feature h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}
.detail-feature p {
  font-size: 0.92rem;
  color: var(--gray-500);
}
.application-layout {
  display: grid;
  grid-template-columns: 0.72fr 1fr;
  gap: 48px;
  align-items: start;
}
.application-copy {
  position: sticky;
  top: 100px;
}
.application-copy h2 {
  font-size: 1.9rem;
  margin-top: 6px;
}
.application-copy p {
  color: var(--gray-500);
  margin-top: 14px;
}
.application-list {
  display: grid;
  gap: 16px;
}
.application-item {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 24px;
  align-items: center;
  padding: 24px 26px;
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s var(--ease);
}
.application-item:hover {
  transform: translateY(-3px);
  border-color: var(--primary-light);
  box-shadow: 0 18px 40px rgba(242, 117, 9, 0.10);
}
.application-item strong {
  font-family: var(--font-display);
  color: var(--dark);
  font-size: 1.1rem;
}
.application-item span {
  color: var(--gray-500);
  font-size: 0.95rem;
}
.detail-cta-section {
  padding: 96px 0 0;
}
.detail-cta-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 36px;
  align-items: center;
  padding: 52px 56px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: var(--white);
  box-shadow: 0 30px 70px rgba(242, 117, 9, 0.28);
  overflow: hidden;
}
.detail-cta-card .eyebrow {
  color: rgba(255, 255, 255, 0.85);
}
.detail-cta-card h2 {
  color: var(--white);
  font-size: 2rem;
  max-width: 640px;
}
.detail-cta-card p {
  color: rgba(255, 255, 255, 0.88);
  max-width: 680px;
  margin-top: 12px;
}
.detail-cta-card .btn-accent {
  background: var(--white);
  color: var(--primary-dark);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
}
.detail-cta-card .btn-accent:hover {
  background: var(--dark);
  color: var(--white);
}
/* When the card collapses to one column on tablet/phone the button becomes a
   stretched, full-width grid item — center its label + arrow so it doesn't sit
   left-aligned in a wide pill. Harmless at desktop (button is auto-width there). */
.detail-cta-card .btn-accent { justify-content: center; text-align: center; }
.product-contact-section {
  padding: 70px 0;
  background: var(--white);
}
.product-contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1fr);
  gap: 28px;
  align-items: stretch;
}
.product-contact-info,
.product-contact-form {
  min-width: 0;
}
.product-contact-info {
  border-radius: var(--radius-lg);
  padding: 32px 34px;
  background: var(--light);
  border: 1px solid var(--gray-100);
}
.product-contact-info h2 {
  color: var(--dark);
  font-size: 1.7rem;
  margin-top: 4px;
}
.product-contact-info .eyebrow {
  color: var(--primary);
}
.product-contact-info p {
  color: var(--gray-500);
  font-size: 0.95rem;
  margin-top: 8px;
}
.detail-contact-list {
  display: grid;
  gap: 0;
  margin-top: 18px;
}
.detail-contact-list > div {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  grid-template-rows: auto auto;
  column-gap: 14px;
  row-gap: 3px;
  padding: 14px 0;
  border-top: 1px solid rgba(242, 117, 9, 0.12);
}
.detail-contact-list > div:first-child {
  border-top: 0;
  padding-top: 4px;
}
.detail-contact-list .dc-head {
  display: contents;
}
.detail-contact-list .dc-ico {
  grid-row: 1 / span 2;
  grid-column: 1;
  align-self: start;
  width: 44px;
  height: 44px;
  border-radius: 13px;
  background: var(--white);
  border: 1px solid rgba(242, 117, 9, 0.2);
  box-shadow: 0 6px 14px rgba(242, 117, 9, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}
.detail-contact-list .dc-ico svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  display: block;
}
.detail-contact-list .dc-title {
  grid-column: 2;
  align-self: end;
  color: var(--gray-500);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}
.detail-contact-list strong {
  grid-column: 2;
  align-self: start;
  display: block;
  color: var(--gray-700);
  font-weight: 500;
  font-size: 0.93rem;
  line-height: 1.5;
  min-width: 0;
  overflow-wrap: break-word;
}
.product-contact-form {
  border-radius: var(--radius-lg);
  padding: 32px 34px;
  background: var(--white);
  border: 1px solid var(--gray-100);
  box-shadow: 0 24px 60px rgba(17, 24, 39, 0.06);
}
.product-contact-form .eyebrow {
  color: var(--primary);
}
.product-contact-form h3 {
  margin: 4px 0 18px;
}
/* Make the form fill the card height so it aligns with the info card (no blank gap) */
.product-contact-form { display: flex; flex-direction: column; }
.product-contact-form .form-group:last-of-type { flex: 1 1 auto; display: flex; flex-direction: column; }
.product-contact-form .form-group:last-of-type textarea { flex: 1 1 auto; min-height: 110px; resize: vertical; }
.product-contact-form button { align-self: flex-start; margin-top: 16px; }

/* ---------- FAQ (product pages) ---------- */
.faq-section {
  padding: 80px 0;
  background: linear-gradient(180deg, var(--white), var(--light));
}
.faq-section .section-head {
  margin-bottom: 44px;
}
.faq-grid {
  max-width: 840px;
  margin: 0 auto;
  display: grid;
  gap: 14px;
}
.faq-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 18px;
  padding: 22px 26px;
  box-shadow: 0 10px 30px rgba(17, 24, 39, 0.05);
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease), transform 0.25s var(--ease);
}
.faq-card:hover {
  border-color: rgba(242, 117, 9, 0.35);
  box-shadow: 0 16px 40px rgba(17, 24, 39, 0.09);
  transform: translateY(-2px);
}
.faq-card h3 {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.45;
  color: var(--dark);
}
.faq-card .q {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 10px;
  background: rgba(242, 117, 9, 0.12);
  color: var(--primary);
  font-size: 0.82rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.faq-card p {
  margin: 8px 0 0 44px;
  color: var(--gray-500);
  font-size: 0.95rem;
  line-height: 1.65;
}

/* ---------- Gallery ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  grid-auto-flow: dense;
  gap: 14px;
}
.gallery-item {
  background: linear-gradient(135deg, #fde6cc, #fff0e0);
  border-radius: var(--radius);
  overflow: hidden;
  display: grid; place-items: center;
  color: var(--primary);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  transition: transform 0.4s var(--ease), box-shadow 0.3s var(--ease);
  cursor: pointer;
  position: relative;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s var(--ease); }
.gallery-item:hover { box-shadow: var(--shadow); }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item.h2 { grid-row: span 2; }
.gallery-item.w2 { grid-column: span 2; }

/* ---------- Career ---------- */
.career-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.perks { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 40px; }
.perk {
  padding: 28px 24px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--gray-100);
  text-align: center;
  transition: all 0.3s var(--ease);
}
.perk:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--primary-light); }
.perk .ico {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--white);
  margin: 0 auto 14px;
  display: grid; place-items: center;
  font-size: 1rem;
}
.perk h4 { font-size: 1.05rem; margin-bottom: 6px; }
.perk p { font-size: 0.88rem; }

.jobs-list { display: flex; flex-direction: column; gap: 16px; }
.job-row {
  background: var(--white);
  padding: 24px 28px;
  border-radius: var(--radius);
  border: 1px solid var(--gray-100);
  display: grid;
  grid-template-columns: 2fr 1fr 1fr auto;
  gap: 20px;
  align-items: center;
  transition: all 0.25s var(--ease);
}
.job-row:hover { box-shadow: var(--shadow); border-color: var(--primary-light); transform: translateX(6px); }
.job-row h4 { font-size: 1.1rem; margin-bottom: 4px; }
.job-row .meta { font-size: 0.85rem; color: var(--gray-500); }
.job-row .dept { font-weight: 600; color: var(--primary); font-size: 0.9rem; }
.job-row .loc { font-size: 0.9rem; color: var(--gray-700); }

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  align-items: start;
}
.contact-info {
  background: linear-gradient(160deg, var(--primary-dark), var(--primary));
  color: var(--white);
  padding: 50px 40px;
  border-radius: var(--radius-lg);
  position: sticky;
  top: 100px;
}
.contact-info h3 { color: var(--white); margin-bottom: 14px; }
.contact-info > p { color: rgba(255,255,255,0.8); margin-bottom: 36px; }
.contact-info ul { display: flex; flex-direction: column; gap: 22px; }
.contact-info li { display: flex; gap: 16px; align-items: flex-start; }
.contact-info .ico {
  width: 42px; height: 42px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.18);
  color: var(--white);
  display: grid; place-items: center;
  flex-shrink: 0;
  font-size: 1rem;
}
.contact-info strong { display: block; color: rgba(255,255,255,0.6); font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 4px; font-weight: 500; }
.contact-info li a, .contact-info li span { color: var(--white); font-size: 0.95rem; line-height: 1.5; }

.contact-form {
  background: var(--white);
  padding: 50px 44px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-sm);
}
.contact-form h3 { margin-bottom: 8px; }
.contact-form > p { margin-bottom: 30px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 14px; }
.form-group { margin-bottom: 14px; }
.form-group label {
  display: block;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gray-500);
  margin-bottom: 7px;
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--gray-300);
  border-radius: 12px;
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--gray-900);
  background: var(--white);
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease);
}
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--gray-300); }
.form-group input:hover, .form-group select:hover, .form-group textarea:hover { border-color: var(--gray-500); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(242, 117, 9, 0.12);
}
.form-group select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
  cursor: pointer;
}
.form-group textarea { min-height: 92px; resize: vertical; }

.map-wrap {
  margin-top: 80px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-100);
  aspect-ratio: 16/6;
  background: var(--light);
  display: grid; place-items: center;
  color: var(--gray-500);
  font-weight: 600;
  letter-spacing: 0.05em;
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 50px; }
  .hero-visual { max-width: 480px; margin: 0 auto; aspect-ratio: 4/4; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .bento { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .bento-card {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .bento-card .img-slot {
    grid-row: auto;
    min-height: 220px;
    height: auto;
    aspect-ratio: 16/10;
  }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .split, .career-hero, .contact-grid, .product-detail-hero-grid, .product-detail-split, .application-layout, .product-contact-grid { grid-template-columns: 1fr; }
  .contact-info { position: static; }
  .product-spec-panel, .application-copy { position: static; }
  .product-quick-specs { grid-template-columns: 1fr; }
  .detail-feature-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .detail-feature { grid-column: auto; }
  .detail-cta-card { grid-template-columns: minmax(0, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .about-mvv { grid-template-columns: 1fr; }
  .leaders { grid-template-columns: 1fr; }
  .perks { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  section { padding: 70px 0; }
  .hero { padding: 140px 0 80px; }
  /* Off-canvas drawer that slides in from the right */
  .nav-list {
    display: flex;
    position: fixed;
    top: 0; right: 0; bottom: 0; left: auto;
    width: min(84vw, 330px);
    height: 100dvh;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: 90px 20px 32px;
    gap: 4px;
    box-shadow: -16px 0 48px rgba(17, 24, 39, 0.22);
    border-left: 1px solid var(--gray-100);
    transform: translateX(105%);
    transition: transform 0.4s var(--ease);
    overflow-y: auto;
    overscroll-behavior: contain;
    z-index: 1200;
  }
  .nav-list.open { transform: translateX(0); }
  /* Dim backdrop behind the drawer */
  .nav-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(17, 24, 39, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s var(--ease), visibility 0.35s var(--ease);
    z-index: 1150;
  }
  body.menu-open .nav-backdrop { opacity: 1; visibility: visible; }
  body.menu-open { overflow: hidden; }
  /* Close (X) button inside the drawer */
  .nav-close {
    display: grid;
    place-items: center;
    position: fixed;
    top: 16px; right: 16px;
    width: 42px; height: 42px;
    font-size: 1.7rem;
    line-height: 1;
    border: none;
    border-radius: 10px;
    background: var(--light);
    color: var(--primary);
    cursor: pointer;
    z-index: 1250;
    transform: translateX(140%);
    transition: transform 0.4s var(--ease);
  }
  body.menu-open .nav-close { transform: translateX(0); }
  /* Reference-style icon rows */
  .nav-list a {
    display: flex;
    align-items: center;
    gap: 14px;
    width: 100%;
    padding: 13px 14px;
    border-radius: 12px;
    font-size: 0.97rem;
    font-weight: 500;
    color: var(--gray-700);
  }
  .nav-list .nav-ico {
    display: inline-grid;
    place-items: center;
    width: 24px;
    flex: none;
    color: var(--gray-400, #9ca3af);
  }
  .nav-list a:hover,
  .nav-list a.active { background: var(--light); color: var(--primary); }
  .nav-list a:hover .nav-ico,
  .nav-list a.active .nav-ico { color: var(--primary); }
  /* Pin the Inquiry action to the bottom of the drawer, like a "Logout" row */
  .nav-list > li:last-child { margin-top: auto; padding-top: 18px; border-top: 1px solid var(--gray-100); }
  .nav-list .nav-cta .nav-ico { color: #fff; }
  .nav-list .has-dropdown { width: 100%; text-align: left; position: relative; }
  .nav-list .has-dropdown > a::after { display: none; }
  /* Tappable caret that expands/collapses the Products submenu on mobile */
  .dropdown-toggle {
    display: grid;
    place-items: center;
    position: absolute;
    top: 0;
    right: 6px;
    width: 48px;
    height: 50px;
    background: transparent;
    border: none;
    color: var(--gray-700);
    cursor: pointer;
  }
  .dropdown-caret {
    width: 9px;
    height: 9px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: translateY(-2px) rotate(45deg);
    transition: transform 0.25s var(--ease);
  }
  .has-dropdown.open .dropdown-toggle { color: var(--primary); }
  .has-dropdown.open .dropdown-caret { transform: translateY(2px) rotate(-135deg); }
  .nav-dropdown {
    position: static;
    display: block;
    width: auto;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    border-radius: 0;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s var(--ease);
  }
  .has-dropdown.open .nav-dropdown { max-height: 640px; padding: 2px 0 8px; }
  .nav-dropdown a { display: block; font-size: 0.88rem; color: var(--gray-500); padding: 9px 14px 9px 52px; }
  .nav-dropdown a::before { display: none; }
  .nav-dropdown li:last-child { grid-column: auto; margin-top: 0; border-top: none; }
  .nav-dropdown li:last-child a { padding: 9px 14px 9px 52px; border-radius: 0; }
  .nav-cta { width: 100%; justify-content: center; }
  .menu-toggle { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 10px; background: var(--light); color: var(--primary); }
  .bento, .blog-grid, .why-grid { grid-template-columns: 1fr; }
  .achievement-layout { grid-template-columns: 1fr; }
  .bento-card { min-height: auto; }
  .bento-card.large, .bento-card.medium, .bento-card.wide, .bento-card.small { grid-column: auto; grid-row: auto; }
  .stats-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-banner { grid-template-columns: 1fr; padding: 50px 32px; }
  .quote-card { padding: 40px 24px; }
  .quote-card blockquote { font-size: 1.2rem; }
  .product-card-full { grid-template-columns: 1fr !important; }
  .product-card-full:nth-child(even) { direction: ltr; }
  .product-card-full .body { padding: 30px 24px; }
  .form-row { grid-template-columns: 1fr; }
  .job-row { grid-template-columns: 1fr; gap: 10px; }
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 200px; }
  .gallery-item.h2, .gallery-item.w2 { grid-row: auto; grid-column: auto; }
  .contact-form, .contact-info { padding: 32px 24px; }
  .product-detail-hero { padding: 130px 0 70px; }
  .product-detail-visual { min-height: 420px; padding: 28px; }
  .detail-feature-grid { grid-template-columns: 1fr; }
  .story-callout { grid-template-columns: 1fr; }
  .application-item { grid-template-columns: 1fr; gap: 8px; }
  .product-story, .product-spec-panel, .detail-cta-card, .product-contact-info, .product-contact-form { padding: 30px 24px; }
}

/* Reveal-on-scroll */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.in { opacity: 1; transform: translateY(0); }

/* Footer contact icon polish */
.site-footer .footer-contact .ico {
  color: var(--white) !important;
}
.site-footer .footer-contact .whatsapp-ico {
  color: #25D366 !important;
}
.site-footer .footer-contact .ico svg {
  width: 18px;
  height: 18px;
}
.site-footer .footer-contact .whatsapp-ico svg,
a.whatsapp-float svg {
  fill: currentColor !important;
  stroke: none !important;
}
a.whatsapp-float {
  background: #25D366 !important;
  color: var(--white) !important;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.36) !important;
}

/* ============================================================
   HOME — About section
   ============================================================ */
.home-about { padding: 96px 0 40px; }
.home-about-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 64px;
  align-items: center;
}
.home-about-visual { position: relative; }
.home-about-imgwrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(31, 41, 55, 0.18);
  aspect-ratio: 3 / 2;
  background: var(--light);
}
.home-about-imgwrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 10, 10, 0) 55%, rgba(199, 92, 0, 0.28));
  pointer-events: none;
}
.home-about-imgwrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease);
}
.home-about-visual:hover .home-about-imgwrap img { transform: scale(1.04); }
.home-about-badge {
  position: absolute;
  right: -18px;
  bottom: -22px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 18px 22px;
  box-shadow: 0 20px 46px rgba(31, 41, 55, 0.16);
  border: 1px solid rgba(242, 117, 9, 0.16);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 2;
}
.home-about-badge .num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2.2rem;
  line-height: 1;
  color: var(--primary);
}
.home-about-badge .lbl {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gray-700);
  max-width: 110px;
  line-height: 1.3;
}
.home-about-ribbon {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 2;
  background: rgba(17, 17, 17, 0.82);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: 999px;
  backdrop-filter: blur(4px);
}
.home-about-text h2 { margin: 12px 0 0; }
.home-about-text > p { margin-top: 16px; }
.home-about-points {
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
  display: grid;
  gap: 12px;
}
.home-about-points li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
  color: var(--gray-900);
}
.home-about-points .tick {
  flex: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(242, 117, 9, 0.12);
  color: var(--primary);
  display: grid;
  place-items: center;
  font-size: 0.8rem;
  font-weight: 700;
}
.home-about-actions {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* ============================================================
   HOME — Product Range (redesigned showcase grid)
   ============================================================ */
.product-range { padding-top: 30px; }
.prange-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}
.prange-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(31, 41, 55, 0.08);
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease), border-color 0.45s var(--ease);
}
.prange-card:hover {
  transform: translateY(-10px);
  border-color: rgba(242, 117, 9, 0.45);
  box-shadow: 0 36px 70px rgba(31, 41, 55, 0.16);
}
/* Media: contain the product so nothing is ever cropped */
.prange-media {
  position: relative;
  /* Square box + trimmed padding so the product fills the card and reads large,
     while object-fit:contain keeps the whole product visible (never cropped).
     The product renders are a mix of portrait (chain / wire-rope hoist), square
     (goliath / jib) and 4:3 (EOT) shots — a 1:1 box is the best compromise that
     shows every one of them at a good size without cropping, and matches the
     mobile card treatment for consistency. */
  aspect-ratio: 1 / 1;
  display: grid;
  /* Explicit minmax(0,1fr) tracks so the cell fills the aspect-ratio box height
     instead of stretching to the image's min-content — otherwise tall/portrait
     product renders force the row taller than the box and overflow (clipped). */
  grid-template-columns: minmax(0, 1fr);
  grid-template-rows: minmax(0, 1fr);
  place-items: center;
  padding: 14px 14px 16px;
  background:
    linear-gradient(135deg, rgba(242, 117, 9, 0.14), rgba(242, 117, 9, 0) 55%),
    repeating-linear-gradient(0deg, rgba(17, 24, 39, 0.045) 0 1px, transparent 1px 26px),
    repeating-linear-gradient(90deg, rgba(17, 24, 39, 0.045) 0 1px, transparent 1px 26px),
    linear-gradient(160deg, #f4f6f9, #ffffff);
  overflow: hidden;
}
.prange-media img {
  /* Fill the media box and let object-fit do the scaling — using width/height:100%
     (instead of max-height:100%) guarantees the image is constrained to the box on
     every screen size. max-height:100% fails to resolve against the aspect-ratio grid
     box on narrow viewports, which let tall/portrait product renders (chain & wire-rope
     hoists) overflow and get clipped by the box's overflow:hidden. */
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 16px 24px rgba(31, 41, 55, 0.22));
  transition: transform 0.5s var(--ease);
}
.prange-card:hover .prange-media img { transform: scale(1.05); }
/* Wide product shots (chain / wire-rope hoist) have large empty side margins —
   let them fill the whole media box so the product reads much bigger. */
.prange-media.is-fill { padding: 0; }
.prange-media.is-fill img {
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  object-fit: cover;
  object-position: center;
}
.prange-num {
  position: absolute;
  top: 12px;
  left: 18px;
  z-index: 2;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 3rem;
  line-height: 1;
  color: rgba(242, 117, 9, 0.18);
  transition: color 0.35s var(--ease);
  pointer-events: none;
}
.prange-card:hover .prange-num { color: rgba(242, 117, 9, 0.32); }
.prange-tag {
  position: absolute;
  left: 16px;
  bottom: 16px;
  z-index: 2;
  padding: 7px 13px;
  border-radius: 999px;
  background: rgba(17, 17, 17, 0.82);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  backdrop-filter: blur(4px);
}
.prange-body {
  padding: 22px 24px 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.prange-body h3 {
  font-size: 1.22rem;
  margin: 0;
}
.prange-body p {
  font-size: 0.93rem;
  color: var(--gray-700);
  margin: 10px 0 0;
}
.prange-link {
  margin-top: auto;
  padding-top: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  color: var(--primary-dark);
  font-weight: 600;
  font-size: 0.92rem;
}
.prange-link .ar {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(242, 117, 9, 0.12);
  color: var(--primary);
  font-size: 1.05rem;
  transition: background 0.35s var(--ease), color 0.35s var(--ease), transform 0.35s var(--ease);
}
.prange-card:hover .prange-link .ar {
  background: var(--primary);
  color: #fff;
  transform: translateX(4px);
}

@media (max-width: 1024px) {
  .home-about-grid { grid-template-columns: 1fr; gap: 48px; }
  .home-about-badge { right: 16px; }
  .prange-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 768px) {
  .home-about { padding: 64px 0 24px; }
  .prange-grid { grid-template-columns: 1fr; }
  /* Editor-saved home sections may mark cards `is-fill` (object-fit: cover).
     On phones cover crops portrait product renders (chain/wire-rope hoists) —
     always show the whole product instead. */
  .prange-media.is-fill { padding: 16px; }
  .prange-media.is-fill img { object-fit: contain; }
}
@media (prefers-reduced-motion: reduce) {
  .power-cta,
  .power-cta::before,
  .power-cta::after { animation: none; }
}

/* ============================================================
   HOME — Video hero (hero-v3)
   ============================================================ */
.hero-v3 {
  position: relative;
  display: flex;
  align-items: center;
  min-height: clamp(580px, 88vh, 860px);
  overflow: hidden;
  background: #0a0a0a;
  isolation: isolate;
}
.hero-v3-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-v3-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(10, 10, 10, 0.86) 0%, rgba(10, 10, 10, 0.62) 45%, rgba(10, 10, 10, 0.25) 100%),
    linear-gradient(0deg, rgba(10, 10, 10, 0.65), rgba(10, 10, 10, 0) 40%);
}
.hero-v3-inner {
  position: relative;
  z-index: 2;
  width: 100%;
}
.hero-v3-content {
  max-width: 760px;
  margin: 0;
  padding-top: 90px;
  padding-bottom: 90px;
  color: #fff;
  text-align: left;
}
.hero-v3-toptag {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(6px);
  font-size: 0.82rem;
  font-weight: 500;
  color: #f1f1f1;
}
.hero-v3-toptag .dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 4px rgba(22, 163, 74, 0.25);
}
.hero-v3-eyebrow {
  display: block;
  margin: 26px 0 12px;
  color: var(--primary-light);
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
}
.hero-v3 h1 {
  color: #fff;
  font-size: clamp(2.5rem, 5.2vw, 4.4rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0;
}
.hero-v3 h1 .hl { color: var(--primary); }
.hero-v3-content p {
  margin: 22px 0 0;
  max-width: 560px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.06rem;
  line-height: 1.7;
}
.hero-v3-actions {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.btn-ghost-light {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.45);
}
.btn-ghost-light:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #fff;
}
.hero-v3-scroll {
  position: absolute;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  z-index: 3;
  width: 26px; height: 42px;
  border: 2px solid rgba(255, 255, 255, 0.55);
  border-radius: 999px;
}
.hero-v3-scroll span {
  position: absolute;
  left: 50%;
  top: 8px;
  width: 4px; height: 8px;
  margin-left: -2px;
  border-radius: 2px;
  background: #fff;
  animation: scrollDot 1.6s var(--ease) infinite;
}
@keyframes scrollDot {
  0% { opacity: 0; transform: translateY(-4px); }
  40% { opacity: 1; }
  100% { opacity: 0; transform: translateY(12px); }
}

/* ============================================================
   HOME — Marquee strip (strip-v2)
   ============================================================ */
.strip-v2 {
  background: var(--light);
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
  overflow: hidden;
  padding: 16px 0;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}
.strip-v2-track {
  display: inline-flex;
  align-items: center;
  gap: 30px;
  width: max-content;
  white-space: nowrap;
  animation: stripScroll 38s linear infinite;
  will-change: transform;
}
.strip-v2:hover .strip-v2-track { animation-play-state: paused; }
.strip-v2 .s-item {
  color: var(--gray-700);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.strip-v2 .s-sep {
  color: var(--primary);
  font-size: 0.7rem;
  opacity: 0.75;
}
@keyframes stripScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .strip-v2-track { animation: none; }
}

/* ============================================================
   HOME — Counter band (redesigned counters)
   ============================================================ */
.counter-band {
  background: linear-gradient(180deg, #ffffff, var(--light));
  padding: 56px 0;
}
.counter-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}
.counter-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 30px 18px;
  background: var(--white);
  border: 1px solid rgba(242, 117, 9, 0.14);
  border-radius: 18px;
  box-shadow: 0 16px 34px rgba(31, 41, 55, 0.07);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.counter-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 50px rgba(242, 117, 9, 0.16);
}
.counter-ico {
  display: grid;
  place-items: center;
  width: 54px; height: 54px;
  border-radius: 14px;
  background: rgba(242, 117, 9, 0.12);
  color: var(--primary);
  margin-bottom: 14px;
}
.counter-ico svg {
  width: 26px; height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.counter-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.2rem, 4vw, 3rem);
  line-height: 1;
  color: var(--dark);
}
.counter-num .num { color: inherit; }
.counter-label {
  margin-top: 8px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--gray-700);
  letter-spacing: 0.02em;
}

/* ============================================================
   PRODUCT PAGES — photo gallery
   ============================================================ */
.product-gallery-section { padding: 64px 0; background: var(--light); }
.pgallery-grid {
  /* Flex (not grid) so a row that isn't completely full — e.g. the last
     row of an odd count like 7 — stays centred instead of leaving an
     empty cell that reads as a missing image. */
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 8px;
}
.pgallery-item {
  position: relative;
  margin: 0;
  flex: 0 1 calc((100% - 48px) / 4); /* 4 per row, 3 × 16px gaps */
  aspect-ratio: 4 / 3;
  background: linear-gradient(160deg, #ffffff, #eef2f7);
  border: 1px solid var(--gray-100);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(31, 41, 55, 0.07);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease);
}
.pgallery-item.is-zoomable { cursor: zoom-in; }
.pgallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;       /* every photo fills its card equally */
  object-position: center;
  display: block;
  transition: transform 0.4s var(--ease);
}
/* Transparent product renders (cutout artwork): never crop the product */
.pgallery-item img.img-contain {
  object-fit: contain;
  padding: 12px;
}
.pgallery-item::after {
  content: "";
  position: absolute;
  top: 10px; right: 10px;
  width: 30px; height: 30px;
  border-radius: 9px;
  background: rgba(17, 24, 39, 0.6) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='7'/%3E%3Cpath d='M21 21l-4.3-4.3'/%3E%3C/svg%3E") center / 16px no-repeat;
  opacity: 0;
  transition: opacity 0.3s var(--ease);
  pointer-events: none;
}
.pgallery-item:hover {
  transform: translateY(-4px);
  border-color: rgba(242, 117, 9, 0.4);
  box-shadow: 0 18px 34px rgba(31, 41, 55, 0.14);
}
.pgallery-item:hover img { transform: scale(1.06); }
.pgallery-item:hover::after { opacity: 1; }

/* Lightbox (built by SiteScripts.js, shared by every product gallery) */
.pglb {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(16px, 4vw, 60px);
  background: rgba(8, 10, 14, 0.92);
  backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s var(--ease), visibility 0.3s var(--ease);
}
.pglb.open { opacity: 1; visibility: visible; }
.pglb-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
  transition: opacity 0.2s var(--ease);
}
.pglb-btn {
  position: absolute;
  display: grid; place-items: center;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  cursor: pointer;
  transition: background 0.25s var(--ease), transform 0.25s var(--ease);
}
.pglb-btn svg { width: 24px; height: 24px; stroke: currentColor; fill: none; stroke-width: 2.2; }
.pglb-close { top: 22px; right: 22px; }
.pglb-close:hover { background: var(--primary); transform: scale(1.06); }
.pglb-prev { left: 22px; top: 50%; transform: translateY(-50%); }
.pglb-next { right: 22px; top: 50%; transform: translateY(-50%); }
.pglb-prev:hover, .pglb-next:hover { background: var(--primary); transform: translateY(-50%) scale(1.06); }
.pglb-count {
  position: absolute;
  bottom: 24px; left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}
.pglb-count b { color: var(--primary-light); }

@media (max-width: 900px) {
  .counter-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .pgallery-item { flex-basis: calc((100% - 32px) / 3); } /* 3 per row */
}
@media (max-width: 600px) {
  .hero-v3 { min-height: clamp(560px, 92vh, 760px); }
  .hero-v3-content { padding-top: 56px; padding-bottom: 64px; }
  .hero-v3-toptag { font-size: 0.76rem; padding: 7px 13px; }
  .hero-v3-eyebrow { margin: 20px 0 10px; font-size: 0.84rem; }
  .hero-v3 h1 { font-size: clamp(2.1rem, 9vw, 2.9rem); }
  .hero-v3-content p { font-size: 1rem; line-height: 1.65; }
  /* CTAs sit side by side while they fit, then wrap to full-width stacked rows
     on very narrow phones (≤ ~360px) so neither button is ever clipped. */
  .hero-v3-actions { margin-top: 26px; gap: 10px; flex-wrap: wrap; }
  .hero-v3-actions .btn { flex: 1 1 140px; justify-content: center; width: auto; max-width: 100%; padding: 13px 14px; font-size: 0.88rem; white-space: nowrap; }
  .counter-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .pgallery-grid { gap: 12px; }
  .pgallery-item { flex-basis: calc((100% - 12px) / 2); } /* 2 per row */
  .strip-v2 { padding: 13px 0; }
  .strip-v2-track { gap: 22px; animation-duration: 26s; }
  .strip-v2 .s-item { font-size: 0.82rem; letter-spacing: 0.1em; }
  /* Home achievement counters: let the two columns shrink and use compact
     padding/number size so the four-figure counts (4500+, 2300+) never spill
     past the card edge on ~320px phones. */
  .stats-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
  .stat { padding: 24px 18px; }
  .stat .num { font-size: clamp(2rem, 8.5vw, 2.6rem); }
  /* About-page + product-page counter cards (2-up .perf-stat): compact padding
     and a vw-scaled number so "4,500+" fits its half-width card at 320px. */
  .perf-stats, .crane-stats { gap: 12px; }
  .perf-stat { padding: 22px 12px; }
  .perf-stat .num { font-size: clamp(1.55rem, 8vw, 2.5rem); }
  .perf-stat .lbl { font-size: 0.76rem; }
  /* Home counter band: same treatment (base clamp bottoms out at 2.2rem ≈ too
     wide for a half-width card on a 320px screen). */
  .counter-grid { gap: 12px; }
  .counter-card { padding: 24px 12px; }
  .counter-num { font-size: clamp(1.7rem, 8.5vw, 3rem); }
  /* Product-range cards are full width on phones; a squarer, less-padded media box
     gives the (portrait) hoist renders room to show large without being clipped. */
  .prange-media { aspect-ratio: 1 / 1; padding: 18px; }

  /* Product-detail hero visual: on phones the two-column hero collapses and the
     visual becomes a narrow, very tall portrait box (~286x420). Photographic
     visuals use object-fit:cover, so on that tall box a landscape crane photo lost
     ~half its width (the crane got "cut"). Give the cover visuals a landscape 4:3
     box that matches the source photos' aspect, so the whole crane shows. Cutout
     product renders use .img-contain and keep the taller box (they never crop). */
  .product-detail-visual:has(img:not(.img-contain)) {
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  /* Product-detail hero CTAs: left-aligned auto-width pills of differing widths
     read as broken/unresponsive stacked on a phone. Make each button span the
     column so they line up as a clean full-width stack. */
  .product-detail-actions { flex-direction: column; align-items: stretch; }
  .product-detail-actions .btn { width: 100%; justify-content: center; }

  /* The orange CTA card was full-bleed — it ran edge-to-edge and "merged" with the
     phone's screen edges, so its rounded corners never showed on the sides. Give the
     section a side gutter so the card sits inset as a proper contained card, and keep
     comfortable internal padding (the .container class's ≤360 rule had otherwise wiped
     the card's own vertical padding to 0). */
  .detail-cta-section { padding: 48px 16px 0; }
  .detail-cta-section .detail-cta-card { padding: 32px 22px; }

/* ============================================================
   Footer logo — full brand on a white strip (emblem + name readable)
   ============================================================ */
.site-footer .footer-brand .logo.footer-logo-strip {
  display: inline-flex;
  align-items: center;
  background: #fff;
  padding: 12px 18px;
  border-radius: 12px;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.28);
}
.site-footer .footer-brand .logo.footer-logo-strip img {
  height: 50px;
  width: auto;
  filter: none; /* override the brightness(0) invert(1) that whitened the old logo */
}

/* ============================================================
   Thank-you page (post-inquiry confirmation)
   ============================================================ */
.ty-section {
  padding: 150px 0 110px;
  background: linear-gradient(180deg, var(--light), #fff);
}
.ty-card {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 70px rgba(17, 24, 39, 0.10);
  padding: 56px 44px;
}
.ty-check {
  width: 86px;
  height: 86px;
  margin: 0 auto 26px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(150deg, var(--primary), var(--primary-dark));
  box-shadow: 0 16px 36px rgba(242, 117, 9, 0.35);
}
.ty-check svg {
  width: 42px;
  height: 42px;
  fill: none;
  stroke: #fff;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.ty-eyebrow {
  display: inline-block;
  color: var(--primary);
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 12px;
}
.ty-card h1 {
  font-size: clamp(2rem, 4vw, 2.7rem);
  margin: 0 0 16px;
}
.ty-card p {
  color: var(--gray-700);
  font-size: 1.02rem;
  line-height: 1.7;
  max-width: 480px;
  margin: 0 auto;
}
.ty-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-top: 34px;
}
.ty-meta {
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid var(--gray-100);
  color: var(--gray-500);
  font-size: 0.92rem;
}
.ty-meta a {
  color: var(--primary);
  font-weight: 600;
}
@media (max-width: 768px) {
  .ty-section { padding: 120px 0 70px; }
  .ty-card { padding: 40px 24px; }
  .ty-actions .btn { flex: 1 1 100%; justify-content: center; }
}

/* ============================================================
   Popup modals — inquiry form + brochure viewer
   ============================================================ */
.bc-modal {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(17, 24, 39, 0.62);
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s var(--ease), visibility 0.3s var(--ease);
}
.bc-modal.open { opacity: 1; visibility: visible; }
body.bc-modal-open { overflow: hidden; }

.bc-modal-card {
  position: relative;
  width: 100%;
  max-width: 520px;
  max-height: calc(100dvh - 48px);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 80px rgba(17, 24, 39, 0.30);
  padding: 40px 34px 34px;
  transform: translateY(14px) scale(0.98);
  transition: transform 0.3s var(--ease);
}
.bc-modal.open .bc-modal-card { transform: none; }
.bc-modal-card-wide { max-width: 900px; padding: 22px; }

.bc-modal-title { margin: 6px 0; }
.bc-modal-sub { color: var(--gray-500); font-size: 0.95rem; margin-bottom: 22px; }
.bc-modal-submit { width: 100%; justify-content: center; margin-top: 6px; }

.bc-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: none;
  border-radius: 10px;
  background: var(--light);
  color: var(--gray-700);
  cursor: pointer;
  transition: background 0.2s var(--ease), color 0.2s var(--ease);
}
.bc-modal-close:hover { background: var(--accent-soft); color: var(--primary); }
.bc-modal-close svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.bc-modal-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}
.bc-modal-head .eyebrow { display: block; }
.bc-modal-head .bc-modal-close { position: static; flex: none; }

.bc-brochure-frame {
  width: 100%;
  height: min(72vh, 640px);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--gray-100);
  background: var(--light);
}
.bc-brochure-frame iframe { width: 100%; height: 100%; border: 0; display: block; }

.bc-modal-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 16px; }
.bc-modal-actions .btn { flex: 1 1 200px; justify-content: center; }

@media (max-width: 768px) {
  .bc-modal { padding: 0; align-items: stretch; }
  .bc-modal-card {
    max-width: none;
    max-height: 100dvh;
    min-height: 100dvh;
    border-radius: 0;
    padding: 66px 20px 28px;
  }
  .bc-modal-card-wide { padding: 16px 14px 20px; }
  .bc-modal-head { margin-bottom: 12px; }
  .bc-brochure-frame { height: calc(100dvh - 270px); }
}

/* ============================================================
   Small phones (≤360px, e.g. 320px) — reclaim width and stop the
   large section headings from dominating the viewport. Every
   section inherits these, so they all read comfortably narrow.
   ============================================================ */
@media (max-width: 360px) {
  /* 24px each side eats a lot of a 320px screen — give content more room. */
  .container { padding: 0 16px; }

  /* Base heading clamps bottom out at 2.5rem/2rem, which is oversized on a
     320px screen (long titles wrap to many lines). Trim just here. */
  h1 { font-size: 1.95rem; line-height: 1.14; }
  h2 { font-size: 1.6rem; line-height: 1.18; }
  h3 { font-size: 1.28rem; }

  /* Hero keeps a bit more presence than body sections. */
  .hero-v3 h1, .hero-v2 h1 { font-size: 2.05rem; }

  /* Section intro paragraphs / eyebrows */
  .section-head p { font-size: 0.95rem; }
  .eyebrow { font-size: 0.72rem; letter-spacing: 0.14em; }
}
