/* File: static/css/core/how.css */

/* ==================================================
   HOW IT WORKS PAGE SPECIFIC STYLES
   ================================================== */

/* Page Hero Section */
.page-hero.bg-gradient-secondary {
  background: linear-gradient(135deg, var(--soft-mauve), var(--soft-mauve-dark)) !important;
  padding: 6rem 0 4rem;
  position: relative;
  overflow: hidden;
}

.page-hero .container {
  position: relative;
  z-index: 2;
}

.page-hero img {
  transition: all var(--transition-slow);
  border: 3px solid rgba(255, 255, 255, 0.2);
  box-shadow: var(--shadow-xl);
}

.page-hero img:hover {
  transform: scale(1.02) rotate(1deg);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* ==================================================
   REDESIGNED FOR CLIENTS SECTION
   ================================================== */

.clients-section {
  background: linear-gradient(180deg, #fafafa 0%, #ffffff 100%);
}

/* Section Header */
.section-badge {
  margin-bottom: 1rem;
}

.bg-primary-soft {
  background: linear-gradient(135deg, rgba(230, 183, 193, 0.15), rgba(212, 165, 176, 0.15)) !important;
  color: var(--soft-mauve-dark) !important;
  border: 1px solid rgba(230, 183, 193, 0.3);
  font-size: 0.9rem;
  letter-spacing: 0.5px;
}

/* Progress Indicator */
.progress-indicator {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.progress-line {
  height: 4px;
  background: rgba(230, 183, 193, 0.2);
  border-radius: 2px;
  position: relative;
  margin-bottom: 2rem;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--rose-quartz), var(--soft-mauve));
  border-radius: 2px;
  width: 0%;
  transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.progress-fill::after {
  content: '';
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  background: var(--soft-mauve);
  border-radius: 50%;
  box-shadow: 0 0 0 4px white, 0 0 0 6px var(--soft-mauve);
}

.progress-steps {
  display: flex;
  justify-content: space-between;
  margin-top: -1rem;
}

.progress-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0.5rem;
  border-radius: 12px;
}

.progress-step:hover {
  background: rgba(230, 183, 193, 0.1);
  transform: translateY(-2px);
}

.step-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(230, 183, 193, 0.2);
  color: var(--charcoal-plum);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.progress-step.active .step-circle {
  background: linear-gradient(135deg, var(--rose-quartz), var(--soft-mauve));
  color: white;
  transform: scale(1.1);
  border-color: white;
  box-shadow: 0 8px 20px rgba(230, 183, 193, 0.4);
}

.step-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--charcoal-plum);
  text-align: center;
  opacity: 0.7;
  transition: all 0.3s ease;
}

.progress-step.active .step-label {
  opacity: 1;
  color: var(--soft-mauve-dark);
}

/* Steps Grid */
.steps-grid {
  margin: 4rem 0;
}

.step-card {
  margin-bottom: 4rem;
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.step-card.animate {
  opacity: 1;
  transform: translateY(0);
}

.step-card-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  padding: 2rem;
  background: white;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(230, 183, 193, 0.1);
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

.step-card-inner::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--rose-quartz), var(--soft-mauve));
  transition: all 0.6s ease;
}

.step-card:hover .step-card-inner {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.step-card:hover .step-card-inner::before {
  left: 0;
}

.step-card-inner.reverse {
  direction: rtl;
}

.step-card-inner.reverse > * {
  direction: ltr;
}

/* Step Visual */
.step-visual {
  position: relative;
}

.step-number-modern {
  position: absolute;
  top: -10px;
  left: -10px;
  z-index: 3;
  background: linear-gradient(135deg, var(--rose-quartz), var(--soft-mauve));
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(230, 183, 193, 0.4);
  border: 3px solid white;
}

.step-number-modern .number {
  color: white;
  font-weight: 700;
  font-size: 1.2rem;
  font-family: var(--font-display);
}

.step-image-wrapper {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.4s ease;
}

.step-image {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: all 0.4s ease;
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(230, 183, 193, 0.9), rgba(212, 165, 176, 0.9));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.4s ease;
}

.image-overlay i {
  color: white;
  font-size: 3rem;
  transform: scale(0.8);
  transition: all 0.4s ease;
}

.step-card:hover .image-overlay i {
  transform: scale(1);
}

/* Step Content */
.step-content-modern {
  padding: 1rem 0;
}

.step-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.8rem;
  color: var(--charcoal-plum);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.step-description {
  color: #6c757d;
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.step-features {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.feature-tag {
  display: flex;
  align-items: center;
  background: rgba(230, 183, 193, 0.1);
  padding: 0.75rem 1rem;
  border-radius: 25px;
  border: 1px solid rgba(230, 183, 193, 0.2);
  transition: all 0.3s ease;
  font-size: 0.9rem;
  font-weight: 500;
}

.feature-tag i {
  color: var(--soft-mauve);
  margin-right: 0.75rem;
  font-size: 0.9rem;
  width: 16px;
  text-align: center;
}

.feature-tag:hover {
  background: rgba(230, 183, 193, 0.2);
  border-color: var(--soft-mauve);
  transform: translateX(5px);
}

/* CTA Card */
.cta-card {
  background: linear-gradient(135deg, var(--rose-quartz), var(--soft-mauve));
  color: white;
  padding: 3rem;
  border-radius: 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.cta-card.animate {
  opacity: 1;
  transform: translateY(0);
}

.cta-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  transform: rotate(45deg);
  transition: all 0.6s ease;
}

.cta-card:hover::before {
  top: -20%;
  right: -20%;
}

.cta-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.cta-description {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 0;
}

.cta-button {
  background: white !important;
  color: var(--soft-mauve) !important;
  border: none !important;
  padding: 1rem 2rem;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.cta-button:hover {
  background: #f8f9fa !important;
  color: var(--soft-mauve-dark) !important;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

/* ==================================================
   EXISTING SECTIONS (KEEPING ORIGINAL STYLES)
   ================================================== */

/* Stylist Steps Section */
.stylist-step-card {
  transition: all 0.3s ease;
  border: 1px solid rgba(161, 141, 163, 0.1);
  position: relative;
  overflow: hidden;
  height: 100%;
  opacity: 0;
  transform: translateY(30px);
}

.stylist-step-card.animate {
  opacity: 1;
  transform: translateY(0);
}

.stylist-step-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #E6B7C1, #D4A5B0);
  transition: all 0.3s ease;
}

.stylist-step-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  border-color: #E6B7C1;
}

.stylist-step-card:hover::before {
  left: 0;
}

.step-icon {
  transition: transform 0.3s ease;
}

.stylist-step-card:hover .step-icon {
  transform: scale(1.1) rotate(5deg);
}

/* Stylist step icon gradients */
.stylist-step-card .bg-primary {
  background: linear-gradient(135deg, var(--rose-quartz), var(--rose-quartz-dark)) !important;
}

.stylist-step-card .bg-secondary {
  background: linear-gradient(135deg, var(--soft-mauve), var(--soft-mauve-dark)) !important;
}

.stylist-step-card .bg-success {
  background: linear-gradient(135deg, var(--success-color), #9bc587) !important;
}

.stylist-step-card .bg-info {
  background: linear-gradient(135deg, var(--info-color), #8fb8d4) !important;
}

.stylist-step-card .bg-warning {
  background: linear-gradient(135deg, var(--champagne-gold), #f0c674) !important;
}

.stylist-step-card .bg-danger {
  background: linear-gradient(135deg, var(--error-color), #d88888) !important;
}

/* Benefits Section */
.benefit-card {
  transition: all 0.3s ease;
  border: 1px solid rgba(161, 141, 163, 0.1);
  position: relative;
  overflow: hidden;
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateX(-30px);
}

.benefit-card.animate {
  opacity: 1;
  transform: translateX(0);
}

.benefit-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: -100%;
  width: 3px;
  height: 100%;
  background: linear-gradient(180deg, #E6B7C1, #D4A5B0);
  transition: all 0.3s ease;
}

.benefit-card:hover {
  transform: translateX(8px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
  background: white !important;
}

.benefit-card:hover::before {
  top: 0;
}

.benefit-icon {
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.benefit-card:hover .benefit-icon {
  transform: scale(1.1) rotate(-5deg);
}

/* Benefit icon gradients */
.benefit-card .bg-primary {
  background: linear-gradient(135deg, var(--rose-quartz), var(--rose-quartz-dark)) !important;
}

.benefit-card .bg-secondary {
  background: linear-gradient(135deg, var(--soft-mauve), var(--soft-mauve-dark)) !important;
}

.benefit-card .bg-success {
  background: linear-gradient(135deg, var(--success-color), #9bc587) !important;
}

.benefit-card .bg-info {
  background: linear-gradient(135deg, var(--info-color), #8fb8d4) !important;
}

.benefit-card .bg-warning {
  background: linear-gradient(135deg, var(--champagne-gold), #f0c674) !important;
}

.benefit-card .bg-danger {
  background: linear-gradient(135deg, var(--error-color), #d88888) !important;
}

/* FAQ Accordion */
.accordion {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.accordion.animate {
  opacity: 1;
  transform: translateY(0);
}

.accordion-item {
  border: none;
  border-bottom: 1px solid rgba(161, 141, 163, 0.1);
}

.accordion-item:last-child {
  border-bottom: none;
}

.accordion-header {
  margin-bottom: 0;
}

.accordion-button {
  background: white;
  border: none;
  color: #2c3e50;
  font-weight: 600;
  padding: 1.5rem;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  position: relative;
}

.accordion-button::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: #E6B7C1;
  transform: scaleY(0);
  transition: all 0.3s ease;
  transform-origin: top;
}

.accordion-button:not(.collapsed) {
  background: rgba(230, 183, 193, 0.1);
  color: #2c3e50;
  box-shadow: none;
}

.accordion-button:not(.collapsed)::before {
  transform: scaleY(1);
}

.accordion-button:hover {
  background: rgba(230, 183, 193, 0.05);
}

.accordion-button::after {
  background-image: none;
  content: '+';
  font-size: 1.5rem;
  font-weight: 300;
  color: #E6B7C1;
  transition: all 0.3s ease;
}

.accordion-button:not(.collapsed)::after {
  content: '−';
  transform: rotate(0deg);
}

.accordion-body {
  padding: 1.5rem;
  background: rgba(250, 244, 240, 0.3);
  color: #495057;
  line-height: 1.7;
  border-top: 1px solid rgba(161, 141, 163, 0.1);
}

/* CTA Section */
.cta-section {
  position: relative;
  overflow: hidden;
}

.cta-section .container {
  position: relative;
  z-index: 2;
}

/* ==================================================
   ANIMATION CLASSES
   ================================================== */
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in-up.animate {
  opacity: 1;
  transform: translateY(0);
}

.slide-in-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide-in-left.animate {
  opacity: 1;
  transform: translateX(0);
}

.slide-in-right {
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide-in-right.animate {
  opacity: 1;
  transform: translateX(0);
}

.scale-in {
  opacity: 0;
  transform: scale(0.9);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.scale-in.animate {
  opacity: 1;
  transform: scale(1);
}

.bounce-in {
  animation: bounceIn 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes bounceIn {
  0% {
    transform: scale(0.3);
    opacity: 0;
  }
  50% {
    transform: scale(1.05);
  }
  70% {
    transform: scale(0.9);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

/* Pulse animation for step numbers */
.pulse {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(230, 183, 193, 0.7);
  }
  70% {
    box-shadow: 0 0 0 20px rgba(230, 183, 193, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(230, 183, 193, 0);
  }
}

/* Progress animation */
@keyframes progressFill {
  from {
    width: 0%;
  }
  to {
    width: var(--progress-width, 0%);
  }
}

/* Staggered Animation Delays */
.step-card:nth-child(1) { transition-delay: 0.1s; }
.step-card:nth-child(2) { transition-delay: 0.2s; }
.step-card:nth-child(3) { transition-delay: 0.3s; }
.step-card:nth-child(4) { transition-delay: 0.4s; }
.step-card:nth-child(5) { transition-delay: 0.5s; }

.stylist-step-card:nth-child(1) { transition-delay: 0.1s; }
.stylist-step-card:nth-child(2) { transition-delay: 0.2s; }
.stylist-step-card:nth-child(3) { transition-delay: 0.3s; }
.stylist-step-card:nth-child(4) { transition-delay: 0.4s; }
.stylist-step-card:nth-child(5) { transition-delay: 0.5s; }
.stylist-step-card:nth-child(6) { transition-delay: 0.6s; }

.benefit-card:nth-child(1) { transition-delay: 0.1s; }
.benefit-card:nth-child(2) { transition-delay: 0.2s; }
.benefit-card:nth-child(3) { transition-delay: 0.3s; }
.benefit-card:nth-child(4) { transition-delay: 0.4s; }
.benefit-card:nth-child(5) { transition-delay: 0.5s; }
.benefit-card:nth-child(6) { transition-delay: 0.6s; }

/* ==================================================
   RESPONSIVE DESIGN
   ================================================== */
@media (max-width: 992px) {
  .page-hero {
    padding: 4rem 0 3rem;
    text-align: center;
  }
  
  .page-hero .row {
    gap: 2rem;
  }
  
  /* Progress indicator adjustments */
  .progress-steps {
    flex-wrap: wrap;
    gap: 1rem;
  }
  
  .progress-step {
    min-width: 80px;
  }
  
  .step-circle {
    width: 35px;
    height: 35px;
    font-size: 0.8rem;
  }
  
  .step-label {
    font-size: 0.75rem;
  }
  
  /* Step cards become single column */
  .step-card-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }
  
  .step-card-inner.reverse {
    direction: ltr;
  }
  
  .step-visual {
    order: 2;
  }
  
  .step-content-modern {
    order: 1;
  }
  
  .step-features {
    max-width: 400px;
    margin: 0 auto;
  }
  
  .cta-card {
    text-align: center;
  }
  
  .cta-card .row {
    text-align: center;
  }
  
  .benefit-card {
    flex-direction: column !important;
    text-align: center;
  }
  
  .benefit-icon {
    margin-right: 0 !important;
    margin-bottom: 1rem;
  }
}

@media (max-width: 768px) {
  .page-hero {
    padding: 3rem 0 2rem;
  }
  
  .page-hero h1 {
    font-size: 2.5rem;
  }
  
  /* Progress indicator mobile */
  .progress-indicator {
    margin-bottom: 3rem;
  }
  
  .progress-steps {
    justify-content: center;
    gap: 0.5rem;
  }
  
  .step-circle {
    width: 30px;
    height: 30px;
    font-size: 0.75rem;
  }
  
  .step-label {
    font-size: 0.7rem;
    max-width: 60px;
    line-height: 1.2;
  }
  
  /* Step cards mobile */
  .step-card {
    margin-bottom: 3rem;
  }
  
  .step-card-inner {
    padding: 1.5rem;
    gap: 1.5rem;
  }
  
  .step-number-modern {
    width: 50px;
    height: 50px;
    top: -8px;
    left: -8px;
  }
  
  .step-number-modern .number {
    font-size: 1rem;
  }
  
  .step-image {
    height: 200px;
  }
  
  .step-title {
    font-size: 1.5rem;
  }
  
  .step-description {
    font-size: 1rem;
  }
  
  .feature-tag {
    padding: 0.5rem 0.75rem;
    font-size: 0.85rem;
  }
  
  /* CTA card mobile */
  .cta-card {
    padding: 2rem 1.5rem;
  }
  
  .cta-title {
    font-size: 1.5rem;
  }
  
  .cta-description {
    font-size: 1rem;
  }
  
  .cta-button {
    padding: 0.875rem 1.5rem;
    font-size: 0.95rem;
  }
  
  /* Other sections mobile */
  .stylist-step-card {
    margin-bottom: 1.5rem;
  }
  
  .step-icon div {
    width: 60px !important;
    height: 60px !important;
  }
  
  .step-icon i {
    font-size: 1.5rem !important;
  }
  
  .benefit-icon div {
    width: 50px !important;
    height: 50px !important;
  }
  
  .benefit-icon i {
    font-size: 1.25rem !important;
  }
  
  .accordion-button {
    padding: 1rem;
    font-size: 1rem;
  }
  
  .accordion-body {
    padding: 1rem;
  }
}

@media (max-width: 576px) {
  .page-hero {
    padding: 2rem 0 1.5rem;
  }
  
  .page-hero h1 {
    font-size: 2rem;
  }
  
  /* Progress indicator small mobile */
  .progress-line {
    height: 3px;
  }
  
  .progress-fill::after {
    width: 10px;
    height: 10px;
    right: -5px;
  }
  
  .progress-steps {
    gap: 0.25rem;
  }
  
  .step-circle {
    width: 28px;
    height: 28px;
    font-size: 0.7rem;
  }
  
  .step-label {
    font-size: 0.65rem;
    max-width: 50px;
  }
  
  /* Step cards small mobile */
  .step-card-inner {
    padding: 1rem;
  }
  
  .step-number-modern {
    width: 40px;
    height: 40px;
  }
  
  .step-number-modern .number {
    font-size: 0.9rem;
  }
  
  .step-image {
    height: 180px;
  }
  
  .step-title {
    font-size: 1.3rem;
  }
  
  .feature-tag {
    padding: 0.4rem 0.6rem;
    font-size: 0.8rem;
  }
  
  .feature-tag i {
    margin-right: 0.5rem;
  }
  
  /* CTA card small mobile */
  .cta-card {
    padding: 1.5rem 1rem;
  }
  
  .cta-title {
    font-size: 1.3rem;
  }
  
  .cta-button {
    padding: 0.75rem 1.25rem;
    font-size: 0.9rem;
  }
  
  .stylist-step-card,
  .benefit-card {
    padding: 1.5rem !important;
  }
  
  .accordion-button {
    padding: 0.875rem;
    font-size: 0.95rem;
  }
  
  .accordion-body {
    padding: 0.875rem;
  }
}

/* ==================================================
   ACCESSIBILITY ENHANCEMENTS
   ================================================== */
@media (prefers-reduced-motion: reduce) {
  .fade-in-up,
  .slide-in-left,
  .slide-in-right,
  .scale-in {
    transition: none;
    opacity: 1;
    transform: none;
  }
  
  .step-card,
  .stylist-step-card,
  .benefit-card,
  .accordion,
  .cta-card {
    transition: none;
    opacity: 1;
    transform: none;
  }
  
  .step-card:hover,
  .stylist-step-card:hover,
  .benefit-card:hover {
    transform: none;
  }
  
  .bounce-in,
  .pulse {
    animation: none;
  }
  
  .progress-fill {
    transition: none;
  }
  
  .step-image-wrapper,
  .image-overlay {
    transition: none;
  }
}

/* High contrast mode */
@media (prefers-contrast: high) {
  .step-card-inner,
  .stylist-step-card,
  .benefit-card {
    border: 2px solid var(--charcoal-plum);
  }
  
  .accordion-item {
    border: 2px solid var(--charcoal-plum);
  }
  
  .step-circle,
  .step-number-modern {
    border: 2px solid var(--charcoal-plum);
  }
  
  .feature-tag {
    border: 2px solid var(--charcoal-plum);
  }
}

/* Print styles */
@media print {
  .page-hero,
  .cta-section,
  .cta-card {
    background: white !important;
    color: black !important;
  }
  
  .step-card-inner,
  .stylist-step-card,
  .benefit-card {
    break-inside: avoid;
    box-shadow: none;
    border: 1px solid #ddd;
  }
  
  .accordion-button::after {
    display: none;
  }
  
  .accordion-collapse {
    display: block !important;
  }
  
  .btn,
  .cta-button {
    display: none;
  }
  
  .progress-indicator,
  .image-overlay {
    display: none;
  }
  
  .step-image {
    height: auto;
    max-height: 200px;
  }
}

/* Focus styles for better accessibility */
.progress-step:focus,
.step-card:focus,
.cta-button:focus {
  outline: 2px solid var(--soft-mauve);
  outline-offset: 2px;
}

.feature-tag:focus {
  outline: 1px solid var(--soft-mauve);
  outline-offset: 1px;
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: rgba(230, 183, 193, 0.1);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--rose-quartz), var(--soft-mauve));
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, var(--soft-mauve), var(--soft-mauve-dark));
}