/* -------------------------------------------------------------
 * Corporate Light Homepage Styling
 * ------------------------------------------------------------- */

/* Hero Section */
.hero-section {
  position: relative;
  padding: 5rem 0 6rem 0;
  background: radial-gradient(circle at 70% 30%, rgba(227, 6, 19, 0.04) 0%, #ffffff 80%);
  border-bottom: 1px solid var(--border-color);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-title {
  font-size: clamp(2.5rem, 4.5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.15;
  color: var(--text-main);
  letter-spacing: -0.5px;
  word-break: break-word;
  overflow-wrap: break-word;
}

.hero-title .highlight {
  color: var(--brand-red);
  display: inline;
  word-break: break-word;
  overflow-wrap: break-word;
}

.hero-title-br {
  display: none;
}

@media (max-width: 768px) {
  .hero-title-br {
    display: inline;
  }
}

.hero-badge {
  background: rgba(220, 38, 38, 0.08) !important;
  color: var(--brand-red) !important;
  border: 1px solid rgba(220, 38, 38, 0.2) !important;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  max-width: 100%;
  word-break: break-word;
  overflow-wrap: break-word;
}

.hero-subtitle {
  font-size: 1.05rem;
  color: #475569;
  margin: 1rem 0 1.4rem 0;
  line-height: 1.6;
  max-width: 100%;
  word-break: break-word;
  overflow-wrap: break-word;
}

.btn-hero-primary {
  padding: 0.95rem 1.8rem;
  font-weight: 800;
  font-size: 1rem;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(220, 38, 38, 0.25);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
}

.btn-hero-outline {
  padding: 0.95rem 1.5rem;
  font-weight: 700;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
}

.btn-spotlight-catalog {
  justify-content: center;
  font-size: 0.88rem;
  padding: 0.75rem;
  font-weight: 800;
  background: #dc2626 !important;
  border-color: #dc2626 !important;
  color: #ffffff !important;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-spotlight-order {
  justify-content: center;
  font-size: 0.88rem;
  padding: 0.75rem 1rem;
  font-weight: 800;
  border-color: #ffffff !important;
  background: #ffffff !important;
  color: #000000 !important;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-spotlight-order:hover {
  background: #f1f5f9 !important;
  color: #000000 !important;
}

.ribbon-item {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  word-break: break-word;
  overflow-wrap: break-word;
}

.hero-cta-group {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.hero-image-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-elevated);
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Stat Counter Bar */
.stat-counter-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: var(--shadow-subtle);
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--brand-red);
}

.stat-label {
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 600;
  margin-top: 0.2rem;
}

/* Services Grid */
.section-services {
  padding: 6rem 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.2rem;
  margin-top: 3rem;
}

.service-card {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-top: 4px solid var(--brand-red);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-subtle);
  cursor: pointer;
  position: relative;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: var(--brand-red);
  box-shadow: 0 16px 32px rgba(220, 38, 38, 0.12);
}

.card-img-wrap {
  height: 150px;
  overflow: hidden;
  position: relative;
  background: var(--bg-card-light);
}

.card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.service-card:hover .card-img {
  transform: scale(1.05);
}

.card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.card-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 0.8rem;
}

.card-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.2rem;
  flex: 1;
}

.card-link {
  color: var(--brand-red);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

/* Values Section */
.section-values {
  padding: 5rem 0;
  background: #ffffff;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.value-box {
  background: var(--bg-subtle);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 2rem;
  text-align: center;
  transition: all 0.25s ease;
}

.value-box:hover {
  background: #ffffff;
  border-color: var(--brand-red);
  box-shadow: var(--shadow-subtle);
}

.value-icon-wrap {
  width: 70px;
  height: 70px;
  margin: 0 auto 1.5rem auto;
  border-radius: 50%;
  background: var(--primary-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
}

.value-icon-wrap img {
  width: 40px;
  height: 40px;
}

.value-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 0.6rem;
}

.value-desc {
  color: var(--text-muted);
  font-size: 0.93rem;
}

@media (max-width: 1200px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .values-grid {
    grid-template-columns: 1fr;
  }
  .stat-counter-bar {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 540px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

/* -------------------------------------------------------------
 * 4-Step Repair Quote Estimator Wizard Styles
 * ------------------------------------------------------------- */
.quote-wizard-section {
  padding: 4.5rem 0;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
  border-bottom: 1px solid var(--border-color);
}

.wizard-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 24px;
  box-shadow: 0 20px 45px -10px rgba(15, 23, 42, 0.08);
  padding: 2.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

.wizard-steps-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2.5rem;
  position: relative;
  gap: 0.5rem;
}

.wizard-step-pill {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.75rem 1rem;
  border-radius: 14px;
  background: #f1f5f9;
  color: #64748b;
  font-weight: 700;
  font-size: 0.88rem;
  transition: all 0.3s ease;
}

.wizard-step-pill.active {
  background: #0f172a;
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.2);
}

.wizard-step-pill.completed {
  background: #f0fdf4;
  color: #166534;
  border: 1px solid #bbf7d0;
}

.wizard-step-num {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(0,0,0,0.1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 800;
}

.wizard-step-pill.active .wizard-step-num {
  background: var(--brand-red);
  color: #ffffff;
}

.wizard-step-pane {
  display: none;
  animation: wizardFadeIn 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.wizard-step-pane.active {
  display: block;
}

@keyframes wizardFadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.opt-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  margin-top: 1.5rem;
}

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

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

.wiz-opt-card {
  background: #ffffff;
  border: 2px solid #e2e8f0;
  border-radius: 16px;
  padding: 1.4rem;
  cursor: pointer;
  transition: all 0.25s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}

.wiz-opt-card:hover {
  border-color: #cbd5e1;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.04);
}

.wiz-opt-card.selected {
  border-color: var(--primary-cta);
  background: #fff5f5;
  box-shadow: 0 8px 25px rgba(220, 38, 38, 0.15);
}

.wiz-opt-card.selected::after {
  content: "✓";
  position: absolute;
  top: 12px;
  right: 12px;
  width: 22px;
  height: 22px;
  background: var(--primary-cta);
  color: #ffffff;
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wiz-price-badge {
  display: inline-block;
  background: rgba(220, 38, 38, 0.1);
  color: var(--primary-cta);
  font-weight: 800;
  font-size: 0.85rem;
  padding: 0.2rem 0.6rem;
  border-radius: 20px;
}

.wizard-nav-group {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 2.2rem;
  padding-top: 1.5rem;
  border-top: 1px solid #f1f5f9;
}

.checklist-step-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 1.2rem;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  margin-bottom: 0.8rem;
}

.checklist-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--text-main);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 0.9rem;
  flex-shrink: 0;
}

@media (max-width: 860px) {
  .wizard-steps-header {
    flex-wrap: wrap;
  }
  .wizard-step-pill {
    flex: 1 1 45%;
    font-size: 0.8rem;
  }
  .opt-card-grid, .opt-card-grid.grid-issues, .opt-card-grid.grid-2 {
    grid-template-columns: 1fr;
  }
}

/* -------------------------------------------------------------
 * Hero Catalog Tags & Featured Inventory Catalog Styling
 * ------------------------------------------------------------- */
.hero-cat-tags-group {
  margin-top: 1.2rem;
}

.hero-tags-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.hero-tags-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.hero-cat-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.4rem 0.85rem;
  background: #ffffff;
  border: 1px solid #cbd5e1;
  border-radius: 20px;
  color: #334155;
  font-size: 0.83rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.25s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
}

.hero-cat-tag:hover {
  background: #0f172a;
  color: #ffffff;
  border-color: #0f172a;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.15);
}

.btn-inventory-hero {
  border-color: #0f172a !important;
  color: #0f172a !important;
  font-weight: 800 !important;
  background: #ffffff !important;
  transition: all 0.3s ease !important;
}

.btn-inventory-hero:hover {
  background: #0f172a !important;
  color: #ffffff !important;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.2) !important;
}

/* Hero Spotlight Card Deck Styling */
.hero-spotlight-wrapper {
  position: relative;
  width: 100%;
}

.hero-spotlight-card {
  background: #0f172a;
  color: #ffffff;
  border-radius: 24px;
  padding: 1.8rem;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
  width: 100%;
}

.hero-spot-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 1rem;
  gap: 0.5rem;
  width: 100%;
}

.hero-spot-title-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex: 1;
  min-width: 0;
}

.spot-live-dot {
  width: 10px;
  height: 10px;
  background: #22c55e;
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 10px #22c55e;
  flex-shrink: 0;
}

.spot-live-text {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #38bdf8;
  word-break: break-word;
  overflow-wrap: break-word;
}

.spot-stock-badge {
  font-size: 0.72rem;
  color: #94a3b8;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.1);
  padding: 0.2rem 0.6rem;
  border-radius: 12px;
  white-space: nowrap;
  flex-shrink: 0;
}

.hero-spot-tabs {
  display: flex;
  gap: 0.4rem;
  overflow-x: auto;
  padding-bottom: 0.8rem;
  margin-bottom: 1.2rem;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.hero-spot-tab {
  padding: 0.4rem 0.8rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 700;
  white-space: nowrap;
  cursor: pointer;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.hero-spot-tab.active {
  border-color: #ef4444;
  background: rgba(239, 68, 68, 0.2);
}

.hero-spot-grid {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 1.2rem;
  align-items: center;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 16px;
  padding: 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-spot-img-box {
  height: 110px;
  border-radius: 12px;
  overflow: hidden;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
}

.hero-spot-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: #ffffff;
  margin: 0.2rem 0 0.4rem 0;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  word-break: break-word;
  overflow-wrap: break-word;
}

.hero-spot-price {
  font-size: 1.35rem;
  font-weight: 900;
  color: #ef4444;
}

.hero-spot-actions {
  margin-top: 1.2rem;
  display: flex;
  gap: 0.8rem;
  width: 100%;
}

.hero-spot-actions .btn {
  box-sizing: border-box;
}

.hero-spot-ribbon {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1.4rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.78rem;
  color: #94a3b8;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.ribbon-item {
  white-space: normal;
  word-break: break-word;
  overflow-wrap: break-word;
}

/* Home Featured Inventory Section */
.home-inventory-section {
  padding: 5rem 0;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  border-bottom: 1px solid var(--border-color);
}

.home-products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.home-product-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  cursor: pointer;
}

.home-product-card:hover {
  transform: translateY(-8px);
  border-color: var(--brand-red);
  box-shadow: 0 16px 35px rgba(220, 38, 38, 0.12);
}

.home-prod-img-wrap {
  height: 180px;
  position: relative;
  overflow: hidden;
  background: #f1f5f9;
}

.home-prod-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.home-product-card:hover .home-prod-img {
  transform: scale(1.06);
}

.home-prod-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(8px);
  color: #ffffff;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 0.25rem 0.65rem;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.home-prod-body {
  padding: 1.2rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.home-prod-sku {
  font-size: 0.75rem;
  font-weight: 700;
  color: #94a3b8;
  margin-bottom: 0.3rem;
  text-transform: uppercase;
}

.home-prod-title {
  font-size: 1rem;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 0.8rem 0;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.7rem;
}

.home-prod-price-row {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
  margin-top: auto;
}

.home-prod-price {
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--brand-red);
}

.home-prod-regular {
  font-size: 0.85rem;
  color: #94a3b8;
  text-decoration: line-through;
}

/* -------------------------------------------------------------
 * Full Page Mobile & Tablet Responsive Layout Engine
 * ------------------------------------------------------------- */
@media (max-width: 1024px) {
  .hero-section {
    padding: 3rem 0 3.5rem 0 !important;
  }
  .hero-grid {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }
  .hero-spotlight-wrapper {
    max-width: 600px !important;
    margin: 0 auto !important;
    width: 100% !important;
  }
  .home-inventory-section {
    padding: 3.5rem 0 !important;
  }
  .home-products-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 1.2rem !important;
  }
  .quote-wizard-section {
    padding: 3rem 0 !important;
  }
  .wizard-card {
    padding: 2rem 1.5rem !important;
    border-radius: 20px !important;
  }
  .section-services {
    padding: 3.5rem 0 !important;
  }
  .services-grid {
    grid-template-columns: repeat(3, 1fr) !important;
  }
  .section-values {
    padding: 3.5rem 0 !important;
  }
  .values-grid {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }
}

@media (max-width: 860px) {
  .wizard-steps-header {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 0.6rem !important;
  }
  .wizard-step-pill {
    padding: 0.6rem 0.8rem !important;
    font-size: 0.8rem !important;
  }
  .wizard-step4-grid {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding: 2.2rem 0 2.8rem 0 !important;
  }
  .hero-title {
    font-size: clamp(1.4rem, 4.8vw, 2.1rem) !important;
    line-height: 1.25 !important;
    word-break: break-word !important;
    overflow-wrap: break-word !important;
  }
  .hero-subtitle {
    font-size: 0.95rem !important;
    line-height: 1.55 !important;
    margin: 0.8rem 0 1.2rem 0 !important;
  }
  .hero-cat-tags-group {
    margin-top: 1rem !important;
  }
  .hero-tags-label {
    font-size: 0.75rem !important;
    margin-bottom: 0.4rem !important;
  }
  .hero-tags-list {
    gap: 0.4rem !important;
  }
  .hero-cat-tag {
    padding: 0.35rem 0.75rem !important;
    font-size: 0.78rem !important;
  }
  .hero-cta-group {
    margin-top: 1.4rem !important;
    flex-direction: column !important;
    gap: 0.75rem !important;
    width: 100% !important;
  }
  .hero-cta-group .btn {
    width: 100% !important;
    justify-content: center !important;
    padding: 0.85rem 1.2rem !important;
    font-size: 0.92rem !important;
  }
  .hero-spotlight-card {
    padding: 1.2rem 1rem !important;
    border-radius: 18px !important;
  }
  .hero-spot-header {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 0.4rem !important;
  }
  .hero-spot-ribbon {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 0.4rem !important;
    font-size: 0.73rem !important;
  }
  .hero-spot-grid {
    grid-template-columns: 100px 1fr !important;
    gap: 0.9rem !important;
    padding: 1rem !important;
  }
  .hero-spot-actions {
    flex-direction: column !important;
    gap: 0.6rem !important;
    margin-top: 1rem !important;
  }
  .hero-spot-actions .btn {
    width: 100% !important;
    justify-content: center !important;
  }
  .stat-counter-bar {
    grid-template-columns: repeat(2, 1fr) !important;
    padding: 1.2rem !important;
    gap: 1rem !important;
    margin-top: 2rem !important;
  }
  .stat-number {
    font-size: 1.7rem !important;
  }
  .stat-label {
    font-size: 0.8rem !important;
  }
  .home-summary-section {
    padding: 1.2rem 0 !important;
  }
  .bluf-box {
    padding: 1rem 1.2rem !important;
    border-radius: 12px !important;
  }
  .bluf-text {
    font-size: 0.88rem !important;
    line-height: 1.55 !important;
  }
  .section-title {
    font-size: 1.65rem !important;
  }
  .section-subtitle {
    font-size: 0.9rem !important;
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 1rem !important;
  }
}

@media (max-width: 580px) {
  .hero-section {
    padding: 1.8rem 0 2.2rem 0 !important;
  }
  .wizard-card {
    padding: 1.2rem 0.9rem !important;
    border-radius: 16px !important;
  }
  .opt-card-grid, .opt-card-grid.grid-issues, .opt-card-grid.grid-2 {
    grid-template-columns: 1fr !important;
    gap: 0.8rem !important;
  }
  .wiz-opt-card {
    padding: 1rem !important;
  }
  .services-grid {
    grid-template-columns: 1fr !important;
  }
  .home-products-grid {
    grid-template-columns: 1fr !important;
    gap: 1.2rem !important;
  }
  .home-product-card {
    border-radius: 16px !important;
  }
  .home-prod-img-wrap {
    height: 180px !important;
  }
  .home-prod-body {
    padding: 1rem !important;
  }
  .home-prod-actions {
    grid-template-columns: 1fr 1fr !important;
    gap: 0.5rem !important;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 0.85rem !important;
  }
  .hero-title {
    font-size: 1.35rem !important;
    line-height: 1.25 !important;
    word-break: break-word !important;
    overflow-wrap: break-word !important;
  }
  .hero-subtitle {
    font-size: 0.86rem !important;
  }
  .hero-spotlight-card {
    padding: 0.9rem 0.8rem !important;
    border-radius: 16px !important;
  }
  .hero-spot-header {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 0.35rem !important;
    margin-bottom: 0.9rem !important;
    padding-bottom: 0.75rem !important;
  }
  .spot-live-text {
    font-size: 0.68rem !important;
    letter-spacing: 0.2px !important;
  }
  .spot-stock-badge {
    font-size: 0.68rem !important;
    padding: 0.15rem 0.5rem !important;
  }
  .hero-spot-tabs {
    margin-bottom: 0.9rem !important;
    padding-bottom: 0.6rem !important;
  }
  .hero-spot-tab {
    padding: 0.3rem 0.65rem !important;
    font-size: 0.72rem !important;
    border-radius: 12px !important;
  }
  .hero-spot-grid {
    grid-template-columns: 75px 1fr !important;
    gap: 0.65rem !important;
    padding: 0.75rem !important;
    border-radius: 14px !important;
  }
  .hero-spot-img-box {
    height: 75px !important;
    padding: 4px !important;
  }
  .hero-spot-title {
    font-size: 0.85rem !important;
    line-height: 1.25 !important;
    margin-bottom: 0.25rem !important;
  }
  .hero-spot-price {
    font-size: 1.1rem !important;
  }
  .hero-spot-actions {
    flex-direction: column !important;
    gap: 0.5rem !important;
    margin-top: 0.8rem !important;
  }
  .hero-spot-actions .btn {
    width: 100% !important;
    padding: 0.65rem 0.6rem !important;
    font-size: 0.8rem !important;
  }
  .hero-spot-ribbon {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 0.35rem !important;
    margin-top: 1rem !important;
    padding-top: 0.75rem !important;
  }
  .ribbon-item {
    font-size: 0.7rem !important;
  }
  .home-prod-actions {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 360px) {
  .hero-spot-grid {
    grid-template-columns: 1fr !important;
    text-align: center !important;
  }
  .hero-spot-img-box {
    height: 100px !important;
    margin: 0 auto 0.5rem auto !important;
  }
  .wizard-steps-header {
    grid-template-columns: 1fr !important;
  }
}





