@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600&family=Playfair+Display:ital,wght@0,500;0,700;1,500&display=swap');

:root {
  --vitality-red: #df2a52;
  --flow-blue: #0ea5e9;
  --ink-slate: #0f172a;
  --paper-cloud: #f8fafc;
  --tone-highlight: #fef08a;
  
  --font-accent-title: 'Playfair Display', serif;
  --font-base-read: 'Inter', sans-serif;
  
  --grad-vitality: linear-gradient(135deg, rgba(223,42,82,0.9) 0%, rgba(14,165,233,0.85) 100%);
  --grad-calm: linear-gradient(to right, #0f172a, #1e293b);
  --grad-light: linear-gradient(180deg, #f8fafc 0%, #e2e8f0 100%);
}

body {
  font-family: var(--font-base-read);
  color: var(--ink-slate);
  background-color: var(--paper-cloud);
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-accent-title);
  color: var(--ink-slate);
}

/* Unique Structural Classes */
.circulatory-nav-bar {
  background-color: var(--paper-cloud);
  border-bottom: 2px solid var(--flow-blue);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.wellness-logo-text {
  font-family: var(--font-accent-title);
  color: var(--vitality-red);
  font-weight: 700;
  font-size: 1.5rem;
  text-decoration: none;
}

.nav-link-item {
  color: var(--ink-slate);
  font-weight: 600;
  transition: color 0.3s ease;
  text-decoration: none;
}
.nav-link-item:hover {
  color: var(--vitality-red);
}

.vital-hero-wrapper {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
}

.vital-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.pulse-title-main {
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.1;
  color: #ffffff;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.action-trigger-btn {
  display: inline-block;
  background-color: var(--vitality-red);
  color: #ffffff;
  font-weight: 600;
  padding: 1rem 2.5rem;
  border-radius: 9999px;
  text-decoration: none;
  transition: transform 0.3s, background-color 0.3s;
  border: none;
  cursor: pointer;
}
.action-trigger-btn:hover {
  background-color: #be123c;
  transform: translateY(-2px);
}

.edu-content-layer {
  padding: 5rem 1.5rem;
  background: var(--grad-light);
}

.habit-stat-box {
  background-color: #ffffff;
  border-top: 4px solid var(--flow-blue);
  border-radius: 0.5rem;
  padding: 2rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}
.habit-stat-box:hover {
  transform: translateY(-5px);
}

.step-marker-circle {
  width: 3rem;
  height: 3rem;
  background-color: var(--vitality-red);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.knowledge-footer-wrap {
  background-color: var(--ink-slate);
  color: var(--paper-cloud);
  padding: 4rem 1.5rem 2rem;
}

.knowledge-footer-wrap a {
  color: var(--flow-blue);
  text-decoration: none;
}
.knowledge-footer-wrap a:hover {
  color: var(--tone-highlight);
}

.disclaimer-plate {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 2rem;
  padding-top: 2rem;
  font-size: 0.875rem;
  text-align: center;
  opacity: 0.8;
}

/* Cookie Banner */
#cookie-banner {
  background-color: var(--ink-slate);
  color: var(--paper-cloud);
  box-shadow: 0 -4px 10px rgba(0,0,0,0.2);
}
.cookie-btn-accept {
  background-color: var(--vitality-red);
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 0.375rem;
  border: none;
  cursor: pointer;
  font-weight: 600;
}
.cookie-btn-decline {
  background-color: #4B5563;
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 0.375rem;
  border: none;
  cursor: pointer;
}

/* Forms */
.booking-input-field {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #cbd5e1;
  border-radius: 0.375rem;
  margin-top: 0.5rem;
  font-family: var(--font-base-read);
}
.booking-input-field:focus {
  outline: none;
  border-color: var(--flow-blue);
  box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.2);
}

/* Mobile Nav Toggle */
#mobile-nav-menu {
  display: none;
}
#mobile-nav-menu.is-active {
  display: block;
}

/* Additional Layout Elements */
.faq-wrap-box {
  background: white;
  padding: 1.5rem;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.numbered-colored-list {
  list-style: none;
  padding-left: 0;
}
.numbered-colored-list li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 0.75rem;
}
.numbered-colored-list li::before {
  content: counter(item);
  counter-increment: item;
  position: absolute;
  left: 0;
  top: -2px;
  width: 1.5rem;
  height: 1.5rem;
  background-color: var(--vitality-red);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: bold;
}
.numbered-colored-list-container {
  counter-reset: item;
}

.expert-stat-number {
  font-size: 3.5rem;
  font-family: var(--font-accent-title);
  color: var(--vitality-red);
  line-height: 1;
}