/* NEUMORPHIC LIGHT THEME CSS FOR VIDE ACTIVA */

/* CSS VARIABLES */
:root {
  --vsm-cream-bg: #eef2f7;
  --vsm-pure-white: #ffffff;
  --vsm-clay-shadow-dark: rgba(163, 177, 198, 0.45);
  --vsm-clay-shadow-light: rgba(255, 255, 255, 0.85);
  --vsm-inset-shadow-dark: rgba(163, 177, 198, 0.3);
  --vsm-inset-shadow-light: rgba(255, 255, 255, 0.7);
  
  --vsm-accent-coral: #e07a5f;
  --vsm-accent-coral-rgba: rgba(224, 122, 95, 0.2);
  --vsm-accent-coral-hover: #cb654b;
  --vsm-deep-forest: #2f3e4e;
  --vsm-slate-text: #4a5568;
  --vsm-light-grey-text: #718096;

  --font-display: 'Montserrat', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  --vsm-rounded-soft: 20px;
  --vsm-rounded-capsule: 999px;
  --vsm-spacing-spacious: 16dvh;
}

/* CSS RESET & GENERAL STYLES */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body.vsm-body-frame-light {
  background-color: var(--vsm-cream-bg);
  color: var(--vsm-slate-text);
  font-family: var(--vsm-body);
  line-height: 1.6;
  overflow-x: hidden;
}

/* TYPOGRAPHY */
h1.vsm-h1-display,
h2.vsm-h2-title,
h3.vsm-feature-card-title,
h3.vsm-plate-header,
h3.vsm-benefit-card-heading,
h3.vsm-faq-card-question,
h4.vsm-step-detail-title,
.vsm-brand-text {
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--vsm-deep-forest);
}

/* HEADER STYLE (PRESET G) */
.vsm-header-base {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: var(--vsm-cream-bg);
  box-shadow: 4px 4px 15px var(--vsm-clay-shadow-dark), -4px -4px 15px var(--vsm-clay-shadow-light);
  border-bottom: 1px solid rgba(255,255,255,0.4);
}

.vsm-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.25rem 2rem;
}

.vsm-brand-flex {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--vsm-deep-forest);
}

.vsm-logo-icon {
  width: 32px;
  height: 32px;
  stroke: var(--vsm-accent-coral);
}

.vsm-brand-text {
  font-size: 1.25rem;
  font-weight: 900;
}

/* MOBILE HAMBURGER MENU - CSS ONLY */
.vsm-menu-checkbox {
  display: none;
}

.vsm-menu-burger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 1010;
}

.vsm-burger-line {
  display: block;
  width: 28px;
  height: 3px;
  background-color: var(--vsm-deep-forest);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.vsm-nav-palette {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.vsm-nav-anchor {
  text-decoration: none;
  font-weight: 600;
  color: var(--vsm-slate-text);
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 0.5rem 1rem;
  border-radius: var(--vsm-rounded-soft);
  transition: all 0.25s ease;
  box-shadow: 2px 2px 5px transparent, -2px -2px 5px transparent;
}

.vsm-nav-anchor:hover {
  color: var(--vsm-accent-coral);
  box-shadow: inset 3px 3px 6px var(--vsm-clay-shadow-dark), inset -3px -3px 6px var(--vsm-clay-shadow-light);
}

.vsm-nav-active {
  color: var(--vsm-accent-coral);
  box-shadow: inset 3px 3px 6px var(--vsm-clay-shadow-dark), inset -3px -3px 6px var(--vsm-clay-shadow-light);
}

/* HEADER SCROLL PROGRESS BAR */
@keyframes progress-grow {
  to { width: 100%; }
}
.vsm-header-progress {
  height: 4px;
  background: var(--vsm-accent-coral);
  width: 0;
  animation: progress-grow linear;
  animation-timeline: scroll();
}

/* HERO SECTION (PRESET G) */
.vsm-hero-split-section {
  padding: var(--vsm-spacing-spacious) 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.vsm-hero-split-wrapper {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
}

.vsm-hero-text-block {
  position: relative;
}

h1.vsm-h1-display {
  font-size: 3.5rem;
  line-height: 1.1;
  color: var(--vsm-deep-forest);
  margin-bottom: 1.5rem;
}

.vsm-hero-sub {
  font-size: 1.125rem;
  color: var(--vsm-slate-text);
  margin-bottom: 2.5rem;
  max-width: 540px;
}

.vsm-hero-cta-holder {
  display: flex;
  align-items: center;
  gap: 2rem;
  position: relative;
}

/* NEUMORPHIC BUTTON */
.vsm-action-pill-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  color: var(--vsm-pure-white);
  background-color: var(--vsm-accent-coral);
  padding: 1.125rem 2.25rem;
  border-radius: var(--vsm-rounded-capsule);
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 6px 6px 12px var(--vsm-clay-shadow-dark), -6px -6px 12px var(--vsm-clay-shadow-light);
}

.vsm-action-pill-btn:hover {
  background-color: var(--vsm-accent-coral-hover);
  transform: translateY(-2px);
  box-shadow: 8px 8px 16px var(--vsm-clay-shadow-dark), -8px -8px 16px var(--vsm-clay-shadow-light);
}

.vsm-action-pill-btn:active {
  transform: translateY(1px);
  box-shadow: inset 3px 3px 6px var(--vsm-clay-shadow-dark), inset -3px -3px 6px var(--vsm-clay-shadow-light);
}

/* FLOATING NEUMORPHIC BADGE */
.vsm-floating-neumo-badge {
  background: var(--vsm-cream-bg);
  border-radius: var(--vsm-rounded-soft);
  padding: 1rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 6px 6px 12px var(--vsm-clay-shadow-dark), -6px -6px 12px var(--vsm-clay-shadow-light);
  border: 1px solid rgba(255,255,255,0.4);
  position: absolute;
  right: -5%;
  bottom: -30%;
}

.vsm-badge-number {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--vsm-accent-coral);
  line-height: 1;
}

.vsm-badge-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--vsm-deep-forest);
  text-transform: uppercase;
  margin-top: 0.25rem;
}

/* EXPERT MAIN FRAME & HERO MEDIA */
.vsm-hero-media-block {
  display: flex;
  justify-content: center;
}

.vsm-media-neumo-frame {
  background: var(--vsm-cream-bg);
  padding: 1.25rem;
  border-radius: 32px;
  box-shadow: 12px 12px 24px var(--vsm-clay-shadow-dark), -12px -12px 24px var(--vsm-clay-shadow-light);
  border: 1px solid rgba(255,255,255,0.5);
  max-width: 100%;
}

.vsm-media-img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 20px;
  object-fit: cover;
  aspect-ratio: 4/5;
}

/* SECTION HEADERS */
.vsm-section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
}

.vsm-section-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--vsm-accent-coral);
  letter-spacing: 1px;
  margin-bottom: 0.75rem;
}

h2.vsm-h2-title {
  font-size: 2.25rem;
  color: var(--vsm-deep-forest);
  margin-bottom: 1rem;
}

.vsm-section-descr {
  font-size: 1.05rem;
  color: var(--vsm-slate-text);
}

/* CONTENT PROBLEM & SOLUTION (PRESET G) */
.vsm-prob-sol-section {
  padding: var(--vsm-spacing-spacious) 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.vsm-twin-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 5rem;
}

.vsm-twin-plate {
  padding: 3rem;
  border-radius: var(--vsm-rounded-soft);
  box-shadow: 6px 6px 15px var(--vsm-clay-shadow-dark), -6px -6px 15px var(--vsm-clay-shadow-light);
  border: 1px solid rgba(255,255,255,0.4);
}

.vsm-plate-problem {
  background-color: #fcebe6; /* faint, warm coral tint for problems */
  box-shadow: inset 4px 4px 10px rgba(163, 177, 198, 0.2), 6px 6px 15px var(--vsm-clay-shadow-dark);
}

.vsm-plate-solution {
  background-color: #e6f0fa; /* faint, clean blue tint for solutions */
  box-shadow: inset 4px 4px 10px rgba(163, 177, 198, 0.2), 6px 6px 15px var(--vsm-clay-shadow-dark);
}

h3.vsm-plate-header {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: var(--vsm-deep-forest);
}

.vsm-plate-list {
  list-style: none;
}

.vsm-plate-list li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 1rem;
  font-weight: 500;
  color: var(--vsm-slate-text);
}

.vsm-plate-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--vsm-accent-coral);
  box-shadow: 2px 2px 4px var(--vsm-clay-shadow-dark);
}

/* PARALLAX BANNER (BG2) */
.vsm-banner-paral {
  position: relative;
  width: 100%;
  height: 40vh;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 8px 8px 20px var(--vsm-clay-shadow-dark), -8px -8px 20px var(--vsm-clay-shadow-light);
}

.vsm-banner-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.vsm-banner-overlay {
  position: absolute;
  inset: 0;
  background: rgba(47, 62, 78, 0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem;
}

.vsm-banner-quote {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--vsm-pure-white);
  text-align: center;
  font-weight: 700;
  max-width: 800px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
  line-height: 1.4;
}

/* FEATURES SECTION (PRESET G NEUMORPHIC GRID) */
.vsm-features-grid-section {
  padding: var(--vsm-spacing-spacious) 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.vsm-features-neo-deck {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
}

.vsm-feature-neo-card {
  background: var(--vsm-cream-bg);
  border-radius: 28px;
  padding: 3.5rem 3rem;
  /* UTOPLENA (inset) shadow as requested by Preset G */
  box-shadow: inset 8px 8px 16px var(--vsm-inset-shadow-dark), inset -8px -8px 16px var(--vsm-inset-shadow-light);
  border: 1px solid rgba(255,255,255,0.3);
  transition: all 0.35s ease;
}

.vsm-feature-neo-card:hover {
  /* INVERSION to raised index shadow upon hover */
  box-shadow: 10px 10px 20px var(--vsm-clay-shadow-dark), -10px -10px 20px var(--vsm-clay-shadow-light);
}

.vsm-feature-icon-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--vsm-cream-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  color: var(--vsm-accent-coral);
  box-shadow: 4px 4px 10px var(--vsm-clay-shadow-dark), -4px -4px 10px var(--vsm-clay-shadow-light);
}

.vsm-feature-icon-circle svg {
  width: 28px;
  height: 28px;
  stroke: var(--vsm-accent-coral);
  stroke-width: 2;
}

h3.vsm-feature-card-title {
  font-size: 1.35rem;
  margin-bottom: 1rem;
  color: var(--vsm-deep-forest);
}

.vsm-feature-card-text {
  font-size: 1rem;
  color: var(--vsm-slate-text);
  line-height: 1.6;
}

/* HOW IT WORKS SECTION (STEPPER PRESET G) */
.vsm-stepper-section {
  padding: var(--vsm-spacing-spacious) 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.vsm-stepper-container {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  background: var(--vsm-pure-white);
  padding: 4rem;
  border-radius: 32px;
  box-shadow: 8px 8px 24px var(--vsm-clay-shadow-dark);
}

.vsm-stepper-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  position: relative;
}

/* NEUMORPHIC STEP PILLS */
.vsm-step-pill {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--vsm-cream-bg);
  padding: 0.75rem 2rem;
  border-radius: var(--vsm-rounded-capsule);
  box-shadow: 6px 6px 12px var(--vsm-clay-shadow-dark), -6px -6px 12px var(--vsm-clay-shadow-light);
  border: 1px solid rgba(255,255,255,0.4);
  z-index: 2;
}

.vsm-step-num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.4rem;
  color: var(--vsm-accent-coral);
}

.vsm-step-word {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  color: var(--vsm-deep-forest);
}

.vsm-step-divider {
  flex-grow: 1;
  height: 2px;
  border-top: 2px dashed var(--vsm-accent-coral);
  margin: 0 1rem;
  z-index: 1;
}

.vsm-stepper-details {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.vsm-step-detail-item {
  text-align: center;
  padding: 1rem;
}

h4.vsm-step-detail-title {
  font-size: 1.15rem;
  color: var(--vsm-deep-forest);
  margin-bottom: 0.75rem;
}

.vsm-step-detail-desc {
  font-size: 0.95rem;
  color: var(--vsm-slate-text);
}

/* CTA STRIP CARD (CENTRO, MAX 700px, PRESET G) */
.vsm-cta-strip-section {
  padding: var(--vsm-spacing-spacious) 2rem;
}

.vsm-cta-neo-card {
  max-width: 700px;
  margin: 0 auto;
  background: var(--vsm-cream-bg);
  padding: 4rem 3rem;
  border-radius: 28px;
  text-align: center;
  box-shadow: 10px 10px 24px var(--vsm-clay-shadow-dark), -10px -10px 24px var(--vsm-clay-shadow-light);
  border: 1px solid rgba(255,255,255,0.4);
}

.vsm-cta-neo-title {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--vsm-deep-forest);
  margin-bottom: 1.25rem;
}

.vsm-cta-neo-text {
  font-size: 1.05rem;
  color: var(--vsm-slate-text);
  margin-bottom: 2.5rem;
}

/* COOKIE BANNER */
.vsm-cookie-banner {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--vsm-pure-white);
  border-top: 3px solid var(--vsm-accent-coral);
  box-shadow: 0 -8px 25px rgba(0,0,0,0.12);
  z-index: 9999;
}

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

.vsm-cookie-text {
  font-size: 0.95rem;
  color: var(--vsm-slate-text);
}

.vsm-cookie-buttons {
  display: flex;
  gap: 1rem;
  flex-shrink: 0;
}

.vsm-cookie-btn-accept {
  background-color: var(--vsm-accent-coral);
  color: var(--vsm-pure-white);
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: var(--vsm-rounded-capsule);
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
}

.vsm-cookie-btn-accept:hover {
  background-color: var(--vsm-accent-coral-hover);
}

.vsm-cookie-btn-decline {
  background-color: transparent;
  color: var(--vsm-slate-text);
  border: 1.5px solid var(--vsm-slate-text);
  padding: 0.75rem 1.5rem;
  border-radius: var(--vsm-rounded-capsule);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.vsm-cookie-btn-decline:hover {
  background-color: var(--vsm-cream-bg);
}

/* FOOTER AREA */
.vsm-footer-area {
  background-color: var(--vsm-deep-forest);
  color: var(--vsm-pure-white);
  padding: 6rem 2rem 3rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.vsm-footer-area .vsm-brand-text {
  color: var(--vsm-pure-white);
}

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

.vsm-footer-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
  margin-bottom: 3rem;
}

.vsm-footer-tagline {
  font-size: 1rem;
  color: var(--vsm-cream-bg);
  max-width: 500px;
}

.vsm-footer-links {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.vsm-footer-anchor {
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--vsm-cream-bg);
  transition: color 0.2s ease;
}

.vsm-footer-anchor:hover {
  color: var(--vsm-accent-coral);
}

.vsm-footer-disclaimer {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 0.8rem;
  color: rgba(238, 242, 247, 0.7);
  line-height: 1.7;
  max-width: 900px;
  margin-inline: auto;
}

.vsm-footer-copy {
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  font-size: 0.85rem;
  color: rgba(238, 242, 247, 0.5);
}

/* EXPERT PAGE SPECIFIC STYLES */
.vsm-expert-hero-section {
  padding: var(--vsm-spacing-spacious) 2rem 6dvh;
  max-width: 1200px;
  margin: 0 auto;
}

.vsm-expert-hero-content {
  text-align: center;
}

.vsm-expert-main-frame {
  margin-top: 4rem;
  max-width: 700px;
  margin-inline: auto;
}

.vsm-stats-neo-section {
  padding: var(--vsm-spacing-spacious) 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.vsm-stats-neo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.vsm-stat-neo-cell {
  background: var(--vsm-cream-bg);
  padding: 3rem 2rem;
  border-radius: var(--vsm-rounded-soft);
  text-align: center;
  box-shadow: 6px 6px 15px var(--vsm-clay-shadow-dark), -6px -6px 15px var(--vsm-clay-shadow-light);
  border: 1px solid rgba(255,255,255,0.4);
}

.vsm-stat-big-num {
  display: block;
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 900;
  color: var(--vsm-accent-coral);
  line-height: 1.1;
  margin-bottom: 0.5rem;
}

.vsm-stat-lbl {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--vsm-deep-forest);
}

.vsm-alternating-info {
  padding: var(--vsm-spacing-spacious) 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.vsm-alternating-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: flex-start;
}

.vsm-info-text-col {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.vsm-side-inset-plate {
  background: var(--vsm-cream-bg);
  padding: 3rem;
  border-radius: var(--vsm-rounded-soft);
  box-shadow: inset 6px 6px 12px var(--vsm-inset-shadow-dark), inset -6px -6px 12px var(--vsm-inset-shadow-light);
  border: 1px solid rgba(255,255,255,0.3);
}

.vsm-alt-row-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--vsm-deep-forest);
}

.vsm-alt-row-body {
  font-size: 1.05rem;
  line-height: 1.7;
}

.vsm-secondary-visual-sec {
  padding: var(--vsm-spacing-spacious) 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.vsm-bg2-card-holder {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  height: 550px;
}

.vsm-bg2-rect-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 32px;
  box-shadow: 10px 10px 25px var(--vsm-clay-shadow-dark);
}

.vsm-bg2-scented-card {
  position: relative;
  width: 450px;
  background: var(--vsm-cream-bg);
  padding: 3.5rem;
  border-radius: 24px;
  box-shadow: 10px 10px 24px rgba(0,0,0,0.15), -10px -10px 24px rgba(255,255,255,0.1);
  margin-right: 4rem;
  border: 1px solid rgba(255,255,255,0.4);
}

.vsm-scented-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--vsm-deep-forest);
  margin-bottom: 1rem;
}

.vsm-scented-text {
  font-size: 1rem;
  color: var(--vsm-slate-text);
  margin-bottom: 2rem;
}

/* RESERVE PAGE SPECIFIC STYLES */
.vsm-reserve-split-container {
  padding: var(--vsm-spacing-spacious) 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.vsm-two-col-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 4rem;
  margin-top: 4rem;
}

.vsm-info-cards-left {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.vsm-detail-benefit-card {
  background: var(--vsm-cream-bg);
  padding: 3rem;
  border-radius: 24px;
  box-shadow: 6px 6px 15px var(--vsm-clay-shadow-dark), -6px -6px 15px var(--vsm-clay-shadow-light);
  border: 1px solid rgba(255,255,255,0.4);
}

.vsm-benefit-card-heading {
  font-size: 1.35rem;
  margin-bottom: 1rem;
}

.vsm-benefit-card-p {
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

.vsm-benefit-num-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.vsm-benefit-num-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-weight: 500;
  color: var(--vsm-slate-text);
}

.vsm-num-marker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background-color: var(--vsm-accent-coral);
  color: var(--vsm-pure-white);
  border-radius: 50%;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.85rem;
}

.vsm-mail-holder {
  font-style: normal;
  margin-top: 1rem;
}

.vsm-mail-btn-anchor {
  display: inline-block;
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--vsm-accent-coral);
  font-size: 1rem;
  border-bottom: 2px dashed var(--vsm-accent-coral);
  transition: color 0.2s ease, border-color 0.2s ease;
}

.vsm-mail-btn-anchor:hover {
  color: var(--vsm-accent-coral-hover);
  border-color: var(--vsm-accent-coral-hover);
}

/* NEUMORPHIC FORM CARD */
.vsm-form-card-right {
  display: flex;
  align-items: flex-start;
}

.vsm-neo-form-container {
  background: var(--vsm-cream-bg);
  padding: 4rem 3rem;
  border-radius: 32px;
  box-shadow: 10px 10px 24px var(--vsm-clay-shadow-dark), -10px -10px 24px var(--vsm-clay-shadow-light);
  border: 1px solid rgba(255,255,255,0.4);
  width: 100%;
}

.vsm-form-block-title {
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
}

.vsm-form-block-sub {
  font-size: 0.95rem;
  color: var(--vsm-light-grey-text);
  margin-bottom: 2.5rem;
}

.vsm-actual-form {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.vsm-input-grp {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.vsm-neo-label {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--vsm-deep-forest);
}

.vsm-neo-input {
  background: var(--vsm-cream-bg);
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: 12px;
  padding: 1rem 1.25rem;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--vsm-slate-text);
  box-shadow: inset 4px 4px 8px var(--vsm-inset-shadow-dark), inset -4px -4px 8px var(--vsm-inset-shadow-light);
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
  outline: none;
}

.vsm-neo-input::placeholder {
  color: #a0aec0;
}

.vsm-neo-input:focus {
  border-color: var(--vsm-accent-coral);
  box-shadow: inset 2px 2px 5px var(--vsm-inset-shadow-dark), inset -2px -2px 5px var(--vsm-inset-shadow-light), 0 0 5px var(--vsm-accent-coral-rgba);
}

.vsm-neo-textarea {
  min-height: 120px;
  resize: vertical;
}

.vsm-agree-grp {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.vsm-neo-checkbox {
  width: 18px;
  height: 18px;
  accent-color: var(--vsm-accent-coral);
  margin-top: 3px;
}

.vsm-agree-label {
  font-size: 0.85rem;
  color: var(--vsm-slate-text);
  line-height: 1.4;
}

.vsm-form-inline-anchor {
  color: var(--vsm-accent-coral);
  font-weight: 600;
  text-decoration: none;
}

.vsm-form-inline-anchor:hover {
  text-decoration: underline;
}

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

/* FAQ ACCORDION (RESERVE PAGE) */
.vsm-faq-section {
  padding: var(--vsm-spacing-spacious) 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.vsm-accordion-shelf {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.vsm-faq-card {
  background: var(--vsm-cream-bg);
  padding: 2.25rem 2.5rem;
  border-radius: 18px;
  box-shadow: 4px 4px 12px var(--vsm-clay-shadow-dark), -4px -4px 12px var(--vsm-clay-shadow-light);
  border: 1px solid rgba(255,255,255,0.4);
}

h3.vsm-faq-card-question {
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
  color: var(--vsm-deep-forest);
}

.vsm-faq-card-answer {
  font-size: 0.95rem;
  color: var(--vsm-slate-text);
  line-height: 1.6;
}

/* SCROLL REVEAL ANIMATIONS (CSS-ONLY VIEWPORT DETECTION) */
@keyframes vsm-slide-reveal {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal {
  animation: vsm-slide-reveal 0.6s linear both;
  animation-timeline: view();
  animation-range: entry 0% entry 30%;
}

/* RESPONSIVE DESIGN (BREAKPOINTS) */

@media (max-width: 1024px) {
  .vsm-hero-split-wrapper {
    gap: 2rem;
  }
  h1.vsm-h1-display {
    font-size: 2.8rem;
  }
  .vsm-stats-neo-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  .vsm-two-col-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .vsm-bg2-card-holder {
    height: auto;
    flex-direction: column;
    gap: 2rem;
  }
  .vsm-bg2-rect-img {
    position: relative;
    height: 350px;
  }
  .vsm-bg2-scented-card {
    width: 100%;
    margin-right: 0;
  }
}

@media (max-width: 768px) {
  /* MOBILE MENU STYLE (CSS HAMBURGER) */
  .vsm-menu-burger {
    display: flex;
  }

  .vsm-nav-palette {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--vsm-cream-bg);
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    box-shadow: 0 10px 15px var(--vsm-clay-shadow-dark);
    border-top: 1px solid rgba(255,255,255,0.4);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
  }

  .vsm-menu-checkbox:checked ~ .vsm-nav-palette {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  /* Transform Hamburger Lines when Checked */
  .vsm-menu-checkbox:checked ~ .vsm-menu-burger .vsm-burger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
  }
  .vsm-menu-checkbox:checked ~ .vsm-menu-burger .vsm-burger-line:nth-child(2) {
    opacity: 0;
  }
  .vsm-menu-checkbox:checked ~ .vsm-menu-burger .vsm-burger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }

  /* LAYOUTS TRANSFORMATION */
  .vsm-hero-split-wrapper {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3rem;
  }
  .vsm-hero-sub {
    margin-inline: auto;
  }
  .vsm-hero-cta-holder {
    justify-content: center;
  }
  .vsm-floating-neumo-badge {
    position: static;
    margin-top: 1.5rem;
  }
  
  .vsm-twin-grid {
    grid-template-columns: 1fr;
  }
  
  .vsm-features-neo-deck {
    grid-template-columns: 1fr;
  }

  .vsm-stepper-row {
    flex-direction: column;
    gap: 2rem;
  }
  .vsm-step-divider {
    display: none;
  }
  .vsm-stepper-details {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .vsm-stepper-container {
    padding: 2rem;
  }

  .vsm-stats-neo-grid {
    grid-template-columns: 1fr;
  }

  .vsm-alternating-row {
    grid-template-columns: 1fr;
  }

  .vsm-cookie-content {
    flex-direction: column;
    text-align: center;
  }
}