@import url('https://fonts.googleapis.com/css2?family=Lora:wght@400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --primary-color: #D35400;
  --primary-dark: #BA4A00;
  --primary-light: #E67E22;
  --accent-sage: #6B8E7B;
  --accent-cream: #F8F5F0;
  --secondary-color: #1F2937;
  --text-color: #374151;
  --text-light: #6B7280;
  --bg-warm: #FDFCFA;
  --bg-white: #FFFFFF;
  --shadow-soft: 0 10px 40px rgba(200, 122, 92, 0.08);
  --shadow-medium: 0 20px 60px rgba(31, 41, 55, 0.1);
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2.5rem;
  --spacing-xl: 4rem;
  --spacing-2xl: 6rem;
}

/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: -0.01em;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Lora', Georgia, serif;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--secondary-color);
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05), 0 4px 16px rgba(31, 41, 55, 0.03);
  z-index: 1000;
  padding: 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  gap: 24px;
}

.nav-spacer {
  flex: 1;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo-img {
  height: 45px;
  width: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.logo:hover .logo-img {
  transform: scale(1.05);
}

.phone-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: var(--accent-cream);
  border-radius: 24px;
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s;
  white-space: nowrap;
}

.phone-link:hover {
  background: var(--primary-light);
  color: white;
  transform: translateY(-1px);
}

.phone-icon {
  font-size: 1.1rem;
}

.btn {
  padding: 14px 32px;
  border-radius: 28px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  border: none;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  font-family: 'Inter', sans-serif;
}

.btn-primary {
  background: var(--primary-color);
  color: white;
  box-shadow: 0 4px 14px rgba(200, 122, 92, 0.2), 0 2px 6px rgba(200, 122, 92, 0.15);
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(200, 122, 92, 0.28), 0 4px 12px rgba(200, 122, 92, 0.2);
}

.btn-large {
  padding: 18px 48px;
  font-size: 1.05rem;
  font-weight: 600;
}

/* Hero Section */
.hero {
  padding: 160px 0 120px;
  background: linear-gradient(135deg, var(--bg-warm) 0%, #FFF9F5 100%);
  position: relative;
  overflow: hidden;
}

.hero-bg-shape {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(209, 122, 92, 0.12), transparent 70%);
  border-radius: 47% 53% 61% 39% / 44% 56% 44% 56%;
  top: -100px;
  right: -150px;
  animation: float 20s ease-in-out infinite;
}

.hero-bg-shape-2 {
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(122, 155, 126, 0.08), transparent 70%);
  border-radius: 38% 62% 45% 55% / 63% 42% 58% 37%;
  bottom: -80px;
  left: -100px;
  animation: float 15s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  33% { transform: translate(30px, -30px) rotate(5deg); }
  66% { transform: translate(-20px, 20px) rotate(-5deg); }
}

.hero .container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-label {
  display: inline-block;
  color: var(--accent-sage);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  font-size: 0.75rem;
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
  from {
    opacity: 0;
    transform: translateY(20px);
  }
}

.hero h1 {
  font-size: 4.5rem;
  line-height: 1.15;
  margin-bottom: 32px;
  color: var(--secondary-color);
  display: flex;
  flex-direction: column;
  font-weight: 600;
}

.hero-line {
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
}

.hero-line:nth-child(1) { animation-delay: 0.1s; }
.hero-line:nth-child(2) { animation-delay: 0.2s; }
.hero-line:nth-child(3) { animation-delay: 0.3s; }

.hero-emphasis {
  color: var(--primary-color);
  font-style: italic;
  position: relative;
  display: inline-block;
}

.hero-emphasis::after {
  content: '';
  position: absolute;
  bottom: 8px;
  left: 0;
  width: 100%;
  height: 12px;
  background: rgba(209, 122, 92, 0.15);
  border-radius: 4px;
  z-index: -1;
}

/* Hero Trust Strip - Social Proof */
.hero-trust-strip {
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeInUp 0.6s ease forwards;
}

.trust-rating {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: white;
  padding: 10px 18px;
  border-radius: 50px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(200, 122, 92, 0.15);
}

.stars {
  color: #FFB800;
  font-size: 1rem;
  letter-spacing: 2px;
}

.rating-text {
  font-size: 0.9rem;
  color: var(--text-color);
  font-weight: 500;
}

/* Hero Subhead */
.hero-subhead {
  font-size: 1.2rem;
  color: var(--text-light);
  margin-bottom: 24px;
  line-height: 1.7;
  max-width: 520px;
  font-weight: 400;
  opacity: 0;
  animation: fadeInUp 0.8s ease 0.4s forwards;
}

.hero-subhead strong {
  color: var(--secondary-color);
}

/* Hero Benefits Tags */
.hero-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeInUp 0.8s ease 0.45s forwards;
}

.benefit-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: rgba(107, 142, 123, 0.1);
  color: var(--accent-sage);
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 20px;
  white-space: nowrap;
}

.hero-content > p {
  font-size: 1.125rem;
  color: var(--text-light);
  margin-bottom: 48px;
  line-height: 1.75;
  max-width: 560px;
  font-weight: 400;
  opacity: 0;
  animation: fadeInUp 0.8s ease 0.4s forwards;
}

.price-display {
  background: white;
  padding: 24px 32px;
  border-radius: 20px;
  margin-bottom: 28px;
  display: inline-flex;
  flex-direction: column;
  gap: 8px;
  box-shadow: 0 8px 32px rgba(200, 122, 92, 0.1), 0 2px 8px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(200, 122, 92, 0.12);
  opacity: 0;
  animation: fadeInUp 0.8s ease 0.5s forwards;
  position: relative;
}

.price-badge {
  position: absolute;
  top: -12px;
  left: 20px;
  background: linear-gradient(135deg, #e74c3c, #c0392b);
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.price-main {
  display: flex;
  align-items: baseline;
  gap: 4px;
  color: var(--primary-color);
}

.price-currency {
  font-size: 1.4rem;
  font-weight: 700;
}

.price-amount {
  font-size: 3.5rem;
  font-weight: 700;
  font-family: 'Lora', Georgia, serif;
  line-height: 1;
  letter-spacing: -0.02em;
}

.price-slash {
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--text-light);
  margin: 0 4px;
}

.price-label {
  font-size: 1.1rem;
  color: var(--text-light);
  font-weight: 500;
}

.price-original {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
}

.price-original .strike {
  color: var(--text-light);
  text-decoration: line-through;
}

.price-original .savings {
  background: rgba(46, 204, 113, 0.15);
  color: #27ae60;
  padding: 3px 10px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.8rem;
}

/* CTA Pulse Animation */
.cta-pulse {
  animation: fadeInUp 0.8s ease 0.6s forwards, pulse 2s ease-in-out 1.5s infinite;
  opacity: 0;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 4px 14px rgba(200, 122, 92, 0.2), 0 2px 6px rgba(200, 122, 92, 0.15); }
  50% { box-shadow: 0 8px 28px rgba(200, 122, 92, 0.35), 0 4px 12px rgba(200, 122, 92, 0.25); }
}

/* Hero Reassurance */
.hero-reassurance {
  margin-top: 20px;
  font-size: 0.9rem;
  color: var(--text-light);
  opacity: 0;
  animation: fadeInUp 0.8s ease 0.7s forwards;
}

.hero-content .btn {
  opacity: 0;
  animation: fadeInUp 0.8s ease 0.6s forwards;
}

.hero-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  animation: fadeInUp 0.8s ease 0.3s forwards;
}

.hero-image-blob {
  position: absolute;
  width: 120%;
  height: 120%;
  background: linear-gradient(135deg, rgba(122, 155, 126, 0.15), rgba(209, 122, 92, 0.15));
  border-radius: 44% 56% 58% 42% / 52% 61% 39% 48%;
  z-index: 0;
  animation: morph 8s ease-in-out infinite;
}

@keyframes morph {
  0%, 100% { border-radius: 44% 56% 58% 42% / 52% 61% 39% 48%; }
  25% { border-radius: 58% 42% 48% 52% / 41% 53% 47% 59%; }
  50% { border-radius: 46% 54% 52% 48% / 59% 45% 55% 41%; }
  75% { border-radius: 52% 48% 44% 56% / 48% 57% 43% 52%; }
}

.hero-img {
  width: 100%;
  max-width: 420px;
  height: 520px;
  border-radius: 20px;
  position: relative;
  z-index: 1;
  object-fit: cover;
  object-position: center;
  box-shadow: 0 20px 60px rgba(44, 53, 57, 0.12);
}

/* Experts Help Section */
.experts-help {
  padding: var(--spacing-2xl) 0;
  background: white;
  position: relative;
  overflow: hidden;
}

.section-decorative-shape {
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(122, 155, 126, 0.06), transparent 65%);
  border-radius: 43% 57% 48% 52% / 54% 46% 54% 46%;
  top: -150px;
  left: -100px;
  animation: float 18s ease-in-out infinite;
}

.section-header-centered {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 80px;
}

.section-eyebrow {
  display: inline-block;
  color: var(--accent-sage);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.8rem;
  margin-bottom: 20px;
  font-family: 'Inter', sans-serif;
}

.section-header-centered h2 {
  font-size: 3rem;
  color: var(--secondary-color);
  margin-bottom: 24px;
  line-height: 1.2;
  font-weight: 600;
}

.section-lead {
  font-size: 1.125rem;
  color: var(--text-light);
  line-height: 1.7;
  font-weight: 400;
}

.help-cards-asymmetric {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 280px);
  gap: 24px;
  margin-bottom: 80px;
}

.help-card-modern {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.help-card-modern:hover {
  transform: translateY(-8px);
}

.help-card-modern:nth-child(1) {
  grid-column: span 2;
}

.help-card-modern:nth-child(2) {
  grid-column: span 2;
}

.help-card-elevated {
  transform: translateY(-20px);
}

.help-card-modern:nth-child(3) {
  grid-column: span 2;
  grid-row: 2;
}

.help-card-modern:nth-child(4) {
  grid-column: span 2;
  grid-row: 2;
}

.help-card-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(44, 53, 57, 0.4), rgba(44, 53, 57, 0.92));
}

.help-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px;
  color: white;
  z-index: 1;
}

.help-card-content h3 {
  font-size: 1.75rem;
  font-weight: 600;
  margin-bottom: 12px;
  font-family: 'Lora', Georgia, serif;
  letter-spacing: -0.01em;
  color: white;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.help-card-content p {
  font-size: 1rem;
  line-height: 1.6;
  opacity: 0.95;
  color: white;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

/* Services Grid Modern */
.services-intro {
  text-align: center;
  margin-bottom: 60px;
}

.services-intro h3 {
  font-size: 2rem;
  color: var(--secondary-color);
  margin-bottom: 16px;
  font-family: 'Lora', Georgia, serif;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.services-intro p {
  color: var(--text-light);
  font-size: 1.05rem;
}

.services-grid-modern {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.service-card-minimal {
  text-align: center;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card-minimal:hover {
  transform: translateY(-6px);
}

.service-card-minimal:hover .service-icon-modern {
  background: var(--accent-cream);
  box-shadow: 0 12px 32px rgba(200, 122, 92, 0.15);
  border-color: rgba(200, 122, 92, 0.2);
}

.service-icon-modern {
  width: 140px;
  height: 140px;
  margin: 0 auto 28px;
  border-radius: 50%;
  background: rgba(107, 142, 123, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid rgba(107, 142, 123, 0.08);
}

.service-icon-modern img {
  width: 75%;
  height: 75%;
  object-fit: contain;
}

.service-card-minimal h3 {
  font-size: 1.3rem;
  color: var(--secondary-color);
  margin-bottom: 10px;
  font-weight: 600;
  font-family: 'Lora', Georgia, serif;
  letter-spacing: -0.01em;
}

.service-card-minimal p {
  color: var(--text-light);
  font-size: 0.975rem;
  line-height: 1.6;
  font-weight: 400;
}

/* Section Styles */
.section {
  padding: var(--spacing-2xl) 0;
}

.section-header-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
  align-items: end;
  margin-bottom: 72px;
}

.section-header-split h2 {
  font-size: 3rem;
  color: var(--secondary-color);
  margin-bottom: 0;
  line-height: 1.2;
  font-weight: 600;
}

.section-lead-side {
  color: var(--text-light);
  font-size: 1.125rem;
  line-height: 1.7;
  margin: 0;
  font-weight: 400;
}

/* Experts Section */
.experts {
  background: var(--bg-warm);
  position: relative;
  overflow: hidden;
}

.experts-bg-shape {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(209, 122, 92, 0.08), transparent 70%);
  border-radius: 51% 49% 47% 53% / 56% 48% 52% 44%;
  bottom: -200px;
  right: -150px;
  animation: float 22s ease-in-out infinite;
}

.experts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.expert-card {
  background: white;
  border-radius: 24px;
  padding: 36px;
  box-shadow: 0 4px 20px rgba(31, 41, 55, 0.06), 0 2px 8px rgba(31, 41, 55, 0.04);
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(31, 41, 55, 0.04);
}

.expert-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(31, 41, 55, 0.1), 0 4px 16px rgba(31, 41, 55, 0.06);
}

.expert-image-container {
  position: relative;
  margin-bottom: 20px;
}

.expert-img {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top;
  border: 5px solid var(--bg-light);
}

.expert-exp-badge {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  background: #C87A5C;
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
}

.expert-title {
  display: block;
  color: #B8693C;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 10px;
}

.expert-card h3 {
  color: var(--secondary-color);
  margin-bottom: 15px;
  font-size: 1.3rem;
}

.expert-desc {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 15px;
}

.expert-tags {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.expert-tags span {
  background: rgba(200, 122, 92, 0.12);
  color: #B8693C;
  padding: 5px 12px;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 600;
}

/* Stats Section */
.stats {
  background: var(--secondary-color);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.stats-texture {
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 30%, rgba(122, 155, 126, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.stats-headline {
  color: white;
  font-size: 2.8rem;
  margin-bottom: 70px;
  font-weight: 500;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.3;
}

.stats-grid-modern {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 50px;
  margin-bottom: 60px;
  position: relative;
  z-index: 1;
}

.stat-item {
  text-align: center;
}

.stat-visual {
  display: flex;
  align-items: baseline;
  justify-content: center;
  margin-bottom: 16px;
}

.stat-number-large {
  font-size: 5.5rem;
  font-weight: 700;
  color: var(--primary-light);
  font-family: 'Lora', Georgia, serif;
  line-height: 1;
  letter-spacing: -0.02em;
}

.stat-plus {
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--primary-light);
  margin-left: 4px;
}

.stat-label {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
  letter-spacing: 0.5px;
}

.stats-reassurance {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.05rem;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

/* Transform Section */
.transform {
  background: white;
}

.transform h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.transform .section-subtitle {
  text-align: center;
  font-size: 1.125rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto 50px;
}

.transform-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.transform-card {
  display: flex;
  flex-direction: column;
  background: white;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(31, 41, 55, 0.06), 0 2px 8px rgba(31, 41, 55, 0.04);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(31, 41, 55, 0.04);
}

.transform-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(31, 41, 55, 0.1), 0 4px 16px rgba(31, 41, 55, 0.06);
}

.transform-text {
  padding: 40px 36px;
  flex: 1;
}

.transform-text h3 {
  font-size: 1.05rem;
  color: var(--text-light);
  margin-bottom: 16px;
  font-weight: 500;
  font-family: 'Inter', sans-serif;
  line-height: 1.5;
}

.transform-text h4 {
  font-size: 1.6rem;
  color: var(--secondary-color);
  margin-bottom: 0;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.transform-img {
  width: 100%;
  height: auto;
  max-height: 300px;
  object-fit: cover;
  object-position: top;
}

/* Testimonials */
.testimonials {
  background: #1e293b;
  text-align: center;
  color: white;
}

.testimonials h2, .testimonials .section-subtitle {
  color: white;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-top: 40px;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.06);
  padding: 36px;
  border-radius: 20px;
  text-align: left;
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-4px);
}

.testimonial-card p {
  color: rgba(255, 255, 255, 0.92);
  font-style: italic;
  line-height: 1.75;
  margin-bottom: 24px;
  font-size: 0.975rem;
  font-weight: 400;
}

.testimonial-author strong {
  display: block;
  color: white;
  margin-bottom: 3px;
}

.testimonial-author span {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

/* Therapies Section */
.therapies {
  background: #f8fafc;
  text-align: center;
}

.therapies-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.therapy-card {
  background: white;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(31, 41, 55, 0.06), 0 2px 8px rgba(31, 41, 55, 0.04);
  text-align: left;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(31, 41, 55, 0.04);
}

.therapy-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(31, 41, 55, 0.1), 0 4px 16px rgba(31, 41, 55, 0.06);
}

.therapy-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.therapy-card h3 {
  padding: 24px 28px 12px;
  color: var(--secondary-color);
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.therapy-card p {
  padding: 0 28px 28px;
  color: var(--text-light);
  font-size: 0.975rem;
  line-height: 1.7;
  font-weight: 400;
}

/* CTA Section */
.cta-section {
  background: #0052cc;
  padding: 60px 0;
  text-align: center;
}

.cta-section h2 {
  color: white;
  font-size: 2rem;
  margin-bottom: 25px;
}

.cta-section .btn-primary {
  background: var(--primary-color);
  color: white;
}

.cta-section .btn-primary:hover {
  background: var(--primary-dark);
}



/* Contact/Booking Section */
.contact {
  background: #f0f7ff;
  text-align: center;
}

.booking {
  background: white;
  text-align: center;
}

.booking-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  margin-top: 40px;
  align-items: start;
}

.booking-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
  background: #FAFAFA;
  padding: 48px;
  border-radius: 24px;
  border: 1px solid #E5E7EB;
  box-shadow: 0 2px 8px rgba(31, 41, 55, 0.04);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: left;
}

.form-group label {
  font-weight: 600;
  color: var(--secondary-color);
  font-size: 0.95rem;
  margin-bottom: 2px;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 14px 16px;
  border: 1.5px solid #D1D5DB;
  border-radius: 12px;
  font-family: inherit;
  font-size: 0.95rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 4px rgba(200, 122, 92, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.price-summary {
  background: #f5f5f5;
  padding: 20px;
  border-radius: 8px;
  border: 1px solid #e5e5e5;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
}

.price-item {
  display: flex;
  justify-content: space-between;
  width: 100%;
  align-items: center;
}

.price-item span:first-child {
  color: var(--text-color);
  font-weight: 600;
  font-size: 0.95rem;
}

.price-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
}

.form-error {
  background: #fee;
  border: 1px solid #fcc;
  color: #c33;
  padding: 12px 15px;
  border-radius: 8px;
  font-size: 0.9rem;
}

.form-disclaimer {
  text-align: center;
  color: var(--text-light);
  font-size: 0.85rem;
  margin-top: 10px;
}

.booking-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: left;
}

.booking-info img {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
  height: 300px;
}

.booking-info h3 {
  color: var(--secondary-color);
  font-size: 1.3rem;
  margin-top: 10px;
}

.benefits-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 20px 0;
}

.benefits-list li {
  color: var(--text-color);
  font-size: 0.95rem;
  font-weight: 500;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  margin-top: 40px;
  text-align: left;
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  padding: 15px;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--primary-color);
}

.contact-image img {
  width: 100%;
  border-radius: 20px;
  margin-bottom: 20px;
}

.contact-image p {
  color: var(--text-light);
  line-height: 1.7;
}

.contact-image a {
  color: var(--primary-color);
}

/* Footer */
.footer {
  background: var(--secondary-color);
  color: white;
  padding: 60px 0 30px;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1.5fr 1.5fr;
  gap: 50px;
  margin-bottom: 40px;
  align-items: start;
}

.footer-logo {
  height: 60px;
  margin-bottom: 20px;
}

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

.footer-cta {
  text-align: center;
  padding: 30px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-cta h4 {
  color: white;
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.footer-cta p {
  color: rgba(255,255,255,0.8);
  margin-bottom: 20px;
  font-size: 0.95rem;
}

.footer-cta .btn {
  margin-top: 10px;
}

.footer-connect h4 {
  margin-bottom: 20px;
  font-size: 1.1rem;
}

.footer-connect p {
  color: rgba(255,255,255,0.7);
  margin-bottom: 10px;
}

.footer-connect a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
}

.footer-connect a:hover {
  color: white;
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-links a {
  color: rgba(255,255,255,0.7);
  transition: color 0.3s;
}

.social-links a:hover {
  color: white;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom p {
  color: rgba(255,255,255,0.6);
}

.footer-legal {
  display: flex;
  gap: 20px;
}

.footer-legal a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 0.9rem;
}

.footer-legal a:hover {
  color: white;
}

/* Container */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

/* Responsive */
@media (max-width: 1024px) {
  .hero h1 {
    font-size: 3.2rem;
  }

  .section-header-centered h2,
  .section-header-split h2 {
    font-size: 2.6rem;
  }

  .help-cards-asymmetric {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }

  .help-card-modern:nth-child(1),
  .help-card-modern:nth-child(2),
  .help-card-modern:nth-child(3),
  .help-card-modern:nth-child(4) {
    grid-column: span 1;
    grid-row: auto;
  }

  .help-card-elevated {
    transform: translateY(0);
  }

  .services-grid-modern {
    grid-template-columns: repeat(2, 1fr);
  }

  .section-header-split {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .experts-grid,
  .therapies-grid,
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .footer-content {
    grid-template-columns: 1fr 1fr;
  }

  .footer-cta {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  /* Global adjustments */
  .container {
    padding: 0 16px;
  }

  .section {
    padding: 60px 0;
  }

  /* Header */
  .header {
    padding: 8px 0;
  }

  .nav {
    flex-direction: row;
    gap: 8px;
    align-items: center;
    padding: 10px 0;
  }

  .logo {
    flex-shrink: 1;
    min-width: 0;
  }

  .logo-img {
    height: 32px;
  }

  .logo-text {
    font-size: 1.2rem;
  }

  .nav-spacer {
    flex: 1;
  }

  .phone-link {
    display: none;
  }

  .header .btn {
    padding: 10px 16px;
    font-size: 0.8rem;
    white-space: nowrap;
    flex-shrink: 0;
  }

  /* Hero Section - Mobile CRO Optimized */
  .hero {
    padding: 100px 0 60px;
  }

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

  /* Content first on mobile for faster value proposition */
  .hero-content {
    order: 1;
  }

  .hero-image {
    order: 2;
    margin-top: 30px;
  }

  .hero-trust-strip {
    margin-bottom: 20px;
  }

  .trust-rating {
    padding: 8px 14px;
    gap: 8px;
  }

  .stars {
    font-size: 0.85rem;
  }

  .rating-text {
    font-size: 0.8rem;
  }

  .hero h1 {
    font-size: 2rem;
    line-height: 1.25;
    margin-bottom: 16px;
  }

  .hero-emphasis::after {
    height: 8px;
    bottom: 4px;
  }

  .hero-subhead {
    font-size: 1rem;
    margin-bottom: 20px;
    max-width: 100%;
  }

  .hero-benefits {
    justify-content: center;
    gap: 8px;
    margin-bottom: 24px;
  }

  .benefit-tag {
    padding: 6px 12px;
    font-size: 0.75rem;
  }

  .hero-content > p {
    max-width: 100%;
    font-size: 1rem;
    margin-bottom: 32px;
  }

  .price-display {
    display: inline-flex;
    padding: 24px 28px 20px;
    margin-bottom: 20px;
  }

  .price-badge {
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.7rem;
    padding: 4px 12px;
  }

  .price-amount {
    font-size: 2.8rem;
  }

  .price-currency {
    font-size: 1.2rem;
  }

  .price-slash {
    font-size: 1.4rem;
  }

  .price-original {
    justify-content: center;
  }

  .price-original .savings {
    font-size: 0.75rem;
  }

  .btn-large {
    padding: 16px 36px;
    font-size: 1rem;
    width: 100%;
    max-width: 320px;
  }

  .hero-reassurance {
    margin-top: 16px;
    font-size: 0.85rem;
  }

  .hero-img {
    max-width: 280px;
    height: auto;
    min-height: auto;
  }

  /* Section Headers */
  .section-header-centered {
    margin-bottom: 40px;
  }

  .section-header-centered h2 {
    font-size: 2rem;
    padding: 0 10px;
    color: var(--secondary-color);
  }

  .section-lead {
    font-size: 1rem;
    padding: 0 10px;
  }

  .section-header-split {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 40px;
  }

  .section-header-split h2 {
    font-size: 2rem;
    padding: 0 10px;
  }

  .section-lead-side {
    font-size: 1rem;
    padding: 0 10px;
  }

  /* Help Cards */
  .help-cards-asymmetric {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 16px;
    margin-bottom: 50px;
  }

  .help-card-modern {
    height: 220px;
  }

  .help-card-modern:nth-child(1),
  .help-card-modern:nth-child(2),
  .help-card-modern:nth-child(3),
  .help-card-modern:nth-child(4) {
    grid-column: span 1;
    grid-row: auto;
  }

  .help-card-elevated {
    transform: translateY(0);
  }

  .help-card-content {
    padding: 20px;
  }

  .help-card-content h3 {
    font-size: 1.35rem;
    margin-bottom: 8px;
    color: white;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
  }

  .help-card-content p {
    font-size: 0.9rem;
    color: white;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
  }

  /* Services */
  .services-intro {
    margin-bottom: 40px;
  }

  .services-intro h3 {
    font-size: 1.7rem;
    padding: 0 10px;
  }

  .services-intro p {
    font-size: 1rem;
    padding: 0 10px;
  }

  .services-grid-modern {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .service-icon-modern {
    width: 120px;
    height: 120px;
    margin-bottom: 20px;
  }

  .service-card-minimal h3 {
    font-size: 1.2rem;
    color: var(--secondary-color);
  }

  .service-card-minimal {
    background: white;
    padding: 20px;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  }

  /* Experts */
  .experts-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .expert-card {
    padding: 28px 24px;
  }

  .expert-img {
    width: 140px;
    height: 140px;
  }

  /* Stats */
  .stats {
    padding: 70px 0;
  }

  .stats-headline {
    font-size: 2rem;
    margin-bottom: 50px;
    padding: 0 10px;
  }

  .stats-grid-modern {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 20px;
    margin-bottom: 40px;
  }

  .stat-number-large {
    font-size: 3.8rem;
  }

  .stat-plus {
    font-size: 2.2rem;
  }

  .stat-label {
    font-size: 0.95rem;
  }

  .stats-reassurance {
    font-size: 1rem;
    padding: 0 10px;
  }

  /* Transform */
  .transform h2 {
    font-size: 2rem;
    padding: 0 16px;
    margin-bottom: 12px;
  }

  .transform .section-subtitle {
    font-size: 1rem;
    padding: 0 16px;
    margin-bottom: 40px;
  }

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

  .transform-card {
    flex-direction: column;
  }

  .transform-text {
    padding: 32px 24px;
  }

  .transform-text h3 {
    font-size: 1rem;
    margin-bottom: 12px;
  }

  .transform-text h4 {
    font-size: 1.4rem;
    color: var(--secondary-color);
  }

  .transform-img {
    width: 100%;
    height: 220px;
  }

  /* Testimonials */
  .testimonials h2 {
    font-size: 2rem;
    padding: 0 10px;
  }

  .testimonials .section-subtitle {
    font-size: 1rem;
    padding: 0 10px;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .testimonial-card {
    padding: 24px 20px;
  }

  .testimonial-card p {
    font-size: 0.95rem;
    margin-bottom: 20px;
  }

  /* Therapies */
  .therapies h2 {
    font-size: 2rem;
    padding: 0 10px;
  }

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

  .therapy-img {
    height: 200px;
  }

  .therapy-card h3 {
    font-size: 1.3rem;
    padding: 20px 24px 10px;
  }

  .therapy-card p {
    padding: 0 24px 24px;
    font-size: 0.95rem;
  }

  /* CTA */
  .cta-section {
    padding: 50px 0;
  }

  .cta-section h2 {
    font-size: 1.75rem;
    margin-bottom: 20px;
    padding: 0 20px;
  }

  /* Booking */
  .booking h2 {
    font-size: 2rem;
    padding: 0 10px;
  }

  .booking .section-subtitle {
    font-size: 1rem;
    padding: 0 10px;
  }

  .contact-content,
  .booking-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .booking-form {
    padding: 32px 20px;
    gap: 20px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .form-group label {
    font-size: 0.9rem;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 12px 14px;
    font-size: 0.9rem;
  }

  .price-summary {
    padding: 16px 18px;
  }

  .price-value {
    font-size: 1.3rem;
  }

  .booking-info {
    order: 1;
  }

  .booking-info img {
    max-width: 280px;
    margin: 0 auto 20px;
    display: block;
  }

  .booking-info h3 {
    font-size: 1.4rem;
  }

  /* Footer */
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 35px;
  }

  .footer-brand p:first-child {
    font-size: 1.2rem;
  }

  .footer-cta h4,
  .footer-connect h4 {
    font-size: 1.15rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .footer-legal {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 15px;
  }

  /* WhatsApp */
  .whatsapp-btn {
    width: 56px;
    height: 56px;
    bottom: 20px;
    right: 20px;
  }

  .whatsapp-btn svg {
    width: 26px;
    height: 26px;
  }
}

/* Extra small mobile screens */
@media (max-width: 375px) {
  .logo-text {
    font-size: 1.1rem;
  }

  .header .btn {
    padding: 9px 16px;
    font-size: 0.8rem;
  }

  /* Hero - Extra small */
  .hero h1 {
    font-size: 1.75rem;
  }

  .hero-subhead {
    font-size: 0.95rem;
  }

  .hero-benefits {
    gap: 6px;
  }

  .benefit-tag {
    padding: 5px 10px;
    font-size: 0.7rem;
  }

  .hero-emphasis::after {
    height: 6px;
    bottom: 2px;
  }

  .price-display {
    padding: 20px 24px 16px;
  }

  .price-amount {
    font-size: 2.4rem;
  }

  .price-currency {
    font-size: 1rem;
  }

  .price-slash {
    font-size: 1.2rem;
  }

  .hero-img {
    max-width: 240px;
  }

  .section-header-centered h2,
  .section-header-split h2,
  .transform h2,
  .testimonials h2,
  .therapies h2,
  .booking h2,
  .stats-headline {
    font-size: 1.75rem;
  }

  .stat-number-large {
    font-size: 3.2rem;
  }

  .stat-plus {
    font-size: 1.8rem;
  }

  .stats-grid-modern {
    gap: 35px 15px;
  }

  .help-card-modern {
    height: 200px;
  }

  .help-card-content h3 {
    font-size: 1.2rem;
  }

  .help-card-content p {
    font-size: 0.85rem;
  }

  .cta-section h2 {
    font-size: 1.5rem;
  }

  .btn-large {
    padding: 14px 28px;
    font-size: 0.95rem;
  }
}
</style>

<!-- Interakt WhatsApp Widget -->
<script>
(function(w,d,s,c,r,a,m){
  w['KiwiObject']=r;
  w[r]=w[r] || function () {
    (w[r].q=w[r].q||[]).push(arguments)};
  w[r].l=1*new Date();
    a=d.createElement(s);
    m=d.getElementsByTagName(s)[0];
  a.async=1;
  a.src=c;
  m.parentNode.insertBefore(a,m)
})(window,document,'script',"https://app.interakt.ai/kiwi-sdk/kiwi-sdk-17-prod-min.js?v="+ new Date().getTime(),'kiwi');
window.addEventListener("load",function () {
  kiwi.init('', 'QdfH7hoCRSenw2MbHCrBOf2TDFGdtoL2', {});
});
</script>
