/* ============================================
   EAR WAX REMOVAL PAGE STYLES
   Uses earwax- prefix
   Aligned with Anima design export
   ============================================ */

/* Hero */
.earwax-hero-section {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding: 20px 0 80px;
  overflow: hidden;
  background: #FDF6F3;
}

.earwax-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.earwax-hero-dots {
  display: none;
}

.earwax-hero-glow-1 {
  position: absolute;
  top: -10%;
  right: -5%;
  width: 600px;
  height: 600px;
  background: rgba(196, 122, 101, 0.08);
  border-radius: 50%;
  filter: blur(100px);
  z-index: 1;
  animation: float 8s ease-in-out infinite;
}

.earwax-hero-glow-2 {
  position: absolute;
  bottom: -10%;
  left: -5%;
  width: 500px;
  height: 500px;
  background: rgba(212, 144, 124, 0.08);
  border-radius: 50%;
  filter: blur(80px);
  z-index: 1;
  animation: float 10s ease-in-out infinite reverse;
}

.earwax-hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 10;
}

@media (min-width: 1024px) {
  .earwax-hero-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* Left Content */
.earwax-hero-content {
  text-align: center;
}

@media (min-width: 1024px) {
  .earwax-hero-content {
    text-align: left;
  }
}

.earwax-hero-section .section-badge {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(196, 122, 101, 0.12);
  box-shadow: 0 8px 30px rgba(196, 122, 101, 0.10);
}

.earwax-hero-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #0f172a;
  margin-top: 0;
  margin-bottom: 1.75rem;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

/* Match weight loss page gradient-text: deeper purple for contrast against dark title */
.earwax-hero-section .gradient-text {
  background: linear-gradient(135deg, #6B4FA0 0%, #8B6BBF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

@media (min-width: 768px) {
  .earwax-hero-title {
    font-size: 3.5rem;
  }
}

@media (min-width: 1024px) {
  .earwax-hero-title {
    font-size: 4.5rem;
    line-height: 1;
  }
}

.earwax-hero-subtitle {
  font-size: 1.125rem;
  font-weight: 600;
  color: #C47A65;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

@media (min-width: 768px) {
  .earwax-hero-subtitle {
    font-size: 1.25rem;
  }
}

.earwax-hero-description {
  font-size: 1.0625rem;
  color: var(--text-gray);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 600px;
  font-weight: 500;
}

@media (min-width: 768px) {
  .earwax-hero-description {
    font-size: 1.125rem;
  }
}

@media (max-width: 1023px) {
  .earwax-hero-description {
    margin-left: auto;
    margin-right: auto;
  }
}

.earwax-hero-section .primary-cta {
  background: linear-gradient(135deg, #C47A65, #B8694F);
  box-shadow: 0 10px 25px -3px rgba(196, 122, 101, 0.35);
}

.earwax-hero-section .primary-cta:hover {
  box-shadow: 0 14px 30px -3px rgba(196, 122, 101, 0.45);
}

.earwax-hero-section .secondary-cta {
  color: #6B4FA0;
  border: 2px solid rgba(196, 122, 101, 0.25);
  background: transparent;
}

.earwax-hero-section .secondary-cta:hover {
  border-color: rgba(196, 122, 101, 0.45);
  background: rgba(196, 122, 101, 0.04);
}

.earwax-hero-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 3rem;
}

@media (min-width: 640px) {
  .earwax-hero-actions {
    flex-direction: row;
  }
}

@media (max-width: 1023px) {
  .earwax-hero-actions {
    justify-content: center;
  }
}

.earwax-hero-trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem;
  justify-content: center;
}

@media (min-width: 1024px) {
  .earwax-hero-trust {
    justify-content: flex-start;
  }
}

.earwax-hero-trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.earwax-hero-trust-item i {
  color: #7A9E7E;
  font-size: 1.125rem;
}

.earwax-hero-trust-item span {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #2D1B4E;
}

/* Right Visual */
.earwax-hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 2rem;
}

.earwax-hero-image-card {
  position: relative;
  width: 100%;
  max-width: 480px;
  height: 600px;
  border-radius: 2rem;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(196, 122, 101, 0.18);
  border: 6px solid var(--white);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.earwax-hero-image-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 70px rgba(196, 122, 101, 0.25);
}

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

.earwax-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.4), transparent);
  pointer-events: none;
}

.earwax-hero-price-badge {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  padding: 1.5rem;
  border-radius: 1.5rem;
  box-shadow: 0 10px 40px rgba(196, 122, 101, 0.15);
  text-align: center;
  border: 1px solid rgba(196, 122, 101, 0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.earwax-hero-price-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 50px rgba(196, 122, 101, 0.22);
}

.earwax-hero-price-label {
  display: block;
  font-size: 0.6875rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-slate);
  margin-bottom: 0.5rem;
  opacity: 0.8;
}

.earwax-hero-price-amount {
  display: block;
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--brand-dark), var(--brand-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

.earwax-hero-price-sub {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--brand-dark);
  opacity: 0.9;
}

/* Hero Floating Testimonial */
.earwax-hero-testimonial-float {
  background: var(--white);
  border-radius: 1.5rem;
  padding: 1.5rem;
  box-shadow: 0 25px 60px rgba(196, 122, 101, 0.15);
  border: 1px solid rgba(196, 122, 101, 0.12);
  max-width: 400px;
  margin: 0 auto;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.earwax-hero-testimonial-float::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, #C47A65, #D4907C);
  border-radius: 0 0 1.5rem 1.5rem;
}

.earwax-hero-testimonial-float:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 70px rgba(196, 122, 101, 0.22);
}

.earwax-hero-testimonial-stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1rem;
  color: #fbbf24;
  font-size: 1rem;
}

.earwax-hero-testimonial-text {
  font-size: 0.9375rem;
  font-style: italic;
  color: var(--text-slate);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.earwax-hero-testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.earwax-hero-testimonial-avatar {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid #C47A65;
}

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

.earwax-hero-testimonial-name {
  font-size: 0.875rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.125rem;
}

.earwax-hero-testimonial-location {
  font-size: 0.75rem;
  color: var(--text-gray);
}

/* Symptoms */
.earwax-symptoms-section {
  padding: 6rem 0;
  background: var(--brand-light);
}

.earwax-symptoms-header {
  text-align: center;
  margin-bottom: 4rem;
}

.earwax-symptoms-title {
  font-size: 2.5rem;
  font-weight: 900;
  color: #111827;
  margin-bottom: 1rem;
  line-height: 1.15;
}

.earwax-symptoms-description {
  font-size: 1.125rem;
  color: var(--text-gray);
  line-height: 1.7;
}

.earwax-symptoms-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

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

@media (min-width: 1024px) {
  .earwax-symptoms-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.earwax-symptom-card {
  background: var(--white);
  border: 1px solid rgba(196, 122, 101, 0.10);
  border-radius: 1.5rem;
  padding: 2rem;
  transition: all 0.4s ease;
  box-shadow: 0 4px 20px rgba(196, 122, 101, 0.05);
}

.earwax-symptom-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(196, 122, 101, 0.15);
  border-color: var(--brand-purple);
}

.earwax-symptom-icon {
  width: 3.5rem;
  height: 3.5rem;
  background: rgba(163, 158, 227, 0.12);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--brand-purple);
  font-size: 1.5rem;
  transition: all 0.4s ease;
}

.earwax-symptom-card:hover .earwax-symptom-icon {
  transform: scale(1.1) rotate(5deg);
  background: linear-gradient(135deg, var(--brand-purple), var(--brand-dark));
  color: var(--white);
}

.earwax-symptom-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: #111827;
  margin-bottom: 0.75rem;
}

.earwax-symptom-desc {
  font-size: 1rem;
  color: var(--text-gray);
  line-height: 1.6;
}

/* Team */
.earwax-team-section {
  padding: 6rem 0;
  background: var(--white);
}

.earwax-team-header {
  text-align: center;
  margin-bottom: 4rem;
}

.earwax-team-title {
  font-size: 2.5rem;
  font-weight: 900;
  color: #111827;
  margin-bottom: 1rem;
}

.earwax-team-description {
  font-size: 1.125rem;
  color: var(--text-gray);
  line-height: 1.7;
  max-width: 800px;
  margin: 0 auto;
}

.earwax-team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  max-width: 1000px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .earwax-team-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.earwax-team-card {
  background: var(--white);
  border-radius: 2rem;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(196, 122, 101, 0.08);
  border: 1px solid rgba(196, 122, 101, 0.10);
  transition: transform 0.4s ease;
}

.earwax-team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(196, 122, 101, 0.18);
}

.earwax-team-image-wrapper {
  position: relative;
  height: 400px;
  overflow: hidden;
}

.earwax-team-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 0.7s ease;
}

.earwax-team-card:hover .earwax-team-image {
  transform: scale(1.05);
}

.earwax-team-badge-green {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  background: #f0fdf4;
  color: #15803d;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.earwax-team-badge-purple {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  background: var(--brand-purple);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.earwax-team-content {
  padding: 2rem;
}

.earwax-team-name {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.25rem;
}

.earwax-team-role {
  font-size: 1rem;
  font-weight: 700;
  color: #C47A65;
  margin-bottom: 1.5rem;
}

.earwax-team-bio {
  font-size: 1rem;
  color: var(--text-gray);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.earwax-team-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.earwax-team-tag {
  background: rgba(196, 122, 101, 0.08);
  color: #B8694F;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.375rem 0.75rem;
  border-radius: 0.5rem;
}

/* Comparison Table */
.earwax-comparison-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, #fafbfc 0%, #f8f9fb 50%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.earwax-comparison-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1200px;
  height: 1200px;
  background: radial-gradient(circle, rgba(196, 122, 101, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.earwax-comparison-header {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
  z-index: 2;
}

.earwax-comparison-title {
  font-size: 2.5rem;
  font-weight: 900;
  color: #0f172a;
  margin-bottom: 1rem;
  letter-spacing: -0.03em;
}

.earwax-comparison-description {
  font-size: 1.125rem;
  color: var(--text-gray);
  font-weight: 500;
}

.earwax-comparison-table-wrapper {
  overflow-x: auto;
  background: var(--white);
  border-radius: 2rem;
  box-shadow: 0 30px 80px rgba(196, 122, 101, 0.10), 0 0 0 1px rgba(196, 122, 101, 0.10);
  position: relative;
  z-index: 2;
}

.earwax-comparison-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  min-width: 700px;
}

.earwax-comparison-table th,
.earwax-comparison-table td {
  padding: 1.5rem 1rem;
  text-align: left;
  border-bottom: 1px solid rgba(196, 122, 101, 0.06);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (min-width: 768px) {
  .earwax-comparison-table th,
  .earwax-comparison-table td {
    padding: 2rem 1.5rem;
  }
}

@media (min-width: 1024px) {
  .earwax-comparison-table th,
  .earwax-comparison-table td {
    padding: 2rem 2.5rem;
  }
}

.earwax-comparison-table th {
  background: linear-gradient(to bottom, #f8f9fb, #f1f3f7);
  font-weight: 800;
  color: #0f172a;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid rgba(196, 122, 101, 0.10);
}

@media (min-width: 768px) {
  .earwax-comparison-table th {
    font-size: 0.8125rem;
    letter-spacing: 0.1em;
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
}

@media (min-width: 1024px) {
  .earwax-comparison-table th {
    padding-top: 2.25rem;
    padding-bottom: 2.25rem;
  }
}

.earwax-comparison-table th:first-child {
  border-top-left-radius: 2rem;
  padding-left: 1rem;
}

@media (min-width: 768px) {
  .earwax-comparison-table th:first-child {
    padding-left: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .earwax-comparison-table th:first-child {
    padding-left: 3rem;
  }
}

.earwax-comparison-table th:last-child {
  border-top-right-radius: 2rem;
  padding-right: 1rem;
}

@media (min-width: 768px) {
  .earwax-comparison-table th:last-child {
    padding-right: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .earwax-comparison-table th:last-child {
    padding-right: 3rem;
  }
}

.earwax-comparison-table th.highlight {
  background: linear-gradient(135deg, rgba(196, 122, 101, 0.10), rgba(212, 144, 124, 0.08));
  color: #B8694F;
  border-bottom: 3px solid #C47A65;
  position: relative;
  font-size: 0.9375rem;
  font-weight: 900;
  box-shadow: inset 0 -3px 0 0 #C47A65;
}

.earwax-comparison-table td {
  font-size: 0.8125rem;
  color: var(--text-slate);
  font-weight: 500;
  line-height: 1.5;
  background: var(--white);
}

@media (min-width: 768px) {
  .earwax-comparison-table td {
    font-size: 0.875rem;
  }
}

@media (min-width: 1024px) {
  .earwax-comparison-table td {
    font-size: 0.9375rem;
    line-height: 1.6;
  }
}

.earwax-comparison-table td:first-child {
  font-weight: 700;
  color: #1e293b;
  font-size: 0.875rem;
  padding-left: 1rem;
  background: linear-gradient(to right, #fafbfc, var(--white));
}

@media (min-width: 768px) {
  .earwax-comparison-table td:first-child {
    font-size: 0.9375rem;
    padding-left: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .earwax-comparison-table td:first-child {
    font-size: 1rem;
    padding-left: 3rem;
  }
}

.earwax-comparison-table td:last-child {
  padding-right: 1rem;
}

@media (min-width: 768px) {
  .earwax-comparison-table td:last-child {
    padding-right: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .earwax-comparison-table td:last-child {
    padding-right: 3rem;
  }
}

.earwax-comparison-table td.highlight {
  background: linear-gradient(135deg, rgba(196, 122, 101, 0.05), rgba(212, 144, 124, 0.03));
  font-weight: 700;
  color: #B8694F;
  border-left: 2px solid rgba(196, 122, 101, 0.25);
  border-right: 2px solid rgba(196, 122, 101, 0.25);
  position: relative;
  font-size: 0.875rem;
}

@media (min-width: 768px) {
  .earwax-comparison-table td.highlight {
    font-size: 0.9375rem;
    border-left: 3px solid rgba(196, 122, 101, 0.25);
    border-right: 3px solid rgba(196, 122, 101, 0.25);
  }
}

@media (min-width: 1024px) {
  .earwax-comparison-table td.highlight {
    font-size: 1rem;
  }
}

.earwax-comparison-table tbody tr {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.earwax-comparison-table tbody tr:hover {
  background: linear-gradient(to right, rgba(196, 122, 101, 0.02), rgba(196, 122, 101, 0.04), rgba(196, 122, 101, 0.02));
  transform: scale(1.005);
}

.earwax-comparison-table tbody tr:hover td {
  border-bottom-color: rgba(196, 122, 101, 0.10);
}

.earwax-comparison-table tbody tr:hover td:first-child {
  background: linear-gradient(to right, rgba(196, 122, 101, 0.06), rgba(196, 122, 101, 0.03));
  color: #B8694F;
}

.earwax-comparison-table tbody tr:hover td.highlight {
  background: linear-gradient(135deg, rgba(196, 122, 101, 0.10), rgba(212, 144, 124, 0.06));
  border-left-color: #C47A65;
  border-right-color: #C47A65;
  box-shadow: inset 0 0 0 1px rgba(196, 122, 101, 0.15);
}

.earwax-comparison-table tbody tr:last-child td {
  border-bottom: none;
  padding-bottom: 2.5rem;
}

.earwax-comparison-table tbody tr:last-child td:first-child {
  border-bottom-left-radius: 2rem;
}

.earwax-comparison-table tbody tr:last-child td:last-child {
  border-bottom-right-radius: 2rem;
}

/* Process */
.earwax-process-section {
  padding: 6rem 0;
  background: var(--white);
}

.earwax-process-header {
  text-align: center;
  margin-bottom: 5rem;
}

.earwax-process-title {
  font-size: 2.5rem;
  font-weight: 900;
  color: #111827;
  margin-bottom: 1rem;
}

.earwax-process-description {
  font-size: 1.125rem;
  color: var(--text-gray);
}

.earwax-process-step {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 5rem;
}

@media (min-width: 1024px) {
  .earwax-process-step {
    grid-template-columns: 1fr 1fr;
  }
}

.earwax-process-step:last-child {
  margin-bottom: 0;
}

.earwax-process-step-content {
  position: relative;
}

.earwax-process-step-icon {
  width: 5rem;
  height: 5rem;
  background: rgba(196, 122, 101, 0.10);
  border-radius: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  color: #C47A65;
  font-size: 2rem;
}

.earwax-process-step-title {
  font-size: 1.875rem;
  font-weight: 800;
  color: #111827;
  margin-bottom: 1rem;
}

.earwax-process-step-desc {
  font-size: 1.125rem;
  color: var(--text-gray);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.earwax-process-step-time {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(196, 122, 101, 0.08);
  padding: 0.75rem 1.25rem;
  border-radius: 0.75rem;
  font-weight: 600;
  color: #B8694F;
}

.earwax-process-step-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #f0fdf4;
  color: #15803d;
  padding: 0.75rem 1.25rem;
  border-radius: 0.75rem;
  font-weight: 700;
}

.earwax-process-step-image {
  border-radius: 2rem;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(196, 122, 101, 0.15);
}

.earwax-process-step-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.earwax-process-step:hover .earwax-process-step-image img {
  transform: scale(1.05);
}

@media (min-width: 1024px) {
  .earwax-process-step-right .earwax-process-step-content {
    order: 2;
  }
  .earwax-process-step-right .earwax-process-step-image {
    order: 1;
  }
}

/* Pricing */
.earwax-pricing-section {
  padding: 6rem 0;
  background: var(--white);
}

.earwax-pricing-header {
  text-align: center;
  margin-bottom: 4rem;
}

.earwax-pricing-title {
  font-size: 2.5rem;
  font-weight: 900;
  color: #111827;
  margin-bottom: 1rem;
}

.earwax-pricing-description {
  font-size: 1.125rem;
  color: var(--text-gray);
}

.earwax-pricing-grid-new {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto 3rem;
}

@media (min-width: 768px) {
  .earwax-pricing-grid-new {
    grid-template-columns: 1fr 1fr;
  }
}

.earwax-pricing-card-new {
  background: var(--white);
  border-radius: 2rem;
  padding: 2.5rem;
  border: 2px solid rgba(196, 122, 101, 0.12);
  transition: all 0.4s ease;
  position: relative;
  display: flex;
  flex-direction: column;
}

.earwax-pricing-card-new:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(196, 122, 101, 0.15);
  border-color: #C47A65;
}

.earwax-pricing-card-featured-new {
  background: linear-gradient(135deg, #fef8f6, var(--white));
  border: 3px solid #C47A65;
  box-shadow: 0 20px 60px rgba(196, 122, 101, 0.18);
  transform: scale(1.05);
}

.earwax-pricing-card-featured-new:hover {
  transform: scale(1.08) translateY(-8px);
}

.earwax-pricing-badge-new {
  position: absolute;
  top: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #C47A65, #B8694F);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 800;
  padding: 0.5rem 1.25rem;
  border-radius: 9999px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 12px rgba(196, 122, 101, 0.3);
}

.earwax-pricing-card-header {
  text-align: center;
  margin-bottom: 2rem;
}

.earwax-pricing-icon-new {
  width: 4.5rem;
  height: 4.5rem;
  background: rgba(196, 122, 101, 0.10);
  border-radius: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: #C47A65;
  font-size: 1.75rem;
  transition: all 0.4s ease;
}

.earwax-pricing-card-new:hover .earwax-pricing-icon-new {
  transform: scale(1.1) rotate(5deg);
  background: linear-gradient(135deg, #C47A65, #B8694F);
  color: var(--white);
}

.earwax-pricing-card-title-new {
  font-size: 1.5rem;
  font-weight: 800;
  color: #111827;
}

.earwax-pricing-price-new {
  text-align: center;
  margin-bottom: 2rem;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.25rem;
}

.earwax-pricing-currency {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 900;
  color: #6B4FA0;
}

.earwax-pricing-amount {
  font-family: var(--font-heading);
  font-size: 4.5rem;
  font-weight: 900;
  color: #111827;
  line-height: 1;
}

.earwax-pricing-per {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-gray);
}

.earwax-pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  flex: 1;
}

.earwax-pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.75rem 0;
  font-size: 0.9375rem;
  color: var(--text-slate);
  line-height: 1.5;
}

.earwax-pricing-features li i {
  color: #15803d;
  font-size: 1rem;
  margin-top: 0.125rem;
  flex-shrink: 0;
}

.earwax-pricing-btn-new {
  width: 100%;
  font-size: 1.0625rem;
  padding: 1.125rem 2rem;
}

.earwax-pricing-guarantee {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  color: #15803d;
  font-weight: 700;
  font-size: 0.875rem;
}

.earwax-pricing-guarantee i {
  font-size: 1.125rem;
}

.earwax-pricing-value {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  padding: 2.5rem;
  background: var(--brand-light);
  border-radius: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.earwax-pricing-value-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #B8694F;
  font-weight: 600;
  font-size: 0.9375rem;
}

.earwax-pricing-value-item i {
  color: #C47A65;
  font-size: 1.125rem;
}

/* Testimonials */
.earwax-testimonials-section {
  padding: 6rem 0;
  background: var(--brand-light);
}

.earwax-testimonials-header {
  text-align: center;
  margin-bottom: 4rem;
}

.earwax-testimonials-title {
  font-size: 2.5rem;
  font-weight: 900;
  color: #111827;
  margin-bottom: 1rem;
}

.earwax-testimonials-subtitle {
  font-size: 1.125rem;
  color: var(--text-gray);
  line-height: 1.7;
}

.earwax-testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .earwax-testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.earwax-testimonial-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 1.5rem;
  border: 1px solid rgba(196, 122, 101, 0.10);
  transition: all 0.4s ease;
  box-shadow: 0 4px 20px rgba(196, 122, 101, 0.05);
}

.earwax-testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(196, 122, 101, 0.15);
  border-color: #C47A65;
}

.earwax-testimonial-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.earwax-testimonial-avatar {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid #C47A65;
  flex-shrink: 0;
}

.earwax-testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.earwax-testimonial-meta {
  flex: 1;
}

.earwax-testimonial-author {
  font-size: 1rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.25rem;
}

.earwax-testimonial-quote {
  font-size: 1rem;
  font-style: italic;
  color: var(--text-slate);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.earwax-testimonial-footer {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #15803d;
  font-size: 0.875rem;
  font-weight: 600;
}

.earwax-testimonial-footer i {
  font-size: 1rem;
}

/* FAQ */
.earwax-faq-section {
  padding: 6rem 0;
  background: var(--white);
}

.earwax-faq-header {
  text-align: center;
  margin-bottom: 4rem;
}

.earwax-faq-title {
  font-size: 2.5rem;
  font-weight: 900;
  color: #111827;
}

.earwax-faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.earwax-faq-item {
  border: 1px solid rgba(196, 122, 101, 0.15);
  border-radius: 1rem;
  overflow: hidden;
  transition: all 0.3s ease;
}

.earwax-faq-item.active {
  border-color: #C47A65;
  box-shadow: 0 8px 20px rgba(196, 122, 101, 0.10);
}

.earwax-faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
}

.earwax-faq-number {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--brand-purple);
  opacity: 0.5;
}

.earwax-faq-text {
  flex: 1;
  font-size: 1.125rem;
  font-weight: 700;
  color: #111827;
}

.earwax-faq-icon {
  color: #C47A65;
  transition: transform 0.3s ease;
}

.earwax-faq-item.active .earwax-faq-icon {
  transform: rotate(45deg);
}

.earwax-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.earwax-faq-item.active .earwax-faq-answer {
  max-height: 200px;
  padding: 0 1.5rem 1.5rem 4rem;
}

.earwax-faq-answer p {
  color: var(--text-gray);
  line-height: 1.6;
}

/* Final CTA */
.earwax-cta-section {
  background: linear-gradient(135deg, #6B4FA0, #8B6BBF);
  padding: 5rem 0;
  text-align: center;
}

.earwax-cta-inner {
  max-width: 700px;
  margin: 0 auto;
}

.earwax-cta-title {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 1rem;
  line-height: 1.3;
}

.earwax-cta-description {
  font-family: var(--font-primary);
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 2rem;
  line-height: 1.6;
}

.earwax-cta-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  margin-bottom: 2rem;
}

.earwax-cta-section .primary-cta {
  background: linear-gradient(135deg, #C47A65, #B8694F);
  color: #ffffff;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.earwax-cta-section .primary-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.25);
}

.earwax-cta-section .secondary-cta {
  color: #2D1B4E;
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
}

.earwax-cta-section .secondary-cta:hover {
  background: #ffffff;
  border-color: #ffffff;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
}

.earwax-cta-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.25rem;
}

.earwax-cta-trust-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-primary);
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
}

.earwax-cta-trust-item i {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
}

@media (min-width: 640px) {
  .earwax-cta-actions {
    flex-direction: row;
    justify-content: center;
  }

  .earwax-cta-title {
    font-size: 2.6rem;
  }
}
