.vt-b2b-home {
  --vt-b2b-color-deep-navy: var(--color-dark);
  --vt-b2b-color-navy: var(--color-primary);
  --vt-b2b-color-navy-soft: var(--color-secondary);
  --vt-b2b-color-ivory: var(--color-background-light);
  --vt-b2b-color-warm-white: var(--color-background-lighter);
  --vt-b2b-color-gold: var(--color-accent);
  --vt-b2b-color-gold-soft: var(--color-accent-hover);
  --vt-b2b-color-text: var(--color-text-inverse);
  --vt-b2b-color-text-muted: var(--color-text-inverse-muted);
  --vt-b2b-color-ink: var(--color-text);
  --vt-b2b-color-border: var(--color-border-light);
  --vt-b2b-color-border-strong: var(--color-border-light-strong);
  --vt-b2b-color-surface: var(--color-surface-dark);
  --vt-b2b-color-surface-soft: var(--color-surface-light);
  --vt-b2b-color-surface-header: var(--color-surface-dark-header);
  --vt-b2b-shadow-soft: var(--shadow-md);
  --vt-b2b-shadow-panel: var(--shadow-lg);
  --vt-b2b-shadow-header: var(--shadow-header);
  --vt-b2b-container: min(
    var(--container-width),
    calc(100% - (var(--container-gutter) * 2))
  );
  --vt-b2b-container-narrow: min(
    var(--container-narrow-width),
    calc(100% - (var(--container-narrow-gutter) * 2))
  );
  --vt-b2b-space-1: var(--space-1);
  --vt-b2b-space-2: var(--space-2);
  --vt-b2b-space-3: var(--space-3);
  --vt-b2b-space-4: var(--space-4);
  --vt-b2b-space-5: var(--space-5);
  --vt-b2b-space-6: var(--space-6);
  --vt-b2b-space-7: var(--space-7);
  --vt-b2b-space-8: var(--space-8);
  --vt-b2b-space-9: var(--space-9);
  --vt-b2b-space-10: var(--space-10);
  --vt-b2b-radius-sm: var(--radius-sm);
  --vt-b2b-radius-md: var(--radius-md);
  --vt-b2b-radius-lg: var(--radius-lg);
  --vt-b2b-radius-pill: var(--radius-pill);
  --vt-b2b-font-serif: var(--font-family-heading);
  --vt-b2b-font-sans: var(--font-family-base);
  position: relative;
  min-height: 100vh;
  color: var(--vt-b2b-color-ink);
  background: linear-gradient(
    180deg,
    var(--color-background-page) 0%,
    var(--color-background-page-alt) 100%
  );
  font-family: var(--vt-b2b-font-sans);
  overflow-x: clip;
}

.vt-b2b-home,
.vt-b2b-home :where(*) {
  box-sizing: border-box;
}

.vt-b2b-home :where(h1, h2, h3, h4, h5, h6, p, ul, ol, li, figure) {
  margin: 0;
  padding: 0;
}

.vt-b2b-home :where(ul, ol) {
  list-style: none;
}

.vt-b2b-home :where(a) {
  color: inherit;
  text-decoration: none;
}

.vt-b2b-home :where(img, picture, svg) {
  display: block;
  max-width: 100%;
}

.vt-b2b-home :where(button, input, textarea, select) {
  font: inherit;
  color: inherit;
}

.vt-b2b-home :where(button) {
  border: 0;
  background: none;
  cursor: pointer;
}

.vt-b2b-home :where(a, button, [tabindex]):focus-visible {
  outline: 2px solid var(--vt-b2b-color-gold);
  outline-offset: 3px;
}

.vt-b2b-home__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 0.45rem;
  border: 1px solid transparent;
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition:
    background-color var(--transition-fast),
    color var(--transition-fast),
    border-color var(--transition-fast),
    transform var(--transition-fast);
}

.vt-b2b-home__button:hover,
.vt-b2b-home__button:focus-visible {
  transform: translateY(-1px);
}

.vt-b2b-home__button--hero-primary {
  background: var(--vt-b2b-color-gold);
  color: var(--color-on-accent);
}

.vt-b2b-home__button--hero-primary:hover {
  background: var(--vt-b2b-color-gold-soft);
}

.vt-b2b-home__button--hero-secondary {
  border-color: var(--color-border-light-emphasis);
  background: var(--color-surface-light-subtle);
  color: var(--vt-b2b-color-text);
}

.vt-b2b-home__button--hero-secondary:hover {
  border-color: var(--color-border-light-hover);
  background: var(--color-surface-light);
}

.vt-b2b-home__button--disabled {
  opacity: 0.6;
  cursor: default;
  pointer-events: none;
}

.vt-b2b-home__hero {
  position: relative;
  padding: 0 0 28px;
  color: var(--vt-b2b-color-text);
  background:
    radial-gradient(
      circle at top right,
      var(--color-accent-glow),
      transparent 28%
    ),
    linear-gradient(
      180deg,
      var(--color-hero-surface-start) 0%,
      var(--color-hero-surface-end) 100%
    );
}

.vt-b2b-home__hero-frame {
  position: relative;
  width: 100%;
  min-height: min(780px, calc(100vh - 52px));
  margin: 0;
  overflow: hidden;
  background: var(--color-hero-deep);
}

.vt-b2b-home__hero-media,
.vt-b2b-home__hero-picture,
.vt-b2b-home__hero-image,
.vt-b2b-home__hero-fallback-surface,
.vt-b2b-home__hero-overlay {
  position: absolute;
  inset: 0;
}

.vt-b2b-home__hero-picture,
.vt-b2b-home__hero-image {
  width: 100%;
  height: 100%;
}

.vt-b2b-home__hero-image {
  object-fit: cover;
}

.vt-b2b-home__hero-fallback-surface {
  background:
    radial-gradient(
      circle at top right,
      var(--color-accent-glow-strong),
      transparent 30%
    ),
    linear-gradient(
      140deg,
      var(--color-hero-deep) 0%,
      var(--color-primary) 52%,
      var(--color-hero-mid) 100%
    );
}

.vt-b2b-home__hero-overlay {
  background:
    linear-gradient(
      90deg,
      rgba(7, 15, 26, 0.88) 0%,
      rgba(7, 15, 26, 0.66) 34%,
      rgba(7, 15, 26, 0.18) 100%
    ),
    linear-gradient(
      180deg,
      rgba(7, 15, 26, 0.34) 0%,
      rgba(7, 15, 26, 0.08) 34%,
      rgba(7, 15, 26, 0.76) 100%
    );
}

.vt-b2b-home__hero-shell {
  position: relative;
  z-index: 1;
  width: var(--vt-b2b-container);
  min-height: inherit;
  margin: 0 auto;
  padding: 136px 0 22px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.vt-b2b-home__hero-content {
  max-width: min(800px, 100%);
}

.vt-b2b-home__eyebrow {
  margin-bottom: var(--vt-b2b-space-4);
  color: var(--color-text-inverse-soft);
  font-size: var(--font-size-xs);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.vt-b2b-home__hero-title {
  margin-bottom: var(--vt-b2b-space-5);
  font-family: var(--vt-b2b-font-sans);
  font-size: var(--font-size-hero);
  line-height: 0.98;
  letter-spacing: -0.025em;
  text-transform: uppercase;
}

.vt-b2b-home__hero-title-highlight {
  color: var(--vt-b2b-color-gold);
  box-shadow: inset 0 -0.1em 0 var(--color-accent-underline);
  margin-left: 16px;
}

.vt-b2b-home__hero-description {
  max-width: 68ch;
  color: var(--vt-b2b-color-text-muted);
  font-size: var(--font-size-base);
  line-height: var(--line-height-relaxed);
}

.vt-b2b-home__hero-description p + p {
  margin-top: var(--vt-b2b-space-4);
}

.vt-b2b-home__hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.vt-b2b-home__hero-actions .vt-b2b-home__button {
  min-width: 176px;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 0.28rem;
  font-size: 0.82rem;
}

.vt-b2b-home__hero-stats {
  width: min(1120px, 100%);
  margin-top: clamp(42px, 8vh, 74px);
  padding: 18px 26px;
  border: 0;
  background: var(--color-surface-dark-panel);
  box-shadow: var(--vt-b2b-shadow-panel);
  backdrop-filter: blur(12px);

  margin-left: auto;
  margin-right: auto;
  border-radius: 16px;
}

.vt-b2b-home__hero-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px 0;
}

.vt-b2b-home__hero-stat {
  min-width: 0;
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 8px 22px;
  border-left: 1px solid var(--color-border-light-subtle);
}

.vt-b2b-home__hero-stat:first-child {
  border-left: 0;
  padding-left: 0;
}

.vt-b2b-home__hero-stat-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border: 1px solid var(--color-accent-border);
  border-radius: 50%;
  color: var(--vt-b2b-color-gold);
}

.vt-b2b-home__hero-stat-icon img {
  display: block;
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.vt-b2b-home__hero-stat-copy {
  min-width: 0;
  display: grid;
  gap: 3px;
}

.vt-b2b-home__hero-stat-label {
  color: var(--vt-b2b-color-warm-white);
  font-family: var(--vt-b2b-font-serif);
  font-size: clamp(1.25rem, 1.7vw, 1.7rem);
  font-weight: 600;
  line-height: 1.05;
}

.vt-b2b-home__hero-stat-description {
  color: var(--vt-b2b-color-text-muted);
  font-size: var(--font-size-xs);
  line-height: 1.45;
}

.vt-b2b-home__main {
  position: relative;
}

.vt-b2b-home__section {
  padding: var(--vt-b2b-space-8) 0;
  border-top: 1px solid var(--color-section-border);
}

.vt-b2b-home__section-shell,
.vt-b2b-home__footer-inner,
.vt-b2b-home__footer-bottom {
  width: var(--vt-b2b-container);
  margin: 0 auto;
}

.vt-b2b-home__section-shell {
  padding: var(--vt-b2b-space-7) 0;
}

.vt-b2b-home__title {
  margin-bottom: var(--vt-b2b-space-4);
  color: var(--vt-b2b-color-navy);
  font-family: var(--vt-b2b-font-serif);
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.06;
}

.vt-b2b-home__description {
  max-width: 68ch;
  color: var(--color-text-strong-muted);
  line-height: 1.7;
}

.vt-b2b-home__meta {
  margin-top: var(--vt-b2b-space-4);
  color: var(--color-text-muted);
}

/* Section 02: Why Partner With Venus */
.vt-b2b-why {
  padding: clamp(64px, 6vw, 92px) 0;
  border-top: 1px solid var(--color-section-border);
  background: var(--vt-b2b-color-warm-white);
  color: var(--vt-b2b-color-ink);
}

.vt-b2b-why__inner {
  width: var(--vt-b2b-container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(250px, 0.28fr) minmax(0, 0.72fr);
  gap: clamp(42px, 5vw, 78px);
  align-items: start;
}

.vt-b2b-why__intro {
  max-width: 360px;
}

.vt-b2b-why__label,
.vt-b2b-capabilities__label {
  margin-bottom: var(--vt-b2b-space-3);
  color: var(--vt-b2b-color-gold);
  font-size: var(--font-size-xs);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.vt-b2b-why__title {
  color: var(--vt-b2b-color-navy);
  font-family: var(--vt-b2b-font-serif);
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.025em;
}

.vt-b2b-why__accent,
.vt-b2b-capabilities__accent {
  display: block;
  width: 54px;
  height: 1px;
  margin: var(--vt-b2b-space-4) 0;
  background: var(--vt-b2b-color-gold);
}

.vt-b2b-why__description {
  color: var(--color-text-strong-muted);
  font-size: 0.94rem;
  line-height: 1.72;
}

.vt-b2b-why__description p + p,
.vt-b2b-capabilities__description p + p {
  margin-top: var(--vt-b2b-space-3);
}

.vt-b2b-why__items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(145px, 100%), 1fr));
  align-items: start;
}

.vt-b2b-why__item {
  min-width: 0;
  min-height: 100%;
  padding: 4px clamp(12px, 1.35vw, 22px);
  border-left: 1px solid var(--color-section-border);
}

.vt-b2b-why__item:nth-child(6n + 1) {
  padding-left: 0;
  border-left: 0;
}

.vt-b2b-why__icon,
.vt-b2b-capabilities__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--vt-b2b-color-gold);
}

.vt-b2b-why__icon {
  width: 46px;
  height: 46px;
  margin-bottom: var(--vt-b2b-space-3);
  margin-left: auto;
  margin-right: auto;
}

.vt-b2b-why__icon-image,
.vt-b2b-why__icon-fallback {
  width: 38px;
  height: 38px;
}

.vt-b2b-why__icon-image,
.vt-b2b-capabilities__icon-image {
  object-fit: contain;
  filter: sepia(0.7) saturate(0.85) hue-rotate(358deg) brightness(0.82);
}

.vt-b2b-why__icon-fallback,
.vt-b2b-capabilities__icon-fallback {
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.vt-b2b-why__item-title {
  margin-bottom: 7px;
  color: var(--vt-b2b-color-navy);
  font-family: var(--vt-b2b-font-sans);
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.3;
}

.vt-b2b-why__item-description {
  display: -webkit-box;
  overflow: hidden;
  color: var(--color-text-muted);
  font-size: 0.8rem;
  line-height: 1.55;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.vt-b2b-why__intro-link,
.vt-b2b-capabilities__item-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: var(--vt-b2b-space-3);
  color: var(--vt-b2b-color-gold);
  font-size: var(--font-size-xs);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.vt-b2b-why__intro-link {
  text-underline-offset: 4px;
}

.vt-b2b-why__intro-link:hover {
  color: var(--vt-b2b-color-navy);
  text-decoration: underline;
}

.vt-b2b-why__intro-link:focus-visible,
.vt-b2b-capabilities__card--linked:focus-visible {
  outline: 2px solid var(--vt-b2b-color-gold);
  outline-offset: 4px;
}

/* Section 03: Our B2B Capabilities */
.vt-b2b-capabilities {
  padding: clamp(68px, 6vw, 96px) 0;
  border-top: 1px solid var(--color-border-light-subtle);
  background: var(--vt-b2b-color-deep-navy);
  color: var(--vt-b2b-color-text);
}

.vt-b2b-capabilities__inner {
  width: var(--vt-b2b-container);
  margin: 0 auto;
}

.vt-b2b-capabilities__header {
  max-width: 760px;
  margin: 0 auto clamp(34px, 4vw, 52px);
  text-align: center;
}

.vt-b2b-capabilities__title {
  color: var(--vt-b2b-color-warm-white);
  font-family: var(--vt-b2b-font-serif);
  font-size: clamp(2.1rem, 3.5vw, 3.5rem);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.025em;
}

.vt-b2b-capabilities__accent {
  margin-right: auto;
  margin-left: auto;
}

.vt-b2b-capabilities__description {
  color: var(--vt-b2b-color-text-muted);
  font-size: 0.96rem;
  line-height: 1.7;
}

.vt-b2b-capabilities__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.vt-b2b-capabilities__grid-item {
  min-width: 0;
}

.vt-b2b-capabilities__card {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: var(--vt-b2b-space-4);
  align-items: start;
  min-height: 148px;
  height: 100%;
  padding: clamp(20px, 2vw, 28px);
  border: 1px solid var(--color-border-light-soft);
  border-radius: var(--vt-b2b-radius-sm);
  background: var(--color-surface-light-subtle);
  transition:
    transform var(--transition-fast),
    border-color var(--transition-fast),
    background-color var(--transition-fast);
}

.vt-b2b-capabilities__card--linked:hover,
.vt-b2b-capabilities__card--linked:focus-visible {
  border-color: var(--color-accent-border);
  background: var(--vt-b2b-color-surface-soft);
  transform: translateY(-2px);
}

.vt-b2b-capabilities__icon {
  width: 54px;
  height: 54px;
}

.vt-b2b-capabilities__icon-image,
.vt-b2b-capabilities__icon-fallback {
  width: 46px;
  height: 46px;
}

.vt-b2b-capabilities__icon-image {
  filter: sepia(0.8) saturate(1.05) hue-rotate(358deg) brightness(1.12);
}

.vt-b2b-capabilities__content {
  min-width: 0;
}

.vt-b2b-capabilities__item-title {
  margin-bottom: 7px;
  color: var(--vt-b2b-color-warm-white);
  font-family: var(--vt-b2b-font-sans);
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.35;
}

.vt-b2b-capabilities__item-description {
  display: -webkit-box;
  overflow: hidden;
  color: var(--vt-b2b-color-text-muted);
  font-size: 0.82rem;
  line-height: 1.55;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.vt-b2b-capabilities__item-link {
  color: var(--vt-b2b-color-gold-soft);
}

/* Section 04: Top Destinations */
.vt-b2b-destinations {
  padding: clamp(68px, 6vw, 96px) 0;
  border-top: 1px solid var(--color-section-border);
  background: var(--vt-b2b-color-ivory);
  color: var(--vt-b2b-color-ink);
}

.vt-b2b-destinations__inner {
  width: var(--vt-b2b-container);
  margin: 0 auto;
}

.vt-b2b-destinations__header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: clamp(30px, 5vw, 76px);
  margin-bottom: clamp(28px, 3vw, 42px);
}

.vt-b2b-destinations__heading-group {
  flex: 0 1 520px;
}

.vt-b2b-destinations__label,
.vt-b2b-network__label {
  margin-bottom: var(--vt-b2b-space-2);
  color: var(--vt-b2b-color-gold);
  font-size: var(--font-size-xs);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.vt-b2b-destinations__title {
  color: var(--vt-b2b-color-navy);
  font-family: var(--vt-b2b-font-serif);
  font-size: clamp(2.15rem, 3.6vw, 3.6rem);
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: -0.025em;
}

.vt-b2b-destinations__accent {
  display: block;
  width: 58px;
  height: 1px;
  margin-top: var(--vt-b2b-space-4);
  background: var(--vt-b2b-color-gold);
}

.vt-b2b-destinations__description {
  flex: 0 1 520px;
  color: var(--color-text-strong-muted);
  font-size: 0.94rem;
  line-height: 1.7;
}

.vt-b2b-destinations__description p + p {
  margin-top: var(--vt-b2b-space-3);
}

.vt-b2b-destinations__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(12px, 1.4vw, 20px);
}

.vt-b2b-destinations__grid-item {
  min-width: 0;
}

.vt-b2b-destinations__card {
  position: relative;
  isolation: isolate;
  display: block;
  min-height: 280px;
  height: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border: 1px solid var(--color-border-light-soft);
  border-radius: 0.55rem;
  background: var(--vt-b2b-color-deep-navy);
  color: var(--vt-b2b-color-text);
  width: 100%;
}

.vt-b2b-destinations__card--linked:focus-visible {
  outline: 2px solid var(--vt-b2b-color-gold);
  outline-offset: 4px;
}

.vt-b2b-destinations__media,
.vt-b2b-destinations__picture,
.vt-b2b-destinations__image,
.vt-b2b-destinations__fallback,
.vt-b2b-destinations__overlay {
  position: absolute;
  inset: 0;
}

.vt-b2b-destinations__picture,
.vt-b2b-destinations__image {
  width: 100%;
  height: 100%;
}

.vt-b2b-destinations__image {
  object-fit: cover;
  transition:
    transform var(--transition-slow),
    filter var(--transition-slow);
}

.vt-b2b-destinations__fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--vt-b2b-color-deep-navy);
}

.vt-b2b-destinations__fallback-mark {
  color: var(--color-border-light-strong);
  font-family: var(--vt-b2b-font-serif);
  font-size: clamp(3rem, 5vw, 5rem);
  letter-spacing: 0.08em;
}

.vt-b2b-destinations__overlay {
  background: linear-gradient(
    180deg,
    rgba(7, 15, 26, 0.06) 12%,
    rgba(7, 15, 26, 0.42) 52%,
    rgba(7, 15, 26, 0.94) 100%
  );
  opacity: 1;
  transition: opacity var(--transition-fast);
}

.vt-b2b-destinations__content {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  padding: clamp(20px, 2.2vw, 30px);
}

.vt-b2b-destinations__subtitle {
  margin-bottom: 7px;
  color: var(--vt-b2b-color-gold-soft);
  font-size: var(--font-size-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.vt-b2b-destinations__item-title {
  margin-bottom: 8px;
  color: var(--vt-b2b-color-warm-white);
  font-family: var(--vt-b2b-font-serif);
  font-size: clamp(1.45rem, 2vw, 2rem);
  font-weight: 500;
  line-height: 1.08;
}

.vt-b2b-destinations__item-description {
  display: -webkit-box;
  max-width: 34ch;
  overflow: hidden;
  color: var(--vt-b2b-color-text-muted);
  font-size: 0.82rem;
  line-height: 1.55;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.vt-b2b-destinations__item-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: var(--vt-b2b-space-3);
  padding: 6px 10px;
  border: 1px solid var(--color-accent-border);
  border-radius: var(--vt-b2b-radius-pill);
  color: var(--vt-b2b-color-gold-soft);
  font-size: var(--font-size-xs);
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1;
  text-transform: uppercase;
}

.vt-b2b-destinations__card:hover .vt-b2b-destinations__image,
.vt-b2b-destinations__card--linked:focus-visible .vt-b2b-destinations__image {
  filter: saturate(1.05) brightness(1.04);
  transform: scale(1.025);
}

.vt-b2b-destinations__card:hover .vt-b2b-destinations__overlay,
.vt-b2b-destinations__card--linked:focus-visible .vt-b2b-destinations__overlay {
  opacity: 0.9;
}

/* Section 05: Our Elite Network */
.vt-b2b-network {
  padding: clamp(60px, 6vw, 84px) 0;
  border-top: 1px solid var(--color-section-border);
  border-bottom: 1px solid var(--color-section-border);
  background: var(--vt-b2b-color-ivory);
  color: var(--vt-b2b-color-ink);
}

.vt-b2b-network__inner {
  width: var(--vt-b2b-container);
  margin: 0 auto;
}

.vt-b2b-network__header {
  max-width: 720px;
  margin-bottom: clamp(28px, 3.5vw, 46px);
}

.vt-b2b-network__title {
  color: var(--vt-b2b-color-navy);
  font-family: var(--vt-b2b-font-serif);
  font-size: clamp(2rem, 3.4vw, 3.1rem);
  font-weight: 500;
  line-height: 1.08;
  text-wrap: balance;
}

.vt-b2b-network__accent {
  display: block;
  width: 52px;
  height: 1px;
  margin-top: var(--vt-b2b-space-3);
  background: var(--vt-b2b-color-gold);
}

.vt-b2b-network__description {
  max-width: 62ch;
  margin-top: var(--vt-b2b-space-4);
  color: var(--color-text-muted);
  font-size: 0.94rem;
  line-height: 1.75;
}

.vt-b2b-network__description p + p {
  margin-top: var(--vt-b2b-space-2);
}

.vt-b2b-network__list {
  display: grid;
  grid-template-columns: repeat(10, minmax(0, 1fr));
  gap: clamp(14px, 1.5vw, 20px);
  align-items: stretch;
}

.vt-b2b-network__item {
  grid-column: span 2;
  min-width: 0;
}

@media (min-width: 1081px) {
  .vt-b2b-network__item:nth-child(5n + 1):last-child {
    grid-column: 5 / span 2;
  }

  .vt-b2b-network__item:nth-child(5n + 1):nth-last-child(2) {
    grid-column: 4 / span 2;
  }

  .vt-b2b-network__item:nth-child(5n + 1):nth-last-child(3) {
    grid-column: 3 / span 2;
  }

  .vt-b2b-network__item:nth-child(5n + 1):nth-last-child(4) {
    grid-column: 2 / span 2;
  }
}

.vt-b2b-network__logo {
  position: relative;
  display: flex;
  overflow: hidden;
  align-items: center;
  justify-content: center;
  min-height: 122px;
  height: 100%;
  padding: clamp(18px, 2vw, 26px);
  border: 1px solid rgba(16, 42, 67, 0.12);
  border-radius: var(--vt-b2b-radius-md);
  background: rgba(252, 250, 245, 0.86);
  transition:
    border-color 230ms ease-out,
    background-color 230ms ease-out,
    transform 230ms ease-out;
}

.vt-b2b-network__logo--linked:hover,
.vt-b2b-network__logo--linked:focus-visible {
  border-color: var(--color-accent-border);
  background: var(--vt-b2b-color-warm-white);
  transform: translateY(-2px);
}

.vt-b2b-network__logo--linked:focus-visible {
  outline: 2px solid var(--vt-b2b-color-gold);
  outline-offset: 3px;
}

.vt-b2b-network__image {
  display: block;
  width: auto;
  max-width: min(78%, 174px);
  height: auto;
  max-height: 58px;
  object-fit: contain;
  filter: grayscale(0.65) saturate(0.65);
  opacity: 0.78;
  transition:
    filter 230ms ease-out,
    opacity 230ms ease-out,
    transform 230ms ease-out;
}

.vt-b2b-network__logo--linked:hover .vt-b2b-network__image,
.vt-b2b-network__logo--linked:focus-visible .vt-b2b-network__image {
  filter: grayscale(0) saturate(1);
  opacity: 1;
}

.vt-b2b-network__logo--photographic {
  padding: 0;
  align-items: flex-end;
  isolation: isolate;
}

.vt-b2b-network__logo--photographic::after {
  position: absolute;
  z-index: -1;
  inset: 38% 0 0;
  background: linear-gradient(to top, rgba(7, 18, 35, 0.82), transparent);
  content: "";
}

.vt-b2b-network__logo--photographic .vt-b2b-network__image {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  max-width: none;
  height: 100%;
  max-height: none;
  object-fit: cover;
  filter: none;
  opacity: 0.9;
}

.vt-b2b-network__logo--linked.vt-b2b-network__logo--photographic:hover
  .vt-b2b-network__image,
.vt-b2b-network__logo--linked.vt-b2b-network__logo--photographic:focus-visible
  .vt-b2b-network__image {
  transform: scale(1.02);
}

.vt-b2b-network__media-label {
  padding: 18px;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.4;
  text-align: center;
  text-shadow: 0 1px 8px rgba(7, 18, 35, 0.45);
}

.vt-b2b-network__wordmark {
  color: var(--vt-b2b-color-navy);
  font-family: var(--vt-b2b-font-serif);
  font-size: clamp(1rem, 1.4vw, 1.3rem);
  font-weight: 600;
  line-height: 1.25;
  text-align: center;
  transition: color 230ms ease-out;
}

.vt-b2b-network__logo--linked:hover .vt-b2b-network__wordmark,
.vt-b2b-network__logo--linked:focus-visible .vt-b2b-network__wordmark {
  color: var(--vt-b2b-color-gold);
}

/* Section 06: Our Achievements */
.vt-b2b-achievements {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(68px, 7vw, 96px) 0;
  background: var(--vt-b2b-color-deep-navy);
  color: var(--vt-b2b-color-text);
}

.vt-b2b-achievements::after {
  position: absolute;
  z-index: -1;
  right: clamp(-120px, -7vw, -40px);
  bottom: -140px;
  width: min(46vw, 620px);
  aspect-ratio: 1;
  border: 1px solid rgba(198, 153, 74, 0.12);
  border-radius: 44% 56% 61% 39% / 38% 42% 58% 62%;
  background:
    radial-gradient(
      circle at 28% 31%,
      rgba(198, 153, 74, 0.28) 0 2px,
      transparent 3px
    ),
    radial-gradient(
      circle at 52% 24%,
      rgba(198, 153, 74, 0.22) 0 2px,
      transparent 3px
    ),
    radial-gradient(
      circle at 62% 47%,
      rgba(198, 153, 74, 0.24) 0 2px,
      transparent 3px
    ),
    radial-gradient(
      circle at 42% 67%,
      rgba(198, 153, 74, 0.2) 0 2px,
      transparent 3px
    ),
    linear-gradient(
      132deg,
      transparent 37%,
      rgba(198, 153, 74, 0.07) 38% 38.5%,
      transparent 39%
    ),
    linear-gradient(
      48deg,
      transparent 51%,
      rgba(198, 153, 74, 0.06) 52% 52.5%,
      transparent 53%
    );
  content: "";
  opacity: 0.7;
  transform: rotate(-8deg);
  pointer-events: none;
}

.vt-b2b-achievements__inner {
  width: var(--vt-b2b-container);
  margin: 0 auto;
}

.vt-b2b-achievements__header {
  position: relative;
  max-width: 660px;
  margin-bottom: clamp(36px, 5vw, 58px);
}

.vt-b2b-achievements__label,
.vt-b2b-gallery__label {
  margin-bottom: var(--vt-b2b-space-2);
  color: var(--vt-b2b-color-gold-soft);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1.4;
  text-transform: uppercase;
}

.vt-b2b-achievements__title {
  color: var(--vt-b2b-color-warm-white);
  font-family: var(--vt-b2b-font-serif);
  font-size: clamp(2rem, 3.6vw, 3.25rem);
  font-weight: 500;
  line-height: 1.08;
}

.vt-b2b-achievements__accent,
.vt-b2b-gallery__accent {
  width: 48px;
  height: 1px;
  margin-top: var(--vt-b2b-space-3);
  background: var(--vt-b2b-color-gold);
}

.vt-b2b-achievements__description {
  max-width: 62ch;
  margin-top: var(--vt-b2b-space-4);
  color: var(--vt-b2b-color-text-muted);
  font-size: 0.94rem;
  line-height: 1.75;
}

.vt-b2b-achievements__description p + p {
  margin-top: var(--vt-b2b-space-2);
}

.vt-b2b-achievements__list {
  display: grid;
  grid-template-columns: repeat(
    var(--vt-achievement-columns, 5),
    minmax(0, 1fr)
  );
  align-items: stretch;
}

.vt-b2b-achievements__item {
  min-width: 0;
  padding: 0 clamp(18px, 2.4vw, 34px);
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.vt-b2b-achievements__item:first-child {
  padding-left: 0;
  border-left: 0;
}

.vt-b2b-achievements__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin-bottom: var(--vt-b2b-space-4);
  color: var(--vt-b2b-color-gold);
}

.vt-b2b-achievements__icon img,
.vt-b2b-achievements__icon svg {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.vt-b2b-achievements__icon img {
  filter: sepia(1) saturate(0.8) hue-rotate(358deg) brightness(0.9);
}

.vt-b2b-achievements__icon-fallback {
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.vt-b2b-achievements__metric {
  display: flex;
  align-items: baseline;
  min-width: 0;
  color: var(--vt-b2b-color-gold-soft);
  font-family: var(--vt-b2b-font-serif);
  line-height: 1;
  white-space: nowrap;
}

.vt-b2b-achievements__value {
  overflow: hidden;
  font-size: clamp(2rem, 3.2vw, 3.35rem);
  text-overflow: ellipsis;
}

.vt-b2b-achievements__suffix {
  margin-left: 0.08em;
  font-size: clamp(1.25rem, 2vw, 2rem);
}

.vt-b2b-achievements__item-label {
  margin-top: var(--vt-b2b-space-3);
  color: var(--vt-b2b-color-text);
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.4;
}

.vt-b2b-achievements__item-description {
  margin-top: var(--vt-b2b-space-2);
  color: var(--vt-b2b-color-text-muted);
  font-size: 0.78rem;
  line-height: 1.6;
}

/* Section 07: Gallery */
.vt-b2b-gallery {
  padding: clamp(64px, 7vw, 92px) 0;
  background: var(--vt-b2b-color-ivory);
  color: var(--vt-b2b-color-ink);
}

.vt-b2b-gallery__inner {
  width: var(--vt-b2b-container);
  margin: 0 auto;
}

.vt-b2b-gallery__header {
  max-width: 680px;
  margin-bottom: clamp(30px, 4vw, 46px);
}

.vt-b2b-gallery__label {
  color: var(--vt-b2b-color-gold);
}

.vt-b2b-gallery__title {
  color: var(--vt-b2b-color-navy);
  font-family: var(--vt-b2b-font-serif);
  font-size: clamp(2rem, 3.4vw, 3.1rem);
  font-weight: 500;
  line-height: 1.08;
}

.vt-b2b-gallery__description {
  max-width: 64ch;
  margin-top: var(--vt-b2b-space-4);
  color: var(--color-text-muted);
  font-size: 0.94rem;
  line-height: 1.7;
}

.vt-b2b-gallery__description p + p {
  margin-top: var(--vt-b2b-space-2);
}

.vt-b2b-gallery__categories {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 28px);
}

.vt-b2b-gallery__category {
  min-width: 0;
}

.vt-b2b-gallery__category--featured {
  grid-column: 1 / -1;
}

.vt-b2b-gallery__category.is-open {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: clamp(18px, 2vw, 28px);
}

.vt-b2b-gallery__category--featured.is-open .vt-b2b-gallery__category-heading {
  grid-column: 1 / -1;
}

.vt-b2b-gallery__category-heading {
  margin: 0;
  min-width: 0;
}

.vt-b2b-gallery__trigger {
  position: relative;
  display: block;
  overflow: hidden;
  width: 100%;
  min-height: clamp(250px, 20vw, 292px);
  padding: 0;
  border: 1px solid transparent;
  border-radius: clamp(12px, 1.2vw, 16px);
  background: var(--vt-b2b-color-navy);
  color: #fff;
  text-align: left;
  cursor: pointer;
  isolation: isolate;
  transition: border-color var(--transition-fast);
}

.vt-b2b-gallery__category--featured .vt-b2b-gallery__trigger {
  min-height: clamp(270px, 22vw, 310px);
}

.vt-b2b-gallery__trigger:focus-visible {
  outline: 3px solid var(--vt-b2b-color-gold);
  outline-offset: 3px;
}

.vt-b2b-gallery__category.is-open .vt-b2b-gallery__trigger {
  border-color: var(--vt-b2b-color-gold);
}

.vt-b2b-gallery__card-media,
.vt-b2b-gallery__cover-image,
.vt-b2b-gallery__cover-fallback,
.vt-b2b-gallery__card-overlay {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
}

.vt-b2b-gallery__card-media {
  z-index: -1;
  overflow: hidden;
  background: var(--vt-b2b-color-navy);
}

.vt-b2b-gallery__cover-image {
  object-fit: cover;
  transform: scale(1);
  transition: transform 420ms ease;
}

.vt-b2b-gallery__cover-fallback {
  background-color: var(--vt-b2b-color-navy);
  background-image:
    radial-gradient(
      circle at 82% 18%,
      rgba(184, 145, 73, 0.22) 0 1px,
      transparent 2px
    ),
    linear-gradient(
      135deg,
      transparent 0 48%,
      rgba(255, 255, 255, 0.04) 49% 50%,
      transparent 51%
    ),
    linear-gradient(115deg, #071223, #102a43 68%, #193b56);
  background-size:
    28px 28px,
    54px 54px,
    auto;
}

.vt-b2b-gallery__card-overlay {
  background: linear-gradient(
    to top,
    rgba(7, 18, 35, 0.88),
    rgba(7, 18, 35, 0.12)
  );
  transition: background 300ms ease;
}

.vt-b2b-gallery__card-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(22px, 3vw, 36px);
}

.vt-b2b-gallery__trigger:hover .vt-b2b-gallery__cover-image {
  transform: scale(1.03);
}

.vt-b2b-gallery__trigger:hover .vt-b2b-gallery__card-overlay {
  background: linear-gradient(
    to top,
    rgba(7, 18, 35, 0.94),
    rgba(7, 18, 35, 0.2)
  );
}

.vt-b2b-gallery__category-title {
  display: -webkit-box;
  overflow: hidden;
  font-family: var(--vt-b2b-font-serif);
  font-size: clamp(1.45rem, 2.5vw, 2.15rem);
  font-weight: 500;
  line-height: 1.12;
  text-wrap: balance;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.vt-b2b-gallery__category-description {
  display: -webkit-box;
  overflow: hidden;
  max-width: 56ch;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(0.82rem, 1vw, 0.92rem);
  font-weight: 400;
  line-height: 1.55;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.vt-b2b-gallery__card-footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  margin-top: clamp(18px, 2vw, 26px);
}

.vt-b2b-gallery__category-count {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.vt-b2b-gallery__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
  color: var(--vt-b2b-color-gold);
  font-size: 0.77rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.vt-b2b-gallery__cta-icon {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
  transition: transform var(--transition-fast);
}

.vt-b2b-gallery__trigger:hover .vt-b2b-gallery__cta-icon,
.vt-b2b-gallery__trigger:focus-visible .vt-b2b-gallery__cta-icon {
  transform: translateX(5px);
}

.vt-b2b-gallery__trigger[aria-expanded="true"] .vt-b2b-gallery__cta-icon {
  transform: rotate(90deg);
}

.vt-b2b-gallery__panel {
  grid-column: 1 / -1;
}

.vt-b2b-gallery__panel-inner {
  padding: clamp(20px, 2.5vw, 34px) 0 clamp(8px, 1.5vw, 18px);
}

.vt-b2b-gallery__category.is-open .vt-b2b-gallery__panel-inner {
  animation: vt-b2b-gallery-reveal 220ms ease-out both;
}

@keyframes vt-b2b-gallery-reveal {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.vt-b2b-gallery__grid,
.vt-b2b-gallery__skeleton {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(10px, 1.25vw, 18px);
  padding-top: clamp(18px, 2vw, 24px);
}

.vt-b2b-gallery__item,
.vt-b2b-gallery__figure {
  min-width: 0;
  height: 100%;
}

.vt-b2b-gallery__figure {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border-radius: var(--vt-b2b-radius-md);
  background: var(--vt-b2b-color-surface-soft);
}

.vt-b2b-gallery__lightbox-open {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
}

.vt-b2b-gallery__lightbox-open:focus-visible {
  outline: 3px solid var(--vt-b2b-color-gold);
  outline-offset: -3px;
}

.vt-b2b-gallery__image {
  display: block;
  width: 100%;
  height: 100%;
}

.vt-b2b-gallery__image {
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.vt-b2b-gallery__caption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 34px 16px 14px;
  background: linear-gradient(180deg, transparent, rgba(4, 15, 26, 0.82));
  color: var(--vt-b2b-color-text);
  font-size: 0.78rem;
  font-weight: 500;
  line-height: 1.45;
}

.vt-b2b-gallery__image-title {
  display: block;
  margin-bottom: 2px;
}

.vt-b2b-gallery__figure:hover .vt-b2b-gallery__image {
  transform: scale(1.025);
}

.vt-b2b-gallery__status {
  color: var(--color-text-muted);
  font-size: 0.92rem;
}

.vt-b2b-gallery__status.is-empty,
.vt-b2b-gallery__status.is-error,
.vt-b2b-gallery__empty {
  padding: 22px 0 4px;
}

.vt-b2b-gallery__status.is-error {
  color: #9d2d24;
}

.vt-b2b-gallery__skeleton span {
  aspect-ratio: 4 / 3;
  border-radius: var(--vt-b2b-radius-md);
  background: linear-gradient(100deg, #ece8df 30%, #f7f4ed 50%, #ece8df 70%);
  background-size: 300% 100%;
  animation: vt-b2b-gallery-shimmer 1.2s ease-in-out infinite;
}

@keyframes vt-b2b-gallery-shimmer {
  to {
    background-position-x: -150%;
  }
}

.vt-b2b-gallery__load-more-wrap {
  display: flex;
  justify-content: center;
  padding-top: var(--vt-b2b-space-5);
}

.vt-b2b-gallery__load-more,
.vt-b2b-gallery__retry {
  min-height: 42px;
  padding: 10px 20px;
  border: 1px solid var(--vt-b2b-color-navy);
  border-radius: 999px;
  background: transparent;
  color: var(--vt-b2b-color-navy);
  font-weight: 600;
  cursor: pointer;
}

.vt-b2b-gallery__retry {
  min-height: 36px;
  margin-top: 10px;
  padding: 7px 16px;
}

.vt-b2b-gallery__load-more:hover,
.vt-b2b-gallery__retry:hover,
.vt-b2b-gallery__load-more:focus-visible,
.vt-b2b-gallery__retry:focus-visible {
  background: var(--vt-b2b-color-navy);
  color: #fff;
}

.vt-b2b-gallery__load-more:disabled {
  cursor: wait;
  opacity: 0.55;
}

body.vt-b2b-home-body--lightbox-open {
  overflow: hidden;
}

.vt-b2b-gallery__lightbox {
  position: fixed;
  inset: 0;
  z-index: 10020;
  display: grid;
  place-items: center;
  padding: clamp(16px, 3vw, 36px);
}

.vt-b2b-gallery__lightbox[hidden] {
  display: none;
}

.vt-b2b-gallery__lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 12, 23, 0.92);
}

.vt-b2b-gallery__lightbox-dialog {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(1120px, 100%);
  height: min(820px, calc(100vh - 48px));
  grid-template-columns: 52px minmax(0, 1fr) 52px;
  align-items: center;
}

.vt-b2b-gallery__lightbox-figure {
  display: grid;
  min-width: 0;
  max-height: 100%;
  place-items: center;
  gap: 12px;
}

.vt-b2b-gallery__lightbox-image {
  display: block;
  max-width: 100%;
  max-height: calc(100vh - 120px);
  border-radius: var(--vt-b2b-radius-md);
  object-fit: contain;
}

.vt-b2b-gallery__lightbox-caption {
  max-width: 70ch;
  color: #fff;
  font-size: 0.9rem;
  text-align: center;
}

.vt-b2b-gallery__lightbox-close,
.vt-b2b-gallery__lightbox-nav {
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  background: rgba(3, 12, 23, 0.45);
  color: #fff;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}

.vt-b2b-gallery__lightbox-close {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
}

.vt-b2b-gallery__lightbox-nav:disabled {
  cursor: default;
  opacity: 0.35;
}

.vt-b2b-gallery__lightbox-close:focus-visible,
.vt-b2b-gallery__lightbox-nav:focus-visible {
  outline: 2px solid var(--vt-b2b-color-gold);
  outline-offset: 3px;
}

/* Sections 08–09: DMC Insights and Featured Case Studies */
.vt-b2b-home__main:has(> .vt-b2b-insights + .vt-b2b-case-studies) {
  display: grid;
  grid-template-columns: minmax(0, 73fr) minmax(300px, 27fr);
}

.vt-b2b-home__main:has(> .vt-b2b-insights + .vt-b2b-case-studies) > section {
  grid-column: 1 / -1;
}

.vt-b2b-home__main > .vt-b2b-insights:has(+ .vt-b2b-case-studies) {
  grid-column: 1;
  padding-left: max(
    var(--container-gutter),
    calc((100vw - var(--container-width)) / 2)
  );
}

.vt-b2b-home__main > .vt-b2b-insights + .vt-b2b-case-studies {
  grid-column: 2;
  padding-right: max(
    var(--container-gutter),
    calc((100vw - var(--container-width)) / 2)
  );
}

.vt-b2b-insights {
  min-width: 0;
  padding: clamp(64px, 6vw, 88px) clamp(22px, 2.4vw, 36px)
    clamp(72px, 7vw, 98px) 0;
  border-top: 1px solid var(--color-section-border);
  background: var(--vt-b2b-color-ivory);
  color: var(--vt-b2b-color-ink);
}

.vt-b2b-insights__inner,
.vt-b2b-case-studies__inner {
  width: var(--vt-b2b-container);
  margin: 0 auto;
}

.vt-b2b-home__main
  > .vt-b2b-insights:has(+ .vt-b2b-case-studies)
  .vt-b2b-insights__inner,
.vt-b2b-home__main
  > .vt-b2b-insights
  + .vt-b2b-case-studies
  .vt-b2b-case-studies__inner {
  width: auto;
  margin: 0;
}

.vt-b2b-insights__header {
  max-width: 680px;
  margin-bottom: clamp(28px, 3vw, 42px);
}

.vt-b2b-insights__label,
.vt-b2b-case-studies__label {
  margin-bottom: var(--vt-b2b-space-2);
  color: var(--vt-b2b-color-gold);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  line-height: 1.4;
  text-transform: uppercase;
}

.vt-b2b-insights__title,
.vt-b2b-case-studies__title {
  font-family: var(--vt-b2b-font-serif);
  font-size: clamp(2rem, 3.2vw, 3rem);
  font-weight: 500;
  line-height: 1.08;
}

.vt-b2b-insights__title {
  color: var(--vt-b2b-color-navy);
}

.vt-b2b-insights__accent,
.vt-b2b-case-studies__accent {
  display: block;
  width: 48px;
  height: 1px;
  margin-top: var(--vt-b2b-space-3);
  background: var(--vt-b2b-color-gold);
}

.vt-b2b-insights__description,
.vt-b2b-case-studies__description {
  margin-top: var(--vt-b2b-space-4);
  font-size: 0.9rem;
  line-height: 1.7;
}

.vt-b2b-insights__description {
  max-width: 62ch;
  color: var(--color-text-muted);
}

.vt-b2b-insights__description p + p,
.vt-b2b-case-studies__description p + p {
  margin-top: var(--vt-b2b-space-2);
}

.vt-b2b-insights__list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 1.6vw, 22px);
}

.vt-b2b-insights__item {
  min-width: 0;
}

.vt-b2b-insights__card {
  display: flex;
  min-height: 100%;
  overflow: hidden;
  flex-direction: column;
  border: 1px solid var(--color-section-border);
  border-radius: var(--vt-b2b-radius-md);
  background: var(--vt-b2b-color-warm-white);
  transition:
    border-color var(--transition-fast),
    transform var(--transition-fast);
}

.vt-b2b-insights__card--linked:hover,
.vt-b2b-insights__card--linked:focus-visible {
  border-color: var(--color-accent-border);
  transform: translateY(-3px);
}

.vt-b2b-insights__card--linked:focus-visible {
  outline: 2px solid var(--vt-b2b-color-gold);
  outline-offset: 3px;
}

.vt-b2b-insights__media {
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: var(--vt-b2b-color-deep-navy);
}

.vt-b2b-insights__image,
.vt-b2b-insights__image-fallback {
  width: 100%;
  height: 100%;
}

.vt-b2b-insights__image {
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.vt-b2b-insights__card--linked:hover .vt-b2b-insights__image,
.vt-b2b-insights__card--linked:focus-visible .vt-b2b-insights__image {
  transform: scale(1.025);
}

.vt-b2b-insights__image-fallback {
  display: grid;
  place-items: center;
  background:
    linear-gradient(
      135deg,
      transparent 48%,
      rgba(198, 153, 74, 0.14) 49% 50%,
      transparent 51%
    ),
    var(--vt-b2b-color-deep-navy);
  color: var(--vt-b2b-color-gold-soft);
  font-family: var(--vt-b2b-font-serif);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.vt-b2b-insights__content {
  display: flex;
  min-height: 0;
  padding: clamp(16px, 1.8vw, 22px);
  flex: 1;
  flex-direction: column;
}

.vt-b2b-insights__publish-label,
.vt-b2b-case-studies__client {
  color: var(--vt-b2b-color-gold);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  line-height: 1.4;
  text-transform: uppercase;
}

.vt-b2b-insights__item-title {
  display: -webkit-box;
  margin-top: var(--vt-b2b-space-2);
  overflow: hidden;
  color: var(--vt-b2b-color-navy);
  font-family: var(--vt-b2b-font-serif);
  font-size: clamp(1.08rem, 1.5vw, 1.35rem);
  font-weight: 600;
  line-height: 1.3;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.vt-b2b-insights__excerpt {
  display: -webkit-box;
  margin-top: var(--vt-b2b-space-3);
  overflow: hidden;
  color: var(--color-text-muted);
  font-size: 0.82rem;
  line-height: 1.65;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}

.vt-b2b-insights__meta {
  display: flex;
  gap: var(--vt-b2b-space-2);
  align-items: center;
  margin-top: auto;
  padding-top: var(--vt-b2b-space-4);
  color: var(--color-text-faint);
  font-size: 0.72rem;
}

.vt-b2b-insights__meta > * + *::before {
  margin-right: var(--vt-b2b-space-2);
  content: "·";
}

.vt-b2b-insights__cta,
.vt-b2b-case-studies__cta {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  margin-top: var(--vt-b2b-space-4);
  color: var(--vt-b2b-color-gold);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.vt-b2b-case-studies {
  min-width: 0;
  padding: clamp(64px, 6vw, 88px) 0 clamp(72px, 7vw, 98px)
    clamp(24px, 2.7vw, 40px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: var(--vt-b2b-color-deep-navy);
  color: var(--vt-b2b-color-text);
}

.vt-b2b-case-studies__header {
  margin-bottom: clamp(28px, 3vw, 40px);
}

.vt-b2b-case-studies__title {
  color: var(--vt-b2b-color-warm-white);
  font-size: clamp(1.8rem, 2.4vw, 2.5rem);
}

.vt-b2b-case-studies__description {
  color: var(--vt-b2b-color-text-muted);
}

.vt-b2b-case-studies__list {
  display: grid;
  gap: var(--vt-b2b-space-4);
}

.vt-b2b-case-studies__item {
  min-width: 0;
  padding-top: var(--vt-b2b-space-4);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.vt-b2b-case-studies__item:first-child {
  padding-top: 0;
  border-top: 0;
}

.vt-b2b-case-studies__card {
  display: block;
  min-width: 0;
  color: var(--vt-b2b-color-text);
  transition: transform var(--transition-fast);
}

.vt-b2b-case-studies__article {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  gap: 14px;
  min-width: 0;
}

.vt-b2b-case-studies__item--featured .vt-b2b-case-studies__article {
  display: block;
}

.vt-b2b-case-studies__card--linked:hover,
.vt-b2b-case-studies__card--linked:focus-visible {
  transform: translateY(-2px);
}

.vt-b2b-case-studies__card--linked:focus-visible {
  border-radius: var(--vt-b2b-radius-sm);
  outline: 2px solid var(--vt-b2b-color-gold);
  outline-offset: 4px;
}

.vt-b2b-case-studies__media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  border-radius: var(--vt-b2b-radius-sm);
  background: var(--vt-b2b-color-navy);
}

.vt-b2b-case-studies__item--featured .vt-b2b-case-studies__media {
  margin-bottom: var(--vt-b2b-space-4);
  aspect-ratio: 16 / 9;
}

.vt-b2b-case-studies__image,
.vt-b2b-case-studies__image-fallback {
  width: 100%;
  height: 100%;
}

.vt-b2b-case-studies__image {
  object-fit: cover;
  opacity: 0.7;
  transition:
    opacity var(--transition-fast),
    transform var(--transition-slow);
}

.vt-b2b-case-studies__image-fallback {
  background:
    radial-gradient(
      circle at 72% 24%,
      rgba(198, 153, 74, 0.28) 0 2px,
      transparent 3px
    ),
    linear-gradient(
      145deg,
      transparent 45%,
      rgba(198, 153, 74, 0.12) 46% 47%,
      transparent 48%
    ),
    var(--vt-b2b-color-navy);
}

.vt-b2b-case-studies__card--linked:hover .vt-b2b-case-studies__image,
.vt-b2b-case-studies__card--linked:focus-visible .vt-b2b-case-studies__image {
  opacity: 0.86;
  transform: scale(1.02);
}

.vt-b2b-case-studies__content {
  min-width: 0;
}

.vt-b2b-case-studies__item-title {
  display: -webkit-box;
  margin-top: var(--vt-b2b-space-2);
  overflow: hidden;
  color: var(--vt-b2b-color-warm-white);
  font-family: var(--vt-b2b-font-serif);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.35;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.vt-b2b-case-studies__item--featured .vt-b2b-case-studies__item-title {
  font-size: clamp(1.3rem, 2vw, 1.75rem);
}

.vt-b2b-case-studies__summary {
  display: -webkit-box;
  margin-top: var(--vt-b2b-space-3);
  overflow: hidden;
  color: var(--vt-b2b-color-text-muted);
  font-size: 0.78rem;
  line-height: 1.65;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.vt-b2b-case-studies__item--featured .vt-b2b-case-studies__summary {
  -webkit-line-clamp: 5;
}

/* Shared section heading utility for Sections 10–11 */
.vt-b2b-section-heading {
  --vt-b2b-section-heading-color: var(--vt-b2b-color-navy);
  --vt-b2b-section-description-color: var(--color-text-muted);
}

.vt-b2b-section-heading__label {
  margin-bottom: var(--vt-b2b-space-2);
  color: var(--vt-b2b-color-gold);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  line-height: 1.4;
  text-transform: uppercase;
}

.vt-b2b-section-heading__title {
  color: var(--vt-b2b-section-heading-color);
  font-family: var(--vt-b2b-font-serif);
  font-size: clamp(2rem, 3.4vw, 3.15rem);
  font-weight: 500;
  line-height: 1.08;
}

.vt-b2b-section-heading__accent {
  display: block;
  width: 48px;
  height: 1px;
  margin-top: var(--vt-b2b-space-3);
  background: var(--vt-b2b-color-gold);
}

.vt-b2b-section-heading__description {
  max-width: 62ch;
  margin-top: var(--vt-b2b-space-4);
  color: var(--vt-b2b-section-description-color);
  font-size: 0.92rem;
  line-height: 1.75;
}

.vt-b2b-section-heading__description p + p {
  margin-top: var(--vt-b2b-space-2);
}

/* Section 10: FAQ – Partner Benefits */
.vt-b2b-faq {
  padding: clamp(64px, 6.5vw, 88px) 0;
  border-top: 1px solid var(--color-section-border);
  background: linear-gradient(180deg, #f8f4ed 0%, #fcfaf7 100%);
  color: var(--vt-b2b-color-ink);
}

.vt-b2b-faq__inner {
  display: grid;
  grid-template-columns: minmax(280px, 0.43fr) minmax(0, 0.57fr);
  gap: clamp(44px, 5.5vw, 78px);
  width: var(--vt-b2b-container);
  margin: 0 auto;
  align-items: start;
}

.vt-b2b-faq__intro {
  max-width: 460px;
  padding-top: 6px;
}

.vt-b2b-faq .vt-b2b-section-heading__title {
  max-width: 12ch;
  font-size: clamp(2rem, 3.2vw, 3rem);
  line-height: 1.1;
  text-wrap: balance;
}

.vt-b2b-faq .vt-b2b-section-heading__accent {
  width: clamp(58px, 6vw, 82px);
  margin-top: var(--vt-b2b-space-4);
}

.vt-b2b-faq .vt-b2b-section-heading__description {
  max-width: 40ch;
  margin-top: var(--vt-b2b-space-5);
  font-size: clamp(0.98rem, 1.15vw, 1.08rem);
  line-height: 1.8;
}

.vt-b2b-faq__accordion {
  border-top: 1px solid rgba(16, 42, 67, 0.22);
}

.vt-b2b-faq__item {
  border-bottom: 1px solid rgba(16, 42, 67, 0.22);
  transition: border-color 230ms ease-out;
}

.vt-b2b-faq__item:hover,
.vt-b2b-faq__item.is-open {
  border-color: var(--vt-b2b-color-gold);
}

.vt-b2b-faq__question-heading {
  font: inherit;
}

.vt-b2b-faq__question {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 32px;
  gap: clamp(18px, 2vw, 30px);
  width: 100%;
  min-height: 72px;
  padding: clamp(22px, 2.4vw, 30px) 2px;
  align-items: center;
  color: var(--vt-b2b-color-navy);
  font-size: clamp(1.03rem, 1.35vw, 1.22rem);
  font-weight: 650;
  line-height: 1.45;
  text-align: left;
  transition: color 230ms ease-out;
}

.vt-b2b-faq__question:hover {
  color: var(--vt-b2b-color-gold);
}

.vt-b2b-faq__question:focus-visible {
  border-radius: var(--vt-b2b-radius-sm);
  outline: 2px solid var(--vt-b2b-color-gold);
  outline-offset: 3px;
}

.vt-b2b-faq__icon {
  position: relative;
  width: 24px;
  height: 24px;
  color: var(--vt-b2b-color-gold);
  transition: transform 230ms ease-out;
}

.vt-b2b-faq__icon span {
  position: absolute;
  top: 50%;
  right: 3px;
  width: 9px;
  height: 1px;
  background: currentColor;
  transform-origin: right center;
}

.vt-b2b-faq__icon span:first-child {
  transform: translateY(-50%) rotate(42deg);
}

.vt-b2b-faq__icon span:last-child {
  transform: translateY(-50%) rotate(-42deg);
}

.vt-b2b-faq__question:hover .vt-b2b-faq__icon,
.vt-b2b-faq__question:focus-visible .vt-b2b-faq__icon {
  transform: translateX(5px);
}

.vt-b2b-faq__question[aria-expanded="true"] .vt-b2b-faq__icon {
  transform: rotate(90deg);
}

.vt-b2b-faq__question[aria-expanded="true"]:hover .vt-b2b-faq__icon,
.vt-b2b-faq__question[aria-expanded="true"]:focus-visible .vt-b2b-faq__icon {
  transform: translateX(5px) rotate(90deg);
}

.vt-b2b-faq__panel {
  padding: 0 58px clamp(24px, 2.5vw, 32px) 2px;
}

.vt-b2b-faq__answer {
  max-width: 62ch;
  color: var(--color-text-muted);
  font-size: clamp(1rem, 1.15vw, 1.08rem);
  line-height: 1.8;
}

.vt-b2b-faq__item.is-open .vt-b2b-faq__answer {
  animation: vt-b2b-faq-answer-in 230ms ease-out both;
}

@keyframes vt-b2b-faq-answer-in {
  from {
    opacity: 0;
    transform: translateY(-5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.vt-b2b-faq__answer p + p,
.vt-b2b-faq__answer ul + p,
.vt-b2b-faq__answer ol + p {
  margin-top: var(--vt-b2b-space-3);
}

.vt-b2b-faq__answer :where(ul, ol) {
  margin: var(--vt-b2b-space-3) 0;
  padding-left: 1.2rem;
}

.vt-b2b-faq__answer ul {
  list-style: disc;
}

.vt-b2b-faq__answer ol {
  list-style: decimal;
}

/* Section 11: Request a Quote & B2B Tariff */
.vt-b2b-quote {
  position: relative;
  overflow: hidden;
  padding: clamp(72px, 8vw, 108px) 0;
  background: var(--vt-b2b-color-deep-navy);
  color: var(--vt-b2b-color-text);
}

.vt-b2b-quote::before {
  position: absolute;
  top: -180px;
  left: -160px;
  width: 480px;
  height: 480px;
  border: 1px solid rgba(198, 153, 74, 0.1);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.vt-b2b-quote__inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: clamp(48px, 7vw, 104px);
  width: var(--vt-b2b-container);
  margin: 0 auto;
  align-items: center;
}

.vt-b2b-quote--without-form .vt-b2b-quote__inner {
  grid-template-columns: minmax(0, 760px);
}

.vt-b2b-quote .vt-b2b-section-heading {
  --vt-b2b-section-heading-color: var(--vt-b2b-color-warm-white);
  --vt-b2b-section-description-color: var(--vt-b2b-color-text-muted);
}

.vt-b2b-quote__actions {
  display: flex;
  gap: var(--vt-b2b-space-3);
  margin-top: var(--vt-b2b-space-6);
  flex-wrap: wrap;
}

.vt-b2b-quote__form-shell {
  min-width: 0;
  padding: clamp(24px, 3vw, 40px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--vt-b2b-radius-md);
  background: var(--vt-b2b-color-ivory);
  box-shadow: 0 16px 36px rgba(1, 11, 20, 0.16);
  color: var(--vt-b2b-color-ink);
}

.vt-b2b-quote__form,
.vt-b2b-quote__form form {
  min-width: 0;
  max-width: 100%;
}

.vt-b2b-quote__form :where(label) {
  display: block;
  margin-bottom: var(--vt-b2b-space-2);
  color: var(--vt-b2b-color-navy);
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.45;
}

.vt-b2b-quote__form
  :where(
    input:not([type="checkbox"]):not([type="radio"]):not([type="hidden"]):not(
        [type="submit"]
      ),
    textarea,
    select
  ) {
  width: 100%;
  min-height: 44px;
  max-width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--color-section-border-strong);
  border-radius: var(--vt-b2b-radius-sm);
  background: var(--vt-b2b-color-warm-white);
  color: var(--vt-b2b-color-ink);
  line-height: 1.45;
}

.vt-b2b-quote__form :where(textarea) {
  min-height: 120px;
  resize: vertical;
}

.vt-b2b-quote__form
  :where(
    input:not([type="checkbox"]):not([type="radio"]):not([type="hidden"]):not(
        [type="submit"]
      ),
    textarea,
    select
  ):focus {
  border-color: var(--vt-b2b-color-gold);
  outline: 2px solid var(--color-accent-border);
  outline-offset: 1px;
}

.vt-b2b-quote__form :where(input[type="checkbox"], input[type="radio"]) {
  accent-color: var(--vt-b2b-color-gold);
}

.vt-b2b-quote__form :where(button, input[type="submit"]) {
  display: inline-flex;
  min-height: 44px;
  padding: 0 22px;
  border: 1px solid var(--vt-b2b-color-gold);
  border-radius: var(--vt-b2b-radius-sm);
  align-items: center;
  justify-content: center;
  background: var(--vt-b2b-color-gold);
  color: var(--color-on-accent);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  line-height: 1;
  text-transform: uppercase;
}

.vt-b2b-quote__form :where(button, input[type="submit"]):hover {
  border-color: var(--vt-b2b-color-gold-soft);
  background: var(--vt-b2b-color-gold-soft);
}

.vt-b2b-quote__form :where(button, input[type="submit"]):focus-visible {
  outline: 2px solid var(--vt-b2b-color-navy);
  outline-offset: 3px;
}

.vt-b2b-quote__form :where([aria-invalid="true"]) {
  border-color: #9b3f45;
}

.vt-b2b-quote__form :where([role="alert"]) {
  margin-top: var(--vt-b2b-space-2);
  color: #83343a;
  font-size: 0.78rem;
  line-height: 1.5;
}

.vt-b2b-quote__fallback {
  color: var(--color-text-muted);
  font-size: 0.94rem;
  line-height: 1.75;
}

.vt-b2b-quote__fallback p + p {
  margin-top: var(--vt-b2b-space-3);
}

.vt-b2b-home__footer {
  margin-top: var(--vt-b2b-space-9);
  padding-top: var(--vt-b2b-space-8);
  background: var(--vt-b2b-color-deep-navy);
  color: var(--vt-b2b-color-text);
}

.vt-b2b-home__footer-inner {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--vt-b2b-space-6);
  padding-bottom: var(--vt-b2b-space-7);
}

.vt-b2b-home__footer-title {
  margin-bottom: var(--vt-b2b-space-3);
  color: var(--vt-b2b-color-warm-white);
  font-size: var(--font-size-base);
}

.vt-b2b-home__footer-copy,
.vt-b2b-home__footer-list {
  color: var(--vt-b2b-color-text-muted);
  line-height: 1.7;
}

.vt-b2b-home__footer-list li + li {
  margin-top: var(--vt-b2b-space-2);
}

.vt-b2b-home__footer-bottom {
  padding-bottom: var(--vt-b2b-space-5);
  color: var(--color-text-inverse-faint);
}

@media (max-width: 1080px) {
  .vt-b2b-quote__inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .vt-b2b-faq__inner {
    grid-template-columns: minmax(240px, 0.4fr) minmax(0, 0.6fr);
    gap: clamp(36px, 4vw, 52px);
  }

  .vt-b2b-quote__inner {
    gap: var(--vt-b2b-space-7);
  }

  .vt-b2b-home__main:has(> .vt-b2b-insights + .vt-b2b-case-studies) {
    grid-template-columns: minmax(0, 1fr);
  }

  .vt-b2b-home__main > .vt-b2b-insights:has(+ .vt-b2b-case-studies),
  .vt-b2b-home__main > .vt-b2b-insights + .vt-b2b-case-studies {
    grid-column: 1;
    padding: 64px 0;
  }

  .vt-b2b-home__main
    > .vt-b2b-insights:has(+ .vt-b2b-case-studies)
    .vt-b2b-insights__inner,
  .vt-b2b-home__main
    > .vt-b2b-insights
    + .vt-b2b-case-studies
    .vt-b2b-case-studies__inner {
    width: var(--vt-b2b-container);
    margin: 0 auto;
  }

  .vt-b2b-insights__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .vt-b2b-case-studies__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .vt-b2b-case-studies__item {
    padding: 0;
    border-top: 0;
  }

  .vt-b2b-case-studies__article,
  .vt-b2b-case-studies__item--featured .vt-b2b-case-studies__article {
    display: block;
  }

  .vt-b2b-case-studies__media,
  .vt-b2b-case-studies__item--featured .vt-b2b-case-studies__media {
    margin-bottom: var(--vt-b2b-space-4);
    aspect-ratio: 16 / 9;
  }

  .vt-b2b-home__hero-shell {
    padding-top: clamp(130px, 16vh, 166px);
  }

  .vt-b2b-why__inner {
    grid-template-columns: 1fr;
    gap: var(--vt-b2b-space-7);
  }

  .vt-b2b-why__intro {
    max-width: 620px;
  }

  .vt-b2b-why__items {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    row-gap: var(--vt-b2b-space-6);
  }

  .vt-b2b-why__item:nth-child(3n + 1) {
    padding-left: 0;
    border-left: 0;
  }

  .vt-b2b-capabilities__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .vt-b2b-destinations__header {
    align-items: start;
    flex-direction: column;
    gap: var(--vt-b2b-space-4);
  }

  .vt-b2b-destinations__description {
    max-width: 68ch;
  }

  .vt-b2b-destinations__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .vt-b2b-network__inner {
    width: var(--vt-b2b-container);
  }

  .vt-b2b-network__header {
    max-width: 680px;
  }

  .vt-b2b-network__list {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 16px;
  }

  .vt-b2b-network__item {
    grid-column: span 2;
  }

  .vt-b2b-network__item:nth-child(3n + 1):last-child {
    grid-column: 3 / span 2;
  }

  .vt-b2b-network__item:nth-child(3n + 1):nth-last-child(2) {
    grid-column: 2 / span 2;
  }

  .vt-b2b-achievements__list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    row-gap: var(--vt-b2b-space-7);
  }

  .vt-b2b-achievements__item {
    padding-right: clamp(18px, 3vw, 30px);
    padding-left: clamp(18px, 3vw, 30px);
  }

  .vt-b2b-achievements__item:nth-child(3n + 1) {
    padding-left: 0;
    border-left: 0;
  }

  .vt-b2b-gallery__grid,
  .vt-b2b-gallery__skeleton {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 920px) {
  .vt-b2b-faq__inner {
    grid-template-columns: minmax(0, 1fr);
    gap: var(--vt-b2b-space-7);
  }

  .vt-b2b-faq__intro {
    max-width: 620px;
    padding-top: 0;
  }

  .vt-b2b-faq .vt-b2b-section-heading__title {
    max-width: 16ch;
  }

  .vt-b2b-home__hero {
    padding-bottom: 20px;
  }

  .vt-b2b-home__hero-frame {
    min-height: auto;
  }

  .vt-b2b-home__hero-shell {
    padding: 126px 0 22px;
  }

  .vt-b2b-home__hero-title {
    max-width: 11ch;
    font-size: clamp(2.8rem, 8vw, 4.3rem);
  }

  .vt-b2b-home__hero-stats-grid,
  .vt-b2b-home__footer-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .vt-b2b-home__hero-stat:nth-child(odd) {
    border-left: 0;
    padding-left: 0;
  }
}

@media (max-width: 767px) {
  .vt-b2b-home {
    --vt-b2b-container: calc(100% - 28px);
  }

  .vt-b2b-gallery__categories,
  .vt-b2b-gallery__category.is-open {
    grid-template-columns: minmax(0, 1fr);
  }

  .vt-b2b-gallery__category--featured,
  .vt-b2b-gallery__category.is-open,
  .vt-b2b-gallery__category--featured.is-open
    .vt-b2b-gallery__category-heading {
    grid-column: auto;
  }

  .vt-b2b-gallery__trigger,
  .vt-b2b-gallery__category--featured .vt-b2b-gallery__trigger {
    min-height: clamp(196px, 58vw, 220px);
  }

  .vt-b2b-gallery__card-content {
    padding: 20px;
  }

  .vt-b2b-gallery__category-title {
    font-size: clamp(1.35rem, 7vw, 1.8rem);
  }

  .vt-b2b-gallery__card-footer {
    margin-top: 15px;
  }

  .vt-b2b-gallery__panel {
    grid-column: auto;
  }

  .vt-b2b-home__hero-overlay {
    background:
      linear-gradient(
        180deg,
        rgba(7, 15, 26, 0.78) 0%,
        rgba(7, 15, 26, 0.34) 28%,
        rgba(7, 15, 26, 0.92) 100%
      ),
      linear-gradient(
        90deg,
        rgba(7, 15, 26, 0.82) 0%,
        rgba(7, 15, 26, 0.5) 100%
      );
  }

  .vt-b2b-home__hero-frame {
    min-height: auto;
  }

  .vt-b2b-home__hero-shell {
    padding: 112px 0 18px;
  }

  .vt-b2b-home__hero-content {
    max-width: 100%;
  }

  .vt-b2b-home__hero-title {
    max-width: 8.5ch;
    font-size: clamp(2.5rem, 10vw, 3.6rem);
  }

  .vt-b2b-home__hero-description {
    max-width: 30rem;
    font-size: 0.94rem;
    line-height: 1.68;
  }

  .vt-b2b-home__hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .vt-b2b-home__hero-actions .vt-b2b-home__button {
    width: 100%;
  }

  .vt-b2b-home__hero-stats {
    width: 100%;
    margin-top: 30px;
    padding: 14px 16px;
    overflow-x: auto;
  }

  .vt-b2b-home__hero-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(140px, 1fr));
    min-width: 100%;
  }

  .vt-b2b-home__hero-stat {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 10px;
    padding: 8px 10px 8px 0;
  }

  .vt-b2b-home__hero-stat-icon {
    width: 44px;
    height: 44px;
  }

  .vt-b2b-home__hero-stat-icon img {
    width: 26px;
    height: 26px;
  }

  .vt-b2b-home__section-shell {
    padding: var(--vt-b2b-space-6) 0;
  }

  .vt-b2b-home__footer-inner {
    grid-template-columns: 1fr;
  }

  .vt-b2b-why,
  .vt-b2b-capabilities {
    padding: 56px 0;
  }

  .vt-b2b-why__inner {
    gap: var(--vt-b2b-space-6);
  }

  .vt-b2b-why__title,
  .vt-b2b-capabilities__title {
    font-size: clamp(2rem, 9vw, 2.7rem);
  }

  .vt-b2b-why__items {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: var(--vt-b2b-space-6);
  }

  .vt-b2b-why__item {
    padding-right: 14px;
    padding-left: 14px;
  }

  .vt-b2b-why__item:nth-child(3n + 1) {
    padding-left: 14px;
    border-left: 1px solid var(--color-section-border);
  }

  .vt-b2b-why__item:nth-child(odd) {
    padding-left: 0;
    border-left: 0;
  }

  .vt-b2b-why__item-title {
    font-size: 0.94rem;
  }

  .vt-b2b-why__item-description,
  .vt-b2b-capabilities__item-description {
    font-size: 0.84rem;
  }

  .vt-b2b-capabilities__header {
    margin-bottom: var(--vt-b2b-space-6);
  }

  .vt-b2b-capabilities__grid {
    grid-template-columns: 1fr;
  }

  .vt-b2b-capabilities__card {
    min-height: 0;
    padding: 20px;
  }

  .vt-b2b-destinations {
    padding: 56px 0;
  }

  .vt-b2b-destinations__title {
    font-size: clamp(2rem, 9vw, 2.8rem);
  }

  .vt-b2b-destinations__grid {
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: minmax(270px, 82vw);
    gap: 14px;
    padding-bottom: 12px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-padding-inline: 2px;
    scroll-snap-type: inline mandatory;
    scrollbar-width: thin;
  }

  .vt-b2b-destinations__grid-item {
    scroll-snap-align: start;
  }

  .vt-b2b-destinations__card {
    min-height: 360px;
    aspect-ratio: 4 / 5;
  }

  .vt-b2b-destinations__content {
    padding: 22px;
  }

  .vt-b2b-destinations__item-title {
    font-size: 1.65rem;
  }

  .vt-b2b-network {
    padding: 56px 0;
  }

  .vt-b2b-network__list {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
  }

  .vt-b2b-network__item,
  .vt-b2b-network__item:nth-child(3n + 1):last-child,
  .vt-b2b-network__item:nth-child(3n + 1):nth-last-child(2) {
    grid-column: span 2;
  }

  .vt-b2b-network__item:nth-child(odd):last-child {
    grid-column: 2 / span 2;
  }

  .vt-b2b-network__logo {
    min-height: 108px;
    padding: 16px;
  }

  .vt-b2b-network__image {
    max-width: min(80%, 142px);
    max-height: 52px;
  }

  .vt-b2b-achievements,
  .vt-b2b-gallery {
    padding: 56px 0;
  }

  .vt-b2b-achievements::after {
    right: -170px;
    width: 540px;
    opacity: 0.48;
  }

  .vt-b2b-achievements__title,
  .vt-b2b-gallery__title {
    font-size: clamp(2rem, 9vw, 2.8rem);
  }

  .vt-b2b-achievements__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: var(--vt-b2b-space-6);
  }

  .vt-b2b-achievements__item,
  .vt-b2b-achievements__item:nth-child(3n + 1) {
    padding-right: 16px;
    padding-left: 16px;
    border-left: 1px solid rgba(255, 255, 255, 0.12);
  }

  .vt-b2b-achievements__item:nth-child(odd) {
    padding-left: 0;
    border-left: 0;
  }

  .vt-b2b-achievements__value {
    font-size: clamp(1.8rem, 9vw, 2.65rem);
  }

  .vt-b2b-gallery__grid,
  .vt-b2b-gallery__skeleton {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    padding-top: 18px;
  }

  .vt-b2b-gallery__figure {
    aspect-ratio: 4 / 3;
  }

  .vt-b2b-gallery__lightbox {
    padding: 12px;
  }

  .vt-b2b-gallery__lightbox-dialog {
    height: calc(100vh - 24px);
    grid-template-columns: 42px minmax(0, 1fr) 42px;
  }

  .vt-b2b-gallery__lightbox-close,
  .vt-b2b-gallery__lightbox-nav {
    width: 38px;
    height: 38px;
  }

  .vt-b2b-home__main > .vt-b2b-insights:has(+ .vt-b2b-case-studies),
  .vt-b2b-home__main > .vt-b2b-insights + .vt-b2b-case-studies {
    padding: 56px 0;
  }

  .vt-b2b-insights__title,
  .vt-b2b-case-studies__title {
    font-size: clamp(2rem, 9vw, 2.8rem);
  }

  .vt-b2b-insights__list,
  .vt-b2b-case-studies__list {
    grid-template-columns: minmax(0, 1fr);
  }

  .vt-b2b-insights__card--linked:hover,
  .vt-b2b-insights__card--linked:focus-visible,
  .vt-b2b-case-studies__card--linked:hover,
  .vt-b2b-case-studies__card--linked:focus-visible {
    transform: none;
  }

  .vt-b2b-faq,
  .vt-b2b-quote {
    padding: 56px 0;
  }

  .vt-b2b-section-heading__title {
    font-size: clamp(2rem, 9vw, 2.8rem);
  }

  .vt-b2b-faq__question {
    gap: var(--vt-b2b-space-3);
    min-height: 64px;
    padding: 20px 0;
  }

  .vt-b2b-faq__panel {
    padding: 0 42px 22px 0;
  }

  .vt-b2b-faq .vt-b2b-section-heading__title {
    font-size: clamp(2rem, 9vw, 2.55rem);
  }

  .vt-b2b-faq .vt-b2b-section-heading__description {
    margin-top: var(--vt-b2b-space-4);
    font-size: 1rem;
  }

  .vt-b2b-quote__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .vt-b2b-quote__actions .vt-b2b-home__button {
    width: 100%;
  }

  .vt-b2b-quote__form-shell {
    padding: 22px 18px;
  }
}

@media (max-width: 420px) {
  .vt-b2b-network__list {
    grid-template-columns: minmax(0, 1fr);
  }

  .vt-b2b-network__item,
  .vt-b2b-network__item:nth-child(odd):last-child,
  .vt-b2b-network__item:nth-child(3n + 1):last-child,
  .vt-b2b-network__item:nth-child(3n + 1):nth-last-child(2) {
    grid-column: 1;
  }

  .vt-b2b-gallery__grid,
  .vt-b2b-gallery__skeleton {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .vt-b2b-home *,
  .vt-b2b-home *::before,
  .vt-b2b-home *::after {
    animation: none !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .vt-b2b-capabilities__card--linked:hover,
  .vt-b2b-capabilities__card--linked:focus-visible {
    transform: none;
  }

  .vt-b2b-destinations__card:hover .vt-b2b-destinations__image,
  .vt-b2b-destinations__card--linked:focus-visible .vt-b2b-destinations__image {
    transform: none;
  }

  .vt-b2b-network__logo--linked:hover,
  .vt-b2b-network__logo--linked:focus-visible,
  .vt-b2b-network__logo--linked.vt-b2b-network__logo--photographic:hover
    .vt-b2b-network__image,
  .vt-b2b-network__logo--linked.vt-b2b-network__logo--photographic:focus-visible
    .vt-b2b-network__image {
    transform: none;
  }

  .vt-b2b-gallery__figure:hover .vt-b2b-gallery__image {
    transform: none;
  }

  .vt-b2b-insights__card--linked:hover,
  .vt-b2b-insights__card--linked:focus-visible,
  .vt-b2b-insights__card--linked:hover .vt-b2b-insights__image,
  .vt-b2b-insights__card--linked:focus-visible .vt-b2b-insights__image,
  .vt-b2b-case-studies__card--linked:hover,
  .vt-b2b-case-studies__card--linked:focus-visible,
  .vt-b2b-case-studies__card--linked:hover .vt-b2b-case-studies__image,
  .vt-b2b-case-studies__card--linked:focus-visible .vt-b2b-case-studies__image {
    transform: none;
  }
}
