/* ============================================================
   VOYUYE — Custom CSS
   Bold Contrast Design System
   Prefix: vs-
   ============================================================ */


:root {
  --vs-black: #0f0f0f;
  --vs-dark: #1a1a1a;
  --vs-dark-mid: #2a2a2a;
  --vs-mid: #4a4a4a;
  --vs-muted: #6e6e6e;
  --vs-light-mid: #b8b8b8;
  --vs-light: #f2f0eb;
  --vs-white: #fafaf8;
  --vs-accent: #d4622a;
  --vs-accent-light: #e8845a;
  --vs-accent-dark: #b04e1e;
  --vs-accent-bg: #fdf0e8;

  --vs-shadow-sm: 0 1px 3px rgba(15,15,15,0.08), 0 1px 2px rgba(15,15,15,0.06);
  --vs-shadow-md: 0 4px 12px rgba(15,15,15,0.10), 0 2px 4px rgba(15,15,15,0.08);
  --vs-shadow-lg: 0 12px 32px rgba(15,15,15,0.12), 0 4px 8px rgba(15,15,15,0.08), 0 1px 2px rgba(15,15,15,0.06);
  --vs-shadow-xl: 0 24px 56px rgba(15,15,15,0.16), 0 8px 16px rgba(15,15,15,0.10), 0 2px 4px rgba(15,15,15,0.06);
  --vs-shadow-accent: 0 8px 24px rgba(212,98,42,0.25), 0 2px 6px rgba(212,98,42,0.15);

  --vs-radius-sm: 6px;
  --vs-radius-md: 12px;
  --vs-radius-lg: 20px;
  --vs-radius-xl: 32px;
  --vs-radius-full: 9999px;

  --vs-nav-height: 72px;
  --vs-space-xs: clamp(8px, 1vw, 12px);
  --vs-space-sm: clamp(12px, 2vw, 20px);
  --vs-space-md: clamp(20px, 3vw, 32px);
  --vs-space-lg: clamp(40px, 6vw, 72px);
  --vs-space-xl: clamp(64px, 10vw, 120px);
  --vs-space-2xl: clamp(80px, 14vw, 160px);

  --vs-font-heading: 'Manrope', sans-serif;
  --vs-font-body: 'Inter', sans-serif;

  --vs-transition-fast: 150ms ease;
  --vs-transition-base: 280ms cubic-bezier(0.4, 0, 0.2, 1);
  --vs-transition-slow: 480ms cubic-bezier(0.4, 0, 0.2, 1);
}


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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--vs-font-body);
  background-color: var(--vs-white);
  color: var(--vs-dark);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--vs-transition-fast); }
ul { list-style: none; }
address { font-style: normal; }
button { cursor: pointer; font-family: var(--vs-font-body); border: none; background: none; }


.vs-container {
  width: 100%;
  max-width: 1240px;
  margin-inline: auto;
  padding-inline: clamp(16px, 5vw, 48px);
}


.vs-section-label {
  display: inline-block;
  font-family: var(--vs-font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--vs-accent);
  margin-bottom: 16px;
}
.vs-section-label--light { color: var(--vs-accent-light); }


.vs-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--vs-font-body);
  font-size: 14px;
  font-weight: 500;
  padding: 12px 24px;
  border-radius: var(--vs-radius-sm);
  transition: all var(--vs-transition-base);
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
}
.vs-btn--primary {
  background: var(--vs-dark);
  color: var(--vs-white);
  box-shadow: var(--vs-shadow-md);
}
.vs-btn--primary:hover {
  background: var(--vs-black);
  box-shadow: var(--vs-shadow-lg);
  transform: translateY(-1px);
  color: var(--vs-white);
}
.vs-btn--ghost {
  background: transparent;
  color: var(--vs-dark);
  border: 1.5px solid rgba(26,26,26,0.25);
}
.vs-btn--ghost:hover {
  border-color: var(--vs-dark);
  background: rgba(26,26,26,0.04);
}
.vs-btn--accent {
  background: var(--vs-accent);
  color: var(--vs-white);
  box-shadow: var(--vs-shadow-accent);
}
.vs-btn--accent:hover {
  background: var(--vs-accent-dark);
  box-shadow: 0 12px 32px rgba(212,98,42,0.30), 0 4px 8px rgba(212,98,42,0.18);
  transform: translateY(-2px);
  color: var(--vs-white);
}
.vs-btn--dark-bg {
  background: var(--vs-white);
  color: var(--vs-dark);
  box-shadow: var(--vs-shadow-md);
}
.vs-btn--dark-bg:hover {
  background: var(--vs-light);
  box-shadow: var(--vs-shadow-lg);
  transform: translateY(-1px);
}
.vs-btn--large {
  font-size: 15px;
  padding: 16px 32px;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.vs-nav {
  position: sticky;
  top: 0;
  z-index: 900;
  background: var(--vs-white);
  height: var(--vs-nav-height);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.vs-nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding-inline: clamp(16px, 5vw, 48px);
  max-width: 1240px;
  margin-inline: auto;
  width: 100%;
}

.vs-nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.vs-nav__logo-img { width: 32px; height: 32px; }
.vs-nav__logo-text {
  font-family: var(--vs-font-heading);
  font-size: 20px;
  font-weight: 800;
  color: var(--vs-dark);
  letter-spacing: -0.02em;
}

.vs-nav__links {
  display: none;
  align-items: center;
  gap: 4px;
}
@media (min-width: 900px) {
  .vs-nav__links { display: flex; }
}

.vs-nav__link {
  font-size: 14px;
  font-weight: 500;
  color: var(--vs-mid);
  padding: 8px 14px;
  border-radius: var(--vs-radius-sm);
  transition: all var(--vs-transition-base);
  position: relative;
}
.vs-nav__link:hover { color: var(--vs-dark); background: rgba(15,15,15,0.05); }
.vs-nav__link--active { color: var(--vs-dark); font-weight: 600; }
.vs-nav__link--cta {
  background: var(--vs-dark);
  color: var(--vs-white) !important;
  padding: 8px 18px;
  margin-left: 8px;
}
.vs-nav__link--cta:hover {
  background: var(--vs-accent);
  color: var(--vs-white) !important;
}

.vs-nav__border-line {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--vs-dark);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
}
.vs-nav--scrolled .vs-nav__border-line {
  transform: scaleX(1);
}

.vs-nav__hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  border-radius: var(--vs-radius-sm);
  transition: background var(--vs-transition-fast);
}
.vs-nav__hamburger:hover { background: rgba(15,15,15,0.06); }
.vs-nav__hamburger span {
  display: block;
  height: 2px;
  background: var(--vs-dark);
  border-radius: 2px;
  transition: all var(--vs-transition-base);
}
@media (min-width: 900px) {
  .vs-nav__hamburger { display: none; }
}


.vs-mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(15,15,15,0.55);
  z-index: 1000;
  opacity: 0;
  transition: opacity var(--vs-transition-base);
}
.vs-mobile-overlay.vs-is-open {
  display: block;
  opacity: 1;
}

.vs-mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: min(340px, 90vw);
  height: 100vh;
  background: var(--vs-white);
  z-index: 1100;
  transform: translateX(100%);
  transition: transform var(--vs-transition-slow);
  display: flex;
  flex-direction: column;
  padding: 24px;
  box-shadow: var(--vs-shadow-xl);
}
.vs-mobile-menu.vs-is-open {
  transform: translateX(0);
}

.vs-mobile-menu__close {
  align-self: flex-end;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--vs-radius-sm);
  font-size: 20px;
  color: var(--vs-dark);
  transition: background var(--vs-transition-fast);
  margin-bottom: 16px;
}
.vs-mobile-menu__close:hover { background: rgba(15,15,15,0.08); }

.vs-mobile-menu__nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}
.vs-mobile-menu__link {
  font-family: var(--vs-font-heading);
  font-size: 22px;
  font-weight: 700;
  color: var(--vs-dark);
  padding: 14px 0;
  border-bottom: 1px solid rgba(15,15,15,0.08);
  transition: color var(--vs-transition-fast);
}
.vs-mobile-menu__link:hover { color: var(--vs-accent); }
.vs-mobile-menu__link--accent { color: var(--vs-accent); border-bottom: none; margin-top: 8px; }

.vs-mobile-menu__footer {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-top: 24px;
  border-top: 1px solid rgba(15,15,15,0.08);
  font-size: 13px;
  color: var(--vs-muted);
}


.vs-mobile-bottom-nav {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--vs-white);
  border-top: 1px solid rgba(15,15,15,0.10);
  z-index: 800;
  padding-bottom: env(safe-area-inset-bottom);
  box-shadow: 0 -4px 16px rgba(15,15,15,0.08);
}
@media (max-width: 899px) {
  .vs-mobile-bottom-nav { display: flex; }
}

.vs-bottom-nav__item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  padding: 10px 4px;
  color: var(--vs-muted);
  font-size: 10px;
  font-weight: 500;
  transition: color var(--vs-transition-fast);
  min-height: 56px;
}
.vs-bottom-nav__item i { font-size: 18px; }
.vs-bottom-nav__item:hover, .vs-bottom-nav__item--active {
  color: var(--vs-accent);
}


.vs-breadcrumb {
  background: var(--vs-light);
  border-bottom: 1px solid rgba(15,15,15,0.08);
  padding: 10px 0;
}
.vs-breadcrumb__trail {
  font-size: 12px;
  color: var(--vs-muted);
  font-weight: 500;
}
.vs-breadcrumb__trail a { color: var(--vs-accent); }
.vs-breadcrumb__trail a:hover { text-decoration: underline; }

/* ============================================================
   HERO SECTION
   ============================================================ */
.vs-hero {
  display: grid;
  grid-template-columns: 1fr;
  min-height: calc(100vh - var(--vs-nav-height));
  overflow: hidden;
}
@media (min-width: 900px) {
  .vs-hero {
    grid-template-columns: 45% 55%;
  }
}

.vs-hero__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(40px, 8vw, 80px) clamp(24px, 5vw, 72px);
  background: var(--vs-white);
  animation: vs-hero-enter 0.8s cubic-bezier(0.4, 0, 0.2, 1) both;
}

@keyframes vs-hero-enter {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

.vs-hero__eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--vs-accent);
  margin-bottom: 20px;
}

.vs-hero__heading {
  font-family: var(--vs-font-heading);
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--vs-black);
  margin-bottom: 24px;
}
.vs-hero__heading em {
  font-style: normal;
  color: var(--vs-accent);
}

.vs-hero__subtext {
  font-size: clamp(15px, 1.5vw, 17px);
  color: var(--vs-mid);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 36px;
}

.vs-hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.vs-hero__stats {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.vs-hero__stat-label {
  font-size: 13px;
  font-weight: 500;
  color: var(--vs-muted);
}
.vs-hero__stat-divider {
  width: 1px;
  height: 20px;
  background: rgba(15,15,15,0.15);
}

.vs-hero__visual {
  position: relative;
  overflow: hidden;
  animation: vs-hero-image-enter 1s cubic-bezier(0.4, 0, 0.2, 1) 0.2s both;
}
@keyframes vs-hero-image-enter {
  from { opacity: 0; transform: scale(1.04); }
  to { opacity: 1; transform: scale(1); }
}

.vs-hero__image-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 420px;
}
.vs-hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.vs-hero__accent-card {
  position: absolute;
  bottom: 48px;
  left: -24px;
  background: var(--vs-white);
  border-radius: var(--vs-radius-md);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--vs-shadow-xl);
  animation: vs-card-float 0.9s cubic-bezier(0.4, 0, 0.2, 1) 0.5s both;
}
@keyframes vs-card-float {
  from { opacity: 0; transform: translateX(-16px); }
  to { opacity: 1; transform: translateX(0); }
}
.vs-hero__accent-icon {
  font-size: 24px;
  color: var(--vs-accent);
}
.vs-hero__accent-text {
  font-size: 13px;
  font-weight: 600;
  color: var(--vs-dark);
  white-space: nowrap;
}

/* ============================================================
   INTRO SECTION
   ============================================================ */
.vs-intro {
  padding: var(--vs-space-xl) 0;
  background: var(--vs-white);
}

.vs-intro__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--vs-space-md);
}
@media (min-width: 768px) {
  .vs-intro__grid {
    grid-template-columns: 220px 1fr;
    gap: var(--vs-space-lg);
    align-items: start;
  }
}

.vs-intro__heading {
  font-family: var(--vs-font-heading);
  font-size: clamp(26px, 3.5vw, 42px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--vs-black);
  margin-bottom: 20px;
}

.vs-intro__body {
  font-size: clamp(15px, 1.4vw, 17px);
  color: var(--vs-mid);
  line-height: 1.75;
  margin-bottom: 16px;
}
.vs-intro__body em { color: var(--vs-dark); font-style: normal; font-weight: 500; }

/* ============================================================
   PILLARS SECTION
   ============================================================ */
.vs-pillars {
  padding: var(--vs-space-xl) 0;
  background: var(--vs-light);
}

.vs-pillars__header {
  margin-bottom: var(--vs-space-lg);
}
.vs-pillars__heading {
  font-family: var(--vs-font-heading);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--vs-black);
}

.vs-pillars__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 600px) {
  .vs-pillars__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .vs-pillars__grid { grid-template-columns: repeat(4, 1fr); }
}

.vs-pillar-card {
  background: var(--vs-white);
  border-radius: var(--vs-radius-lg);
  overflow: hidden;
  box-shadow: var(--vs-shadow-sm);
  transition: all var(--vs-transition-base);
}
.vs-pillar-card:hover {
  box-shadow: var(--vs-shadow-lg);
  transform: translateY(-4px);
}

.vs-pillar-card__number {
  font-family: var(--vs-font-heading);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--vs-accent);
  padding: 20px 20px 0;
}

.vs-pillar-card__img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  margin-top: 12px;
}

.vs-pillar-card__title {
  font-family: var(--vs-font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--vs-black);
  padding: 16px 20px 8px;
}

.vs-pillar-card__text {
  font-size: 14px;
  color: var(--vs-mid);
  line-height: 1.65;
  padding: 0 20px 20px;
}

/* ============================================================
   WHY SECTION
   ============================================================ */
.vs-why {
  background: var(--vs-dark);
  overflow: hidden;
}

.vs-why__inner {
  display: grid;
  grid-template-columns: 1fr;
  min-height: 80vh;
}
@media (min-width: 900px) {
  .vs-why__inner { grid-template-columns: 50% 50%; }
}

.vs-why__image-side {
  position: relative;
  overflow: hidden;
  min-height: 400px;
}
.vs-why__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0.85;
}

.vs-why__content-side {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(48px, 8vw, 96px) clamp(32px, 6vw, 80px);
}

.vs-why__heading {
  font-family: var(--vs-font-heading);
  font-size: clamp(24px, 3.2vw, 40px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--vs-white);
  margin-bottom: 24px;
}

.vs-why__text {
  font-size: 16px;
  color: rgba(250,250,248,0.72);
  line-height: 1.75;
  margin-bottom: 20px;
}

/* ============================================================
   AGES SECTION
   ============================================================ */
.vs-ages {
  padding: var(--vs-space-xl) 0;
  background: var(--vs-white);
}

.vs-ages__header {
  margin-bottom: var(--vs-space-lg);
  max-width: 640px;
}
.vs-ages__heading {
  font-family: var(--vs-font-heading);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--vs-black);
  margin-bottom: 16px;
}
.vs-ages__subtext {
  font-size: 16px;
  color: var(--vs-mid);
  line-height: 1.65;
}

.vs-ages__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 600px) {
  .vs-ages__grid { grid-template-columns: repeat(3, 1fr); }
}

.vs-age-block {
  position: relative;
  border-radius: var(--vs-radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  box-shadow: var(--vs-shadow-md);
  transition: all var(--vs-transition-base);
}
.vs-age-block:hover {
  box-shadow: var(--vs-shadow-xl);
  transform: translateY(-4px);
}

.vs-age-block__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--vs-transition-slow);
}
.vs-age-block:hover .vs-age-block__img {
  transform: scale(1.04);
}

.vs-age-block__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  background: linear-gradient(to top, rgba(15,15,15,0.88) 0%, rgba(15,15,15,0.4) 60%, transparent 100%);
}

.vs-age-block__title {
  font-family: var(--vs-font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--vs-white);
  margin-bottom: 8px;
}

.vs-age-block__text {
  font-size: 13px;
  color: rgba(250,250,248,0.80);
  line-height: 1.55;
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.vs-cta {
  padding: var(--vs-space-2xl) 0;
  background: var(--vs-black);
}

.vs-cta__inner {
  text-align: center;
  max-width: 640px;
  margin-inline: auto;
}

.vs-cta__heading {
  font-family: var(--vs-font-heading);
  font-size: clamp(32px, 5vw, 64px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--vs-white);
  margin-bottom: 20px;
}

.vs-cta__text {
  font-size: 17px;
  color: rgba(250,250,248,0.65);
  line-height: 1.7;
  margin-bottom: 36px;
}

.vs-cta .vs-section-label { color: rgba(212,98,42,0.9); }

/* ============================================================
   FAQ SECTION
   ============================================================ */
.vs-faq {
  padding: var(--vs-space-xl) 0;
  background: var(--vs-light);
}

.vs-faq__header {
  margin-bottom: var(--vs-space-lg);
  max-width: 640px;
}

.vs-faq__heading {
  font-family: var(--vs-font-heading);
  font-size: clamp(24px, 3.5vw, 40px);
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--vs-black);
}

.vs-faq__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 800px;
}

.vs-faq__item {
  background: var(--vs-white);
  border-radius: var(--vs-radius-md);
  overflow: hidden;
  box-shadow: var(--vs-shadow-sm);
  transition: box-shadow var(--vs-transition-base);
}
.vs-faq__item:hover { box-shadow: var(--vs-shadow-md); }

.vs-faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  font-family: var(--vs-font-heading);
  font-size: 16px;
  font-weight: 600;
  color: var(--vs-dark);
  text-align: left;
  transition: color var(--vs-transition-fast);
}
.vs-faq__question:hover { color: var(--vs-accent); }

.vs-faq__icon {
  flex-shrink: 0;
  font-size: 14px;
  color: var(--vs-accent);
  transition: transform var(--vs-transition-base);
}
.vs-faq__item--open .vs-faq__icon {
  transform: rotate(45deg);
}

.vs-faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--vs-transition-slow), padding var(--vs-transition-base);
}
.vs-faq__item--open .vs-faq__answer {
  max-height: 400px;
}
.vs-faq__answer p {
  padding: 0 24px 20px;
  font-size: 15px;
  color: var(--vs-mid);
  line-height: 1.75;
}

/* ============================================================
   FOOTER
   ============================================================ */
.vs-footer {
  background: var(--vs-dark);
  color: var(--vs-light);
  padding: var(--vs-space-xl) 0 0;
  margin-top: auto;
}

.vs-footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--vs-space-lg);
  padding-bottom: var(--vs-space-lg);
  border-bottom: 1px solid rgba(250,250,248,0.10);
}
@media (min-width: 600px) {
  .vs-footer__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 900px) {
  .vs-footer__grid { grid-template-columns: 2fr 1fr 1fr 1.5fr; }
}

.vs-footer__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--vs-font-heading);
  font-size: 20px;
  font-weight: 800;
  color: var(--vs-white);
  margin-bottom: 16px;
}
.vs-footer__logo-img { width: 28px; height: 28px; }

.vs-footer__tagline {
  font-size: 14px;
  color: rgba(250,250,248,0.55);
  line-height: 1.6;
  max-width: 280px;
}

.vs-footer__links-title {
  font-family: var(--vs-font-heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(250,250,248,0.45);
  margin-bottom: 16px;
}

.vs-footer__links ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.vs-footer__links a {
  font-size: 14px;
  color: rgba(250,250,248,0.70);
  transition: color var(--vs-transition-fast);
}
.vs-footer__links a:hover { color: var(--vs-white); }

.vs-footer__contact address {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.vs-footer__contact p {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: rgba(250,250,248,0.70);
}
.vs-footer__contact i {
  color: var(--vs-accent-light);
  width: 16px;
  flex-shrink: 0;
  margin-top: 2px;
}
.vs-footer__contact a { color: rgba(250,250,248,0.70); }
.vs-footer__contact a:hover { color: var(--vs-white); }

.vs-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding: 24px 0;
}
.vs-footer__bottom p {
  font-size: 12px;
  color: rgba(250,250,248,0.40);
}

@media (max-width: 899px) {
  .vs-footer { padding-bottom: 70px; }
}

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.vs-page-hero {
  padding: clamp(64px, 10vw, 120px) 0 clamp(48px, 8vw, 80px);
  background: var(--vs-white);
  border-bottom: 1px solid rgba(15,15,15,0.08);
}
.vs-page-hero--values { background: var(--vs-light); }
.vs-page-hero--tips { background: var(--vs-white); }
.vs-page-hero--how {
  background: var(--vs-dark);
}
.vs-page-hero--how .vs-page-hero__heading { color: var(--vs-white); }
.vs-page-hero--how .vs-page-hero__subtext { color: rgba(250,250,248,0.65); }
.vs-page-hero--how .vs-section-label { color: var(--vs-accent-light); }
.vs-page-hero--contact { background: var(--vs-black); }
.vs-page-hero--contact .vs-page-hero__heading { color: var(--vs-white); }
.vs-page-hero--contact .vs-page-hero__subtext { color: rgba(250,250,248,0.65); }
.vs-page-hero--contact .vs-section-label { color: var(--vs-accent-light); }

.vs-page-hero__heading {
  font-family: var(--vs-font-heading);
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--vs-black);
  margin-bottom: 20px;
}

.vs-page-hero__subtext {
  font-size: clamp(15px, 1.5vw, 18px);
  color: var(--vs-mid);
  line-height: 1.7;
  max-width: 600px;
}

/* ============================================================
   VALUES PAGE
   ============================================================ */
.vs-values-main {
  padding: var(--vs-space-xl) 0;
  background: var(--vs-white);
}

.vs-values__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(48px, 6vw, 80px);
}
@media (min-width: 768px) {
  .vs-values__grid { grid-template-columns: repeat(2, 1fr); }
}

.vs-value-item__icon {
  width: 52px;
  height: 52px;
  background: var(--vs-accent-bg);
  border-radius: var(--vs-radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--vs-accent);
  margin-bottom: 20px;
  box-shadow: var(--vs-shadow-sm);
}

.vs-value-item__title {
  font-family: var(--vs-font-heading);
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 700;
  color: var(--vs-black);
  margin-bottom: 16px;
}

.vs-value-item__text {
  font-size: 15px;
  color: var(--vs-mid);
  line-height: 1.75;
  margin-bottom: 12px;
}

.vs-manifesto {
  padding: var(--vs-space-xl) 0;
  background: var(--vs-dark);
}

.vs-manifesto__inner { max-width: 800px; }

.vs-manifesto__quote {
  font-family: var(--vs-font-heading);
  font-size: clamp(22px, 3.5vw, 38px);
  font-weight: 700;
  line-height: 1.3;
  color: var(--vs-white);
  font-style: italic;
  border-left: 4px solid var(--vs-accent);
  padding-left: 32px;
  margin-bottom: 20px;
}

.vs-manifesto__attribution {
  font-size: 13px;
  color: rgba(250,250,248,0.45);
  font-weight: 500;
  letter-spacing: 0.05em;
  padding-left: 36px;
}

.vs-approach {
  padding: var(--vs-space-xl) 0;
  background: var(--vs-white);
}

.vs-approach__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--vs-space-lg);
  align-items: center;
}
@media (min-width: 768px) {
  .vs-approach__grid { grid-template-columns: 1fr 1fr; }
}

.vs-approach__heading {
  font-family: var(--vs-font-heading);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--vs-black);
  margin-bottom: 20px;
}

.vs-approach__text {
  font-size: 15px;
  color: var(--vs-mid);
  line-height: 1.75;
  margin-bottom: 16px;
}

.vs-approach__img {
  width: 100%;
  border-radius: var(--vs-radius-lg);
  box-shadow: var(--vs-shadow-lg);
}

/* ============================================================
   TIPS PAGE
   ============================================================ */
.vs-tips-intro {
  padding: var(--vs-space-xl) 0;
  background: var(--vs-white);
}

.vs-tips-intro__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--vs-space-lg);
  align-items: center;
}
@media (min-width: 768px) {
  .vs-tips-intro__grid { grid-template-columns: 1fr 1fr; }
}

.vs-tips-intro__heading {
  font-family: var(--vs-font-heading);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--vs-black);
  margin-bottom: 20px;
}

.vs-tips-intro__text p {
  font-size: 16px;
  color: var(--vs-mid);
  line-height: 1.75;
  margin-bottom: 16px;
}

.vs-tips-intro__img {
  width: 100%;
  border-radius: var(--vs-radius-lg);
  box-shadow: var(--vs-shadow-lg);
}

.vs-tips-list {
  padding: var(--vs-space-xl) 0;
  background: var(--vs-light);
}

.vs-tips-list__heading {
  font-family: var(--vs-font-heading);
  font-size: clamp(24px, 3.5vw, 40px);
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--vs-black);
  margin-bottom: var(--vs-space-lg);
}

.vs-tip-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.vs-tip-card {
  background: var(--vs-white);
  border-radius: var(--vs-radius-lg);
  padding: 32px;
  box-shadow: var(--vs-shadow-sm);
  transition: all var(--vs-transition-base);
  border-left: 4px solid transparent;
}
.vs-tip-card:hover {
  box-shadow: var(--vs-shadow-lg);
  border-left-color: var(--vs-accent);
  transform: translateX(4px);
}

.vs-tip-card__header {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 16px;
}

.vs-tip-card__num {
  font-family: var(--vs-font-heading);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--vs-accent);
}

.vs-tip-card__title {
  font-family: var(--vs-font-heading);
  font-size: clamp(17px, 2vw, 20px);
  font-weight: 700;
  color: var(--vs-black);
}

.vs-tip-card__text {
  font-size: 15px;
  color: var(--vs-mid);
  line-height: 1.75;
  margin-bottom: 10px;
}

.vs-habits {
  padding: var(--vs-space-xl) 0;
  background: var(--vs-dark);
}

.vs-habits__inner { max-width: 760px; }

.vs-habits__heading {
  font-family: var(--vs-font-heading);
  font-size: clamp(24px, 3.5vw, 40px);
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--vs-white);
  margin-bottom: 24px;
}

.vs-habits__text {
  font-size: 16px;
  color: rgba(250,250,248,0.70);
  line-height: 1.75;
  margin-bottom: 16px;
}

/* ============================================================
   HOW IT WORKS PAGE
   ============================================================ */
.vs-mechanics {
  padding: var(--vs-space-xl) 0;
  background: var(--vs-white);
}

.vs-mechanics__intro {
  max-width: 760px;
  margin-bottom: var(--vs-space-lg);
}

.vs-mechanics__heading {
  font-family: var(--vs-font-heading);
  font-size: clamp(26px, 3.5vw, 42px);
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--vs-black);
  margin-bottom: 20px;
}

.vs-mechanics__text {
  font-size: 16px;
  color: var(--vs-mid);
  line-height: 1.75;
  margin-bottom: 16px;
}

.vs-mechanics__blocks {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 600px) {
  .vs-mechanics__blocks { grid-template-columns: repeat(2, 1fr); }
}

.vs-mechanics__block {
  padding: 32px;
  background: var(--vs-light);
  border-radius: var(--vs-radius-lg);
  transition: all var(--vs-transition-base);
}
.vs-mechanics__block:hover {
  background: var(--vs-white);
  box-shadow: var(--vs-shadow-lg);
  transform: translateY(-4px);
}

.vs-mechanics__block-icon {
  font-size: 28px;
  color: var(--vs-accent);
  margin-bottom: 16px;
}

.vs-mechanics__block-title {
  font-family: var(--vs-font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--vs-black);
  margin-bottom: 12px;
}

.vs-mechanics__block p {
  font-size: 14px;
  color: var(--vs-mid);
  line-height: 1.75;
  margin-bottom: 12px;
}

.vs-consistency {
  background: var(--vs-light);
  overflow: hidden;
}

.vs-consistency__inner {
  display: grid;
  grid-template-columns: 1fr;
  min-height: 70vh;
}
@media (min-width: 900px) {
  .vs-consistency__inner { grid-template-columns: 1fr 1fr; }
}

.vs-consistency__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(48px, 8vw, 96px) clamp(32px, 6vw, 80px);
}

.vs-consistency__heading {
  font-family: var(--vs-font-heading);
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--vs-black);
  margin-bottom: 24px;
}

.vs-consistency__content p {
  font-size: 15px;
  color: var(--vs-mid);
  line-height: 1.75;
  margin-bottom: 16px;
}

.vs-consistency__image {
  overflow: hidden;
  min-height: 400px;
}
.vs-consistency__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vs-patterns {
  padding: var(--vs-space-xl) 0;
  background: var(--vs-dark);
}

.vs-patterns__heading {
  font-family: var(--vs-font-heading);
  font-size: clamp(26px, 3.5vw, 42px);
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--vs-white);
  margin-bottom: 16px;
}

.vs-patterns__intro {
  font-size: 16px;
  color: rgba(250,250,248,0.65);
  line-height: 1.7;
  max-width: 640px;
  margin-bottom: var(--vs-space-lg);
}

.vs-patterns__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 500px) {
  .vs-patterns__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 900px) {
  .vs-patterns__grid { grid-template-columns: repeat(3, 1fr); }
}

.vs-pattern-item {
  background: rgba(250,250,248,0.06);
  border: 1px solid rgba(250,250,248,0.10);
  border-radius: var(--vs-radius-md);
  padding: 24px;
  transition: all var(--vs-transition-base);
}
.vs-pattern-item:hover {
  background: rgba(250,250,248,0.10);
  border-color: rgba(212,98,42,0.40);
  transform: translateY(-2px);
}

.vs-pattern-item__icon {
  display: block;
  font-size: 28px;
  color: var(--vs-accent-light);
  margin-bottom: 12px;
}

.vs-pattern-item h4 {
  font-family: var(--vs-font-heading);
  font-size: 15px;
  font-weight: 700;
  color: var(--vs-white);
  margin-bottom: 8px;
}

.vs-pattern-item p {
  font-size: 13px;
  color: rgba(250,250,248,0.60);
  line-height: 1.65;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.vs-contact-main {
  padding: var(--vs-space-xl) 0;
  background: var(--vs-white);
}

.vs-contact__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--vs-space-lg);
}
@media (min-width: 900px) {
  .vs-contact__grid { grid-template-columns: 1fr 400px; }
}

.vs-contact__form-title {
  font-family: var(--vs-font-heading);
  font-size: clamp(22px, 2.5vw, 28px);
  font-weight: 700;
  color: var(--vs-black);
  margin-bottom: 28px;
}

.vs-contact-form__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
@media (min-width: 600px) {
  .vs-contact-form__row { grid-template-columns: 1fr 1fr; }
}

.vs-contact-form__field {
  margin-bottom: 16px;
}

.vs-contact-form__label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--vs-dark);
  margin-bottom: 8px;
}
.vs-contact-form__label span { color: var(--vs-accent); }

.vs-contact-form__input,
.vs-contact-form__textarea {
  width: 100%;
  padding: 12px 16px;
  font-family: var(--vs-font-body);
  font-size: 15px;
  color: var(--vs-dark);
  background: var(--vs-white);
  border: 1.5px solid rgba(15,15,15,0.18);
  border-radius: var(--vs-radius-sm);
  outline: none;
  transition: all var(--vs-transition-base);
  box-shadow: var(--vs-shadow-sm);
}
.vs-contact-form__input:focus,
.vs-contact-form__textarea:focus {
  border-color: var(--vs-accent);
  box-shadow: 0 0 0 3px rgba(212,98,42,0.12), var(--vs-shadow-sm);
}
.vs-contact-form__textarea {
  resize: vertical;
  min-height: 160px;
}

.vs-contact-form__privacy {
  margin-bottom: 24px;
}

.vs-contact-form__checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 13px;
  color: var(--vs-mid);
  line-height: 1.55;
  cursor: pointer;
}
.vs-contact-form__checkbox-label a { color: var(--vs-accent); text-decoration: underline; }

.vs-contact-form__checkbox {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.vs-contact-form__checkbox-custom {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border: 2px solid rgba(15,15,15,0.25);
  border-radius: 4px;
  background: var(--vs-white);
  transition: all var(--vs-transition-fast);
  position: relative;
  margin-top: 1px;
}
.vs-contact-form__checkbox:checked + .vs-contact-form__checkbox-custom {
  background: var(--vs-accent);
  border-color: var(--vs-accent);
}
.vs-contact-form__checkbox:checked + .vs-contact-form__checkbox-custom::after {
  content: '';
  position: absolute;
  left: 5px;
  top: 2px;
  width: 6px;
  height: 10px;
  border: 2px solid white;
  border-top: none;
  border-left: none;
  transform: rotate(45deg);
}

.vs-contact-form__error {
  color: #c0392b;
  font-size: 13px;
  background: #fdf3f2;
  border: 1px solid #e8c4c0;
  border-radius: var(--vs-radius-sm);
  padding: 12px 16px;
  margin-bottom: 16px;
}

.vs-contact-form__submit {
  width: 100%;
  justify-content: center;
}

.vs-contact__info-title {
  font-family: var(--vs-font-heading);
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 700;
  color: var(--vs-black);
  margin-bottom: 24px;
}

.vs-contact__info-block {
  background: var(--vs-light);
  border-radius: var(--vs-radius-lg);
  padding: 28px;
  margin-bottom: 20px;
  box-shadow: var(--vs-shadow-sm);
}

.vs-contact__info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
}
.vs-contact__info-item:last-child { margin-bottom: 0; }

.vs-contact__info-icon {
  width: 40px;
  height: 40px;
  background: var(--vs-accent-bg);
  border-radius: var(--vs-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--vs-accent);
  flex-shrink: 0;
}

.vs-contact__info-item strong {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--vs-muted);
  margin-bottom: 4px;
}
.vs-contact__info-item p {
  font-size: 14px;
  color: var(--vs-dark);
  line-height: 1.5;
}
.vs-contact__info-item a { color: var(--vs-accent); }
.vs-contact__info-item a:hover { text-decoration: underline; }

.vs-contact__map {
  border-radius: var(--vs-radius-md);
  overflow: hidden;
  box-shadow: var(--vs-shadow-md);
}

.vs-urgent {
  padding: var(--vs-space-lg) 0;
  background: var(--vs-accent);
}

.vs-urgent__inner {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.vs-urgent__icon {
  font-size: 40px;
  color: var(--vs-white);
  opacity: 0.85;
  flex-shrink: 0;
}

.vs-urgent__content { flex: 1; min-width: 200px; }

.vs-urgent__title {
  font-family: var(--vs-font-heading);
  font-size: clamp(20px, 2.5vw, 26px);
  font-weight: 700;
  color: var(--vs-white);
  margin-bottom: 8px;
}

.vs-urgent__text {
  font-size: 15px;
  color: rgba(250,250,248,0.82);
  line-height: 1.65;
  margin-bottom: 16px;
  max-width: 560px;
}

.vs-urgent .vs-btn--primary {
  background: var(--vs-white);
  color: var(--vs-accent);
}
.vs-urgent .vs-btn--primary:hover {
  background: var(--vs-light);
  color: var(--vs-accent-dark);
}

/* ============================================================
   THANKS PAGE
   ============================================================ */
.vs-thanks {
  min-height: calc(100vh - var(--vs-nav-height) - 200px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--vs-space-xl) clamp(16px, 5vw, 48px);
  background: var(--vs-white);
}

.vs-thanks__inner {
  max-width: 640px;
  text-align: center;
}

.vs-thanks__icon {
  font-size: 64px;
  color: var(--vs-accent);
  margin-bottom: 24px;
  animation: vs-hero-enter 0.6s ease both;
}

.vs-thanks__heading {
  font-family: var(--vs-font-heading);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--vs-black);
  margin-bottom: 16px;
}

.vs-thanks__text {
  font-size: 17px;
  color: var(--vs-mid);
  line-height: 1.65;
  margin-bottom: 48px;
}

.vs-thanks__next {
  background: var(--vs-light);
  border-radius: var(--vs-radius-lg);
  padding: 32px;
  margin-bottom: 40px;
  text-align: left;
  box-shadow: var(--vs-shadow-sm);
}

.vs-thanks__next-title {
  font-family: var(--vs-font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--vs-black);
  margin-bottom: 24px;
}

.vs-thanks__steps {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.vs-thanks__step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.vs-thanks__step-icon {
  width: 40px;
  height: 40px;
  background: var(--vs-accent-bg);
  border-radius: var(--vs-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--vs-accent);
  flex-shrink: 0;
}

.vs-thanks__step-text strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--vs-dark);
  margin-bottom: 4px;
}

.vs-thanks__step-text p {
  font-size: 13px;
  color: var(--vs-mid);
  line-height: 1.6;
}

/* ============================================================
   LEGAL PAGES
   ============================================================ */
.vs-legal-hero {
  padding: clamp(48px, 8vw, 96px) 0 clamp(32px, 5vw, 56px);
  background: var(--vs-light);
  border-bottom: 1px solid rgba(15,15,15,0.08);
}

.vs-legal-hero__title {
  font-family: var(--vs-font-heading);
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--vs-black);
  margin-bottom: 12px;
}

.vs-legal-hero__meta {
  font-size: 13px;
  color: var(--vs-muted);
  font-weight: 500;
}

.vs-legal-body {
  padding: var(--vs-space-xl) 0;
  background: var(--vs-white);
}

.vs-legal-container {
  max-width: 860px;
}

.vs-legal-intro {
  font-size: 16px;
  color: var(--vs-mid);
  line-height: 1.8;
  background: var(--vs-accent-bg);
  border-left: 4px solid var(--vs-accent);
  padding: 20px 24px;
  border-radius: 0 var(--vs-radius-sm) var(--vs-radius-sm) 0;
  margin-bottom: 40px;
}

.vs-legal-container h2 {
  font-family: var(--vs-font-heading);
  font-size: clamp(18px, 2.2vw, 22px);
  font-weight: 700;
  color: var(--vs-black);
  margin-top: 40px;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(15,15,15,0.08);
}

.vs-legal-container h3 {
  font-family: var(--vs-font-heading);
  font-size: 17px;
  font-weight: 600;
  color: var(--vs-dark);
  margin-top: 28px;
  margin-bottom: 12px;
}

.vs-legal-container p {
  font-size: 15px;
  color: var(--vs-mid);
  line-height: 1.8;
  margin-bottom: 16px;
}

.vs-legal-container a { color: var(--vs-accent); text-decoration: underline; }
.vs-legal-container a:hover { color: var(--vs-accent-dark); }

.vs-legal-container strong { color: var(--vs-dark); }

.vs-legal-table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  font-size: 14px;
  box-shadow: var(--vs-shadow-sm);
  border-radius: var(--vs-radius-md);
  overflow: hidden;
}

.vs-legal-table thead tr {
  background: var(--vs-dark);
  color: var(--vs-white);
}

.vs-legal-table th {
  padding: 12px 16px;
  text-align: left;
  font-family: var(--vs-font-heading);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.vs-legal-table td {
  padding: 12px 16px;
  color: var(--vs-mid);
  border-bottom: 1px solid rgba(15,15,15,0.06);
  vertical-align: top;
}

.vs-legal-table tbody tr:last-child td { border-bottom: none; }
.vs-legal-table tbody tr:nth-child(even) { background: var(--vs-light); }

.vs-terms-section {
  margin-bottom: 40px;
}

.vs-terms-dl {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

.vs-terms-dl dt {
  font-family: var(--vs-font-heading);
  font-size: 14px;
  font-weight: 700;
  color: var(--vs-dark);
  padding: 12px 0 4px;
  border-top: 1px solid rgba(15,15,15,0.08);
}

.vs-terms-dl dd {
  font-size: 14px;
  color: var(--vs-mid);
  line-height: 1.7;
  padding-bottom: 12px;
  padding-left: 0;
}

/* ============================================================
   SCROLL REVEAL ANIMATION
   ============================================================ */
.vs-reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.vs-reveal.vs-revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   COOKIE CONSENT
   ============================================================ */
.vs-cookie-consent {
  position: fixed;
  bottom: 24px;
  left: 24px;
  width: 360px;
  max-width: calc(100vw - 48px);
  background: var(--vs-white);
  border-radius: var(--vs-radius-lg);
  box-shadow: var(--vs-shadow-xl);
  z-index: 9999;
  padding: 24px;
  border: 1px solid rgba(15,15,15,0.08);
  transform: translateY(120%);
  opacity: 0;
  transition: transform var(--vs-transition-slow), opacity var(--vs-transition-slow);
}
.vs-cookie-consent.vs-cookie--visible {
  transform: translateY(0);
  opacity: 1;
}
@media (max-width: 899px) {
  .vs-cookie-consent {
    bottom: 80px;
    left: 12px;
    right: 12px;
    width: auto;
    max-width: none;
  }
}

.vs-cookie-consent__title {
  font-family: var(--vs-font-heading);
  font-size: 15px;
  font-weight: 700;
  color: var(--vs-black);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.vs-cookie-consent__title i { color: var(--vs-accent); }

.vs-cookie-consent__text {
  font-size: 13px;
  color: var(--vs-mid);
  line-height: 1.6;
  margin-bottom: 16px;
}
.vs-cookie-consent__text a { color: var(--vs-accent); text-decoration: underline; }

.vs-cookie-consent__buttons {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.vs-cookie-btn {
  width: 100%;
  padding: 10px 16px;
  border-radius: var(--vs-radius-sm);
  font-family: var(--vs-font-body);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--vs-transition-base);
  border: none;
  text-align: center;
}
.vs-cookie-btn--accept {
  background: var(--vs-dark);
  color: var(--vs-white);
  box-shadow: var(--vs-shadow-sm);
}
.vs-cookie-btn--accept:hover { background: var(--vs-black); box-shadow: var(--vs-shadow-md); }
.vs-cookie-btn--reject {
  background: transparent;
  color: var(--vs-muted);
  border: 1px solid rgba(15,15,15,0.15);
}
.vs-cookie-btn--reject:hover { background: var(--vs-light); color: var(--vs-dark); }
.vs-cookie-btn--customize {
  background: transparent;
  color: var(--vs-accent);
  font-size: 12px;
  padding: 6px;
}
.vs-cookie-btn--customize:hover { text-decoration: underline; }

.vs-cookie-consent__customize {
  display: none;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(15,15,15,0.08);
}
.vs-cookie-consent__customize.vs-cookie--expanded { display: block; }

.vs-cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid rgba(15,15,15,0.06);
}
.vs-cookie-category:last-child { border-bottom: none; }

.vs-cookie-category__label {
  font-size: 13px;
  font-weight: 500;
  color: var(--vs-dark);
}
.vs-cookie-category__desc {
  font-size: 11px;
  color: var(--vs-muted);
  margin-top: 2px;
}

.vs-cookie-toggle {
  position: relative;
  width: 40px;
  height: 22px;
  flex-shrink: 0;
}
.vs-cookie-toggle input { opacity: 0; width: 0; height: 0; }
.vs-cookie-toggle-slider {
  position: absolute;
  inset: 0;
  background: rgba(15,15,15,0.20);
  border-radius: var(--vs-radius-full);
  cursor: pointer;
  transition: background var(--vs-transition-base);
}
.vs-cookie-toggle-slider::before {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  background: var(--vs-white);
  border-radius: 50%;
  top: 3px;
  left: 3px;
  transition: transform var(--vs-transition-base);
  box-shadow: var(--vs-shadow-sm);
}
.vs-cookie-toggle input:checked + .vs-cookie-toggle-slider { background: var(--vs-accent); }
.vs-cookie-toggle input:checked + .vs-cookie-toggle-slider::before { transform: translateX(18px); }
.vs-cookie-toggle input:disabled + .vs-cookie-toggle-slider { opacity: 0.5; cursor: not-allowed; }

.vs-cookie-btn--save {
  margin-top: 12px;
  width: 100%;
  padding: 10px 16px;
  background: var(--vs-accent);
  color: var(--vs-white);
  border-radius: var(--vs-radius-sm);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  border: none;
  transition: all var(--vs-transition-base);
}
.vs-cookie-btn--save:hover { background: var(--vs-accent-dark); }