/* ============================================
   4. AIR COMPRESSOR LANDING PAGE
   Module: 03-compressors.css
   All comp-* classes for the landing page
   ============================================ */

/* ---------- Full-Width Section Fix ---------- */
.comp-hero,
.comp-value-strip,
.comp-categories,
.comp-featured,
.comp-lineup,
.comp-rotary,
.comp-gas,
.comp-advantage,
.comp-comparison,
.comp-why,
.comp-lead,
.comp-final-cta {
  width: 100vw !important;
  max-width: none !important;
  margin-left: calc(50% - 50vw) !important;
  margin-right: calc(50% - 50vw) !important;
  padding-left: 60px !important;
  padding-right: 60px !important;
  box-sizing: border-box !important;
  position: relative !important;
}

/* ---------- Hero Section ---------- */
.comp-hero {
  display: grid !important;
  grid-template-columns: minmax(0, 580px) 420px !important;
  justify-content: center !important;
  gap: 60px !important;
  align-items: center !important;
  padding-top: 120px !important;
  padding-bottom: 100px !important;
  background: linear-gradient(135deg, #0a0a0a 0%, #0d1a2d 50%, #0a0a0a 100%) !important;
}

.comp-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(1,78,252,0.08) 0%, transparent 60%);
  pointer-events: none;
}

.comp-hero-content {
  position: relative;
  z-index: 1;
}

.comp-announcement {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(1,78,252,0.15);
  border: 1px solid rgba(1,78,252,0.3);
  color: var(--jrv-sky);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  padding: 8px 16px;
  border-radius: 50px;
  margin-bottom: 24px;
}

.comp-announcement .dot {
  color: var(--jrv-green);
  font-size: 8px;
}

.comp-hero h1 {
  font-size: 56px;
  font-weight: 700;
  line-height: 1.1;
  color: #ffffff;
  margin: 0 0 24px 0;
}

.comp-hero h1 .accent {
  color: var(--jrv-sky);
}

.comp-hero-subtitle {
  font-size: 18px;
  line-height: 1.6;
  color: var(--jrv-text-muted);
  max-width: 540px;
  margin: 0 0 32px 0;
}

.comp-hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-bottom: 32px;
}

.comp-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.comp-stat-number {
  font-size: 28px;
  font-weight: 700;
  color: #ffffff;
}

.comp-stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}

.comp-stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.15);
}

.comp-hero-ctas {
  display: flex;
  gap: 16px;
  margin-bottom: 32px;
}

.comp-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.comp-trust-badge {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}

/* Hero Product Card */
.comp-hero-product {
  position: relative;
  background: var(--jrv-dark-card);
  border: 1px solid var(--jrv-border);
  border-radius: 20px;
  padding: 24px;
  z-index: 1;
}

.comp-product-badge {
  position: absolute;
  top: -12px;
  left: 24px;
  background: var(--jrv-green);
  color: var(--jrv-dark);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 6px 12px;
  border-radius: 4px;
}

.comp-product-image {
  background: rgba(1,78,252,0.05);
  border-radius: 12px;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  overflow: hidden;
}

.comp-product-image img {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
}

.comp-hero-product .comp-product-name,
.comp-product-name {
  font-size: 20px;
  font-weight: 600;
  color: #ffffff !important;
  margin: 0 0 8px 0;
}

.comp-product-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 20px;
}

.comp-product-pricing {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 20px;
}

.comp-price-main,
.comp-price-compare {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.comp-price-label {
  font-size: 11px;
  color: var(--jrv-text-dim);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.comp-price-value {
  font-size: 28px;
  font-weight: 700;
  color: var(--jrv-green) !important;
}

.comp-price-strike {
  font-size: 20px;
  font-weight: 600;
  color: var(--jrv-text-dim);
  text-decoration: line-through;
}

.comp-savings-banner {
  grid-column: 1 / -1;
  background: rgba(126,197,95,0.15);
  border-radius: 8px;
  padding: 12px;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  color: var(--jrv-green);
}

.comp-product-btn {
  width: 100%;
  background: var(--jrv-blue) !important;
  color: #ffffff !important;
  border: none !important;
  padding: 14px !important;
  border-radius: 8px !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  cursor: pointer;
  text-decoration: none !important;
  display: block;
  text-align: center;
  transition: background 0.2s;
}

.comp-product-btn:hover {
  background: var(--jrv-deep-blue) !important;
}

/* ---------- Value Strip ---------- */
.comp-value-strip {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  background: var(--jrv-deep-blue) !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.comp-value-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px 32px;
  border-right: 1px solid rgba(255,255,255,0.1);
  color: #ffffff;
  font-size: 14px;
}

.comp-value-item:last-child {
  border-right: none;
}

.comp-value-icon {
  font-size: 24px;
}

.comp-value-item strong {
  display: block;
  margin-bottom: 2px;
  color: #ffffff;
}

.comp-value-item span,
.comp-value-item div {
  color: rgba(255,255,255,0.7);
}

/* ---------- Section Headers ---------- */
.comp-section-header {
  text-align: center;
  margin-bottom: 60px;
}

.comp-section-label {
  display: inline-block;
  font-size: 12px !important;
  font-weight: 700 !important;
  letter-spacing: 2px !important;
  color: var(--jrv-blue) !important;
  margin-bottom: 16px;
  text-transform: uppercase !important;
}

.comp-section-title {
  font-size: 40px;
  font-weight: 600;
  color: #ffffff !important;
  margin: 0 0 16px 0;
}

.comp-section-subtitle {
  font-size: 18px;
  color: var(--jrv-text-muted) !important;
  max-width: 600px;
  margin: 0 auto;
}

/* ---------- Categories Section ---------- */
.comp-categories {
  padding-top: 100px !important;
  padding-bottom: 100px !important;
  background: var(--jrv-dark) !important;
}

.comp-category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1400px;
  margin: 0 auto;
}

.comp-category-card {
  position: relative;
  background: var(--jrv-dark-card);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 32px 24px;
  transition: all 0.3s;
  text-decoration: none !important;
  display: block;
}

.comp-category-card:hover {
  background: rgba(255,255,255,0.05);
  border-color: rgba(1,78,252,0.3);
  transform: translateY(-4px);
}

.comp-category-card.featured {
  background: rgba(1,78,252,0.08);
  border-color: rgba(1,78,252,0.3);
}

.comp-category-featured-badge {
  position: absolute;
  top: -12px;
  right: 24px;
  background: var(--jrv-blue);
  color: #ffffff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 6px 12px;
  border-radius: 4px;
}

.comp-category-icon {
  font-size: 40px;
  margin-bottom: 16px;
}

.comp-category-name {
  font-size: 20px;
  font-weight: 600;
  color: #ffffff !important;
  margin: 0 0 4px 0;
}

.comp-category-range {
  font-size: 14px;
  color: var(--jrv-sky) !important;
  font-weight: 600;
}

.comp-category-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.5) !important;
  margin: 12px 0 16px 0;
  line-height: 1.5;
}

.comp-category-features {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
}

.comp-category-features li {
  font-size: 13px;
  color: rgba(255,255,255,0.7) !important;
  margin-bottom: 8px;
}

.comp-category-footer {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.comp-category-price {
  font-size: 13px;
  color: rgba(255,255,255,0.5) !important;
}

.comp-category-link {
  color: var(--jrv-sky) !important;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

/* ---------- Featured Products ---------- */
.comp-featured {
  padding-top: 100px !important;
  padding-bottom: 100px !important;
  background: linear-gradient(180deg, var(--jrv-dark) 0%, #0d1420 100%) !important;
}

.comp-featured-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.comp-featured-card {
  position: relative;
  background: var(--jrv-dark-card);
  border: 1px solid var(--jrv-border);
  border-radius: 20px;
  overflow: hidden;
}

.comp-featured-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--jrv-green);
  color: var(--jrv-dark);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 6px 12px;
  border-radius: 4px;
  z-index: 1;
}

.comp-featured-image {
  background: linear-gradient(135deg, rgba(1,78,252,0.08) 0%, rgba(1,78,252,0.03) 100%);
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.comp-featured-image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.comp-featured-content {
  padding: 32px;
}

.comp-featured-name {
  font-size: 24px;
  font-weight: 600;
  color: #ffffff !important;
  margin: 0 0 4px 0;
}

.comp-featured-sku {
  font-size: 13px;
  color: var(--jrv-text-dim);
}

.comp-specs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 24px 0;
  padding: 20px;
  background: rgba(0,0,0,0.3);
  border-radius: 12px;
}

.comp-spec-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.comp-spec-label {
  font-size: 11px;
  color: var(--jrv-text-dim);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.comp-spec-value {
  font-size: 14px;
  font-weight: 600;
  color: #ffffff !important;
}

.comp-featured-pricing {
  margin-bottom: 24px;
}

.comp-featured-price-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
}

.comp-featured-price-value {
  font-size: 32px;
  font-weight: 700;
  color: var(--jrv-green) !important;
}

.comp-featured-price-strike {
  font-size: 24px;
  font-weight: 600;
  color: rgba(255,255,255,0.3);
  text-decoration: line-through;
}

.comp-featured-ctas {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

/* ---------- Lineup Grid ---------- */
.comp-lineup {
  padding-top: 100px !important;
  padding-bottom: 100px !important;
  background: var(--jrv-dark) !important;
}

.comp-lineup-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 24px !important;
  max-width: 1200px !important;
  margin: 0 auto !important;
}

.comp-lineup-card {
  position: relative !important;
  background: var(--jrv-dark-card) !important;
  border: 1px solid var(--jrv-border) !important;
  border-radius: 16px !important;
  overflow: hidden !important;
  transition: all 0.3s !important;
}

.comp-lineup-card:hover {
  border-color: rgba(1,78,252,0.4) !important;
  transform: translateY(-4px) !important;
}

.comp-lineup-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--jrv-blue);
  color: #ffffff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 4px 8px;
  border-radius: 4px;
  z-index: 1;
}

.comp-lineup-badge.green {
  background: var(--jrv-green);
  color: var(--jrv-dark);
}

.comp-lineup-card img {
  width: 100% !important;
  height: 180px !important;
  object-fit: contain !important;
  background: rgba(1,78,252,0.03) !important;
  padding: 20px !important;
}

.comp-lineup-info {
  padding: 20px !important;
}

.comp-lineup-info h4 {
  font-size: 16px !important;
  font-weight: 600 !important;
  color: #ffffff !important;
  margin: 0 0 4px 0 !important;
}

.comp-lineup-specs {
  font-size: 13px !important;
  color: rgba(255,255,255,0.5) !important;
  display: block;
  margin-bottom: 12px;
}

.comp-lineup-price {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  margin-bottom: 16px !important;
}

.comp-lineup-price .price {
  font-size: 22px !important;
  font-weight: 700 !important;
  color: var(--jrv-green) !important;
}

.comp-lineup-price .phase {
  font-size: 12px !important;
  color: var(--jrv-text-dim) !important;
  background: rgba(255,255,255,0.05) !important;
  padding: 4px 8px !important;
  border-radius: 4px !important;
}

.comp-lineup-btn {
  display: block !important;
  width: 100% !important;
  background: transparent !important;
  border: 1px solid rgba(255,255,255,0.15) !important;
  color: #ffffff !important;
  padding: 12px !important;
  border-radius: 6px !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  text-align: center !important;
  text-decoration: none !important;
  transition: all 0.2s !important;
}

.comp-lineup-btn:hover {
  background: var(--jrv-blue) !important;
  border-color: var(--jrv-blue) !important;
}

/* ---------- Rotary Screw Section ---------- */
.comp-rotary {
  padding-top: 100px !important;
  padding-bottom: 100px !important;
  background: linear-gradient(135deg, #0d1420 0%, var(--jrv-dark) 100%) !important;
}

.comp-rotary-qualification {
  max-width: 900px !important;
  margin: 0 auto 48px !important;
  padding: 32px !important;
  background: linear-gradient(135deg, rgba(126,197,95,0.1) 0%, rgba(1,78,252,0.1) 100%) !important;
  border: 1px solid rgba(126,197,95,0.3) !important;
  border-radius: 16px !important;
}

.qualification-badge {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  background: rgba(126,197,95,0.2) !important;
  padding: 6px 14px !important;
  border-radius: 20px !important;
  margin-bottom: 16px !important;
}

.qualification-badge .badge-icon {
  color: var(--jrv-green) !important;
  font-weight: bold !important;
}

.qualification-badge .badge-text {
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: 1px !important;
  color: var(--jrv-green) !important;
}

.qualification-content h4 {
  font-size: 20px !important;
  font-weight: 600 !important;
  color: #ffffff !important;
  margin: 0 0 12px 0 !important;
}

.qualification-content > p {
  font-size: 15px !important;
  color: rgba(255,255,255,0.7) !important;
  line-height: 1.6 !important;
  margin: 0 0 20px 0 !important;
}

.qualification-checklist {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr) !important;
  gap: 12px !important;
  margin-bottom: 20px !important;
}

.qualification-checklist .check-item {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  font-size: 14px !important;
  color: rgba(255,255,255,0.8) !important;
}

.qualification-note {
  font-size: 14px !important;
  color: rgba(255,255,255,0.7) !important;
  margin: 0 !important;
  padding-top: 16px !important;
  border-top: 1px solid rgba(255,255,255,0.1) !important;
}

.qualification-note strong {
  color: #ffffff !important;
}

.comp-rotary-categories {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr) !important;
  gap: 24px !important;
  max-width: 1100px !important;
  margin: 0 auto 48px !important;
}

.comp-rotary-type {
  background: var(--jrv-dark-card) !important;
  border: 1px solid var(--jrv-border) !important;
  border-radius: 16px !important;
  padding: 28px !important;
  transition: all 0.3s !important;
}

.comp-rotary-type:hover {
  border-color: rgba(1,78,252,0.3) !important;
}

.comp-rotary-type.featured {
  background: rgba(1,78,252,0.08) !important;
  border-color: rgba(1,78,252,0.3) !important;
  grid-column: 1 / -1 !important;
}

.rotary-type-header {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  margin-bottom: 12px !important;
  flex-wrap: wrap !important;
}

.rotary-type-header h3 {
  font-size: 20px !important;
  font-weight: 600 !important;
  color: #ffffff !important;
  margin: 0 !important;
}

.rotary-type-range {
  font-size: 13px !important;
  font-weight: 600 !important;
  color: var(--jrv-sky) !important;
  background: rgba(21,181,255,0.15) !important;
  padding: 4px 10px !important;
  border-radius: 4px !important;
  display: inline-block !important;
}

.rotary-type-badge {
  font-size: 10px !important;
  font-weight: 700 !important;
  letter-spacing: 1px !important;
  color: var(--jrv-green) !important;
  background: rgba(126,197,95,0.15) !important;
  padding: 4px 10px !important;
  border-radius: 4px !important;
  display: inline-block !important;
}

.comp-rotary-type > p {
  font-size: 14px !important;
  color: var(--jrv-text-muted) !important;
  margin: 0 0 20px 0 !important;
  line-height: 1.5 !important;
}

.rotary-hp-grid {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 8px !important;
}

.hp-option {
  font-size: 12px !important;
  font-weight: 600 !important;
  color: rgba(255,255,255,0.8) !important;
  background: rgba(255,255,255,0.08) !important;
  padding: 6px 12px !important;
  border-radius: 6px !important;
  display: inline-block !important;
  transition: all 0.2s !important;
}

.hp-option:hover {
  background: rgba(1,78,252,0.3) !important;
  color: #ffffff !important;
}

.comp-rotary-features-strip {
  display: flex !important;
  justify-content: center !important;
  flex-wrap: wrap !important;
  gap: 32px !important;
  padding: 32px !important;
  background: rgba(255,255,255,0.02) !important;
  border-radius: 12px !important;
  max-width: 1000px !important;
  margin: 0 auto 40px !important;
}

.rotary-feature {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  font-size: 14px !important;
  color: rgba(255,255,255,0.8) !important;
}

.comp-rotary-cta {
  text-align: center !important;
}

/* ---------- Gas Section ---------- */
.comp-gas {
  padding-top: 100px !important;
  padding-bottom: 100px !important;
  background: var(--jrv-dark) !important;
}

.comp-gas .comp-section-label {
  color: var(--jrv-green) !important;
}

.comp-gas-grid {
  display: grid !important;
  grid-template-columns: 1fr 2fr !important;
  gap: 40px !important;
  max-width: 1200px !important;
  margin: 0 auto !important;
}

.comp-gas-category h3 {
  font-size: 20px !important;
  font-weight: 600 !important;
  color: #ffffff !important;
  margin: 0 0 4px 0 !important;
}

.comp-gas-category > p {
  font-size: 14px !important;
  color: rgba(255,255,255,0.5) !important;
  margin: 0 0 20px 0 !important;
}

.comp-gas-card {
  display: flex !important;
  gap: 16px !important;
  background: var(--jrv-dark-card) !important;
  border: 1px solid var(--jrv-border) !important;
  border-radius: 12px !important;
  padding: 16px !important;
  margin-bottom: 16px !important;
}

.comp-gas-card img {
  width: 100px !important;
  height: 100px !important;
  object-fit: contain !important;
  background: rgba(255,255,255,0.02) !important;
  border-radius: 8px !important;
}

.comp-gas-placeholder {
  width: 100px !important;
  height: 100px !important;
  background: rgba(255,255,255,0.03) !important;
  border: 1px dashed rgba(255,255,255,0.15) !important;
  border-radius: 8px !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  color: rgba(255,255,255,0.3) !important;
  font-size: 10px !important;
}

.comp-gas-info {
  flex: 1;
}

.comp-gas-info h4 {
  font-size: 15px !important;
  font-weight: 600 !important;
  color: #ffffff !important;
  margin: 0 0 4px 0 !important;
}

.comp-gas-info > span {
  font-size: 12px !important;
  color: rgba(255,255,255,0.5) !important;
  display: block;
  margin-bottom: 8px;
}

.comp-gas-price {
  font-size: 18px !important;
  font-weight: 700 !important;
  color: var(--jrv-green) !important;
  margin: 8px 0 !important;
}

.comp-combo-section {
  margin-top: 48px !important;
  padding: 40px !important;
  background: rgba(126,197,95,0.08) !important;
  border: 1px solid rgba(126,197,95,0.2) !important;
  border-radius: 16px !important;
  text-align: center !important;
  max-width: 900px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

.comp-combo-section h3 {
  font-size: 22px !important;
  font-weight: 600 !important;
  color: #ffffff !important;
  margin: 0 0 8px 0 !important;
}

.comp-combo-section > p {
  font-size: 15px !important;
  color: var(--jrv-text-muted) !important;
  margin: 0 0 24px 0 !important;
}

.comp-combo-features {
  display: flex !important;
  justify-content: center !important;
  flex-wrap: wrap !important;
  gap: 24px !important;
  margin-bottom: 24px !important;
}

.comp-combo-features span {
  font-size: 14px !important;
  color: rgba(255,255,255,0.8) !important;
}

/* ---------- Joruva Advantage Section ---------- */
.comp-advantage {
  padding-top: 80px !important;
  padding-bottom: 80px !important;
  background: var(--jrv-dark) !important;
  position: relative !important;
}

.comp-advantage::before {
  content: "" !important;
  position: absolute !important;
  top: 0 !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  width: 100vw !important;
  height: 100% !important;
  background: var(--jrv-dark) !important;
  z-index: -1 !important;
}

.comp-advantage .comp-section-header {
  text-align: center !important;
  margin-bottom: 48px !important;
}

.comp-advantage .comp-section-label {
  color: var(--jrv-blue) !important;
}

.comp-advantage .comp-section-title {
  color: #ffffff !important;
}

.comp-advantage .comp-section-subtitle {
  color: var(--jrv-text-muted) !important;
}

.comp-advantage-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 24px !important;
  max-width: 1200px !important;
  margin: 0 auto 60px !important;
}

.comp-advantage-card {
  background: var(--jrv-dark-card) !important;
  border: 1px solid var(--jrv-border) !important;
  border-radius: 16px !important;
  padding: 32px !important;
  position: relative !important;
  transition: all 0.3s !important;
}

.comp-advantage-card:hover {
  border-color: rgba(1,78,252,0.4) !important;
  transform: translateY(-4px) !important;
}

.comp-advantage-card.featured {
  background: rgba(1,78,252,0.15) !important;
  border-color: rgba(1,78,252,0.4) !important;
}

.comp-advantage-icon {
  font-size: 32px !important;
  margin-bottom: 16px !important;
  display: block !important;
}

.comp-advantage-number {
  position: absolute !important;
  top: 24px !important;
  right: 24px !important;
  font-size: 48px !important;
  font-weight: 700 !important;
  color: rgba(255,255,255,0.08) !important;
  line-height: 1 !important;
}

.comp-advantage-card h3 {
  font-size: 20px !important;
  font-weight: 600 !important;
  color: #ffffff !important;
  margin: 0 0 12px 0 !important;
}

.comp-advantage-card p {
  font-size: 14px !important;
  color: rgba(255,255,255,0.7) !important;
  line-height: 1.6 !important;
  margin: 0 0 20px 0 !important;
}

.comp-advantage-list {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 0 20px 0 !important;
}

.comp-advantage-list li {
  font-size: 14px !important;
  color: rgba(255,255,255,0.8) !important;
  padding: 6px 0 6px 20px !important;
  position: relative !important;
}

.comp-advantage-list li::before {
  content: "•" !important;
  position: absolute !important;
  left: 0 !important;
  color: var(--jrv-blue) !important;
}

.comp-advantage-tag {
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: 1px !important;
  padding: 6px 12px !important;
  border-radius: 4px !important;
  display: inline-block !important;
  color: var(--jrv-sky) !important;
  background: rgba(21,181,255,0.2) !important;
}

.comp-advantage-tag.green {
  color: var(--jrv-green) !important;
  background: rgba(126,197,95,0.2) !important;
}

.comp-advantage-tag.blue {
  color: var(--jrv-blue) !important;
  background: rgba(1,78,252,0.2) !important;
}

/* System Builder */
.comp-system-builder {
  max-width: 1000px !important;
  margin: 0 auto !important;
  padding: 48px !important;
  background: var(--jrv-dark-card) !important;
  border: 1px solid var(--jrv-border) !important;
  border-radius: 20px !important;
  text-align: center !important;
}

.comp-system-builder h3 {
  font-size: 24px !important;
  font-weight: 600 !important;
  color: #ffffff !important;
  margin: 0 0 32px 0 !important;
}

.comp-system-flow {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-wrap: wrap !important;
  gap: 16px !important;
  margin-bottom: 32px !important;
}

.comp-system-step {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  gap: 8px !important;
  padding: 20px 24px !important;
  background: rgba(255,255,255,0.05) !important;
  border: 1px solid var(--jrv-border) !important;
  border-radius: 12px !important;
  min-width: 140px !important;
}

.comp-system-icon {
  font-size: 28px !important;
}

.comp-system-label {
  font-size: 14px !important;
  font-weight: 600 !important;
  color: #ffffff !important;
}

.comp-system-detail {
  font-size: 12px !important;
  color: rgba(255,255,255,0.5) !important;
}

.comp-system-arrow {
  font-size: 20px !important;
  color: var(--jrv-text-dim) !important;
}

.comp-system-cta {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  gap: 12px !important;
}

.comp-system-note {
  font-size: 14px !important;
  color: rgba(255,255,255,0.5) !important;
  margin: 0 !important;
}

/* ---------- Comparison Table ---------- */
.comp-comparison {
  padding-top: 100px !important;
  padding-bottom: 100px !important;
  background: #0d1420 !important;
}

.comp-table-wrapper {
  overflow-x: auto;
  margin-bottom: 24px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.comp-table {
  width: 100% !important;
  border-collapse: collapse !important;
  font-size: 14px;
}

.comp-table th {
  text-align: left !important;
  padding: 16px 20px !important;
  background: rgba(255,255,255,0.05) !important;
  color: rgba(255,255,255,0.7) !important;
  font-weight: 600 !important;
  border-bottom: 1px solid var(--jrv-border) !important;
}

.comp-table th.joruva-col {
  background: rgba(1,78,252,0.2) !important;
  color: #ffffff !important;
}

.comp-table td {
  padding: 16px 20px !important;
  border-bottom: 1px solid rgba(255,255,255,0.05) !important;
  color: rgba(255,255,255,0.8) !important;
}

.comp-table td.joruva-col {
  background: rgba(1,78,252,0.1) !important;
  color: var(--jrv-green) !important;
  font-weight: 600 !important;
}

.comp-table tr.highlight {
  background: rgba(126,197,95,0.08) !important;
}

.comp-table-note {
  font-size: 13px !important;
  color: rgba(255,255,255,0.5) !important;
  text-align: center !important;
}

/* ---------- Why Joruva Section ---------- */
.comp-why {
  padding-top: 100px !important;
  padding-bottom: 100px !important;
  background: #f8f9fa !important;
}

.comp-why .comp-section-label {
  color: var(--jrv-blue) !important;
}

.comp-why .comp-section-title {
  color: #111111 !important;
}

.comp-why-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 24px !important;
  max-width: 1200px !important;
  margin: 0 auto !important;
}

.comp-why-item {
  text-align: center !important;
  padding: 32px 24px !important;
  background: #ffffff !important;
  border: 1px solid #e0e0e0 !important;
  border-radius: 16px !important;
}

.comp-why-icon {
  font-size: 40px !important;
  margin-bottom: 16px !important;
}

.comp-why-item h3 {
  font-size: 18px !important;
  font-weight: 600 !important;
  color: #111111 !important;
  margin: 0 0 8px 0 !important;
}

.comp-why-item p {
  font-size: 14px !important;
  color: #555555 !important;
  margin: 0 !important;
  line-height: 1.6 !important;
}

/* ---------- Lead Section ---------- */
.comp-lead {
  padding-top: 100px !important;
  padding-bottom: 100px !important;
  background: var(--jrv-dark) !important;
}

.comp-lead-content {
  display: grid !important;
  grid-template-columns: 1fr 480px !important;
  gap: 60px !important;
  max-width: 1200px !important;
  margin: 0 auto !important;
  align-items: start;
}

.comp-lead-left .comp-section-label {
  color: var(--jrv-blue) !important;
}

.comp-lead-title {
  font-size: 36px !important;
  font-weight: 600 !important;
  color: #ffffff !important;
  margin: 0 0 16px 0 !important;
}

.comp-lead-desc {
  font-size: 16px !important;
  line-height: 1.6 !important;
  color: rgba(255,255,255,0.7) !important;
  margin-bottom: 32px !important;
}

.comp-lead-response-badge {
  display: flex !important;
  align-items: center !important;
  gap: 16px !important;
  background: linear-gradient(135deg, rgba(1,78,252,0.15) 0%, rgba(21,181,255,0.1) 100%) !important;
  border: 1px solid rgba(1,78,252,0.3) !important;
  border-radius: 12px !important;
  padding: 16px 20px !important;
  margin-bottom: 24px !important;
}

.comp-lead-response-badge .response-icon {
  font-size: 28px !important;
  flex-shrink: 0 !important;
}

.comp-lead-response-badge .response-text {
  display: flex !important;
  flex-direction: column !important;
  gap: 2px !important;
}

.comp-lead-response-badge .response-text strong {
  font-size: 15px !important;
  font-weight: 600 !important;
  color: #ffffff !important;
}

.comp-lead-response-badge .response-text span {
  font-size: 13px !important;
  color: rgba(255,255,255,0.7) !important;
}

.comp-lead-benefits {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}

.comp-lead-benefit {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: rgba(255,255,255,0.8) !important;
}

.comp-lead-benefit .check {
  color: var(--jrv-green) !important;
  font-weight: 700;
}

.comp-lead-contact p {
  color: var(--jrv-text-muted) !important;
  margin: 0 0 8px 0;
}

.comp-lead-phone {
  font-size: 24px !important;
  font-weight: 700 !important;
  color: var(--jrv-sky) !important;
  text-decoration: none !important;
}

.comp-lead-form {
  background: var(--jrv-dark-card) !important;
  border: 1px solid var(--jrv-border) !important;
  border-radius: 16px !important;
  padding: 32px !important;
}

/* ---------- Final CTA ---------- */
.comp-final-cta {
  padding-top: 100px !important;
  padding-bottom: 100px !important;
  background: linear-gradient(135deg, var(--jrv-dark) 0%, #0d1a2d 100%) !important;
  text-align: center !important;
}

.comp-final-cta h2 {
  font-size: 36px !important;
  font-weight: 600 !important;
  color: #ffffff !important;
  margin: 0 0 16px 0 !important;
}

.comp-final-cta p {
  font-size: 18px !important;
  color: rgba(255,255,255,0.7) !important;
  max-width: 600px !important;
  margin: 0 auto 32px !important;
}

.comp-final-cta-btns {
  display: flex !important;
  justify-content: center !important;
  gap: 16px !important;
  flex-wrap: wrap !important;
}

/* ---------- Buttons ---------- */
.comp-btn-primary {
  background: var(--jrv-blue) !important;
  color: #ffffff !important;
  border: none !important;
  padding: 14px 28px !important;
  border-radius: 8px !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  cursor: pointer;
  text-decoration: none !important;
  display: inline-block !important;
  transition: background 0.2s !important;
}

.comp-btn-primary:hover {
  background: var(--jrv-deep-blue) !important;
  color: #ffffff !important;
}

.comp-btn-secondary {
  background: transparent !important;
  color: #ffffff !important;
  border: 1px solid rgba(255,255,255,0.25) !important;
  padding: 14px 28px !important;
  border-radius: 8px !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  cursor: pointer;
  text-decoration: none !important;
  display: inline-block !important;
  transition: border-color 0.2s !important;
}

.comp-btn-secondary:hover {
  border-color: rgba(255,255,255,0.5) !important;
  color: #ffffff !important;
}

/* ---------- Air Compressor LP Responsive ---------- */
@media (max-width: 1200px) {
  .comp-hero {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
    padding-top: 80px !important;
    padding-bottom: 80px !important;
    justify-items: center !important;
  }
  
  .comp-hero-content {
    max-width: 600px !important;
    text-align: center !important;
  }
  
  .comp-hero-content .comp-hero-stats,
  .comp-hero-content .comp-hero-ctas,
  .comp-hero-content .comp-trust-row {
    justify-content: center !important;
  }
  
  .comp-hero-product {
    max-width: 400px !important;
    width: 100% !important;
  }
  
  .comp-category-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  
  .comp-featured-grid {
    grid-template-columns: 1fr !important;
    max-width: 600px;
  }
  
  .comp-lineup-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  
  .comp-rotary-categories {
    grid-template-columns: 1fr !important;
  }
  
  .comp-rotary-type.featured {
    grid-column: auto !important;
  }
  
  .comp-gas-grid {
    grid-template-columns: 1fr !important;
  }
  
  .comp-advantage-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }
  
  .comp-lead-content {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
  }
  
  .comp-why-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  
  .qualification-checklist {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 768px) {
  .comp-hero,
  .comp-value-strip,
  .comp-categories,
  .comp-featured,
  .comp-lineup,
  .comp-rotary,
  .comp-gas,
  .comp-advantage,
  .comp-comparison,
  .comp-why,
  .comp-lead,
  .comp-final-cta {
    padding-left: 24px !important;
    padding-right: 24px !important;
  }
  
  .comp-hero {
    padding-top: 60px !important;
    padding-bottom: 60px !important;
  }
  
  .comp-hero h1 {
    font-size: 36px !important;
  }
  
  .comp-hero-stats {
    flex-wrap: wrap;
    gap: 24px;
  }
  
  .comp-stat-divider {
    display: none;
  }
  
  .comp-hero-ctas {
    flex-direction: column;
    align-items: center;
  }
  
  .comp-value-strip {
    grid-template-columns: 1fr 1fr !important;
  }
  
  .comp-value-item {
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
  
  .comp-value-item:nth-child(2),
  .comp-value-item:nth-child(4) {
    border-right: none;
  }
  
  .comp-categories,
  .comp-featured,
  .comp-lineup,
  .comp-rotary,
  .comp-gas,
  .comp-advantage,
  .comp-comparison,
  .comp-why,
  .comp-lead {
    padding-top: 60px !important;
    padding-bottom: 60px !important;
  }
  
  .comp-category-grid,
  .comp-lineup-grid,
  .comp-why-grid {
    grid-template-columns: 1fr !important;
  }
  
  .comp-featured-ctas {
    grid-template-columns: 1fr !important;
  }
  
  .comp-section-title {
    font-size: 28px !important;
  }
  
  .comp-specs-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  
  .rotary-type-header {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 8px !important;
  }
  
  .rotary-hp-grid {
    gap: 6px !important;
  }
  
  .hp-option {
    font-size: 11px !important;
    padding: 4px 8px !important;
  }
  
  .comp-rotary-features-strip {
    flex-direction: column !important;
    align-items: center !important;
    gap: 12px !important;
  }
  
  .comp-combo-features {
    flex-direction: column !important;
    gap: 12px !important;
  }
  
  .comp-system-flow {
    flex-direction: column !important;
  }
  
  .comp-system-arrow {
    transform: rotate(90deg) !important;
  }
  
  .comp-system-builder {
    padding: 32px 20px !important;
  }
  
  .comp-final-cta h2 {
    font-size: 28px !important;
  }
  
  .comp-final-cta-btns {
    flex-direction: column;
    align-items: center;
  }
  
  .comp-lead-title {
    font-size: 28px !important;
  }
  
  .comp-lead-response-badge {
    padding: 14px 16px !important;
    gap: 12px !important;
  }
}

@media (max-width: 480px) {
  .comp-value-strip {
    grid-template-columns: 1fr !important;
  }
  
  .comp-value-item {
    border-right: none !important;
  }
  
  .comp-specs-grid {
    grid-template-columns: 1fr !important;
  }
}
