:root {
  --vsb-color-dark: #121212;
  --vsb-color-surface: #1b1b1b;
  --vsb-color-light: #f3f2ef;
  --vsb-color-white: #ffffff;
  --vsb-color-text: #404040;
  --vsb-color-muted: #77736f;
  --vsb-color-border: #d8d6d5;
  --vsb-color-accent: #96633d;
  --vsb-color-accent-hover: #7b4e2e;
  --vsb-font-display: "Inter", "Helvetica Neue", Arial, sans-serif;
  --vsb-font-body: "Inter", "Helvetica Neue", Arial, sans-serif;
  --vsb-font-accent: "Instrument Serif", Georgia, serif;
  --vsb-content-width: 1216px;
  --vsb-transition: 280ms cubic-bezier(.22,.61,.36,1);
}

.vsb-section,
.vsb-section * {
  box-sizing: border-box;
}

.vsb-section {
  width: 100%;
  position: relative;
  overflow: clip;
  font-family: var(--vsb-font-body);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

.vsb-theme-light {
  color: var(--vsb-color-dark);
  background: var(--vsb-color-light);
}

.vsb-theme-dark {
  color: var(--vsb-color-white);
  background: var(--vsb-color-dark);
}

.vsb-theme-accent {
  color: var(--vsb-color-white);
  background: var(--vsb-color-accent);
}

.vsb-space-compact { padding-block: clamp(64px, 8vw, 96px); }
.vsb-space-standard { padding-block: clamp(88px, 10vw, 128px); }
.vsb-space-spacious { padding-block: clamp(120px, 14vw, 184px); }
.vsb-space-screen { min-height: min(960px, 100svh); padding-block: clamp(104px, 12vw, 160px); display: flex; align-items: center; }

.vsb-inner {
  width: 100%;
  max-width: calc(var(--vsb-content-width) + 128px);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 64px);
}

.vsb-eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  margin: 0 0 clamp(32px, 4vw, 48px);
  color: var(--vsb-color-muted);
  font-size: 12px;
  line-height: 1;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.vsb-eyebrow__num { color: var(--vsb-color-accent); font-weight: 700; }
.vsb-eyebrow__label { white-space: nowrap; }
.vsb-eyebrow > i { display: block; flex: 1; height: 1px; background: currentColor; opacity: .22; }
.vsb-theme-accent .vsb-eyebrow,
.vsb-theme-dark .vsb-eyebrow { color: rgba(255,255,255,.52); }
.vsb-theme-accent .vsb-eyebrow__num,
.vsb-theme-dark .vsb-eyebrow__num { color: #be865b; }

.vsb-display,
.vsb-h2,
.vsb-section h3 {
  margin: 0;
  font-family: var(--vsb-font-display);
  font-weight: 400;
  letter-spacing: -.045em;
}

.vsb-display {
  max-width: 980px;
  font-size: clamp(54px, 7.2vw, 104px);
  line-height: .96;
}

.vsb-h2 {
  max-width: 980px;
  font-size: clamp(42px, 4.5vw, 68px);
  line-height: 1.06;
}

.vsb-lead,
.vsb-copy {
  color: inherit;
  font-size: clamp(16px, 1.25vw, 19px);
  line-height: 1.65;
  letter-spacing: -.005em;
}

.vsb-lead { max-width: 760px; }
.vsb-lead p,
.vsb-copy p { margin: 0 0 1em; }
.vsb-lead p:last-child,
.vsb-copy p:last-child { margin-bottom: 0; }
.vsb-theme-dark .vsb-lead,
.vsb-theme-dark .vsb-copy { color: rgba(255,255,255,.62); }

.vsb-section-head {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, .65fr);
  gap: clamp(40px, 7vw, 104px);
  align-items: end;
  margin-bottom: clamp(64px, 8vw, 104px);
}

.vsb-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: clamp(32px, 5vw, 56px);
}

.vsb-btn {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 15px 24px;
  border: 1px solid currentColor;
  border-radius: 0;
  text-decoration: none !important;
  font-size: 14px;
  line-height: 1;
  font-weight: 500;
  letter-spacing: .01em;
  transition: color var(--vsb-transition), background var(--vsb-transition), border-color var(--vsb-transition), transform var(--vsb-transition);
}

.vsb-btn:hover { transform: translateY(-2px); }
.vsb-theme-light .vsb-btn--primary { color: var(--vsb-color-white); background: var(--vsb-color-dark); border-color: var(--vsb-color-dark); }
.vsb-theme-light .vsb-btn--primary:hover { background: var(--vsb-color-accent); border-color: var(--vsb-color-accent); }
.vsb-theme-light .vsb-btn--secondary { color: var(--vsb-color-dark); background: transparent; }
.vsb-theme-light .vsb-btn--secondary:hover { color: var(--vsb-color-white); background: var(--vsb-color-dark); }
.vsb-theme-dark .vsb-btn--primary,
.vsb-theme-accent .vsb-btn--primary { color: var(--vsb-color-dark); background: var(--vsb-color-white); border-color: var(--vsb-color-white); }
.vsb-theme-dark .vsb-btn--primary:hover,
.vsb-theme-accent .vsb-btn--primary:hover { color: var(--vsb-color-white); background: var(--vsb-color-accent); border-color: var(--vsb-color-accent); }
.vsb-theme-dark .vsb-btn--secondary,
.vsb-theme-accent .vsb-btn--secondary { color: var(--vsb-color-white); background: transparent; }
.vsb-theme-dark .vsb-btn--secondary:hover,
.vsb-theme-accent .vsb-btn--secondary:hover { color: var(--vsb-color-dark); background: var(--vsb-color-white); }

/* Hero */
.vsb-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, .9fr);
  gap: clamp(48px, 7vw, 112px);
  align-items: center;
}
.vsb-hero__content { position: relative; z-index: 2; }
.vsb-hero__content .vsb-lead { margin-top: clamp(32px, 4vw, 48px); }
.vsb-hero__visual { min-height: clamp(430px, 50vw, 720px); position: relative; }
.vsb-hero__image,
.vsb-spline { display: block; width: 100%; height: 100%; min-height: inherit; object-fit: cover; }
.vsb-orbit { position: absolute; inset: 4% 0; border: 1px solid var(--vsb-color-border); border-radius: 50%; transform: rotate(-13deg); }
.vsb-orbit::before,
.vsb-orbit::after { content: ""; position: absolute; inset: 12%; border: 1px solid var(--vsb-color-border); border-radius: 50%; }
.vsb-orbit::after { inset: 28%; }
.vsb-orbit span { position: absolute; width: 18px; height: 18px; border-radius: 50%; background: var(--vsb-color-accent); box-shadow: 0 0 44px rgba(150,99,61,.5); }
.vsb-orbit span:nth-child(1) { top: 8%; left: 52%; }
.vsb-orbit span:nth-child(2) { bottom: 18%; left: 9%; width: 11px; height: 11px; }
.vsb-orbit span:nth-child(3) { right: 12%; top: 58%; width: 26px; height: 26px; }
.vsb-orbit i { position: absolute; width: 38%; aspect-ratio: 1; border-radius: 50%; background: radial-gradient(circle at 35% 30%, #fff, #d8d6d5 18%, #96633d 62%, #121212 100%); left: 31%; top: 31%; box-shadow: 0 38px 90px rgba(18,18,18,.3); }

/* About */
.vsb-about__grid { display: grid; grid-template-columns: 180px minmax(0, 1fr); gap: clamp(40px, 6vw, 96px); align-items: start; width: 100%; }
.vsb-about__grid > .vsb-eyebrow { margin: 8px 0 0; }
.vsb-about__content { max-width: 1080px; }
.vsb-about__copy { max-width: 760px; margin-top: clamp(40px, 5vw, 64px); }
.vsb-theme-dark.vsb-about .vsb-h2,
.vsb-theme-dark.vsb-about .vsb-about__copy { color: #d9d9d9; }
.vsb-theme-dark.vsb-about .vsb-eyebrow { color: #b8b1a9; }
.vsb-about--split .vsb-about__content { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(300px, .65fr); gap: clamp(48px, 8vw, 120px); max-width: none; }
.vsb-about--split .vsb-about__copy { margin-top: 0; align-self: end; }

/* Facts */
.vsb-facts__grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); border-top: 1px solid var(--vsb-color-border); }
.vsb-fact {
  min-width: 0;
  min-height: 300px;
  padding: clamp(28px, 3vw, 44px) clamp(22px, 2.5vw, 36px);
  border-right: 1px solid var(--vsb-color-border);
  overflow: hidden;
}
.vsb-fact:last-child { border-right: 0; }
.vsb-fact__number { font-family: var(--vsb-font-display); font-size: clamp(52px, 5vw, 82px); font-weight: 600; line-height: 1; letter-spacing: -.04em; }
.vsb-fact__label {
  max-width: 100%;
  margin-top: 72px !important;
  font-size: clamp(20px, 1.65vw, 27px);
  line-height: 1.08;
  letter-spacing: -.035em;
  overflow-wrap: anywhere;
  word-break: normal;
  hyphens: auto;
}
.vsb-fact p { color: var(--vsb-color-muted); }

/* Expertise */
.vsb-expertise__list { border-top: 1px solid rgba(255,255,255,.22); }
.vsb-expertise__item { display: grid; grid-template-columns: 76px minmax(0,1fr) 56px; gap: 24px; align-items: center; padding: clamp(30px, 4vw, 54px) 0; color: inherit !important; text-decoration: none !important; border-bottom: 1px solid rgba(255,255,255,.22); transition: padding var(--vsb-transition), color var(--vsb-transition); }
.vsb-expertise__item:hover { padding-left: 18px; color: var(--vsb-color-accent) !important; }
.vsb-expertise__number { font-size: 13px; color: #b8b1a9; }
.vsb-expertise__text h3 { font-size: clamp(28px, 3.6vw, 58px); line-height: 1; }
.vsb-expertise__text p { max-width: 720px; margin: 16px 0 0; color: rgba(255,255,255,.66); font-size: 17px; line-height: 1.55; }
.vsb-expertise__arrow { font-size: 28px; justify-self: end; }

/* Cases */
.vsb-cases__grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: clamp(28px, 4vw, 56px); }
.vsb-case__link { display: block; height: 100%; color: inherit !important; text-decoration: none !important; }
.vsb-case__media { aspect-ratio: 16 / 11; overflow: hidden; background: #dedbd7; }
.vsb-case__image { width: 100%; height: 100%; object-fit: cover; filter: saturate(.75); transition: transform 650ms cubic-bezier(.22,.61,.36,1), filter var(--vsb-transition); }
.vsb-case__link:hover .vsb-case__image { transform: scale(1.035); filter: saturate(1); }
.vsb-case__content { padding-top: 24px; }
.vsb-case__category { font-size: 12px; letter-spacing: .08em; color: var(--vsb-color-accent); }
.vsb-case h3 { margin-top: 18px; font-size: clamp(30px, 3vw, 48px); line-height: 1; }
.vsb-case p { max-width: 620px; margin: 18px 0; color: var(--vsb-color-muted); font-size: 17px; line-height: 1.55; }
.vsb-case__result { display: flex; justify-content: space-between; gap: 24px; padding-top: 20px; border-top: 1px solid var(--vsb-color-border); font-size: 14px; }
.vsb-case__result span { color: var(--vsb-color-muted); }

/* AI */
.vsb-ai__grid { display: grid; grid-template-columns: minmax(0,1.25fr) minmax(300px,.75fr); gap: clamp(56px, 8vw, 130px); align-items: center; }
.vsb-ai__visual { position: relative; min-width: 0; }
.vsb-ai__visual--abstract { aspect-ratio: 1; border: 1px solid rgba(255,255,255,.22); border-radius: 50%; }
.vsb-ai__visual--abstract::before,
.vsb-ai__visual--abstract::after { content: ""; position: absolute; inset: 15%; border: 1px solid rgba(255,255,255,.17); border-radius: 50%; }
.vsb-ai__visual--abstract::after { inset: 34%; background: radial-gradient(circle at 30% 25%, #fff 0, #d8d6d5 13%, #96633d 52%, #121212 100%); box-shadow: 0 0 85px rgba(150,99,61,.38); }
.vsb-ai__visual--abstract span { position: absolute; width: 10px; height: 10px; background: var(--vsb-color-accent); border-radius: 50%; }
.vsb-ai__visual--abstract span:nth-child(1) { left: 10%; top: 38%; }
.vsb-ai__visual--abstract span:nth-child(2) { right: 18%; top: 12%; }
.vsb-ai__visual--abstract span:nth-child(3) { right: 5%; bottom: 26%; }
.vsb-ai__visual--spline { width: 100%; min-height: 560px; height: 560px; align-self: start; overflow: visible; }
.vsb-ai__spline { display: block; width: 100%; height: 100%; min-height: inherit; background: transparent; }
.vsb-ai__features { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); margin-top: clamp(72px, 10vw, 140px); border-top: 1px solid rgba(255,255,255,.22); }
.vsb-ai__features article { padding: 28px 28px 50px 0; border-right: 1px solid rgba(255,255,255,.22); }
.vsb-ai__features article + article { padding-left: 28px; }
.vsb-ai__features article:last-child { border-right: 0; }
.vsb-ai__features span { color: #b8b1a9; font-size: 12px; }
.vsb-ai__features h3 { margin-top: 60px; font-size: 28px; }
.vsb-ai__features p { color: rgba(255,255,255,.66); line-height: 1.55; }

/* Projects */
.vsb-projects__grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 24px; }
.vsb-project a { display: block; color: inherit !important; text-decoration: none !important; height: 100%; }
.vsb-project__media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; background: #dedbd7; }
.vsb-project__image { width: 100%; height: 100%; object-fit: cover; transition: transform 600ms cubic-bezier(.22,.61,.36,1); }
.vsb-project a:hover .vsb-project__image { transform: scale(1.035); }
.vsb-project__media span { position: absolute; top: 16px; left: 16px; padding: 8px 10px; background: var(--vsb-color-light); font-size: 11px; letter-spacing: .08em; }
.vsb-project__body { padding: 24px 0; }
.vsb-project h3 { font-size: clamp(28px,3vw,44px); line-height: 1; }
.vsb-project p { min-height: 78px; color: var(--vsb-color-muted); line-height: 1.55; }
.vsb-project__more { font-size: 14px; }

/* Process */
.vsb-process__list { list-style: none; padding: 0; margin: 0; border-top: 1px solid rgba(255,255,255,.22); }
.vsb-process__list li { display: grid; grid-template-columns: 80px minmax(220px,.65fr) minmax(0,1fr); gap: 28px; align-items: start; padding: clamp(30px,4vw,54px) 0; border-bottom: 1px solid rgba(255,255,255,.22); }
.vsb-process__list span { color: #b8b1a9; font-size: 12px; }
.vsb-process__list h3 { font-size: clamp(26px,3vw,44px); line-height: 1; }
.vsb-process__list p { max-width: 680px; margin: 0; color: rgba(255,255,255,.66); font-size: 18px; line-height: 1.55; }

/* FAQ */
.vsb-faq__grid { display: grid; grid-template-columns: minmax(260px,.65fr) minmax(0,1.35fr); gap: clamp(56px,8vw,140px); align-items: start; }
.vsb-faq__items { border-top: 1px solid var(--vsb-color-border); }
.vsb-faq__item { border-bottom: 1px solid var(--vsb-color-border); }
.vsb-section .vsb-faq__question,
.vsb-section button.vsb-faq__question {
  -webkit-appearance: none !important;
  appearance: none !important;
  width: 100% !important;
  min-width: 0 !important;
  min-height: 0 !important;
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  gap: 24px !important;
  margin: 0 !important;
  padding: 30px 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  color: var(--vsb-color-dark) !important;
  font-family: var(--vsb-font-display) !important;
  font-size: clamp(22px,2.2vw,32px) !important;
  font-weight: 500 !important;
  line-height: 1.2 !important;
  letter-spacing: -.02em !important;
  text-align: left !important;
  text-transform: none !important;
  cursor: pointer;
}
.vsb-section .vsb-faq__question:hover,
.vsb-section .vsb-faq__question:focus,
.vsb-section .vsb-faq__question:focus-visible {
  background: transparent !important;
  color: var(--vsb-color-accent) !important;
  outline: none;
}
.vsb-section .vsb-faq__question:focus-visible {
  box-shadow: inset 0 -1px 0 var(--vsb-color-accent) !important;
}
.vsb-faq__question i { position: relative; flex: 0 0 24px; width: 24px; height: 24px; }
.vsb-faq__question i::before,
.vsb-faq__question i::after { content: ""; position: absolute; left: 2px; top: 11px; width: 20px; height: 1px; background: currentColor; transition: transform var(--vsb-transition); }
.vsb-faq__question i::after { transform: rotate(90deg); }
.vsb-faq__item.is-open .vsb-faq__question i::after { transform: rotate(0); }
.vsb-faq__answer { max-width: 760px; padding: 0 48px 30px 0; color: var(--vsb-color-muted); font-size: 18px; line-height: 1.6; }
.vsb-faq__answer p { margin-top: 0; }

/* CTA */
.vsb-cta__grid { display: grid; grid-template-columns: minmax(0,1.4fr) minmax(320px,.6fr); gap: clamp(56px,8vw,140px); align-items: end; }
.vsb-cta__contact { margin-top: 56px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.22); color: #b8b1a9; font-size: 14px; }

/* Reveal */
.vsb-js [data-vsb-reveal] { opacity: 0; transform: translateY(24px); transition: opacity 700ms ease, transform 700ms cubic-bezier(.22,.61,.36,1); }
.vsb-js [data-vsb-reveal].is-visible { opacity: 1; transform: none; }

@media (max-width: 1024px) {
  .vsb-section-head,
  .vsb-hero__grid,
  .vsb-ai__grid,
  .vsb-cta__grid { grid-template-columns: 1fr; }
  .vsb-hero__visual { min-height: 520px; }
  .vsb-facts__grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .vsb-fact:nth-child(2) { border-right: 0; }
  .vsb-fact:nth-child(-n+2) { border-bottom: 1px solid var(--vsb-color-border); }
  .vsb-ai__visual { width: 100%; max-width: 560px; justify-self: center; }
  .vsb-ai__features { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .vsb-ai__features article:nth-child(2) { border-right: 0; }
  .vsb-ai__features article:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.22); }
  .vsb-projects__grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .vsb-faq__grid { grid-template-columns: 1fr; }
}

@media (max-width: 767px) {
  .vsb-space-screen { min-height: auto; }
  .vsb-eyebrow { margin-bottom: 32px; }
  .vsb-section-head { margin-bottom: 64px; }
  .vsb-about__grid,
  .vsb-about--split .vsb-about__content { grid-template-columns: 1fr; }
  .vsb-about__grid > .vsb-eyebrow { margin: 0 0 28px; }
  .vsb-about__copy { margin-top: 32px; }
  .vsb-hero__visual { min-height: 360px; }
  .vsb-facts__grid,
  .vsb-cases__grid,
  .vsb-projects__grid,
  .vsb-ai__features { grid-template-columns: 1fr; }
  .vsb-fact { min-height: 230px; border-right: 0; border-bottom: 1px solid var(--vsb-color-border); }
  .vsb-fact__label { margin-top: 54px !important; }
  .vsb-expertise__item { grid-template-columns: 42px minmax(0,1fr) 28px; gap: 12px; }
  .vsb-expertise__text p { display: none; }
  .vsb-ai__features article,
  .vsb-ai__features article + article { padding: 28px 0 38px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.22); }
  .vsb-ai__features h3 { margin-top: 34px; }
  .vsb-ai__visual--spline { min-height: 340px; height: 340px; }
  .vsb-process__list li { grid-template-columns: 42px minmax(0,1fr); }
  .vsb-process__list p { grid-column: 2; }
  .vsb-cta__grid { align-items: start; }
}


/* =============================================================
   V1.0.4 — screenshot-inspired editorial typography
   ============================================================= */
/* Scroll-film in the Elementor HTML widget uses the same typography. */
.ekv-reel,
.ekv-reel * { font-family: var(--vsb-font-body) !important; }
.ekv-reel h1,
.ekv-cap-title,
.ekv-cap-title--big {
  font-family: var(--vsb-font-display) !important;
  font-weight: 400 !important;
  letter-spacing: -.045em !important;
}
.ekv-reel h1 {
  max-width: 700px;
  font-size: clamp(46px, 6.2vw, 88px) !important;
  line-height: .98 !important;
}
.ekv-cap-title {
  max-width: 720px !important;
  font-size: clamp(36px, 4.1vw, 62px) !important;
  line-height: 1.06 !important;
}
.ekv-cap-title--big { font-size: clamp(38px, 4.5vw, 68px) !important; }
.ekv-cap-title--big em {
  font-family: inherit !important;
  font-style: normal !important;
  color: #be865b !important;
}
.ekv-reel .ekv-sub { max-width: 610px !important; font-size: 18px !important; line-height: 1.6 !important; }
.ekv-cap-lede { max-width: 590px !important; font-size: 17px !important; line-height: 1.65 !important; }
.ekv-eyebrow .ekv-num,
.ekv-stats b { font-family: var(--vsb-font-accent) !important; font-weight: 400 !important; }
.ekv-nav a { font-size: 13px !important; font-weight: 500 !important; }

.vsb-space-compact { padding-block: clamp(68px, 7vw, 92px); }
.vsb-space-standard { padding-block: clamp(88px, 9vw, 118px); }
.vsb-space-spacious { padding-block: clamp(104px, 11vw, 148px); }
.vsb-space-screen { min-height: min(920px, 100svh); padding-block: clamp(96px, 11vw, 142px); }

/* Numbers remain the only serif accent. */
.vsb-fact__number,
.vsb-process__list span {
  font-family: var(--vsb-font-accent);
  font-weight: 400;
  letter-spacing: -.02em;
  color: #be865b;
}

/* Process — heading above a calm two-column list. */
.vsb-process .vsb-section-head {
  display: block;
  margin-bottom: clamp(58px, 7vw, 82px);
}
.vsb-process .vsb-section-head .vsb-lead {
  margin-top: 24px;
  max-width: 760px;
}
.vsb-process__list {
  border-top-color: rgba(255,255,255,.14);
}
.vsb-process__list li {
  grid-template-columns: 64px minmax(0,1fr);
  column-gap: 24px;
  row-gap: 7px;
  padding: 28px 0;
  border-bottom-color: rgba(255,255,255,.14);
}
.vsb-process__list span {
  grid-column: 1;
  grid-row: 1 / span 2;
  font-size: 31px;
  line-height: 1;
}
.vsb-process__list h3 {
  grid-column: 2;
  font-size: 19px;
  line-height: 1.3;
  font-weight: 700;
  letter-spacing: -.015em;
}
.vsb-process__list p {
  grid-column: 2;
  max-width: 820px;
  font-size: 16px;
  line-height: 1.55;
  color: rgba(255,255,255,.58);
}

/* FAQ — full-width heading and editorial accordion. */
.vsb-faq__grid { display: block; }
.vsb-faq .vsb-lead { margin-top: 24px; max-width: 760px; }
.vsb-faq__items { margin-top: clamp(56px, 7vw, 78px); }
.vsb-section .vsb-faq__question,
.vsb-section button.vsb-faq__question {
  padding: 28px 0 !important;
  font-family: var(--vsb-font-body) !important;
  font-size: clamp(17px, 1.5vw, 20px) !important;
  font-weight: 700 !important;
  line-height: 1.35 !important;
  letter-spacing: -.015em !important;
}
.vsb-faq__question i { color: var(--vsb-color-accent); }
.vsb-faq__question i::before,
.vsb-faq__question i::after { width: 14px; left: 5px; }
.vsb-faq__answer {
  max-width: 900px;
  padding: 0 52px 28px 0;
  font-size: 16px;
  line-height: 1.65;
}

@media (max-width: 767px) {
  .vsb-inner { padding-inline: 20px; }
  .vsb-eyebrow { gap: 12px; font-size: 10px; margin-bottom: 28px; }
  .vsb-display { font-size: clamp(42px, 13vw, 62px); line-height: .98; }
  .vsb-h2 { font-size: clamp(34px, 10vw, 48px); line-height: 1.08; }
  .vsb-lead, .vsb-copy { font-size: 15px; line-height: 1.62; }
  .vsb-process .vsb-section-head .vsb-lead,
  .vsb-faq .vsb-lead { margin-top: 18px; }
  .vsb-process__list li { grid-template-columns: 44px minmax(0,1fr); gap: 6px 14px; padding: 24px 0; }
  .vsb-process__list span { font-size: 27px; }
  .vsb-process__list h3 { font-size: 17px; }
  .vsb-process__list p { grid-column: 2; font-size: 14px; }
  .vsb-faq__items { margin-top: 46px; }
  .vsb-section .vsb-faq__question,
  .vsb-section button.vsb-faq__question { padding: 22px 0 !important; font-size: 16px !important; }
  .vsb-faq__answer { padding: 0 42px 22px 0; font-size: 14px; }
  .ekv-reel h1 { font-size: clamp(38px, 12vw, 54px) !important; }
  .ekv-cap-title { font-size: clamp(28px, 8vw, 40px) !important; }
  .ekv-cap-title--big { font-size: clamp(30px, 8.6vw, 43px) !important; }
  .ekv-reel .ekv-sub { font-size: 15px !important; }
  .ekv-cap-lede { font-size: 14px !important; }
}

@media (prefers-reduced-motion: reduce) {
  .vsb-js [data-vsb-reveal] { opacity: 1; transform: none; transition: none; }
  .vsb-section *, .vsb-section *::before, .vsb-section *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; }
}
