/* ============================================
   EAR WAX REMOVAL PAGE STYLES — Bowland Pharmacy
   Uses earwax- prefix
   Pattern A Light hero with rotated image card
   ============================================ */


/* ============================================
   F1. HERO — Pattern A Light
   ============================================ */
.earwax-hero-section {
  position: relative;
  display: flex;
  align-items: center;
  padding: 0 0 40px;
  overflow: hidden;
  background: linear-gradient(to bottom, var(--brand-light), var(--white));
}

@media (min-width: 1024px) {
  .earwax-hero-section {
    padding: 0;
    min-height: 85vh;
  }
}

.earwax-hero-bg {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(63, 115, 174, 0.05) 1px, transparent 1px);
  background-size: 30px 30px;
  z-index: 0;
  pointer-events: none;
}

.earwax-hero-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
  background-size: 30px 30px;
  z-index: 1;
  pointer-events: none;
}

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

.earwax-hero-glow-2 {
  position: absolute;
  bottom: -10%;
  left: -5%;
  width: 500px;
  height: 500px;
  background: rgba(121, 188, 46, 0.06);
  border-radius: 50%;
  filter: blur(80px);
  z-index: 1;
  animation: float 10s ease-in-out infinite reverse;
  pointer-events: none;
}

.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-title {
  font-size: 2.5rem;
  font-weight: 900;
  color: #0f172a;
  margin-top: 0;
  margin-bottom: 1rem;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

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

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

.earwax-hero-subtitle {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--brand-primary);
  margin-bottom: 1.5rem;
  line-height: 1.4;
}

@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-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: var(--brand-primary);
  font-size: 1.125rem;
}

.earwax-hero-trust-item span {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-slate);
}

/* Right Visual — Rotated Image Card */
.earwax-hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.earwax-hero-image-card {
  position: relative;
  width: 100%;
  max-width: 480px;
  height: 600px;
  border-radius: 2rem;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
  border: 6px solid var(--white);
  transform: rotate(-2deg);
  transition: transform 0.5s ease;
}

.earwax-hero-image-card:hover {
  transform: rotate(0deg);
}

.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);
  -webkit-backdrop-filter: blur(12px);
  padding: 1.5rem;
  border-radius: 1.5rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  text-align: center;
  border: 1px solid rgba(63, 115, 174, 0.2);
  animation: float 6s ease-in-out infinite;
}

.earwax-hero-price-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-slate);
  margin-bottom: 0.25rem;
}

.earwax-hero-price-amount {
  display: block;
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 900;
  color: var(--brand-primary);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.earwax-hero-price-sub {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--brand-dark);
}

/* ============================================
   F2. STATS BAR — Glassmorphic white
   ============================================ */
.earwax-stats-section {
  position: relative;
  z-index: 20;
  margin-top: -2.5rem;
  padding: 0 0 2rem;
  background: transparent;
}

.earwax-stats-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(63, 115, 174, 0.1);
  border-radius: 1.5rem;
  padding: 2rem 3rem;
  box-shadow: 0 10px 40px rgba(63, 115, 174, 0.08);
}

.earwax-stat-divider {
  width: 1px;
  height: 3rem;
  background: linear-gradient(to bottom, transparent, rgba(63, 115, 174, 0.2), transparent);
  display: none;
}

@media (min-width: 768px) {
  .earwax-stat-divider {
    display: block;
  }
}

.earwax-stat-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.earwax-stat-icon {
  width: 3rem;
  height: 3rem;
  background: var(--brand-primary);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.earwax-stat-icon i {
  font-size: 1.125rem;
  color: var(--white);
}

.earwax-stat-content {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}

.earwax-stat-number {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 900;
  color: #0f172a;
  line-height: 1;
}

.earwax-stat-label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-gray);
}

/* ============================================
   F3. SYMPTOMS — 3-column with scale/rotate hover
   ============================================ */
.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-top: 0;
  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(63, 115, 174, 0.1);
  border-radius: 1.5rem;
  padding: 2rem;
  transition: all 0.4s ease;
  box-shadow: 0 4px 20px rgba(63, 115, 174, 0.05);
}

.earwax-symptom-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(63, 115, 174, 0.12);
  border-color: var(--brand-primary);
}

.earwax-symptom-icon {
  width: 3.5rem;
  height: 3.5rem;
  background: linear-gradient(135deg, rgba(63, 115, 174, 0.15), rgba(42, 80, 122, 0.1));
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--brand-primary);
  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-primary), var(--brand-dark));
  color: var(--white);
}

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

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

/* ============================================
   F4. TEAM — 2-column card grid (max 1000px)
   ============================================ */
.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-top: 0;
  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(63, 115, 174, 0.08);
  border: 1px solid rgba(63, 115, 174, 0.1);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.earwax-team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(63, 115, 174, 0.15);
}

.earwax-team-image-wrapper {
  position: relative;
  height: 300px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(63, 115, 174, 0.06), rgba(42, 80, 122, 0.04));
}

/* Initials avatar fallback when no photo uploaded */
.earwax-team-avatar {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(63, 115, 174, 0.08), rgba(42, 80, 122, 0.05));
}

.earwax-team-avatar-initials {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-dark));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  box-shadow: 0 10px 30px rgba(63, 115, 174, 0.25);
}

.earwax-team-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  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-primary);
  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-top: 0;
  margin-bottom: 0.25rem;
}

.earwax-team-role {
  font-size: 1rem;
  font-weight: 700;
  color: var(--brand-primary);
  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(63, 115, 174, 0.08);
  color: var(--brand-dark);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.375rem 0.75rem;
  border-radius: 0.5rem;
}

/* ============================================
   F5. COMPARISON TABLE
   ============================================ */
.earwax-comparison-section {
  padding: 6rem 0;
  background: var(--brand-light);
}

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

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

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

.earwax-comparison-table-wrapper {
  overflow-x: auto;
  background: var(--white);
  border-radius: 1.5rem;
  box-shadow: 0 10px 40px rgba(63, 115, 174, 0.08);
  border: 1px solid rgba(63, 115, 174, 0.1);
}

.earwax-comparison-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px;
}

.earwax-comparison-note {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-top: 1.5rem;
  padding: 1.25rem 1.5rem;
  background: rgba(63, 115, 174, 0.07);
  border-left: 4px solid var(--brand-primary, #3f73ae);
  border-radius: 0.75rem;
}

.earwax-comparison-note svg {
  flex-shrink: 0;
  color: var(--brand-primary, #3f73ae);
  margin-top: 0.15rem;
}

.earwax-comparison-note p {
  margin: 0;
  color: var(--text-dark, #1f2937);
  font-size: 0.95rem;
  line-height: 1.5;
}

.earwax-comparison-table th,
.earwax-comparison-table td {
  padding: 1.5rem;
  text-align: left;
  border-bottom: 1px solid #f3f4f6;
}

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

.earwax-comparison-table th {
  background: #f9fafb;
  font-weight: 800;
  color: #0f172a;
  font-size: 0.9375rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.earwax-comparison-table th.highlight {
  background: rgba(63, 115, 174, 0.08);
  color: var(--brand-primary);
  border-bottom: 3px solid var(--brand-primary);
  font-size: 1rem;
  font-weight: 900;
}

.earwax-comparison-table td {
  font-size: 0.9375rem;
  color: var(--text-gray);
  font-weight: 500;
}

.earwax-comparison-table td:first-child {
  font-weight: 700;
  color: #1e293b;
}

.earwax-comparison-table td.highlight {
  background: rgba(63, 115, 174, 0.03);
  font-weight: 700;
  color: var(--brand-primary);
  border-left: 2px solid rgba(63, 115, 174, 0.15);
  border-right: 2px solid rgba(63, 115, 174, 0.15);
}

.earwax-comparison-table tbody tr {
  transition: background 0.3s ease;
}

.earwax-comparison-table tbody tr:hover {
  background: rgba(63, 115, 174, 0.02);
}

.earwax-comparison-table tbody tr:hover td.highlight {
  background: rgba(63, 115, 174, 0.06);
}

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

/* ============================================
   F6. PROCESS — 3 alternating steps
   ============================================ */
.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-top: 0;
  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: linear-gradient(135deg, rgba(63, 115, 174, 0.15), rgba(42, 80, 122, 0.1));
  border-radius: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  color: var(--brand-primary);
  font-size: 2rem;
}

.earwax-process-step-title {
  font-size: 1.875rem;
  font-weight: 800;
  color: #111827;
  margin-top: 0;
  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: var(--brand-light);
  padding: 0.75rem 1.25rem;
  border-radius: 0.75rem;
  font-weight: 600;
  color: var(--brand-dark);
}

.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(0, 0, 0, 0.12);
}

.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;
  }
}

/* Process Cards — Used when no images are uploaded */
.earwax-process-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  counter-reset: process-step;
}

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

.earwax-process-card {
  background: var(--brand-light);
  border: 1px solid rgba(63, 115, 174, 0.1);
  border-radius: 1.5rem;
  padding: 2.5rem 2rem;
  position: relative;
  transition: all 0.4s ease;
  text-align: center;
}

.earwax-process-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(63, 115, 174, 0.1);
  border-color: var(--brand-primary);
}

.earwax-process-card-number {
  position: absolute;
  top: -1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 2.5rem;
  height: 2.5rem;
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-dark));
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 900;
  box-shadow: 0 4px 12px rgba(63, 115, 174, 0.3);
}

.earwax-process-card-icon {
  width: 4.5rem;
  height: 4.5rem;
  background: linear-gradient(135deg, rgba(63, 115, 174, 0.1), rgba(42, 80, 122, 0.08));
  border-radius: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 1rem auto 1.5rem;
  color: var(--brand-primary);
  font-size: 1.75rem;
  transition: all 0.4s ease;
}

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

.earwax-process-card-title {
  font-size: 1.375rem;
  font-weight: 800;
  color: #111827;
  margin-top: 0;
  margin-bottom: 0.75rem;
}

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

.earwax-process-card .earwax-process-step-time,
.earwax-process-card .earwax-process-step-badge {
  justify-content: center;
}

/* ============================================
   F7. PRICING — 2-column, featured card
   ============================================ */
.earwax-pricing-section {
  padding: 6rem 0;
  background: var(--brand-light);
}

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

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

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

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

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

.earwax-pricing-card {
  background: var(--white);
  border-radius: 2rem;
  padding: 3rem 2rem;
  text-align: center;
  border: 2px solid rgba(63, 115, 174, 0.1);
  transition: all 0.4s ease;
  position: relative;
}

.earwax-pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(63, 115, 174, 0.12);
  border-color: var(--brand-primary);
}

.earwax-pricing-card-featured {
  background: linear-gradient(to bottom, var(--white), #f0f5fa);
  border: 2px solid var(--brand-primary);
  box-shadow: 0 15px 40px rgba(63, 115, 174, 0.15);
}

.earwax-pricing-badge {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-dark));
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 800;
  padding: 0.375rem 0.75rem;
  border-radius: 9999px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.earwax-pricing-icon {
  width: 4rem;
  height: 4rem;
  background: rgba(63, 115, 174, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--brand-primary);
  font-size: 1.5rem;
}

.earwax-pricing-price {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 900;
  color: #111827;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.earwax-pricing-card-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: #111827;
  margin-top: 0;
  margin-bottom: 1rem;
}

.earwax-pricing-card-desc {
  font-size: 1rem;
  color: var(--text-gray);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.earwax-pricing-callout {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: #f0fdf4;
  color: #15803d;
  padding: 0.75rem;
  border-radius: 0.75rem;
  font-weight: 600;
  font-size: 0.875rem;
  margin-bottom: 2rem;
}

.earwax-pricing-btn {
  width: 100%;
}

/* ============================================
   F8. TESTIMONIALS — Premium editorial 3-column
   ============================================ */
.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-top: 0;
  margin-bottom: 1rem;
}

.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(63, 115, 174, 0.1);
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
}

.earwax-testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(63, 115, 174, 0.1);
  border-color: var(--brand-primary);
}

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

.earwax-testimonial-avatar {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-dark));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  flex-shrink: 0;
}

.earwax-testimonial-meta {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}

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

.earwax-testimonial-verified {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: #15803d;
}

.earwax-testimonial-verified i {
  font-size: 0.6875rem;
}

.earwax-testimonial-quote {
  font-size: 1.0625rem;
  font-style: italic;
  color: var(--text-slate);
  line-height: 1.7;
  margin: 0.75rem 0 1.25rem;
  flex: 1;
}

.earwax-testimonial-service {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(63, 115, 174, 0.08);
  color: var(--brand-dark);
  padding: 0.375rem 0.75rem;
  border-radius: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  width: fit-content;
}

/* ============================================
   F9. FAQ — Warm cream, numbered accordion
   ============================================ */
.earwax-faq-section {
  padding: 6rem 0;
  background: var(--brand-light);
  position: relative;
  overflow: hidden;
}

.earwax-faq-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: rgba(63, 115, 174, 0.04);
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

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

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

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

.earwax-faq-item {
  background: var(--white);
  border: 1px solid rgba(63, 115, 174, 0.1);
  border-radius: 1rem;
  overflow: hidden;
  transition: all 0.3s ease;
}

.earwax-faq-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(63, 115, 174, 0.08);
}

.earwax-faq-item.active {
  border-color: var(--brand-primary);
  border-left: 4px solid var(--brand-primary);
  box-shadow: 0 8px 24px rgba(63, 115, 174, 0.1);
}

.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-primary);
  opacity: 0.4;
}

.earwax-faq-item.active .earwax-faq-number {
  opacity: 1;
}

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

.earwax-faq-icon {
  color: var(--brand-primary);
  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: 300px;
  padding: 0 1.5rem 1.5rem 4rem;
}

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

/* ============================================
   F10. FINAL CTA — Deep blue gradient
   ============================================ */
.earwax-cta-section {
  position: relative;
  background: linear-gradient(135deg, var(--brand-dark), var(--brand-primary)) !important;
  padding: 6rem 0;
  overflow: hidden;
  text-align: center;
}

.earwax-cta-glow-1 {
  position: absolute;
  top: -10%;
  right: -5%;
  width: 600px;
  height: 600px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}

.earwax-cta-glow-2 {
  position: absolute;
  bottom: -10%;
  left: -5%;
  width: 500px;
  height: 500px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.earwax-cta-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
  background-size: 30px 30px;
  pointer-events: none;
}

.earwax-cta-content {
  position: relative;
  z-index: 10;
}

.earwax-cta-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.earwax-cta-badge {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 0.5rem 1.25rem;
  border-radius: 9999px;
  color: var(--white);
  font-weight: 700;
  font-size: 0.875rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.earwax-cta-title {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--white);
  margin-top: 0;
  margin-bottom: 1.5rem;
}

.earwax-cta-description {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 700px;
  margin: 0 auto 3rem;
  line-height: 1.6;
}

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

.earwax-cta-button-white {
  background: var(--white) !important;
  color: var(--brand-dark) !important;
  padding: 1.25rem 2.5rem;
  font-size: 1.125rem;
}

.earwax-cta-button-white:hover {
  background: rgba(255, 255, 255, 0.9) !important;
  transform: scale(1.05);
}

.earwax-cta-button-outline {
  background: transparent !important;
  color: var(--white) !important;
  border: 2px solid rgba(255, 255, 255, 0.3) !important;
  padding: 1.25rem 2.5rem;
  font-size: 1.125rem;
}

.earwax-cta-button-outline:hover {
  background: rgba(255, 255, 255, 0.1) !important;
  border-color: rgba(255, 255, 255, 0.5) !important;
  transform: scale(1.05);
}

.earwax-cta-trust-checks {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.earwax-cta-check {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--white);
  font-size: 0.9375rem;
  font-weight: 600;
}

.earwax-cta-check i {
  font-size: 0.875rem;
  opacity: 0.9;
}

/* ============================================
   SCROLL REVEAL ANIMATIONS
   ============================================ */
.earwax-reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.earwax-reveal.earwax-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── STATS BAR — 2x2 mobile grid ── */
@media (max-width: 1023px) {
  .earwax-stats-section {
    margin-top: 0;
    padding: 0 0 2rem;
  }
  .earwax-stats-bar {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    padding: 1.5rem;
  }
  .earwax-stat-item {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 0.5rem;
  }
  .earwax-stat-content {
    align-items: center;
  }
}


/* ============================================
   BOOKING CALENDAR
   ============================================ */
.earwax-booking-section {
  padding: 5rem 0;
  background: var(--white);
  scroll-margin-top: var(--nav-height);
}

@media (min-width: 1024px) {
  .earwax-booking-section {
    padding: 6rem 0;
  }
}

.earwax-booking-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3rem;
}

.earwax-booking-title {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 900;
  color: var(--text-dark);
  margin: 0 0 0.75rem;
  line-height: 1.15;
}

@media (min-width: 1024px) {
  .earwax-booking-title {
    font-size: 2.5rem;
  }
}

.earwax-booking-subtitle {
  font-size: 1.0625rem;
  color: var(--text-gray);
  line-height: 1.6;
  margin: 0;
}
