:root {
  --color-primary: #dd7552;
  --color-primary-light: #e8997c;
  --color-primary-dark: #c85a37;
  --color-primary-subtle: rgba(221, 117, 82, 0.06);

  --color-gray-light: #eeeeee;
  --color-gray-medium: #d1d5db;
  --color-gray: #9ca3af;
  --color-gray-dark: #212121;
  --color-white: #ffffff;
  --color-black: #000000;

  --color-surface: #fafafa;
  --color-surface-elevated: #f8f9fa;
  --color-border: #e5e7eb;
  --color-border-light: #f3f4f6;
  --color-border-strong: #d1d5db;

  --shadow-xs: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
  --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  --shadow-primary: 0 10px 25px -5px rgba(221, 117, 82, 0.3);

  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-family);
  line-height: 1.65;
  color: var(--color-gray-dark);
  background: var(--color-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* Enhanced Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.025em;
  color: var(--color-gray-dark);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  background: var(--color-white);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: calc(90px + 80px) 48px 80px;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 55%;
  height: 100%;
  background: var(--color-surface);
  z-index: 1;
}

.hero::after {
  content: '';
  position: absolute;
  top: 20%;
  right: 8%;
  width: 35%;
  height: 60%;
  background: var(--color-primary-subtle);
  z-index: 2;
}

.hero-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 100px;
  align-items: center;
  position: relative;
  z-index: 3;
}

.hero-badge {
  background: var(--color-primary-subtle);
  color: var(--color-primary);
  padding: 12px 24px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: inline-block;
  margin-bottom: 32px;
  border: 2px solid var(--color-primary);
  border-style: solid;
  border-width: 0 0 0 4px;
  position: relative;
}

.hero-title {
  font-size: clamp(42px, 5.5vw, 72px);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 32px;
  color: var(--color-gray-dark);
  letter-spacing: -0.03em;
}

.hero-title .accent {
  color: var(--color-primary);
  position: relative;
}

.hero-description {
  font-size: 20px;
  color: var(--color-gray-dark);
  margin-bottom: 48px;
  line-height: 1.7;
  opacity: 0.8;
  max-width: 560px;
  font-weight: 400;
}

.hero-actions {
  display: flex;
  gap: 20px;
  align-items: center;
}

.hero-visual {
  height: 560px;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-2xl);
  border: 8px solid var(--color-white);
}

.hero-visual svg {
  width: 100%;
  height: 100%;
}

.hero-visual::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(33, 33, 33, 0.2) 0%, transparent 50%, rgba(33, 33, 33, 0.1) 100%);
}

/* Enhanced Stats Section */
.quick-stats {
  background: var(--color-gray-dark);
  color: var(--color-white);
  padding: 80px 48px;
  border-top: 4px solid var(--color-primary);
  position: relative;
}

.quick-stats::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
}

.stats-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 60px;
}

.stat-item {
  text-align: center;
  position: relative;
  padding: 32px 24px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item::after {
  content: '';
  position: absolute;
  right: -30px;
  top: 30%;
  height: 40%;
  width: 2px;
  background: rgba(255, 255, 255, 0.15);
}

.stat-item:last-child::after {
  display: none;
}

.stat-number {
  font-size: 48px;
  font-weight: 900;
  margin-bottom: 12px;
  color: var(--color-primary);
  letter-spacing: -0.02em;
  display: block;
}

.stat-label {
  font-size: 15px;
  opacity: 0.85;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 500;
  line-height: 1.4;
}

/* Enhanced Conditions Section */
.conditions {
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
}

.conditions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 32px;
}

.condition-card {
  background: var(--color-white);
  padding: 40px;
  transition: var(--transition);
  position: relative;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-xs);
  border-left: 6px solid var(--color-border-light);
}

.condition-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background: var(--color-primary);
  transform: scaleY(0);
  transition: var(--transition);
  transform-origin: bottom;
}

.condition-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--color-primary);
}

.condition-card:hover::before {
  transform: scaleY(1);
}

.condition-icon {
  width: 64px;
  height: 64px;
  background: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  color: var(--color-white);
  box-shadow: var(--shadow-sm);
  position: relative;
}

.condition-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--color-gray-dark);
  letter-spacing: -0.01em;
}

.condition-card p {
  color: var(--color-gray-dark);
  line-height: 1.7;
  opacity: 0.8;
  font-size: 16px;
}

/* Enhanced Services Section */
.services {
  background: var(--color-white);
  border-top: 1px solid var(--color-border);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(480px, 1fr));
  gap: 40px;
  margin-top: 80px;
}

.service-card {
  background: var(--color-white);
  padding: 48px;
  transition: var(--transition);
  position: relative;
  border: 2px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--color-primary-subtle);
  transition: var(--transition);
}

.service-card::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 4px;
  height: 100%;
  background: var(--color-primary);
  transform: scaleY(0);
  transition: var(--transition);
  transform-origin: top;
}

.service-card:hover {
  transform: translateY(-12px);
  box-shadow: var(--shadow-2xl);
  border-color: var(--color-primary);
}

.service-card:hover::before {
  left: 0;
}

.service-card:hover::after {
  transform: scaleY(1);
}

.service-header {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 32px;
  position: relative;
  z-index: 2;
}

.service-icon {
  width: 72px;
  height: 72px;
  background: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--color-white);
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

.service-icon::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: var(--transition);
  opacity: 0;
}

.service-card:hover .service-icon::before {
  opacity: 1;
  animation: shine 0.8s ease-out;
}

.service-title {
  font-size: 26px;
  font-weight: 700;
  color: var(--color-gray-dark);
  margin-top: 8px;
  letter-spacing: -0.01em;
  position: relative;
  z-index: 2;
}

.service-description {
  color: var(--color-gray-dark);
  margin-bottom: 32px;
  line-height: 1.75;
  opacity: 0.8;
  font-size: 16px;
  position: relative;
  z-index: 2;
}

.service-cta {
  background: var(--color-primary);
  color: var(--color-white);
  padding: 16px 32px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
  z-index: 2;
  border: 2px solid var(--color-primary);
}

.service-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  transition: var(--transition);
}

.service-cta:hover {
  background: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-primary);
}

.service-cta:hover::before {
  left: 100%;
}

/* Special CTAs Section */
.special-ctas {
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  padding: 100px 48px;
}

.special-ctas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 40px;
  max-width: 1400px;
  margin: 0 auto;
}

.special-cta-card {
  background: var(--color-white);
  padding: 60px 40px;
  border: 2px solid var(--color-border);
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.special-cta-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--color-primary-subtle);
  transition: var(--transition);
}

.special-cta-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-2xl);
  border-color: var(--color-primary);
}

.special-cta-card:hover::before {
  left: 0;
}

.special-cta-content {
  position: relative;
  z-index: 2;
}

.special-cta-icon {
  width: 80px;
  height: 80px;
  background: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  color: var(--color-white);
  box-shadow: var(--shadow-md);
  border-radius: 50%;
}

.special-cta-card h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--color-gray-dark);
}

.special-cta-card p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 32px;
  color: var(--color-gray-dark);
  opacity: 0.8;
}

/* Enhanced About Section */
.about {
  background: var(--color-gray-dark);
  color: var(--color-white);
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--color-gray-dark);
}

.about::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--color-primary);
}

.about-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 120px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.about-content h2 {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  margin-bottom: 32px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--color-white);
}

.about-content p {
  font-size: 17px;
  line-height: 1.75;
  margin-bottom: 24px;
  opacity: 0.9;
  color: var(--color-white);
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.about-feature {
  background: rgba(255, 255, 255, 0.05);
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.about-feature::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(221, 117, 82, 0.05);
  transition: var(--transition);
}

.about-feature:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-6px);
  border-color: rgba(221, 117, 82, 0.3);
}

.about-feature:hover::before {
  left: 0;
}

.about-feature-icon {
  width: 56px;
  height: 56px;
  background: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--color-white);
  box-shadow: var(--shadow-sm);
  position: relative;
  z-index: 2;
}

.about-feature h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--color-white);
  position: relative;
  z-index: 2;
}

.about-feature p {
  font-size: 14px;
  opacity: 0.8;
  line-height: 1.6;
  margin: 0;
  color: var(--color-white);
  position: relative;
  z-index: 2;
}

/* Enhanced Contact Section */
.contact {
  background: var(--color-white);
  border-top: 1px solid var(--color-border);
}

.contact-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: 120px;
}

.contact-info h2 {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  margin-bottom: 32px;
  color: var(--color-gray-dark);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.contact-info p {
  font-size: 20px;
  line-height: 1.75;
  margin-bottom: 48px;
  color: var(--color-gray-dark);
  opacity: 0.8;
}

.contact-methods {
  display: grid;
  gap: 24px;
}

.contact-method {
  background: var(--color-surface);
  padding: 32px;
  display: flex;
  align-items: center;
  gap: 24px;
  transition: var(--transition);
  border: 2px solid var(--color-border);
  box-shadow: var(--shadow-xs);
  position: relative;
  overflow: hidden;
}

.contact-method::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--color-primary-subtle);
  transition: var(--transition);
}

.contact-method:hover {
  transform: translateX(12px);
  box-shadow: var(--shadow-xl);
  border-color: var(--color-primary);
}

.contact-method:hover::before {
  left: 0;
}

.contact-method-icon {
  width: 64px;
  height: 64px;
  background: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  flex-shrink: 0;
  box-shadow: var(--shadow-md);
  position: relative;
  z-index: 2;
}

.contact-method-details {
  position: relative;
  z-index: 2;
}

.contact-method-details h4 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--color-gray-dark);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  opacity: 0.8;
}

.contact-method-value {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}

.contact-method-note {
  font-size: 13px;
  color: var(--color-gray-dark);
  opacity: 0.6;
  line-height: 1.5;
}

.hours-card {
  background: var(--color-primary);
  color: var(--color-white);
  padding: 40px;
  box-shadow: var(--shadow-xl);
  position: relative;
  overflow: hidden;
  border: 4px solid var(--color-white);
}

.hours-card::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 160px;
  height: 160px;
  background: rgba(255, 255, 255, 0.08);
  transform: rotate(45deg);
}

.hours-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, transparent 50%);
}

.hours-card h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 32px;
  text-align: center;
  position: relative;
  z-index: 2;
  letter-spacing: -0.01em;
}

.hours-list {
  list-style: none;
  position: relative;
  z-index: 2;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 15px;
}

.hours-list li:last-child {
  border-bottom: none;
}

.day {
  font-weight: 500;
  opacity: 0.9;
}

.time {
  font-weight: 700;
  letter-spacing: 0.01em;
}

/* Enhanced CTA Section */
.cta {
  background: var(--color-primary);
  color: var(--color-white);
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 100px 48px;
  border-top: 1px solid var(--color-primary-dark);
}

.cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, transparent 50%);
}

.cta-container {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.cta h2 {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  margin-bottom: 24px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.cta p {
  font-size: 20px;
  margin-bottom: 48px;
  opacity: 0.95;
  line-height: 1.7;
}

.cta-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-white {
  background: var(--color-white);
  color: var(--color-primary);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-white);
}

.btn-white:hover {
  background: var(--color-surface);
  transform: translateY(-3px);
  box-shadow: var(--shadow-xl);
}

.btn-outline {
  background: transparent;
  color: var(--color-white);
  border: 2px solid rgba(255, 255, 255, 0.7);
}

.btn-outline:hover {
  background: var(--color-white);
  color: var(--color-primary);
  transform: translateY(-3px);
  border-color: var(--color-white);
}

/* Navigation */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--color-border);
  transition: var(--transition);
  height: 90px;
}

.nav.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-sm);
  border-bottom-color: var(--color-border-strong);
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo {
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  color: var(--color-gray-dark);
  transition: var(--transition-fast);
}

.logo:hover {
  transform: translateY(-1px);
}

.logo-icon {
  width: 48px;
  height: 48px;
  background: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-size: 20px;
  font-weight: 700;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.logo-icon::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: var(--transition);
  opacity: 0;
}

.logo:hover .logo-icon::before {
  opacity: 1;
  animation: shine 0.8s ease-out;
}

@keyframes shine {
  0% { transform: translateX(-100%) translateY(-100%) rotate(-45deg); }
  100% { transform: translateX(100%) translateY(100%) rotate(-45deg); }
}

.logo-text {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--color-gray-dark);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 48px;
}

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}

.nav-link {
  color: var(--color-gray-dark);
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  transition: var(--transition-fast);
  position: relative;
  padding: 12px 0;
  opacity: 0.85;
}

.nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--color-primary);
  transition: var(--transition-fast);
}

.nav-link:hover {
  color: var(--color-primary);
  opacity: 1;
}

.nav-link:hover::before {
  width: 100%;
}

.nav-cta {
  background: var(--color-primary);
  color: var(--color-white);
  padding: 16px 32px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 2px solid var(--color-primary);
}

.nav-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  transition: var(--transition);
}

.nav-cta:hover {
  background: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-primary);
}

.nav-cta:hover::before {
  left: 100%;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 22px;
  cursor: pointer;
  color: var(--color-gray-dark);
  padding: 8px;
  width: 44px;
  height: 44px;
  border-radius: 6px;
  transition: var(--transition-fast);
}

.mobile-toggle:hover {
  background: var(--color-surface);
}

/* Treatments Hero */
.treatments-hero {
  min-height: 70vh;
  background: linear-gradient(135deg, var(--color-white) 0%, var(--color-surface) 100%);
  display: flex;
  align-items: center;
  padding: calc(90px + 60px) 48px 60px;
  position: relative;
  overflow: hidden;
}

.treatments-hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background: var(--color-primary-subtle);
  z-index: 1;
}

.treatments-hero-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.treatments-hero-title {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
  color: var(--color-gray-dark);
  letter-spacing: -0.02em;
}

.treatments-hero-title .accent {
  color: var(--color-primary);
}

.treatments-hero-description {
  font-size: 20px;
  color: var(--color-gray-dark);
  margin-bottom: 40px;
  line-height: 1.6;
  opacity: 0.8;
  max-width: 500px;
}

.treatments-hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--color-primary);
  color: var(--color-white);
  padding: 18px 36px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: var(--transition);
  box-shadow: var(--shadow-md);
}

.treatments-hero-cta:hover {
  background: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-primary);
}

.treatments-hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 400px;
}

.hero-treatment-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  width: 100%;
  max-width: 300px;
}

.hero-card {
  background: var(--color-white);
  padding: 24px;
  text-align: center;
  border: 2px solid var(--color-border);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.hero-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--color-primary-subtle);
  transition: var(--transition);
}

.hero-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-primary);
}

.hero-card:hover::before {
  left: 0;
}

.hero-card-icon {
  font-size: 32px;
  margin-bottom: 12px;
  position: relative;
  z-index: 2;
}

.hero-card-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-gray-dark);
  position: relative;
  z-index: 2;
}

.hero-card:nth-child(5) {
  grid-column: 1 / -1;
  max-width: 200px;
  margin: 0 auto;
}

/* Quick Navigation */
.treatments-quick-nav {
  background: var(--color-white);
  padding: 20px 48px;
  border-bottom: 1px solid var(--color-border);
  position: sticky;
  top: 90px;
  z-index: 100;
  box-shadow: var(--shadow-xs);
}

.quick-nav-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.quick-nav-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-gray);
  white-space: nowrap;
}

.quick-nav-link {
  color: var(--color-gray-dark);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 16px;
  border: 1px solid var(--color-border);
  transition: var(--transition-fast);
  white-space: nowrap;
}

.quick-nav-link:hover {
  background: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
}

/* Section Styles */
.section {
  padding: 120px 48px;
}

.section-container {
  max-width: 1400px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 100px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.section-header::after {
  content: '';
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--color-primary);
}

.section-title {
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 800;
  margin-bottom: 24px;
  color: var(--color-gray-dark);
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.section-subtitle {
  font-size: 20px;
  color: var(--color-gray-dark);
  line-height: 1.7;
  opacity: 0.75;
  font-weight: 400;
}

/* Treatments Overview */
.treatments-overview {
  padding: 80px 48px;
  background: var(--color-white);
}

.treatments-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 32px;
  margin-top: 60px;
}

.treatment-preview-card {
  background: var(--color-white);
  padding: 40px;
  border: 2px solid var(--color-border);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.treatment-preview-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--color-surface);
  transition: var(--transition);
}

.treatment-preview-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: var(--color-primary);
}

.treatment-preview-card:hover::before {
  left: 0;
}

.treatment-preview-card.special-services {
  background: var(--color-primary-subtle);
  border-color: var(--color-primary);
}

.treatment-preview-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--color-white);
  position: relative;
  z-index: 2;
}

.treatment-preview-icon.acupuncture-icon { background: #4CAF50; }
.treatment-preview-icon.auricular-icon { background: #9C27B0; }
.treatment-preview-icon.pain-icon { background: #F44336; }
.treatment-preview-icon.massage-icon { background: #FF9800; }
.treatment-preview-icon.taping-icon { background: #2196F3; }
.treatment-preview-icon.services-icon { background: var(--color-primary); }

.treatment-preview-card h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--color-gray-dark);
  position: relative;
  z-index: 2;
}

.treatment-preview-card p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
  color: var(--color-gray-dark);
  opacity: 0.8;
  position: relative;
  z-index: 2;
}

.treatment-preview-conditions {
  list-style: none;
  margin-bottom: 24px;
  position: relative;
  z-index: 2;
}

.treatment-preview-conditions li {
  padding: 4px 0;
  padding-left: 16px;
  font-size: 14px;
  color: var(--color-gray-dark);
  opacity: 0.7;
  position: relative;
}

.treatment-preview-conditions li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: bold;
}

.treatment-preview-link {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: var(--transition-fast);
  position: relative;
  z-index: 2;
}

.treatment-preview-link:hover {
  color: var(--color-primary-dark);
}

/* Treatment Section */
.treatment-section {
  padding: 100px 48px;
  border-bottom: 1px solid var(--color-border-light);
}

.treatment-section.alt-bg {
  background: var(--color-surface);
}

.treatment-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 80px;
  align-items: start;
}

.treatment-container.reverse {
  grid-template-columns: 400px 1fr;
}

.treatment-badge {
  background: var(--color-primary-subtle);
  color: var(--color-primary);
  padding: 8px 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: inline-block;
  margin-bottom: 24px;
  border-left: 4px solid var(--color-primary);
}

.treatment-title {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  margin-bottom: 24px;
  color: var(--color-gray-dark);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.treatment-intro {
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 40px;
  color: var(--color-gray-dark);
  opacity: 0.8;
}

.treatment-benefits,
.treatment-conditions,
.treatment-process,
.treatment-applications,
.treatment-protocols {
  margin-bottom: 48px;
}

.treatment-benefits h3,
.treatment-conditions h3,
.treatment-process h3,
.treatment-applications h3,
.treatment-protocols h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--color-gray-dark);
}

.treatment-benefits p,
.treatment-applications p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-gray-dark);
  opacity: 0.8;
  margin-bottom: 24px;
}

.benefits-grid,
.specialties-grid,
.protocol-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}

.benefit-item,
.specialty-item,
.protocol-item {
  background: var(--color-white);
  padding: 24px;
  border: 1px solid var(--color-border);
  transition: var(--transition-fast);
}

.treatment-section.alt-bg .benefit-item,
.treatment-section.alt-bg .specialty-item,
.treatment-section.alt-bg .protocol-item {
  background: var(--color-surface-elevated);
}

.benefit-item:hover,
.specialty-item:hover,
.protocol-item:hover {
  border-color: var(--color-primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.benefit-item h4,
.specialty-item h4,
.protocol-item h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--color-primary);
}

.benefit-item p,
.specialty-item p,
.protocol-item p {
  font-size: 15px;
  line-height: 1.5;
  color: var(--color-gray-dark);
  opacity: 0.8;
  margin: 0;
}

.conditions-list,
.applications-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 32px;
}

.condition-category,
.application-category {
  background: var(--color-white);
  padding: 24px;
  border: 1px solid var(--color-border);
}

.treatment-section.alt-bg .condition-category,
.treatment-section.alt-bg .application-category {
  background: var(--color-surface-elevated);
}

.condition-category h4,
.application-category h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--color-primary);
}

.condition-category ul,
.application-category ul {
  list-style: none;
}

.condition-category li,
.application-category li {
  padding: 4px 0 4px 16px;
  font-size: 14px;
  color: var(--color-gray-dark);
  opacity: 0.8;
  position: relative;
}

.condition-category li::before,
.application-category li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: bold;
}

.process-steps {
  display: grid;
  gap: 20px;
}

.process-step {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  transition: var(--transition-fast);
}

.treatment-section.alt-bg .process-step {
  background: var(--color-white);
}

.process-step:hover {
  border-color: var(--color-primary);
  transform: translateX(4px);
}

.step-number {
  width: 40px;
  height: 40px;
  background: var(--color-primary);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
  border-radius: 50%;
}

.step-content h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--color-gray-dark);
}

.step-content p {
  font-size: 15px;
  line-height: 1.5;
  color: var(--color-gray-dark);
  opacity: 0.8;
  margin: 0;
}

.treatment-visual {
  position: sticky;
  top: 140px;
  height: 600px;
  background: var(--color-white);
  border: 2px solid var(--color-border);
  box-shadow: var(--shadow-md);
}

.treatment-section.alt-bg .treatment-visual {
  background: var(--color-surface-elevated);
}

.treatment-visual svg {
  width: 100%;
  height: 100%;
}

.treatment-cta {
  max-width: 1400px;
  margin: 60px auto 0;
  text-align: center;
  padding: 40px;
  background: var(--color-primary-subtle);
  border: 1px solid var(--color-primary);
}

.treatment-cta h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--color-gray-dark);
}

.treatment-cta p {
  font-size: 16px;
  margin-bottom: 24px;
  color: var(--color-gray-dark);
  opacity: 0.8;
}

.btn {
  padding: 18px 36px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  position: relative;
  overflow: hidden;
  font-family: inherit;
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--color-primary);
  color: var(--color-white);
  box-shadow: var(--shadow-md);
  border-color: var(--color-primary);
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: var(--transition);
}

.btn-primary:hover {
  background: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
  transform: translateY(-3px);
  box-shadow: var(--shadow-primary);
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-large {
  padding: 20px 40px;
  font-size: 18px;
}

/* Final CTA */
.final-cta {
  background: var(--color-primary);
  color: var(--color-white);
  padding: 80px 48px;
  text-align: center;
}

.final-cta-content h2 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  margin-bottom: 16px;
}

.final-cta-content p {
  font-size: 18px;
  margin-bottom: 40px;
  opacity: 0.9;
}

.final-cta-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.contact-alternative {
  text-align: center;
}

.contact-alternative p {
  font-size: 14px;
  margin-bottom: 8px;
  opacity: 0.8;
}

.contact-link {
  color: var(--color-white);
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  transition: var(--transition-fast);
}

.contact-link:hover {
  border-bottom-color: var(--color-white);
}

/* Footer */
.footer {
  background: var(--color-black);
  color: var(--color-white);
  padding: 80px 48px 40px;
  border-top: 4px solid var(--color-primary);
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
}

.footer-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 80px;
  margin-bottom: 60px;
}

.footer-brand h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--color-primary);
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  font-size: 15px;
}

.footer-section h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  opacity: 0.9;
  color: var(--color-white);
}

.footer-section ul {
  list-style: none;
}

.footer-section li {
  margin-bottom: 12px;
}

.footer-section a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 14px;
  transition: var(--transition-fast);
  line-height: 1.6;
}

.footer-section a:hover {
  color: var(--color-primary);
  transform: translateX(4px);
}

.footer-bottom {
  border-top: 2px solid rgba(255, 255, 255, 0.1);
  padding-top: 32px;
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
  line-height: 1.6;
}

/* Icons */
.icon {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.icon-lg {
  width: 24px;
  height: 24px;
}

/* Animations */
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: var(--transition);
}

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

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

::-webkit-scrollbar-track {
  background: var(--color-surface);
}

::-webkit-scrollbar-thumb {
  background: var(--color-primary);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--color-primary-dark);
}

/* Selection */
::selection {
  background: var(--color-primary-subtle);
  color: var(--color-primary-dark);
}

::-moz-selection {
  background: var(--color-primary-subtle);
  color: var(--color-primary-dark);
}

/* MOBILE OPTIMIZATIONS */

/* Large Tablets & Small Desktops */
@media (max-width: 1024px) {
  .nav-container {
      padding: 0 32px;
  }

  .section {
      padding: 100px 32px;
  }

  .hero {
      padding: calc(90px + 60px) 32px 60px;
  }

  .hero-container {
      gap: 80px;
  }

  .stats-container {
      gap: 48px;
  }

  .about-container,
  .contact-container {
      gap: 80px;
  }

  .services-grid,
  .special-ctas-grid {
      grid-template-columns: 1fr;
      gap: 32px;
  }

  .service-card,
  .special-cta-card {
      padding: 40px 32px;
  }

  .quick-stats,
  .special-ctas {
      padding: 60px 32px;
  }

  /* Treatments page styles */
  .treatments-hero {
      padding: calc(70px + 40px) 32px 40px;
  }

  .treatments-hero-container {
      grid-template-columns: 1fr;
      gap: 40px;
      text-align: center;
  }

  .hero-treatment-cards {
      max-width: 400px;
      margin: 0 auto;
  }

  .treatments-quick-nav {
      padding: 16px 32px;
      top: 70px;
  }

  .quick-nav-container {
      gap: 16px;
  }

  .quick-nav-link {
      font-size: 13px;
      padding: 6px 12px;
  }

  .treatments-overview {
      padding: 60px 32px;
  }

  .treatments-grid {
      grid-template-columns: 1fr;
      gap: 24px;
  }

  .treatment-section {
      padding: 80px 32px;
  }

  .treatment-container,
  .treatment-container.reverse {
      grid-template-columns: 1fr;
      gap: 40px;
  }

  .treatment-visual {
      position: static;
      order: -1;
  }

  .final-cta {
      padding: 60px 32px;
  }
}

/* Tablets & Large Phones */
@media (max-width: 768px) {
  .nav-container {
      padding: 0 24px;
      height: 70px;
  }

  .nav {
      height: 70px;
  }

  .logo-text {
      font-size: 20px;
  }

  .logo-icon {
      width: 40px;
      height: 40px;
      font-size: 16px;
  }

  .nav-cta {
      padding: 12px 20px;
      font-size: 14px;
  }

  .mobile-toggle {
      display: block;
  }

  .nav-menu {
      display: none;
      position: fixed;
      top: 70px;
      left: 0;
      right: 0;
      bottom: 0;
      background: var(--color-white);
      flex-direction: column;
      padding: 40px 24px;
      z-index: 999;
      box-shadow: var(--shadow-xl);
      transform: translateX(-100%);
      transition: var(--transition);
  }

  .nav-menu.active {
      display: flex;
      transform: translateX(0);
  }

  .nav-links {
      flex-direction: column;
      gap: 32px;
      margin-bottom: 40px;
  }

  .nav-link {
      font-size: 18px;
      padding: 16px 0;
      border-bottom: 1px solid var(--color-border);
  }

  .nav-cta {
      width: 100%;
      justify-content: center;
      padding: 20px 32px;
      font-size: 16px;
  }

  /* Homepage styles */
  .hero {
      padding: calc(70px + 40px) 24px 40px;
      min-height: auto;
  }

  .hero::before,
  .hero::after {
      display: none;
  }

  .hero-container {
      grid-template-columns: 1fr;
      gap: 40px;
      text-align: center;
  }

  .hero-visual {
      height: 300px;
      order: -1;
  }

  .hero-title {
      font-size: clamp(28px, 8vw, 42px);
  }

  .hero-description {
      font-size: 18px;
      max-width: none;
  }

  .section {
      padding: 80px 24px;
  }

  .section-header {
      margin-bottom: 60px;
  }

  .section-title {
      font-size: clamp(28px, 7vw, 42px);
  }

  .section-subtitle {
      font-size: 18px;
  }

  .quick-stats,
  .special-ctas {
      padding: 50px 24px;
  }

  .stats-container {
      grid-template-columns: repeat(2, 1fr);
      gap: 24px;
  }

  .stat-item {
      padding: 24px 16px;
  }

  .stat-item::after {
      display: none;
  }

  .stat-number {
      font-size: 36px;
  }

  .conditions-grid,
  .services-grid,
  .special-ctas-grid {
      grid-template-columns: 1fr;
      gap: 24px;
  }

  .condition-card,
  .service-card {
      padding: 32px 24px;
  }

  .special-cta-card {
      padding: 40px 24px;
  }

  .service-header {
      flex-direction: column;
      align-items: flex-start;
      gap: 20px;
  }

  .service-icon {
      width: 64px;
      height: 64px;
  }

  .service-title {
      font-size: 24px;
      margin-top: 0;
  }

  .about-container,
  .contact-container {
      grid-template-columns: 1fr;
      gap: 60px;
  }

  .about-features {
      grid-template-columns: 1fr;
      gap: 24px;
  }

  .about-feature {
      padding: 24px;
  }

  .contact-methods {
      gap: 20px;
  }

  .contact-method {
      padding: 24px;
      flex-direction: column;
      text-align: center;
      gap: 16px;
  }

  .contact-method-icon {
      width: 56px;
      height: 56px;
  }

  .hours-card {
      padding: 32px 24px;
  }

  .hours-list li {
      padding: 12px 0;
      font-size: 14px;
      flex-wrap: wrap;
      gap: 8px;
  }

  .footer-content {
      grid-template-columns: 1fr;
      gap: 40px;
      text-align: center;
  }

  .cta-actions,
  .hero-actions {
      flex-direction: column;
      align-items: center;
      gap: 16px;
  }

  .btn {
      width: 100%;
      max-width: 300px;
      justify-content: center;
      padding: 16px 32px;
  }

  /* Treatments page styles */
  .treatments-hero {
      padding: calc(70px + 32px) 24px 32px;
      min-height: 60vh;
  }

  .treatments-hero::before {
      display: none;
  }

  .hero-treatment-cards {
      grid-template-columns: 1fr;
      max-width: 200px;
  }

  .hero-card:nth-child(5) {
      grid-column: 1;
  }

  .treatments-quick-nav {
      padding: 12px 24px;
      position: relative;
      top: 0;
  }

  .quick-nav-container {
      flex-direction: column;
      align-items: flex-start;
      gap: 12px;
  }

  .quick-nav-label {
      display: none;
  }

  .treatments-overview {
      padding: 60px 24px;
  }

  .treatments-grid {
      grid-template-columns: 1fr;
  }

  .treatment-preview-card {
      padding: 32px 24px;
  }

  .treatment-section {
      padding: 60px 24px;
  }

  .treatment-intro {
      font-size: 16px;
  }

  .benefits-grid,
  .specialties-grid,
  .protocol-grid,
  .conditions-list,
  .applications-list {
      grid-template-columns: 1fr;
      gap: 16px;
  }

  .benefit-item,
  .specialty-item,
  .protocol-item,
  .condition-category,
  .application-category {
      padding: 20px;
  }

  .treatment-visual {
      margin-top: 40px;
      height: 400px;
  }

  .treatment-cta {
      padding: 32px 24px;
      margin-top: 40px;
  }

  .final-cta {
      padding: 60px 24px;
  }

  .final-cta-actions {
      gap: 20px;
  }
}

/* Small Phones */
@media (max-width: 480px) {
  .nav-container {
      padding: 0 16px;
      height: 60px;
  }

  .nav {
      height: 60px;
  }

  .logo-text {
      font-size: 18px;
  }

  .logo-icon {
      width: 36px;
      height: 36px;
      font-size: 14px;
  }

  .nav-cta {
      padding: 10px 16px;
      font-size: 13px;
  }

  .mobile-toggle {
      width: 40px;
      height: 40px;
      font-size: 18px;
  }

  /* Homepage styles */
  .hero {
      padding: calc(60px + 32px) 16px 32px;
  }

  .hero-visual {
      height: 250px;
  }

  .hero-title {
      font-size: clamp(24px, 8vw, 36px);
      margin-bottom: 20px;
  }

  .hero-description {
      font-size: 16px;
      margin-bottom: 32px;
  }

  .section {
      padding: 60px 16px;
  }

  .quick-stats,
  .special-ctas {
      padding: 40px 16px;
  }

  .stats-container {
      grid-template-columns: 1fr;
      gap: 20px;
  }

  .stat-item {
      padding: 20px 12px;
  }

  .stat-number {
      font-size: 32px;
  }

  .stat-label {
      font-size: 13px;
  }

  .section-title {
      font-size: clamp(24px, 7vw, 36px);
  }

  .section-subtitle {
      font-size: 16px;
  }

  .service-card,
  .condition-card {
      padding: 24px 16px;
  }

  .special-cta-card {
      padding: 32px 16px;
  }

  .service-title {
      font-size: 22px;
  }

  .service-description {
      font-size: 15px;
  }

  .condition-card h3 {
      font-size: 20px;
  }

  .condition-card p {
      font-size: 15px;
  }

  .about-feature {
      padding: 20px 16px;
  }

  .contact-method {
      padding: 20px 16px;
  }

  .hours-card {
      padding: 24px 16px;
  }

  .hours-list li {
      padding: 10px 0;
      font-size: 13px;
  }

  .day, .time {
      flex: 1;
      text-align: left;
  }

  .time {
      text-align: right;
  }

  .footer {
      padding: 60px 16px 32px;
  }

  .cta {
      padding: 80px 16px;
  }

  .btn {
      max-width: 280px;
      padding: 14px 28px;
      font-size: 15px;
  }

  /* Treatments page styles */
  .treatments-hero {
      padding: calc(60px + 24px) 16px 24px;
      min-height: 50vh;
  }

  .treatments-overview {
      padding: 40px 16px;
  }

  .treatment-preview-card {
      padding: 24px 16px;
  }

  .treatment-section {
      padding: 40px 16px;
  }

  .benefit-item,
  .specialty-item,
  .protocol-item,
  .condition-category,
  .application-category {
      padding: 16px;
  }

  .treatment-visual {
      height: 300px;
  }

  .treatment-cta {
      padding: 24px 16px;
  }

  .final-cta {
      padding: 40px 16px;
  }

  .btn-large {
      padding: 18px 36px;
      font-size: 17px;
  }
}

/* Landscape Mobile Optimization */
@media (max-width: 768px) and (orientation: landscape) {
  .treatments-hero {
      min-height: auto;
      padding: calc(70px + 20px) 24px 20px;
  }

  .treatments-hero-container {
      gap: 32px;
  }

  .treatments-hero-visual {
      height: 200px;
  }
}