/* --- CUSTOM THEMATIC VARIABLES - NEUMORPHIC LIGHT --- */
:root {
  --vital-bg-cream: #eef2f7;
  --vital-bg-surface: #f3f7fa;
  --vital-ink: #1e293b;
  --vital-muted: #64748b;
  
  /* Neumorphism Shadows */
  --vital-light-shadow: -8px -8px 20px rgba(255, 255, 255, 0.9);
  --vital-dark-shadow: 8px 8px 20px rgba(166, 180, 200, 0.35);
  --vital-inset-light: inset -4px -4px 10px rgba(255, 255, 255, 0.9);
  --vital-inset-dark: inset 4px 4px 10px rgba(166, 180, 200, 0.3);

  /* Highlight Accents */
  --vital-forest: #10b981;
  --vital-forest-hover: #059669;
  --vital-gradient-start: #10b981;
  --vital-gradient-end: #059669;

  /* Theme Scale & Radius */
  --vital-border-radius-soft: 16px;
  --vital-border-radius-pill: 999px;
  --vital-font-display: 'Montserrat', sans-serif;
  --vital-font-body: 'Inter', sans-serif;
  
  --vital-padding-scale: 10dvh;
}

/* --- BASE STYLING --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-family: var(--vital-font-body);
  color: var(--vital-ink);
  background-color: var(--vital-bg-cream);
}

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

/* --- SCROLL PROGRESS & REVEAL --- */
@keyframes progress-grow {
  to { width: 100%; }
}

.vital-scroll-progress-line {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(135deg, var(--vital-gradient-start) 0%, var(--vital-gradient-end) 100%);
  width: 0%;
  animation: progress-grow linear;
  animation-timeline: scroll();
  z-index: 10000;
}

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

.vital-scroll-reveal {
  animation: reveal-fade-up linear both;
  animation-timeline: view();
  animation-range: entry 10% entry 35%;
}

/* --- LAYOUT UTILS --- */
.vital-max-width-restrictor {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.vital-align-center {
  text-align: center;
}

/* --- HEADER / NAVIGATION (Preset G) --- */
.vital-masthead-bar {
  background-color: var(--vital-bg-surface);
  box-shadow: var(--vital-dark-shadow), var(--vital-light-shadow);
  position: sticky;
  top: 0;
  z-index: 999;
  padding: 1rem 0;
  border-radius: 0 0 var(--vital-border-radius-soft) var(--vital-border-radius-soft);
}

.vital-header-inside {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.vital-logo-anchor {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--vital-ink);
  font-family: var(--vital-font-display);
  font-weight: 700;
  font-size: 1.35rem;
  transition: transform 0.2s ease;
}

.vital-logo-anchor:hover {
  transform: scale(1.03);
}

.vital-logo-anchor svg {
  stroke: var(--vital-forest);
}

/* Hamburger CSS-only */
.vital-menu-checkbox {
  display: none;
}

.vital-hamburger-button {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 1001;
}

.vital-hamburger-button span {
  display: block;
  width: 28px;
  height: 3px;
  background-color: var(--vital-ink);
  border-radius: 2px;
  transition: 0.3s ease;
}

.vital-link-rack {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.vital-link-item {
  text-decoration: none;
  font-family: var(--vital-font-display);
  color: var(--vital-muted);
  font-weight: 600;
  font-size: 0.95rem;
  position: relative;
  transition: color 0.3s ease;
  padding: 0.25rem 0;
}

.vital-link-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--vital-forest);
  transition: width 0.3s ease;
}

.vital-link-item:hover {
  color: var(--vital-ink);
}

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

.vital-active-link {
  color: var(--vital-ink);
}

.vital-link-item.vital-accent-btn {
  background: var(--vital-bg-surface);
  box-shadow: var(--vital-dark-shadow), var(--vital-light-shadow);
  padding: 0.65rem 1.4rem;
  border-radius: var(--vital-border-radius-pill);
  color: var(--vital-forest);
}

.vital-link-item.vital-accent-btn::after {
  display: none;
}

.vital-link-item.vital-accent-btn:hover {
  box-shadow: var(--vital-inset-dark), var(--vital-inset-light);
  color: var(--vital-forest-hover);
}

/* --- BUTTONS --- */
.vital-pill-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-family: var(--vital-font-display);
  font-weight: 700;
  font-size: 1rem;
  padding: 1rem 2.2rem;
  border-radius: var(--vital-border-radius-pill);
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--vital-dark-shadow), var(--vital-light-shadow);
  background-color: var(--vital-bg-surface);
  color: var(--vital-forest);
}

.vital-pill-button:hover {
  transform: translateY(-2px);
  box-shadow: 4px 4px 10px rgba(166, 180, 200, 0.2), -4px -4px 10px rgba(255, 255, 255, 0.8), inset 2px 2px 5px rgba(255, 255, 255, 0.5);
  background-color: var(--vital-forest);
  color: #ffffff;
}

.vital-glow-btn {
  position: relative;
  overflow: hidden;
}

/* --- HERO SPLIT ZONE (Preset G) --- */
.vital-lead-billboard {
  padding: var(--vital-padding-scale) 0;
  background-color: var(--vital-bg-cream);
}

.vital-lead-split-wrapper {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
}

.vital-lead-left-info {
  display: flex;
  flex-direction: relative;
  flex-direction: column;
  gap: 1.5rem;
}

.vital-main-heading {
  font-family: var(--vital-font-display);
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.15;
  color: var(--vital-ink);
}

.vital-support-heading {
  font-size: 1.15rem;
  line-height: 1.6;
  color: var(--vital-muted);
}

/* Neumorphic floating badge */
.vital-hero-badge {
  display: flex;
  align-items: center;
  gap: 1rem;
  background-color: var(--vital-bg-surface);
  padding: 1rem 1.5rem;
  border-radius: var(--vital-border-radius-soft);
  box-shadow: var(--vital-dark-shadow), var(--vital-light-shadow);
  max-width: 320px;
  align-self: flex-start;
  margin-top: 1.5rem;
}

.vital-badge-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--vital-bg-surface);
  box-shadow: var(--vital-inset-dark), var(--vital-inset-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--vital-forest);
}

.vital-badge-title {
  font-family: var(--vital-font-display);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--vital-ink);
}

.vital-badge-desc {
  font-size: 0.8rem;
  color: var(--vital-muted);
}

.vital-lead-right-visual {
  display: flex;
  justify-content: center;
}

.vital-hero-rounded-img-frame {
  border-radius: 32px;
  background: var(--vital-bg-surface);
  padding: 0.75rem;
  box-shadow: var(--vital-dark-shadow), var(--vital-light-shadow);
  max-width: 440px;
  width: 100%;
}

.vital-hero-img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 24px;
  display: block;
}

/* --- PROBLEM / SOLUTION LAYOUT (Preset G) --- */
.vital-segment-panel {
  padding: var(--vital-padding-scale) 0;
  background-color: var(--vital-bg-surface);
}

.vital-section-heading {
  font-family: var(--vital-font-display);
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--vital-ink);
  margin-bottom: 0.75rem;
}

.vital-section-subheading {
  font-size: 1.1rem;
  color: var(--vital-muted);
  margin-bottom: 3.5rem;
}

.vital-prob-sol-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.vital-prob-col, .vital-sol-col {
  padding: 2.5rem;
  border-radius: var(--vital-border-radius-soft);
  box-shadow: var(--vital-inset-dark), var(--vital-inset-light);
  background-color: var(--vital-bg-surface);
}

.vital-prob-col {
  border-left: 6px solid #f87171; /* red accent */
}

.vital-sol-col {
  border-left: 6px solid var(--vital-forest); /* mint accent */
}

.vital-column-title {
  font-family: var(--vital-font-display);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--vital-ink);
  margin-bottom: 2rem;
}

.vital-pain-points-list, .vital-booster-points-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.vital-pain-points-list li, .vital-booster-points-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  line-height: 1.5;
}

.vital-pain-bullet {
  color: #ef4444;
  font-weight: bold;
  font-size: 1.25rem;
}

.vital-booster-bullet {
  color: var(--vital-forest);
  font-weight: bold;
  font-size: 1.25rem;
}

.vital-pain-points-list strong, .vital-booster-points-list strong {
  display: block;
  color: var(--vital-ink);
  margin-bottom: 0.25rem;
}

/* --- BANNER OVERLAY SECTION --- */
.vital-banner-bg2-section {
  padding: 12dvh 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  text-align: center;
  color: #ffffff;
  border-radius: var(--vital-border-radius-soft);
  margin: 2rem auto;
  max-width: 1150px;
  width: calc(100% - 3rem);
  box-shadow: var(--vital-dark-shadow);
}

.vital-banner-inside {
  max-width: 750px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
}

.vital-banner-title {
  font-family: var(--vital-font-display);
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1.2;
}

.vital-banner-description {
  font-size: 1.1rem;
  line-height: 1.6;
  opacity: 0.9;
}

.vital-banner-inside .vital-pill-button {
  box-shadow: none;
  background: var(--vital-forest);
  color: #ffffff;
}

.vital-banner-inside .vital-pill-button:hover {
  background: #ffffff;
  color: var(--vital-forest);
}

/* --- FEATURES NEUMORPHIC GRID --- */
.vital-features-grid-3c {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2.5rem;
}

.vital-feature-inset-card {
  padding: 2.5rem 2rem;
  border-radius: var(--vital-border-radius-soft);
  background-color: var(--vital-bg-surface);
  box-shadow: var(--vital-inset-dark), var(--vital-inset-light);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.vital-feature-inset-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--vital-dark-shadow), var(--vital-light-shadow);
}

.vital-feature-icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background-color: var(--vital-bg-surface);
  box-shadow: var(--vital-dark-shadow), var(--vital-light-shadow);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--vital-forest);
  margin-bottom: 0.5rem;
}

.vital-feature-card-title {
  font-family: var(--vital-font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--vital-ink);
}

.vital-feature-card-desc {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--vital-muted);
}

/* --- HOW IT WORKS STEPPER (Preset G) --- */
.vital-stepper-section {
  padding: var(--vital-padding-scale) 0;
  background-color: var(--vital-bg-cream);
}

.vital-steps-pills-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  max-width: 800px;
  margin: 0 auto 3rem auto;
}

.vital-step-pill-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background-color: var(--vital-bg-surface);
  padding: 0.85rem 1.75rem;
  border-radius: var(--vital-border-radius-pill);
  box-shadow: var(--vital-dark-shadow), var(--vital-light-shadow);
}

.vital-step-number {
  font-family: var(--vital-font-display);
  font-weight: 800;
  color: var(--vital-forest);
  font-size: 1.1rem;
}

.vital-step-label {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--vital-ink);
}

.vital-step-divider {
  flex-grow: 1;
  height: 2px;
  border-top: 3px dashed var(--vital-muted);
  opacity: 0.4;
}

.vital-steps-descs-box {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

.vital-step-desc-card {
  text-align: center;
  padding: 2rem;
  background-color: var(--vital-bg-surface);
  border-radius: var(--vital-border-radius-soft);
  box-shadow: var(--vital-dark-shadow), var(--vital-light-shadow);
}

.vital-step-desc-card h5 {
  font-family: var(--vital-font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--vital-ink);
  margin-bottom: 1rem;
}

.vital-step-desc-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--vital-muted);
}

/* --- CTA STRIP (Preset G Centered Card) --- */
.vital-cta-card-centered {
  max-width: 750px;
  margin: 0 auto;
  text-align: center;
  padding: 4rem 3rem;
  border-radius: 32px;
  background-color: var(--vital-bg-surface);
  box-shadow: var(--vital-dark-shadow), var(--vital-light-shadow);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.vital-cta-title {
  font-family: var(--vital-font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--vital-ink);
}

.vital-cta-desc {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--vital-muted);
}

/* --- EXPERT HTML PAGE SPECIFICS --- */
.vital-expert-img-center-wrap {
  margin: 3rem auto 0 auto;
  max-width: 600px;
  padding: 0.75rem;
  background-color: var(--vital-bg-surface);
  border-radius: 32px;
  box-shadow: var(--vital-dark-shadow), var(--vital-light-shadow);
}

.vital-expert-frame-img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 24px;
  display: block;
}

.vital-expert-grid-2x2-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: 900px;
  margin: 0 auto;
}

.vital-expert-stat-cell {
  background-color: var(--vital-bg-surface);
  padding: 3rem 2rem;
  border-radius: var(--vital-border-radius-soft);
  box-shadow: var(--vital-inset-dark), var(--vital-inset-light);
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.vital-stat-big-number {
  font-family: var(--vital-font-display);
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--vital-forest);
}

.vital-stat-description {
  font-size: 1rem;
  line-height: 1.5;
  color: var(--vital-muted);
}

.vital-expert-bio-row {
  display: flex;
  align-items: center;
  gap: 4rem;
  margin-bottom: 6rem;
}

.vital-expert-bio-row:last-of-type {
  margin-bottom: 0;
}

.vital-row-reverse {
  flex-direction: row-reverse;
}

.vital-bio-text-zone {
  flex: 1.2;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.vital-bio-visual-zone {
  flex: 0.8;
  display: flex;
  justify-content: center;
}

.vital-bio-heading {
  font-family: var(--vital-font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--vital-ink);
}

.vital-bio-paragraph {
  line-height: 1.6;
  color: var(--vital-muted);
}

.vital-bio-neumo-wrapper {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 24px;
  background-color: var(--vital-bg-surface);
  box-shadow: var(--vital-inset-dark), var(--vital-inset-light);
  display: flex;
  align-items: center;
  justify-content: center;
}

.vital-bio-pill-tag {
  background-color: var(--vital-bg-surface);
  box-shadow: var(--vital-dark-shadow), var(--vital-light-shadow);
  padding: 0.75rem 1.5rem;
  border-radius: var(--vital-border-radius-pill);
  font-family: var(--vital-font-display);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--vital-forest);
}

.vital-expert-bg2-card {
  background-size: cover;
  background-position: center;
  border-radius: 24px;
  padding: 4rem;
  box-shadow: var(--vital-dark-shadow);
}

.vital-expert-bg2-text {
  max-width: 550px;
}

.vital-expert-opinion-title {
  font-family: var(--vital-font-display);
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.vital-expert-opinion-text {
  line-height: 1.6;
  color: var(--vital-muted);
}

/* --- RESERVE HTML PAGE SPECIFICS --- */
.vital-reserve-form-container {
  display: flex;
  justify-content: center;
}

.vital-reserve-card-neumo {
  width: 100%;
  max-width: 620px;
  background-color: var(--vital-bg-surface);
  border-radius: 32px;
  box-shadow: var( --vital-dark-shadow ), var(--vital-light-shadow);
  padding: 3.5rem 3rem;
  text-align: center;
}

.vital-form-card-title {
  font-family: var(--vital-font-display);
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--vital-ink);
}

.vital-form-card-subtitle {
  font-size: 0.95rem;
  color: var(--vital-muted);
  margin-top: 0.5rem;
  margin-bottom: 2.5rem;
}

.vital-reserve-form {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  text-align: left;
}

.vital-form-input-box {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.vital-form-input-box label {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--vital-ink);
}

.vital-neumo-input {
  width: 100%;
  border: none;
  background-color: var(--vital-bg-surface);
  box-shadow: var(--vital-inset-dark), var(--vital-inset-light);
  padding: 1rem 1.25rem;
  border-radius: var(--vital-border-radius-soft);
  font-family: var(--vital-font-body);
  color: var(--vital-ink);
  font-size: 0.95rem;
  outline: none;
  transition: box-shadow 0.3s ease;
}

.vital-neumo-input:focus {
  box-shadow: var(--vital-dark-shadow), var(--vital-light-shadow);
}

.vital-neumo-textarea {
  min-height: 100px;
  resize: vertical;
}

.vital-form-checkbox-box {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.vital-custom-checkbox {
  margin-top: 0.2rem;
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.vital-form-checkbox-box label {
  font-size: 0.85rem;
  color: var(--vital-muted);
  line-height: 1.4;
}

.vital-form-checkbox-box label a {
  color: var(--vital-forest);
  text-decoration: underline;
}

.vital-form-submit-btn {
  width: 100%;
  margin-top: 1rem;
}

.vital-contact-alternative {
  margin-top: 2rem;
  font-size: 0.85rem;
  color: var(--vital-muted);
}

.vital-clickable-email {
  color: var(--vital-forest);
  text-decoration: none;
  font-weight: 600;
}

/* Numbered lists inside reserve info cards */
.vital-numbered-card-bullet-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
}

.vital-numbered-card-bullet-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--vital-muted);
}

.vital-bullet-number {
  background-color: var(--vital-bg-surface);
  box-shadow: var(--vital-dark-shadow), var(--vital-light-shadow);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--vital-forest);
  font-weight: 700;
  font-size: 0.8rem;
  flex-shrink: 0;
}

/* FAQ Accordion Styling */
.vital-faq-dropdown-group {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.vital-faq-item {
  background-color: var(--vital-bg-surface);
  border-radius: var(--vital-border-radius-soft);
  box-shadow: var(--vital-dark-shadow), var(--vital-light-shadow);
  padding: 1rem;
  overflow: hidden;
}

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

.vital-faq-toggle-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--vital-font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--vital-ink);
  cursor: pointer;
  padding: 0.5rem;
}

.vital-faq-icon {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
  color: var(--vital-forest);
}

.vital-faq-answer-block {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 0.5rem;
}

.vital-faq-answer-block p {
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--vital-muted);
  padding-top: 1rem;
}

.vital-faq-checkbox:checked ~ .vital-faq-answer-block {
  max-height: 300px;
}

.vital-faq-checkbox:checked ~ .vital-faq-toggle-header .vital-faq-icon {
  transform: rotate(180deg);
}

/* --- LEGAL & PRIVACY DOCUMENT (100vh) --- */
.vital-legal-document {
  max-width: 800px;
}

.vital-legal-title {
  font-family: var(--vital-font-display);
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.vital-legal-date {
  font-size: 0.9rem;
  color: var(--vital-muted);
  margin-bottom: 3rem;
}

.vital-legal-block {
  margin-bottom: 2.5rem;
}

.vital-legal-block h3 {
  font-family: var(--vital-font-display);
  font-weight: 700;
  font-size: 1.35rem;
  margin-bottom: 1rem;
}

.vital-legal-block p {
  line-height: 1.6;
  color: var(--vital-muted);
  margin-bottom: 1rem;
}

.vital-legal-block ul {
  list-style-type: square;
  padding-left: 2rem;
  margin-bottom: 1rem;
  color: var(--vital-muted);
}

.vital-legal-block ul li {
  margin-bottom: 0.5rem;
}

/* --- THANK YOU ENVELOPE --- */
.vital-thank-envelope {
  background-color: var(--vital-bg-surface);
  box-shadow: var(--vital-dark-shadow), var(--vital-light-shadow);
  padding: 4rem 3rem;
  border-radius: 32px;
  max-width: 700px;
  text-align: center;
  margin: 0 auto;
}

.vital-thank-badge {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: var(--vital-bg-surface);
  box-shadow: var(--vital-inset-dark), var(--vital-inset-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem auto;
}

.vital-thank-title {
  font-family: var(--vital-font-display);
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--vital-ink);
  margin-bottom: 1rem;
}

.vital-thank-message {
  line-height: 1.6;
  color: var(--vital-muted);
  font-size: 1.05rem;
}

.vital-thank-visual-offset {
  margin-top: 2.5rem;
  background-color: var(--vital-bg-surface);
  box-shadow: var(--vital-inset-dark), var(--vital-inset-light);
  padding: 0.5rem;
  border-radius: 20px;
}

.vital-thank-decor-img {
  width: 100%;
  max-height: 250px;
  object-fit: cover;
  border-radius: 16px;
  display: block;
}

/* --- FOOTER --- */
.vital-base-footer {
  background-color: var(--vital-bg-surface);
  box-shadow: var(--vital-inset-light), 0 -8px 24px rgba(166, 180, 200, 0.1);
  padding: 4rem 0 2rem 0;
  margin-top: auto;
  border-radius: var(--vital-border-radius-soft) var(--vital-border-radius-soft) 0 0;
}

.vital-footer-contents {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.vital-footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--vital-font-display);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--vital-ink);
}

.vital-footer-brand svg {
  stroke: var(--vital-forest);
}

.vital-footer-links-group {
  display: flex;
  gap: 2rem;
}

.vital-footer-links-group a {
  text-decoration: none;
  font-size: 0.9rem;
  color: var(--vital-muted);
  transition: color 0.3s ease;
}

.vital-footer-links-group a:hover {
  color: var(--vital-forest);
}

.vital-footer-disclaimer {
  font-size: 0.8rem;
  line-height: 1.5;
  color: var(--vital-muted);
  border-top: 1px solid rgba(166, 180, 200, 0.3);
  padding-top: 2rem;
  margin-bottom: 1.5rem;
}

.vital-footer-copyright-row {
  font-size: 0.8rem;
  color: var(--vital-muted);
  text-align: center;
}

/* --- COOKIE BANNER --- */
.vital-cookie-container {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  padding: 1.5rem;
}

.vital-cookie-card {
  max-width: 800px;
  margin: 0 auto;
  background-color: var(--vital-bg-surface);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1), 0 -2px 10px rgba(255,255,255,0.9);
  padding: 1.5rem 2rem;
  border-radius: var(--vital-border-radius-soft);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.vital-cookie-text {
  font-size: 0.85rem;
  line-height: 1.5;
  color: var(--vital-muted);
}

.vital-cookie-actions {
  display: flex;
  gap: 1rem;
  flex-shrink: 0;
}

.vital-cookie-btn-accept, .vital-cookie-btn-decline {
  padding: 0.65rem 1.5rem;
  border-radius: var(--vital-border-radius-pill);
  font-family: var(--vital-font-display);
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
  border: none;
  transition: all 0.2s ease;
}

.vital-cookie-btn-accept {
  background-color: var(--vital-forest);
  color: #ffffff;
}

.vital-cookie-btn-accept:hover {
  background-color: var(--vital-forest-hover);
}

.vital-cookie-btn-decline {
  background-color: var(--vital-bg-surface);
  box-shadow: var(--vital-inset-dark), var(--vital-inset-light);
  color: var(--vital-muted);
}

.vital-cookie-btn-decline:hover {
  box-shadow: var(--vital-dark-shadow), var(--vital-light-shadow);
  color: var(--vital-ink);
}

/* --- ADAPTIVITY & MOBILE DEVIATIONS --- */
@media (max-width: 992px) {
  .vital-lead-split-wrapper {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

  .vital-lead-left-info {
    align-items: center;
  }

  .vital-hero-badge {
    align-self: center;
  }

  .vital-prob-sol-columns {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .vital-expert-grid-2x2-stats {
    gap: 2rem;
  }

  .vital-expert-bio-row {
    flex-direction: column;
    gap: 2rem;
  }

  .vital-row-reverse {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  :root {
    --vital-padding-scale: 6dvh;
  }

  .vital-hamburger-button {
    display: flex;
  }

  .vital-header-navigation {
    position: fixed;
    top: 72px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 72px);
    background-color: var(--vital-bg-surface);
    box-shadow: var(--vital-dark-shadow);
    transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 3rem 1.5rem;
    z-index: 1000;
    border-radius: 0 0 var(--vital-border-radius-soft) var(--vital-border-radius-soft);
  }

  .vital-link-rack {
    flex-direction: column;
    gap: 2.5rem;
    width: 100%;
  }

  .vital-link-item {
    font-size: 1.15rem;
  }

  .vital-menu-checkbox:checked ~ .vital-header-navigation {
    left: 0;
  }

  .vital-menu-checkbox:checked ~ .vital-hamburger-button span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
  }

  .vital-menu-checkbox:checked ~ .vital-hamburger-button span:nth-child(2) {
    opacity: 0;
  }

  .vital-menu-checkbox:checked ~ .vital-hamburger-button span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -7px);
  }

  .vital-main-heading {
    font-size: 2.25rem;
  }

  .vital-section-heading {
    font-size: 1.85rem;
  }

  .vital-steps-pills-row {
    flex-direction: column;
    gap: 1.5rem;
  }

  .vital-step-divider {
    display: none;
  }

  .vital-steps-descs-box {
    grid-template-columns: 1fr;
  }

  .vital-expert-grid-2x2-stats {
    grid-template-columns: 1fr;
  }

  .vital-reserve-card-neumo {
    padding: 2rem 1.5rem;
  }

  .vital-cookie-card {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }

  .vital-footer-contents {
    flex-direction: column;
    text-align: center;
  }

  .vital-footer-links-group {
    flex-direction: column;
    gap: 1.25rem;
  }
}