:root {
  --vs-bg: #f7f4ed;
  --vs-card: #fffdfa;
  --vs-ink: #221d19;
  --vs-muted: #746f68;
  --vs-border: #e3ded5;
  --vs-dark: #120d09;
  --vs-sage: #9caf9a;
  --vs-radius: 28px;
  --vs-container: 1640px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--vs-bg);
  color: var(--vs-ink);
  font-family: Inter, Arial, sans-serif;
}

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

.vs-container {
  width: min(var(--vs-container), calc(100% - 48px));
  margin: 0 auto;
}

.vs-hero {
  position: relative;
  min-height: 100vh;
  padding: 32px;
  overflow: hidden;
  color: #fff;
}

.vs-hero-bg,
.vs-hero-bg img,
.vs-hero-overlay {
  position: absolute;
  inset: 0;
}

.vs-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vs-hero-overlay {
  background:
    linear-gradient(90deg, rgba(20, 14, 10, 0.62), rgba(20, 14, 10, 0.16)),
    linear-gradient(180deg, rgba(20, 14, 10, 0.28), rgba(247, 244, 237, 0.5));
  z-index: 1;
}

.vs-header,
.vs-hero-content,
.vs-hero-features {
  position: relative;
  z-index: 2;
}

.vs-header {
  position: fixed;
  top: 24px;
  left: 50%;
  z-index: 50;

  width: min(1720px, calc(100% - 96px));
  height: 72px;
  transform: translateX(-50%);

  display: block;
  color: #fff;
}

.vs-header-bar {
  position: relative;
  width: 100%;
  min-height: 72px;
  padding: 0 24px 0 92px;

  display: grid;
  grid-template-columns: minmax(180px, 1fr) auto minmax(180px, 1fr);
  align-items: center;
  gap: 32px;

  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.1);
}

.vs-header.is-scrolled .vs-header-bar {
  background: rgba(247, 244, 237, 0.86);
  border-color: rgba(34, 29, 25, 0.12);
  box-shadow: 0 18px 60px rgba(34, 29, 25, 0.1);
}

.vs-header.is-scrolled {
  color: var(--vs-ink);
}

.vs-logo-icon {
  position: absolute;
  left: -28px;
  top: 50%;
  z-index: 3;
  transform: translateY(-50%);

  width: 102px;
  height: 102px;

  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.1);

  display: flex;
  align-items: center;
  justify-content: center;
  color: inherit;
  text-decoration: none;
  transition:
    transform 0.35s ease,
    border-color 0.35s ease,
    background 0.35s ease;
}

.vs-logo-icon::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: inherit;
}

.vs-header.is-scrolled .vs-logo-icon {
  background: rgba(247, 244, 237, 0.88);
  border-color: rgba(34, 29, 25, 0.12);
}

.vs-header.is-scrolled .vs-logo-icon::before {
  border-color: rgba(34, 29, 25, 0.12);
}

.vs-logo-icon:hover {
  transform: translateY(-50%) rotate(8deg) scale(1.03);
  border-color: rgba(255, 255, 255, 0.5);
}

.vs-logo-icon svg,
.vs-logo-icon img {
  position: relative;
  z-index: 2;
  width: 60px;
  height: 60px;
  object-fit: contain;
  display: block;
}

.vs-logo-icon svg path {
  fill: currentColor !important;
}

.vs-logo-text {
  min-width: 0;
  color: inherit;
  font-family: "Space Grotesk", sans-serif;
  font-size: 2.5rem;
  line-height: 1;
  font-weight: 700;
  letter-spacing: -0.04em;
  white-space: nowrap;
}

.vs-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: inherit;
  text-decoration: none;
  font-family: "Space Grotesk", sans-serif;
  font-size: 24px;
  font-weight: 700;
}

.vs-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 42px;
}

.vs-nav a,
.vs-header-btn {
  color: inherit;
  text-decoration: none;
  opacity: 0.82;
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}

.vs-nav a:hover,
.vs-header-btn:hover {
  opacity: 1;
}

.vs-header-btn {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 28px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
}

.vs-header.is-scrolled .vs-header-btn {
  border-color: rgba(34, 29, 25, 0.14);
  background: rgba(255, 255, 255, 0.34);
}

.vs-hero-content {
  max-width: 900px;
  margin: 96px auto 0;
}

.vs-pill {
  display: inline-flex;
  padding: 12px 22px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  margin-bottom: 48px;
  color: rgba(255, 255, 255, 0.82);
}

.vs-hero h1,
.vs-section h2,
.vs-consultation h2 {
  font-family: "Space Grotesk", sans-serif;

  line-height: 0.95;
  letter-spacing: -0.06em;
}

.vs-section h2,
.vs-consultation h2 {
  font-weight: 500;
  font-size: clamp(4rem, 6vw, 6rem);
}

.vs-hero h1 {
  font-size: clamp(4rem, 9vw, 10rem);
  margin: 0 0 32px;
  font-weight: 700;
  font-size: clamp(4.5rem, 6vw, 7rem);
}

.vs-hero p {
  max-width: 760px;
  font-size: clamp(1.2rem, 2vw, 2rem);
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.82);
}

.vs-main-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 72px;
  padding: 0 42px;
  margin-top: 40px;
  border-radius: 999px;
  background: #fff;
  color: #111;
  text-decoration: none;
  border: 0;
  font-weight: 600;
  cursor: pointer;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.vs-main-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.16);
}

.vs-hero-features {
  position: relative;
  margin-top: 64px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;

  max-width: 1200px;
}

.vs-hero-features div {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.72);
}

.vs-hero-features span {
  width: 24px;
  height: 24px;
  border: 1px solid currentColor;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 12px;
}

.vs-section {
  padding: 110px 0;
  border-bottom: 1px solid var(--vs-border);
}

.vs-eyebrow {
  margin: 0 0 28px;
  text-transform: uppercase;
  letter-spacing: 0.35em;
  font-size: 0.85rem;
  color: var(--vs-muted);
}

.vs-section h2,
.vs-consultation h2 {
  max-width: 980px;
  margin: 0 0 28px;
  font-size: clamp(3rem, 6vw, 7rem);
}

.vs-section-text {
  max-width: 780px;
  font-size: 1.45rem;
  line-height: 1.5;
  color: var(--vs-muted);
  margin-bottom: 80px;
}

.vs-grid {
  display: grid;
  gap: 24px;
}

.vs-grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

.vs-grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.vs-card {
  min-height: 250px;
  padding: 44px;
  border: 1px solid var(--vs-border);
  border-radius: var(--vs-radius);
  background: rgba(255, 255, 255, 0.55);
}

.vs-card-icon {
  width: 76px;
  height: 76px;
  border-radius: 24px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.75),
    rgba(241, 238, 233, 0.95)
  );
  border: 1px solid rgba(34, 29, 25, 0.08);
  display: grid;
  place-items: center;
  margin-bottom: 64px;
  color: var(--vs-muted);
  font-size: 2rem;
  box-shadow: 0 18px 50px rgba(34, 29, 25, 0.06);
}
.vs-card h3 {
  margin: 0 0 14px;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 600;
  font-size: 1.5rem;
  margin: 0 0 14px;
}

.vs-card p,
.vs-step p,
.vs-consultation p {
  margin: 0;
  color: var(--vs-muted);
  font-size: 1.1rem;
  line-height: 1.45;
}

.vs-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-top: 90px;
  position: relative;
}

.vs-steps::before {
  content: "";
  position: absolute;
  top: 52px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--vs-border);
}

.vs-step {
  position: relative;
  z-index: 1;
}

.vs-step span {
  width: 108px;
  height: 108px;
  border-radius: 50%;
  background: var(--vs-bg);
  border: 1px solid var(--vs-border);
  display: grid;
  place-items: center;
  margin-bottom: 48px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.5rem;
  color: var(--vs-muted);
}

.vs-step h3 {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 400;
  font-size: 1.7rem;
  margin: 0 0 18px;
}

/* .vs-brands {
  padding: 120px 0;
  border-bottom: 1px solid var(--vs-border);
  text-align: center;
  overflow: hidden;
} */

/* .vs-brand-list {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  margin-top: 70px;
  color: #aaa39b;
  font-family: "Space Grotesk", sans-serif;
  font-size: 2rem;
} */

.vs-consultation {
  padding: 150px 0;
  background: radial-gradient(circle at 70% 20%, #33231d, #100b08 62%);
  color: #fff;
}

.vs-consultation-grid {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 90px;
  align-items: center;
}

.vs-consultation p {
  max-width: 600px;
  font-size: 1.5rem;
}

.vs-form {
  padding: 48px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.04);
}

.vs-form label {
  display: block;
  margin-bottom: 24px;
}

.vs-form span {
  display: block;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.48);
}

.vs-form input {
  width: 100%;
  height: 64px;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  color: #fff;
  font-size: 1.3rem;
  outline: none;
}

.vs-form .vs-main-btn {
  width: 100%;
  margin-top: 16px;
}

.vs-contacts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: start;
}

.vs-contact-list {
  display: grid;
  gap: 0;
}

.vs-contact-item {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 28px 16px;
  border-bottom: 1px solid var(--vs-border);
  color: inherit;
  text-decoration: none;
}

.vs-contact-item span {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #f1eee9;
  display: grid;
  place-items: center;
}

.vs-contact-item small,
.vs-office-card small {
  display: block;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--vs-muted);
}

.vs-contact-item strong {
  font-size: 1.25rem;
  font-weight: 400;
}

.vs-office-card {
  position: relative;
  overflow: hidden;
  border-radius: 34px;
}

.vs-office-card img {
  width: 100%;
  aspect-ratio: 1.35 / 1;
  object-fit: cover;
}

.vs-office-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(0, 0, 0, 0.45));
}

.vs-office-card div {
  position: absolute;
  z-index: 2;
  left: 36px;
  right: 36px;
  bottom: 36px;
  color: #fff;
}

.vs-office-card strong {
  font-size: 1.5rem;
  font-weight: 400;
}

.vs-footer {
  padding: 34px 0;
  border-top: 1px solid var(--vs-border);
}

.vs-footer .vs-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.vs-footer p {
  color: var(--vs-muted);
}
.vs-nav a {
  position: relative;
  transition:
    color 0.35s ease,
    opacity 0.35s ease;
}

.vs-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -9px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.42s cubic-bezier(0.22, 1, 0.36, 1);
  opacity: 0.75;
}

.vs-nav a:hover {
  opacity: 1;
}

.vs-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.vs-header-btn {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition:
    transform 0.35s ease,
    border-color 0.35s ease,
    background 0.35s ease;
}

.vs-header-btn::before {
  content: "";
  position: absolute;
  inset: 2px;
  z-index: -1;
  border-radius: inherit;
  background: rgba(255, 255, 255, 0.16);
  transform: translateX(-105%);
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.vs-header-btn span {
  display: inline-block;
  transition: transform 0.35s ease;
}

.vs-header-btn:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.08);
}

.vs-header-btn:hover::before {
  transform: translateX(0);
}

.vs-header-btn:hover span {
  transform: translateX(4px);
}

.vs-header.is-scrolled .vs-header-btn:hover {
  border-color: rgba(34, 29, 25, 0.22);
  background: rgba(34, 29, 25, 0.04);
}
.vs-footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--vs-ink);
  text-decoration: none;
  font-family: "Space Grotesk", sans-serif;
  font-size: 22px;
  font-weight: 700;
}

.vs-footer-logo-icon {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(34, 29, 25, 0.14);
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.45);
}

.vs-footer-logo-icon img {
  width: 24px;
  height: 24px;
  display: block;
}
.vs-footer {
  padding: 34px 0;
  border-top: 1px solid var(--vs-border);
}

.vs-footer .vs-container {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 40px;
}

.vs-footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--vs-ink);
  text-decoration: none;
  font-family: "Space Grotesk", sans-serif;
  font-size: 26px;
  font-weight: 700;
}

.vs-footer-logo-icon {
  width: 75px;
  height: 75px;
  border: 1px solid rgba(34, 29, 25, 0.16);
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.55);
}

.vs-footer-logo-icon img {
  width: 52px;
  height: 52px;
  display: block;
  filter: brightness(0) saturate(100%);
  opacity: 0.9;
}

.vs-footer-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
}

.vs-footer-nav a {
  color: var(--vs-muted);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.vs-footer-nav a:hover {
  color: var(--vs-ink);
}

.vs-footer p {
  justify-self: end;
  color: var(--vs-muted);
  margin: 0;
}
.vs-footer-made {
  display: flex;
  justify-content: center;
}

.vs-footer-made img {
  width: 180px;
  height: auto;
  display: block;
}
.vs-mission,
.vs-process,
.vs-why,
.vs-audience {
  position: relative;
  overflow: hidden;
}

.vs-mission::before,
.vs-why::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(156, 175, 154, 0.22),
    transparent 68%
  );
  pointer-events: none;
}

.vs-mission::before {
  right: -180px;
  top: 80px;
}

.vs-why::before {
  left: -220px;
  bottom: -120px;
}
.vs-card {
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.vs-card:hover {
  transform: translateY(-6px);
  border-color: rgba(34, 29, 25, 0.16);
  box-shadow: 0 24px 70px rgba(34, 29, 25, 0.08);
}

/* .vs-why .vs-card:nth-child(2),
.vs-why .vs-card:nth-child(5) {
    transform: translateY(36px);
} */

/* .vs-audience .vs-card:nth-child(odd) {
  min-height: 300px;
} */

/* .vs-audience .vs-card:nth-child(even) {
  margin-top: 48px;
} */
.vs-category-slider-wrap {
  position: relative;
  margin-top: 72px;
}

.vs-category-slider {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(360px, 1fr);
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding: 4px 0 20px;
}

.vs-category-slider::-webkit-scrollbar {
  display: none;
}

.vs-category-card {
  position: relative;
  min-height: 460px;
  padding: 34px;
  border-radius: 34px;
  overflow: hidden;
  scroll-snap-align: start;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-image:
    linear-gradient(180deg, rgba(18, 13, 9, 0.18), rgba(18, 13, 9, 0.82)),
    var(--bg);
  background-size: cover;
  background-position: center;
  isolation: isolate;
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
}

.vs-category-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 20% 10%,
      rgba(255, 255, 255, 0.24),
      transparent 34%
    ),
    linear-gradient(
      135deg,
      rgba(156, 175, 154, 0.18),
      rgba(255, 220, 170, 0.08)
    );
  mix-blend-mode: screen;
  opacity: 0.8;
  z-index: -1;
}

.vs-category-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 80px rgba(34, 29, 25, 0.14);
}

.vs-category-num {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
}

.vs-category-card h3 {
  margin: 0 0 14px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 2rem;
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.vs-category-card p {
  max-width: 320px;
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.05rem;
  line-height: 1.45;
}

.vs-slider-btn {
  position: absolute;
  top: -112px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 1px solid rgba(34, 29, 25, 0.12);
  background: rgba(255, 255, 255, 0.55);
  color: var(--vs-ink);
  cursor: pointer;
  backdrop-filter: blur(14px);
  transition:
    transform 0.3s ease,
    background 0.3s ease;
}

.vs-slider-btn:hover {
  transform: translateY(-2px);
  background: #fff;
}

.vs-slider-prev {
  right: 70px;
}

.vs-slider-next {
  right: 0;
}
.vs-brand-slider {
  margin-top: 64px;
  display: flex;
  gap: 22px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding: 4px 0 22px;
}

.vs-brand-slider::-webkit-scrollbar {
  display: none;
}

.vs-brand-card {
  flex: 0 0 260px;
  min-height: 150px;
  padding: 28px 24px;
  border: 1px solid rgba(34, 29, 25, 0.08);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.48);
  scroll-snap-align: start;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;

  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    background 0.35s ease,
    border-color 0.35s ease;
}
.vs-brands-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 60px;
}

.vs-brand-arrows {
  display: flex;
  gap: 12px;
}

.vs-brand-btn {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 1px solid rgba(34, 29, 25, 0.12);
  background: rgba(255, 255, 255, 0.55);
  color: var(--vs-ink);
  cursor: pointer;
  backdrop-filter: blur(14px);
  transition:
    transform 0.3s ease,
    background 0.3s ease;
}

.vs-brand-btn:hover {
  transform: translateY(-2px);
  background: #fff;
}

.vs-brand-slider {
  margin: 64px 0;
  display: flex;
  gap: 22px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding: 4px 0 22px;
  cursor: grab;
  user-select: none;
}

.vs-brand-slider.is-dragging {
  cursor: grabbing;
  scroll-snap-type: none;
}

.vs-brand-slider::-webkit-scrollbar {
  display: none;
}

.vs-brand-card {
  flex: 0 0 260px;
  min-height: 150px;
  padding: 28px 24px;
  border: 1px solid rgba(34, 29, 25, 0.08);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.48);
  scroll-snap-align: start;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;

  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    background 0.35s ease,
    border-color 0.35s ease;
}

.vs-brand-logo {
  width: 150px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vs-brand-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  pointer-events: none;
  filter: grayscale(1) contrast(0.75);
  opacity: 0.34;
  transform: scale(0.96);
  transition:
    filter 0.35s ease,
    opacity 0.35s ease,
    transform 0.35s ease;
}

.vs-brand-card span {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--vs-muted);
  opacity: 0.55;
  transition: opacity 0.35s ease;
}

.vs-brand-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.76);
  border-color: rgba(34, 29, 25, 0.14);
  box-shadow: 0 24px 70px rgba(34, 29, 25, 0.08);
}

.vs-brand-card:hover .vs-brand-logo img {
  filter: grayscale(0) contrast(1);
  opacity: 1;
  transform: scale(1);
}

.vs-brand-card:hover span {
  opacity: 0.8;
}
.vs-svg-icon svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.vs-card:hover .vs-svg-icon svg {
  transform: scale(1.06);
}

.vs-svg-icon svg {
  transition: transform 0.35s ease;
}
.vs-cf7-form .wpcf7-form p {
  margin: 0;
}

.vs-cf7-form label {
  display: block;
  margin-bottom: 24px;
}

.vs-cf7-form label > span:first-child {
  display: block;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.48);
}

.vs-cf7-form .wpcf7-form-control-wrap {
  display: block;
}

.vs-cf7-form input:not([type="submit"]) {
  width: 100%;
  height: 64px;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  color: #fff;
  font-size: 1.3rem;
  outline: none;
}

.vs-cf7-form input::placeholder {
  color: rgba(255, 255, 255, 0.28);
}

.vs-cf7-form input[type="submit"] {
  width: 100%;
  min-height: 72px;
  margin-top: 16px;
  border-radius: 999px;
  border: 0;
  background: #fff;
  color: #111;
  font-weight: 600;
  cursor: pointer;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.vs-cf7-form input[type="submit"]:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.16);
}

.vs-cf7-form .wpcf7-spinner {
  display: none;
}

.vs-cf7-form .wpcf7-not-valid-tip {
  margin-top: 8px;
  color: #ffb6a8;
  font-size: 0.9rem;
}

.vs-cf7-form .wpcf7-response-output {
  margin: 24px 0 0 !important;
  padding: 14px 18px !important;
  border-radius: 18px;
  color: rgba(255, 255, 255, 0.8);
  border-color: rgba(255, 255, 255, 0.18) !important;
}
.vs-cf7-form .wpcf7-form p {
  margin: 0 0 18px;
}

.vs-cf7-form .wpcf7-form p br {
  display: none;
}

.vs-cf7-form label {
  margin-bottom: 0;
}

.vs-cf7-form label > span:first-child {
  margin-bottom: 8px;
  font-size: 0.78rem;
}

.vs-cf7-form input:not([type="submit"]) {
  height: 52px;
  font-size: 1.05rem;
}

.vs-cf7-form input[type="submit"] {
  min-height: 60px;
  margin-top: 8px;
}

.vs-form {
  padding: 38px 48px;
}
.vs-footer-made a {
  display: inline-flex;
  align-items: center;
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}

.vs-footer-made a:hover {
  opacity: 0.82;
  transform: translateY(-2px);
}
.vs-contact-item span svg {
  width: 32px;
  height: 32px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.vs-scroll-top {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 80;

    width: 58px;
    height: 58px;
    border-radius: 50%;
    border: 1px solid rgba(34, 29, 25, .12);

    display: none;
    align-items: center;
    justify-content: center;

    background: rgba(247, 244, 237, .82);
    color: var(--vs-ink);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    box-shadow: 0 18px 50px rgba(34, 29, 25, .12);
    cursor: pointer;

    opacity: 0;
    visibility: hidden;
    transform: translateY(14px) scale(.94);

    transition:
        opacity .3s ease,
        visibility .3s ease,
        transform .3s ease,
        background .3s ease;
}

.vs-scroll-top svg {
    width: 25px;
    height: 25px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.vs-scroll-top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.vs-scroll-top:hover {
    background: #fff;
    transform: translateY(-3px) scale(1.02);
}

@media (max-width: 1024px) {
    .vs-scroll-top {
        display: flex;
    }
}

@media (max-width: 425px) {
    .vs-scroll-top {
        width: 52px;
        height: 52px;
        right: 14px;
        bottom: 14px;
    }

    .vs-scroll-top svg {
        width: 22px;
        height: 22px;
    }
}
/* ------------------------------------------------------------------------1440px-------------------------------------------------------------------- */

@media (min-width: 1440px) {
  .vs-hero {
    min-height: 980px;
    padding: 40px;
  }

  .vs-hero-content {
    max-width: 980px;

    transform: translateX(-360px);
  }

  .vs-hero h1 {
    font-size: clamp(5.5rem, 7vw, 8.8rem);
  }

  .vs-hero p {
    max-width: 760px;
    font-size: 1.75rem;
  }

  .vs-hero-features {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    width: min(1400px, calc(100% - 80px));
    max-width: none;
  }
}

/* ------------------------------------------------------------------------1280px-------------------------------------------------------------------- */
@media (max-width: 1280px) {
  .vs-header {
    width: min(1180px, calc(100% - 56px));
  }

  .vs-header-bar {
    grid-template-columns: auto 1fr auto;
    gap: 24px;
  }

  .vs-nav {
    gap: 28px;
  }
}

/* ------------------------------------------------------------------------1024px-------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .vs-grid-4,
  .vs-grid-3,
  .vs-steps,
  .vs-consultation-grid,
  .vs-contacts-grid {
    grid-template-columns: 1fr 1fr;
  }

  .vs-hero-features {
    grid-template-columns: 1fr 1fr;
  }

  .vs-header {
    width: calc(100% - 40px);
  }

  .vs-header-bar {
    grid-template-columns: 1fr auto;
    padding-left: 82px;
    gap: 18px;
  }

  .vs-nav {
    display: none;
  }

  .vs-why .vs-card:nth-child(2),
  .vs-why .vs-card:nth-child(5),
  .vs-audience .vs-card:nth-child(even) {
    transform: none;
    margin-top: 0;
  }
  .vs-logo-icon {
    left: -9px;
    top: 50%;
    width: 80px;
    height: 80px;
  }
}
/* ------------------------------------------------------------------------768px-------------------------------------------------------------------- */
@media (max-width: 768px) {
  .vs-consultation-grid {
    grid-template-columns: 1fr;
  }
}
/* ------------------------------------------------------------------------640px-------------------------------------------------------------------- */
@media (max-width: 640px) {
  .vs-container {
    width: min(100% - 24px, var(--vs-container));
  }

  .vs-hero {
    padding: 18px;
    min-height: 760px;
  }
  .vs-header {
    top: 12px;
    width: calc(100% - 24px);
    height: 58px;
  }

  .vs-header-bar {
    min-height: 58px;
    padding: 0 14px 0 58px;
    grid-template-columns: 1fr auto;
    gap: 12px;
    border-radius: 999px;
  }

  .vs-logo-text {
    font-size: 1.15rem;
  }

  .vs-logo-icon {
    left: -12px;
    width: 70px;
    height: 70px;
  }

  .vs-logo-icon::before {
    inset: 8px;
  }

  .vs-logo-icon svg,
  .vs-logo-icon img {
    width: 32px;
    height: 32px;
  }

  /* .vs-hero-content {
    padding-top: 76px;
  } */
  .vs-header-btn {
    min-height: 42px;
    padding: 0 18px;
    font-size: 0.9rem;
  }

  .vs-header-btn span {
    display: none;
  }

  .vs-pill {
    margin-bottom: 34px;
  }

  .vs-hero h1 {
    font-size: clamp(3.7rem, 19vw, 5.5rem);
  }

  .vs-hero p {
    font-size: 1.1rem;
  }

  .vs-hero-features {
    left: 18px;
    right: 18px;
    bottom: 28px;
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .vs-section {
    padding: 72px 0;
  }

  .vs-section h2,
  .vs-consultation h2 {
    font-size: clamp(3rem, 15vw, 4.5rem);
    font-family: "Space Grotesk", sans-serif;
    font-weight: 700;
    letter-spacing: -0.05em;
    line-height: 0.95;
  }

  .vs-section-text {
    font-size: 1.1rem;
    margin-bottom: 42px;
  }

  .vs-grid-4,
  .vs-grid-3,
  .vs-steps,
  .vs-consultation-grid,
  .vs-contacts-grid {
    grid-template-columns: 1fr;
  }

  .vs-card {
    min-height: auto;
    padding: 32px;
  }

  .vs-card-icon {
    margin-bottom: 38px;
  }

  .vs-steps::before {
    display: none;
  }

  .vs-step span {
    width: 80px;
    height: 80px;
    margin-bottom: 24px;
  }

  .vs-brand-list {
    flex-direction: column;
    font-size: 1.7rem;
  }

  .vs-consultation {
    padding: 86px 0;
  }

  .vs-form {
    padding: 28px;
  }

  .vs-footer .vs-container {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
  .vs-footer .vs-container {
    grid-template-columns: 1fr;
    gap: 22px;
    align-items: flex-start;
  }

  .vs-footer-nav {
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 16px 24px;
  }

  .vs-footer p {
    justify-self: start;
  }
  .vs-footer-made img {
    opacity: 0.85;
  }
  .vs-category-slider {
    grid-auto-columns: 82%;
    gap: 14px;
  }

  .vs-category-card {
    min-height: 390px;
    padding: 26px;
    border-radius: 26px;
  }

  .vs-slider-btn {
    display: none;
  }
  .vs-footer-made {
    justify-content: left;
  }
}

/* ======================================================================
   VivatSolar current fixes: contacts image filter, contact icons, soft glows
   ====================================================================== */

/* Smooth gradient blobs after section reorder */
.vs-section {
  position: relative;
  overflow: hidden;
}

.vs-mission::before,
.vs-why::before,
.vs-process::before,
.vs-audience::before {
  content: "";
  position: absolute;
  z-index: 0;
  width: clamp(320px, 32vw, 620px);
  height: clamp(320px, 32vw, 620px);
  border-radius: 999px;
  pointer-events: none;
  filter: blur(6px);
  opacity: 0.9;
}

.vs-mission::before {
  right: -220px;
  top: -90px;
  background: radial-gradient(
    circle,
    rgba(156, 175, 154, 0.2),
    transparent 68%
  );
}

.vs-process::before {
  left: -260px;
  top: 16%;
  background: radial-gradient(
    circle,
    rgba(255, 214, 165, 0.2),
    transparent 70%
  );
}

.vs-why::before {
  left: auto;
  right: -240px;
  bottom: -180px;
  background: radial-gradient(
    circle,
    rgba(156, 175, 154, 0.18),
    transparent 70%
  );
}

.vs-audience::before {
  left: -240px;
  bottom: -170px;
  background: radial-gradient(
    circle,
    rgba(210, 198, 180, 0.34),
    transparent 70%
  );
}

.vs-section > .vs-container,
.vs-section .vs-grid,
.vs-section .vs-steps,
.vs-section .vs-category-slider-wrap {
  position: relative;
  z-index: 1;
}

/* Contacts block */
.vs-contacts {
  padding-top: 120px;
  padding-bottom: 120px;
}

.vs-contact-list {
  align-self: stretch;
}

.vs-contact-item {
  min-height: 118px;
  padding: 30px 0;
  gap: 32px;
}

.vs-contact-item span {
  flex: 0 0 auto;
  width: 72px;
  height: 72px;
  border-radius: 24px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.78),
    rgba(241, 238, 233, 0.96)
  );
  border: 1px solid rgba(34, 29, 25, 0.08);
  color: var(--vs-ink);
  font-size: 1.45rem;
  box-shadow: 0 18px 50px rgba(34, 29, 25, 0.055);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.vs-contact-item:hover span {
  transform: translateY(-3px);
  border-color: rgba(34, 29, 25, 0.15);
  box-shadow: 0 24px 60px rgba(34, 29, 25, 0.085);
}

.vs-contact-item small,
.vs-office-card small {
  font-size: 0.86rem;
  letter-spacing: 0.22em;
}

.vs-contact-item strong {
  font-size: clamp(1.25rem, 1.2vw, 1.55rem);
  line-height: 1.25;
}

/* Warehouse card: same premium filter as category cards */
.vs-office-card {
  min-height: 520px;
  border-radius: 36px;
  isolation: isolate;
  box-shadow: 0 26px 90px rgba(34, 29, 25, 0.1);
  background: var(--vs-dark);
}

.vs-office-card img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  aspect-ratio: auto;
  object-fit: cover;
  filter: saturate(0.9) contrast(0.96) brightness(0.86);
  transform: scale(1.01);
}

.vs-office-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(
      circle at 18% 12%,
      rgba(255, 255, 255, 0.23),
      transparent 34%
    ),
    linear-gradient(
      135deg,
      rgba(156, 175, 154, 0.22),
      rgba(255, 220, 170, 0.08)
    );
  mix-blend-mode: screen;
  opacity: 0.8;
}

.vs-office-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(
      180deg,
      rgba(18, 13, 9, 0.04) 0%,
      rgba(18, 13, 9, 0.2) 45%,
      rgba(18, 13, 9, 0.82) 100%
    ),
    linear-gradient(90deg, rgba(18, 13, 9, 0.3), transparent 55%);
}

.vs-office-card div {
  z-index: 3;
  left: 44px;
  right: 44px;
  bottom: 42px;
}

.vs-office-card small {
  color: rgba(255, 255, 255, 0.64);
}

.vs-office-card strong {
  display: block;
  max-width: 520px;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.9rem, 2vw, 3rem);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.045em;
}

/* If old address item is still in HTML, keep it visually consistent, but it can be deleted from template */
.vs-contact-item:last-child:not(a) {
  display: none;
}

/* Better spacing when contact image is taller */
.vs-contacts-grid {
  align-items: stretch;
}

@media (max-width: 1024px) {
  .vs-contact-item span {
    width: 64px;
    height: 64px;
    border-radius: 22px;
    font-size: 1.25rem;
  }

  .vs-office-card,
  .vs-office-card img {
    min-height: 430px;
  }
}

@media (max-width: 640px) {
  .vs-contacts {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .vs-contact-item {
    min-height: auto;
    padding: 22px 0;
    gap: 18px;
  }

  .vs-contact-item span {
    width: 56px;
    height: 56px;
    border-radius: 18px;
    font-size: 1.05rem;
  }

  .vs-contact-item strong {
    font-size: 1.1rem;
  }

  .vs-office-card,
  .vs-office-card img {
    min-height: 360px;
  }

  .vs-office-card div {
    left: 26px;
    right: 26px;
    bottom: 28px;
  }

  .vs-office-card strong {
    font-size: 1.75rem;
  }
  .vs-brands {
    padding: 76px 0;
  }

  .vs-brand-slider {
    margin-top: 42px;
    gap: 14px;
  }

  .vs-brand-card {
    flex-basis: 210px;
    min-height: 130px;
    border-radius: 24px;
  }

  .vs-brand-logo {
    font-size: 1.55rem;
  }
}
