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

:root {
  --balance-bg-base: #f8faf7;
  --balance-surface-card: #ffffff;
  --balance-tone-primary: #1e5631;
  --balance-tone-hover: #143d22;
  --balance-tone-accent: #e0a96d;
  --balance-tone-soft: #e8f5e9;
  --balance-tone-light-bg: #f0f7f2;
  --balance-ink-main: #1a2a20;
  --balance-ink-muted: #4e6355;
  --balance-ink-inverse: #ffffff;
  --balance-organic-gradient: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
  --balance-wave-gradient: linear-gradient(120deg, #1e5631 0%, #388e3c 100%);
  --balance-accent-gradient: linear-gradient(135deg, #e0a96d 0%, #d48b47 100%);
  
  --font-display: 'Nunito', sans-serif;
  --font-body: 'Mulish', sans-serif;
  
  --organic-radius-pill: 999px;
  --organic-radius-soft: 20px;
  --organic-radius-blob-1: 60% 40% 30% 70% / 60% 30% 70% 40%;
  --organic-radius-blob-2: 50% 50% 50% 50% / 60% 40% 60% 40%;
  --organic-radius-blob-3: 60% 40% 55% 45% / 45% 55% 40% 60%;
  
  --organic-shadow-soft: 0 10px 30px rgba(30, 86, 49, 0.08);
  --organic-shadow-deep: 0 16px 45px rgba(26, 42, 32, 0.12);
}

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

html {
  scroll-behavior: smooth;
  font-family: var(--font-body);
  background-color: var(--balance-bg-base);
  color: var(--balance-ink-main);
  line-height: 1.6;
}

body {
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* Scroll Progress Bar */
.pacing-scroll-track {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: transparent;
  z-index: 10001;
}

.pacing-scroll-indicator {
  height: 100%;
  background: var(--balance-accent-gradient);
  width: 0%;
  animation: pacing-progress linear;
  animation-timeline: scroll();
}

@keyframes pacing-progress {
  to { width: 100%; }
}

/* Header & Navigation */
.vital-top-shield {
  position: sticky;
  top: 0;
  background: rgba(248, 250, 247, 0.92);
  backdrop-filter: blur(12px);
  z-index: 999;
  border-bottom: 1px solid rgba(30, 86, 49, 0.08);
}

.vital-header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.2dvh 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.vital-brand-anchor {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--balance-ink-main);
}

.vital-brand-blob {
  width: 48px;
  height: 48px;
  background: var(--balance-tone-soft);
  border-radius: var(--organic-radius-blob-2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--balance-tone-primary);
  transition: border-radius 0.4s ease;
}

.vital-brand-anchor:hover .vital-brand-blob {
  border-radius: var(--organic-radius-blob-1);
}

.vital-brand-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--balance-tone-primary);
}

.vital-head-navigation {
  display: flex;
  align-items: center;
  gap: 28px;
}

.vital-link-cluster {
  display: flex;
  list-style: none;
  gap: 24px;
}

.vital-nav-item-link {
  text-decoration: none;
  color: var(--balance-ink-main);
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.3s ease;
  position: relative;
}

.vital-nav-item-link:hover {
  color: var(--balance-tone-primary);
}

.vital-nav-item-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--balance-tone-accent);
  transition: width 0.3s ease;
  border-radius: 2px;
}

.vital-nav-item-link:hover::after {
  width: 100%;
}

.vital-mobile-trigger {
  display: none;
  cursor: pointer;
  padding: 8px;
}

.vital-mobile-checkbox {
  display: none;
}

/* Typography & General Buttons */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--balance-ink-main);
  line-height: 1.2;
}

.bio-fluid-headline {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.bio-section-headline {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 16px;
}

.bio-paragraph-copy {
  font-size: 1.05rem;
  color: var(--balance-ink-muted);
  margin-bottom: 24px;
}

.vital-action-trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 36px;
  border-radius: var(--organic-radius-pill);
  background: var(--balance-wave-gradient);
  color: var(--balance-ink-inverse);
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  box-shadow: var(--organic-shadow-soft);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.vital-action-trigger:hover {
  transform: translateY(-3px);
  box-shadow: var(--organic-shadow-deep);
  background: linear-gradient(120deg, #143d22 0%, #2d6a4f 100%);
}

.vital-action-secondary {
  background: var(--balance-surface-card);
  color: var(--balance-tone-primary);
  border: 2px solid var(--balance-tone-primary);
}

.vital-action-secondary:hover {
  background: var(--balance-tone-soft);
  color: var(--balance-tone-hover);
}

/* Scroll-driven Entrance Animations */
.organic-flow-zone {
  padding: 10dvh 20px;
  animation: bio-fade-in-up linear both;
  animation-timeline: view();
  animation-range: entry 10% cover 30%;
}

@keyframes bio-fade-in-up {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.bio-layout-holder {
  max-width: 1140px;
  margin: 0 auto;
}

/* Preset N Hero Split */
.bio-hero-stage {
  padding: 8dvh 20px 10dvh 20px;
  background: var(--balance-organic-gradient);
  overflow: hidden;
  position: relative;
}

.bio-hero-mesh {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 40px;
}

.bio-hero-content {
  flex: 1;
}

.bio-hero-media {
  flex: 1;
  display: flex;
  justify-content: center;
}

.bio-blob-media-wrapper {
  width: 100%;
  max-width: 480px;
  height: 480px;
  border-radius: var(--organic-radius-blob-1);
  overflow: hidden;
  box-shadow: var(--organic-shadow-deep);
  transition: border-radius 0.8s ease;
}

.bio-blob-media-wrapper:hover {
  border-radius: 40% 60% 70% 30% / 50% 60% 40% 50%;
}

.bio-blob-media-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Content Section with Ellipse Clip */
.bio-content-split {
  display: flex;
  align-items: center;
  gap: 50px;
}

.bio-ellipse-frame {
  flex: 1;
  clip-path: ellipse(50% 46% at 55% 50%);
  max-width: 480px;
}

.bio-ellipse-frame img {
  width: 100%;
  height: auto;
  display: block;
}

.bio-content-text-block {
  flex: 1;
}

/* Full Width Wave Section */
.bio-wave-full-strip {
  margin: 6dvh 0;
  clip-path: polygon(0 6%, 100% 0, 100% 94%, 0 100%);
  position: relative;
  background-size: cover;
  background-position: center;
  padding: 14dvh 20px;
  color: var(--balance-ink-inverse);
}

.bio-wave-overlay {
  position: absolute;
  inset: 0;
  background: rgba(30, 86, 49, 0.88);
  z-index: 1;
}

.bio-wave-content-inner {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.bio-wave-content-inner h2, .bio-wave-content-inner p {
  color: var(--balance-ink-inverse);
}

/* Features Cluster */
.vital-pillars-cluster {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.vital-pacing-box {
  background: var(--balance-surface-card);
  padding: 32px 24px;
  border-radius: var(--organic-radius-soft);
  box-shadow: var(--organic-shadow-soft);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.vital-pacing-box:hover {
  transform: translateY(-8px);
  box-shadow: var(--organic-shadow-deep);
}

.vital-blob-icon-holder {
  width: 70px;
  height: 70px;
  background: var(--balance-tone-soft);
  border-radius: var(--organic-radius-blob-3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--balance-tone-primary);
  margin-bottom: 20px;
  transition: border-radius 0.6s ease;
}

.vital-pacing-box:hover .vital-blob-icon-holder {
  border-radius: 40% 60% 45% 55% / 55% 45% 60% 40%;
  background: var(--balance-tone-accent);
  color: #fff;
}

.vital-pacing-box h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

/* "How it Works" Steps */
.pacing-steps-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  margin-top: 50px;
  position: relative;
}

.pacing-step-card {
  flex: 1;
  text-align: center;
  position: relative;
  z-index: 2;
}

.pacing-bubble-number {
  width: 75px;
  height: 75px;
  background: var(--balance-wave-gradient);
  color: var(--balance-ink-inverse);
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px auto;
  border-radius: 55% 45% 48% 52% / 50% 50% 50% 50%;
  box-shadow: var(--organic-shadow-soft);
}

.pacing-connector-svg {
  position: absolute;
  top: 35px;
  left: 15%;
  width: 70%;
  height: 40px;
  z-index: 1;
  pointer-events: none;
}

/* CTA Strip Wave */
.organic-cta-strip {
  background: var(--balance-tone-light-bg);
  padding: 8dvh 20px;
  text-align: center;
  position: relative;
  clip-path: polygon(0 12%, 100% 0, 100% 88%, 0 100%);
  margin: 4dvh 0;
}

.organic-cta-container {
  max-width: 700px;
  margin: 0 auto;
}

/* Expert Page Specifics */
.expert-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  margin: 40px 0;
}

.expert-stat-pill {
  background: var(--balance-surface-card);
  padding: 30px 20px;
  border-radius: var(--organic-radius-pill);
  text-align: center;
  box-shadow: var(--organic-shadow-soft);
  border: 2px solid var(--balance-tone-soft);
}

.expert-stat-value {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--balance-tone-primary);
  display: block;
}

.expert-stat-label {
  font-size: 0.95rem;
  color: var(--balance-ink-muted);
  font-weight: 600;
}

.expert-quote-box {
  background: var(--balance-organic-gradient);
  padding: 40px;
  border-radius: var(--organic-radius-soft);
  margin: 40px 0;
  font-size: 1.25rem;
  font-style: italic;
  color: var(--balance-ink-main);
  border-left: 6px solid var(--balance-tone-primary);
}

/* Reserve Form Page */
.reserve-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-bottom: 50px;
}

.reserve-info-card {
  background: var(--balance-surface-card);
  padding: 28px;
  border-radius: var(--organic-radius-soft);
  box-shadow: var(--organic-shadow-soft);
}

.reserve-info-card h3 {
  margin-bottom: 12px;
  color: var(--balance-tone-primary);
}

.reserve-list {
  list-style: none;
  margin-top: 16px;
}

.reserve-list-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  margin-bottom: 8px;
  color: var(--balance-ink-muted);
}

.reserve-badge {
  width: 22px;
  height: 22px;
  background: var(--balance-tone-accent);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
}

.reserve-form-container {
  background: var(--balance-surface-card);
  border-radius: 28px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
  padding: 40px;
  max-width: 680px;
  margin: 0 auto 60px auto;
}

.reserve-field-group {
  margin-bottom: 20px;
}

.reserve-field-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--balance-ink-main);
}

.reserve-input {
  width: 100%;
  padding: 14px 18px;
  border-radius: 8px;
  border: 1px solid #d0d7d2;
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.reserve-input:focus {
  outline: none;
  border-color: var(--balance-tone-primary);
}

.reserve-checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--balance-ink-muted);
  cursor: pointer;
}

.reserve-checkbox-label input {
  margin-top: 3px;
}

.reserve-contact-email {
  text-align: center;
  margin-top: 24px;
  font-weight: 600;
}

.reserve-contact-email a {
  color: var(--balance-tone-primary);
  text-decoration: none;
}

.reserve-contact-email a:hover {
  text-decoration: underline;
}

/* FAQ Block */
.faq-pacing-wrapper {
  max-width: 800px;
  margin: 40px auto 0 auto;
}

.faq-item-box {
  background: var(--balance-surface-card);
  border-radius: var(--organic-radius-soft);
  padding: 24px;
  margin-bottom: 16px;
  box-shadow: var(--organic-shadow-soft);
}

.faq-item-box h4 {
  font-size: 1.1rem;
  color: var(--balance-tone-primary);
  margin-bottom: 8px;
}

/* Policy & Static Content Pages */
.legal-content-zone {
  max-width: 900px;
  margin: 0 auto;
  padding: 6dvh 20px 10dvh 20px;
}

.legal-content-zone h1 {
  margin-bottom: 24px;
}

.legal-content-zone p {
  margin-bottom: 18px;
  color: var(--balance-ink-muted);
}

/* Footer Styling */
.vital-footer-base {
  background: var(--balance-ink-main);
  color: rgba(255, 255, 255, 0.8);
  padding: 8dvh 20px 4dvh 20px;
  margin-top: auto;
}

.vital-footer-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
}

.vital-footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  text-decoration: none;
}

.vital-footer-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.vital-footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.vital-footer-links a:hover {
  color: var(--balance-tone-accent);
}

.vital-disclaimer-text {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  max-width: 700px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
}

.vital-copyright {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
}

/* Cookie Banner */
.cookie-notice-layer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--balance-ink-main);
  color: #fff;
  padding: 20px;
  z-index: 9999;
  box-shadow: 0 -5px 25px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.cookie-notice-text {
  font-size: 0.9rem;
  max-width: 800px;
}

.cookie-buttons-wrap {
  display: flex;
  gap: 12px;
}

.cookie-btn-accept {
  background: var(--balance-tone-accent);
  color: #1a2a20;
  border: none;
  padding: 10px 20px;
  border-radius: var(--organic-radius-pill);
  font-weight: 700;
  cursor: pointer;
}

.cookie-btn-decline {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 10px 20px;
  border-radius: var(--organic-radius-pill);
  font-weight: 600;
  cursor: pointer;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .vital-head-navigation {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--balance-bg-base);
    flex-direction: column;
    padding: 30px;
    gap: 20px;
    transform: translateY(-150%);
    transition: transform 0.4s ease;
    box-shadow: var(--organic-shadow-deep);
  }

  .vital-link-cluster {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  .vital-mobile-trigger {
    display: block;
  }

  .vital-mobile-checkbox:checked ~ .vital-head-navigation {
    transform: translateY(0);
  }

  .bio-hero-mesh {
    flex-direction: column;
  }

  .bio-content-split {
    flex-direction: column;
  }

  .pacing-steps-container {
    flex-direction: column;
    align-items: center;
  }

  .pacing-connector-svg {
    display: none;
  }

  .cookie-notice-layer {
    flex-direction: column;
    align-items: flex-start;
  }
}