/* ==============================================
   VARLAKOV.PRO -- Shared Styles v5.0
   Kajo-inspired: Bold uppercase, pure B&W, Outfit
   1140px container, aggressive type scale
   ============================================== */

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

/* --- TOKENS --- */
:root {
  --vk-black:      #111111;
  --vk-white:      #ffffff;
  --vk-bg:         #ffffff;
  --vk-text:       #111111;
  --vk-text-mid:   #444444;
  --vk-text-muted: #777777;
  --vk-text-dim:   #999999;
  --vk-text-ghost: #e0e0e0;
  --vk-border:     #e0e0e0;
  --vk-dark-bg:    #111111;
  --vk-dark-card:  #1a1a1a;
  --vk-dark-border:rgba(255,255,255,0.08);
  --vk-dark-input: #0a0a0a;
  --vk-font:       'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --vk-container:  1140px;
  --vk-container-wide: 1400px;
  --vk-text-max:   720px;
}

/* --- BASE RESET --- */
*, *::before, *::after { box-sizing: border-box; }
body {
  margin: 0;
  padding: 0;
  font-family: var(--vk-font);
  font-weight: 400;
  font-size: 1.1875rem;
  line-height: 1.7;
  color: var(--vk-text);
  background: var(--vk-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
p { margin: 0 0 1.25rem; }
p:last-child { margin-bottom: 0; }
a { color: var(--vk-text); text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

/* Fix iPhone Safari/Chrome white bands:
   Astra site background is set to black in admin.
   Hardcoded #111 (not var()) so html/body resolve
   even before custom properties are parsed.
   iOS Safari uses html bg for top overscroll,
   body bg for bottom overscroll. */
html,
body {
  background: #111111 !important;
}
main[role="main"],
.vk-home {
  background: #ffffff;
}
.vk-hero,
.vk-sec,
.vk-cs__hero,
.vk-contact__hero {
  background: #ffffff;
}

/* --- LAYOUT --- */
.vk-container {
  max-width: var(--vk-container);
  margin: 0 auto;
  padding: 0 2rem;
}
.vk-container-wide {
  max-width: var(--vk-container-wide);
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 4vw, 3rem);
}
.vk-text-col { max-width: var(--vk-text-max); }

/* --- DARK BAND (full-bleed dark sections) --- */
.vk-dark-band {
  background: var(--vk-dark-bg);
  color: #e0e0e0;
  /* no max-width -- full viewport */
}
.vk-dark-band .vk-h2 { color: var(--vk-white); }
.vk-dark-band .vk-anno { color: #333; }
.vk-dark-band .vk-sec__head {
  border-bottom-color: rgba(255,255,255,0.08);
}
.vk-dark-band a { color: var(--vk-white); }
.vk-dark-band p { color: #999; }
.vk-dark-band + .vk-sec { border-top: none; }

/* ==============================================
   HEADER
   ============================================== */
.vk-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--vk-black);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.vk-header--scrolled {
  box-shadow: 0 2px 16px rgba(0,0,0,0.3);
}
.vk-header__inner {
  max-width: var(--vk-container-wide);
  margin: 0 auto;
  padding: 1rem clamp(1.5rem, 4vw, 3rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.vk-header__brand {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.vk-header__logo {
  font-family: var(--vk-font);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--vk-white);
  text-decoration: none;
  line-height: 1.1;
  transition: color 0.2s ease;
}
.vk-header__logo:hover { color: #777; }
.vk-header__tagline {
  font-size: 0.6875rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #777;
  line-height: 1.3;
}
.vk-header__nav {
  display: flex;
  gap: 2.5rem;
}
.vk-header__nav a {
  font-size: 0.8125rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: #999;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.2s ease;
}
.vk-header__nav a:hover,
.vk-header__nav a.is-active { color: var(--vk-white); }
.vk-header__nav a {
  position: relative;
}
.vk-header__nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 1px;
  background: var(--vk-white);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.vk-header__nav a:hover::after,
.vk-header__nav a.is-active::after {
  transform: scaleX(1);
}

/* Burger */
.vk-header__burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 32px;
  height: 28px;
  position: relative;
  padding: 0;
  -webkit-tap-highlight-color: transparent !important;
  -webkit-touch-callout: none !important;
  outline: none !important;
}
.vk-header__burger:focus,
.vk-header__burger:active,
.vk-header__burger:focus-visible {
  outline: none !important;
  box-shadow: none !important;
  -webkit-tap-highlight-color: transparent !important;
}
.vk-header__burger span {
  display: block;
  width: 32px;
  height: 2px;
  background: var(--vk-white);
  position: absolute;
  left: 0;
  transition: all 0.3s ease;
}
.vk-header__burger span:first-child { top: 6px; }
.vk-header__burger span:last-child { bottom: 6px; }
.vk-header--open .vk-header__burger span:first-child {
  top: 13px; transform: rotate(45deg);
}
.vk-header--open .vk-header__burger span:last-child {
  bottom: 13px; transform: rotate(-45deg);
}

@media (max-width: 767px) {
  .vk-header__nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    background: var(--vk-black);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    z-index: 999;
    padding: 2rem;
  }
  .vk-header--open .vk-header__nav { display: flex; }
  .vk-header__nav a {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--vk-white);
  }
  .vk-header__nav a:hover,
  .vk-header__nav a.is-active {
    color: var(--vk-white);
  }
  .vk-header__burger { display: block; }
  .vk-header--open .vk-header__burger {
    position: fixed;
    top: 1rem;
    right: 2rem;
    z-index: 1001;
  }
}

/* ==============================================
   SHARED TYPOGRAPHY
   ============================================== */
.vk-h2 {
  font-family: var(--vk-font);
  font-weight: 700;
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--vk-black);
  line-height: 1.1;
  margin: 0;
}
.vk-h3 {
  font-family: var(--vk-font);
  font-weight: 700;
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--vk-black);
  line-height: 1.2;
  margin: 0 0 0.75rem;
}
.vk-anno {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--vk-text-ghost);
  font-style: normal;
}
.vk-sec__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  border-bottom: 1px solid var(--vk-border);
  padding-bottom: 1rem;
  margin-bottom: 3rem;
}
.vk-sec {
  padding: 6rem 0;
  border-top: 1px solid var(--vk-border);
}
.vk-sec:first-of-type { border-top: none; }
.vk-reframe + .vk-sec { border-top: none; }

/* --- BUTTONS --- */
.vk-btn {
  display: inline-block;
  font-family: var(--vk-font);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 1rem 2.25rem;
  transition: all 0.25s ease;
  cursor: pointer;
  border: none;
}
.vk-btn--dark {
  background: var(--vk-black);
  color: var(--vk-white);
}
.vk-btn--dark:hover {
  background: var(--vk-white);
  color: var(--vk-black);
}
.vk-btn--outline {
  border: 1px solid var(--vk-black);
  background: transparent;
  color: var(--vk-black);
}
.vk-btn--outline:hover { background: var(--vk-black); color: var(--vk-white); }
.vk-btn--white { background: var(--vk-white); color: var(--vk-black); }
.vk-btn--white:hover { background: #e0e0e0; color: var(--vk-black); }
.vk-btn--ghost {
  border: 1px solid rgba(255,255,255,0.2);
  background: transparent;
  color: #ccc;
}
.vk-btn--ghost:hover { border-color: rgba(255,255,255,0.5); color: var(--vk-white); }
.vk-btn--full { width: 100%; text-align: center; }

/* ==============================================
   HOMEPAGE -- HERO (full-width, text-only)
   ============================================== */
.vk-hero {
  padding: 8rem 0 5rem;
}
.vk-hero__h1 {
  font-family: var(--vk-font);
  font-weight: 700;
  font-size: clamp(3rem, 7vw, 5.5rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.08;
  color: var(--vk-black);
  margin: 0 0 1.5rem;
}
.vk-hero__h1-dim { color: var(--vk-text-ghost); }
.vk-hero__sub {
  font-size: 1.1875rem;
  font-weight: 400;
  color: var(--vk-text-mid);
  line-height: 1.65;
  margin: 0 0 2rem;
  max-width: 600px;
}
.vk-hero__btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

@media (max-width: 767px) {
  .vk-hero { padding: 5rem 0 3rem; }
  .vk-hero__h1 { font-size: clamp(2rem, 8vw, 2.75rem); }
  .vk-hero__btns { flex-direction: column; }
  .vk-hero__btns .vk-btn { text-align: center; }
}

/* ==============================================
   HOMEPAGE -- PROBLEMS
   ============================================== */
.vk-items { display: flex; flex-direction: column; gap: 2.5rem; }
.vk-item {
  display: grid;
  grid-template-columns: 3.5rem 1fr;
  gap: 1rem;
  align-items: start;
}
.vk-item__num {
  font-family: var(--vk-font);
  font-size: 3rem;
  font-weight: 700;
  color: var(--vk-text-ghost);
  line-height: 1;
  padding-top: 0.1rem;
}
.vk-item p {
  font-size: 1.125rem;
  color: var(--vk-text-mid);
  line-height: 1.7;
}

/* ==============================================
   HOMEPAGE -- REFRAME (full-bleed dark band)
   ============================================== */
.vk-reframe {
  padding: 8rem 0 9rem;
  border-top: none;
  background: var(--vk-dark-bg);
  color: #e0e0e0;
}
.vk-reframe__lead {
  font-size: 1.0625rem;
  font-weight: 400;
  color: #666;
  font-style: italic;
  margin-bottom: 1.75rem;
}
.vk-reframe__body p {
  font-size: 1.125rem;
  color: #999;
  line-height: 1.7;
  max-width: var(--vk-text-max);
}
.vk-reframe__key {
  font-family: var(--vk-font);
  font-weight: 700;
  font-size: clamp(2rem, 5vw, 3.5rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.15;
  color: var(--vk-white);
  margin: 3rem 0;
}
.vk-reframe__challenge {
  margin-top: 1.5rem;
}
.vk-reframe__challenge p {
  color: #777;
  font-style: italic;
}
.vk-reframe__divider {
  width: 60px;
  height: 2px;
  background: rgba(255,255,255,0.2);
  margin: 3rem 0;
}
.vk-reframe__guide p {
  font-size: 1.1875rem;
  color: #ccc;
  line-height: 1.7;
  font-weight: 400;
  max-width: var(--vk-text-max);
}

/* ==============================================
   HOMEPAGE -- PLAN
   ============================================== */
.vk-plan { display: flex; flex-direction: column; gap: 3rem; }
.vk-plan__step {
  display: grid;
  grid-template-columns: 3.5rem 1fr;
  gap: 1rem;
  align-items: start;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--vk-border);
}
.vk-plan__step:last-child { border-bottom: none; padding-bottom: 0; }
.vk-plan__step h3 {
  font-family: var(--vk-font);
  font-weight: 700;
  font-size: 1.125rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 0 0 0.5rem;
  color: var(--vk-black);
}
.vk-plan__step p {
  font-size: 1.125rem;
  color: var(--vk-text-mid);
  max-width: 600px;
}

/* ==============================================
   HOMEPAGE -- CASE STUDY PREVIEW
   ============================================== */
.vk-case__title {
  font-family: var(--vk-font);
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--vk-black);
  margin: 0 0 0.5rem;
}
.vk-case__desc {
  font-size: 1.0625rem;
  color: var(--vk-text-muted);
  font-weight: 400;
  margin: 0 0 1rem;
}
.vk-case__body {
  font-size: 1.125rem;
  color: var(--vk-text-mid);
  margin: 0 0 2rem;
  max-width: var(--vk-text-max);
}
.vk-case__link {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--vk-black);
  text-decoration: none;
  border-bottom: 1px solid var(--vk-border);
  padding-bottom: 2px;
  transition: border-color 0.25s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}
.vk-case__link:hover { border-color: var(--vk-black); }
.vk-case__link .vk-arrow {
  display: inline-block;
  transition: transform 0.25s ease;
}
.vk-case__link:hover .vk-arrow {
  transform: translateX(4px);
}

/* ==============================================
   HOMEPAGE -- DIFFERENTIATION
   ============================================== */
.vk-diff { display: flex; flex-direction: column; gap: 1rem; }
.vk-diff__row { display: grid; grid-template-columns: 1fr 1fr; gap: 3px; }
.vk-diff__them {
  background: #f7f7f7;
  padding: 1.5rem 1.75rem;
}
.vk-diff__me {
  background: var(--vk-black);
  padding: 1.5rem 1.75rem;
  color: var(--vk-white);
}
.vk-diff__tag {
  display: block;
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--vk-text-dim);
  margin-bottom: 0.5rem;
}
.vk-diff__me .vk-diff__tag { color: #ccc; }
.vk-diff__them p,
.vk-diff__me p {
  margin: 0;
  font-size: 1.125rem;
  line-height: 1.6;
  font-weight: 400;
}
.vk-diff__me p { color: #e0e0e0; font-weight: 400; }

@media (max-width: 599px) {
  .vk-diff__row { grid-template-columns: 1fr; }
}

/* ==============================================
   CTA + FORM -- Dark Section (home + subpages)
   ============================================== */
.vk-cta {
  padding: 8rem 0;
  background: var(--vk-dark-bg);
  color: #e0e0e0;
}
.vk-cta .vk-h2 { color: var(--vk-white); }
.vk-cta .vk-sec__head {
  border-bottom-color: rgba(255,255,255,0.08);
}
.vk-cta .vk-anno { color: #333; }
.vk-cta__desc {
  max-width: 680px;
  margin: 0 0 1rem;
  font-size: 1.125rem;
  color: #999;
  font-weight: 400;
}
.vk-cta__rev {
  max-width: 680px;
  margin: 0 0 3rem;
  font-size: 1rem;
  color: #666;
  font-style: italic;
  font-weight: 400;
}
.vk-cta__form {
  max-width: 520px;
  margin: 0;
  background: var(--vk-dark-card);
  border: 1px solid var(--vk-dark-border);
  padding: 2.5rem 2rem;
}

/* Forminator overrides -- dark form */
.vk-cta__form .forminator-custom-form .forminator-label {
  font-family: var(--vk-font) !important;
  font-weight: 500 !important;
  font-size: 0.8125rem !important;
  letter-spacing: 0.06em !important;
  text-transform: uppercase !important;
  color: #999 !important;
}
.vk-cta__form .forminator-custom-form .forminator-field--helper,
.vk-cta__form .forminator-custom-form .forminator-description {
  color: #666 !important;
  font-family: var(--vk-font) !important;
  font-size: 0.8125rem !important;
}
.vk-cta__form .forminator-custom-form .forminator-input,
.vk-cta__form .forminator-custom-form .forminator-textarea {
  font-family: var(--vk-font) !important;
  font-size: 1.0625rem !important;
  font-weight: 400 !important;
  border: 1px solid rgba(255,255,255,0.1) !important;
  border-radius: 0 !important;
  padding: 0.875rem 1rem !important;
  background: var(--vk-dark-input) !important;
  color: var(--vk-white) !important;
  transition: border-color 0.2s ease !important;
}
.vk-cta__form .forminator-custom-form .forminator-input:focus,
.vk-cta__form .forminator-custom-form .forminator-textarea:focus {
  border-color: rgba(255,255,255,0.3) !important;
  outline: none !important;
  box-shadow: none !important;
}
.vk-cta__form .forminator-custom-form .forminator-input::placeholder,
.vk-cta__form .forminator-custom-form .forminator-textarea::placeholder {
  color: #444 !important;
}
.vk-cta__form .forminator-custom-form .forminator-button-submit {
  font-family: var(--vk-font) !important;
  font-size: 0.8125rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  background: var(--vk-white) !important;
  color: var(--vk-black) !important;
  border: none !important;
  border-radius: 0 !important;
  padding: 1rem 2.25rem !important;
  width: 100% !important;
  cursor: pointer !important;
  transition: background 0.2s ease !important;
}
.vk-cta__form .forminator-custom-form .forminator-button-submit:hover {
  background: #e0e0e0 !important;
}
.vk-cta__form .forminator-custom-form .forminator-row { margin-bottom: 1.25rem !important; }
.vk-cta__form .forminator-custom-form .forminator-response-message {
  font-family: var(--vk-font) !important;
  color: #e0e0e0 !important;
}
/* Forminator honeypot */
.vk-cta__form .forminator-custom-form .forminator-is_hidden { display: none !important; }
/* hCaptcha spacing */
.vk-cta__form .h-captcha { margin-top: 0.75rem; }
/* Character counter */
.vk-cta__form .forminator-custom-form .forminator-field--helper {
  text-align: right !important;
}

/* ==============================================
   FOOTER -- Redesigned as final design moment
   ============================================== */
.vk-footer {
  background: var(--vk-dark-bg);
  padding: 6rem 0 3rem;
}
.vk-footer__inner {
  max-width: var(--vk-container-wide);
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 4vw, 3rem);
}
.vk-footer__brand {
  font-family: var(--vk-font);
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--vk-white);
  line-height: 1.1;
  margin-bottom: 2rem;
}
.vk-footer__cta {
  margin-bottom: 3rem;
}
.vk-footer__cta a {
  font-size: 1.125rem;
  font-weight: 400;
  color: #999;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.15);
  transition: color 0.25s ease, border-color 0.25s ease;
}
.vk-footer__cta a:hover {
  color: var(--vk-white);
  border-color: var(--vk-white);
}
.vk-footer__contacts {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}
.vk-footer__contacts a {
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: #777;
  text-decoration: none;
  transition: color 0.25s ease;
}
.vk-footer__contacts a:hover { color: #bbb; }
.vk-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.vk-footer__copy {
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #555;
}
.vk-footer__nav {
  display: flex;
  gap: 2rem;
}
.vk-footer__nav a {
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #777;
  text-decoration: none;
  position: relative;
  transition: color 0.25s ease;
}
.vk-footer__nav a:hover { color: #bbb; }
.vk-footer__nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 1px;
  background: #bbb;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.vk-footer__nav a:hover::after {
  transform: scaleX(1);
}

@media (max-width: 599px) {
  .vk-footer { padding: 4rem 0 2rem; }
  .vk-footer__brand { font-size: 2.5rem; }
  .vk-footer__bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  .vk-footer__nav { gap: 1rem; flex-wrap: wrap; justify-content: center; }
}

/* ==============================================
   APPROACH PAGE -- PROCESS STEPS
   ============================================== */
.vk-process { display: flex; flex-direction: column; gap: 0; }
.vk-process__step {
  display: grid;
  grid-template-columns: 4rem 1fr;
  gap: 1.25rem;
  align-items: start;
  padding: 3rem 0;
  border-bottom: 1px solid var(--vk-border);
}
.vk-process__step:last-child { border-bottom: none; }
.vk-process__num {
  font-family: var(--vk-font);
  font-size: 3rem;
  font-weight: 700;
  color: var(--vk-text-ghost);
  line-height: 1;
}
.vk-process__step h3 {
  font-family: var(--vk-font);
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--vk-black);
  margin: 0 0 0.625rem;
}
.vk-process__step p {
  font-size: 1.125rem;
  color: var(--vk-text-mid);
  max-width: var(--vk-text-max);
}

/* ==============================================
   APPROACH PAGE -- PRICING
   ============================================== */
.vk-pricing { max-width: var(--vk-text-max); }
.vk-pricing p { font-size: 1.125rem; color: var(--vk-text-mid); }
.vk-pricing__highlight {
  font-family: var(--vk-font);
  font-weight: 600;
  font-size: 1.25rem;
  color: var(--vk-black);
  margin: 1.75rem 0 1rem;
}
.vk-pricing__reframe {
  font-style: italic;
  color: var(--vk-text-muted);
  margin-top: 1.5rem;
}

/* ==============================================
   APPROACH PAGE -- FILTERING
   ============================================== */
.vk-filter { max-width: var(--vk-text-max); }
.vk-filter p { font-size: 1.125rem; color: var(--vk-text-mid); }
.vk-filter a {
  color: var(--vk-black);
  font-weight: 500;
  border-bottom: 1px solid var(--vk-border);
  transition: border-color 0.2s ease;
}
.vk-filter a:hover { border-color: var(--vk-black); }

/* ==============================================
   APPROACH PAGE -- OFFERINGS (two-card layout)
   ============================================== */
.vk-offers {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
}
.vk-offer {
  padding: 2.5rem 2rem;
}
.vk-offer:first-child {
  background: #f7f7f7;
}
.vk-offer:last-child {
  background: var(--vk-black);
  color: #e0e0e0;
}
.vk-offer__price {
  font-family: var(--vk-font);
  font-weight: 700;
  font-size: 1.125rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 0 0 1.25rem;
}
.vk-offer:first-child .vk-offer__price { color: var(--vk-black); }
.vk-offer:last-child .vk-offer__price { color: var(--vk-white); }
.vk-offer p {
  font-size: 1.0625rem;
  line-height: 1.7;
  font-weight: 400;
}
.vk-offer:first-child p { color: var(--vk-text-mid); }
.vk-offer:last-child p { color: #bbb; }
.vk-offer__note {
  font-style: italic;
  margin-top: 1rem;
}
.vk-offer:first-child .vk-offer__note { color: var(--vk-text-muted); }
.vk-offer:last-child .vk-offer__note { color: #999; }

@media (max-width: 767px) {
  .vk-offers { grid-template-columns: 1fr; }
}

/* ==============================================
   APPROACH PAGE -- PHILOSOPHY
   ============================================== */
.vk-philosophy__body { max-width: var(--vk-text-max); }
.vk-philosophy__body p {
  font-size: 1.125rem;
  color: var(--vk-text-mid);
  line-height: 1.7;
}
.vk-philosophy__key {
  font-weight: 400;
  color: var(--vk-text);
  font-size: 1.1875rem;
  line-height: 1.65;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--vk-border);
}

/* ==============================================
   APPROACH PAGE -- CTA
   ============================================== */
.vk-page-cta {
  padding: 8rem 0;
  background: var(--vk-dark-bg);
  color: #e0e0e0;
}
.vk-page-cta p {
  font-size: 1.125rem;
  color: #999;
  max-width: 680px;
  margin: 0 0 2rem;
}
.vk-page-cta .vk-btn--dark {
  background: var(--vk-white);
  color: var(--vk-black);
}
.vk-page-cta .vk-btn--dark:hover {
  background: #e0e0e0;
  color: var(--vk-black);
}

/* ==============================================
   CASE STUDY PAGE
   ============================================== */
.vk-cs__hero {
  padding: 8rem 0 4rem;
}
.vk-cs__hero h1 {
  font-family: var(--vk-font);
  font-weight: 700;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.1;
  color: var(--vk-black);
  margin: 0 0 1.25rem;
}
.vk-cs__hero p {
  font-size: 1.1875rem;
  color: var(--vk-text-mid);
  max-width: var(--vk-text-max);
}
.vk-cs__list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
.vk-cs__list li {
  font-size: 1.125rem;
  color: var(--vk-text-mid);
  padding-left: 1.75rem;
  position: relative;
}
.vk-cs__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 8px;
  height: 8px;
  background: var(--vk-text-ghost);
}
.vk-cs__results {
  background: #f7f7f7;
  border: 1px solid var(--vk-border);
  padding: 2rem 2.25rem;
  margin-top: 1.5rem;
}
.vk-cs__results p {
  font-size: 1rem;
  color: var(--vk-text-muted);
  font-style: italic;
}
.vk-cs__thesis {
  font-family: var(--vk-font);
  font-weight: 700;
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  line-height: 1.35;
  color: var(--vk-black);
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 2px solid var(--vk-black);
  max-width: var(--vk-text-max);
}

/* ==============================================
   CONTACT PAGE
   ============================================== */
.vk-contact__hero {
  padding: 8rem 0 2rem;
}
.vk-contact__hero h1 {
  font-family: var(--vk-font);
  font-weight: 700;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.1;
  color: var(--vk-black);
  margin: 0 0 1rem;
}
.vk-contact__hero p {
  font-size: 1.1875rem;
  color: var(--vk-text-mid);
}
.vk-contact__form {
  max-width: 540px;
  padding: 3rem 0;
}
/* Light form overrides */
.vk-contact__form .forminator-custom-form .forminator-label {
  font-family: var(--vk-font) !important;
  font-weight: 500 !important;
  font-size: 0.8125rem !important;
  letter-spacing: 0.06em !important;
  text-transform: uppercase !important;
  color: var(--vk-text-muted) !important;
}
.vk-contact__form .forminator-custom-form .forminator-input,
.vk-contact__form .forminator-custom-form .forminator-textarea {
  font-family: var(--vk-font) !important;
  font-size: 1.0625rem !important;
  font-weight: 400 !important;
  border: 1px solid var(--vk-border) !important;
  border-radius: 0 !important;
  padding: 0.875rem 1rem !important;
  background: var(--vk-white) !important;
  color: var(--vk-text) !important;
  transition: border-color 0.2s ease !important;
}
.vk-contact__form .forminator-custom-form .forminator-input:focus,
.vk-contact__form .forminator-custom-form .forminator-textarea:focus {
  border-color: var(--vk-black) !important;
  outline: none !important;
  box-shadow: none !important;
}
.vk-contact__form .forminator-custom-form .forminator-button-submit {
  font-family: var(--vk-font) !important;
  font-size: 0.8125rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  background: var(--vk-black) !important;
  color: var(--vk-white) !important;
  border: none !important;
  border-radius: 0 !important;
  padding: 1rem 2.25rem !important;
  width: 100% !important;
  cursor: pointer !important;
  transition: background 0.2s ease !important;
}
.vk-contact__form .forminator-custom-form .forminator-button-submit:hover {
  background: #333 !important;
}
.vk-contact__form .forminator-custom-form .forminator-row { margin-bottom: 1.25rem !important; }

/* Trust signals below form */
.vk-trust {
  padding: 2.5rem 0;
  border-top: 1px solid var(--vk-border);
  max-width: 540px;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.vk-trust__block {}
.vk-trust__label {
  font-family: var(--vk-font);
  font-weight: 600;
  font-size: 0.8125rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--vk-black);
  margin-bottom: 0.5rem;
}
.vk-trust__block p {
  font-size: 1.125rem;
  color: var(--vk-text-mid);
  line-height: 1.7;
  margin: 0;
}

.vk-contact__alt {
  padding: 2.5rem 0 2rem;
  border-top: 1px solid var(--vk-border);
}
.vk-contact__alt p { font-size: 1.125rem; color: var(--vk-text-mid); }
.vk-contact__links {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.25rem 0.75rem;
  align-items: baseline;
  margin-top: 0.75rem;
}
.vk-contact__links-label {
  font-size: 1.125rem;
  color: var(--vk-text-mid);
}
.vk-contact__links a {
  font-size: 1.125rem;
  color: var(--vk-black);
  font-weight: 500;
  border-bottom: 1px solid var(--vk-border);
  transition: border-color 0.2s ease;
}
.vk-contact__links a:hover { border-color: var(--vk-black); }
.vk-contact__alt a {
  color: var(--vk-black);
  font-weight: 500;
  border-bottom: 1px solid var(--vk-border);
  transition: border-color 0.2s ease;
}
.vk-contact__alt a:hover { border-color: var(--vk-black); }

.vk-contact__phase2 {
  padding: 4rem 0;
  margin-top: 2rem;
  border-top: 1px solid var(--vk-border);
}
.vk-contact__phase2 h2 {
  font-family: var(--vk-font);
  font-weight: 700;
  font-size: 1.375rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--vk-black);
  margin: 0 0 1rem;
}
.vk-contact__phase2 p { font-size: 1rem; color: var(--vk-text-muted); }

/* ==============================================
   SCROLL TO TOP -- Restyled B&W (high specificity)
   ============================================== */
#ast-scroll-top,
body #ast-scroll-top,
.ast-scroll-top-icon,
body .ast-scroll-top-icon {
  background: var(--vk-white) !important;
  color: var(--vk-black) !important;
  border: 1px solid var(--vk-border) !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  width: 40px !important;
  height: 40px !important;
  fill: var(--vk-black) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  line-height: 1 !important;
  padding: 0 !important;
}
#ast-scroll-top svg,
body #ast-scroll-top svg {
  fill: var(--vk-black) !important;
  color: var(--vk-black) !important;
}
#ast-scroll-top:hover,
body #ast-scroll-top:hover {
  background: var(--vk-black) !important;
  color: var(--vk-white) !important;
  border-color: var(--vk-black) !important;
}
#ast-scroll-top:hover svg,
body #ast-scroll-top:hover svg {
  fill: var(--vk-white) !important;
  color: var(--vk-white) !important;
}

/* ==============================================
   ASTRA OVERRIDES
   ============================================== */
.ast-footer-overlay { display: none !important; }

/* ==============================================
   FORMINATOR FIXES -- Label gap + cursor
   ============================================== */
.forminator-custom-form .forminator-field .forminator-field--helper {
  margin-top: 0 !important;
  margin-bottom: 0.125rem !important;
  font-size: 0.75rem !important;
}
.forminator-custom-form .forminator-field .forminator-label {
  margin-bottom: 0.25rem !important;
  cursor: default !important;
  pointer-events: none !important;
}
.forminator-custom-form .forminator-row {
  margin-bottom: 1rem !important;
}

/* ==============================================
   RESPONSIVE -- MOBILE
   ============================================== */
@media (max-width: 767px) {
  body { font-size: 1.0625rem; }
  .vk-container-wide { padding: 0 1.5rem; }
  .vk-sec { padding: 4rem 0; }
  .vk-sec__head { margin-bottom: 2rem; }
  .vk-reframe { padding: 5rem 0 6rem; }
  .vk-reframe__key { font-size: 1.5rem; margin: 2rem 0; }
  .vk-cta { padding: 5rem 0; }
  .vk-cta__form { padding: 2rem 1.5rem; }
  .vk-process__step { grid-template-columns: 3rem 1fr; }
  .vk-process__num { font-size: 1.75rem; }
  .vk-diff__them, .vk-diff__me { padding: 1.25rem; }
  .vk-item { grid-template-columns: 3rem 1fr; }
  .vk-item__num { font-size: 1.5rem; }
  .vk-plan__step { grid-template-columns: 3rem 1fr; }
  .vk-page-cta { padding: 5rem 0; }
  .vk-cs__hero, .vk-contact__hero { padding: 5rem 0 2rem; }
  .vk-cs__hero h1 { font-size: clamp(1.75rem, 7vw, 2.25rem); }
  .vk-contact__hero h1 { font-size: clamp(1.75rem, 7vw, 2.25rem); }
  .vk-header__nav a { color: #999; }
  .vk-header__nav a::after { display: none; }
  .vk-header__burger { -webkit-tap-highlight-color: transparent; outline: none; }
  .vk-header__burger:focus { outline: none; }
  .vk-footer__nav { gap: 1rem; flex-wrap: wrap; justify-content: center; }
  .vk-offer { padding: 2rem 1.5rem; }
  .vk-offer__price { font-size: 1rem; }
  .vk-trust { padding: 2rem 0; }
  .vk-philosophy__key { font-size: 1.0625rem; }
  .vk-btn--full-mobile { width: 100%; text-align: center; }
}

/* ==============================================
   MOTION -- Scroll Reveals + Entry Animations
   ============================================== */
.vk-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.vk-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
/* Hero stagger: children animate with increasing delays */
.vk-hero-stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.vk-hero-stagger.is-loaded > *:nth-child(1) { opacity: 1; transform: translateY(0); transition-delay: 0ms; }
.vk-hero-stagger.is-loaded > *:nth-child(2) { opacity: 1; transform: translateY(0); transition-delay: 150ms; }
.vk-hero-stagger.is-loaded > *:nth-child(3) { opacity: 1; transform: translateY(0); transition-delay: 300ms; }
.vk-hero-stagger.is-loaded > *:nth-child(4) { opacity: 1; transform: translateY(0); transition-delay: 450ms; }

/* Section children stagger on reveal */
.vk-reveal-children > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.vk-reveal-children.is-visible > *:nth-child(1) { opacity: 1; transform: translateY(0); transition-delay: 0ms; }
.vk-reveal-children.is-visible > *:nth-child(2) { opacity: 1; transform: translateY(0); transition-delay: 100ms; }
.vk-reveal-children.is-visible > *:nth-child(3) { opacity: 1; transform: translateY(0); transition-delay: 200ms; }
.vk-reveal-children.is-visible > *:nth-child(4) { opacity: 1; transform: translateY(0); transition-delay: 300ms; }
.vk-reveal-children.is-visible > *:nth-child(5) { opacity: 1; transform: translateY(0); transition-delay: 400ms; }
.vk-reveal-children.is-visible > *:nth-child(n+6) { opacity: 1; transform: translateY(0); transition-delay: 500ms; }

/* Respect user motion preferences */
@media (prefers-reduced-motion: reduce) {
  .vk-reveal,
  .vk-hero-stagger > *,
  .vk-reveal-children > * {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}
