/* ============================================================
   WEBSITES & BRANDING PAGE — Premium Styles
   Extends the base style.css design language
   Mix of light and dark: subtle, balanced aesthetic
   ============================================================ */

/* Active nav link */
.nav-link--active {
  color: var(--color-text) !important;
}

/* ============================================================
   HERO
   ============================================================ */
.wb-hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 58vh var(--gutter) 12rem;
  overflow: hidden;
  z-index: 10;
}

@media (max-width: 1024px) {
  .wb-hero {
    padding-top: 45vh;
  }
}

.wb-hero__content {
  position: relative;
  text-align: left;
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  z-index: 10;
  pointer-events: none;
}

.wb-hero__card {
  max-width: 65rem;
  width: 100%;
  margin: 0;
  margin-left: 14rem;
  opacity: 0;
  transform: translateY(2rem);
  position: relative;
  z-index: 20;
  text-align: left;
  will-change: transform, opacity;
}

@media (max-width: 1024px) {
  .wb-hero__card {
    margin-left: 0;
    max-width: 100%;
  }
}

.wb-hero__card.glass-card {
  background: rgba(255, 255, 255, 0.05);
}

.wb-hero__card .glass-card__body {
  font-size: 1.4rem;
  line-height: 1.7;
}

/* Background text system */
.wb-hero__background-text {
  position: absolute;
  top: 14vh;
  left: -3vw;
  width: 100vw;
  z-index: 1;
  pointer-events: none;
}

.wb-hero__line {
  font-family: "Montserrat", sans-serif;
  font-size: 17vw;
  font-weight: 900;
  font-style: italic;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  line-height: 0.85;
  color: #ffffff;
  opacity: 0.15;
  margin: 0;
  padding: 0;
  white-space: nowrap;
}

.wb-hero__line--1 {
  margin-left: -1.5vw;
}

.wb-hero__line--2 {
  margin-top: -1vw;
  padding-left: 5vw;
}

/* Floating orbitals */
.wb-hero__orbitals {
  position: absolute;
  top: -10vh;
  right: -25vw;
  width: 100rem;
  height: 100rem;
  pointer-events: none;
  z-index: 5;
}

/* Orbital rings — reuse solutions.css animation */
.wb-hero__orbitals .orbital {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.18);
}

.wb-hero__orbitals .orbital--1 {
  width: 50rem;
  height: 50rem;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: wbOrbitalSpin 25s linear infinite;
  animation-delay: -5s;
}

.wb-hero__orbitals .orbital--2 {
  width: 70rem;
  height: 70rem;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: wbOrbitalSpin 35s linear infinite reverse;
  animation-delay: -12s;
}

.wb-hero__orbitals .orbital--3 {
  width: 85rem;
  height: 85rem;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: wbOrbitalSpin 45s linear infinite;
  animation-delay: -20s;
  border-color: rgba(255, 255, 255, 0.10);
}

.wb-hero__orbitals .orbital__ball {
  position: absolute;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  box-shadow: 0 0 1.5rem rgba(255, 255, 255, 0.3);
}

.wb-hero__orbitals .orbital--1 .orbital__ball {
  width: 1rem;
  height: 1rem;
}
.wb-hero__orbitals .orbital--1 .orbital__ball--1 {
  top: -5px;
  left: 50%;
  transform: translateX(-50%);
}
.wb-hero__orbitals .orbital--1 .orbital__ball--2 {
  bottom: -0.5rem;
  left: 50%;
  transform: translateX(-50%);
}

.wb-hero__orbitals .orbital--2 .orbital__ball {
  width: 0.8rem;
  height: 0.8rem;
}
.wb-hero__orbitals .orbital--2 .orbital__ball--1 {
  top: 50%;
  right: -0.4rem;
  transform: translateY(-50%);
}
.wb-hero__orbitals .orbital--2 .orbital__ball--2 {
  top: 50%;
  left: -0.4rem;
  transform: translateY(-50%);
}
.wb-hero__orbitals .orbital--2 .orbital__ball--3 {
  bottom: -0.4rem;
  left: 50%;
  transform: translateX(-50%);
}

.wb-hero__orbitals .orbital--3 .orbital__ball {
  width: 0.6rem;
  height: 0.6rem;
}
.wb-hero__orbitals .orbital--3 .orbital__ball--1 {
  top: -0.3rem;
  left: 50%;
  transform: translateX(-50%);
}
.wb-hero__orbitals .orbital--3 .orbital__ball--2 {
  bottom: -0.3rem;
  left: 50%;
  transform: translateX(-50%);
}

@keyframes wbOrbitalSpin {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Scroll indicator */
.wb-scroll-indicator {
  position: absolute;
  bottom: 4.8rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
  opacity: 0;
  z-index: 10;
}

.wb-scroll-indicator__line {
  width: 0.1rem;
  height: 4.8rem;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.3), transparent);
  animation: wbScrollPulse 2s ease-in-out infinite;
}

@keyframes wbScrollPulse {
  0%, 100% {
    opacity: 0.3;
    transform: scaleY(0.7);
  }
  50% {
    opacity: 1;
    transform: scaleY(1);
  }
}

/* ============================================================
   EXPLAIN SECTION — Twee kaarten
   ============================================================ */
.wb-explain {
  position: relative;
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 8rem var(--gutter) 12rem;
  z-index: 10;
}

.wb-explain__inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: start;
}

@media (max-width: 1024px) {
  .wb-explain__inner {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
}

.wb-explain__card {
  opacity: 0;
  transform: translateY(3rem);
}

.wb-explain__card .glass-card__body {
  font-size: 1.35rem;
  line-height: 1.8;
  margin-bottom: 1.6rem;
}

.wb-explain__card .glass-card__body:last-of-type {
  margin-bottom: 2.4rem;
}

/* Card header with number */
.wb-explain__card-header {
  display: flex;
  align-items: flex-start;
  gap: 2.4rem;
  margin-bottom: 0;
}

.wb-explain__number {
  font-family: "Montserrat", sans-serif;
  font-size: 5rem;
  font-weight: 900;
  font-style: italic;
  line-height: 1;
  color: rgba(255, 255, 255, 0.08);
  letter-spacing: -0.04em;
  flex-shrink: 0;
}

.wb-explain__divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.12), transparent);
  margin: 2rem 0;
}

.wb-explain__divider--subtle {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.06), transparent);
  margin: 1.2rem 0;
}

/* Lichtere kaart voor primary (websites) */
.wb-explain__card--primary {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.14);
}

.wb-explain__card--primary:hover {
  background: rgba(255, 255, 255, 0.10);
  border-color: rgba(255, 255, 255, 0.22);
}

/* Donkerdere kaart voor secondary (branding) */
.wb-explain__card--secondary {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.08);
}

.wb-explain__card--secondary:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.14);
}

/* Tags */
.wb-explain__tags {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.wb-tag {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10rem;
  padding: 0.5rem 1.4rem;
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-text-subtle);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all 0.4s var(--ease-premium);
}

.wb-tag:hover {
  border-color: rgba(255, 255, 255, 0.25);
  color: var(--color-text-muted);
}

/* ============================================================
   TRANSFORMATION GRID
   ============================================================ */
.wb-transform {
  position: relative;
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 8rem var(--gutter) 20rem;
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 6rem;
}

.wb-transform__header {
  text-align: left;
}

.wb-transform__title {
  font-family: "Montserrat", sans-serif;
  font-size: 5.6rem;
  font-weight: 900;
  font-style: italic;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  line-height: 1.05;
  color: #ffffff;
  margin: 0;
  opacity: 0;
  transform: translateY(2rem);
}

.wb-transform__title-muted {
  color: rgba(255, 255, 255, 0.3);
}

@media (max-width: 768px) {
  .wb-transform__title {
    font-size: 3.6rem;
  }
}

.wb-transform__grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.wb-transform__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 3.2rem 4.8rem;
  border-radius: 2rem;
  background: linear-gradient(165deg, rgba(35, 35, 40, 0.15) 0%, rgba(20, 20, 25, 0.2) 50%, rgba(10, 10, 15, 0.25) 100%);
  backdrop-filter: blur(1.6rem) saturate(1.2);
  -webkit-backdrop-filter: blur(1.6rem) saturate(1.2);
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 0.4rem 1.6rem rgba(0, 0, 0, 0.1);
  opacity: 0;
  transform: translateY(2rem);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.wb-transform__item:hover {
  background: linear-gradient(165deg, rgba(35, 35, 40, 0.25) 0%, rgba(20, 20, 25, 0.35) 50%, rgba(10, 10, 15, 0.45) 100%);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 0.8rem 2.4rem rgba(0, 0, 0, 0.2);
  transform: translateY(-0.4rem);
}

.wb-transform__old {
  flex: 1;
  font-size: 1.6rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.4);
  display: flex;
  align-items: center;
  gap: 1.6rem;
  transition: color 0.8s ease;
  opacity: 0;
}

.wb-transform__old-text {
  position: relative;
  display: inline-block;
}

.wb-transform__old-text::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  height: 2px;
  width: var(--strike-width, 0%);
  background-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-50%);
}

.wb-transform__item:hover .wb-transform__old {
  color: rgba(255, 255, 255, 0.2);
}

.wb-transform__icon-x {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.3);
}

.wb-transform__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.3);
  margin: 0 4rem;
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  opacity: 0;
  transform: translateX(-4rem) scale(0.8);
}

.wb-transform__item:hover .wb-transform__arrow {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
  box-shadow: 0 0 2rem rgba(255, 255, 255, 0.1);
}

.wb-transform__new {
  flex: 1;
  font-size: 2.2rem;
  font-weight: 700;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 1.6rem;
  justify-content: flex-end;
  text-align: right;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  transition: all 0.8s ease;
  opacity: 0;
  transform: translateX(2rem);
}

.wb-transform__item:hover .wb-transform__new {
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

.wb-transform__icon-check {
  font-size: 1.6rem;
  color: #4ade80;
  opacity: 0.8;
  transition: all 0.8s ease;
}

.wb-transform__item:hover .wb-transform__icon-check {
  opacity: 1;
  text-shadow: 0 0 12px rgba(74, 222, 128, 0.5);
}

@media (max-width: 900px) {
  .wb-transform__item {
    flex-direction: column;
    padding: 3rem;
    gap: 2rem;
  }

  .wb-transform__old,
  .wb-transform__new {
    width: 100%;
    justify-content: center;
    text-align: center;
    font-size: 1.8rem;
  }

  .wb-transform__arrow {
    transform: rotate(90deg);
    margin: 1rem 0;
  }

  .wb-transform__item:hover .wb-transform__arrow {
    transform: rotate(90deg) scale(1.1);
  }
}

/* ============================================================
   PROCESS SECTION — Pinned horizontal card slider
   ============================================================ */
.wb-process {
  position: relative;
  width: 100vw;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

/* Label */
.wb-process__label {
  position: absolute;
  top: 10rem;
  left: 4rem;
  z-index: 10;
  text-align: left;
  pointer-events: none;
}

.wb-process__heading {
  font-family: "Montserrat", sans-serif;
  font-size: 5rem;
  font-weight: 900;
  font-style: italic;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  line-height: 1;
  color: #ffffff;
  opacity: 0.15;
  margin-bottom: 0.6rem;
}

.wb-process__sub {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  color: #ffffff;
  opacity: 0.15;
  text-transform: uppercase;
}

/* Progress bar */
.wb-process__progress {
  position: absolute;
  bottom: 5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 32rem;
  max-width: 70vw;
  z-index: 20;
  opacity: 0;
}

.wb-process__progress-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 1px;
  width: 0%;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 1px;
}

.wb-process__progress::before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 1px;
}

.wb-process__progress-steps {
  display: flex;
  justify-content: space-between;
  margin-top: 1.4rem;
}

.wb-progress-dot {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.2);
  transition: color 0.4s var(--ease-premium);
}

.wb-progress-dot.active {
  color: #ffffff;
}

/* Steps */
.wb-process__steps {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 3;
}

.wb-process__step {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  padding: 0 var(--gutter);
}

.wb-step__number {
  font-family: "Montserrat", sans-serif;
  font-size: 14rem;
  font-weight: 900;
  font-style: italic;
  line-height: 1;
  color: rgba(255, 255, 255, 0.03);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -55%);
  pointer-events: none;
  z-index: 0;
  letter-spacing: -0.04em;
}

.wb-step__content {
  position: relative;
  max-width: 75rem;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 10rem;
}

.wb-step__title {
  font-family: "Montserrat", sans-serif;
  font-size: 7.5rem;
  font-weight: 900;
  font-style: italic;
  letter-spacing: -0.04em;
  color: #ffffff;
  opacity: 0.15;
  margin-bottom: -3rem;
  text-transform: uppercase;
  line-height: 0.9;
  z-index: 1;
  pointer-events: none;
}

/* Glass card wrapper for step text — matching aanpak page */
.wb-step__card {
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(3rem) saturate(1.3);
  -webkit-backdrop-filter: blur(3rem) saturate(1.3);
  border: 0.1rem solid rgba(255, 255, 255, 0.1);
  border-radius: 1.6rem;
  padding: 2.8rem 3.2rem;
  box-shadow: 0 2rem 5rem rgba(0, 0, 0, 0.35);
  max-width: 65rem;
  width: 100%;
}

.wb-step__card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
}

.wb-step__text {
  font-size: 1.45rem;
  font-weight: 400;
  color: #ffffff;
  line-height: 1.8;
  max-width: 100%;
  margin: 0;
  text-align: center;
}

@media (max-width: 768px) {
  .wb-step__title {
    font-size: 6rem;
    margin-bottom: -2rem;
  }

  .wb-step__text {
    font-size: 1.3rem;
  }

  .wb-process__label {
    top: 4rem;
    left: 3rem;
  }

  .wb-process__heading {
    font-size: 3.5rem;
  }

  .wb-step__number {
    font-size: 12rem;
  }
}

/* ============================================================
   FEATURES GRID — "Wat je krijgt"
   ============================================================ */
.wb-features {
  position: relative;
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 16rem var(--gutter) 12rem;
  z-index: 10;
}

.wb-features__header {
  margin-bottom: 8rem;
}

.wb-features__heading {
  font-family: "Montserrat", sans-serif;
  font-size: 5.6rem;
  font-weight: 900;
  font-style: italic;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  line-height: 1.05;
  color: #ffffff;
  margin: 0;
}

.wb-features__heading-muted {
  color: rgba(255, 255, 255, 0.3);
}

.wb-features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.4rem;
}

@media (max-width: 1024px) {
  .wb-features__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .wb-features__grid {
    grid-template-columns: 1fr;
  }

  .wb-features__heading {
    font-size: 3.6rem;
  }
}

.wb-feature {
  padding: 3.6rem 3.2rem;
  opacity: 0;
  transform: translateY(3rem);
  /* Light/dark balance: slightly brighter cards */
  background: rgba(255, 255, 255, 0.06) !important;
  border-color: rgba(255, 255, 255, 0.10) !important;
}

.wb-feature:hover {
  background: rgba(255, 255, 255, 0.10) !important;
  border-color: rgba(255, 255, 255, 0.20) !important;
}

.wb-feature__icon {
  width: 5.6rem;
  height: 5.6rem;
  border-radius: 1.4rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 2.4rem;
  transition: all 0.6s var(--ease-premium);
}

.wb-feature:hover .wb-feature__icon {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  transform: scale(1.05);
}

.wb-feature__title {
  font-family: var(--font-primary);
  font-size: 1.6rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
}

.wb-feature__text {
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.wb-cta {
  position: relative;
  width: 100%;
  padding: 12rem 0 16rem;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10;
}

.wb-cta__content {
  text-align: center;
  max-width: 70rem;
  padding: 0 var(--gutter);
}

.wb-cta__heading {
  font-family: "Montserrat", sans-serif;
  font-size: 6rem;
  font-weight: 900;
  font-style: italic;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 2.4rem;
  background: linear-gradient(180deg, #fff 0%, rgba(255, 255, 255, 0.4) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.wb-cta__sub {
  font-size: 1.4rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.8;
  margin-bottom: 4rem;
}

.wb-cta__button {
  display: inline-flex;
  align-items: center;
  gap: 1.2rem;
  padding: 1.6rem 3.6rem;
  border-radius: 10rem;
  background: rgba(255, 255, 255, 0.06);
  border: 0.1rem solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(1.6rem);
  -webkit-backdrop-filter: blur(1.6rem);
  box-shadow: 0 1.2rem 4rem rgba(0, 0, 0, 0.3);
  color: #ffffff;
  font-family: var(--font-primary), sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: none;
  text-decoration: none;
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.wb-cta__button:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 1.2rem 4rem rgba(0, 0, 0, 0.4);
}

.wb-cta__button svg {
  transition: transform 0.4s ease;
}

.wb-cta__button:hover svg {
  transform: translateX(4px);
}

@media (max-width: 768px) {
  .wb-cta__heading {
    font-size: 3.6rem;
  }

  .wb-cta__sub {
    font-size: 1.2rem;
  }
}

/* ============================================================
   RESPONSIVE OPTIMALISATIES (Additive)
   ============================================================ */
@media (max-width: 1024px) {
  .wb-process__step {
    padding: 0 2rem;
  }
}

@media (max-width: 768px) {
  .wb-hero__line {
    font-size: 20vw;
  }
  .wb-explain__inner {
    flex-direction: column;
  }
  .wb-process__progress {
    width: 85vw;
  }
  .wb-step__card {
    padding: 2rem;
  }
}

@media (max-width: 480px) {
  .wb-hero__line {
    font-size: 24vw;
  }
  .wb-step__title {
    font-size: 4.5rem;
  }
  .wb-features__heading {
    font-size: 2.8rem;
  }
  .wb-cta__heading {
    font-size: 2.8rem;
  }
}

@media (max-width: 375px) {
  .wb-hero__line {
    font-size: 26vw;
  }
  .wb-step__title {
    font-size: 3.5rem;
  }
  .wb-features__heading {
    font-size: 2.4rem;
  }
  .wb-cta__heading {
    font-size: 2.4rem;
  }
}
