/* ===================================
   REORDER PAGE STYLES
   =================================== */

/* Hero Section - PREMIUM REDESIGN */
.reorder-hero-section {
  background: linear-gradient(135deg, 
    #fef9f5 0%, 
    #fff5f0 25%, 
    #fef9f5 50%, 
    #ffffff 100%
  );
  padding: 10.625rem 2rem 8rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* More dynamic animated backgrounds */
.reorder-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);
}

.reorder-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);
  }
}

.reorder-hero-container {
  max-width: 75rem;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.reorder-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),
    0 4px 12px rgba(0, 0, 0, 0.15);
  animation: badgeEntrance 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  position: relative;
  overflow: hidden;
}

/* Shimmer effect */
.reorder-hero-badge::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.4) 50%,
    transparent 100%
  );
  animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

@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);
  }
}

.reorder-hero-badge svg {
  width: 1.5rem;
  height: 1.5rem;
  position: relative;
  z-index: 1;
}

.reorder-hero-container h1 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  font-size: 5.5rem;
  line-height: 1.05;
  color: var(--text-dark);
  margin-bottom: 2rem;
  letter-spacing: -0.03em;
  animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reorder-hero-subtitle {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 1.625rem;
  line-height: 1.6;
  color: #495565;
  margin: 0 auto 4rem;
  max-width: 52rem;
  font-weight: 500;
  animation: fadeInUp 0.8s ease-out 0.4s backwards;
}

.reorder-hero-stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4rem;
  flex-wrap: wrap;
  padding: 2.5rem 3rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-radius: 1.5rem;
  box-shadow: 
    0 10px 40px rgba(0, 0, 0, 0.1),
    0 2px 8px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.8);
  max-width: 56rem;
  margin: 0 auto;
  animation: fadeInUp 0.8s ease-out 0.6s backwards;
}

.reorder-hero-stat {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--text-dark);
  transition: all 0.3s ease;
}

.reorder-hero-stat:hover {
  transform: translateY(-2px);
}

.reorder-hero-stat svg {
  width: 2rem;
  height: 2rem;
  color: var(--primary-teal);
  flex-shrink: 0;
}

/* Product Selection Section */
.reorder-products-section {
  background: var(--white);
  padding: 6rem 2rem;
}

.reorder-products-header {
  text-align: center;
  margin-bottom: 4rem;
}

.reorder-products-header h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 3.75rem;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.reorder-products-header p {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 1.25rem;
  color: var(--text-gray);
}

.reorder-products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  max-width: 75rem;
  margin: 0 auto;
}

.reorder-product-card {
  background: var(--white);
  border: 2px solid var(--border-light);
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.4s ease;
  position: relative;
}

.reorder-product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0, 150, 137, 0.15);
  border-color: rgba(0, 150, 137, 0.3);
}

.reorder-product-featured {
  border-color: var(--primary-teal);
  box-shadow: 0 8px 30px rgba(0, 150, 137, 0.2);
}

.reorder-product-featured:hover {
  box-shadow: 0 30px 60px rgba(0, 150, 137, 0.25);
}

.reorder-product-image {
  position: relative;
  width: 100%;
  height: 16rem;
  overflow: hidden;
}

.reorder-product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.reorder-product-card:hover .reorder-product-image img {
  transform: scale(1.05);
}

.reorder-product-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.5rem 1rem;
  background: var(--primary-teal);
  color: var(--white);
  border-radius: 2rem;
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
}

.reorder-product-content {
  padding: 2rem;
}

.reorder-product-header {
  margin-bottom: 1rem;
}

.reorder-product-header h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 2rem;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.reorder-product-type {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 0.9375rem;
  color: var(--text-gray);
  font-weight: 600;
}

.reorder-product-highlight {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  background: linear-gradient(135deg, rgba(0, 150, 137, 0.08) 0%, rgba(0, 181, 164, 0.05) 100%);
  border-left: 3px solid var(--primary-teal);
  border-radius: 0.75rem;
  margin: 1.5rem 0;
}

.reorder-product-highlight svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--primary-teal);
  flex-shrink: 0;
}

.reorder-product-highlight span {
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text-dark);
  line-height: 1.4;
}

.reorder-product-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.reorder-product-features li {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 0.9375rem;
  color: var(--text-dark);
  padding-left: 1.75rem;
  position: relative;
  line-height: 1.5;
}

.reorder-product-features 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.125rem;
}

.reorder-product-pricing {
  background: var(--bg-cream);
  border-radius: 1rem;
  padding: 1.5rem;
  margin-bottom: 2rem;
  text-align: center;
}

.pricing-main {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.pricing-from {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 0.875rem;
  color: var(--text-gray);
  font-weight: 500;
}

.pricing-amount {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 2.5rem;
  color: var(--primary-teal);
  line-height: 1;
}

.pricing-period {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 1.125rem;
  color: var(--text-gray);
  font-weight: 500;
}

.pricing-includes {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 0.875rem;
  color: var(--text-gray);
  margin: 0;
}

/* Trust Bar - PREMIUM REDESIGN */
.reorder-trust-bar {
  background: var(--white);
  padding: 5rem 2rem;
}

.reorder-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
  max-width: 75rem;
  margin: 0 auto;
}

.reorder-trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.25rem;
  padding: 2.5rem 2rem;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 1.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.reorder-trust-item::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;
}

.reorder-trust-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 150, 137, 0.15);
  border-color: rgba(0, 150, 137, 0.2);
}

.reorder-trust-item:hover::before {
  transform: scaleX(1);
}

.reorder-trust-item svg {
  width: 3rem;
  height: 3rem;
  color: var(--primary-teal);
  padding: 0.75rem;
  background: linear-gradient(135deg, rgba(0, 150, 137, 0.1) 0%, rgba(0, 181, 164, 0.15) 100%);
  border-radius: 1rem;
  transition: all 0.3s ease;
}

.reorder-trust-item:hover svg {
  background: linear-gradient(135deg, var(--primary-teal) 0%, #00b5a4 100%);
  color: var(--white);
  transform: scale(1.1) rotate(5deg);
}

.reorder-trust-text {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.trust-title {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--text-dark);
  line-height: 1.3;
}

.trust-desc {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 0.9375rem;
  color: var(--text-gray);
  font-weight: 500;
  line-height: 1.5;
}

/* Benefits Section - IMPROVED 4-COLUMN LAYOUT */
.reorder-benefits-section {
  background: linear-gradient(180deg, #fef9f5 0%, #ffffff 100%);
  padding: 6rem 2rem;
}

.reorder-benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
  margin-top: 4rem;
  max-width: 75rem;
  margin-left: auto;
  margin-right: auto;
}

.reorder-benefit-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 1.5rem;
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.reorder-benefit-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;
}

.reorder-benefit-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0, 150, 137, 0.15);
  border-color: rgba(0, 150, 137, 0.3);
}

.reorder-benefit-card:hover::before {
  transform: scaleX(1);
}

.reorder-benefit-icon {
  width: 4.5rem;
  height: 4.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: 0 auto 1.5rem;
  transition: all 0.3s ease;
}

.reorder-benefit-card:hover .reorder-benefit-icon {
  background: linear-gradient(135deg, var(--primary-teal) 0%, #00b5a4 100%);
  transform: scale(1.1) rotate(5deg);
}

.reorder-benefit-icon svg {
  width: 2.25rem;
  height: 2.25rem;
  color: var(--primary-teal);
  transition: color 0.3s ease;
}

.reorder-benefit-card:hover .reorder-benefit-icon svg {
  color: var(--white);
}

.reorder-benefit-card h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.reorder-benefit-card p {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 1rem;
  color: var(--text-gray);
  margin-bottom: 1rem;
  font-weight: 600;
  line-height: 1.4;
}

.reorder-benefit-detail {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--text-gray);
  display: block;
  font-weight: 500;
}

/* Remove highlight variant - all cards equal */
.reorder-benefit-highlight {
  background: var(--white);
  border-color: var(--border-light);
}

/* Testimonials Section */
.reorder-testimonials-section {
  background: linear-gradient(180deg, #fef9f5 0%, #ffffff 100%);
  padding: 6rem 2rem;
}

.reorder-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 4rem;
}

.reorder-testimonial-card {
  background: var(--white);
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.reorder-testimonial-stars img {
  height: 1.25rem;
}

.reorder-testimonial-card blockquote {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-dark);
  flex: 1;
}

.reorder-testimonial-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-top: 1rem;
  border-top: 1px solid var(--border-light);
}

.reorder-testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.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;
}

.author-info {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.author-name {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-dark);
}

.author-location {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 0.875rem;
  color: var(--text-gray);
}

.reorder-testimonial-result {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.result-number {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--primary-teal);
}

.result-time {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 0.875rem;
  color: var(--text-gray);
}

/* Premium Support Section - COMPLETE REDESIGN */
.reorder-support-section {
  background: linear-gradient(135deg, 
    #fef9f5 0%, 
    #fff5f0 25%, 
    #fef9f5 50%, 
    #ffffff 100%
  );
  padding: 6rem 2rem;
  position: relative;
  overflow: hidden;
}

/* Animated background elements */
.reorder-support-section::before {
  content: '';
  position: absolute;
  top: -30%;
  left: -20%;
  width: 60%;
  height: 140%;
  background: radial-gradient(circle, rgba(0, 150, 137, 0.08) 0%, transparent 70%);
  animation: floatDynamic 25s ease-in-out infinite;
  filter: blur(60px);
}

.reorder-support-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  right: -20%;
  width: 60%;
  height: 140%;
  background: radial-gradient(circle, rgba(255, 161, 120, 0.1) 0%, transparent 70%);
  animation: floatDynamic 30s ease-in-out infinite reverse;
  filter: blur(60px);
}

.reorder-support-content {
  max-width: 75rem;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.reorder-support-main-card {
  background: var(--white);
  border-radius: 2rem;
  padding: 4rem;
  box-shadow: 
    0 20px 60px rgba(0, 0, 0, 0.12),
    0 4px 12px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.06);
  position: relative;
  overflow: hidden;
}

/* Premium top gradient bar */
.reorder-support-main-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--primary-teal) 0%, #00b5a4 50%, var(--primary-teal) 100%);
  background-size: 200% 100%;
  animation: gradientShift 3s ease-in-out infinite;
}

.support-card-header {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  margin-bottom: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 2px solid var(--border-light);
}

.support-icon-large {
  width: 6rem;
  height: 6rem;
  background: linear-gradient(135deg, var(--primary-teal) 0%, #00b5a4 100%);
  border-radius: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 8px 24px rgba(0, 150, 137, 0.3);
  animation: iconFloat 3s ease-in-out infinite;
}

@keyframes iconFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

.support-icon-large svg {
  width: 3rem;
  height: 3rem;
  color: var(--white);
}

.support-header-text h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 3rem;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

.support-header-text p {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 1.25rem;
  color: var(--text-gray);
  line-height: 1.5;
}

.support-options-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.support-option-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.75rem;
  background: linear-gradient(135deg, rgba(0, 150, 137, 0.03) 0%, rgba(0, 181, 164, 0.05) 100%);
  border: 1px solid rgba(0, 150, 137, 0.1);
  border-radius: 1.25rem;
  transition: all 0.3s ease;
}

.support-option-item:hover {
  background: linear-gradient(135deg, rgba(0, 150, 137, 0.08) 0%, rgba(0, 181, 164, 0.1) 100%);
  border-color: rgba(0, 150, 137, 0.2);
  transform: translateX(8px);
}

.support-option-icon {
  width: 3rem;
  height: 3rem;
  background: var(--white);
  border-radius: 0.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0, 150, 137, 0.15);
  transition: all 0.3s ease;
}

.support-option-item:hover .support-option-icon {
  background: linear-gradient(135deg, var(--primary-teal) 0%, #00b5a4 100%);
  transform: scale(1.1) rotate(5deg);
}

.support-option-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--primary-teal);
  transition: color 0.3s ease;
}

.support-option-item:hover .support-option-icon svg {
  color: var(--white);
}

.support-option-text h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--text-dark);
  margin-bottom: 0.375rem;
  line-height: 1.3;
}

.support-option-text p {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 0.9375rem;
  color: var(--text-gray);
  line-height: 1.5;
}

.support-contact-methods {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  padding: 2rem 2.5rem;
  background: linear-gradient(135deg, rgba(0, 150, 137, 0.05) 0%, rgba(0, 181, 164, 0.08) 100%);
  border-radius: 1.25rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 0.875rem;
}

.contact-method svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--primary-teal);
  flex-shrink: 0;
}

.contact-method-text {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}

.method-label {
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 600;
  font-size: 0.75rem;
  color: var(--text-gray);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.method-value {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--text-dark);
}

.contact-method-divider {
  width: 1px;
  height: 2.5rem;
  background: rgba(0, 150, 137, 0.2);
}

.support-cta-btn {
  padding: 1.375rem 2.5rem;
  font-size: 1.125rem;
  box-shadow: 0 8px 24px rgba(0, 119, 182, 0.35);
}

.support-cta-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 119, 182, 0.45);
}

/* Responsive Styles */
@media (max-width: 1200px) {
  .reorder-benefits-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (max-width: 1024px) {
  .reorder-products-grid {
    grid-template-columns: 1fr;
  }
  
  .reorder-trust-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
  
  .reorder-trust-item {
    padding: 2rem 1.5rem;
  }
  
  .reorder-trust-item svg {
    width: 2.5rem;
    height: 2.5rem;
  }
  
  .trust-title {
    font-size: 1.125rem;
  }
  
  .reorder-testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  .reorder-quick-actions-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .reorder-hero-section {
    padding: 6rem 1.25rem 5rem;
  }
  
  .reorder-hero-badge {
    padding: 0.875rem 1.5rem;
    font-size: 0.8125rem;
    margin-bottom: 2rem;
  }
  
  .reorder-hero-badge svg {
    width: 1.125rem;
    height: 1.125rem;
  }
  
  .reorder-hero-container h1 {
    font-size: 2.75rem;
    margin-bottom: 1.5rem;
  }
  
  .reorder-hero-subtitle {
    font-size: 1.125rem;
    margin-bottom: 3rem;
  }
  
  .reorder-hero-stats {
    flex-direction: column;
    gap: 1.5rem;
    padding: 2rem 1.5rem;
  }
  
  .reorder-hero-stat {
    font-size: 1rem;
  }
  
  .reorder-hero-stat svg {
    width: 1.75rem;
    height: 1.75rem;
  }
  
  .reorder-products-header h2 {
    font-size: 2.25rem;
  }
  
  .reorder-products-header p {
    font-size: 1rem;
  }
  
  .reorder-product-content {
    padding: 1.5rem;
  }
  
  .reorder-product-header h3 {
    font-size: 1.5rem;
  }
  
  .reorder-product-type {
    font-size: 0.875rem;
  }
  
  .reorder-product-highlight {
    padding: 0.875rem 1rem;
    margin: 1.25rem 0;
  }
  
  .reorder-product-highlight span {
    font-size: 0.875rem;
  }
  
  .reorder-product-features li {
    font-size: 0.875rem;
  }
  
  .pricing-amount {
    font-size: 2rem;
  }
  
  .pricing-period {
    font-size: 1rem;
  }
  
  .reorder-trust-bar {
    padding: 4rem 1.25rem;
  }
  
  .reorder-trust-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .reorder-trust-item {
    padding: 2rem 1.5rem;
  }
  
  .reorder-trust-item svg {
    width: 2.5rem;
    height: 2.5rem;
  }
  
  .trust-title {
    font-size: 1.125rem;
  }
  
  .trust-desc {
    font-size: 0.875rem;
  }
  
  .reorder-benefits-section {
    padding: 4rem 1.25rem;
  }
  
  .reorder-benefits-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .reorder-benefit-card {
    padding: 2rem 1.5rem;
  }
  
  .reorder-benefit-icon {
    width: 4rem;
    height: 4rem;
  }
  
  .reorder-benefit-icon svg {
    width: 2rem;
    height: 2rem;
  }
  
  .reorder-benefit-card h3 {
    font-size: 1.375rem;
  }
  
  .reorder-benefit-card p {
    font-size: 0.9375rem;
  }
  
  .reorder-benefit-detail {
    font-size: 0.875rem;
  }
  
  .reorder-support-banner {
    flex-direction: column;
    text-align: center;
    padding: 2rem 1.5rem;
  }
  
  .reorder-support-link {
    white-space: normal;
  }
}