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

:root {
  --vital-accent-green: #0d5c3a;
  --vital-bright-orange: #ff6f00;
  --vital-bright-orange-hover: #e06000;
  --vital-mint-surface: #f1f8f5;
  --vital-charcoal-dark: #121824;
  --vital-cream-light: #fafaf9;
  --vital-stone-gray: #78716c;
  --vital-pure-white: #ffffff;
  --vital-shadow-raised: 0 10px 30px rgba(18, 24, 36, 0.08);
  --vital-shadow-deep: 0 20px 40px rgba(18, 24, 36, 0.12);
  --vital-gradient-accent: linear-gradient(135deg, #ff6f00 0%, #e65c00 100%);
  --vital-gradient-dark: linear-gradient(135deg, #121824 0%, #1e293b 100%);
  --vital-gradient-soft: linear-gradient(135deg, #f1f8f5 0%, #e8f5e9 100%);
  --font-display: 'Raleway', sans-serif;
  --font-body: 'Inter', sans-serif;
  --vital-radius: 16px;
}

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

html {
  scroll-behavior: smooth;
  font-family: var(--font-body);
  color: var(--vital-charcoal-dark);
  background-color: var(--vital-cream-light);
}

body {
  overflow-x: hidden;
  line-height: 1.6;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--vital-charcoal-dark);
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

/* Header & Navigation */
.vital-navigation-container {
  background: var(--vital-gradient-accent);
  position: sticky;
  top: 0;
  z-index: 999;
  padding: 1rem 2rem;
  color: var(--vital-pure-white);
  box-shadow: var(--vital-shadow-raised);
}

.vital-navigation-container h1,
.vital-navigation-container a {
  color: var(--vital-pure-white);
}

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

.vital-logo-anchor {
  display: flex;
  align-items: center;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.4rem;
  text-transform: uppercase;
}

.vital-nav-links-wrap {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.vital-nav-link-item {
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.5rem 1rem;
  border-radius: var(--vital-radius);
}

.vital-nav-link-item:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

/* Mobile Hamburger Style */
.vital-hamburger-checkbox {
  display: none;
}

.vital-hamburger-label {
  display: none;
  cursor: pointer;
  flex-direction: column;
  gap: 6px;
  padding: 0.5rem;
}

.vital-hamburger-label span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--vital-pure-white);
  transition: all 0.3s ease;
}

/* Hero Section (Preset C) */
.metabolic-hero-section {
  position: relative;
  min-height: 90vh;
  background: var(--vital-gradient-accent);
  color: var(--vital-pure-white);
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 10dvh 2rem;
}

.metabolic-hero-large-number {
  position: absolute;
  right: -50px;
  bottom: -50px;
  font-size: 25rem;
  font-family: var(--font-display);
  font-weight: 900;
  line-height: 1;
  opacity: 0.05;
  user-select: none;
  pointer-events: none;
}

.metabolic-hero-accent-shape {
  position: absolute;
  right: 10%;
  top: 15%;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  animation: morphing-shape 12s infinite ease-in-out;
  pointer-events: none;
}

@keyframes morphing-shape {
  0% { border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%; }
  50% { border-radius: 70% 30% 50% 50% / 30% 60% 40% 70%; }
  100% { border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%; }
}

.metabolic-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.metabolic-hero-content h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  color: var(--vital-pure-white);
  margin-bottom: 1.5rem;
}

.metabolic-hero-content p {
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
  opacity: 0.95;
  max-width: 600px;
}

.metabolic-hero-trigger {
  display: inline-block;
  background-color: var(--vital-charcoal-dark);
  color: var(--vital-pure-white);
  padding: 1.2rem 2.5rem;
  font-family: var(--font-display);
  font-weight: 900;
  text-transform: uppercase;
  border-radius: 999px;
  box-shadow: var(--vital-shadow-deep);
  transition: transform 0.2s ease, background-color 0.3s ease;
}

.metabolic-hero-trigger:hover {
  transform: scale(1.05);
  background-color: #000000;
}

.metabolic-hero-right-visuals {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.metabolic-hero-decor-block {
  width: 300px;
  height: 300px;
  border: 8px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--vital-radius);
  transform: rotate(15deg);
  position: relative;
}

.metabolic-hero-decor-block::before {
  content: '';
  position: absolute;
  top: -20px;
  left: -20px;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--vital-radius);
  transform: rotate(-30deg);
}

/* Diagonal Content Section (Preset C) */
.habits-diagonal-outer {
  margin: 10dvh 0;
  background-color: var(--vital-accent-green);
  clip-path: polygon(0 8%, 100% 0, 100% 92%, 0 100%);
  padding: 12dvh 2rem;
  color: var(--vital-pure-white);
  position: relative;
}

.habits-diagonal-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0.15;
  pointer-events: none;
}

.habits-diagonal-inner {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  text-align: center;
  background: rgba(18, 24, 36, 0.8);
  padding: 4rem 3rem;
  border-radius: var(--vital-radius);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.habits-diagonal-inner h2 {
  color: var(--vital-pure-white);
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.habits-diagonal-inner p {
  font-size: 1.1rem;
  line-height: 1.8;
  opacity: 0.9;
}

/* Features Section (Preset C) */
.glucose-features-section {
  max-width: 1200px;
  margin: 10dvh auto;
  padding: 0 2rem;
}

.glucose-section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 4rem;
  position: relative;
}

.glucose-section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 5px;
  background: var(--vital-bright-orange);
  margin: 1rem auto 0 auto;
}

.glucose-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2.5rem;
}

.glucose-feature-element {
  background: var(--vital-pure-white);
  padding: 3rem 2rem;
  border-radius: var(--vital-radius);
  box-shadow: var(--vital-shadow-raised);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.glucose-feature-element:hover {
  transform: translateY(-5px);
  box-shadow: var(--vital-shadow-deep);
}

.glucose-feature-num {
  font-size: 4rem;
  font-family: var(--font-display);
  font-weight: 900;
  color: var(--vital-bright-orange);
  line-height: 1;
  margin-bottom: 1.5rem;
  display: block;
}

.glucose-feature-element h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.glucose-feature-element p {
  color: var(--vital-stone-gray);
  font-size: 0.95rem;
}

/* "How it Works" - Horizontal Stepper (Preset C) */
.stepper-horizontal-section {
  background: var(--vital-gradient-soft);
  padding: 10dvh 2rem;
}

.stepper-horizontal-container {
  max-width: 1200px;
  margin: 0 auto;
}

.stepper-horizontal-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
  margin-top: 4rem;
}

.stepper-horizontal-track::before {
  content: '';
  position: absolute;
  top: 45px;
  left: 10%;
  right: 10%;
  height: 4px;
  background-color: var(--vital-accent-green);
  z-index: 1;
}

.stepper-step-node {
  text-align: center;
  position: relative;
  z-index: 2;
}

.stepper-node-circle {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem auto;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.8rem;
  transition: all 0.3s ease;
}

/* Alternating filled / outline circles */
.stepper-step-node:nth-child(odd) .stepper-node-circle {
  background-color: var(--vital-accent-green);
  color: var(--vital-pure-white);
  border: 4px solid var(--vital-accent-green);
}

.stepper-step-node:nth-child(even) .stepper-node-circle {
  background-color: var(--vital-pure-white);
  color: var(--vital-accent-green);
  border: 4px solid var(--vital-accent-green);
}

.stepper-step-node h4 {
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
}

.stepper-step-node p {
  color: var(--vital-stone-gray);
  max-width: 280px;
  margin: 0 auto;
  font-size: 0.95rem;
}

/* CTA Strip (Preset C) */
.cta-strip-wrapper {
  background-color: var(--vital-charcoal-dark);
  color: var(--vital-pure-white);
  padding: 6dvh 2rem;
}

.cta-strip-flex {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.cta-strip-flex h2 {
  color: var(--vital-pure-white);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  max-width: 700px;
}

.cta-strip-button {
  display: inline-block;
  background: var(--vital-gradient-accent);
  color: var(--vital-pure-white);
  padding: 1.2rem 2.5rem;
  font-family: var(--font-display);
  font-weight: 900;
  text-transform: uppercase;
  border-radius: 999px;
  box-shadow: var(--vital-shadow-raised);
  white-space: nowrap;
}

.cta-strip-button:hover {
  transform: translateY(-3px);
  box-shadow: var(--vital-shadow-deep);
}

/* Expert Page Custom Layouts */
.expert-minimal-hero {
  background: var(--vital-gradient-accent);
  color: var(--vital-pure-white);
  padding: 8dvh 2rem;
  text-align: center;
}

.expert-minimal-hero h1 {
  color: var(--vital-pure-white);
  font-size: 3rem;
}

.expert-cta-immediate {
  background-color: var(--vital-charcoal-dark);
  padding: 3rem 2rem;
  text-align: center;
}

.expert-cta-immediate-inner {
  max-width: 800px;
  margin: 0 auto;
}

.expert-cta-immediate-inner p {
  color: var(--vital-pure-white);
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

.expert-bio-split {
  max-width: 1200px;
  margin: 10dvh auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
}

.expert-bio-text h2 {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
}

.expert-bio-text p {
  font-size: 1.05rem;
  color: var(--vital-charcoal-dark);
  margin-bottom: 1.5rem;
}

.expert-bio-image-wrapper {
  position: relative;
  border-radius: var(--vital-radius);
  overflow: hidden;
  box-shadow: var(--vital-shadow-deep);
}

.expert-bio-image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
}

.expert-stats-strip {
  background: var(--vital-gradient-soft);
  padding: 8dvh 2rem;
}

.expert-stats-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.expert-stat-card {
  background-color: var(--vital-pure-white);
  padding: 2.5rem 1.5rem;
  border-radius: var(--vital-radius);
  text-align: center;
  box-shadow: var(--vital-shadow-raised);
}

.expert-stat-number {
  font-size: 3rem;
  font-family: var(--font-display);
  font-weight: 900;
  color: var(--vital-accent-green);
  display: block;
  margin-bottom: 0.5rem;
}

.expert-stat-label {
  color: var(--vital-stone-gray);
  font-weight: 600;
  font-size: 0.9rem;
}

.expert-closing-block {
  max-width: 1200px;
  margin: 10dvh auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

/* Reserve Page Custom Layouts */
.reserve-split-wrapper {
  max-width: 1200px;
  margin: 10dvh auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
}

.reserve-form-container {
  background: var(--vital-pure-white);
  padding: 3rem;
  border-radius: var(--vital-radius);
  box-shadow: var(--vital-shadow-deep);
}

.reserve-form-container h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.reserve-form-container p {
  color: var(--vital-stone-gray);
  margin-bottom: 2rem;
}

.vital-input-group {
  margin-bottom: 1.5rem;
}

.vital-input-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.vital-input-group input[type="text"],
.vital-input-group input[type="tel"],
.vital-input-group textarea {
  width: 100%;
  padding: 1rem;
  border: 2px solid #e2e8f0;
  border-radius: var(--vital-radius);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.vital-input-group input:focus,
.vital-input-group textarea:focus {
  outline: none;
  border-color: var(--vital-bright-orange);
}

.vital-checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.vital-checkbox-group input {
  margin-top: 0.3rem;
}

.vital-checkbox-group label {
  font-size: 0.85rem;
  color: var(--vital-stone-gray);
}

.vital-form-submit-button {
  background: var(--vital-gradient-accent);
  color: var(--vital-pure-white);
  border: none;
  padding: 1.2rem 2.5rem;
  font-family: var(--font-display);
  font-weight: 900;
  text-transform: uppercase;
  border-radius: 999px;
  cursor: pointer;
  width: 100%;
  box-shadow: var(--vital-shadow-raised);
}

.vital-form-submit-button:hover {
  background: var(--vital-bright-orange-hover);
}

.reserve-info-panel {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.reserve-info-card {
  background: var(--vital-mint-surface);
  padding: 2rem;
  border-radius: var(--vital-radius);
  border-left: 6px solid var(--vital-accent-green);
}

.reserve-info-card h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.reserve-info-card p {
  color: var(--vital-stone-gray);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.reserve-ordered-list {
  list-style: none;
}

.reserve-ordered-list li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  color: var(--vital-charcoal-dark);
}

.reserve-ordered-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  width: 12px;
  height: 12px;
  background-color: var(--vital-bright-orange);
  border-radius: 50%;
}

.reserve-mailto-anchor {
  display: inline-block;
  margin-top: 1rem;
  font-weight: 700;
  color: var(--vital-accent-green);
  text-decoration: underline;
}

/* FAQ Accordion */
.faq-accordion-section {
  max-width: 900px;
  margin: 10dvh auto;
  padding: 0 2rem;
}

.faq-accordion-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 3rem;
}

.faq-accordion-item {
  background: var(--vital-pure-white);
  border-radius: var(--vital-radius);
  box-shadow: var(--vital-shadow-raised);
  padding: 2rem;
}

.faq-accordion-header {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: var(--vital-accent-green);
}

.faq-accordion-content {
  color: var(--vital-stone-gray);
  font-size: 0.95rem;
}

/* Legal Pages Styling */
.legal-content-container {
  max-width: 800px;
  margin: 8dvh auto;
  padding: 0 2rem;
  min-height: 80vh;
}

.legal-content-container h1 {
  margin-bottom: 2rem;
  font-size: 2.5rem;
}

.legal-content-container h2 {
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.legal-content-container p {
  margin-bottom: 1.5rem;
  color: var(--vital-stone-gray);
  line-height: 1.8;
}

/* Thank You Page Styling */
.thank-hero-outer {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 2rem;
  background-size: cover;
  background-position: center;
  position: relative;
}

.thank-hero-outer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(18, 24, 36, 0.85);
  z-index: 1;
}

.thank-hero-card {
  position: relative;
  z-index: 2;
  background: var(--vital-pure-white);
  padding: 4rem 3rem;
  border-radius: var(--vital-radius);
  max-width: 600px;
  width: 100%;
  text-align: center;
  box-shadow: var(--vital-shadow-deep);
}

.thank-hero-card h1 {
  font-size: 2.5rem;
  color: var(--vital-accent-green);
  margin-bottom: 1rem;
}

.thank-hero-card p {
  color: var(--vital-stone-gray);
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
}

.thank-back-link {
  display: inline-block;
  background: var(--vital-gradient-accent);
  color: var(--vital-pure-white);
  padding: 1rem 2.5rem;
  font-family: var(--font-display);
  font-weight: 900;
  text-transform: uppercase;
  border-radius: 999px;
  box-shadow: var(--vital-shadow-raised);
}

/* Footer Section */
.vital-main-footer {
  background-color: var(--vital-charcoal-dark);
  color: var(--vital-pure-white);
  padding: 6rem 2rem 3rem 2rem;
}

.vital-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.vital-footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 4rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 3rem;
  margin-bottom: 2rem;
}

.vital-footer-brand h3 {
  color: var(--vital-pure-white);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.vital-footer-disclaimer {
  color: #94a3b8;
  font-size: 0.85rem;
  line-height: 1.7;
}

.vital-footer-nav h4 {
  color: var(--vital-pure-white);
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.vital-footer-links-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.vital-footer-links-list a {
  color: #94a3b8;
  font-size: 0.9rem;
}

.vital-footer-links-list a:hover {
  color: var(--vital-bright-orange);
}

.vital-footer-copyright-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  color: #64748b;
  font-size: 0.85rem;
}

/* Cookie Banner */
.vital-cookie-banner-wrap {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--vital-charcoal-dark);
  color: var(--vital-pure-white);
  padding: 1.5rem 2rem;
  z-index: 9999;
  box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.25);
  display: none;
}

.vital-cookie-banner-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.vital-cookie-banner-inner p {
  font-size: 0.9rem;
  opacity: 0.9;
  max-width: 800px;
}

.vital-cookie-action-buttons {
  display: flex;
  gap: 1rem;
}

.vital-cookie-btn {
  padding: 0.75rem 1.8rem;
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  border-radius: var(--vital-radius);
  border: none;
  cursor: pointer;
  font-size: 0.8rem;
  transition: all 0.2s ease;
}

#accept-cookie {
  background-color: var(--vital-bright-orange);
  color: var(--vital-pure-white);
}

#accept-cookie:hover {
  background-color: var(--vital-bright-orange-hover);
}

#decline-cookie {
  background-color: transparent;
  color: var(--vital-pure-white);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

#decline-cookie:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

/* Scroll-driven animations (CSS only) */
.reveal-on-scroll {
  animation: scroll-reveal-fade linear both;
  animation-timeline: view();
  animation-range: entry 0% entry 40%;
}

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

/* Responsive Styles */
@media (max-width: 992px) {
  .metabolic-hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .metabolic-hero-right-visuals {
    display: none;
  }
  
  .expert-bio-split {
    grid-template-columns: 1fr;
  }
  
  .reserve-split-wrapper {
    grid-template-columns: 1fr;
  }
  
  .stepper-horizontal-track {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .stepper-horizontal-track::before {
    display: none;
  }
  
  .cta-strip-flex {
    flex-direction: column;
    text-align: center;
  }
  
  .expert-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .expert-closing-block {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .vital-nav-links-wrap {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--vital-charcoal-dark);
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    display: none;
    box-shadow: var(--vital-shadow-deep);
  }
  
  .vital-hamburger-label {
    display: flex;
  }
  
  .vital-hamburger-checkbox:checked ~ .vital-nav-links-wrap {
    display: flex;
  }
  
  .vital-hamburger-checkbox:checked ~ .vital-hamburger-label span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }
  
  .vital-hamburger-checkbox:checked ~ .vital-hamburger-label span:nth-child(2) {
    opacity: 0;
  }
  
  .vital-hamburger-checkbox:checked ~ .vital-hamburger-label span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }
  
  .vital-footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}