/* =========================================
   JOBBERS EQUIPMENT WAREHOUSE — styles.css
   Primary Accent: #FF3503
   ========================================= */

/* ---------- RESET & BASE ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', sans-serif;
  background: #000000;
  color: #E4E4E7;
  overflow-x: hidden;
  line-height: 1.7;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

/* ---------- CSS VARIABLES ---------- */
:root {
  --primary: #FF3503;
  --primary-400: #ff6040;
  --primary-600: #e62d00;
  --primary-700: #cc2800;
  --primary-rgb: 255, 53, 3;
  --bg-0: #000000;
  --bg-1: #09090B;
  --bg-2: #18181B;
  --bg-3: #27272A;
  --text-1: #FFFFFF;
  --text-2: #E4E4E7;
  --text-3: #A1A1AA;
  --text-4: #71717A;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- UTILITIES ---------- */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.accent-text {
  color: var(--primary);
}

.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  border: 1px solid rgba(var(--primary-rgb), 0.3);
  padding: 4px 14px;
  border-radius: 99px;
  margin-bottom: 16px;
}

/* 20% larger variants */
.customers-label,
.partners-section-label {
  font-size: 0.94rem;
  letter-spacing: 0.05em;
  padding: 7px 19px;
}


.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--text-1);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--text-3);
  max-width: 600px;
  margin: 0 auto;
}

/* ---------- GLASS CARD ---------- */
.glass-card {
  background: linear-gradient(135deg,
      rgba(var(--primary-rgb), 0.07) 0%,
      rgba(var(--primary-rgb), 0.03) 50%,
      rgba(var(--primary-rgb), 0.07) 100%);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border: 1px solid rgba(var(--primary-rgb), 0.12);
  border-radius: var(--radius-lg);
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.glass-card:hover {
  border-color: rgba(var(--primary-rgb), 0.28);
  box-shadow: 0 20px 50px rgba(var(--primary-rgb), 0.15);
  transform: translateY(-4px);
}

/* ---------- BUTTONS ---------- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--primary-600), var(--primary), var(--primary-400), var(--primary));
  background-size: 200% 200%;
  animation: grad-shift 4s ease infinite;
  color: #fff;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: transform 0.3s ease, filter 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 0 0 1px rgba(var(--primary-rgb), 0.4), 0 4px 20px rgba(var(--primary-rgb), 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px) scale(1.02);
  filter: brightness(1.1);
  box-shadow: 0 0 0 2px rgba(var(--primary-rgb), 0.7), 0 8px 32px rgba(var(--primary-rgb), 0.5);
}

.btn-glow {
  animation: grad-shift 4s ease infinite, pulse-glow 3s ease-in-out infinite;
}

.btn-xl {
  font-size: 1.05rem;
  padding: 18px 36px;
}

.btn-full {
  width: 100%;
  justify-content: center;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--text-1);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: border-color var(--transition), background var(--transition), transform var(--transition);
}

.btn-outline:hover {
  border-color: rgba(var(--primary-rgb), 0.5);
  background: rgba(var(--primary-rgb), 0.08);
  transform: translateY(-2px);
}

.btn-outline.btn-xl {
  font-size: 1.05rem;
  padding: 18px 36px;
}

.btn-outline-white {
  display: inline-flex;
  align-items: center;
  background: transparent;
  color: #fff;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all var(--transition);
}

.btn-outline-white:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.btn-emergency {
  display: inline-flex;
  align-items: center;
  background: #fff;
  color: #CC2200;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
}

.btn-emergency:hover {
  background: #f0f0f0;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

/* ---------- KEYFRAMES ---------- */
@keyframes grad-shift {

  0%,
  100% {
    background-position: 0% 50%
  }

  50% {
    background-position: 100% 50%
  }
}

@keyframes pulse-glow {

  0%,
  100% {
    box-shadow: 0 0 0 1px rgba(var(--primary-rgb), .4), 0 4px 20px rgba(var(--primary-rgb), .3), 0 0 50px rgba(var(--primary-rgb), .15);
  }

  50% {
    box-shadow: 0 0 0 2px rgba(var(--primary-rgb), .7), 0 8px 36px rgba(var(--primary-rgb), .5), 0 0 80px rgba(var(--primary-rgb), .25);
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0) rotate(0deg)
  }

  30% {
    transform: translateY(-18px) rotate(1.5deg)
  }

  60% {
    transform: translateY(-8px) rotate(-1.5deg)
  }
}

@keyframes float-card {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-8px)
  }
}

@keyframes marquee {
  0% {
    transform: translateX(0)
  }

  100% {
    transform: translateX(-50%)
  }
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(30px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

@keyframes fade-in {
  from {
    opacity: 0
  }

  to {
    opacity: 1
  }
}

@keyframes badge-pulse {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: 0.5
  }
}

@keyframes scroll-bounce {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(8px)
  }
}

/* ---------- NAVBAR ---------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all 0.4s ease;
}

.navbar.scrolled {
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(var(--primary-rgb), 0.1);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
  padding: 14px 0;
}

.nav-container {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-brand {
  flex-shrink: 0;
}

.nav-logo {
  height: 66px;
  width: auto;
  filter: brightness(1.1);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--text-3);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  border: none;
  background: transparent;
  cursor: pointer;
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
}

.nav-link:hover {
  color: var(--text-1);
  background: rgba(var(--primary-rgb), 0.08);
}

.chevron {
  transition: transform 0.3s ease;
}

.nav-item.open .chevron {
  transform: rotate(180deg);
}

/* Dropdown */
.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 280px;
  background: rgba(9, 9, 11, 0.95);
  backdrop-filter: blur(24px);
  border: 1px solid rgba(var(--primary-rgb), 0.15);
  border-radius: var(--radius-md);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(8px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7);
  z-index: 100;
}

.nav-item.open .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

/* Wide dropdown for Products */
.nav-item:first-child .dropdown-menu {
  min-width: 500px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}

.dropdown-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
  color: var(--text-2);
}

.dropdown-item:hover {
  background: rgba(var(--primary-rgb), 0.1);
}

.di-icon {
  font-size: 18px;
  flex-shrink: 0;
  margin-top: 1px;
}

.di-text {
  display: flex;
  flex-direction: column;
}

.di-text strong {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-1);
}

.di-text em {
  font-size: 0.75rem;
  color: var(--text-4);
  font-style: normal;
  margin-top: 1px;
}

/* Nav actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.nav-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--text-3);
  font-size: 0.875rem;
  font-weight: 500;
  transition: color var(--transition);
}

.nav-phone:hover {
  color: var(--primary);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-2);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* ---------- MOBILE OVERLAY ---------- */
.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.97);
  z-index: 999;
  padding: 80px 32px 40px;
  overflow-y: auto;
}

.mobile-overlay.active {
  display: flex;
  flex-direction: column;
  animation: fade-in 0.25s ease;
}

.mobile-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  font-size: 24px;
  color: var(--text-3);
  cursor: pointer;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mobile-section {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.mobile-toggle {
  width: 100%;
  background: none;
  border: none;
  color: var(--text-1);
  font-size: 1.1rem;
  font-weight: 600;
  text-align: left;
  padding: 14px 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
}

.mobile-sub {
  display: none;
  padding-bottom: 12px;
}

.mobile-sub.open {
  display: flex;
  flex-direction: column;
}

.mobile-sub a {
  color: var(--text-3);
  padding: 8px 16px;
  font-size: 0.95rem;
}

.mobile-sub a:hover {
  color: var(--primary);
}

.mobile-link {
  color: var(--text-1);
  font-size: 1.1rem;
  font-weight: 600;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.mobile-phone-btn {
  display: block;
  text-align: center;
  color: var(--primary);
  font-weight: 700;
  font-size: 1.1rem;
  margin: 16px 0 8px;
}

/* ---------- HERO ---------- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 0 80px;
  background: var(--bg-0);
}

.hero-glow {
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 500px;
  background: radial-gradient(ellipse, rgba(var(--primary-rgb), 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.particle {
  position: absolute;
  width: 3px;
  height: 3px;
  background: rgba(var(--primary-rgb), 0.6);
  border-radius: 50%;
  animation: float-particle linear infinite;
}

@keyframes float-particle {

  0%,
  100% {
    transform: translate(0, 0);
    opacity: .4
  }

  25% {
    transform: translate(80px, -120px);
    opacity: .8
  }

  50% {
    transform: translate(-40px, -220px);
    opacity: .5
  }

  75% {
    transform: translate(-100px, -110px);
    opacity: .7
  }
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(var(--primary-rgb), 0.1);
  border: 1px solid rgba(var(--primary-rgb), 0.25);
  border-radius: 99px;
  padding: 7px 19px;
  font-size: 0.94rem;
  font-weight: 500;
  color: var(--primary-400);
  margin-bottom: 24px;
}

.badge-dot {
  width: 7px;
  height: 7px;
  background: var(--primary);
  border-radius: 50%;
  animation: badge-pulse 2s ease infinite;
}

.hero-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  font-weight: 800;
  color: var(--text-1);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: 1.05rem;
  color: var(--text-3);
  max-width: 520px;
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
}

.hero-stat {
  display: flex;
  flex-direction: column;
}

.hs-num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text-1);
}

.hs-label {
  font-size: 0.75rem;
  color: var(--text-4);
}

.hs-div {
  width: 1px;
  height: 36px;
  background: rgba(255, 255, 255, 0.12);
}

.emergency-text {
  color: var(--primary) !important;
}

.animate-fadein {
  animation: fade-up 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.animate-fadein-delay {
  animation: fade-up 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.25s both;
}

/* Hero Visual — CSS Lift Illustration */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: auto;
  max-width: 100%;
}

.lift-scene {
  position: relative;
  width: 280px;
  height: 340px;
  animation: float 7s ease-in-out infinite;
}

.lift-glow-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 320px;
  height: 320px;
  background: radial-gradient(ellipse, rgba(var(--primary-rgb), 0.18) 0%, transparent 70%);
  border-radius: 50%;
}

/* Posts */
.lift-post {
  position: absolute;
  top: 50px;
  bottom: 40px;
  width: 18px;
  background: linear-gradient(to bottom, rgba(var(--primary-rgb), .25) 0%, rgba(var(--primary-rgb), .15) 100%);
  border: 1px solid rgba(var(--primary-rgb), .5);
  border-radius: 4px;
}

.lift-post.left {
  left: 20px;
}

.lift-post.right {
  right: 20px;
}

/* Arms */
.lift-arm {
  position: absolute;
  height: 10px;
  background: rgba(var(--primary-rgb), .3);
  border: 1px solid rgba(var(--primary-rgb), .6);
  border-radius: 3px;
}

.lift-arm.top-l {
  left: 38px;
  width: 70px;
  top: 100px;
}

.lift-arm.top-r {
  right: 38px;
  width: 70px;
  top: 100px;
}

.lift-arm.bot-l {
  left: 38px;
  width: 80px;
  top: 120px;
}

.lift-arm.bot-r {
  right: 38px;
  width: 80px;
  top: 120px;
}

/* Car */
.car-body {
  position: absolute;
  left: 38px;
  right: 38px;
  top: 60px;
  height: 50px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
}

.car-top {
  position: absolute;
  top: -26px;
  left: 20%;
  right: 20%;
  height: 26px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: none;
  border-radius: 8px 8px 0 0;
}

.car-win {
  position: absolute;
  top: -24px;
  height: 20px;
  width: 36%;
  background: rgba(var(--primary-rgb), .12);
  border: 1px solid rgba(var(--primary-rgb), .2);
  border-radius: 4px;
}

.car-win.win-f {
  left: calc(20% + 4px);
}

.car-win.win-r {
  right: calc(20% + 4px);
}

.lift-floor {
  position: absolute;
  bottom: 30px;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(to right, transparent, rgba(var(--primary-rgb), .5), transparent);
}

/* Floating cards */
.float-card {
  position: absolute;
  background: rgba(9, 9, 11, 0.85);
  border: 1px solid rgba(var(--primary-rgb), .2);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-sm);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
}

.float-card strong {
  display: block;
  color: var(--text-1);
  font-weight: 600;
}

.float-card span {
  display: block;
  color: var(--text-4);
  font-size: 0.7rem;
}

.fc-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
  flex-shrink: 0;
}

.emergency-dot {
  background: #22c55e;
  animation: badge-pulse 1.5s infinite;
}

.fc-left {
  top: 60px;
  left: -30px;
  animation: float-card 4s ease-in-out infinite;
}

.fc-right {
  top: 40px;
  right: -20px;
  animation: float-card 4s ease-in-out 1s infinite;
}

.fc-bottom {
  bottom: 60px;
  right: -10px;
  animation: float-card 4s ease-in-out 2s infinite;
}

.fc-bottom-left {
  bottom: 60px;
  left: -30px;
  animation: float-card 4s ease-in-out 3s infinite;
}

/* Hero Visual Image */
.hero-visual-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
  animation: float 6s ease-in-out infinite;
}

.scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
}

.scroll-ball {
  width: 6px;
  height: 6px;
  background: rgba(var(--primary-rgb), .7);
  border-radius: 50%;
  margin: 0 auto;
  animation: scroll-bounce 2s ease-in-out infinite;
}

/* ---------- CUSTOMERS ---------- */
.customers-section {
  padding: 80px 0;
  background: var(--bg-1);
  border-top: 1px solid rgba(var(--primary-rgb), .07);
  border-bottom: 1px solid rgba(var(--primary-rgb), .07);
  overflow: hidden;
}

.customers-track {
  position: relative;
  overflow: hidden;
  /* Fade edges */
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 12%, black 88%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 12%, black 88%, transparent 100%);
}

.customers-list {
  display: flex;
  align-items: center;
  gap: 64px;
  width: max-content;
  animation: marquee 30s linear infinite;
}

.customers-list:hover {
  animation-play-state: paused;
}

.customer-logo-item {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 72px;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius-md);
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}

.customer-logo-item:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(var(--primary-rgb), 0.25);
  transform: translateY(-3px);
}

.customer-logo-item img {
  height: 48px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  transition: transform var(--transition);
}

.customer-logo-item:hover img {
  transform: scale(1.05);
}

/* ---------- PARTNERS ---------- */

.partners {
  background: var(--bg-1);
  border-top: 1px solid rgba(var(--primary-rgb), .07);
  border-bottom: 1px solid rgba(var(--primary-rgb), .07);
  padding: 28px 0;
  overflow: hidden;
}

.partners-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-4);
  text-align: center;
  margin-bottom: 16px;
}

.partners-track {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}

.partners-list {
  display: flex;
  gap: 48px;
  width: max-content;
  animation: marquee 25s linear infinite;
}

.partner {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-4);
  white-space: nowrap;
  transition: color var(--transition);
  letter-spacing: 0.02em;
  cursor: default;
}

.partner:hover {
  color: var(--primary);
}

.partner-logo-item {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 64px;
  padding: 6px 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius-md);
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}

.partner-logo-item:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(var(--primary-rgb), 0.25);
  transform: translateY(-3px);
}

.partner-logo-item img {
  height: 40px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  transition: transform var(--transition);
}

.partner-logo-item img.partner-logo-large {
  height: 52px;
  max-width: 155px;
}

.partner-logo-item:hover img {
  transform: scale(1.05);
}

/* ---------- WHY CHOOSE ---------- */
.why-section {
  padding: 100px 0;
  background: var(--bg-0);
  position: relative;
}

.why-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(var(--primary-rgb), .06) 0%, transparent 60%);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  position: relative;
}

.why-card {
  padding: 24px 18px;
}

.why-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(var(--primary-rgb), .1);
  border: 1px solid rgba(var(--primary-rgb), .2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.why-big {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}

.why-big-suffix {
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary-400);
  margin-bottom: 12px;
}

.why-card h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-1);
  margin-bottom: 10px;
}

.why-card p {
  font-size: 0.875rem;
  color: var(--text-3);
  line-height: 1.7;
}

.license-badge {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--primary);
  background: rgba(var(--primary-rgb), .12);
  border: 1px solid rgba(var(--primary-rgb), .25);
  padding: 4px 10px;
  border-radius: 6px;
  margin-bottom: 14px;
  display: inline-block;
  letter-spacing: 0.04em;
}

.response-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 14px;
}

.resp {
  display: flex;
  flex-direction: column;
}

.resp-num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-1);
}

.resp-lbl {
  font-size: 0.72rem;
  color: var(--text-4);
}

.resp-sep {
  width: 1px;
  height: 36px;
  background: rgba(255, 255, 255, 0.1);
}

.cap-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 14px;
}

.cap {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--primary);
  background: rgba(var(--primary-rgb), .1);
  border: 1px solid rgba(var(--primary-rgb), .2);
  padding: 3px 10px;
  border-radius: 6px;
}

/* ---------- SERVICES ---------- */
.services-section {
  padding: 100px 0;
  background: var(--bg-1);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* ═══════════════════════════════════════
   3D FLIP CARDS — Service Section
   ═══════════════════════════════════════ */

/* 1. Outer wrapper — provides 3D perspective */
.fc-wrap {
  height: 380px;
  perspective: 1200px;
  cursor: pointer;
  user-select: none;
  -webkit-user-select: none;
}

/* 2. Inner element — this is what actually rotates */
.fc-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 0.8s ease-in-out;
  will-change: transform;
}

/* Hover: flip on desktop (pointer devices) */
@media (hover: hover) and (pointer: fine) {
  .fc-wrap:hover .fc-inner {
    transform: rotateY(180deg);
  }
}

/* Tap-to-flip on touch (toggled by JS) */
.fc-wrap.is-flipped .fc-inner {
  transform: rotateY(180deg);
}

/* Reduced motion — no rotation, cross-fade instead */
@media (prefers-reduced-motion: reduce) {
  .fc-inner {
    transition: none;
  }

  .fc-front {
    transition: opacity 0.3s ease;
  }

  .fc-back {
    transition: opacity 0.3s ease;
    opacity: 0;
  }

  @media (hover: hover) and (pointer: fine) {
    .fc-wrap:hover .fc-inner {
      transform: none;
    }

    .fc-wrap:hover .fc-front {
      opacity: 0;
    }

    .fc-wrap:hover .fc-back {
      opacity: 1;
    }
  }

  .fc-wrap.is-flipped .fc-inner {
    transform: none;
  }

  .fc-wrap.is-flipped .fc-front {
    opacity: 0;
  }

  .fc-wrap.is-flipped .fc-back {
    opacity: 1;
  }
}

/* ── Shared face styles ── */
.fc-front,
.fc-back {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

/* Front: interactive by default, hidden from pointer when flipped */
.fc-front {
  pointer-events: auto;
}

@media (hover: hover) and (pointer: fine) {
  .fc-wrap:hover .fc-front {
    pointer-events: none;
  }
}

.fc-wrap.is-flipped .fc-front {
  pointer-events: none;
}

/* Back: pre-rotated 180°, non-interactive until flipped */
.fc-back {
  transform: rotateY(180deg);
  pointer-events: none;
  background: #111113;
  /* solid dark — no image bleed-through */
  border: 1px solid rgba(var(--primary-rgb), 0.18);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 28px 26px;
}

@media (hover: hover) and (pointer: fine) {
  .fc-wrap:hover .fc-back {
    pointer-events: auto;
  }
}

.fc-wrap.is-flipped .fc-back {
  pointer-events: auto;
}

/* ── Front face content ── */
.fc-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
  will-change: transform;
}

/* Subtle zoom when about to flip — triggered on fc-wrap hover before the flip */
@media (hover: hover) and (pointer: fine) {
  .fc-wrap:not(.is-flipped):hover .fc-img {
    transform: scale(1.04);
  }
}

.fc-front-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 22px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.82) 0%, transparent 100%);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}

.fc-badge {
  display: inline-block;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--primary);
  background: rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(var(--primary-rgb), 0.45);
  padding: 3px 9px;
  border-radius: 4px;
  margin-bottom: 7px;
  text-transform: uppercase;
}

.fc-front-overlay h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin: 0;
}

/* ── Back face content ── */
.fc-back-num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 2.4rem;
  font-weight: 800;
  color: rgba(var(--primary-rgb), 0.18);
  line-height: 1;
  margin-bottom: 6px;
  display: block;
}

.fc-back h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-1);
  margin-bottom: 10px;
  line-height: 1.25;
}

.fc-back p {
  font-size: 0.84rem;
  color: var(--text-3);
  line-height: 1.65;
  margin-bottom: 14px;
  flex: 1;
}

.fc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 18px;
}

.fc-tags span {
  font-size: 0.67rem;
  font-weight: 600;
  color: var(--primary);
  background: rgba(var(--primary-rgb), 0.12);
  border: 1px solid rgba(var(--primary-rgb), 0.28);
  padding: 3px 9px;
  border-radius: 5px;
  letter-spacing: 0.02em;
}

/* ── CTA Button (reused from overlay era) ── */
.svc-overlay-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--primary);
  color: #fff;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: 7px;
  min-width: 130px;
  min-height: 40px;
  align-self: flex-start;
  box-shadow: 0 4px 14px rgba(var(--primary-rgb), 0.4);
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.svc-overlay-btn:hover {
  background: var(--primary-400);
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(var(--primary-rgb), 0.55);
}

.svc-overlay-btn:active {
  transform: scale(0.97);
  background: var(--primary-600);
}

.svc-overlay-btn svg {
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.svc-overlay-btn:hover svg {
  transform: translateX(3px);
}

.svc-overlay-btn:focus-visible {
  outline: 3px solid var(--primary-400);
  outline-offset: 3px;
}

/* ── Keyboard focus: show back face on focus (accessibility) ── */
.fc-wrap:focus-within .fc-inner {
  transform: rotateY(180deg);
}

.fc-wrap:focus-within .fc-front {
  pointer-events: none;
}

.fc-wrap:focus-within .fc-back {
  pointer-events: auto;
}







/* ---------- EMERGENCY ---------- */
.emergency-section {
  background: linear-gradient(135deg, #1a0000 0%, #2a0800 50%, #1a0000 100%);
  border-top: 1px solid rgba(200, 0, 0, 0.25);
  border-bottom: 1px solid rgba(200, 0, 0, 0.25);
  padding: 60px 0;
}

.emergency-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: space-between;
}

.emergency-icon {
  font-size: 3rem;
  flex-shrink: 0;
}

.emergency-text {
  flex: 1;
  min-width: 280px;
}

.emergency-text h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
}

.emergency-text p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.95rem;
}

.emergency-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  flex-shrink: 0;
}

/* ---------- STATS ---------- */
.stats-section {
  padding: 80px 0;
  background: var(--bg-0);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.stat-card {
  padding: 32px 24px;
  text-align: center;
}

.stat-num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-2);
  margin-bottom: 6px;
}

.stat-desc {
  font-size: 0.78rem;
  color: var(--text-4);
}

/* ---------- PUBLIC SECTOR ---------- */
.public-section {
  padding: 100px 0;
  background: var(--bg-1);
}

.public-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 80px;
  align-items: center;
}

.public-content .section-title {
  text-align: left;
}

.public-content p {
  color: var(--text-3);
  margin-bottom: 20px;
  font-size: 0.95rem;
}

.public-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 28px 0;
}

.public-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-2);
  font-size: 0.95rem;
}

.list-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
  flex-shrink: 0;
}

.public-slider-container {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  background: var(--bg-2);
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.public-slider {
  width: 100%;
  height: 100%;
  position: relative;
}

.public-slider .slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1), transform 1.2s cubic-bezier(0.4, 0, 0.2, 1);
  transform: scale(1.08);
  will-change: opacity, transform;
}

.public-slider .slide.active {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}

.slider-nav {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
  z-index: 10;
  pointer-events: none;
}

.slider-nav button {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(18, 18, 18, 0.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  pointer-events: auto;
}

.slider-nav button:hover {
  background: var(--primary);
  border-color: var(--primary);
  transform: scale(1.1);
}

.slider-dots {
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
  padding: 8px 16px;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.dot.active {
  background: var(--primary);
  width: 22px;
  border-radius: 10px;
}

.slider-caption {
  position: absolute;
  top: 20px;
  left: 20px;
  padding: 8px 16px;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 8px;
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  z-index: 10;
  border: 1px solid rgba(255, 255, 255, 0.1);
  pointer-events: none;
}

/* ---------- ABOUT ---------- */
.about-section {
  padding: 100px 0;
  background: var(--bg-0);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: center;
}

.about-logo-wrap {
  position: relative;
  width: 200px;
  height: 200px;
  margin: 0 auto 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-logo {
  width: 180px;
  filter: brightness(1.1) drop-shadow(0 0 20px rgba(var(--primary-rgb), .4));
  position: relative;
  z-index: 2;
}

.about-logo-glow {
  position: absolute;
  inset: -20px;
  background: radial-gradient(ellipse, rgba(var(--primary-rgb), .2) 0%, transparent 70%);
  border-radius: 50%;
}

.about-badge-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.about-badge {
  padding: 8px 16px;
  font-size: 0.8rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-2);
}

.about-content .section-title {
  text-align: left;
  margin-bottom: 20px;
}

.about-content p {
  color: var(--text-3);
  margin-bottom: 16px;
  font-size: 0.95rem;
  line-height: 1.75;
}

.about-highlights {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 24px;
}

.ah-item {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--text-2);
  font-size: 0.9rem;
}

.ah-icon {
  font-size: 1.2rem;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(var(--primary-rgb), .1);
  border-radius: 8px;
  flex-shrink: 0;
}

/* ---------- CTA SECTION ---------- */
.cta-section {
  padding: 100px 0;
  background: var(--bg-1);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(var(--primary-rgb), .18) 0%, transparent 70%);
  pointer-events: none;
}

.cta-inner {
  position: relative;
  z-index: 2;
}

.cta-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  color: var(--text-1);
  margin-bottom: 16px;
}

.cta-sub {
  font-size: 1.05rem;
  color: var(--text-3);
  max-width: 540px;
  margin: 0 auto 40px;
}

.cta-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---------- CONTACT ---------- */
.contact-section {
  padding: 100px 0;
  background: var(--bg-0);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: start;
}

.contact-form-wrap {
  padding: 40px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-3);
  letter-spacing: 0.04em;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  color: var(--text-1);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(var(--primary-rgb), .5);
  box-shadow: 0 0 0 3px rgba(var(--primary-rgb), .1);
}

.form-group select option {
  background: #1a1a1a;
}

.form-group textarea {
  resize: vertical;
}

.form-success {
  display: none;
  text-align: center;
  padding: 14px;
  background: rgba(34, 197, 94, .1);
  border: 1px solid rgba(34, 197, 94, .3);
  border-radius: var(--radius-sm);
  color: #22c55e;
  font-size: 0.9rem;
}

.form-success.show {
  display: block;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.ci-card {
  padding: 32px;
}

.ci-card h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-1);
  margin-bottom: 24px;
}

.ci-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
}

.ci-icon {
  font-size: 1.2rem;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(var(--primary-rgb), .1);
  border-radius: 10px;
  flex-shrink: 0;
}

.ci-item strong {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-4);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 2px;
}

.ci-item a,
.ci-item span {
  color: var(--text-2);
  font-size: 0.9rem;
}

.ci-item a:hover {
  color: var(--primary);
}

.ci-divider {
  height: 1px;
  background: rgba(var(--primary-rgb), .1);
  margin: 20px 0;
}

.ci-card h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-2);
  margin-bottom: 14px;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  padding: 6px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--text-3);
}

.emergency-row span {
  color: #22c55e;
  font-weight: 600;
}

/* ---------- FOOTER ---------- */
.footer {
  background: var(--bg-1);
  border-top: 1px solid rgba(var(--primary-rgb), .08);
  padding: 80px 0 32px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}

.footer-brand p {
  font-size: 0.85rem;
  color: var(--text-4);
  margin: 16px 0 8px;
  line-height: 1.6;
}

.footer-license {
  font-size: 0.75rem !important;
  color: var(--primary) !important;
  margin-bottom: 16px !important;
}

.footer-phone {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--text-2);
  font-weight: 600;
  font-size: 0.9rem;
  transition: color var(--transition);
}

.footer-phone:hover {
  color: var(--primary);
}

.footer-logo {
  height: 40px;
  width: auto;
}

.footer-col h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-1);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}

.footer-col a {
  display: block;
  font-size: 0.85rem;
  color: var(--text-4);
  padding: 4px 0;
  transition: color var(--transition);
}

.footer-col a:hover {
  color: var(--primary);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 28px;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--text-4);
}

.footer-badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.fb {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-4);
  background: rgba(var(--primary-rgb), .07);
  border: 1px solid rgba(var(--primary-rgb), .15);
  padding: 3px 10px;
  border-radius: 6px;
}

/* ---------- PRODUCT OVERVIEW PAGES ---------- */
.breadcrumbs {
  padding: 120px 0 20px;
  background: var(--bg-0);
}

.bc-content {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  color: var(--text-4);
}

.bc-content a {
  color: var(--text-3);
  transition: color var(--transition);
}

.bc-content a:hover {
  color: var(--primary);
}

.bc-sep {
  opacity: 0.3;
}

.bc-current {
  color: var(--text-1);
  font-weight: 500;
}

.prod-hero {
  padding: 40px 0 80px;
  background: var(--bg-0);
  position: relative;
  overflow: hidden;
}

.prod-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 55% at 78% 18%, rgba(var(--primary-rgb), 0.08) 0%, transparent 65%),
    radial-gradient(ellipse 40% 35% at 5% 88%, rgba(var(--primary-rgb), 0.04) 0%, transparent 60%);
  pointer-events: none;
}

.prod-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(var(--primary-rgb), 0.1);
  border: 1px solid rgba(var(--primary-rgb), 0.25);
  padding: 5px 18px;
  border-radius: 100px;
  margin-bottom: 24px;
}

.prod-hero h1 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.12;
  color: var(--text-1);
  margin-bottom: 22px;
  max-width: 850px;
}

.prod-hero h1 em {
  font-style: normal;
  color: var(--primary);
}

.prod-hero-sub {
  font-size: 1.05rem;
  color: var(--text-3);
  line-height: 1.8;
  max-width: 750px;
}

.prod-main {
  padding: 0 0 100px;
  background: var(--bg-0);
}

.prod-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 32px;
}

.prod-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  height: 100%;
}

.prod-img-box {
  width: 100%;
  aspect-ratio: 4/3;
  background: var(--bg-2);
  position: relative;
  overflow: hidden;
  border-radius: 16px 16px 0 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: none;
}

.prod-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.prod-card:hover .prod-img-box img {
  transform: scale(1.06);
}

.prod-ph {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: linear-gradient(135deg, rgba(24, 24, 27, 0.9) 0%, rgba(var(--primary-rgb), 0.05) 100%);
  z-index: 1;
}

.prod-ph svg {
  color: var(--text-4);
  opacity: 0.3;
}

.prod-ph span {
  font-size: 0.7rem;
  color: var(--text-4);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.5;
}

.prod-content {
  padding: 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
  border-radius: 0 0 16px 16px;
}

.prod-content h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text-1);
  margin-bottom: 12px;
  transition: color var(--transition);
}

.prod-card:hover h3 {
  color: var(--primary);
}

.prod-subcats {
  font-size: 0.9rem;
  color: var(--text-3);
  line-height: 1.6;
  margin-bottom: 24px;
  flex: 1;
}

.sub-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.sub-tag {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-3);
  background: rgba(255, 255, 255, 0.05);
  padding: 4px 10px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.prod-link-wrap {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--primary);
}

.prod-link-wrap svg {
  transition: transform 0.3s ease;
}

.prod-card:hover .prod-link-wrap svg {
  transform: translateX(5px);
}

.coming-soon-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.03);
  border: 2px dashed rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  min-height: 380px;
  text-align: center;
  padding: 40px;
}

.cs-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  opacity: 0.5;
}

.cs-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-2);
  margin-bottom: 12px;
}

.cs-text {
  font-size: 0.95rem;
  color: var(--text-4);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .prod-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- SCROLL REVEAL ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1100px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 32px;
  }

  /* Stack: content first, visual below */
  .hero-content {
    order: 1;
  }

  .hero-visual {
    order: 2;
    height: auto;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  /* Center the badge */
  .hero-badge {
    margin-left: auto;
    margin-right: auto;
  }

  /* Center subtitle and remove desktop max-width constraint */
  .hero-subtitle {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-ctas {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  /* Hero visual video fills container and centers */
  .hero-visual-img {
    width: 100% !important;
    max-width: 480px;
    height: auto !important;
    margin: 0 auto;
    display: block;
  }

  .lift-scene {
    width: 200px;
    height: 240px;
    transform: scale(0.8);
  }

  .fc-left,
  .fc-right,
  .fc-bottom {
    display: none;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .public-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-logo-wrap {
    width: 160px;
    height: 160px;
  }

  .nav-links,
  .nav-actions {
    display: none;
  }

  .hamburger {
    display: flex;
  }
}

@media (max-width: 640px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }

  .emergency-inner {
    flex-direction: column;
    text-align: center;
  }

  /* Hero mobile — small phones */
  .hero {
    padding-top: 100px;
    padding-bottom: 60px;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-badge {
    font-size: 0.78rem;
    padding: 5px 14px;
  }

  .hero-visual {
    padding: 0 8px;
  }

  .hero-visual-img {
    max-width: 100% !important;
    border-radius: 10px !important;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .hero-ctas .btn-primary,
  .hero-ctas .btn-outline {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .fc-wrap {
    height: 340px;
  }

  .cta-actions {
    flex-direction: column;
    align-items: center;
  }

  .particle:nth-child(n+25) {
    display: none;
  }
}