/* ==========================================================================
   POWERSIGHT - 100% PIXEL-ACCURATE MOCKUP REBUILD DESIGN SYSTEM
   Palette:
     Crimson Red (#9C2327), Red Hover (#7E1B1F), Soft Red Tint (#FDF2F2),
     Dark Charcoal Background (#0D0E10 / #0E0F12), Soft Off-White (#F8F9FA),
     Pure Surface White (#FFFFFF), Border Neutral (#E5E7EB), Muted Text (#6B7280)
   Typography: Inter (Clean Modern Sans-Serif)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  --bg: #F8F9FA;
  --surface: #FFFFFF;
  --surface-dark: #0D0E10;
  --surface-dark-card: #15171C;
  --text: #111827;
  --text-muted: #6B7280;
  --muted: #6B7280;
  --accent: #9C2327;
  --accent-soft: #FDF2F2;
  --accent-hover: #7E1B1F;
  --border: #E5E7EB;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --shadow-sm: 0 4px 18px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 12px 32px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 20px 48px rgba(0, 0, 0, 0.12);
  --transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Base Reset */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: inherit;
}

html,
body {
  width: 100% !important;
  max-width: 100vw !important;
  overflow-x: hidden !important;
  position: relative;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
  font-size: 16px;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-family);
  line-height: 1.6;
  font-size: 15.5px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

button,
input,
textarea,
select {
  font-family: var(--font-family);
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

img {
  max-width: 100%;
  display: block;
}

.wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-family);
  letter-spacing: -0.02em;
  color: var(--text);
}

.eyebrow {
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  display: inline-block;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  border: 1.5px solid transparent;
  white-space: nowrap;
}

.btn-solid {
  background: var(--accent);
  color: #FFFFFF;
}

.btn-solid:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(156, 35, 39, 0.35);
}

.btn-line {
  background: transparent;
  color: #FFFFFF;
  border-color: rgba(255, 255, 255, 0.3);
}

.btn-line:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #FFFFFF;
  color: #FFFFFF;
}

/* ===== 1. TOP ANNOUNCEMENT BAR ===== */
.top-bar {
  background: #0D0E10;
  color: #D1D5DB;
  font-size: 12.5px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  width: 100%;
}

.top-bar .wrap,
.top-bar-inner-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 8px 24px;
  box-sizing: border-box;
}

.top-bar-left {
  display: flex;
  align-items: center;
  gap: 12px;
  overflow: hidden;
  max-width: none;
  flex: 1;
  margin-right: 20px;
}

.top-ticker-wrapper {
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  width: 100%;
  mask-image: linear-gradient(90deg, transparent 0%, #000 4%, #000 96%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 4%, #000 96%, transparent 100%);
}

.top-ticker-track {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  white-space: nowrap;
  animation: topTickerScroll 18s linear infinite;
  will-change: transform;
}

.top-bar:hover .top-ticker-track {
  animation-play-state: paused;
}

.top-ticker-link {
  color: #FFFFFF;
  font-weight: 600;
  font-size: 12.5px;
  text-decoration: none;
  transition: color 0.2s ease;
}

.top-ticker-link:hover {
  color: #E63946;
  text-decoration: underline;
}

.top-ticker-sep {
  color: #9C2327;
  font-weight: 700;
  font-size: 14px;
}

@keyframes topTickerScroll {
  0% {
    transform: translateX(0);
  }

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

.badge-red {
  background: var(--accent);
  color: #FFFFFF;
  font-size: 10px;
  font-weight: 800;
  padding: 2px 7px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  flex-shrink: 0;
}

.top-bar-right {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-shrink: 0;
}

.top-bar-right a:hover {
  color: #FFFFFF;
}

/* ===== 2. HEADER NAVBAR ===== */
header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: #FFFFFF;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

nav.wrap,
.nav-inner-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 48px;
  height: 80px;
}

.brand img {
  height: 30px;
  width: auto;
  object-fit: contain;
  transition: transform 0.2s ease;
}

.brand img:hover {
  transform: scale(1.03);
}

.mobile-menu-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 8px 10px;
  color: #111827;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.mobile-menu-toggle:hover {
  background: var(--accent-soft);
  color: var(--accent);
  border-color: var(--accent);
}

.mobile-quote-item {
  display: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  list-style: none;
  font-size: 14px;
  font-weight: 600;
}

.nav-item {
  position: relative;
  padding: 10px 0;
}

.nav-item a {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: #1F2937;
}

.nav-item:hover>a {
  color: var(--accent);
}

.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  background: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.12);
  padding: 8px 0;
  display: none;
  flex-direction: column;
  z-index: 300;
}

@media (min-width: 993px) {
  .nav-item:hover>.dropdown {
    display: flex;
  }
}

.dropdown a {
  padding: 10px 22px;
  font-size: 14px;
  color: #1F2937;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.2s ease;
}

.dropdown a:hover {
  background: rgba(156, 35, 39, 0.08);
  color: #9C2327;
  padding-left: 26px;
}

/* ===== 3. HERO SECTION (DARK WITH AUTO ROTATING BACKGROUND CAROUSEL) ===== */
.hero {
  position: relative;
  padding: 84px 0 84px;
  background: #0D0E10;
  color: #FFFFFF;
  overflow: hidden;
}

.hero-bg-carousel {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.hero-bg-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.06);
  transition: opacity 1.5s ease-in-out, transform 8s linear;
}

.hero-bg-slide.active {
  opacity: 0.42;
  transform: scale(1.0);
}

.hero-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 70% 40%, rgba(156, 35, 39, 0.25) 0%, transparent 65%),
    linear-gradient(180deg, rgba(13, 14, 16, 0.72) 0%, rgba(13, 14, 16, 0.88) 100%);
  z-index: 2;
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.hero-badge-pill {
  display: inline-block;
  background: var(--accent);
  color: #FFFFFF;
  font-size: 11px;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.hero h1 {
  font-size: 44px;
  font-weight: 800;
  line-height: 1.15;
  color: #FFFFFF;
  margin-bottom: 18px;
  letter-spacing: -0.03em;
}

.hero p.lede {
  color: #9CA3AF;
  font-size: 16.5px;
  line-height: 1.6;
  max-width: 480px;
  margin-bottom: 32px;
}

.hero-cta {
  display: flex;
  gap: 14px;
  margin-bottom: 40px;
}

.hero-stats-row {
  display: flex;
  gap: 16px;
}

.hero-stat-card {
  flex: 1;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-stat-icon {
  width: 24px;
  height: 24px;
  color: var(--accent);
  flex-shrink: 0;
}

.us-flag-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.4);
}

.hero-stat-icon-shield {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.hero-stat-card .n {
  font-size: 16px;
  font-weight: 800;
  color: #FFFFFF;
  display: block;
  line-height: 1.2;
}

.hero-stat-card .l {
  font-size: 11.5px;
  color: #9CA3AF;
}

.hero-visual-pedestal {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero-visual-pedestal img {
  max-width: 82%;
  height: 280px;
  object-fit: contain;
  filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.6));
  z-index: 2;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.hero-visual-pedestal:hover img {
  transform: translateY(-6px) scale(1.02);
}

.pedestal-base {
  width: 78%;
  height: 38px;
  background: radial-gradient(ellipse at center, rgba(156, 35, 39, 0.6) 0%, rgba(30, 32, 38, 0.9) 60%, transparent 100%);
  border-radius: 50%;
  margin-top: -24px;
  box-shadow: 0 0 35px rgba(156, 35, 39, 0.5);
  border-top: 1px solid rgba(156, 35, 39, 0.5);
}

/* --- HERO RIGHT COLUMN: REQUEST A QUOTE FORM CARD --- */
.hero-form-card {
  background: rgba(13, 14, 16, 0.92);
  border: 1.5px solid #9C2327;
  border-radius: 16px;
  padding: 28px 24px;
  backdrop-filter: blur(16px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5), 0 0 30px rgba(156, 35, 39, 0.25);
  width: 100%;
  max-width: 410px;
  margin-left: auto;
  position: relative;
  z-index: 5;
}

.hero-form-accent-line {
  width: 36px;
  height: 3px;
  background: #E63946;
  border-radius: 2px;
  margin-bottom: 12px;
}

.hero-form-card h2 {
  font-size: 26px;
  font-weight: 800;
  color: #FFFFFF;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-form-card h2 .text-red {
  color: #E63946;
}

.hero-input-group {
  position: relative;
  margin-bottom: 14px;
}

.hero-input-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  color: #9CA3AF;
  pointer-events: none;
  transition: color 0.2s ease;
}

.hero-input-group input,
.hero-input-group select {
  width: 100%;
  height: 46px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  padding: 0 14px 0 42px;
  font-size: 14px;
  color: #FFFFFF;
  outline: none;
  transition: all 0.2s ease;
  -webkit-appearance: none;
  appearance: none;
}

.hero-input-group select {
  cursor: pointer;
  padding-right: 36px;
}

.hero-input-group select option {
  background: #15171C;
  color: #FFFFFF;
}

.hero-select-chevron {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  color: #9CA3AF;
  pointer-events: none;
}

.hero-input-group input::placeholder {
  color: #9CA3AF;
}

.hero-input-group input:focus,
.hero-input-group select:focus {
  border-color: #E63946;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 12px rgba(230, 57, 70, 0.3);
}

.btn-hero-form-submit {
  width: 100%;
  height: 48px;
  background: #9C2327;
  color: #FFFFFF;
  font-size: 15px;
  font-weight: 800;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.25s ease;
  margin-top: 6px;
  box-shadow: 0 4px 16px rgba(156, 35, 39, 0.35);
}

.btn-hero-form-submit:hover {
  background: #7E1B1F;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(156, 35, 39, 0.5);
}

.hero-form-secondary {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 12px 14px;
  margin-top: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-doc-icon {
  width: 22px;
  height: 22px;
  color: #E63946;
  flex-shrink: 0;
}

.hero-form-secondary .sec-label {
  display: block;
  font-size: 12.5px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 2px;
}

.hero-form-secondary .sec-action {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: #E63946;
  text-decoration: none;
  transition: color 0.2s ease;
}

.hero-form-secondary .sec-action:hover {
  color: #FFFFFF;
  text-decoration: underline;
}

/* ===== 4. CLIENT MARQUEE (ENLARGED PROMINENT BRAND SECTION) ===== */
.trust {
  background: #FFFFFF;
  border-bottom: 1px solid var(--border);
  padding: 56px 0 48px;
  overflow: hidden;
}

.trust-label {
  font-size: 13.5px;
  color: #374151;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 800;
  margin-bottom: 30px;
  text-align: center;
}

.marquee-track {
  display: flex;
  overflow: hidden;
  gap: 60px;
  width: 100%;
  mask-image: linear-gradient(to right, transparent, black 4%, black 96%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 4%, black 96%, transparent);
}

.marquee-content {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 60px;
  animation: scrollInfiniteMarquee 24s linear infinite;
}

.marquee-content img {
  height: 56px;
  width: auto;
  max-width: 190px;
  object-fit: contain;
  opacity: 1;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.05));
  transition: transform 0.25s ease;
}

.marquee-content img:hover {
  transform: scale(1.12);
}

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

  to {
    transform: translateX(calc(-100% - 48px));
  }
}

/* ===== 5. SHOP BY CATEGORY (FULL-WIDTH ENLARGED CATEGORY SECTION) ===== */
.category-section {
  padding: 84px 0;
  background: #F8F9FA;
}

.cat-inner-wrap {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 48px;
}

.category-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 36px;
}

.category-header h2 {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #111827;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 22px;
}

.cat-card {
  background: #FFFFFF;
  border: 1.5px solid var(--border);
  border-radius: 14px;
  padding: 28px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.cat-card:hover {
  transform: translateY(-6px);
  border-color: #9C2327;
  box-shadow: 0 12px 30px rgba(156, 35, 39, 0.12);
}

.cat-thumb {
  height: 145px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  width: 100%;
}

.cat-thumb img {
  max-height: 135px;
  max-width: 100%;
  object-fit: contain;
  transition: transform 0.35s ease;
}

.cat-card:hover .cat-thumb img {
  transform: scale(1.08);
}

.cat-card h3 {
  font-size: 16.5px;
  font-weight: 800;
  color: #111827;
  margin-bottom: 6px;
  line-height: 1.3;
}

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

/* ===== 6. PORTABILITY SECTION (MATCHING EXACT REFERENCE MOCKUP) ===== */
.features-dark-section {
  padding: 88px 0;
  background: linear-gradient(180deg, rgba(10, 11, 13, 0.70) 0%, rgba(10, 11, 13, 0.64) 100%),
    url('../images/banner.jpg');
  background-size: cover;
  background-position: center;
  color: #FFFFFF;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
}

.features-dark-inner-wrap {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 48px;
}

.features-dark-grid {
  display: grid;
  grid-template-columns: 1.3fr 1.0fr 1.25fr;
  gap: 36px;
  align-items: center;
}

.portability-tag {
  display: inline-block;
  color: #FF4D4D;
  background: rgba(156, 35, 39, 0.25);
  border: 1px solid rgba(255, 77, 77, 0.3);
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.features-left h2 {
  font-size: 32px;
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.2;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}

.features-left p {
  color: #9CA3AF;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 24px;
  max-width: 520px;
}

.portability-cards-row {
  display: flex;
  gap: 14px;
}

.port-card {
  flex: 1;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.port-card:hover {
  border-color: #9C2327;
  transform: translateY(-2px);
}

.port-card .v {
  font-size: 18px;
  font-weight: 800;
  color: #FF4D4D;
  line-height: 1.2;
}

.port-card .l {
  font-size: 12px;
  color: #D1D5DB;
}

.comparison-box {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 14px;
  padding: 26px;
  text-align: center;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.comparison-box img {
  max-height: 220px;
  margin: 0 auto;
  object-fit: contain;
}

.badge-1-4 {
  background: var(--accent);
  color: #FFFFFF;
  font-size: 13px;
  font-weight: 800;
  padding: 6px 14px;
  border-radius: 20px;
  display: inline-block;
  margin-top: 14px;
}

.trust-certificates-wrapper {
  padding-top: 0;
  border-top: none;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.trust-certificates-img {
  width: 100%;
  height: auto;
  max-height: 240px;
  object-fit: contain;
  filter: drop-shadow(0 8px 26px rgba(0, 0, 0, 0.65));
  transition: transform 0.25s ease;
}

.trust-certificates-img:hover {
  transform: scale(1.05);
}

/* ===== 7. DEALS SHOWCASE / PRODUCTS SECTION (MATCHING USER EXACT HTML & CSS SNIPPET) ===== */
.deals-showcase {
  padding: 80px 0;
  background: #F8F9FA;
  border-top: 1px solid #E5E7EB;
  border-bottom: 1px solid #E5E7EB;
  color: #111827;
}

.deals-title-group h2 {
  font-size: 26px;
  font-weight: 800;
  color: #111827;
}

.deals-nav-arrows button {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid #E5E7EB;
  background: #FFFFFF;
  color: #374151;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

.deals-nav-arrows button:hover {
  border-color: #9C2327;
  color: #9C2327;
}

.deals-inner-wrap {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 48px;
}

.deals-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
}

.deals-title-group {
  display: flex;
  align-items: center;
  gap: 16px;
}

.deals-title-group h2 {
  font-size: 26px;
  font-weight: 800;
  color: #111827;
}

.deals-nav-arrows {
  display: flex;
  gap: 8px;
}

.deals-nav-arrows button {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid #E5E7EB;
  background: #FFFFFF;
  color: #374151;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

.deals-nav-arrows button:hover {
  border-color: #9C2327;
  color: #9C2327;
}

.deals-tabs {
  display: flex;
  gap: 22px;
}

.deals-tab-btn {
  font-size: 15px;
  font-weight: 700;
  color: #6B7280;
  background: transparent;
  border: none;
  padding-bottom: 6px;
  cursor: pointer;
  position: relative;
  transition: var(--transition);
}

.deals-tab-btn.active {
  color: #111827;
}

.deals-tab-btn.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: #9C2327;
  border-radius: 2px;
}

.deals-grid-layout {
  display: grid;
  grid-template-columns: 1fr 3.1fr;
  gap: 20px;
  align-items: stretch;
}

.deal-focus-card {
  background: #FFFFFF;
  border: 2px solid #9C2327;
  border-radius: 12px;
  padding: 20px 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 8px 24px rgba(156, 35, 39, 0.12);
  margin-top: 14px;
  margin-bottom: 16px;
}

.prod-badge {
  background: #111827;
  color: #FFFFFF;
  font-size: 10px;
  font-weight: 800;
  padding: 4px 9px;
  border-radius: 4px;
  letter-spacing: 0.05em;
  display: inline-block;
}

.eq-focus-thumb {
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #F8F9FA;
  border-radius: 8px;
  padding: 0;
  overflow: hidden;
  margin: 14px 0 12px;
  width: 100%;
}

.eq-focus-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain !important;
  object-position: center !important;
  display: block;
  padding: 6px;
}

.eq-focus-title {
  font-size: 13.5px;
  font-weight: 700;
  color: #9C2327;
  line-height: 1.35;
  margin-bottom: 4px;
}

.price-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 8px 0 10px;
}

.price-save {
  background: rgba(156, 35, 39, 0.1);
  color: #9C2327;
  font-weight: 700;
  font-size: 11px;
  padding: 3px 8px;
  border-radius: 4px;
}

.price-now {
  font-size: 15px;
  font-weight: 800;
  color: #9C2327;
}

.price-was {
  font-size: 12px;
  color: #9CA3AF;
  text-decoration: line-through;
}

.focus-desc {
  font-size: 12px;
  color: #6B7280;
  line-height: 1.4;
  margin-bottom: 14px;
}

.deals-products-grid {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding: 14px 4px 16px;
}

.deals-products-grid::-webkit-scrollbar {
  display: none;
}

.deal-card {
  flex: 0 0 calc((100% - 40px) / 3);
  min-width: 200px;
  background: #FFFFFF;
  border: 1.5px solid #E5E7EB;
  border-radius: 12px;
  padding: 20px 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  transition: all 0.25s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
  cursor: pointer;
  text-align: left;
}

.deal-card.active,
.deal-card:hover {
  border-color: #9C2327;
  box-shadow: 0 8px 24px rgba(156, 35, 39, 0.12);
  transform: translateY(-3px);
}

.deal-card .prod-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: #111827;
  color: #FFFFFF;
  font-size: 10px;
  font-weight: 800;
  padding: 4px 9px;
  border-radius: 4px;
  letter-spacing: 0.05em;
}

.deal-card-thumb {
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 22px;
  margin-bottom: 14px;
  background: #F8F9FA;
  border-radius: 8px;
  padding: 0;
  overflow: hidden;
  width: 100%;
}

.deal-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain !important;
  object-position: center !important;
  display: block;
  padding: 6px;
}

.deal-card .prod-brand {
  font-size: 10.5px;
  font-weight: 700;
  color: #9CA3AF;
  letter-spacing: 0.06em;
  margin-bottom: 4px;
  text-transform: uppercase;
}

.deal-card .prod-title {
  font-size: 13.5px;
  font-weight: 700;
  color: #9C2327;
  line-height: 1.35;
  margin-bottom: 6px;
  text-decoration: none;
  display: block;
}

.deal-card .prod-subtitle {
  font-size: 12.5px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 6px;
  line-height: 1.3;
}

.deal-card .prod-desc {
  font-size: 12px;
  color: #6B7280;
  line-height: 1.4;
  margin-bottom: 16px;
}

.deal-card .prod-bottom-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 12px;
  border-top: 1px dashed #E5E7EB;
}

.deal-card .prod-prices {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.deal-card .prod-price-now {
  font-size: 15px;
  font-weight: 800;
  color: #9C2327;
}

.deal-card .prod-price-was {
  font-size: 12px;
  color: #9CA3AF;
  text-decoration: line-through;
}

.btn-view-prod {
  background: #9C2327;
  color: #FFFFFF;
  font-size: 11.5px;
  font-weight: 700;
  padding: 7px 14px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: var(--transition);
}

.btn-view-prod:hover {
  background: #7E1B1F;
}

/* ===== 8. CALCULATE YOUR ENERGY SAVINGS ===== */
.roi-section {
  padding: 80px 0;
  background: #F8F9FA;
}

.roi-container {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 36px;
  align-items: center;
}

.roi-left h2 {
  font-size: 20px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.roi-left p {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 24px;
}

.facility-buttons {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.facility-btn {
  padding: 8px 16px;
  border-radius: 6px;
  border: 1px solid var(--border);
  background: #FFFFFF;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.facility-btn.active {
  background: var(--accent);
  color: #FFFFFF;
  border-color: var(--accent);
}

.bill-input-group {
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 380px;
}

.bill-input-group span {
  font-weight: 700;
  color: var(--muted);
}

.bill-input-group input {
  border: none;
  outline: none;
  font-size: 16px;
  font-weight: 700;
  width: 100%;
}

.roi-dark-box {
  background: #0E0F12;
  color: #FFFFFF;
  border-radius: 12px;
  padding: 36px;
  text-align: center;
}

.roi-dark-box .lbl {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #9CA3AF;
  text-transform: uppercase;
}

.roi-dark-box .amount {
  font-size: 46px;
  font-weight: 800;
  color: #10B981;
  margin: 10px 0 12px;
  line-height: 1;
}

.roi-dark-box .subtext {
  font-size: 13px;
  color: #9CA3AF;
}

/* ===== 9. OUR DESIGN PHILOSOPHY ===== */
/* ===== 9. OUR DESIGN PHILOSOPHY (ELEVATED CARD LAYOUT & REFINED UI) ===== */
.philosophy-section {
  width: 100%;
  padding: 96px 0;
  background: linear-gradient(180deg, #F8FAFC 0%, #FFFFFF 100%);
  border-top: 1px solid #E2E8F0;
  border-bottom: 1px solid #E2E8F0;
  text-align: center;
}

.phil-inner-wrap {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 48px;
}

.philosophy-header {
  margin-bottom: 56px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.philosophy-header .eyebrow-red {
  display: inline-block;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: #9C2327;
  text-transform: uppercase;
  background: rgba(156, 35, 39, 0.08);
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 14px;
}

.philosophy-header h2 {
  font-family: Georgia, serif;
  font-size: 40px;
  font-weight: 600;
  color: #111827;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}

.philosophy-subtitle {
  font-size: 16px;
  color: #6B7280;
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.6;
}

.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  align-items: stretch;
}

.phil-card {
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 36px 28px 32px;
  position: relative;
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.phil-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: #E5E7EB;
  transition: background 0.35s ease;
}

.phil-card:hover {
  transform: translateY(-8px);
  border-color: rgba(156, 35, 39, 0.3);
  box-shadow: 0 20px 40px rgba(156, 35, 39, 0.12);
}

.phil-card:hover::before {
  background: linear-gradient(90deg, #9C2327 0%, #DC2626 100%);
}

.phil-card-top {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 20px;
}

.phil-pill-badge {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: #9C2327;
  text-transform: uppercase;
  background: #FEE2E2;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 20px;
}

.phil-img-wrap {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: linear-gradient(135deg, #FFF5F5 0%, #FAFAFA 100%);
  border: 1px solid #F3D0D1;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 2px 4px rgba(255, 255, 255, 0.8), 0 6px 16px rgba(156, 35, 39, 0.08);
  transition: all 0.35s ease;
}

.phil-img-wrap img {
  max-height: 80px;
  width: auto;
  object-fit: contain;
  transition: transform 0.35s ease;
}

.phil-card:hover .phil-img-wrap {
  background: linear-gradient(135deg, #FEE2E2 0%, #FFF5F5 100%);
  border-color: #9C2327;
  transform: scale(1.05);
  box-shadow: 0 10px 24px rgba(156, 35, 39, 0.15);
}

.phil-card:hover .phil-img-wrap img {
  transform: scale(1.12);
}

.phil-card h3 {
  font-size: 24px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
  transition: color 0.3s ease;
}

.phil-card:hover h3 {
  color: #9C2327;
}

.phil-card p {
  font-size: 14.5px;
  color: #4B5563;
  line-height: 1.6;
  max-width: 320px;
  margin: 0 0 24px;
}

.phil-tags-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 28px;
  width: 100%;
}

.phil-tag {
  font-size: 12px;
  font-weight: 600;
  color: #374151;
  background: #F3F4F6;
  border: 1px solid #E5E7EB;
  padding: 4px 10px;
  border-radius: 6px;
  transition: all 0.25s ease;
}

.phil-card:hover .phil-tag {
  background: #FEF2F2;
  color: #9C2327;
  border-color: #FCA5A5;
}

.btn-phil-red {
  margin-top: auto;
  background: #9C2327;
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 700;
  padding: 12px 28px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.3s ease;
  letter-spacing: 0.03em;
  width: 100%;
  max-width: 220px;
  box-shadow: 0 4px 12px rgba(156, 35, 39, 0.2);
}

.btn-phil-red svg {
  transition: transform 0.3s ease;
}

.btn-phil-red:hover {
  background: #7E1B1F;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(156, 35, 39, 0.35);
}

.btn-phil-red:hover svg {
  transform: translateX(4px);
}

/* ===== 10. ENGINEERING TESTIMONIALS ===== */
.testimonials-section {
  padding: 80px 0;
  background: #FFFFFF;
  color: #111827;
  text-align: center;
  border-top: 1px solid #E5E7EB;
  border-bottom: 1px solid #E5E7EB;
}

.testi-eyebrow {
  color: #9C2327;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 10px;
}

.testimonials-section h2 {
  font-size: 32px;
  font-weight: 800;
  color: #111827;
  margin-bottom: 32px;
}

.testi-card-container {
  max-width: 760px;
  margin: 0 auto;
  position: relative;
  padding: 0 40px;
}

.testi-arrow-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #E5E7EB;
  background: #FFFFFF;
  color: #111827;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.testi-arrow-btn.prev {
  left: -10px;
}

.testi-arrow-btn.next {
  right: -10px;
}

.testi-arrow-btn:hover {
  border-color: #9C2327;
  color: #9C2327;
}

.testi-quote-box {
  background: #F8F9FA;
  border: 1px solid #E5E7EB;
  border-radius: 12px;
  padding: 36px 44px;
  transition: opacity 0.35s ease, transform 0.35s ease;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}

.gold-stars {
  color: #E63946;
  font-size: 15px;
  letter-spacing: 4px;
  margin-bottom: 18px;
}

.testi-text {
  font-size: 17px;
  line-height: 1.65;
  color: #111827;
  font-weight: 500;
  margin-bottom: 24px;
}

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

.testi-avatar-img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #9C2327;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.testi-author-info {
  text-align: left;
}

.testi-author-info h4 {
  font-size: 14.5px;
  font-weight: 800;
  color: #111827;
}

.testi-author-info p {
  font-size: 12px;
  color: #6B7280;
}

/* Carousel Dot Navigation Indicators */
.gold-testi-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
}

.gold-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid #111827;
  background: transparent;
  cursor: pointer;
  transition: all 0.25s ease;
}

.gold-dot:hover {
  border-color: #9C2327;
  transform: scale(1.2);
}

.gold-dot.active {
  width: 14px;
  height: 14px;
  background: #9C2327;
  border-color: #9C2327;
  box-shadow: 0 0 10px rgba(156, 35, 39, 0.4);
  transform: scale(1.15);
}

/* ===== 11. WE'LL TAKE CARE OF YOU ===== */
/* ===== 11. WE'LL TAKE CARE OF YOU (FULL VIEWPORT WIDTH BANNER - MATCHING IMAGE 2) ===== */
.cta-full-banner {
  width: 100%;
  padding: 84px 0;
  background: linear-gradient(90deg, rgba(10, 11, 13, 0.88) 0%, rgba(10, 11, 13, 0.68) 50%, rgba(10, 11, 13, 0.82) 100%),
    url('../images/Comm1.jpg') center/cover no-repeat fixed;
  background-attachment: fixed;
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
}

.cta-banner-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 60px;
}

.cta-banner-left {
  max-width: 520px;
}

.cta-banner-left h2 {
  font-size: 32px;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}

.cta-banner-left p {
  color: #D1D5DB;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 26px;
}

.cta-banner-right-card {
  background: rgba(18, 20, 24, 0.90);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 32px 28px;
  width: 320px;
  text-align: center;
  backdrop-filter: blur(10px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
  flex-shrink: 0;
}

.cta-banner-right-card h3 {
  font-size: 20px;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 6px;
  letter-spacing: 0.04em;
}

.cta-banner-right-card p {
  font-size: 13px;
  color: #9CA3AF;
  margin-bottom: 20px;
}

.cta-phone-line {
  font-size: 13px;
  color: #D1D5DB;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

/* ===== 12. FAQ SECTION (SINGLE COLUMN VERTICAL ACCORDION) ===== */
.faq-section {
  padding: 80px 0;
  background: #FFFFFF;
}

.faq-header {
  margin-bottom: 36px;
}

.faq-header h2 {
  font-size: 20px;
  font-weight: 800;
  text-transform: uppercase;
}

.faq-list-single {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
}

.faq-card {
  background: #F8F9FA;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 20px 24px;
  cursor: pointer;
  transition: var(--transition);
}

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

.faq-card-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
  font-size: 15px;
  color: #111827;
}

.faq-card-head .plus {
  color: var(--accent);
  font-size: 22px;
  font-weight: 800;
  line-height: 1;
}

.faq-card-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1), margin-top 0.25s ease;
  font-size: 14px;
  color: #4B5563;
  line-height: 1.6;
}

.faq-card.open .faq-card-body {
  margin-top: 12px;
}

/* ===== 13. FLOATING CHAT BUTTON ===== */
.floating-red-chat-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--accent);
  color: #FFFFFF;
  border: none;
  box-shadow: 0 8px 24px rgba(156, 35, 39, 0.4);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  transition: var(--transition);
}

.floating-red-chat-btn:hover {
  transform: scale(1.1);
  background: var(--accent-hover);
}

/* ===== 14. FOOTER ===== */
.site-footer {
  background: #0B0C0E;
  color: #E2E8F0;
  padding: 64px 0 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-5col-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(5, 1fr);
  gap: 24px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-logo img {
  height: 48px;
  margin-bottom: 14px;
}

.footer-desc {
  font-size: 12.5px;
  color: #9CA3AF;
  line-height: 1.5;
  margin-bottom: 14px;
}

.footer-phone {
  font-size: 13px;
  color: var(--accent);
  font-weight: 700;
}

.footer-col h4 {
  font-size: 12px;
  font-weight: 800;
  color: #FFFFFF;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 8px;
}

.footer-col a {
  font-size: 12.5px;
  color: #9CA3AF;
  transition: color 0.2s ease;
}

.footer-col a:hover {
  color: #FFFFFF;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 24px;
  font-size: 11.5px;
  color: #6B7280;
}

.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-bottom-links a {
  color: #9CA3AF;
  transition: color 0.2s ease;
}

.footer-bottom-links a:hover {
  color: #FFFFFF;
}

.footer-bottom-links .sep {
  color: rgba(255, 255, 255, 0.2);
}

/* ===== MODAL ===== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(13, 14, 16, 0.8);
  backdrop-filter: blur(6px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-card {
  background: #FFFFFF;
  border-radius: 12px;
  padding: 32px;
  max-width: 500px;
  width: 90%;
  position: relative;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: transparent;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #9CA3AF;
}

.form-group {
  margin-bottom: 14px;
}

.form-group label {
  font-size: 13px;
  font-weight: 600;
  display: block;
  margin-bottom: 4px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 6px;
  border: 1px solid var(--border);
  font-size: 14px;
}

/* ===== 15. COMPLETE COMPREHENSIVE RESPONSIVE DESIGN ===== */
@media (max-width: 1280px) {

  .nav-inner-wrap,
  .cat-inner-wrap,
  .features-dark-inner-wrap,
  .deals-inner-wrap,
  .phil-inner-wrap,
  .cta-banner-inner {
    max-width: 100%;
    padding-left: 32px;
    padding-right: 32px;
  }

  .category-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }

  .features-dark-grid {
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 28px;
  }
}

@media (max-width: 1024px) {
  .nav-links {
    gap: 16px;
    font-size: 13px;
  }

  .deals-grid-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .deal-focus-card {
    margin-top: 0;
  }

  .features-dark-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }

  .features-left p {
    margin-left: auto;
    margin-right: auto;
  }

  .portability-cards-row {
    justify-content: center;
  }

  .trust-certificates-wrapper {
    justify-content: center;
  }

  .trust-certificates-img {
    max-height: 180px;
  }
}

@media (max-width: 992px) {
  .top-bar-inner-wrap {
    flex-direction: column;
    gap: 6px;
    text-align: center;
    padding: 10px 20px;
  }

  .nav-inner-wrap {
    padding-left: 20px;
    padding-right: 20px;
    position: relative;
    height: 72px;
  }

  .brand img {
    height: 30px;
  }

  .nav-right {
    display: flex;
    align-items: center;
    gap: 8px;
  }

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

  .desktop-quote-btn {
    display: inline-flex !important;
    padding: 7px 12px !important;
    font-size: 11.5px !important;
    font-weight: 800;
    white-space: nowrap;
    border-radius: 6px;
  }

  .mobile-quote-item {
    display: none;
  }

  .nav-links {
    position: absolute;
    top: 76px;
    left: 0;
    width: 100%;
    background: #FFFFFF;
    border-bottom: 3px solid var(--accent);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 24px;
    gap: 12px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transition: max-height 0.35s ease-in-out, opacity 0.3s ease-in-out;
    z-index: 300;
  }

  .nav-links.active {
    max-height: 560px;
    opacity: 1;
    pointer-events: auto;
    overflow-y: auto;
  }

  .nav-item {
    width: 100%;
    padding: 6px 0;
  }

  .nav-item a {
    font-size: 15px;
    font-weight: 700;
    justify-content: space-between;
    width: 100%;
  }

  .dropdown {
    position: static;
    box-shadow: none;
    border: none;
    background: #F9FAFB;
    border-radius: 8px;
    margin-top: 6px;
    padding: 8px 14px;
    display: none !important;
    flex-direction: column;
    width: 100%;
  }

  .dropdown a {
    color: #1F2937;
    padding: 9px 12px;
  }

  .nav-item.open>.dropdown {
    display: flex !important;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .hero p.lede {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-cta {
    justify-content: center;
  }

  .hero-form-card {
    margin: 0 auto;
    max-width: 100%;
  }

  .hero-stats-row {
    flex-direction: column;
    gap: 12px;
  }

  .hero-visual-pedestal img {
    max-width: 85%;
    height: auto;
    max-height: 250px;
  }

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

  .cta-banner-inner {
    flex-direction: column;
    gap: 32px;
    text-align: center;
  }

  .cta-banner-left p {
    margin-left: auto;
    margin-right: auto;
  }

  .cta-banner-right-card {
    width: 100%;
    max-width: 440px;
    margin: 0 auto;
  }

  .footer-5col-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }
}

@media (max-width: 640px) {
  .category-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .cat-card {
    padding: 20px 14px;
  }

  .cat-thumb {
    height: 110px;
  }

  .cat-thumb img {
    max-height: 100px;
  }

  .hero h1 {
    font-size: 30px;
  }

  .hero-cta {
    flex-direction: column;
    width: 100%;
  }

  .hero-cta .btn {
    width: 100%;
    justify-content: center;
  }

  .portability-cards-row {
    flex-direction: column;
    gap: 10px;
  }

  .footer-5col-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .footer-bottom-links {
    flex-wrap: wrap;
    justify-content: center;
  }

  .testi-quote-box {
    padding: 24px 20px;
  }

  .testi-card-container {
    padding: 0 20px;
  }
}

@media (max-width: 430px) {

  html,
  body {
    overflow-x: hidden !important;
    max-width: 100vw !important;
    width: 100% !important;
  }

  .wrap,
  .nav-inner-wrap,
  .cat-inner-wrap,
  .features-dark-inner-wrap,
  .deals-inner-wrap,
  .phil-inner-wrap,
  .cta-banner-inner {
    padding-left: 14px !important;
    padding-right: 14px !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .brand img {
    height: 30px;
    max-width: 130px;
    object-fit: contain;
  }

  .top-bar-inner-wrap {
    padding: 8px 10px;
    font-size: 11px;
  }

  .top-bar-left,
  .top-bar-right {
    justify-content: center;
    flex-wrap: wrap;
    gap: 4px;
  }

  .hero {
    padding: 32px 0 40px;
  }

  .hero h1 {
    font-size: 22px !important;
    line-height: 1.25;
    word-break: break-word;
  }

  .hero p.lede {
    font-size: 13px !important;
    line-height: 1.45;
  }

  .hero-cta {
    flex-direction: column !important;
    width: 100% !important;
    gap: 10px !important;
  }

  .hero-cta .btn {
    width: 100% !important;
    justify-content: center !important;
    text-align: center;
    box-sizing: border-box;
  }

  .hero-stats-row {
    flex-direction: column !important;
    width: 100% !important;
    gap: 10px !important;
  }

  .hero-stat-card {
    width: 100% !important;
    box-sizing: border-box;
  }

  .hero-visual-pedestal img {
    max-width: 100%;
    max-height: 180px;
  }

  .category-grid,
  .footer-5col-grid,
  .philosophy-grid {
    grid-template-columns: 1fr !important;
  }

  /* Products Section Mobile-Only Responsive Rules (320px - 430px) */
  .deals-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .deals-title-group {
    width: 100%;
    justify-content: space-between;
  }

  .deals-tabs {
    width: 100%;
    overflow-x: auto;
    white-space: nowrap;
    gap: 12px;
  }

  .deals-grid-layout {
    grid-template-columns: 1fr !important;
    width: 100% !important;
    gap: 20px;
    align-items: start !important;
  }

  .deal-focus-card {
    width: 100% !important;
    box-sizing: border-box !important;
    padding: 16px !important;
    margin-top: 0;
    margin-bottom: 0;
    height: auto !important;
  }

  .eq-focus-thumb {
    height: 140px !important;
  }

  .deals-products-grid {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    gap: 16px !important;
    overflow-x: hidden !important;
    padding: 0 !important;
  }

  .deal-card {
    flex: 0 0 auto !important;
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
    height: auto !important;
    box-sizing: border-box !important;
    padding: 16px !important;
    justify-content: flex-start !important;
  }

  .deal-card-thumb {
    height: 130px !important;
    margin-top: 18px !important;
    margin-bottom: 10px !important;
  }

  .deal-card-thumb img,
  .eq-focus-thumb img {
    width: 100% !important;
    height: 100% !important;
    max-height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
  }

  .deal-card .prod-desc {
    margin-bottom: 12px !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
  }

  .deal-card .prod-bottom-row {
    margin-top: auto !important;
    padding-top: 10px !important;
  }

  .cta-banner-right-card {
    width: 100%;
    box-sizing: border-box;
  }
}

/* ==========================================================================
   NEW SECTIONS: RED, BLACK & WHITE THEME
   1. Interactive Product Showcase Dock Section
   2. Industries Section ("WHERE IT'S USED")
   3. Rent or Buy Section & Interactive Calculator
   ========================================================================== */

/* Eyebrow helpers */
.eyebrow-red {
  color: #9C2327;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 8px;
}

.eyebrow-red-dark {
  color: #E63946;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.eyebrow-red-dark::before {
  content: '';
  width: 24px;
  height: 2px;
  background: #E63946;
}

.section-head-center {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 40px;
}

.section-head-center h2 {
  font-size: 32px;
  font-weight: 800;
  color: #111827;
  margin-bottom: 10px;
}

.section-head-center p {
  color: #6B7280;
  font-size: 15.5px;
}

/* --- SECTION 1: HARDWARE STAGE & PRODUCT SHOWCASE CARD --- */
.hardware-stage-section {
  padding: 80px 0;
  background: #0D0E10;
  border-top: 1px solid #282A30;
  border-bottom: 1px solid #282A30;
}

.hardware-stage-section .section-head-center h2 {
  color: #FFFFFF;
}

.hardware-stage-section .section-head-center p {
  color: #9CA3AF;
}

.hardware-dock-container {
  background: #0D0E10;
  border: 1px solid #282A30;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
}

.hardware-dock {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  background: #15171C;
  border: 1px solid #282A30;
  padding: 6px;
  border-radius: 10px;
  margin-bottom: 24px;
  width: 100%;
}

.dock-btn {
  background: transparent;
  border: 1px solid transparent;
  color: #9CA3AF;
  padding: 10px 12px;
  border-radius: 8px;
  cursor: pointer;
  text-align: center;
  transition: all 0.25s ease;
  width: 100%;
}

.dock-btn.active,
.dock-btn:hover {
  background: #9C2327;
  border-color: #9C2327;
  color: #FFFFFF;
}

.dock-model {
  font-size: 13.5px;
  font-weight: 800;
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.dock-sub {
  font-size: 10px;
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-top: 2px;
  opacity: 0.85;
}

.product-showcase-card {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 36px;
  background: #15171C;
  border: 1px solid #282A30;
  border-radius: 12px;
  padding: 32px;
  align-items: center;
}

.showcase-img-stage {
  position: relative;
  background: #0D0E10;
  border: 1px solid #282A30;
  border-radius: 12px;
  padding: 48px 20px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 300px;
  overflow: hidden;
}

.showcase-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  max-width: calc(100% - 24px);
  background: #9C2327;
  color: #FFFFFF;
  font-size: 10px;
  font-weight: 800;
  padding: 5px 10px;
  border-radius: 4px;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 12px rgba(156, 35, 39, 0.4);
  z-index: 10;
  text-align: left;
}

.spotlight-glow-red {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(156, 35, 39, 0.25) 0%, transparent 70%);
  pointer-events: none;
}

.showcase-img {
  max-height: 210px;
  max-width: 100%;
  width: auto;
  object-fit: contain;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.2s ease;
  filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.6));
}

.showcase-details {
  display: flex;
  flex-direction: column;
}

.showcase-category {
  font-size: 11px;
  font-weight: 800;
  color: #E63946;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.showcase-title {
  font-size: 26px;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 10px;
  line-height: 1.25;
}

.showcase-desc {
  font-size: 14.5px;
  color: #9CA3AF;
  line-height: 1.6;
  margin-bottom: 22px;
}

.showcase-specs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 22px;
}

.spec-tile {
  background: #0D0E10;
  border: 1px solid #282A30;
  border-radius: 6px;
  padding: 10px;
  text-align: center;
}

.tile-val {
  font-size: 13.5px;
  font-weight: 800;
  color: #FFFFFF;
  display: block;
}

.tile-lbl {
  font-size: 9.5px;
  color: #9CA3AF;
  display: block;
  margin-top: 2px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.showcase-features-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 13.5px;
  color: #D1D5DB;
  margin-bottom: 24px;
}

.showcase-features-list li {
  line-height: 1.45;
}

.showcase-actions-row {
  display: flex;
  gap: 14px;
}

.btn-line-dark {
  background: transparent;
  border: 1.5px solid #4B5563;
  color: #FFFFFF;
  padding: 11px 22px;
  font-size: 13.5px;
  font-weight: 700;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-line-dark:hover {
  border-color: #9C2327;
  background: #9C2327;
  color: #FFFFFF;
}

/* --- SECTION 2: INDUSTRIES SECTION ("WHERE IT'S USED") --- */
.industries-section {
  background: #0D0E10;
  color: #FFFFFF;
  padding: 85px 0;
  border-top: 1px solid #282A30;
  border-bottom: 1px solid #282A30;
}

.industries-head {
  max-width: 620px;
  margin-bottom: 48px;
}

.industries-head h2 {
  font-size: 34px;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 12px;
}

.industries-head p {
  color: #9CA3AF;
  font-size: 16px;
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: #282A30;
  border: 1px solid #282A30;
  border-radius: 12px;
  overflow: hidden;
}

.industry-card {
  background: #15171C;
  padding: 34px 26px;
  transition: all 0.25s ease;
}

.industry-card:hover {
  background: #1E2026;
  transform: translateY(-2px);
}

.industry-card .idx {
  font-size: 12px;
  font-weight: 800;
  color: #E63946;
  margin-bottom: 18px;
  letter-spacing: 0.1em;
}

.industry-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 10px;
  letter-spacing: 0;
}

.industry-card p {
  font-size: 13.5px;
  color: #9CA3AF;
  line-height: 1.6;
}

/* --- SECTION 3: RENT OR BUY SECTION & INTERACTIVE CALCULATOR --- */
.rent-buy-section {
  background: #0D0E10;
  color: #FFFFFF;
  padding: 85px 0;
  border-top: 1px solid #282A30;
  border-bottom: 1px solid #282A30;
}

.rent-buy-head {
  max-width: 640px;
  margin-bottom: 48px;
}

.rent-buy-head h2 {
  font-size: 34px;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 12px;
}

.rent-buy-head p {
  color: #9CA3AF;
  font-size: 16px;
}

.rb-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-bottom: 40px;
}

.rb-card {
  border: 1px solid #282A30;
  border-radius: 14px;
  padding: 36px;
  background: #15171C;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: all 0.25s ease;
}

.rb-card:hover {
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
  border-color: #9C2327;
}

.rb-card.featured {
  background: #1E2026;
  color: #FFFFFF;
  border: 1px solid #282A30;
}

.rb-card.featured:hover {
  border-color: #9C2327;
  box-shadow: 0 12px 30px rgba(156, 35, 39, 0.3);
}

.rb-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #9C2327;
  color: #FFFFFF;
  font-size: 10px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 4px;
  letter-spacing: 0.08em;
}

.rb-card .rb-eyebrow {
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #E63946;
  margin-bottom: 12px;
}

.rb-card.featured .rb-eyebrow {
  color: #E63946;
}

.rb-card h3 {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 12px;
  color: #FFFFFF;
}

.rb-card.featured h3 {
  color: #FFFFFF;
}

.rb-card p {
  font-size: 14.5px;
  color: #9CA3AF;
  margin-bottom: 24px;
  line-height: 1.6;
}

.rb-card.featured p {
  color: #9CA3AF;
}

.card-checklist {
  list-style: none;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 13.5px;
  color: #D1D5DB;
}

.card-checklist.light {
  color: #D1D5DB;
}

.btn-line-red {
  background: transparent;
  border: 1.5px solid #9C2327;
  color: #FFFFFF;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 700;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.25s ease;
  margin-top: auto;
  text-align: center;
}

.btn-line-red:hover {
  background: #9C2327;
  color: #FFFFFF;
}

.btn-solid-red {
  background: #9C2327;
  border: 1.5px solid #9C2327;
  color: #FFFFFF;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 700;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.25s ease;
  margin-top: auto;
  text-align: center;
}

.btn-solid-red:hover {
  background: #7E1B1F;
  border-color: #7E1B1F;
  box-shadow: 0 4px 16px rgba(156, 35, 39, 0.35);
}

/* Calculator Box */
.rental-calculator-box {
  background: #15171C;
  border: 1px solid #282A30;
  border-radius: 14px;
  padding: 32px;
}

.calc-header {
  margin-bottom: 24px;
}

.calc-header h3 {
  font-size: 22px;
  font-weight: 800;
  color: #FFFFFF;
  margin-top: 4px;
}

.calc-header p {
  font-size: 14px;
  color: #9CA3AF;
}

.calc-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: center;
}

.slider-control label {
  display: block;
  font-size: 15px;
  color: #FFFFFF;
  margin-bottom: 14px;
}

.slider-control label strong {
  color: #E63946;
  font-weight: 800;
}

.slider-control input[type="range"] {
  width: 100%;
  height: 8px;
  background: #282A30;
  border-radius: 4px;
  outline: none;
  cursor: pointer;
  margin-bottom: 12px;
  -webkit-appearance: none;
  appearance: none;
}

.slider-control input[type="range"]::-webkit-slider-runnable-track {
  height: 8px;
  background: transparent;
  border-radius: 4px;
}

.slider-control input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #9C2327;
  border: 3px solid #FFFFFF;
  cursor: pointer;
  box-shadow: 0 0 10px rgba(156, 35, 39, 0.6);
  transition: transform 0.15s ease, background 0.15s ease;
  margin-top: -6px;
}

.slider-control input[type="range"]::-webkit-slider-thumb:hover {
  transform: scale(1.15);
  background: #E63946;
}

.slider-ticks {
  display: flex;
  justify-content: space-between;
  font-size: 11.5px;
  color: #9CA3AF;
  font-weight: 600;
  padding: 0 4px;
}

.slider-ticks span {
  width: 50px;
  text-align: center;
}

.slider-ticks span:first-child {
  text-align: left;
}

.slider-ticks span:last-child {
  text-align: right;
}

.calc-results {
  background: #0D0E10;
  border-radius: 10px;
  padding: 20px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 16px;
  align-items: center;
  border: 1px solid #282A30;
}

.res-box {
  display: flex;
  flex-direction: column;
}

.res-lbl {
  font-size: 10px;
  font-weight: 700;
  color: #9CA3AF;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}

.res-amt {
  font-size: 22px;
  font-weight: 800;
  color: #FFFFFF;
}

.res-amt.red {
  color: #E63946;
}

.res-divider {
  color: #6B7280;
  font-size: 12px;
  font-weight: 700;
}

.res-box.highlight {
  grid-column: 1 / -1;
  border-top: 1px solid #282A30;
  padding-top: 12px;
  margin-top: 4px;
}

.res-recom {
  font-size: 12.5px;
  color: #E63946;
  font-weight: 800;
  letter-spacing: 0.04em;
}

/* Responsive adjustments */
@media (max-width: 990px) {

  .product-showcase-card,
  .calc-body,
  .rb-grid {
    grid-template-columns: 1fr;
  }

  .hardware-dock {
    grid-template-columns: repeat(2, 1fr);
  }

  .industries-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .hardware-dock {
    grid-template-columns: 1fr;
  }

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

  .showcase-specs-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .calc-results {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .res-divider {
    display: none;
  }
}

/* ==========================================================================
   EXPRESS QUOTE FORM SECTION (AUTHENTIC POWERSIGHT FORM - RED, BLACK & WHITE)
   ========================================================================== */
.express-quote-section {
  padding: 85px 0;
  background: #F8F9FA;
  border-top: 1px solid #E5E7EB;
  border-bottom: 1px solid #E5E7EB;
}

.express-card-container {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.07);
}

/* LEFT PANEL - DARK CHARCOAL POWERSIGHT INFO PANEL */
.express-left-panel {
  background: #0D0E10;
  color: #FFFFFF;
  padding: 48px 38px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid #282A30;
}

.express-badge {
  display: inline-block;
  background: #9C2327;
  color: #FFFFFF;
  font-size: 11px;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 4px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 18px;
  align-self: flex-start;
}

.express-left-panel h2 {
  font-size: 32px;
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.express-desc {
  font-size: 14px;
  color: #9CA3AF;
  line-height: 1.65;
  margin-bottom: 32px;
}

.express-info-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.express-info-card {
  background: #15171C;
  border: 1px solid #282A30;
  border-radius: 10px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.express-info-card svg {
  color: #E63946;
  flex-shrink: 0;
}

.express-info-card .lbl {
  display: block;
  font-size: 10px;
  font-weight: 800;
  color: #9CA3AF;
  letter-spacing: 0.08em;
  margin-bottom: 2px;
}

.express-info-card .val {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #FFFFFF;
}

/* RIGHT PANEL - CLEAN WHITE FORM PANEL */
.express-right-panel {
  padding: 48px 44px;
  background: #FFFFFF;
}

.express-form-header {
  margin-bottom: 28px;
}

.express-form-header h3 {
  font-size: 26px;
  font-weight: 800;
  color: #111827;
  margin-bottom: 4px;
}

.express-form-header p {
  font-size: 13.5px;
  color: #6B7280;
}

.req-star {
  color: #E63946;
  font-weight: 800;
}

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

.exp-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.exp-field.full-w {
  margin-bottom: 18px;
}

.exp-field label {
  font-size: 13px;
  font-weight: 700;
  color: #374151;
}

.exp-field input,
.exp-field textarea {
  width: 100%;
  background: #F8F9FA;
  border: 1px solid #E5E7EB;
  border-radius: 8px;
  padding: 11px 14px;
  font-size: 14px;
  color: #111827;
  outline: none;
  transition: all 0.2s ease;
}

.exp-field input:focus,
.exp-field textarea:focus {
  border-color: #9C2327;
  background: #FFFFFF;
  box-shadow: 0 0 10px rgba(156, 35, 39, 0.12);
}

.radio-options-row {
  display: flex;
  gap: 16px;
  margin-top: 6px;
}

.radio-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #F8F9FA;
  border: 1px solid #E5E7EB;
  padding: 8px 14px;
  border-radius: 6px;
  font-size: 13.5px;
  color: #374151;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.radio-chip:hover {
  border-color: #9C2327;
}

.radio-chip input[type="radio"] {
  accent-color: #9C2327;
  width: 15px;
  height: 15px;
}

.btn-express-submit {
  width: 100%;
  height: 48px;
  background: #9C2327;
  color: #FFFFFF;
  font-size: 15px;
  font-weight: 800;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.25s ease;
  margin-top: 10px;
  box-shadow: 0 4px 16px rgba(156, 35, 39, 0.25);
}

.btn-express-submit:hover {
  background: #7E1B1F;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(156, 35, 39, 0.4);
}

/* ==========================================================================
   COMPLETE COMPREHENSIVE RESPONSIVE ENGINE (MOBILE, TABLET, DESKTOP)
   ========================================================================== */

/* Touch-friendly inputs to prevent iOS auto-zoom */
@media (max-width: 768px) {

  input[type="text"],
  input[type="email"],
  input[type="tel"],
  select,
  textarea {
    font-size: 16px !important;
  }
}

/* 1. Large Laptops & Desktops (max-width: 1200px) */
@media (max-width: 1200px) {
  .hero h1 {
    font-size: 38px;
  }

  .express-card-container {
    grid-template-columns: 1fr 1fr;
  }

  .express-left-panel,
  .express-right-panel {
    padding: 36px 28px;
  }
}

/* 2. Tablets & Small Laptops (max-width: 992px) */
@media (max-width: 992px) {

  .wrap,
  .cat-inner-wrap,
  .deals-inner-wrap,
  .nav-inner-wrap,
  .cta-banner-inner {
    max-width: 100% !important;
    padding-left: 20px !important;
    padding-right: 20px !important;
    box-sizing: border-box !important;
  }

  .hero-grid {
    grid-template-columns: 1fr !important;
    gap: 36px;
    text-align: center;
  }

  .hero h1 {
    font-size: 34px;
  }

  .hero p.lede {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-cta {
    justify-content: center;
  }

  .hero-stats-row {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
  }

  .hero-form-card {
    margin: 0 auto;
    max-width: 100%;
  }

  .product-showcase-card {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 24px;
  }

  .hardware-dock {
    grid-template-columns: repeat(2, 1fr);
  }

  .industries-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .category-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .deals-nav-arrows {
    display: none !important;
  }

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

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

  .calc-body {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .express-card-container {
    grid-template-columns: 1fr;
  }

  .express-left-panel {
    border-right: none;
    border-bottom: 1px solid #282A30;
    padding: 32px 24px;
  }

  .express-right-panel {
    padding: 32px 24px;
  }

  .express-form-row {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .footer-5col-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }

  .footer-5col-grid>div:first-child {
    grid-column: 1 / -1;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 24px;
    margin-bottom: 8px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
  }

  .footer-5col-grid>div:first-child .footer-desc {
    max-width: 480px;
    margin-bottom: 0;
  }

  .cta-banner-inner {
    flex-direction: column;
    text-align: center;
  }

  .cta-banner-left {
    max-width: 100%;
  }

  .cta-banner-right-card {
    width: 100%;
  }
}

/* 3. Mobile Phones (max-width: 640px) */
@media (max-width: 640px) {

  .wrap,
  .cat-inner-wrap,
  .deals-inner-wrap,
  .nav-inner-wrap,
  .cta-banner-inner {
    padding-left: 14px !important;
    padding-right: 14px !important;
  }

  .top-bar-inner-wrap {
    padding: 8px 14px;
    font-size: 11px;
  }

  .top-bar-right {
    display: none;
  }

  .desktop-quote-btn {
    padding: 6px 10px !important;
    font-size: 11px !important;
  }

  .hero {
    padding: 40px 0 60px;
  }

  .hero h1 {
    font-size: 28px;
  }

  .hero p.lede {
    font-size: 14.5px;
  }

  .hero-stats-row {
    flex-direction: column;
    width: 100%;
  }

  .hero-stat-card {
    width: 100%;
    justify-content: center;
  }

  .hero-form-card {
    padding: 22px 18px;
  }

  .hero-form-card h2 {
    font-size: 22px;
  }

  .hardware-dock {
    grid-template-columns: 1fr;
  }

  .dock-btn {
    padding: 8px 10px;
  }

  .showcase-specs-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .showcase-actions-row {
    flex-direction: column;
  }

  .showcase-actions-row button {
    width: 100%;
  }

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

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

  .industry-card {
    padding: 24px 20px;
  }

  .deals-header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
  }

  .deals-title-group h2 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 0;
  }

  .deals-nav-arrows {
    display: none !important;
  }

  .deals-tabs {
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: none !important;
  }

  .deals-tab-btn {
    font-size: 13px;
    font-weight: 700;
    color: #6B7280;
    padding: 2px 0 6px;
    background: transparent;
    border: none !important;
    white-space: nowrap;
    position: relative;
    transition: color 0.2s ease;
  }

  .deals-tab-btn.active {
    color: #9C2327;
    font-weight: 800;
  }

  .deals-tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2.5px;
    background: #9C2327;
    border-radius: 2px;
  }

  .deals-products-grid {
    padding-bottom: 10px;
  }

  .eq-focus-thumb img,
  .deal-card-thumb img {
    object-fit: contain !important;
    object-position: center !important;
    max-height: 140px !important;
    width: auto !important;
    margin: 0 auto !important;
  }

  .deal-card {
    min-width: 240px;
  }

  .rb-card {
    padding: 24px 20px;
  }

  .rb-card h3 {
    font-size: 20px;
  }

  .rental-calculator-box {
    padding: 22px 18px;
  }

  .slider-ticks {
    font-size: 10px;
    padding: 0;
  }

  .slider-ticks span {
    width: auto;
  }

  .calc-results {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 12px;
  }

  .res-divider {
    display: none;
  }

  .testi-card-container {
    padding: 0 10px;
  }

  .testi-quote-box {
    padding: 26px 20px;
  }

  .testi-text {
    font-size: 15px;
  }

  .testi-arrow-btn {
    display: none;
  }

  .express-left-panel h2 {
    font-size: 24px;
  }

  .express-right-panel {
    padding: 28px 18px;
  }

  .express-form-header h3 {
    font-size: 22px;
  }

  .radio-options-row {
    flex-direction: column;
    gap: 8px;
  }

  .radio-chip {
    width: 100%;
  }

  .footer-5col-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-5col-grid>div:first-child {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .site-footer {
    padding: 48px 0 24px;
  }
}

/* ==========================================================================
   ELEMENTOR NATIVE BRIDGE FOR 100% PIXEL-PERFECT MATCHING WITH INDEX.HTML
   ========================================================================== */

/* Dark Containers */
.e-con.hero,
.e-con.features-dark-section,
.e-con.industries-section,
.e-con.cta-full-banner,
.e-con.site-footer,
.e-con.top-bar {
  background-color: #0b0c0e !important;
  color: #ffffff !important;
}

.e-con.features-dark-section {
  background-color: #0e0f12 !important;
}

/* Headings inside dark containers */
.hero .elementor-heading-title,
.features-dark-section .elementor-heading-title,
.industries-section .elementor-heading-title,
.cta-full-banner .elementor-heading-title,
.site-footer .elementor-heading-title {
  color: #ffffff !important;
}

/* Text Editors inside dark containers */
.hero .elementor-widget-text-editor,
.features-dark-section .elementor-widget-text-editor,
.industries-section .elementor-widget-text-editor,
.cta-full-banner .elementor-widget-text-editor,
.site-footer .elementor-widget-text-editor {
  color: #9ca3af !important;
}

/* Buttons in Elementor */
.elementor-widget-button .elementor-button {
  transition: all 0.25s ease !important;
  border-radius: 6px !important;
  font-weight: 700 !important;
}

/* Red Solid Buttons */
.btn-solid .elementor-button,
.elementor-button.btn-solid {
  background-color: #9C2327 !important;
  color: #ffffff !important;
  border: none !important;
}
.btn-solid .elementor-button:hover {
  background-color: #7E1B1F !important;
}

/* Line Buttons */
.btn-line .elementor-button {
  background-color: transparent !important;
  color: #ffffff !important;
  border: 1.5px solid rgba(255,255,255,0.3) !important;
}

/* Hero Stat Icon Box Cards */
.hero-stat-card .elementor-icon-box-wrapper {
  background: rgba(255, 255, 255, 0.04) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: 12px !important;
  padding: 14px 18px !important;
}

.hero-stat-card .elementor-icon-box-title {
  color: #ffffff !important;
  font-size: 14px !important;
  font-weight: 700 !important;
}

.hero-stat-card .elementor-icon-box-description {
  color: #9ca3af !important;
  font-size: 12px !important;
}

/* Category Cards */
.cat-card {
  background: #ffffff !important;
  border-radius: 16px !important;
  padding: 24px 16px !important;
  box-shadow: 0 4px 18px rgba(0,0,0,0.04) !important;
  transition: all 0.25s ease !important;
  border: 1px solid #e5e7eb !important;
}
.cat-card:hover {
  transform: translateY(-6px) !important;
  border-color: #9C2327 !important;
  box-shadow: 0 12px 32px rgba(156,35,39,0.12) !important;
}

/* Philosophy Cards */
.phil-card {
  background: #ffffff !important;
  border-radius: 16px !important;
  padding: 36px 28px 32px 28px !important;
  box-shadow: 0 10px 30px rgba(0,0,0,0.04) !important;
  border: 1px solid #e5e7eb !important;
  transition: all 0.25s ease !important;
}
.phil-card:hover {
  transform: translateY(-6px) !important;
  box-shadow: 0 16px 40px rgba(156,35,39,0.12) !important;
}

/* Rent vs Buy Cards */
.rb-card {
  background: #ffffff !important;
  border-radius: 16px !important;
  padding: 32px 28px !important;
  border: 1px solid #e5e7eb !important;
}
.rb-card.featured {
  background: #9C2327 !important;
  color: #ffffff !important;
  border: none !important;
}
.rb-card.featured .elementor-heading-title,
.rb-card.featured .elementor-widget-text-editor,
.rb-card.featured .elementor-icon-list-text {
  color: #ffffff !important;
}

/* Carousel Arrow Fixes */
.elementor-swiper-button,
.elementor-swiper-button-prev,
.elementor-swiper-button-next,
.swiper-button-prev,
.swiper-button-next {
  width: 40px !important;
  height: 40px !important;
  font-size: 16px !important;
  line-height: 40px !important;
  background: rgba(255,255,255,0.9) !important;
  border-radius: 50% !important;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1) !important;
}
