:root {
  --tfv-footer-surface: #fff;
  --tfv-section-surface: #fff;
  --tfv-reference-commitment-surface: #f6f3ec;
}

.section-cta,
.section-footer {
  font-family: "Plus Jakarta Sans", sans-serif;
}

.section-cta {
  position: relative;
  margin-top: 72px;
  overflow: hidden;
  border-top-left-radius: 56px;
  border-top-right-radius: 56px;
  background: #101114 url("../../cta_back.png") center / cover no-repeat;
  color: #fff;
}

.section-footer {
  position: relative;
  z-index: 10;
  margin-top: -2px;
  overflow: hidden;
  border-radius: 0 0 56px 56px;
  background: var(--tfv-footer-surface);
  box-shadow: none;
}

.tfv-section-padding {
  position: relative;
  z-index: 2;
  padding-right: 32px;
  padding-left: 32px;
}

.tfv-section-padding-cta {
  padding-top: 100px;
  padding-bottom: 136px;
}

.tfv-shell {
  width: min(100%, 1180px);
  margin-right: auto;
  margin-left: auto;
}

.section-testimonial {
  overflow: hidden;
}

.tfv-testimonial-padding {
  padding-top: 112px;
  padding-bottom: 16px;
}

.tfv-testimonial-wrap {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.tfv-testimonial-intro {
  display: flex;
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.tfv-section-title {
  margin: 0 0 20px;
  color: #101114;
  font-size: 42px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.tfv-section-copy {
  margin: 0;
  max-width: 642px;
  color: #475569;
  font-size: 16px;
  line-height: 160%;
}

.tfv-intro-main,
.tfv-intro-side {
  display: flex;
  flex-direction: column;
}

.section-commitment-b {
  background-color: var(--tfv-section-surface);
}

.tfv-commitment-padding {
  padding-top: 104px;
  padding-bottom: 24px;
}

.tfv-commitment-wrap {
  display: flex;
  flex-direction: column;
  gap: 56px;
}

.tfv-commitment-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.tfv-commitment-heading {
  max-width: 740px;
}

.tfv-commitment-heading .tfv-section-title {
  margin-bottom: 20px;
}

.tfv-commitment-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 22px;
  border-radius: 999px;
  background-color: #101114;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  transition: background-color 0.25s ease, color 0.25s ease;
}

.tfv-commitment-button:hover {
  background-color: #f4b64e;
  color: #101114;
}

.tfv-commitment-button svg {
  width: 16px;
  height: 16px;
}

.tfv-commitment-size {
  position: relative;
  height: 150vh;
}

.tfv-commitment-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1.05fr);
  gap: 48px;
  align-items: start;
  position: sticky;
  top: 110px;
}

.tfv-commitment-media {
  overflow: hidden;
  border-radius: 32px;
  box-shadow: 0 24px 64px rgba(15, 23, 42, 0.12);
}

.tfv-commitment-image {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  transition: opacity 0.22s ease;
}

.tfv-commitment-media.is-switching .tfv-commitment-image {
  opacity: 0.35;
}

.tfv-commitment-content {
  display: flex;
  gap: 28px;
  align-items: stretch;
}

.tfv-commitment-line {
  flex: none;
  width: 1px;
  background-color: rgba(15, 23, 42, 0.12);
}

.tfv-commitment-line-fill {
  width: 1px;
  height: 25%;
  background-color: #f18701;
  transition: height 0.3s ease;
}

.tfv-commitment-items {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 0;
}

.tfv-commitment-item {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 16px;
  align-items: start;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  opacity: 0.28;
  transform: translateY(12px);
  transition:
    opacity 0.35s ease,
    transform 0.35s ease;
}

.tfv-commitment-item + .tfv-commitment-item {
  padding-top: 20px;
}

.tfv-commitment-item.is-active {
  opacity: 1;
  transform: translateY(0);
}

.tfv-commitment-item:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.tfv-commitment-icon-wrap {
  display: flex;
  width: 70px;
  height: 70px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background-color: #101114;
  color: #fff;
  flex: none;
  transition:
    background-color 0.35s ease,
    color 0.35s ease,
    transform 0.35s ease;
}

.tfv-commitment-item.is-active .tfv-commitment-icon-wrap {
  background-color: #f4b64e;
  color: #101114;
  transform: scale(1.04);
}

.tfv-commitment-icon {
  width: 28px;
  height: 28px;
}

.tfv-commitment-text h3 {
  margin: 0 0 10px;
  color: #101114;
  font-size: 1.5rem;
  line-height: 1.06;
  font-weight: 700;
  letter-spacing: -0.035em;
}

.tfv-commitment-text p {
  margin: 0;
  color: #64748b;
  font-size: 17px;
  line-height: 1.72;
}

.tfv-testimonial-row {
  overflow: hidden;
  padding-bottom: 8px;
  position: relative;
}

.tfv-testimonial-row.is-auto-slider {
  cursor: default;
}

.tfv-testimonial-track {
  display: flex;
  gap: 24px;
  width: max-content;
  will-change: transform;
}

.tfv-testimonial-row::-webkit-scrollbar,
.tfv-testimonial-track::-webkit-scrollbar {
  display: none;
}

.tfv-testimonial-card {
  display: flex;
  min-height: 100%;
  flex: 0 0 320px;
  flex-direction: column;
  gap: 56px;
  padding: 48px 32px;
  border: 1px solid rgba(16, 17, 20, 0.12);
  border-radius: 28px;
  background-color: #fff;
  color: #101114;
  scroll-snap-align: start;
}

.tfv-testimonial-card.is-accent {
  border-color: transparent;
  background-color: #f4b64e;
}

.tfv-testimonial-card.is-dark {
  border-color: #101114;
  background-color: #101114;
  color: #fff;
}

.tfv-testimonial-top {
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(16, 17, 20, 0.12);
}

.tfv-testimonial-card.is-dark .tfv-testimonial-top {
  border-bottom-color: rgba(255, 255, 255, 0.14);
}

.tfv-testimonial-author {
  display: block;
}

.tfv-testimonial-name {
  margin-bottom: 4px;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.3;
}

.tfv-testimonial-role {
  color: rgba(16, 17, 20, 0.6);
  font-size: 13px;
  font-style: italic;
  line-height: 1.5;
}

.tfv-testimonial-card.is-dark .tfv-testimonial-role {
  color: rgba(255, 255, 255, 0.72);
}

.tfv-testimonial-bottom {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.tfv-testimonial-stars {
  width: 100px;
}

.tfv-testimonial-quote {
  margin: 0;
  padding: 0;
  border-left: 0;
  font-size: 1.28rem;
  line-height: 1.6;
  font-weight: 600;
}

.tfv-cta-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  padding-right: 24px;
  padding-left: 24px;
}

.tfv-cta-images {
  position: relative;
  width: 226px;
  min-width: 226px;
  height: 320px;
}

.tfv-cta-card {
  overflow: hidden;
  border-radius: 24px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.24);
}

.tfv-cta-card img,
.tfv-footer-image-1,
.tfv-footer-image-2 {
  display: block;
  width: 100%;
  height: auto;
}

.tfv-cta-card-primary {
  width: 226px;
}

.tfv-cta-images-left .tfv-cta-card-primary {
  transform: rotate(7deg);
}

.tfv-cta-images-right .tfv-cta-card-primary {
  transform: rotate(-7deg);
}

.tfv-cta-card-secondary {
  position: absolute;
  top: 20%;
  width: 162px;
}

.tfv-cta-images-left .tfv-cta-card-secondary {
  left: -18%;
  transform: rotate(-22deg);
}

.tfv-cta-images-right .tfv-cta-card-secondary {
  right: -18%;
  transform: rotate(22deg);
}

.tfv-cta-content {
  display: flex;
  max-width: 620px;
  margin-right: auto;
  margin-left: auto;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.tfv-subtitle {
  margin-bottom: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.7;
}

.tfv-subtitle-icon {
  width: auto;
  height: 24px;
  flex: 0 0 auto;
  object-fit: contain;
}

.tfv-subtitle-text {
  display: inline-flex;
  align-items: center;
  padding: 4px 14px;
  border: 1px solid #f18701;
  border-radius: 18px;
}

.tfv-cta-title {
  margin: 0 0 20px;
  font-size: clamp(1rem, 2.5vw, 2.15rem);
  line-height: 1.05;
  font-weight: 700;
  letter-spacing: -0.04em;
  white-space: nowrap;
}

.tfv-cta-copy {
  margin: 0 0 32px;
  max-width: 540px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
  line-height: 1.7;
}

.tfv-cta-form-wrap {
  width: 100%;
}

.tfv-cta-form {
  display: flex;
  overflow: hidden;
  border-radius: 999px;
  background-color: #fff;
  box-shadow: 0 19px 19px rgba(0, 0, 0, 0.09);
}

.tfv-cta-form-field {
  width: 100%;
  min-height: 60px;
  border: 0;
  padding: 0 28px;
  background-color: #fff;
  color: #0f172a;
  font-size: 16px;
  font-weight: 500;
}

.tfv-cta-form-field::placeholder {
  color: #94a3b8;
}

.tfv-cta-form-field:focus {
  outline: none;
}

.tfv-cta-submit-button {
  display: inline-flex;
  min-height: 60px;
  flex: none;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  padding: 0 36px;
  background-color: #f18701;
  color: #111827;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.25s ease, transform 0.25s ease;
}

.tfv-cta-submit-button:hover {
  background-color: #ffad34;
  transform: translateY(-1px);
}

.tfv-cta-submit-button svg {
  width: 10px;
  height: 10px;
}

.tfv-cta-form-state {
  margin-top: 14px;
  font-size: 14px;
  font-weight: 500;
}

.tfv-cta-form-state.is-success {
  color: #c7f9cc;
}

.tfv-cta-form-state.is-error {
  color: #fecaca;
}

.tfv-section-radius {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  height: 96px;
  border-top-left-radius: 56px;
  border-top-right-radius: 56px;
  background-color: var(--tfv-footer-surface);
}

.tfv-footer-component {
  position: relative;
  background-color: var(--tfv-footer-surface);
}

.tfv-footer-content {
  position: relative;
  z-index: 2;
  padding-top: 20px;
  padding-bottom: 32px;
}

.tfv-footer-main {
  margin-bottom: 72px;
  display: flex;
  gap: 48px;
}

.tfv-footer-general {
  display: flex;
  max-width: 426px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
}

.tfv-footer-text {
  margin: 0;
  font-size: 24px;
  line-height: 160%;
  font-weight: 600;
  color: #101114;
}

.tfv-footer-socials {
  display: flex;
  align-items: center;
  gap: 16px;
}

.tfv-footer-social {
  display: inline-flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  border: 1px solid #101114;
  border-radius: 999px;
  color: #101114;
  transition: background-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.tfv-footer-social:hover {
  background-color: #101114;
  color: #fff;
  transform: translateY(-2px);
}

.tfv-footer-social svg {
  width: 16px;
  height: 16px;
}

.tfv-footer-line {
  width: 1px;
  background-color: rgba(16, 17, 20, 0.12);
}

.tfv-footer-columns {
  display: grid;
  flex: 1;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 72px;
}

.tfv-footer-column,
.tfv-footer-column-stack {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}

.tfv-footer-column-stack {
  gap: 28px;
}

.tfv-footer-column-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(140px, 1fr));
  gap: 24px;
}

.tfv-footer-title {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  line-height: 160%;
  color: #101114;
}

.tfv-footer-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.tfv-footer-link {
  position: relative;
  display: inline-flex;
  overflow: hidden;
  color: #475569;
  font-size: 16px;
  line-height: 160%;
  font-weight: 500;
  transition: color 0.25s ease;
  text-decoration: none;
}

.tfv-footer-link:hover {
  color: #101114;
}

.tfv-link-static,
.tfv-link-abs {
  display: block;
  white-space: nowrap;
  transition: transform 0.25s ease;
}

.tfv-link-abs {
  position: absolute;
  top: 100%;
  left: 0;
}

.tfv-footer-link:hover .tfv-link-static {
  transform: translateY(-115%);
}

.tfv-footer-link:hover .tfv-link-abs {
  transform: translateY(-115%);
}

.tfv-footer-copy {
  position: relative;
  z-index: 2;
  margin-bottom: 20px;
  text-align: center;
  color: #334155;
  font-size: 16px;
  line-height: 160%;
  font-weight: 500;
}

.tfv-footer-big-text {
  position: relative;
  z-index: 1;
  overflow: visible;
  display: block;
  width: 100%;
  text-align: center;
  white-space: nowrap;
  font-size: clamp(1.2rem, 6vw, 132px);
  line-height: 0.88;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
  background: linear-gradient(180deg, rgba(241, 135, 1, 0.92) 0%, rgba(241, 135, 1, 0) 88%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  user-select: none;
  pointer-events: none;
}

.tfv-footer-char {
  display: inline-block;
  background: linear-gradient(180deg, rgba(241, 135, 1, 0.92) 0%, rgba(241, 135, 1, 0) 88%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  will-change: transform, opacity;
}

.tfv-footer-images {
  pointer-events: none;
}

.tfv-footer-image-1,
.tfv-footer-image-2 {
  position: absolute;
  bottom: 0;
}

.tfv-footer-image-1 {
  left: -34px;
  width: clamp(240px, 18vw, 300px);
  max-width: none;
  opacity: 0.6;
  filter: saturate(0.92) brightness(1.04);
}

.tfv-footer-image-2 {
  right: 0;
  max-width: 220px;
  transform: translateY(-35%);
}

@media (prefers-reduced-motion: no-preference) {
  .tfv-motion-ready .section-testimonial .tfv-testimonial-intro,
  .tfv-motion-ready .section-testimonial .tfv-testimonial-card,
  .tfv-motion-ready .section-footer .tfv-footer-image-1,
  .tfv-motion-ready .section-footer .tfv-footer-image-2 {
    opacity: 0;
    filter: blur(10px);
    transition: opacity 0.9s ease, transform 0.9s cubic-bezier(0.22, 1, 0.36, 1), filter 0.9s ease;
    will-change: opacity, transform, filter;
  }

  .tfv-motion-ready .section-testimonial .tfv-testimonial-intro,
  .tfv-motion-ready .section-testimonial .tfv-testimonial-card {
    transform: translateY(42px);
  }

  .tfv-motion-ready .section-cta .tfv-cta-images {
    transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
    transform: translateY(34px) scale(0.94);
  }

  .tfv-motion-ready .section-footer .tfv-footer-big-text {
    transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
    transform: translateY(54px) scale(0.96);
    transform-origin: center bottom;
  }

  .tfv-motion-ready .section-footer .tfv-footer-image-1 {
    transform: translate(-36px, 18px) rotate(-4deg);
  }

  .tfv-motion-ready .section-footer .tfv-footer-image-2 {
    transform: translate(36px, -12%) rotate(4deg);
  }

  .tfv-motion-ready .section-footer .tfv-footer-char {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }

  .tfv-motion-ready .section-testimonial .tfv-testimonial-card:nth-child(1) {
    transition-delay: 0.05s;
  }

  .tfv-motion-ready .section-testimonial .tfv-testimonial-card:nth-child(2) {
    transition-delay: 0.12s;
  }

  .tfv-motion-ready .section-testimonial .tfv-testimonial-card:nth-child(3) {
    transition-delay: 0.19s;
  }

  .tfv-motion-ready .section-testimonial .tfv-testimonial-card:nth-child(4) {
    transition-delay: 0.26s;
  }

  .tfv-motion-ready .section-testimonial .tfv-testimonial-card:nth-child(5) {
    transition-delay: 0.33s;
  }

  .tfv-motion-ready .section-footer .tfv-footer-big-text {
    transition-delay: 0.3s;
  }

  .tfv-motion-ready .section-footer .tfv-footer-image-1 {
    transition-delay: 0.18s;
  }

  .tfv-motion-ready .section-footer .tfv-footer-image-2 {
    transition-delay: 0.26s;
  }

  .tfv-motion-ready .section-testimonial.is-visible .tfv-testimonial-intro,
  .tfv-motion-ready .section-testimonial.is-visible .tfv-testimonial-card,
  .tfv-motion-ready .section-footer.is-visible .tfv-footer-image-1,
  .tfv-motion-ready .section-footer.is-visible .tfv-footer-image-2 {
    opacity: 1;
    filter: blur(0);
  }

  .tfv-motion-ready .section-testimonial.is-visible .tfv-testimonial-intro,
  .tfv-motion-ready .section-testimonial.is-visible .tfv-testimonial-card {
    transform: translateY(0);
  }

  .tfv-motion-ready .section-cta.is-visible .tfv-cta-images {
    transform: translateY(0) scale(1);
  }

  .tfv-motion-ready .section-footer.is-visible .tfv-footer-big-text {
    transform: translateY(0) scale(1);
  }

  .tfv-motion-ready .section-footer.is-visible .tfv-footer-image-1 {
    opacity: 0.6;
    filter: blur(0) saturate(0.92) brightness(1.04);
    transform: translate(0, 0) rotate(0deg);
    animation: tfv-float-left 7.5s ease-in-out 1.1s infinite;
  }

  .tfv-motion-ready .section-footer.is-visible .tfv-footer-image-2 {
    transform: translateY(-35%) rotate(0deg);
    animation: tfv-float-right 8.5s ease-in-out 1.3s infinite;
  }

  .tfv-motion-ready .section-cta.is-visible .tfv-cta-images-left {
    animation: tfv-float-soft-left 9s ease-in-out 0.9s infinite;
  }

  .tfv-motion-ready .section-cta.is-visible .tfv-cta-images-right {
    animation: tfv-float-soft-right 10s ease-in-out 1s infinite;
  }
}

@media (prefers-reduced-motion: no-preference) {
  html.tfv-motion-ready .section-cta .tfv-motion-piece,
  html.tfv-motion-ready .section-footer .tfv-motion-piece {
    opacity: 0;
    filter: blur(var(--tfv-motion-blur, 8px));
    transform: translate3d(var(--tfv-motion-from-x, 0), var(--tfv-motion-from-y, 40px), 0) rotate(var(--tfv-motion-from-rotate, 0deg)) scale(var(--tfv-motion-from-scale, 1));
    transition:
      opacity 0.9s ease,
      transform 0.9s cubic-bezier(0.22, 1, 0.36, 1),
      filter 0.9s ease;
    transition-delay: var(--tfv-motion-delay, 0s);
    will-change: opacity, transform, filter;
  }

  html.tfv-motion-ready .section-cta .tfv-motion-piece.is-inview,
  html.tfv-motion-ready .section-footer .tfv-motion-piece.is-inview {
    opacity: 1;
    filter: blur(0);
    transform: translate3d(var(--tfv-motion-to-x, 0), var(--tfv-motion-to-y, 0), 0) rotate(var(--tfv-motion-to-rotate, 0deg)) scale(var(--tfv-motion-to-scale, 1));
  }
}

@keyframes tfv-float-left {
  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }

  50% {
    transform: translate(0, -10px) rotate(-2deg);
  }
}

@keyframes tfv-float-right {
  0%,
  100% {
    transform: translateY(-35%) rotate(0deg);
  }

  50% {
    transform: translateY(calc(-35% - 12px)) rotate(2deg);
  }
}

@keyframes tfv-float-soft-left {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-8px) scale(1.01);
  }
}

@keyframes tfv-float-soft-right {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-10px) scale(1.01);
  }
}

.tfv-vehicle-section {
  position: relative;
  background-color: var(--tfv-reference-commitment-surface);
}

.tfv-vehicle-section > :not(.tfv-vehicle-pattern) {
  position: relative;
  z-index: 1;
}

.tfv-vehicle-pattern {
  display: none;
}

.tfv-vehicle-intro {
  display: flex;
  flex-direction: column;
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
  align-items: center;
  gap: 0;
  margin-bottom: 0 !important;
  text-align: center;
}

.tfv-vehicle-intro .tfv-section-title {
  max-width: 760px;
}

.tfv-vehicle-intro .tfv-section-copy {
  max-width: 640px;
}

@media screen and (min-width: 992px) {
  .tfv-testimonial-intro,
  .tfv-vehicle-intro,
  .tfv-commitment-head {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
    column-gap: 56px;
    row-gap: 24px;
    max-width: 1180px;
    align-items: end;
    text-align: left;
  }

  .tfv-testimonial-intro .tfv-intro-main,
  .tfv-vehicle-intro .tfv-intro-main,
  .tfv-commitment-head .tfv-intro-main,
  .tfv-testimonial-intro .tfv-intro-side,
  .tfv-vehicle-intro .tfv-intro-side,
  .tfv-commitment-head .tfv-intro-side {
    align-items: flex-start;
  }

  .tfv-testimonial-intro .tfv-subtitle,
  .tfv-vehicle-intro .tfv-subtitle,
  .tfv-commitment-head .tfv-subtitle {
    justify-content: flex-start;
  }

  .tfv-testimonial-intro .tfv-section-title,
  .tfv-vehicle-intro .tfv-section-title,
  .tfv-commitment-head .tfv-section-title {
    max-width: 12ch;
  }

  .tfv-testimonial-intro .tfv-section-copy,
  .tfv-vehicle-intro .tfv-section-copy,
  .tfv-commitment-head .tfv-section-copy {
    max-width: 440px;
  }

  .tfv-commitment-head .tfv-intro-side {
    gap: 28px;
  }

  .tfv-commitment-head .tfv-commitment-button {
    margin-top: 0;
  }
}

.tfv-vehicle-section .vehicle-types-slider {
  padding-top: 1.5rem !important;
  padding-bottom: 1rem !important;
  overflow-x: hidden;
  overflow-y: visible;
}

.tfv-vehicle-section .vehicle-types-slider .swiper-wrapper {
  align-items: stretch;
  padding-bottom: 10px;
}

.tfv-vehicle-section .vehicle-types-slider .swiper-slide {
  height: auto !important;
  padding-top: 0;
}

.tfv-vehicle-section .vehicle-types-slider .swiper-slide > div {
  min-height: 100%;
  padding: 20px 20px 22px !important;
  border: 1px solid #e5e7eb !important;
  border-radius: 24px !important;
  background: #fff !important;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05) !important;
  text-align: center !important;
  transition: none !important;
}

.tfv-vehicle-section .vehicle-types-slider .swiper-slide > div::before {
  display: none;
}

.tfv-vehicle-section .vehicle-types-slider .swiper-slide > div::after {
  display: none;
}

.tfv-vehicle-section .vehicle-types-slider .swiper-slide > div:hover {
  transform: none;
  border-color: #e5e7eb !important;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05) !important;
}

.tfv-vehicle-section .vehicle-types-slider .swiper-slide > div > div:first-child {
  width: 100%;
  height: 172px !important;
  margin-bottom: 18px !important;
  border-radius: 18px;
  background: #f8fafc;
  overflow: hidden;
}

.tfv-vehicle-section .vehicle-types-slider .swiper-slide > div > div:first-child::before {
  display: none;
}

.tfv-vehicle-section .vehicle-types-slider .swiper-slide > div > div:first-child img {
  width: auto;
  max-width: 86%;
  max-height: 78% !important;
  filter: none;
  transform: none;
  transition: none;
}

.tfv-vehicle-section .vehicle-types-slider .swiper-slide > div:hover > div:first-child img {
  transform: none;
  filter: none;
}

.tfv-vehicle-section .vehicle-types-slider .swiper-slide > div > h3 {
  width: 100%;
  max-width: 14ch;
  margin: 0 auto 12px !important;
  color: #101114 !important;
  font-size: 1.28rem !important;
  line-height: 1.06 !important;
  font-weight: 700 !important;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

.tfv-vehicle-section .vehicle-types-slider .swiper-slide > div > div:nth-of-type(2) {
  display: flex !important;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  gap: 8px;
  margin-bottom: 14px !important;
}

.tfv-vehicle-section .vehicle-types-slider .swiper-slide > div > div:nth-of-type(2) > div {
  justify-content: center;
  min-height: 0;
  padding: 8px 12px !important;
  border: 1px solid #e5e7eb;
  border-radius: 999px !important;
  background: #f9fafb !important;
  color: #475569 !important;
  box-shadow: none;
}

.tfv-vehicle-section .vehicle-types-slider .swiper-slide > div > div:nth-of-type(2) > div:first-child {
  border-color: #e5e7eb;
  background: #f9fafb !important;
  color: #475569 !important;
}

.tfv-vehicle-section .vehicle-types-slider .swiper-slide > div > div:nth-of-type(2) > div:nth-child(2) {
  border-color: #e5e7eb;
  background: #f9fafb !important;
  color: #475569 !important;
}

.tfv-vehicle-section .vehicle-types-slider .swiper-slide > div > div:nth-of-type(2) svg {
  width: 15px;
  height: 15px;
  flex: none;
}

.tfv-vehicle-section .vehicle-types-slider .swiper-slide > div > p {
  width: 100%;
  max-width: 20ch;
  margin: auto auto 0;
  padding-top: 0;
  border-top: 0;
  color: #64748b !important;
  font-size: 0.98rem !important;
  line-height: 1.72 !important;
  font-style: normal !important;
  letter-spacing: -0.01em;
  text-wrap: balance;
}

.tfv-vehicle-nav-wrap {
  margin-top: 0 !important;
  padding-top: 6px;
  padding-bottom: 0 !important;
}

.tfv-vehicle-nav-wrap > div {
  justify-content: flex-start;
  gap: 10px !important;
}

.tfv-vehicle-section .veh-prev,
.tfv-vehicle-section .veh-next {
  width: 44px !important;
  height: 44px !important;
  border-radius: 999px !important;
  border: 1px solid #e5e7eb;
  background: #fff !important;
  color: #101114 !important;
  box-shadow: none !important;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.tfv-vehicle-section .veh-prev:hover,
.tfv-vehicle-section .veh-next:hover {
  background: #f9fafb !important;
  color: #101114 !important;
  transform: none;
  border-color: #d1d5db;
  box-shadow: none !important;
}

@media screen and (max-width: 991px) {
  .tfv-section-title {
    font-size: 36px;
  }

  .tfv-vehicle-intro .tfv-section-copy {
    max-width: 600px;
  }

  .tfv-vehicle-section .vehicle-types-slider .swiper-slide > div > div:first-child {
    height: 160px !important;
  }
}

@media screen and (max-width: 767px) {
  .tfv-vehicle-intro .tfv-section-copy {
    max-width: 100%;
  }

  .tfv-vehicle-section .vehicle-types-slider {
    padding-top: 1.25rem !important;
  }

  .tfv-vehicle-section .vehicle-types-slider .swiper-slide > div {
    padding: 18px 16px 20px !important;
    border-radius: 20px !important;
  }

  .tfv-vehicle-section .vehicle-types-slider .swiper-slide > div > div:first-child {
    height: 150px !important;
    margin-bottom: 18px !important;
    border-radius: 16px;
  }

  .tfv-vehicle-section .vehicle-types-slider .swiper-slide > div > h3 {
    font-size: 1.12rem !important;
    max-width: 15ch;
  }

  .tfv-vehicle-section .vehicle-types-slider .swiper-slide > div > p {
    font-size: 0.9rem !important;
    max-width: 22ch;
  }

  .tfv-vehicle-nav-wrap > div {
    justify-content: flex-start;
  }
}

@media screen and (min-width: 1280px) {
  .tfv-section-padding {
    padding-right: 48px;
    padding-left: 48px;
  }
}

@media screen and (min-width: 1536px) {
  .tfv-cta-content {
    max-width: 680px;
  }

  .tfv-footer-big-text {
    font-size: 156px;
    letter-spacing: 0;
  }
}

@media screen and (max-width: 991px) {
  .tfv-footer-text {
    font-size: 22px;
  }

  .tfv-commitment-padding {
    padding-top: 88px;
  }

  .tfv-commitment-size {
    height: auto;
  }

  .tfv-commitment-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    position: relative;
    top: auto;
  }

  .tfv-commitment-media {
    position: relative;
    top: auto;
    max-width: 720px;
    margin-right: auto;
    margin-left: auto;
  }

  .tfv-commitment-content {
    gap: 24px;
  }

  .tfv-commitment-items {
    gap: 0;
  }

  .tfv-testimonial-padding {
    padding-top: 88px;
  }

  .tfv-testimonial-card {
    flex-basis: 300px;
  }

  .section-cta {
    margin-top: 56px;
  }

  .tfv-cta-wrapper {
    padding-right: 0;
    padding-left: 0;
  }

  .tfv-cta-images,
  .tfv-footer-images {
    display: none;
  }

  .tfv-footer-content {
    padding-bottom: 28px;
  }

  .tfv-footer-main {
    margin-bottom: 56px;
    flex-direction: column;
  }

  .tfv-footer-line {
    width: 100%;
    height: 1px;
  }

  .tfv-footer-general {
    max-width: none;
  }

  .tfv-footer-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 40px 32px;
  }

  .tfv-footer-big-text {
    font-size: clamp(1.2rem, 5.8vw, 78px);
    letter-spacing: 0;
  }
}

@media screen and (max-width: 767px) {
  .tfv-footer-text {
    font-size: 20px;
  }

  .tfv-commitment-padding {
    padding-top: 64px;
    padding-bottom: 8px;
  }

  .tfv-commitment-wrap {
    gap: 40px;
  }

  .tfv-commitment-head {
    align-items: flex-start;
    text-align: left;
  }

  .tfv-commitment-heading {
    max-width: none;
  }

  .tfv-commitment-button {
    padding: 14px 20px;
  }

  .tfv-commitment-content {
    gap: 0;
  }

  .tfv-commitment-line {
    display: none;
  }

  .tfv-commitment-item {
    display: grid;
    grid-template-columns: 54px 1fr;
    gap: 14px;
    padding-bottom: 24px;
    border: 0;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
    opacity: 1;
    transform: none;
  }

  .tfv-commitment-item + .tfv-commitment-item {
    padding-top: 24px;
  }

  .tfv-commitment-item:last-child {
    padding-bottom: 0;
    border-bottom: 0;
  }

  .tfv-commitment-icon-wrap {
    width: 54px;
    height: 54px;
  }

  .tfv-commitment-icon {
    width: 20px;
    height: 20px;
  }

  .tfv-commitment-text h3 {
    font-size: 1.18rem;
  }

  .tfv-commitment-text p {
    font-size: 16px;
  }

  .tfv-testimonial-padding {
    padding-top: 64px;
    padding-bottom: 0;
  }

  .tfv-testimonial-wrap {
    gap: 36px;
  }

  .tfv-section-title {
    font-size: 32px;
  }

  .tfv-section-copy {
    font-size: 16px;
  }

  .tfv-testimonial-card {
    flex-basis: 280px;
    gap: 40px;
    padding: 36px 24px;
  }

  .tfv-testimonial-quote {
    font-size: 1.08rem;
  }

  .section-cta {
    margin-top: 40px;
    border-top-left-radius: 32px;
    border-top-right-radius: 32px;
  }

  .section-footer {
    border-bottom-right-radius: 32px;
    border-bottom-left-radius: 32px;
  }

  .tfv-section-padding {
    padding-right: 20px;
    padding-left: 20px;
  }

  .tfv-section-padding-cta {
    padding-top: 60px;
    padding-bottom: 108px;
  }

  .tfv-cta-title {
    font-size: 1.3rem;
  }

  .tfv-cta-copy {
    font-size: 16px;
  }

  .tfv-cta-form {
    border-radius: 24px;
    flex-direction: column;
  }

  .tfv-cta-form-field {
    min-height: 56px;
    padding-right: 22px;
    padding-left: 22px;
  }

  .tfv-cta-submit-button {
    min-height: 56px;
    padding: 16px 24px;
  }

  .tfv-section-radius {
    height: 72px;
    border-top-left-radius: 32px;
    border-top-right-radius: 32px;
  }

  .tfv-footer-content {
    padding-top: 12px;
    padding-bottom: 24px;
  }

  .tfv-footer-main {
    gap: 28px;
    margin-bottom: 40px;
  }

  .tfv-footer-columns,
  .tfv-footer-column-grid {
    grid-template-columns: 1fr;
  }

  .tfv-footer-text {
    font-size: 1.5rem;
  }

  .tfv-footer-copy {
    text-align: left;
  }

  .tfv-footer-big-text {
    text-align: left;
    font-size: clamp(0.95rem, 5vw, 34px);
    letter-spacing: 0;
    line-height: 0.94;
  }
}

@media screen and (max-width: 479px) {
  .tfv-section-title {
    font-size: 26px;
  }

  .tfv-footer-text {
    font-size: 18px;
  }
}

@media screen and (max-width: 575px) {
  .tfv-footer-big-text {
    font-size: clamp(0.82rem, 4.6vw, 19px);
    letter-spacing: 0;
    line-height: 1;
  }
}

