/* ===================================
   SWITCHING PROVIDERS PAGE STYLES
   =================================== */

/* Hero Section - Premium Design */
.switching-hero-section {
  background: linear-gradient(135deg, 
    #fef9f5 0%, 
    #fff5f0 25%, 
    #fef9f5 50%, 
    #ffffff 100%
  );
  padding: 10.625rem 2rem 8rem;
  position: relative;
  overflow: hidden;
}

/* Animated backgrounds */
.switching-hero-section::before {
  content: '';
  position: absolute;
  right: -80%;
  bottom: -40%;
  width: 180%;
  height: 140%;
  background: radial-gradient(circle, rgba(231, 206, 107, 0.45) 0%, rgba(255, 200, 150, 0.15) 30%, transparent 60%);
  pointer-events: none;
  animation: floatDynamic 22s ease-in-out infinite;
  filter: blur(60px);
}

.switching-hero-section::after {
  content: '';
  position: absolute;
  top: -25%;
  left: -40%;
  width: 110%;
  height: 100%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 151, 178, 0.35) 0%, rgba(0, 181, 164, 0.12) 35%, transparent 65%);
  pointer-events: none;
  animation: floatDynamic 28s ease-in-out infinite reverse;
  filter: blur(70px);
}

@keyframes floatDynamic {
  0%, 100% {
    transform: translate(0, 0) scale(1) rotate(0deg);
  }
  33% {
    transform: translate(40px, -40px) scale(1.1) rotate(3deg);
  }
  66% {
    transform: translate(-30px, 30px) scale(0.95) rotate(-3deg);
  }
}

.switching-hero-container {
  max-width: 75rem;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.switching-hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.switching-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.875rem;
  padding: 1rem 2.25rem;
  background: linear-gradient(90deg, #00b5a4 0%, #0077b6 100%);
  border-radius: 3rem;
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  color: var(--white);
  letter-spacing: 0.18em;
  margin-bottom: 2.5rem;
  box-shadow: 0 10px 30px rgba(0, 119, 182, 0.4);
  animation: badgeEntrance 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  position: relative;
  overflow: hidden;
}

@keyframes badgeEntrance {
  0% {
    opacity: 0;
    transform: translateY(-40px) scale(0.7);
  }
  60% {
    transform: translateY(8px) scale(1.08);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.switching-hero-badge svg {
  width: 1.5rem;
  height: 1.5rem;
}

.switching-hero-left h1 {
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  font-size: 4.5rem;
  line-height: 1.1;
  color: var(--text-dark);
  margin-bottom: 2rem;
  letter-spacing: -0.02em;
}

.switching-hero-subtitle {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 1.375rem;
  line-height: 1.6;
  color: #495565;
  margin-bottom: 2.5rem;
}

.switching-hero-cta-large {
  padding: 1.625rem 3rem;
  font-size: 1.25rem;
  margin-bottom: 0;
  box-shadow: 0 8px 24px rgba(0, 119, 182, 0.35);
}

.switching-hero-cta-large:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0, 119, 182, 0.45);
}

.switching-hero-right {
  position: relative;
}

.switching-hero-image {
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.switching-hero-image img {
  width: 100%;
  height: auto;
  display: block;
}

.switching-stat-cards {
  position: absolute;
  bottom: -2rem;
  left: -2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.switching-stat-card {
  background: var(--white);
  border-radius: 1rem;
  padding: 1.5rem 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  min-width: 14rem;
}

.card-patients {
  background: linear-gradient(135deg, rgba(0, 150, 137, 0.1) 0%, rgba(0, 181, 164, 0.05) 100%), var(--white);
}

.card-delivery {
  background: linear-gradient(135deg, rgba(255, 161, 120, 0.1) 0%, rgba(255, 200, 150, 0.05) 100%), var(--white);
}

.switching-stat-card .stat-number {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 2.5rem;
  color: var(--primary-teal);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.switching-stat-card .stat-label {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 0.875rem;
  color: var(--text-gray);
  font-weight: 600;
}

/* Why Patients Switch Section */
.switching-why-section {
  background: var(--white);
  padding: 6rem 2rem;
}

.switching-why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 4rem;
}

.switching-why-card {
  border-radius: 1.5rem;
  padding: 3rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.switching-why-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.card-pink {
  background: linear-gradient(135deg, rgba(255, 161, 120, 0.08) 0%, rgba(255, 200, 150, 0.05) 100%), var(--white);
}

.card-blue {
  background: linear-gradient(135deg, rgba(150, 240, 255, 0.08) 0%, rgba(150, 240, 255, 0.05) 100%), var(--white);
}

.card-peach {
  background: linear-gradient(135deg, rgba(231, 206, 107, 0.08) 0%, rgba(231, 206, 107, 0.05) 100%), var(--white);
}

.switching-why-icon {
  width: 5rem;
  height: 5rem;
  background: linear-gradient(135deg, rgba(0, 150, 137, 0.1) 0%, rgba(0, 181, 164, 0.15) 100%);
  border-radius: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
}

.switching-why-icon svg {
  width: 2.5rem;
  height: 2.5rem;
  color: var(--primary-teal);
}

.switching-why-card h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  font-size: 1.875rem;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  line-height: 1.25;
}

.switching-why-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.switching-why-list li {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 1.0625rem;
  font-weight: 500;
  color: var(--text-dark);
  padding-left: 1.75rem;
  position: relative;
  line-height: 1.65;
}

.switching-why-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  width: 1.25rem;
  height: 1.25rem;
  background: var(--primary-teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.75rem;
  font-weight: bold;
  top: 0.25rem;
}

/* Switching Process Section */
.switching-process-section {
  background: linear-gradient(180deg, #fef9f5 0%, #ffffff 100%);
  padding: 6rem 2rem;
}

.switching-steps-timeline {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 4rem 0;
  flex-wrap: wrap;
  gap: 1rem;
}

.switching-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 10rem;
  position: relative;
}

.step-number-circle {
  width: 4rem;
  height: 4rem;
  background: var(--primary-teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 2rem;
  color: var(--white);
  margin-bottom: 0.5rem;
  box-shadow: 0 4px 20px rgba(0, 150, 137, 0.3);
}

.step-sparkle {
  font-size: 1.5rem;
  color: var(--primary-teal);
  margin-bottom: 1rem;
}

.step-content-box h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  font-size: 1.1875rem;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.step-content-box p {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-gray);
  line-height: 1.5;
}

.switching-step-connector {
  width: 3rem;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-teal) 0%, rgba(0, 150, 137, 0.3) 100%);
  margin: 0 0.5rem 3rem;
}
.switching-step-connector:last-child {
  display: none;
}

.switching-process-cta {
  text-align: center;
  margin-top: 4rem;
}

/* Comparison Table Section */
.switching-comparison-section {
  background: var(--white);
  padding: 6rem 2rem;
}

.comparison-table-wrapper {
  max-width: 62.5rem;
  margin: 4rem auto 0;
  overflow-x: auto;
}

.comparison-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: var(--white);
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  border: 2px solid var(--border-light);
}

.comparison-table thead {
  background: linear-gradient(135deg, #282832 0%, #1a1a24 100%);
  border-bottom: 4px solid var(--primary-teal);
}

.comparison-table th {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.625rem;
  color: var(--white);
  padding: 2.75rem 2rem;
  text-align: center;
  border-right: 2px solid rgba(255, 255, 255, 0.1);
  position: relative;
}

.comparison-table th:first-child {
  text-align: left;
  width: 30%;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.125rem;
  font-weight: 600;
}

.comparison-table th:last-child {
  border-right: none;
}

/* Premium header styling for Superior column */
.comparison-table th.superior-column {
  background: linear-gradient(135deg, var(--primary-teal) 0%, #00b5a4 100%);
  position: relative;
}

.comparison-table th.superior-column::after {
  content: 'RECOMMENDED';
  position: absolute;
  top: 0.75rem;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.25rem 0.75rem;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 1rem;
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 800;
  font-size: 0.625rem;
  letter-spacing: 0.1em;
  color: var(--white);
}

.comparison-table tbody .superior-column {
  background: linear-gradient(135deg, rgba(0, 150, 137, 0.12) 0%, rgba(0, 181, 164, 0.08) 100%);
  border-left: 4px solid var(--primary-teal);
  border-right: 4px solid var(--primary-teal);
}

.comparison-table tbody tr {
  border-bottom: 2px solid var(--border-light);
}

.comparison-table tbody tr:last-child {
  border-bottom: none;
}

.comparison-table td {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 1.0625rem;
  color: var(--text-dark);
  padding: 2rem 1.5rem;
  text-align: center;
  vertical-align: middle;
  border-right: 2px solid var(--border-light);
}

.comparison-table td:first-child {
  text-align: left;
  width: 30%;
}

.comparison-table td:last-child {
  border-right: none;
}

.feature-label {
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--text-dark);
}

.superior-column {
  font-weight: 700;
  color: var(--primary-teal);
}

.superior-column svg {
  width: 1.5rem;
  height: 1.5rem;
  flex-shrink: 0;
  display: inline-block;
  vertical-align: middle;
  margin-right: 0.5rem;
  margin-bottom: 0.75rem;
}

.superior-column div {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.375rem;
}

.superior-column strong {
  font-family: 'Playfair Display', serif;
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
}

.superior-column span {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-gray);
  line-height: 1.4;
}

.comparison-table td:not(.superior-column) div {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.375rem;
}

.comparison-table td:not(.superior-column) strong {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #374151;
  line-height: 1.2;
}

.comparison-table td:not(.superior-column) span {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #6b7280;
  line-height: 1.4;
}

/* Trust Section */
.switching-trust-section {
  background: linear-gradient(180deg, #fef9f5 0%, #ffffff 100%);
  padding: 4rem 2rem;
}

.switching-trust-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.switching-trust-card {
  background: var(--white);
  border-radius: 1.5rem;
  padding: 2rem 3rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  text-align: center;
  min-width: 12rem;
}

.trust-card-number {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 3rem;
  color: var(--primary-teal);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.trust-card-label {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 0.875rem;
  color: var(--text-gray);
  font-weight: 600;
}

.trust-card-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.trust-stars {
  height: 1.25rem;
}

/* FAQ Section */
.switching-faq-section {
  background: var(--white);
  padding: 6rem 2rem;
}

.switching-faq-container {
  max-width: 62.5rem;
}

.switching-faq-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 4rem;
}

.switching-faq-item {
  background: var(--white);
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid var(--border-light);
}

.switching-faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem;
  cursor: pointer;
  list-style: none;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--text-dark);
  transition: background 0.3s;
}

.switching-faq-item summary::-webkit-details-marker {
  display: none;
}

.switching-faq-item summary:hover {
  background: rgba(0, 150, 137, 0.05);
}

.switching-faq-icon {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--primary-teal);
  transition: transform 0.3s;
  flex-shrink: 0;
}

.switching-faq-item[open] .switching-faq-icon {
  transform: rotate(45deg);
}

.switching-faq-answer {
  padding: 0 1.5rem 1.5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.switching-faq-answer p {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-gray);
  margin-top: 1rem;
}

/* Bottom CTA Section - ULTRA PREMIUM REDESIGN */
.switching-bottom-cta-section {
  background: linear-gradient(135deg, var(--primary-teal) 0%, #00b5a4 100%);
  padding: 8rem 2rem;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

/* Animated background elements */
.switching-bottom-cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -25%;
  width: 150%;
  height: 150%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  animation: floatSlow 20s ease-in-out infinite;
}

.switching-bottom-cta-section::after {
  content: '';
  position: absolute;
  bottom: -50%;
  right: -25%;
  width: 150%;
  height: 150%;
  background: radial-gradient(circle, rgba(0, 0, 0, 0.1) 0%, transparent 70%);
  animation: floatSlow 25s ease-in-out infinite reverse;
}

@keyframes floatSlow {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(20px, -20px) scale(1.05);
  }
}

.switching-bottom-cta-container {
  max-width: 75rem;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.switching-bottom-cta-container h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  font-size: 4rem;
  margin-bottom: 1.5rem;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.cta-main-subtitle {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 1.375rem;
  line-height: 1.6;
  margin-bottom: 3rem;
  opacity: 0.95;
  font-weight: 400;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
}

/* Premium Button Design */
.cta-button-premium {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 1.5rem 3.5rem;
  background: var(--white);
  color: var(--primary-teal);
  border: none;
  border-radius: 5rem;
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 
    0 10px 30px rgba(0, 0, 0, 0.3),
    0 2px 8px rgba(0, 0, 0, 0.15);
  position: relative;
  overflow: hidden;
  margin-bottom: 2.5rem;
}

/* Shimmer effect on button */
.cta-button-premium::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(0, 150, 137, 0.2) 50%,
    transparent 100%
  );
  animation: shimmerButton 3s ease-in-out infinite;
}

@keyframes shimmerButton {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

.cta-button-premium:hover {
  background: #f8f8f8;
  transform: translateY(-4px) scale(1.02);
  box-shadow: 
    0 15px 40px rgba(0, 0, 0, 0.35),
    0 4px 12px rgba(0, 0, 0, 0.2);
}

.cta-button-premium:active {
  transform: translateY(-2px) scale(0.98);
}

.btn-text {
  position: relative;
  z-index: 1;
}

.cta-button-premium svg {
  width: 1.5rem;
  height: 1.5rem;
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease;
}

.cta-button-premium:hover svg {
  transform: translateX(4px);
}

/* Benefits Row - Premium Cards */
.cta-benefits-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 0;
}

.cta-benefit-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.75rem;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 3rem;
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.cta-benefit-item:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.cta-benefit-item svg {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
}

.cta-benefit-divider {
  width: 1px;
  height: 2rem;
  background: rgba(255, 255, 255, 0.3);
}


/* Decorative Divider */
.decorative-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 1.5rem 0;
}

.divider-line {
  width: 3rem;
  height: 1px;
  background: var(--primary-teal);
}

.divider-dot {
  width: 0.5rem;
  height: 0.5rem;
  background: var(--primary-teal);
  border-radius: 50%;
}

/* Real Patient Stories Section */
.switching-stories-section {
  background: var(--white);
  padding: 6rem 2rem;
}

.switching-stories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 4rem;
}

.switching-story-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 1.5rem;
  padding: 2.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.switching-story-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-teal) 0%, #00b5a4 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.switching-story-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 150, 137, 0.12);
}

.switching-story-card:hover::before {
  transform: scaleX(1);
}

.story-quote-mark {
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  color: rgba(0, 150, 137, 0.1);
  line-height: 1;
  margin-bottom: -2rem;
}

.switching-story-card blockquote {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 1.0625rem;
  font-weight: 500;
  line-height: 1.65;
  color: var(--text-dark);
  margin-bottom: 2rem;
}

.story-author-section {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-light);
}

.story-author-avatar {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-teal) 0%, #00b5a4 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--white);
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0, 150, 137, 0.2);
}

.story-author-info {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.story-author-name {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-dark);
}

.story-author-detail {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 0.875rem;
  color: var(--text-gray);
  font-weight: 500;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .comparison-table-wrapper {
    overflow-x: scroll;
    -webkit-overflow-scrolling: touch;
  }
  
  .comparison-table {
    min-width: 650px;
  }
  
  .comparison-table th,
  .comparison-table td {
    padding: 1.75rem 1.25rem;
  }
  
  .comparison-table th {
    font-size: 1.25rem;
  }
  
  .comparison-table th:first-child {
    font-size: 1rem;
  }
  
  .feature-label {
    font-size: 1.0625rem;
  }
  
  .superior-column strong {
    font-size: 1.25rem;
  }
  
  .comparison-table td:not(.superior-column) strong {
    font-size: 1.125rem;
  }
  
  .switching-stories-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .switching-hero-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .switching-stat-cards {
    position: static;
    flex-direction: row;
    justify-content: center;
    margin-top: 2rem;
  }
  
  .switching-why-grid {
    grid-template-columns: 1fr;
  }
  
  .switching-steps-timeline {
    flex-direction: column;
    gap: 2rem;
  }
  
  .switching-step {
    max-width: 100%;
  }
  
  .switching-step-connector {
    width: 2px;
    height: 3rem;
    margin: 0;
    background: linear-gradient(180deg, var(--primary-teal) 0%, rgba(0, 150, 137, 0.3) 100%);
  }
}

@media (max-width: 768px) {
  .switching-hero-section {
    padding: 6rem 1.25rem 5rem;
  }
  
  .switching-hero-cta-large {
    padding: 1.375rem 2rem;
    font-size: 1.125rem;
    width: 100%;
  }
  
  .switching-stories-section {
    padding: 4rem 1.25rem;
  }
  
  .switching-story-card {
    padding: 2rem;
  }
  
  .story-quote-mark {
    font-size: 4rem;
    margin-bottom: -1.5rem;
  }
  
  .switching-story-card blockquote {
    font-size: 1rem;
  }
  
  .switching-hero-left h1 {
    font-size: 2.5rem;
  }
  
  .switching-hero-subtitle {
    font-size: 1rem;
  }
  
  .switching-stat-cards {
    flex-direction: column;
  }
  
  .switching-bottom-cta-section {
    padding: 5rem 1.25rem;
  }
  
  .switching-bottom-cta-container h2 {
    font-size: 2.25rem;
  }
  
  .cta-main-subtitle {
    font-size: 1.125rem;
  }
  
  .cta-button-premium {
    padding: 1.375rem 2.5rem;
    font-size: 1.125rem;
    width: 100%;
  }
  
  .cta-benefits-row {
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    margin-bottom: 0;
  }
  
  .cta-benefit-item {
    width: 100%;
    justify-content: center;
  }
  
  .cta-benefit-divider {
    display: none;
  }
}