/* ============================================
   Fix Issue Page - Modern Redesign
   ============================================ */

/* Base & Container */
.fix-page {
  --accent: 59 130 246;
  position: relative;
  min-height: 100vh;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
  overflow-x: hidden;
}

.fix-svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.fix-container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

@media (min-width: 640px) {
  .fix-container {
    padding: 0 24px;
  }
}

@media (min-width: 1024px) {
  .fix-container {
    padding: 0 32px;
  }
}

/* ============================================
   Hero Section
   ============================================ */
.fix-hero {
  position: relative;
  padding: 120px 0 60px;
  overflow: hidden;
}

.fix-hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.fix-hero-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(37, 99, 235, 0.15), transparent),
    radial-gradient(ellipse 60% 40% at 100% 0%, rgba(59, 130, 246, 0.1), transparent),
    radial-gradient(ellipse 50% 30% at 0% 100%, rgba(59, 130, 246, 0.08), transparent);
}

.fix-hero-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(rgba(148, 163, 184, 0.15) 1px, transparent 1px);
  background-size: 24px 24px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,0.3) 0%, transparent 60%);
  -webkit-mask-image: linear-gradient(180deg, rgba(0,0,0,0.3) 0%, transparent 60%);
}

.fix-hero-orbs {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.fix-hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.4;
  animation: fix-float 20s ease-in-out infinite;
}

.fix-hero-orb-1 {
  width: 400px;
  height: 400px;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.3), rgba(59, 130, 246, 0.2));
  top: -100px;
  right: -100px;
  animation-delay: 0s;
}

.fix-hero-orb-2 {
  width: 300px;
  height: 300px;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.25), rgba(37, 99, 235, 0.15));
  bottom: -50px;
  left: -50px;
  animation-delay: -7s;
}

.fix-hero-orb-3 {
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.2), rgba(59, 130, 246, 0.15));
  top: 40%;
  left: 60%;
  animation-delay: -14s;
}

@keyframes fix-float {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  25% {
    transform: translate(20px, -20px) scale(1.05);
  }
  50% {
    transform: translate(-10px, 10px) scale(0.95);
  }
  75% {
    transform: translate(-20px, -10px) scale(1.02);
  }
}

.fix-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.fix-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px 10px 14px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(37, 99, 235, 0.2);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: #2563eb;
  box-shadow:
    0 4px 6px -1px rgba(0, 0, 0, 0.05),
    0 20px 25px -5px rgba(37, 99, 235, 0.1);
  backdrop-filter: blur(8px);
  margin-bottom: 24px;
}

.fix-hero-badge-icon {
  width: 18px;
  height: 18px;
  color: #f59e0b;
}

.fix-hero-title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  color: #0f172a;
  margin: 0 0 20px;
  letter-spacing: -0.02em;
}

.fix-hero-title-highlight {
  background: linear-gradient(135deg, #2563eb, #3b82f6, #60a5fa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.fix-hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  line-height: 1.6;
  color: #64748b;
  margin: 0 auto 40px;
  max-width: 600px;
}

.fix-hero-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.fix-hero-stat {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 24px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(226, 232, 240, 0.8);
  border-radius: 20px;
  box-shadow:
    0 4px 6px -1px rgba(0, 0, 0, 0.03),
    0 10px 15px -3px rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(8px);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.fix-hero-stat:hover {
  transform: translateY(-2px);
  box-shadow:
    0 10px 15px -3px rgba(0, 0, 0, 0.05),
    0 20px 25px -5px rgba(37, 99, 235, 0.1);
}

.fix-hero-stat-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(59, 130, 246, 0.1));
  border-radius: 14px;
  color: #3b82f6;
}

.fix-hero-stat-icon svg {
  width: 22px;
  height: 22px;
}

.fix-hero-stat-content {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.fix-hero-stat-value {
  font-size: 18px;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
}

.fix-hero-stat-label {
  font-size: 12px;
  font-weight: 500;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ============================================
   Category Navigation
   ============================================ */
.fix-nav {
  position: sticky;
  top: 80px;
  z-index: 100;
  padding: 16px 0;
  background: rgba(248, 250, 252, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.6);
}

.fix-nav-scroll {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 4px;
  margin: -4px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.fix-nav-scroll::-webkit-scrollbar {
  display: none;
}

.fix-nav-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(226, 232, 240, 0.8);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: #334155;
  white-space: nowrap;
  transition: all 0.2s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
  flex-shrink: 0;
}

.fix-nav-item:hover {
  transform: translateY(-2px);
  border-color: rgb(var(--accent) / 0.3);
  box-shadow: 0 8px 16px rgb(var(--accent) / 0.12);
  color: rgb(var(--accent));
}

.fix-nav-item-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgb(var(--accent));
  box-shadow: 0 0 12px rgb(var(--accent) / 0.4);
}

.fix-nav-item-text {
  line-height: 1;
}

/* ============================================
   Main Content Area
   ============================================ */
.fix-main {
  padding: 48px 0 80px;
}

/* ============================================
   Section Styles
   ============================================ */
.fix-section {
  scroll-margin-top: 160px;
}

.fix-section + .fix-section {
  margin-top: 64px;
}

.fix-section-header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
}

.fix-section-icon-wrap {
  position: relative;
  flex-shrink: 0;
}

.fix-section-icon {
  position: relative;
  z-index: 1;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgb(var(--accent)), rgb(var(--accent) / 0.8));
  border-radius: 18px;
  color: #fff;
  box-shadow: 0 8px 16px rgb(var(--accent) / 0.3);
}

.fix-section-icon svg {
  width: 26px;
  height: 26px;
}

.fix-section-icon-glow {
  position: absolute;
  inset: -4px;
  background: rgb(var(--accent) / 0.2);
  border-radius: 22px;
  filter: blur(12px);
}

.fix-section-info {
  padding-top: 4px;
}

.fix-section-title {
  font-size: clamp(1.5rem, 3vw, 1.75rem);
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 6px;
  line-height: 1.2;
}

.fix-section-desc {
  font-size: 15px;
  color: #64748b;
  margin: 0;
  max-width: 500px;
  line-height: 1.5;
}

/* ============================================
   Product Cards Grid
   ============================================ */
.fix-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 768px) {
  .fix-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
}

@media (min-width: 1280px) {
  .fix-cards {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}

/* ============================================
   Modern Static Card Component
   ============================================ */
.fix-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border: 1px solid rgba(226, 232, 240, 0.8);
  border-radius: 24px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow:
    0 4px 6px -1px rgba(0, 0, 0, 0.03),
    0 10px 15px -3px rgba(0, 0, 0, 0.05);
  padding: 24px;
}

.fix-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, rgb(var(--accent)), rgb(var(--accent) / 0.6));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.fix-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(600px circle at 10% 0%, rgb(var(--accent) / 0.06), transparent 50%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.fix-card:hover {
  transform: translateY(-4px);
  border-color: rgb(var(--accent) / 0.25);
  box-shadow:
    0 20px 25px -5px rgba(0, 0, 0, 0.05),
    0 25px 50px -12px rgb(var(--accent) / 0.15);
}

.fix-card:hover::before,
.fix-card:hover::after {
  opacity: 1;
}

/* Card Header */
.fix-card-header {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}

.fix-card-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgb(var(--accent) / 0.1), rgb(var(--accent) / 0.05));
  border: 1px solid rgb(var(--accent) / 0.15);
  border-radius: 16px;
  color: rgb(var(--accent));
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.fix-card:hover .fix-card-icon {
  background: linear-gradient(135deg, rgb(var(--accent)), rgb(var(--accent) / 0.85));
  color: #fff;
  box-shadow: 0 8px 16px rgb(var(--accent) / 0.3);
  transform: scale(1.05);
}

.fix-card-icon svg {
  width: 24px;
  height: 24px;
}

.fix-card-badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  background: linear-gradient(135deg, rgb(var(--accent) / 0.1), rgb(var(--accent) / 0.05));
  border: 1px solid rgb(var(--accent) / 0.2);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  color: rgb(var(--accent));
  letter-spacing: 0.02em;
  white-space: nowrap;
}

/* Card Content - Title & Description */
.fix-card-content {
  position: relative;
  z-index: 1;
  margin-bottom: 20px;
}

.fix-card-title {
  font-size: 18px;
  font-weight: 600;
  color: #0f172a;
  margin: 0 0 8px;
  line-height: 1.3;
}

.fix-card-desc {
  font-size: 14px;
  color: #64748b;
  margin: 0;
  line-height: 1.5;
}

/* Card Features Section */
.fix-card-features {
  position: relative;
  z-index: 1;
  padding: 20px;
  margin: 0 -24px;
  border-top: 1px solid rgba(226, 232, 240, 0.8);
  background: linear-gradient(180deg, rgba(248, 250, 252, 0.8) 0%, rgba(255, 255, 255, 0.5) 100%);
}

.fix-card-features-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #94a3b8;
  margin-bottom: 14px;
}

.fix-card-features-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.fix-card-features-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: #475569;
  line-height: 1.5;
}

.fix-card-check {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: rgb(var(--accent));
  margin-top: 1px;
}

.fix-card-actions {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 12px;
  padding: 20px;
  padding-top: 0;
  margin: 0 -24px;
  margin-bottom: -24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.5) 0%, rgba(248, 250, 252, 0.8) 100%);
}

.fix-card-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 20px;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.2s ease;
  text-decoration: none;
}

.fix-card-btn svg {
  width: 18px;
  height: 18px;
  transition: transform 0.2s ease;
}

.fix-card-btn-primary {
  flex: 1;
  background: linear-gradient(135deg, rgb(var(--accent)), rgb(var(--accent) / 0.85));
  color: #fff;
  box-shadow: 0 6px 16px rgb(var(--accent) / 0.35);
}

.fix-card-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgb(var(--accent) / 0.45);
}

.fix-card-btn-primary:hover svg {
  transform: translateX(4px);
}

.fix-card-btn-secondary {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(148, 163, 184, 0.35);
  color: #475569;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.fix-card-btn-secondary:hover {
  background: #fff;
  border-color: rgb(var(--accent) / 0.35);
  color: rgb(var(--accent));
  box-shadow: 0 8px 20px rgb(var(--accent) / 0.12);
}

/* Mobile card adjustments */
@media (max-width: 639px) {
  .fix-card {
    padding: 20px;
  }

  .fix-card-features {
    padding: 16px;
    margin: 0 -20px;
  }

  .fix-card-actions {
    flex-direction: column;
    padding: 16px;
    margin: 0 -20px;
    margin-bottom: -20px;
  }

  .fix-card-btn-secondary {
    order: 2;
  }
}

/* ============================================
   Help CTA Section
   ============================================ */
.fix-help {
  margin-top: 64px;
  padding: 32px;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.08), rgba(59, 130, 246, 0.05));
  border: 1px solid rgba(37, 99, 235, 0.15);
  border-radius: 28px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  overflow: hidden;
}

.fix-help::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.1), transparent 70%);
  pointer-events: none;
}

.fix-help-content {
  display: flex;
  align-items: center;
  gap: 20px;
  position: relative;
  z-index: 1;
}

.fix-help-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #2563eb, #3b82f6);
  border-radius: 20px;
  color: #fff;
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.35);
  flex-shrink: 0;
}

.fix-help-icon svg {
  width: 28px;
  height: 28px;
}

.fix-help-text {
  flex: 1;
}

.fix-help-title {
  font-size: 20px;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 6px;
}

.fix-help-desc {
  font-size: 15px;
  color: #64748b;
  margin: 0;
  line-height: 1.5;
}

.fix-help-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 28px;
  background: linear-gradient(135deg, #2563eb, #3b82f6);
  color: #fff;
  border-radius: 16px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.35);
  transition: all 0.2s ease;
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}

.fix-help-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(37, 99, 235, 0.45);
}

.fix-help-btn svg {
  width: 18px;
  height: 18px;
  transition: transform 0.2s ease;
}

.fix-help-btn:hover svg {
  transform: translateX(4px);
}

@media (min-width: 768px) {
  .fix-help {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 40px 48px;
  }
}

/* ============================================
   Responsive Adjustments
   ============================================ */

/* Mobile (< 640px) */
@media (max-width: 639px) {
  .fix-hero {
    padding: 100px 0 40px;
  }

  .fix-hero-stats {
    flex-direction: column;
    align-items: stretch;
  }

  .fix-hero-stat {
    justify-content: flex-start;
  }

  .fix-nav {
    top: 70px;
  }

  .fix-nav-scroll {
    padding-left: 4px;
    padding-right: 4px;
  }

  .fix-section-header {
    flex-direction: column;
    gap: 12px;
  }

  .fix-section-icon {
    width: 48px;
    height: 48px;
  }

  .fix-section-icon svg {
    width: 22px;
    height: 22px;
  }

  .fix-help {
    padding: 24px;
  }

  .fix-help-content {
    flex-direction: column;
    text-align: center;
  }

  .fix-help-btn {
    width: 100%;
  }
}

/* Tablet (640px - 1023px) */
@media (min-width: 640px) and (max-width: 1023px) {
  .fix-hero {
    padding: 110px 0 50px;
  }

  .fix-hero-orb-1 {
    width: 300px;
    height: 300px;
  }

  .fix-hero-orb-2 {
    width: 200px;
    height: 200px;
  }

  .fix-hero-orb-3 {
    width: 150px;
    height: 150px;
  }
}

/* Large screens (>= 1280px) */
@media (min-width: 1280px) {
  .fix-cards {
    grid-template-columns: repeat(3, 1fr);
  }

  .fix-section + .fix-section {
    margin-top: 80px;
  }
}

/* ============================================
   Reduced Motion
   ============================================ */
@media (prefers-reduced-motion: reduce) {
  .fix-hero-orb {
    animation: none;
  }

  .fix-card,
  .fix-card-icon,
  .fix-card-btn,
  .fix-nav-item,
  .fix-hero-stat,
  .fix-help-btn {
    transition: none;
  }

  .fix-card-shine {
    display: none;
  }
}

/* ============================================
   Dark Mode Support (Optional)
   ============================================ */
@media (prefers-color-scheme: dark) {
  /* Add dark mode styles if needed */
}

/* ============================================
   Print Styles
   ============================================ */
@media print {
  .fix-hero-bg,
  .fix-card-shine,
  .fix-nav {
    display: none;
  }

  .fix-card {
    break-inside: avoid;
    box-shadow: none;
    border: 1px solid #ccc;
  }
}

/* ============================================
   Fix Issue Wizard
   ============================================ */

.fix-wizard {
  display: none;
}

.fix-wizard-shell {
  position: relative;
  background: #ffffff;
  border: 1px solid rgba(226, 232, 240, 0.8);
  border-radius: 28px;
  padding: 28px;
  box-shadow:
    0 20px 40px rgba(15, 23, 42, 0.12),
    0 8px 16px rgba(15, 23, 42, 0.08);
  overflow: hidden;
}

.fix-wizard-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(400px circle at top right, rgba(37, 99, 235, 0.1), transparent 60%);
  pointer-events: none;
}

.fix-wizard-top {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 24px;
}

.fix-wizard-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #2563eb;
  margin: 0 0 10px;
}

.fix-wizard-title {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 10px;
}

.fix-wizard-subtitle {
  font-size: 15px;
  color: #64748b;
  margin: 0;
  max-width: 520px;
  line-height: 1.6;
}

.fix-wizard-trust {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
}

.fix-wizard-trust-item {
  background: rgba(248, 250, 252, 0.9);
  border: 1px solid rgba(226, 232, 240, 0.8);
  border-radius: 16px;
  padding: 12px 14px;
  text-align: left;
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.05);
}

.fix-wizard-trust-value {
  font-size: 16px;
  font-weight: 700;
  color: #0f172a;
  display: block;
}

.fix-wizard-trust-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #94a3b8;
}

.fix-stepper {
  list-style: none;
  padding: 0;
  margin: 0 0 10px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  position: relative;
  z-index: 1;
}

.fix-stepper-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(248, 250, 252, 0.9);
  border: 1px solid rgba(226, 232, 240, 0.8);
  color: #64748b;
  font-weight: 600;
  font-size: 13px;
  transition: all 0.2s ease;
}

.fix-stepper-item.is-active {
  background: rgba(37, 99, 235, 0.1);
  border-color: rgba(37, 99, 235, 0.3);
  color: #2563eb;
}

.fix-stepper-dot {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #e2e8f0;
  color: #475569;
  font-size: 12px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.fix-stepper-item.is-active .fix-stepper-dot {
  background: #2563eb;
  color: #ffffff;
}

.fix-stepper-track {
  height: 6px;
  background: rgba(226, 232, 240, 0.8);
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.fix-stepper-progress {
  display: block;
  height: 100%;
  width: 33%;
  background: linear-gradient(90deg, #3b82f6, #60a5fa);
  transition: width 0.3s ease;
}

.fix-stepper-status {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 13px;
  color: #64748b;
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}

.fix-stepper-status-value {
  font-weight: 600;
  color: #0f172a;
}

.fix-step {
  position: relative;
  z-index: 1;
}

.fix-step.is-active {
  animation: fix-fade-up 0.3s ease;
}

.fix-step-grid {
  display: grid;
  gap: 18px;
}

.fix-step-panel {
  background: rgba(248, 250, 252, 0.9);
  border: 1px solid rgba(226, 232, 240, 0.8);
  border-radius: 20px;
  padding: 18px;
}

.fix-step-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #64748b;
  margin-bottom: 12px;
}

.fix-step-note {
  margin: 14px 0 0;
  font-size: 13px;
  color: #94a3b8;
}

.fix-search {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #ffffff;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 16px;
  padding: 10px 12px;
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.05);
}

.fix-search-input {
  border: none;
  outline: none;
  flex: 1;
  font-size: 14px;
  color: #0f172a;
  background: transparent;
}

.fix-search-clear {
  background: rgba(148, 163, 184, 0.15);
  border: none;
  color: #475569;
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
}

.fix-suggestions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.fix-suggestion {
  border: 1px solid rgba(148, 163, 184, 0.3);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 600;
  color: #475569;
  background: #ffffff;
  cursor: pointer;
  transition: all 0.2s ease;
}

.fix-suggestion:hover {
  border-color: rgba(37, 99, 235, 0.4);
  color: #2563eb;
}

.fix-category-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

.fix-category-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 16px;
  border-radius: 18px;
  border: 1px solid rgba(226, 232, 240, 0.9);
  background: #ffffff;
  text-align: left;
  color: inherit;
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
}

.fix-category-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 18px;
  background: radial-gradient(200px circle at top right, rgb(var(--accent) / 0.12), transparent 60%);
  opacity: 0;
  transition: opacity 0.2s ease;
  pointer-events: none;
}

.fix-category-card:hover,
.fix-category-card.is-active {
  border-color: rgb(var(--accent) / 0.5);
  box-shadow: 0 14px 26px rgb(var(--accent) / 0.18);
  transform: translateY(-2px);
}

.fix-category-card:hover::after,
.fix-category-card.is-active::after {
  opacity: 1;
}

.fix-category-icon {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgb(var(--accent) / 0.12);
  color: rgb(var(--accent));
}

.fix-category-icon svg {
  width: 20px;
  height: 20px;
}

.fix-category-title {
  font-size: 14px;
  font-weight: 600;
  color: #0f172a;
}

.fix-category-desc {
  font-size: 12px;
  color: #64748b;
  line-height: 1.5;
}

.fix-category-card-ghost {
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.08), rgba(59, 130, 246, 0.05));
  border-style: dashed;
  text-decoration: none;
}

.fix-step-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.fix-quick-next {
  position: fixed;
  left: 50%;
  bottom: max(14px, calc(env(safe-area-inset-bottom) + 10px));
  transform: translateX(-50%);
  width: min(760px, calc(100% - 28px));
  z-index: 60;
}

.fix-quick-next-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: rgba(15, 23, 42, 0.92);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(148, 163, 184, 0.2);
  box-shadow: 0 12px 28px rgba(2, 6, 23, 0.28);
  border-radius: 14px;
  padding: 10px 12px;
}

.fix-quick-next-label {
  margin: 0;
  color: #e2e8f0;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.35;
}

.fix-quick-next .fix-primary-btn {
  box-shadow: none;
  min-height: 40px;
  padding: 10px 16px;
  white-space: nowrap;
}

.fix-issue-grid.has-quick-next {
  padding-bottom: 92px;
}

.fix-primary-btn,
.fix-secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

.fix-primary-btn {
  color: #ffffff;
  background: linear-gradient(135deg, #2563eb, #3b82f6);
  box-shadow: 0 12px 24px rgba(37, 99, 235, 0.3);
}

.fix-primary-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(37, 99, 235, 0.35);
}

.fix-secondary-btn {
  color: #334155;
  background: #ffffff;
  border: 1px solid rgba(148, 163, 184, 0.4);
}

.fix-secondary-btn:hover {
  border-color: rgba(37, 99, 235, 0.4);
  color: #2563eb;
}

.fix-link {
  color: #2563eb;
  font-weight: 600;
}

.fix-results-header {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 16px;
}

.fix-results-kicker {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 11px;
  color: #94a3b8;
  margin: 0 0 6px;
}

.fix-results-title {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 6px;
  color: #0f172a;
}

.fix-results-meta {
  font-size: 13px;
  color: #64748b;
  margin: 0;
}

.fix-results-actions {
  display: flex;
  gap: 10px;
}

.fix-results-search {
  margin-bottom: 16px;
}

.fix-results-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

.fix-result-card {
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 20px;
  padding: 18px;
  background: #ffffff;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border 0.2s ease;
}

.fix-result-card:hover {
  border-color: rgb(var(--accent) / 0.4);
  box-shadow: 0 18px 32px rgb(var(--accent) / 0.2);
  transform: translateY(-2px);
}

.fix-result-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.fix-result-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgb(var(--accent) / 0.12);
  color: rgb(var(--accent));
}

.fix-result-icon svg {
  width: 22px;
  height: 22px;
}

.fix-result-badge {
  background: rgba(15, 23, 42, 0.06);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 600;
  color: #0f172a;
}

.fix-result-title {
  font-size: 16px;
  font-weight: 600;
  color: #0f172a;
  margin: 0 0 8px;
}

.fix-result-desc {
  font-size: 13px;
  color: #64748b;
  margin: 0 0 12px;
  line-height: 1.5;
}

.fix-result-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 12px;
  color: #64748b;
  margin-bottom: 14px;
}

.fix-result-meta span {
  background: rgba(148, 163, 184, 0.15);
  padding: 4px 10px;
  border-radius: 999px;
}

.fix-result-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.fix-results-footer {
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(248, 250, 252, 0.9);
  border: 1px solid rgba(226, 232, 240, 0.8);
  font-size: 13px;
  color: #64748b;
}

.fix-results-help {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.fix-empty {
  padding: 24px;
  border-radius: 20px;
  background: rgba(248, 250, 252, 0.95);
  border: 1px dashed rgba(148, 163, 184, 0.4);
  text-align: center;
  display: grid;
  gap: 10px;
}

.fix-review-grid {
  display: grid;
  gap: 18px;
}

.fix-review-card {
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 24px;
  background: #ffffff;
  padding: 22px;
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.1);
}

.fix-review-header {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 16px;
}

.fix-review-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgb(var(--accent) / 0.12);
  color: rgb(var(--accent));
}

.fix-review-icon svg {
  width: 26px;
  height: 26px;
}

.fix-review-title {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  color: #0f172a;
}

.fix-review-kicker {
  margin: 0 0 6px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #94a3b8;
}

.fix-review-price {
  border-radius: 16px;
  background: rgba(248, 250, 252, 0.9);
  border: 1px solid rgba(226, 232, 240, 0.8);
  padding: 12px 16px;
  display: grid;
  gap: 4px;
  max-width: 240px;
}

.fix-review-price-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #94a3b8;
}

.fix-review-price-value {
  font-size: 18px;
  font-weight: 700;
  color: #0f172a;
}

.fix-review-price-meta {
  font-size: 12px;
  color: #64748b;
}

.fix-review-desc {
  font-size: 14px;
  color: #475569;
  line-height: 1.6;
  margin: 0 0 18px;
}

.fix-review-includes ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.fix-review-includes li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 13px;
  color: #475569;
}

.fix-review-check {
  width: 18px;
  height: 18px;
  color: #2563eb;
  flex-shrink: 0;
  margin-top: 2px;
}

.fix-review-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.fix-review-footer {
  margin-top: 16px;
  font-size: 13px;
  color: #64748b;
}

.fix-review-sidebar {
  display: grid;
  gap: 14px;
}

.fix-review-panel {
  border-radius: 18px;
  border: 1px solid rgba(226, 232, 240, 0.8);
  padding: 16px;
  background: rgba(248, 250, 252, 0.9);
  font-size: 13px;
  color: #64748b;
}

.fix-review-panel h4 {
  margin: 0 0 8px;
  font-size: 14px;
  color: #0f172a;
}

.fix-review-panel ul {
  padding-left: 18px;
  margin: 0;
  display: grid;
  gap: 6px;
}

.fix-review-panel-accent {
  border-color: rgba(37, 99, 235, 0.3);
  background: rgba(37, 99, 235, 0.08);
}

.fix-browse {
  margin-top: 40px;
  border-radius: 24px;
  border: 1px solid rgba(226, 232, 240, 0.8);
  background: #ffffff;
  overflow: hidden;
}

.fix-browse-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  cursor: pointer;
  font-weight: 600;
  color: #0f172a;
  list-style: none;
}

.fix-browse-summary::-webkit-details-marker {
  display: none;
}

.fix-browse-chevron {
  width: 18px;
  height: 18px;
  transition: transform 0.2s ease;
}

.fix-browse[open] .fix-browse-chevron {
  transform: rotate(180deg);
}

.fix-browse .fix-nav {
  position: static;
}

@keyframes fix-fade-up {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (min-width: 768px) {
  .fix-wizard-top {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
  }

  .fix-step-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .fix-results-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .fix-review-grid {
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 0.9fr);
  }

  .fix-review-header {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

@media (min-width: 1024px) {
  .fix-category-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 639px) {
  /* Compact horizontal stepper - shows all steps in minimal space */
  .fix-stepper {
    grid-template-columns: repeat(4, minmax(70px, 1fr));
    gap: 6px;
    margin-bottom: 8px;
  }

  .fix-stepper-item {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px 6px;
    gap: 6px;
    min-height: 72px;
  }

  /* Make labels smaller and centered */
  .fix-stepper-label {
    font-size: 11px;
    text-align: center;
    line-height: 1.2;
    display: block;
    word-break: break-word;
  }

  /* Slightly smaller dots on mobile */
  .fix-stepper-dot {
    width: 24px;
    height: 24px;
    font-size: 11px;
    flex-shrink: 0;
  }

  /* Enhance active state for visibility */
  .fix-stepper-item.is-active {
    background: rgba(37, 99, 235, 0.15);
    border-width: 2px;
    transform: scale(1.02);
  }

  /* Make inactive steps slightly subdued */
  .fix-stepper-item:not(.is-active) {
    opacity: 0.75;
  }

  .fix-stepper-item:not(.is-active) .fix-stepper-label {
    font-size: 10px;
  }
}

/* ============================================
   Fix Issue Step Flow
   ============================================ */

.fix-hero--compact {
  padding: 90px 0 48px;
}

.fix-flow {
  padding: 32px 0 96px;
}

.fix-flow-shell {
  background: #ffffff;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 28px;
  padding: 32px;
  box-shadow: 0 24px 40px rgba(15, 23, 42, 0.12);
}

.fix-flow-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}

.fix-flow-kicker {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 12px;
  font-weight: 600;
  color: #2563eb;
  margin: 0 0 8px;
}

.fix-flow-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  margin: 0 0 8px;
  color: #0f172a;
}

.fix-flow-subtitle {
  margin: 0;
  color: #64748b;
  max-width: 520px;
}

.fix-flow-trust {
  display: grid;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(226, 232, 240, 0.8);
  background: rgba(248, 250, 252, 0.9);
  font-size: 13px;
}

.fix-flow-trust-value {
  font-weight: 600;
  color: #0f172a;
  display: block;
}

.fix-flow-trust-label {
  color: #64748b;
  font-size: 12px;
}

.fix-stepper {
  grid-template-columns: repeat(4, 1fr);
}

.fix-flow-steps {
  margin-top: 20px;
}

.fix-flow-step {
  animation: fix-fade-up 0.25s ease;
}

.fix-step-panel {
  background: rgba(248, 250, 252, 0.6);
  border-radius: 20px;
  padding: 24px;
  border: 1px solid rgba(226, 232, 240, 0.7);
}

.fix-step-heading h3 {
  margin: 0 0 6px;
  font-size: 20px;
  font-weight: 600;
  color: #0f172a;
}

.fix-step-heading p {
  margin: 0 0 16px;
  color: #64748b;
}

.fix-filter-bar {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 20px;
}

.fix-filter-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.fix-pill {
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid rgba(226, 232, 240, 0.9);
  background: #ffffff;
  font-size: 13px;
  font-weight: 600;
  color: #475569;
  transition: all 0.2s ease;
}

.fix-pill.is-active,
.fix-pill:hover {
  border-color: rgba(37, 99, 235, 0.4);
  color: #2563eb;
  box-shadow: 0 10px 20px rgba(37, 99, 235, 0.12);
}

.fix-issue-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}

.fix-issue-card {
  text-align: left;
  background: #ffffff;
  border: 1px solid rgba(226, 232, 240, 0.8);
  border-radius: 20px;
  padding: 18px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.fix-issue-card.is-active,
.fix-issue-card:hover {
  border-color: rgba(37, 99, 235, 0.4);
  box-shadow: 0 16px 28px rgba(37, 99, 235, 0.16);
  transform: translateY(-2px);
}

.fix-issue-card-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.fix-issue-card h4 {
  margin: 0 0 6px;
  font-size: 16px;
  font-weight: 600;
  color: #0f172a;
}

.fix-issue-card p {
  margin: 0;
  font-size: 13px;
  color: #64748b;
}

.fix-issue-card-price {
  font-size: 13px;
  font-weight: 600;
  color: #2563eb;
  white-space: nowrap;
}

.fix-issue-card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: #94a3b8;
}

.fix-issue-card-category {
  font-weight: 600;
  color: #475569;
}

.fix-issue-card-badges {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.fix-badge {
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.1);
  color: #2563eb;
  font-size: 11px;
  font-weight: 600;
}

.fix-tier-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}

.fix-tier-card {
  position: relative;
  text-align: left;
  background: #ffffff;
  border: 1px solid rgba(226, 232, 240, 0.8);
  border-radius: 20px;
  padding: 18px;
  transition: all 0.2s ease;
  cursor: pointer;
}

.fix-tier-card.is-active {
  border-color: rgba(37, 99, 235, 0.4);
  box-shadow: 0 18px 30px rgba(37, 99, 235, 0.18);
}

.fix-tier-card.is-disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.fix-tier-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(16, 185, 129, 0.12);
  color: #0f766e;
  font-size: 11px;
  font-weight: 600;
}

.fix-tier-header h4 {
  margin: 0 0 6px;
  font-size: 16px;
  font-weight: 600;
  color: #0f172a;
}

.fix-tier-header p {
  margin: 0 0 12px;
  color: #64748b;
  font-size: 13px;
}

.fix-tier-price {
  font-size: 20px;
  font-weight: 700;
  color: #2563eb;
}

.fix-tier-time {
  font-size: 12px;
  color: #64748b;
  margin-bottom: 12px;
}

.fix-tier-meta {
  margin: 0 0 10px;
  padding: 0;
  list-style: none;
  color: #334155;
  font-size: 12px;
  display: grid;
  gap: 4px;
  border-top: 1px solid #e2e8f0;
  padding-top: 10px;
}

.fix-tier-meta li strong {
  color: #1e293b;
}

.fix-tier-features {
  margin: 0;
  padding-left: 18px;
  color: #475569;
  font-size: 12px;
  display: grid;
  gap: 6px;
}

.fix-form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-bottom: 16px;
}

.fix-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 13px;
  color: #475569;
}

.fix-field-full {
  grid-column: 1 / -1;
}

.fix-field input,
.fix-field textarea {
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 14px;
  padding: 12px 14px;
  font-size: 14px;
  background: #ffffff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.fix-field input:focus,
.fix-field textarea:focus {
  outline: none;
  border-color: rgba(37, 99, 235, 0.5);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

.fix-question-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 10px;
}

.fix-step-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.fix-form-error {
  margin: 12px 0 0;
  color: #dc2626;
  font-size: 13px;
  display: none;
}

.fix-summary {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}

.fix-summary-card {
  border: 1px solid rgba(226, 232, 240, 0.8);
  border-radius: 16px;
  padding: 14px;
  background: #ffffff;
}

.fix-summary-card h4 {
  margin: 0 0 6px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #94a3b8;
}

.fix-summary-card p {
  margin: 0;
  font-size: 15px;
  font-weight: 600;
  color: #0f172a;
}

/* ============================================
   Mobile Responsive Optimizations (< 640px)
   ============================================ */

@media (max-width: 639px) {
  /* === LAYOUT & SPACING === */
  .fix-container {
    padding: 0 18px;
  }

  .fix-hero--compact {
    padding: 70px 0 32px;
  }

  .fix-flow {
    padding: 24px 0 64px;
    padding-bottom: calc(64px + env(safe-area-inset-bottom));
  }

  .fix-flow-shell {
    padding: 20px;
    border-radius: 20px;
  }

  .fix-flow-header {
    margin-bottom: 20px;
    gap: 16px;
    flex-direction: column;
    align-items: flex-start;
  }

  /* === STEP PANELS === */
  .fix-step-panel {
    padding: 18px;
    border-radius: 16px;
  }

  .fix-step-heading h3 {
    font-size: clamp(1rem, 5vw, 1.25rem);
    margin-bottom: 4px;
  }

  .fix-step-heading p {
    font-size: 14px;
    margin-bottom: 14px;
  }

  /* === STEPPER TRACK & STATUS === */
  .fix-stepper-track {
    margin-bottom: 10px;
    height: 8px;
  }

  .fix-stepper-status {
    margin-bottom: 16px;
    font-size: 12px;
  }

  /* === FILTER BAR === */
  .fix-filter-bar {
    gap: 12px;
    margin-bottom: 16px;
  }

  .fix-filter-pills {
    overflow-x: auto;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 4px 0;
  }

  .fix-filter-pills::-webkit-scrollbar {
    display: none;
  }

  .fix-pill {
    min-height: 44px;
    padding: 10px 18px;
    font-size: 14px;
    -webkit-tap-highlight-color: rgba(37, 99, 235, 0.1);
  }

  /* === SEARCH === */
  .fix-search {
    min-height: 52px;
  }

  .fix-search-input {
    font-size: 16px;
    padding: 12px 14px;
  }

  /* === CARD GRIDS === */
  .fix-issue-grid,
  .fix-tier-grid,
  .fix-category-grid,
  .fix-results-grid,
  .fix-step-grid {
    grid-template-columns: 1fr;
  }

  .fix-issue-grid,
  .fix-tier-grid {
    gap: 12px;
  }

  .fix-category-grid {
    gap: 10px;
  }

  .fix-results-grid,
  .fix-step-grid {
    gap: 16px;
  }

  /* === CARDS === */
  .fix-issue-card,
  .fix-tier-card {
    padding: 16px;
    min-height: 120px;
    cursor: pointer;
    -webkit-tap-highlight-color: rgba(37, 99, 235, 0.1);
  }

  .fix-category-card {
    min-height: 100px;
    padding: 18px;
    -webkit-tap-highlight-color: rgba(37, 99, 235, 0.1);
  }

  .fix-issue-card-top {
    flex-wrap: wrap;
  }

  .fix-issue-card-price {
    font-size: 14px;
  }

  .fix-tier-price {
    font-size: 22px;
  }

  /* === FORMS === */
  .fix-form-grid,
  .fix-question-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .fix-field {
    gap: 8px;
  }

  .fix-field label {
    font-size: 14px;
    font-weight: 600;
  }

  .fix-field input,
  .fix-field textarea {
    padding: 14px 16px;
    font-size: 16px;
    min-height: 48px;
  }

  .fix-field textarea {
    min-height: 120px;
  }

  /* === BUTTONS & ACTIONS === */
  .fix-primary-btn,
  .fix-secondary-btn {
    min-height: 48px;
    padding: 14px 24px;
    font-size: 15px;
    width: 100%;
    justify-content: center;
  }

  .fix-step-actions {
    flex-direction: column-reverse;
    gap: 10px;
    margin-top: 20px;
  }

  .fix-primary-btn {
    order: -1;
  }

  .fix-quick-next {
    width: calc(100% - 18px);
    bottom: max(8px, calc(env(safe-area-inset-bottom) + 6px));
  }

  .fix-quick-next-inner {
    padding: 10px;
    border-radius: 12px;
    gap: 10px;
  }

  .fix-quick-next-label {
    font-size: 12px;
  }

  .fix-quick-next .fix-primary-btn {
    min-height: 40px;
    width: auto;
    padding: 10px 14px;
  }

  .fix-issue-grid.has-quick-next {
    padding-bottom: 84px;
  }

  /* === SUMMARY === */
  .fix-summary {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .fix-summary-card {
    padding: 12px 16px;
  }

  /* === HERO === */
  .fix-hero-title {
    font-size: clamp(2rem, 10vw, 2.5rem);
    margin-bottom: 16px;
  }

  .fix-hero-subtitle {
    font-size: clamp(0.95rem, 4vw, 1.1rem);
    margin-bottom: 32px;
  }

  .fix-hero-stats {
    gap: 12px;
  }

  .fix-hero-stat {
    padding: 14px 20px;
    width: 100%;
  }

  /* === TYPOGRAPHY === */
  .fix-flow-title {
    font-size: clamp(1.4rem, 6vw, 1.8rem);
  }

  .fix-card-title,
  .fix-issue-card h4,
  .fix-tier-header h4 {
    word-break: break-word;
    overflow-wrap: break-word;
  }

  .fix-card-desc,
  .fix-issue-card p,
  .fix-tier-header p {
    line-height: 1.6;
  }

  /* === TRUST & REVIEW === */
  .fix-wizard-trust,
  .fix-flow-trust {
    grid-template-columns: 1fr;
    gap: 10px;
    width: 100%;
  }

  .fix-review-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  /* === MISC === */
  .fix-browse {
    border-radius: 16px;
  }

  .fix-browse-summary {
    padding: 14px 18px;
  }

  /* Prevent horizontal overflow */
  .fix-flow-shell,
  .fix-step-panel,
  .fix-issue-card,
  .fix-tier-card {
    max-width: 100%;
    overflow-x: hidden;
  }

  /* === ACCESSIBILITY === */
  .fix-stepper-item:focus-visible,
  .fix-issue-card:focus-visible,
  .fix-tier-card:focus-visible,
  .fix-pill:focus-visible {
    outline: 3px solid rgba(37, 99, 235, 0.5);
    outline-offset: 2px;
  }

  .fix-stepper-item:active,
  .fix-issue-card:active,
  .fix-tier-card:active,
  .fix-pill:active {
    transform: scale(0.98);
  }
}

/* ============================================
   Extra Small Screens (< 360px)
   ============================================ */

@media (max-width: 359px) {
  .fix-container {
    padding: 0 16px;
  }

  .fix-flow-shell {
    padding: 16px;
  }

  .fix-step-panel {
    padding: 14px;
  }

  .fix-stepper {
    grid-template-columns: repeat(4, minmax(60px, 1fr));
    gap: 4px;
  }

  .fix-stepper-item {
    padding: 8px 4px;
    min-height: 68px;
  }

  .fix-stepper-label {
    font-size: 10px;
  }

  .fix-stepper-dot {
    width: 22px;
    height: 22px;
    font-size: 10px;
  }

  .fix-primary-btn,
  .fix-secondary-btn {
    padding: 14px 20px;
    font-size: 14px;
  }

  .fix-card {
    padding: 16px;
  }

  .fix-issue-card,
  .fix-tier-card {
    padding: 14px;
  }
}

