/* ==============================================
   VIKGLOW — CSS STYLESHEET
   Architecture: SMACSS-inspired modular
   Variables: --tone-* family
   Fonts: Cormorant Garamond + Jost
   ============================================== */

/* ============ 1. CSS VARIABLES ============ */
:root {
  /* Core palette */
  --tone-main:        #2D7A5E;
  --tone-main-dk:     #1E5941;
  --tone-main-lt:     #3D9E7A;
  --tone-support:     #BEE3D1;
  --tone-support-lt:  #EDF7F2;
  --tone-cta:         #28A06B;
  --tone-cta-hover:   #1E8558;

  /* Silver range */
  --silver-strong:    #9BAAB5;
  --silver-mid:       #C2CDD6;
  --silver-soft:      #D8E3E9;
  --silver-pale:      #EEF3F6;

  /* Neutral */
  --bg-canvas:        #F7FAF8;
  --bg-section:       #FFFFFF;
  --bg-alt:           #F2F7F5;
  --text-dk:          #1B2E24;
  --text-md:          #3D5548;
  --text-lt:          #7A9587;
  --white:            #FFFFFF;

  /* Shadows */
  --shadow-card:      0 4px 24px rgba(45, 122, 94, 0.10);
  --shadow-card-hover:0 8px 36px rgba(45, 122, 94, 0.17);
  --shadow-btn:       0 4px 18px rgba(40, 160, 107, 0.30);

  /* Borders */
  --border-color:     #D2E4DA;
  --border-card:      #E4EEE9;

  /* Radii */
  --rad-pill:         50px;
  --rad-card:         18px;
  --rad-card-sm:      12px;
  --rad-input:        10px;

  /* Type scale */
  --font-display:     'Cormorant Garamond', Georgia, serif;
  --font-body:        'Jost', system-ui, sans-serif;

  /* Spacing rhythm */
  --sp-xs: 0.5rem;
  --sp-sm: 1rem;
  --sp-md: 1.75rem;
  --sp-lg: 3rem;
  --sp-xl: 5rem;
  --sp-2xl: 8rem;

  /* Transitions */
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ============ 2. RESET & BASE ============ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--text-dk);
  background: var(--bg-canvas);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--tone-main);
  text-decoration: none;
  transition: color 0.2s var(--ease);
}

a:hover {
  color: var(--tone-cta);
  text-decoration: underline;
}

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

details summary {
  cursor: pointer;
  list-style: none;
}

details summary::-webkit-details-marker {
  display: none;
}

/* ============ 3. LAYOUT ============ */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2.5rem);
}

/* ============ 4. TYPOGRAPHY HELPERS ============ */
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--tone-main);
  background: var(--tone-support-lt);
  border: 1px solid var(--tone-support);
  padding: 0.3em 0.9em;
  border-radius: var(--rad-pill);
  margin-bottom: 1.1rem;
}

.section-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1.18;
  color: var(--text-dk);
  margin-bottom: 1.1rem;
}

.section-heading--sm {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--text-dk);
  margin-bottom: 0.9rem;
}

.section-lead {
  font-size: 1.08rem;
  color: var(--text-md);
  max-width: 620px;
  margin-bottom: var(--sp-lg);
  line-height: 1.7;
}

/* ============ 5. BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.97rem;
  text-decoration: none;
  border: 2px solid transparent;
  transition: all 0.25s var(--ease);
  line-height: 1;
  white-space: nowrap;
}

.btn--pill {
  border-radius: var(--rad-pill);
  padding: 0.78em 1.9em;
}

.btn--primary {
  background: var(--tone-cta);
  color: var(--white);
  border-color: var(--tone-cta);
  box-shadow: var(--shadow-btn);
}

.btn--primary:hover {
  background: var(--tone-cta-hover);
  border-color: var(--tone-cta-hover);
  box-shadow: 0 6px 24px rgba(40, 160, 107, 0.40);
  transform: translateY(-1px);
  color: var(--white);
  text-decoration: none;
}

.btn--outline {
  background: transparent;
  border-color: rgba(255,255,255,0.65);
  color: var(--white);
}

.btn--outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
  color: var(--white);
  text-decoration: none;
}

.btn--lg {
  font-size: 1.04rem;
  padding: 0.9em 2.3em;
}

.btn--full {
  width: 100%;
}

/* ============ 6. COOKIE BANNER ============ */
.ck-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--white);
  border-top: 2px solid var(--tone-support);
  box-shadow: 0 -4px 30px rgba(45,122,94,0.12);
  padding: 1.1rem 1.5rem;
  transform: translateY(0);
  transition: transform 0.35s var(--ease);
}

.ck-banner.is-hidden {
  transform: translateY(120%);
  pointer-events: none;
}

.ck-banner__wrap {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.ck-banner__text {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  flex: 1;
  min-width: 260px;
}

.ck-banner__text p {
  font-size: 0.87rem;
  color: var(--text-md);
  line-height: 1.55;
}

.ck-banner__text a {
  color: var(--tone-main);
  text-decoration: underline;
}

.ck-banner__btns {
  display: flex;
  gap: 0.7rem;
  flex-shrink: 0;
}

.ck-banner__btn {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  padding: 0.55em 1.3em;
  border-radius: var(--rad-pill);
  border: 2px solid;
  cursor: pointer;
  transition: all 0.2s var(--ease);
}

.ck-banner__btn--yes {
  background: var(--tone-cta);
  color: var(--white);
  border-color: var(--tone-cta);
}

.ck-banner__btn--yes:hover {
  background: var(--tone-cta-hover);
  border-color: var(--tone-cta-hover);
}

.ck-banner__btn--no {
  background: transparent;
  color: var(--text-md);
  border-color: var(--silver-mid);
}

.ck-banner__btn--no:hover {
  border-color: var(--silver-strong);
  color: var(--text-dk);
}

/* ============ 7. HEADER ============ */
.vk-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-color);
  box-shadow: 0 2px 16px rgba(45,122,94,0.07);
}

.vk-header__row {
  display: flex;
  align-items: center;
  gap: 2rem;
  height: 68px;
}

.vk-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.vk-logo text {
  font-family: var(--font-display);
}

.vk-nav {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  margin-left: auto;
}

.vk-nav__lnk {
  font-size: 0.93rem;
  font-weight: 400;
  color: var(--text-md);
  padding: 0.45em 0.9em;
  border-radius: var(--rad-card-sm);
  transition: all 0.2s var(--ease);
  text-decoration: none;
}

.vk-nav__lnk:hover {
  background: var(--tone-support-lt);
  color: var(--tone-main);
  text-decoration: none;
}

.vk-header__cta {
  margin-left: 1rem;
  flex-shrink: 0;
}

/* Burger */
.vk-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  margin-left: auto;
  background: none;
  border: none;
  cursor: pointer;
}

.vk-burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-dk);
  border-radius: 2px;
  transition: all 0.25s var(--ease);
}

.vk-burger.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.vk-burger.is-open span:nth-child(2) {
  opacity: 0;
}

.vk-burger.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile nav */
.vk-mobile-nav {
  display: none;
  flex-direction: column;
  gap: 0.2rem;
  padding: 1rem 1.5rem 1.5rem;
  border-top: 1px solid var(--border-color);
  background: var(--white);
}

.vk-mobile-nav.is-open {
  display: flex;
}

.vk-mobile-nav a {
  font-size: 1rem;
  color: var(--text-md);
  padding: 0.65em 0;
  border-bottom: 1px solid var(--border-color);
  text-decoration: none;
}

.vk-mobile-nav a:last-child {
  border-bottom: none;
  margin-top: 0.8rem;
  text-align: center;
}

/* ============ 8. HERO ============ */
.vk-hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.vk-hero__media {
  position: absolute;
  inset: 0;
}

.vk-hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.vk-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(18, 46, 32, 0.85) 0%,
    rgba(22, 58, 42, 0.72) 40%,
    rgba(30, 70, 52, 0.35) 70%,
    rgba(30, 70, 52, 0.10) 100%
  );
}

.vk-hero__content {
  position: relative;
  z-index: 2;
  padding-top: 6rem;
  padding-bottom: 5rem;
  max-width: 640px;
}

.vk-hero__pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.28);
  backdrop-filter: blur(6px);
  padding: 0.4em 1em;
  border-radius: var(--rad-pill);
  margin-bottom: 1.5rem;
  letter-spacing: 0.04em;
}

.vk-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6vw, 4.2rem);
  font-weight: 600;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 1.3rem;
}

.vk-hero__title em {
  font-style: italic;
  color: var(--tone-support);
}

.vk-hero__sub {
  font-size: 1.08rem;
  font-weight: 300;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
  margin-bottom: 2.2rem;
  max-width: 520px;
}

.vk-hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.vk-hero__trust-row {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.vk-hero__trust-item {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.84rem;
  color: rgba(255,255,255,0.82);
  font-weight: 400;
}

/* ============ 9. PROBLEM SECTION ============ */
.vk-problem {
  padding: var(--sp-2xl) 0;
  background: var(--bg-section);
}

.prob-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.prob-card {
  background: var(--bg-canvas);
  border: 1px solid var(--border-card);
  border-radius: var(--rad-card);
  padding: 2rem 1.6rem;
  transition: all 0.3s var(--ease);
}

.prob-card:hover {
  box-shadow: var(--shadow-card);
  transform: translateY(-3px);
  border-color: var(--tone-support);
}

.prob-card__icon {
  margin-bottom: 1.2rem;
}

.prob-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-dk);
  margin-bottom: 0.7rem;
}

.prob-card p {
  font-size: 0.94rem;
  color: var(--text-md);
  line-height: 1.65;
}

/* ============ 10. FOR WHOM SECTION ============ */
.vk-forwhom {
  padding: var(--sp-2xl) 0;
  background: var(--bg-alt);
}

.vk-forwhom__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.vk-forwhom__img-stack {
  position: relative;
}

.vk-forwhom__img--primary {
  width: 100%;
  border-radius: var(--rad-card);
  object-fit: cover;
  height: 420px;
  box-shadow: var(--shadow-card);
}

.vk-forwhom__img--secondary {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 52%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--rad-card);
  border: 4px solid var(--white);
  box-shadow: var(--shadow-card-hover);
}

.vk-checklist {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.vk-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.97rem;
  color: var(--text-md);
  line-height: 1.55;
}

.vk-checklist__ico {
  flex-shrink: 0;
  margin-top: 1px;
}

/* ============ 11. BENEFITS SECTION ============ */
.vk-benefits {
  padding: var(--sp-2xl) 0;
  background: var(--bg-section);
}

.vk-benefits .section-lead {
  margin-bottom: var(--sp-lg);
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
}

.benefit-card {
  border: 1px solid var(--border-card);
  border-radius: var(--rad-card);
  overflow: hidden;
  background: var(--white);
  transition: all 0.3s var(--ease);
}

.benefit-card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-4px);
}

.benefit-card__img-frame {
  height: 180px;
  overflow: hidden;
}

.benefit-card__img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s var(--ease);
}

.benefit-card:hover .benefit-card__img-frame img {
  transform: scale(1.05);
}

.benefit-card__copy {
  padding: 1.3rem;
}

.benefit-card__copy h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-dk);
  margin-bottom: 0.5rem;
}

.benefit-card__copy p {
  font-size: 0.88rem;
  color: var(--text-md);
  line-height: 1.6;
}

/* ============ 12. USAGE SECTION ============ */
.vk-usage {
  padding: var(--sp-2xl) 0;
  background: var(--bg-alt);
}

.vk-usage__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.vk-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 2rem;
}

.vk-step {
  display: flex;
  gap: 1.5rem;
  padding-bottom: 2rem;
  position: relative;
}

.vk-step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 22px;
  top: 46px;
  width: 1.5px;
  bottom: 0;
  background: linear-gradient(to bottom, var(--tone-support), transparent);
}

.vk-step__num {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--tone-support);
  color: var(--tone-main-dk);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.vk-step__body h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-dk);
  margin-bottom: 0.45rem;
  padding-top: 0.55rem;
}

.vk-step__body p {
  font-size: 0.93rem;
  color: var(--text-md);
  line-height: 1.65;
}

.vk-info-card {
  background: var(--white);
  border: 1px solid var(--border-card);
  border-radius: var(--rad-card);
  padding: 2.2rem 2rem;
  box-shadow: var(--shadow-card);
  position: sticky;
  top: 90px;
}

.vk-info-card__icon {
  margin-bottom: 1.2rem;
}

.vk-info-card h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-dk);
  margin-bottom: 0.5rem;
}

.vk-info-card p {
  font-size: 0.92rem;
  color: var(--text-md);
  line-height: 1.6;
}

.vk-info-card__divider {
  height: 1px;
  background: var(--border-card);
  margin: 1.2rem 0;
}

.vk-info-card__disclaimer {
  font-size: 0.80rem;
  color: var(--text-lt);
  font-style: italic;
  line-height: 1.55;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-card);
}

/* ============ 13. PRODUCT + ORDER SECTION ============ */
.vk-product {
  padding: var(--sp-2xl) 0;
  background: var(--bg-section);
}

.vk-product__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  margin-top: 2.5rem;
}

.vk-product__img-wrap {
  position: relative;
  border-radius: var(--rad-card);
  background: linear-gradient(145deg, var(--tone-support-lt), var(--silver-pale));
  padding: 2.5rem;
  text-align: center;
  border: 1px solid var(--border-card);
  margin-bottom: 1.5rem;
}

.vk-product__img {
  max-height: 300px;
  margin: 0 auto;
  object-fit: contain;
  filter: drop-shadow(0 8px 24px rgba(45,122,94,0.18));
}

.vk-product__badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--tone-main);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  text-align: center;
  line-height: 1.3;
  padding: 0.6em 0.9em;
  border-radius: var(--rad-card-sm);
}

.vk-product__badge small {
  font-weight: 400;
  font-size: 0.72rem;
}

.vk-product__feats {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.vk-product__feats li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.94rem;
  color: var(--text-md);
}

/* Order box */
.vk-order-box {
  background: var(--white);
  border: 2px solid var(--tone-support);
  border-radius: var(--rad-card);
  padding: 2.2rem;
  box-shadow: var(--shadow-card-hover);
  position: sticky;
  top: 90px;
}

.vk-order-box__top {
  margin-bottom: 1.8rem;
  padding-bottom: 1.4rem;
  border-bottom: 1px solid var(--border-card);
}

.vk-order-box__price-row {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-bottom: 0.6rem;
}

.vk-order-box__price {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--tone-main);
}

.vk-order-box__per {
  font-size: 0.9rem;
  color: var(--text-lt);
}

.vk-order-box__shipping {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.87rem;
  color: var(--tone-main);
  font-weight: 500;
}

/* Form styles */
.vk-form-row {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.1rem;
}

.vk-form-row label {
  font-size: 0.87rem;
  font-weight: 500;
  color: var(--text-dk);
}

.req {
  color: var(--tone-cta);
}

.vk-form-row input,
.vk-form-row select {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-dk);
  background: var(--bg-canvas);
  border: 1.5px solid var(--silver-mid);
  border-radius: var(--rad-input);
  padding: 0.75em 1em;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
  width: 100%;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

.vk-form-row select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%232D7A5E' stroke-width='1.5' stroke-linecap='round' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 2.5em;
}

.vk-form-row input:focus,
.vk-form-row select:focus {
  border-color: var(--tone-main);
  box-shadow: 0 0 0 3px rgba(45,122,94,0.12);
}

.vk-form-row input.is-error,
.vk-form-row select.is-error {
  border-color: #E05A5A;
}

.vk-form-err {
  font-size: 0.78rem;
  color: #E05A5A;
  min-height: 1rem;
}

.vk-order-box__legal-note {
  font-size: 0.78rem;
  color: var(--text-lt);
  text-align: center;
  margin: 1rem 0 0.8rem;
  line-height: 1.5;
}

.vk-order-trust {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  flex-wrap: wrap;
  padding-top: 1rem;
  border-top: 1px solid var(--border-card);
  margin-top: 0.5rem;
}

.vk-order-trust__item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.77rem;
  color: var(--text-lt);
}

/* ============ 14. REVIEWS ============ */
.vk-reviews {
  padding: var(--sp-2xl) 0;
  background: var(--bg-alt);
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.review-card {
  background: var(--white);
  border: 1px solid var(--border-card);
  border-radius: var(--rad-card);
  padding: 2rem 1.7rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all 0.3s var(--ease);
}

.review-card:hover {
  box-shadow: var(--shadow-card);
  border-color: var(--tone-support);
  transform: translateY(-2px);
}

.review-card__stars {
  font-size: 1.15rem;
  color: #F5A623;
  letter-spacing: 2px;
}

.review-card__quote {
  font-size: 0.93rem;
  color: var(--text-md);
  line-height: 1.7;
  font-style: italic;
  flex: 1;
  quotes: "\201E" "\201C";
}

.review-card__author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-card);
}

.review-card__ava {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--tone-support);
  color: var(--tone-main-dk);
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.review-card__meta {
  display: flex;
  flex-direction: column;
}

.review-card__meta strong {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-dk);
}

.review-card__meta span {
  font-size: 0.82rem;
  color: var(--text-lt);
}

/* ============ 15. TRUST SECTION ============ */
.vk-trust {
  padding: var(--sp-xl) 0;
  background: var(--tone-main);
}

.trust-strip {
  display: flex;
  gap: 0;
  align-items: stretch;
}

.trust-block {
  flex: 1;
  padding: 2rem 2.5rem;
  text-align: center;
  color: var(--white);
}

.trust-divider {
  width: 1px;
  background: rgba(255,255,255,0.2);
  align-self: stretch;
  flex-shrink: 0;
}

.trust-block__ico {
  margin-bottom: 1.2rem;
  display: flex;
  justify-content: center;
}

.trust-block__ico svg path,
.trust-block__ico svg circle,
.trust-block__ico svg rect {
  stroke: rgba(255,255,255,0.9);
}

.trust-block__ico svg [fill="#EDF7F2"] {
  fill: rgba(255,255,255,0.1);
}

.trust-block h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.6rem;
}

.trust-block p {
  font-size: 0.89rem;
  color: rgba(255,255,255,0.78);
  line-height: 1.65;
}

/* ============ 16. FAQ ============ */
.vk-faq {
  padding: var(--sp-2xl) 0;
  background: var(--bg-section);
}

.faq-accordion {
  max-width: 780px;
  margin: 2.5rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  border-bottom: 1px solid var(--border-card);
}

.faq-item:first-child {
  border-top: 1px solid var(--border-card);
}

.faq-item__q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.3rem 0.3rem;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-dk);
  transition: color 0.2s var(--ease);
  user-select: none;
}

.faq-item__q:hover {
  color: var(--tone-main);
}

.faq-item__arrow {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--tone-support-lt);
  flex-shrink: 0;
  position: relative;
  transition: all 0.3s var(--ease);
}

.faq-item__arrow::before,
.faq-item__arrow::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 1.5px;
  background: var(--tone-main);
  transform-origin: center;
}

.faq-item__arrow::before {
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq-item__arrow::after {
  transform: translate(-50%, -50%) rotate(90deg);
  transition: transform 0.3s var(--ease);
}

details[open] .faq-item__arrow {
  background: var(--tone-support);
}

details[open] .faq-item__arrow::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq-item__a {
  padding: 0 0.3rem 1.4rem;
}

.faq-item__a p {
  font-size: 0.94rem;
  color: var(--text-md);
  line-height: 1.7;
}

/* ============ 17. CONTACT SECTION ============ */
.vk-contact {
  padding: var(--sp-2xl) 0;
  background: var(--bg-alt);
}

.vk-contact__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.vk-contact__list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 1.4rem 0;
}

.vk-contact__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-size: 0.95rem;
  color: var(--text-md);
}

.vk-contact__list li svg {
  flex-shrink: 0;
  margin-top: 2px;
}

.vk-contact__cta-panel {
  background: var(--white);
  border: 1px solid var(--border-card);
  border-radius: var(--rad-card);
  padding: 2.8rem 2.5rem;
  text-align: center;
  box-shadow: var(--shadow-card);
}

.vk-contact__cta-panel h3 {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 600;
  color: var(--text-dk);
  margin-bottom: 0.8rem;
}

.vk-contact__cta-panel p {
  font-size: 0.95rem;
  color: var(--text-md);
  line-height: 1.65;
  margin-bottom: 1.8rem;
}

.vk-contact__note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-size: 0.83rem;
  color: var(--tone-main);
  margin-top: 1rem;
  margin-bottom: 0 !important;
}

/* ============ 18. FOOTER ============ */
.vk-footer {
  background: var(--text-dk);
  color: rgba(255,255,255,0.75);
}

.vk-footer__top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.2fr;
  gap: 3rem;
  padding: 4rem 0 3rem;
}

.vk-footer__brand p {
  font-size: 0.88rem;
  line-height: 1.65;
  margin-top: 1rem;
  color: rgba(255,255,255,0.6);
}

.vk-footer__disclaimer {
  margin-top: 1rem !important;
  font-size: 0.78rem !important;
  color: rgba(255,255,255,0.42) !important;
  font-style: italic;
  line-height: 1.5;
}

.vk-footer__col h4 {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 1.2rem;
}

.vk-footer__col ul {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.vk-footer__col ul li a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: color 0.2s;
}

.vk-footer__col ul li a:hover {
  color: var(--tone-support);
  text-decoration: none;
}

.vk-footer__col address {
  font-style: normal;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.vk-footer__col address p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.55;
}

.vk-footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.3rem 0;
}

.vk-footer__bottom-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.vk-footer__bottom-row p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.38);
}

/* ============ 19. LEGAL PAGES ============ */
.legal-page {
  padding: 6rem 0 5rem;
  min-height: 70vh;
}

.legal-page h1 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 600;
  color: var(--text-dk);
  margin-bottom: 0.5rem;
}

.legal-page .legal-date {
  font-size: 0.85rem;
  color: var(--text-lt);
  margin-bottom: 3rem;
}

.legal-page h2 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--text-dk);
  margin: 2.2rem 0 0.7rem;
}

.legal-page p,
.legal-page li {
  font-size: 0.95rem;
  color: var(--text-md);
  line-height: 1.75;
  margin-bottom: 0.8rem;
}

.legal-page ul,
.legal-page ol {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.legal-page ul li {
  list-style: disc;
}

.legal-page ol li {
  list-style: decimal;
}

.legal-page a {
  color: var(--tone-main);
  text-decoration: underline;
}

/* ============ 20. SUCCESS PAGE ============ */
.success-wrap {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 1.5rem;
}

.success-card {
  background: var(--white);
  border: 1px solid var(--border-card);
  border-radius: var(--rad-card);
  padding: 3.5rem 3rem;
  text-align: center;
  max-width: 540px;
  box-shadow: var(--shadow-card-hover);
}

.success-card__icon {
  width: 72px;
  height: 72px;
  background: var(--tone-support);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.success-card h1 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--text-dk);
  margin-bottom: 0.8rem;
}

.success-card p {
  font-size: 1rem;
  color: var(--text-md);
  line-height: 1.65;
  margin-bottom: 0.6rem;
}

/* ============ 21. RESPONSIVE ============ */
@media (max-width: 1024px) {
  .benefit-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .vk-footer__top {
    grid-template-columns: 1fr 1fr;
  }

  .vk-footer__brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 900px) {
  .vk-nav,
  .vk-header__cta {
    display: none;
  }

  .vk-burger {
    display: flex;
  }

  .trust-strip {
    flex-direction: column;
  }

  .trust-divider {
    width: 100%;
    height: 1px;
  }

  .trust-block {
    padding: 2rem;
  }

  .vk-forwhom__inner,
  .vk-usage__inner,
  .vk-product__inner,
  .vk-contact__inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .vk-forwhom__img-stack {
    margin-bottom: 2.5rem;
  }

  .vk-forwhom__img--secondary {
    right: 0;
    bottom: -20px;
    width: 44%;
    height: 160px;
  }

  .review-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 680px) {
  :root {
    --sp-2xl: 5rem;
    --sp-xl: 3.5rem;
  }

  .prob-grid {
    grid-template-columns: 1fr;
  }

  .benefit-grid {
    grid-template-columns: 1fr;
  }

  .review-grid {
    grid-template-columns: 1fr;
  }

  .vk-hero {
    min-height: 100svh;
  }

  .vk-hero__actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .vk-hero__trust-row {
    flex-direction: column;
    gap: 0.8rem;
  }

  .vk-order-box {
    position: static;
  }

  .vk-info-card {
    position: static;
  }

  .vk-footer__top {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .vk-footer__brand {
    grid-column: auto;
  }

  .vk-footer__bottom-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .vk-contact__cta-panel {
    padding: 2rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .ck-banner__wrap {
    flex-direction: column;
    align-items: flex-start;
  }

  .ck-banner__btns {
    width: 100%;
    flex-direction: column;
  }

  .ck-banner__btn {
    text-align: center;
    padding: 0.65em;
  }

  .vk-hero__content {
    padding-top: 5rem;
    padding-bottom: 3rem;
  }
}

/* ============ 22. ANIMATION ============ */
@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.anim-fade-up {
  animation: fade-up 0.55s var(--ease) both;
}

.anim-delay-1 { animation-delay: 0.1s; }
.anim-delay-2 { animation-delay: 0.22s; }
.anim-delay-3 { animation-delay: 0.34s; }
.anim-delay-4 { animation-delay: 0.46s; }
