* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Manrope', sans-serif;
  background: #FDFDFD;
}

.container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding-left: 120px;
  padding-right: 120px;
}

/* Header */

.header {
  padding-top: 20px;
  padding-bottom: 20px;
  background: #FDFDFD;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.logo__img {
  width: 86px;
  height: 60px;
  object-fit: cover;
}

.logo__text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.logo__title {
  color: #111534;
  font-size: 25px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  white-space: nowrap;
}

.logo__subtitle {
  color: #58585E;
  font-size: 11px;
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
}

.nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav__link {
  color: #111534;
  font-size: 18px;
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  text-decoration: none;
  white-space: nowrap;
}

.btn.nav__cta {
  display: none;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  flex-shrink: 0;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: #111534;
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle.is-active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.nav-toggle.is-active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 20px;
  border-radius: 5px;
  font-size: 18px;
  font-family: 'Manrope', sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  border: none;
  cursor: pointer;
}

.btn--primary {
  background: #FE5C2D;
  color: #ffffff;
}

.btn--dark {
  padding: 10px 24px;
  background: #111534;
  color: #ffffff;
}

.btn--outline {
  padding: 10px 24px;
  background: transparent;
  color: #111534;
  outline: 2px solid #111534;
  outline-offset: -2px;
}

/* Hero */

.hero {
  padding-top: 40px;
  padding-bottom: 40px;
  background: #FDFDFD;
  overflow: hidden;
}

.hero__inner {
  display: flex;
  align-items: center;
  gap: 24px;
}

.hero__content {
  width: 588px;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

.hero__title {
  color: #111534;
  font-size: 48px;
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.2;
}

.hero__title-accent {
  color: #FE5C2D;
}

.hero__text {
  color: #58585E;
  font-size: 18px;
  font-family: 'Manrope', sans-serif;
  font-weight: 500;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

.hero__image {
  width: 588px;
  max-width: 100%;
  height: 432px;
  background: #D9D9D9;
  border-radius: 15px;
  object-fit: cover;
  flex-shrink: 0;
}

/* Problem */

.problem {
  padding-top: 40px;
  padding-bottom: 40px;
  background: #FDFDFD;
  overflow: hidden;
}

.problem__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.problem__title {
  text-align: center;
  color: #111534;
  font-size: 38px;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
}

.problem__title-accent {
  color: #FE5C2D;
}

.problem__text {
  text-align: center;
  color: #58585E;
  font-size: 18px;
  font-family: 'Manrope', sans-serif;
  font-weight: 500;
}

.problem__columns {
  align-self: stretch;
  display: flex;
  align-items: center;
  gap: 24px;
}

.problem__list {
  width: 588px;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

.problem-card {
  align-self: stretch;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 12px;
  background: #ffffff;
  border-radius: 15px;
  outline: 1px solid #E0E0E0;
  outline-offset: -1px;
}

.problem-card__icon {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.problem-card__text {
  color: #111534;
  font-size: 17px;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
}

.value-box {
  width: 588px;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  padding: 30px;
  background: repeating-linear-gradient(135deg, #F6F8FB 0px, #F6F8FB 34px, #EDF0F5 34px, #EDF0F5 36px);
  border-radius: 15px;
}

.value-box__title {
  align-self: stretch;
  color: #111534;
  font-size: 27px;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
}

.value-box__compare {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.value-box__row {
  display: flex;
  align-items: center;
  gap: 16px;
}

.value-box__from {
  width: 75px;
  flex-shrink: 0;
  color: #58585E;
  font-size: 18px;
  font-family: 'Manrope', sans-serif;
  font-weight: 500;
}

.value-box__to {
  color: #58585E;
  font-size: 18px;
  font-family: 'Manrope', sans-serif;
  font-weight: 500;
}

.value-box__arrow {
  position: relative;
  width: 60px;
  height: 2px;
  background: #FE5C2D;
  flex-shrink: 0;
}

.value-box__arrow::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  width: 8px;
  height: 8px;
  border-top: 2px solid #FE5C2D;
  border-right: 2px solid #FE5C2D;
  transform: translateY(-50%) rotate(45deg);
}

.value-box__footer {
  align-self: stretch;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.value-box__quote {
  color: #FE5C2D;
  font-size: 60px;
  font-family: Georgia, serif;
  font-weight: 700;
  line-height: 0.6;
  flex-shrink: 0;
}

.value-box__note {
  flex: 1 1 0;
  color: #58585E;
  font-size: 18px;
  font-family: 'Manrope', sans-serif;
  font-weight: 500;
  padding-top: 10px;
}

/* Journey */

.journey {
  padding-top: 40px;
  padding-bottom: 40px;
  background: #FDFDFD;
  overflow: hidden;
}

.journey__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.journey__title {
  text-align: center;
  color: #111534;
  font-size: 38px;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.3;
}

.journey__title-accent {
  color: #FE5C2D;
}

.journey__text {
  text-align: center;
  color: #58585E;
  font-size: 18px;
  font-family: 'Manrope', sans-serif;
  font-weight: 500;
}

.journey__grid {
  align-self: stretch;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.journey-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding: 24px;
  background: #ffffff;
  border-radius: 15px;
  outline: 1px solid #E0E0E0;
  outline-offset: -1px;
}

.journey-card__icon {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
}

.journey-card__title {
  text-align: center;
  color: #30323D;
  font-size: 17px;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
}

.journey-card__text {
  text-align: center;
  color: #58585E;
  font-size: 18px;
  font-family: 'Manrope', sans-serif;
  font-weight: 500;
}

/* Presentation banner */

.presentation {
  padding-top: 40px;
  padding-bottom: 40px;
  background: #FDFDFD;
  overflow: hidden;
}

.presentation-banner {
  width: 1200px;
  max-width: 100%;
  height: 442px;
  padding: 50px;
  background: #111534 url("../image/4e073101-aa85-4815-9f81-96172b4fbe5a 1.png") center / cover no-repeat;
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 24px;
}

.presentation-banner__title {
  color: #ffffff;
  font-size: 38px;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
}

.presentation-banner__text {
  color: #ffffff;
  font-size: 18px;
  font-family: 'Manrope', sans-serif;
  font-weight: 500;
}

.presentation-banner__btn {
  width: 540px;
  max-width: 100%;
  height: 45px;
}

.presentation-banner__title--narrow {
  width: 567px;
  max-width: 100%;
  text-align: left;
}

.presentation-banner__text--narrow {
  width: 504px;
  max-width: 100%;
  text-align: left;
}

/* Solutions */

.solutions {
  padding-top: 40px;
  padding-bottom: 40px;
  background: #FDFDFD;
  overflow: hidden;
}

.solutions__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.solutions__title {
  align-self: stretch;
  text-align: center;
  color: #111534;
  font-size: 38px;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
}

.solutions__grid {
  align-self: stretch;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.solutions-highlight {
  grid-column: span 3;
  padding: 24px;
  background: #F6F8FB;
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 24px;
}

.solutions-highlight__title {
  color: #111534;
  font-size: 38px;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.3;
}

.solutions-highlight__title-accent {
  color: #FE5C2D;
}

.solutions-highlight__text {
  color: #58585E;
  font-size: 18px;
  font-family: 'Manrope', sans-serif;
  font-weight: 500;
}

/* Included */

.included {
  padding-top: 40px;
  padding-bottom: 40px;
  background: #FDFDFD;
  overflow: hidden;
}

.included__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.included__title {
  align-self: stretch;
  text-align: center;
  color: #111534;
  font-size: 38px;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
}

.included__text {
  align-self: stretch;
  text-align: center;
  color: #58585E;
  font-size: 18px;
  font-family: 'Manrope', sans-serif;
  font-weight: 500;
}

.included__grid {
  align-self: stretch;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* Process */

.process {
  padding-top: 40px;
  padding-bottom: 40px;
  background: #FDFDFD;
  overflow: hidden;
}

.process__inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

.process__title {
  align-self: stretch;
  text-align: center;
  color: #111534;
  font-size: 38px;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
}

.process__text {
  align-self: stretch;
  text-align: center;
  color: #58585E;
  font-size: 18px;
  font-family: 'Manrope', sans-serif;
  font-weight: 500;
}

.process__list {
  align-self: stretch;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding: 24px;
  background: #ffffff;
  border-radius: 15px;
  outline: 1px solid #E0E0E0;
  outline-offset: -1px;
}

.process-step__icon {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.process-step__label {
  text-align: center;
  color: #111534;
  font-size: 17px;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
}

/* Events types */

.events-types {
  padding-top: 40px;
  padding-bottom: 40px;
  background: #FDFDFD;
  overflow: hidden;
}

.events-types__inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

.events-types__title {
  align-self: stretch;
  text-align: center;
  color: #111534;
  font-size: 38px;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
}

.events-types__text {
  align-self: stretch;
  text-align: center;
  color: #58585E;
  font-size: 18px;
  font-family: 'Manrope', sans-serif;
  font-weight: 500;
}

.events-types__row {
  display: flex;
  align-items: center;
  gap: 24px;
}

.tag {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 12px 24px;
  background: #F6F8FB;
  border-radius: 50px;
  outline: 1px solid #E0E0E0;
  outline-offset: -1px;
  color: #111534;
  font-size: 17px;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  white-space: nowrap;
}

.cta-box {
  width: 1200px;
  max-width: 100%;
  height: 170px;
  padding: 24px;
  background: #F6F8FB;
  border-radius: 15px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.cta-box__img {
  width: 122px;
  height: 122px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.cta-box__text {
  flex: 1 1 0;
  color: #111534;
  font-size: 27px;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
}

.cta-box__text-accent {
  color: #FE5C2D;
}

.cta-box__actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  flex-shrink: 0;
}

.cta-box__actions .btn--dark {
  align-self: stretch;
}

/* Pricing */

.pricing {
  padding-top: 40px;
  padding-bottom: 40px;
  background: #FDFDFD;
  overflow: hidden;
}

.pricing__inner {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 24px;
}

.pricing__title {
  align-self: stretch;
  text-align: center;
  color: #111534;
  font-size: 38px;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
}

.pricing__text {
  align-self: stretch;
  text-align: center;
  color: #58585E;
  font-size: 18px;
  font-family: 'Manrope', sans-serif;
  font-weight: 500;
}

.pricing__grid {
  align-self: stretch;
  display: flex;
  align-items: stretch;
  gap: 24px;
}

.pricing-card {
  width: 281.5px;
  max-width: 100%;
  padding: 24px;
  background: #ffffff;
  border-radius: 15px;
  outline: 1px solid #E0E0E0;
  outline-offset: -1px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.pricing-card__title {
  align-self: stretch;
  text-align: center;
  color: #30323D;
  font-size: 17px;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
}

.pricing-card__list {
  align-self: stretch;
  flex: 1 1 0;
  color: #58585E;
  font-size: 18px;
  font-family: 'Manrope', sans-serif;
  font-weight: 500;
}

.pricing-card__btn {
  align-self: center;
}

/* Slider controls (mobile only) */

.slider-controls {
  display: none;
  align-self: stretch;
  justify-content: center;
  align-items: center;
  gap: 16px;
}

.slider-btn {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid #E0E0E0;
  background: #ffffff;
  color: #111534;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
}

.slider-btn:active {
  background: #F6F8FB;
}

/* ==========================================================================
   Tablet (<=768px)
   ========================================================================== */

@media (max-width: 768px) {
  .container {
    padding-left: 32px;
    padding-right: 32px;
  }

  /* Header / nav */
  .header__inner {
    position: relative;
    flex-wrap: wrap;
  }

  .header__cta {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .nav {
    position: absolute;
    top: calc(100% + 20px);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 12px 32px rgba(17, 21, 52, 0.12);
    gap: 20px;
    padding: 24px;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    pointer-events: none;
    transition: max-height 0.3s ease, opacity 0.3s ease;
    z-index: 100;
  }

  .nav.is-open {
    max-height: 480px;
    opacity: 1;
    pointer-events: auto;
  }

  .btn.nav__cta {
    display: flex;
    align-self: stretch;
  }

  /* Section headings */
  .problem__title,
  .journey__title,
  .solutions__title,
  .included__title,
  .process__title,
  .events-types__title,
  .pricing__title {
    font-size: 28px;
  }

  .hero__title {
    font-size: 34px;
  }

  .value-box__title,
  .solutions-highlight__title {
    font-size: 22px;
  }

  .cta-box__text {
    font-size: 20px;
  }

  /* Hero */
  .hero__inner {
    flex-direction: column;
    align-items: stretch;
  }

  .hero__content {
    width: 100%;
    align-items: stretch;
  }

  .hero__image {
    width: 100%;
    height: auto;
    aspect-ratio: 588 / 432;
  }

  /* Problem */
  .problem__columns {
    flex-direction: column;
    align-items: stretch;
  }

  .problem__list,
  .value-box {
    width: 100%;
  }

  /* Journey / Included / Process grids */
  .journey__grid,
  .included__grid,
  .process__list {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Solutions */
  .solutions__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .solutions-highlight {
    grid-column: span 2;
  }

  /* Presentation banner */
  .presentation-banner {
    width: 100%;
    height: auto;
    min-height: 320px;
    padding: 32px;
  }

  .presentation-banner__title--narrow,
  .presentation-banner__text--narrow {
    width: 100%;
  }

  .presentation-banner__btn {
    width: 100%;
  }

  /* Events types */
  .events-types__row {
    flex-wrap: wrap;
  }

  .cta-box {
    width: 100%;
    height: auto;
    flex-direction: column;
    align-items: flex-start;
  }

  .cta-box__actions {
    align-self: stretch;
  }

  .cta-box__actions .btn {
    align-self: stretch;
  }

  /* Pricing */
  .pricing__inner {
    align-items: stretch;
  }

  .pricing__grid {
    flex-wrap: wrap;
  }

  .pricing-card {
    width: calc(50% - 12px);
  }

  /* Center all section titles/subtitles on mobile */
  .hero__title,
  .hero__text,
  .problem__title,
  .problem__text,
  .journey__title,
  .journey__text,
  .solutions__title,
  .included__title,
  .included__text,
  .process__title,
  .process__text,
  .events-types__title,
  .events-types__text,
  .pricing__title,
  .pricing__text,
  .value-box__title,
  .solutions-highlight__title,
  .solutions-highlight__text,
  .presentation-banner__title,
  .presentation-banner__text {
    text-align: center;
  }

  /* Buttons full width of container on mobile */
  .btn {
    width: 100%;
  }
}

/* ==========================================================================
   Mobile (<=480px)
   ========================================================================== */

@media (max-width: 480px) {
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .header {
    padding-top: 16px;
    padding-bottom: 16px;
  }

  .header__inner {
    flex-wrap: nowrap;
  }

  .logo {
    gap: 8px;
    min-width: 0;
  }

  .logo__img {
    width: 64px;
    height: 45px;
    flex-shrink: 0;
  }

  .logo__text {
    min-width: 0;
  }

  .logo__title {
    font-size: 18px;
  }

  .logo__subtitle {
    font-size: 9px;
    line-height: 1.3;
  }

  .nav-toggle {
    flex-shrink: 0;
  }

  /* Hero */
  .hero {
    padding-top: 32px;
    padding-bottom: 32px;
  }

  .hero__title {
    font-size: 26px;
  }

  .hero__text {
    font-size: 16px;
  }

  .hero__actions {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .hero__actions .btn {
    width: 100%;
    justify-content: center;
    text-align: center;
    white-space: normal;
  }

  /* Section paddings */
  .problem,
  .journey,
  .presentation,
  .solutions,
  .included,
  .process,
  .events-types,
  .pricing {
    padding-top: 32px;
    padding-bottom: 32px;
  }

  .problem__title,
  .journey__title,
  .solutions__title,
  .included__title,
  .process__title,
  .events-types__title,
  .pricing__title {
    font-size: 22px;
  }

  .problem__text,
  .journey__text,
  .events-types__text,
  .pricing__text,
  .included__text {
    font-size: 16px;
  }

  .value-box__title,
  .solutions-highlight__title {
    font-size: 19px;
  }

  .value-box {
    padding: 20px;
  }

  .value-box__row {
    flex-wrap: wrap;
    gap: 8px;
  }

  .value-box__from {
    width: auto;
  }

  /* Grids collapse to a single column */
  .journey__grid,
  .process__list,
  .solutions__grid {
    grid-template-columns: 1fr;
  }

  .solutions-highlight {
    grid-column: span 1;
  }

  /* Presentation banner */
  .presentation-banner {
    padding: 24px;
    min-height: 280px;
    border-radius: 12px;
  }

  .presentation-banner__title {
    font-size: 22px;
  }

  .presentation-banner__text {
    font-size: 15px;
  }

  .presentation-banner__btn {
    align-self: stretch;
    width: 100%;
    max-width: 100%;
    white-space: normal;
    text-align: center;
    line-height: 1.4;
    padding: 18px 24px;
    height: auto;
  }

  .btn--primary {
    padding: 16px 24px;
  }

  /* Events types */
  .tag {
    padding: 10px 16px;
    font-size: 14px;
  }

  .cta-box {
    align-items: center;
  }

  .cta-box__text {
    font-size: 18px;
    text-align: center;
  }

  .cta-box__img {
    width: 90px;
    height: 90px;
  }

  .cta-box__actions {
    align-self: stretch;
    align-items: stretch;
    width: 100%;
  }

  .cta-box__actions .btn {
    align-self: stretch;
    width: 100%;
  }

  /* Included — slider */
  .included__grid {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 16px;
    padding-bottom: 4px;
    scrollbar-width: none;
  }

  .included__grid::-webkit-scrollbar {
    display: none;
  }

  .included__grid .journey-card {
    flex: 0 0 82%;
    scroll-snap-align: start;
  }

  /* Pricing — slider */
  .pricing__grid {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 16px;
    padding-bottom: 4px;
    scrollbar-width: none;
  }

  .pricing__grid::-webkit-scrollbar {
    display: none;
  }

  .pricing-card {
    flex: 0 0 82%;
    scroll-snap-align: start;
  }

  .slider-controls {
    display: flex;
  }
}
