@font-face {
  font-family: 'Inter';
  src: url('./fonts/Inter.woff2') format('woff2');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

html,
body {
  overflow-x: clip;
}

@font-face {
  font-family: 'Zodiak';
  src: url('./fonts/Zodiak-Regular.woff2') format('woff2');
  font-weight: 400;
  font-display: swap;
  font-style: normal;
}

@font-face {
  font-family: 'Zodiak';
  src: url('./fonts/Zodiak-Bold.woff2') format('woff2');
  font-weight: 700;
  font-display: swap;
  font-style: normal;
}

.arrow-case-study {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  background-color: #0a0a0a;
  box-shadow: 0 0 0 100vmax #0a0a0a;
  clip-path: inset(0 -100vmax);
  position: relative;
  z-index: 1;
  display: flow-root;
}

.arrow-case-study::before,
.arrow-case-study::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1px;
  background-color: rgba(255, 255, 255, 0.1);
  z-index: 2;
  pointer-events: none;
}

.arrow-case-study::before {
  left: 30px;
}

.arrow-case-study::after {
  right: 30px;
}

.arrow-module {
  width: 100%;
  position: relative;
  box-sizing: border-box;
  margin: 0 !important;
  padding: 0 !important;
  background-color: #0a0a0a !important;
}

.arrow-module::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.1);
  z-index: 1;
  pointer-events: none;
}

.arrow-hero {
  margin-top: 30px !important;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 30px;
  padding: 0;
  width: 100%;
  position: relative;
}

.arrow-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.1);
  z-index: 1;
  pointer-events: none;
}

.arrow-hero-frame {
  width: 1540px;
  max-width: calc(100% - 60px);
  background: #edf5ee;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding-top: 60px;
}

.arrow-hero-logo {
  width: 200px;
  max-width: 50%;
  height: auto;
  z-index: 2;
}

.arrow-hero-logo svg,
.arrow-hero-logo img {
  width: 100%;
  height: auto;
  display: block;
}

.arrow-hero-image-wrapper {
  width: 1440px;
  max-width: 100%;
  z-index: 1;
  display: flex;
  justify-content: center;
  margin-bottom: -37px;
}

.arrow-hero-image-wrapper img {
  width: 1440px;
  max-width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 1024px) {
  .arrow-title {
    font-size: 48px;
    line-height: 56px;
  }
}

@media (max-width: 768px) {
  .arrow-case-study::before {
    left: 16px;
  }

  .arrow-case-study::after {
    right: 16px;
  }

  .arrow-hero {
    margin-top: 16px;
    margin-bottom: 60px;
  }

  .arrow-hero-frame {
    max-width: calc(100% - 32px);
    height: auto;
    padding-top: 40px;
    gap: 40px;
  }

  .arrow-hero-logo {
    width: 150px;
  }

  .arrow-hero-image-wrapper {
    margin-bottom: -20px;
  }
}

@media (max-width: 352px) {
  .arrow-case-study::before {
    left: 12px;
  }

  .arrow-case-study::after {
    right: 12px;
  }

  .arrow-hero {
    margin-top: 12px;
    margin-bottom: 40px;
  }

  .arrow-hero-frame {
    max-width: calc(100% - 24px);
    padding-top: 30px;
    gap: 30px;
  }

  .arrow-hero-logo {
    width: 120px;
  }

  .arrow-hero-image-wrapper {
    margin-bottom: -15px;
  }
}

.arrow-intro {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 100px 60px;
  gap: 180px;
}

.arrow-intro-title {
  flex: 1;
  max-width: 650px;
  font-family: 'Zodiak', serif;
  font-weight: 400;
  font-size: 50px;
  line-height: 64px;
  color: #ffffff;
}

.arrow-intro-desc {
  flex: 1;
  max-width: 650px;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
  color: #ffffff;
}

.arrow-intro-desc span {
  color: #ee7e2f;
}

.arrow-nav-module {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 60px 30px !important;
  width: 100%;
  box-sizing: border-box;
}

.arrow-nav-bar {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  width: 100%;
  height: 64px;
  padding: 0;
  box-sizing: border-box;
}

.arrow-nav-item {
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  background: #0a0a0a;
  color: #ffffff;
  border-style: solid;
  border-color: rgba(255, 255, 255, 0.1);
  border-width: 1px 1px 1px 0px;
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  line-height: 30px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease;
  flex: 1;
  height: 100%;
}

.arrow-nav-item:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #ee7e2f;
}

.arrow-nav-item:first-child {
  border-width: 1px;
}

.arrow-nav-item.active {
  background: #ffffff;
  color: #ee7e2f;
  font-weight: 600;
}

.arrow-details-module {
  padding: 100px 90px !important;
  box-sizing: border-box;
}

.arrow-details-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;
  width: 100%;
}

.arrow-details-title {
  font-family: 'Zodiak', serif;
  font-style: normal;
  font-weight: 400;
  font-size: 50px;
  line-height: 64px;
  color: #ffffff;
  margin: 0;
}

.arrow-details-grid {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.arrow-details-row {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 80px;
  width: 100%;
}

.arrow-details-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 24px 0;
  gap: 16px;
  flex: 1;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.arrow-details-label {
  font-family: 'Zodiak', serif;
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 27px;
  color: #ffffff;
}

.arrow-details-value {
  display: flex;
  flex-direction: row;
  align-items: center;
  font-family: 'Inter', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
  color: #ffffff;
  flex-wrap: wrap;
}

.arrow-text-orange {
  color: #ee7e2f;
}

.arrow-text-white {
  color: #ffffff;
}

.font-bold {
  font-weight: 600;
}

.arrow-details-icon {
  margin-left: 15px;
  width: 10px;
  height: 10px;
}

.arrow-details-icon-small {
  margin-left: 9px;
  width: 10px;
  height: 10px;
}

.arrow-details-founders-group {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 24px 0 0;
  gap: 16px;
}

.arrow-details-founders {
  display: flex;
  flex-direction: row;
  gap: 80px;
  width: 100%;
}

.arrow-details-founder {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  padding: 0 0 24px 0;
}

.arrow-details-avatar {
  width: 50px;
  height: 50px;
  border-radius: 100px;
  object-fit: cover;
}

.arrow-details-founder-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
}

.arrow-details-founder-name {
  display: flex;
  align-items: center;
  font-family: 'Inter', sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 20px;
  line-height: 24px;
  color: #ee7e2f;
}

.arrow-details-founder-title {
  font-family: 'Inter', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  color: #ffffff;
}

.arrow-stats-module {
  background-color: transparent !important;
}

.arrow-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 0 30px;
  gap: 0;
  width: 100%;
  box-sizing: border-box;
}

.arrow-stat-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  padding: 40px;
  gap: 10px;
  min-height: 300px;
  box-sizing: border-box;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.arrow-stat-card:last-child {
  border-right: none;
}

.arrow-stat-icon {
  width: 30px;
  height: 30px;
}

.arrow-stat-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  width: 100%;
}

.arrow-stat-value {
  font-family: 'Zodiak', serif;
  font-style: normal;
  font-weight: 400;
  font-size: 40px;
  line-height: 40px;
  color: #ffffff;
}

.arrow-stat-label {
  font-family: 'Inter', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 16px;
  color: #ffffff;
  text-transform: uppercase;
}

.arrow-why-module {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 100px 60px !important;
  background-color: transparent !important;
}

.arrow-why-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 60px;
  width: 100%;
  max-width: 1300px;
}

.arrow-why-title {
  font-family: 'Zodiak', serif;
  font-style: normal;
  font-weight: 400;
  font-size: 50px;
  line-height: 64px;
  color: #ffffff;
  margin: 0;
}

.arrow-why-desc {
  font-family: 'Inter', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
  color: #ffffff;
  margin: 0;
}

.arrow-why-desc a {
  text-decoration: underline;
  color: #ffffff;
}

.arrow-pain-module {
  background-color: transparent !important;
  padding-bottom: 100px !important;
}

.arrow-pain-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  padding: 0 30px;
  width: 100%;
  box-sizing: border-box;
  position: relative;
}

.arrow-pain-grid::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.1);
  bottom: 0;
  pointer-events: none;
}

.arrow-pain-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  padding: 40px;
  gap: 40px;
  box-sizing: border-box;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.arrow-pain-card:nth-child(3),
.arrow-pain-card:nth-child(5) {
  border-right: none;
}

.arrow-pain-card:nth-child(4),
.arrow-pain-card:nth-child(5) {
  border-bottom: none;
}

.arrow-pain-card-third {
  grid-column: span 2;
  min-height: 350px;
}

.arrow-pain-card-half {
  grid-column: span 3;
  height: 290px;
}

.arrow-pain-title {
  font-family: 'Zodiak', serif;
  font-style: normal;
  font-weight: 400;
  font-size: 30px;
  line-height: 40px;
  color: #ffffff;
}

.arrow-pain-desc {
  font-family: 'Inter', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
  color: #ffffff;
}

.arrow-steps-module {
  background-color: #edf5ee !important;
  color: #0a0a0a;
  padding: 100px 60px !important;
  display: flex;
  justify-content: center;
}

.arrow-steps-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;
  width: 100%;
  max-width: 1480px;
}

.arrow-steps-title {
  font-family: 'Zodiak', serif;
  font-weight: 400;
  font-size: 50px;
  line-height: 64px;
  color: #0a0a0a;

  flex: 1;
  margin: 0;
  position: sticky;
  top: 100px;
}

.arrow-steps-list {
  display: flex;
  flex-direction: column;
  flex: 1;
  max-width: 800px;
  position: relative;
}

.arrow-step-card:not(:last-child)::before {
  content: '';
  position: absolute;
  top: 46px;
  bottom: 0;
  left: 63px;
  width: 2px;
  background-color: #0a0a0a;
  z-index: 1;
}

.arrow-step-card {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  padding: 30px;
  gap: 60px;
  border: 1px solid rgba(10, 10, 10, 0.1);
  background-color: #edf5ee;
  position: sticky;
}

.arrow-step-card:nth-child(1) {
  top: 100px;
  z-index: 1;
}
.arrow-step-card:nth-child(2) {
  top: 105px;
  z-index: 2;
}
.arrow-step-card:nth-child(3) {
  top: 110px;
  z-index: 3;
}
.arrow-step-card:nth-child(4) {
  top: 115px;
  z-index: 4;
}
.arrow-step-card:nth-child(5) {
  top: 120px;
  z-index: 5;
}
.arrow-step-card:nth-child(6) {
  top: 125px;
  z-index: 6;
}

.arrow-step-label {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 8px;
  background: #0a0a0a;
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 14px;
  line-height: 14px;
  min-width: 68px;
  box-sizing: border-box;
  position: relative;
  z-index: 2;
}

.arrow-step-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.arrow-step-name {
  font-family: 'Zodiak', serif;
  font-weight: 400;
  font-size: 30px;
  line-height: 30px;
  color: #0a0a0a;
  margin: 0;
}

.arrow-step-desc {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
  color: #0a0a0a;
  margin: 0;
}

.arrow-engineering-module {
  display: flex;
  flex-direction: column;
  padding: 100px 30px 0 30px !important;
  margin-bottom: 100px !important;
  gap: 60px;
}

.arrow-engineering-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
  padding: 0 30px;
  box-sizing: border-box;
}

.arrow-engineering-title {
  font-family: 'Zodiak', serif;
  font-weight: 400;
  font-size: 50px;
  line-height: 64px;
  color: #ffffff;
  margin: 0;
  max-width: 1114px;
}

.arrow-engineering-subtitle {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
  color: #ffffff;
  margin: 0;
  max-width: 654px;
}

.arrow-engineering-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: 100%;
  gap: 0;
  background-color: transparent;
  position: relative;
}

.arrow-engineering-grid::before {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.1);
  z-index: 10;
  pointer-events: none;
  top: 0;
}

.arrow-engineering-grid::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.1);
  z-index: 10;
  pointer-events: none;
  bottom: 0;
}

.arrow-engineering-card {
  display: flex;
  flex-direction: column;
  padding: 40px;
  gap: 40px;
  background-color: #0a0a0a;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  box-sizing: border-box;
}

.arrow-engineering-card:last-child {
  border-right: none;
}

.arrow-engineering-icon {
  width: 30px;
  height: 30px;
}

.arrow-engineering-text {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
  color: #ffffff;
  margin: 0;
}

.arrow-workspace-module {
  display: flex;
  flex-direction: column;
  padding: 100px 30px !important;
  gap: 60px;
}

.arrow-workspace-module::after {
  display: none !important;
}

.arrow-workspace-header {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  padding: 0 30px;
  box-sizing: border-box;
}

.arrow-workspace-title {
  font-family: 'Zodiak', serif;
  font-weight: 400;
  font-size: 50px;
  line-height: 64px;
  color: #ffffff;
  margin: 0;
}

.arrow-workspace-grid {
  display: flex;
  flex-direction: column;
  width: 100%;
  position: relative;
}

.arrow-workspace-grid::before,
.arrow-workspace-grid::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.1);
  z-index: 10;
  pointer-events: none;
}

.arrow-workspace-grid::before {
  top: 0;
}

.arrow-workspace-grid::after {
  bottom: 0;
}

.arrow-workspace-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 40px;
  gap: 30px;
  background-color: #0a0a0a;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  box-sizing: border-box;
}

.arrow-workspace-card:last-child {
  border-bottom: none;
}

.arrow-workspace-icon {
  width: 30px;
  height: 30px;
}

.arrow-workspace-content {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.arrow-workspace-name {
  font-family: 'Zodiak', serif;
  font-weight: 400;
  font-size: 40px;
  line-height: 54px;
  color: #ffffff;
  margin: 0;
}

.arrow-workspace-desc {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
  color: #ffffff;
  margin: 0;
}

.arrow-human-module {
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  padding: 100px 60px !important;
  gap: 180px;
  width: 100%;
  position: relative;
  background-color: #0a0a0a;
}

.arrow-human-module::before {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.1);
  top: 0;
  pointer-events: none;
}

.arrow-human-title {
  flex: 1;
  max-width: 650px;
  font-family: 'Zodiak', serif;
  font-weight: 400;
  font-size: 50px;
  line-height: 64px;
  color: #ffffff;
  margin: 0;
}

.arrow-human-text {
  flex: 1;
  max-width: 650px;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
  color: #ffffff;
  margin: 0;
}

.arrow-single-image-module {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  background-color: #edf5ee !important;
}

.arrow-single-image-wrapper {
  width: 100%;
  max-width: 1600px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.arrow-single-image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
}

.arrow-single-image-module::after {
  display: none !important;
}

.arrow-users-module {
  display: flex;
  flex-direction: column;
  padding: 100px 30px !important;
  gap: 60px;
  background-color: #0a0a0a;
}

.arrow-users-module::after {
  display: none !important;
}

.arrow-users-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
  padding: 0 30px;
  box-sizing: border-box;
}

.arrow-users-title {
  font-family: 'Zodiak', serif;
  font-weight: 400;
  font-size: 50px;
  line-height: 64px;
  color: #ffffff;
  margin: 0;
  max-width: 827px;
}

.arrow-users-subtitle {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
  color: #ffffff;
  margin: 0;
  max-width: 759px;
}

.arrow-users-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  width: 100%;
  position: relative;
}

.arrow-users-grid::before,
.arrow-users-grid::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.1);
  z-index: 10;
  pointer-events: none;
}

.arrow-users-grid::before {
  top: 0;
}

.arrow-users-grid::after {
  bottom: 0;
}

.arrow-users-card {
  display: flex;
  flex-direction: column;
  padding: 40px;
  gap: 40px;
  background-color: #0a0a0a;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  box-sizing: border-box;
}

.arrow-users-card:nth-child(2n) {
  border-right: none;
}

.arrow-users-icon {
  width: 30px;
  height: 30px;
}

.arrow-users-name {
  font-family: 'Zodiak', serif;
  font-weight: 400;
  font-size: 40px;
  line-height: 40px;
  color: #ffffff;
  margin: 0;
}

.arrow-users-desc {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
  color: #ffffff;
  margin: 0;
}

.arrow-results-module {
  display: flex;
  flex-direction: column;
  padding: 0 120px 100px 120px !important;
  gap: 60px;
  background-color: #0a0a0a;
}

.arrow-results-title {
  font-family: 'Zodiak', serif;
  font-weight: 400;
  font-size: 50px;
  line-height: 64px;
  color: #ffffff;
  margin: 0;
}

.arrow-results-table {
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: 100%;
}

.arrow-results-header {
  display: grid;
  grid-template-columns: 500px 1fr;
  gap: 155px;
  width: 100%;
}

.arrow-results-header-text {
  font-family: 'Zodiak', serif;
  font-weight: 540;
  font-size: 20px;
  line-height: 27px;
  color: #ffffff;
}

.arrow-results-rows {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.arrow-results-row {
  display: grid;
  grid-template-columns: 500px 1fr;
  gap: 155px;
  width: 100%;
  align-items: center;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.arrow-results-metric-col {
  display: flex;
  flex-direction: column;
}

.arrow-results-number {
  font-family: 'Zodiak', serif;
  font-weight: 400;
  font-size: 60px;
  line-height: 80px;
  color: #ffffff;
}

.arrow-results-label {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
  color: #ffffff;
}

.arrow-results-desc-col {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
  color: #ffffff;
  max-width: 550px;
}

.arrow-comparison-module {
  display: flex;
  flex-direction: column;
  padding: 100px 30px !important;
  gap: 60px;
  background-color: #0a0a0a;
}

.arrow-comparison-module::after {
  display: none !important;
}

.arrow-comparison-title {
  font-family: 'Zodiak', serif;
  font-weight: 400;
  font-size: 50px;
  line-height: 64px;
  text-align: center;
  color: #ffffff;
  margin: 0;
  width: 100%;
}

.arrow-comparison-grid {
  display: flex;
  flex-direction: row;
  width: 100%;
  position: relative;
}

.arrow-comparison-grid::before,
.arrow-comparison-grid::after,
.arrow-cta-card::before,
.arrow-cta-card::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.1);
  pointer-events: none;
}

.arrow-comparison-grid::before,
.arrow-cta-card::before {
  top: 0;
}

.arrow-comparison-grid::after,
.arrow-cta-card::after {
  bottom: 0;
}

.arrow-comparison-col {
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}

.arrow-comparison-matrix {
  flex: 460;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.arrow-comparison-manual {
  flex: 540;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.arrow-comparison-arrow {
  flex: 540;
  background-color: #edf5ee;
}

.arrow-comparison-cell {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 0 32px;
  height: 100px;
  gap: 16px;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
  color: #ffffff;
}

.arrow-comparison-matrix .arrow-comparison-cell:not(:last-child),
.arrow-comparison-manual .arrow-comparison-cell:not(:last-child) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.arrow-comparison-arrow .arrow-comparison-cell:not(:last-child) {
  border-bottom: 1px solid rgba(10, 10, 10, 0.1);
}

.arrow-comparison-header {
  font-family: 'Zodiak', serif;
  font-weight: 540;
  font-size: 30px;
  line-height: 40px;
}

.arrow-comparison-arrow .arrow-comparison-cell,
.arrow-comparison-arrow .arrow-comparison-header {
  color: #0a0a0a;
}

.arrow-comparison-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.arrow-quote-module {
  padding: 100px 30px !important;
}

.arrow-quote-module::after {
  display: none !important;
}

.arrow-quote-container {
  display: flex;
  flex-direction: row;
  width: 100%;
  max-width: 1540px;
  margin: 0 auto;
  position: relative;
}

.arrow-quote-container::before,
.arrow-quote-container::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.1);
  z-index: 2;
  pointer-events: none;
}

.arrow-quote-container::before {
  top: 0;
}

.arrow-quote-container::after {
  bottom: 0;
}

.arrow-quote-image {
  flex: 507;
}

.arrow-quote-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
  display: block;
}

.arrow-quote-content {
  flex: 1033;
  background-color: #edf5ee;
  display: flex;
  flex-direction: column;
}

.arrow-quote-mark {
  width: 59px;
  height: 50px;
}

.arrow-quote-mark.top-quote {
  margin: 50px 0 0 50px;
}

.arrow-quote-mark.bottom-quote {
  margin: 0 50px 25px auto;
}

.arrow-quote-text {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 30px;
  line-height: 51px;
  color: #0a0a0a;
  margin: 20px 50px;
}

.arrow-quote-footer {
  display: flex;
  flex-direction: row;
  margin-top: auto;
  border-top: 1px solid #0a0a0a;
}

.arrow-quote-author {
  flex: 512;
  border-right: 1px solid #0a0a0a;
  padding: 20px 20px 20px 50px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-sizing: border-box;
}

.arrow-author-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.arrow-author-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.arrow-author-name {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 24px;
  color: #0a0a0a;
}

.arrow-author-title {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  color: #0a0a0a;
}

.arrow-quote-stats {
  flex: 521;
  padding: 10px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-sizing: border-box;
}

.arrow-stat-number {
  font-family: 'Zodiak', serif;
  font-weight: 400;
  font-size: 50px;
  line-height: 64px;
  color: #0a0a0a;
}

.arrow-stat-label-CEO {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 24px;
  color: #000000;
  text-transform: none;
}

.arrow-next-module {
  padding: 0 30px 100px !important;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
  background-color: #0a0a0a;
}

.arrow-next-module::after {
  display: none !important;
}

.arrow-next-title {
  font-family: 'Zodiak', serif;
  font-weight: 400;
  font-size: 50px;
  line-height: 64px;
  text-align: center;
  color: #ffffff;
  margin: 0;
  width: 100%;
}

.arrow-next-grid {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 1540px;
  margin: 0 auto;
  position: relative;
}

.arrow-next-grid::before,
.arrow-next-grid::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.1);
  z-index: 2;
  pointer-events: none;
}

.arrow-next-grid::before {
  top: 0;
}

.arrow-next-grid::after {
  bottom: 0;
}

.arrow-next-row {
  display: flex;
  flex-direction: row;
  width: 100%;
}

.arrow-next-card {
  min-height: 350px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 40px;
  gap: 40px;
  background: #0a0a0a;
  box-sizing: border-box;
}

.arrow-next-row-top .arrow-next-card {
  flex: 1;
  border-width: 0px 1px 1px 0px;
  border-style: solid;
  border-color: rgba(255, 255, 255, 0.1);
}

.arrow-next-row-top .arrow-next-card:first-child {
  border-left-width: 1px;
}

.arrow-next-row-bottom .arrow-next-card {
  flex: 1;
  border-width: 0px 1px 0px 0px;
  border-style: solid;
  border-color: rgba(255, 255, 255, 0.1);
}

.arrow-next-row-bottom .arrow-next-card:first-child {
  border-left-width: 1px;
}

.arrow-next-icon {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
}

.arrow-next-text {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
  color: #ffffff;
  margin: 0;
}

.arrow-faq-module {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 30px 0 !important;
  margin-bottom: 100px !important;
  gap: 60px;
  background-color: #0a0a0a;
}

.arrow-faq-title {
  font-family: 'Zodiak', serif;
  font-weight: 400;
  font-size: 50px;
  line-height: 64px;
  text-align: center;
  color: #ffffff;
  margin: 0;
  width: 100%;
}

.arrow-faq-grid {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
}

.arrow-faq-item {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  padding: 30px;
  gap: 30px;
  background-color: #0a0a0a;
  border-width: 0 1px 1px 1px;
  border-style: solid;
  border-color: rgba(255, 255, 255, 0.1);
  box-sizing: border-box;
  cursor: pointer;
}

.arrow-faq-item:first-child {
  border-top-width: 1px;
}

.arrow-faq-item:last-child {
  border-bottom: none;
}

.arrow-faq-content {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.arrow-faq-question {
  font-family: 'Zodiak', serif;
  font-weight: 400;
  font-size: 30px;
  line-height: 40px;
  color: #ffffff;
  margin: 0;
}

.arrow-faq-answer-wrapper {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  margin-top: 0;
  transition: grid-template-rows 0.4s ease, margin-top 0.4s ease,
    opacity 0.4s ease;
}

.arrow-faq-item.active .arrow-faq-answer-wrapper {
  opacity: 1;
  grid-template-rows: 1fr;
  margin-top: 30px;
}

.arrow-faq-answer {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
  color: #ffffff;
  margin: 0;
  overflow: hidden;
}

.arrow-faq-icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  height: 40px;
  flex-shrink: 0;
}

.arrow-faq-icon {
  width: 16px;
  height: 8px;
  display: block;
  transform: rotate(180deg);
  transition: transform 0.4s ease;
}

.arrow-faq-item.active .arrow-faq-icon {
  transform: rotate(0deg);
}

.arrow-cta-module {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 30px 30px !important;
  gap: 10px;
  width: 100%;
}

.arrow-cta-card {
  width: 100%;
  max-width: 1540px;
  height: 630px;
  background-image: url('/casestudies-assets/arrow/image/CTA-SECTION.webp');
  background-size: 60% auto;
  background-position: right bottom;
  background-repeat: no-repeat;
  background-color: #edf5ee;
  position: relative;
  display: flex;
  align-items: center;
}

.arrow-cta-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 60px;
  padding-left: 90px;
  box-sizing: border-box;
}

.arrow-cta-title {
  font-family: 'Zodiak', serif;
  font-weight: 400;
  font-size: 50px;
  line-height: 64px;
  color: #0a0a0a;
  margin: 0;
  max-width: 100%;
}

.arrow-cta-button {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 16px;
  gap: 10px;
  width: 358px;
  max-width: 100%;
  height: 56px;
  background-color: #0a0a0a;
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 24px;
  text-transform: uppercase;
  text-decoration: none;
  transition: background-color 0.3s ease;
  box-sizing: border-box;
}

.arrow-cta-button:hover {
  background-color: #333333;
}

@media (max-width: 1400px) {
  .arrow-hero-frame {
    gap: 60px;
    padding-top: 60px;
  }

  .arrow-intro {
    gap: 60px;
    padding: 50px 60px 80px 60px;
  }

  .arrow-details-module {
    padding: 80px 60px !important;
  }

  .arrow-results-module {
    padding: 0 60px 80px 60px !important;
  }

  .arrow-comparison-module {
    padding: 80px 30px !important;
  }

  .arrow-quote-module {
    padding: 80px 30px !important;
  }

  .arrow-next-module {
    padding: 80px 30px !important;
  }

  .arrow-faq-module {
    padding: 80px 30px !important;
  }

  .arrow-faq-item:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .arrow-cta-module {
    padding: 0 30px 30px !important;
  }

  .arrow-cta-content {
    padding-left: 60px;
    max-width: 45%;
  }
}

@media (max-width: 1300px) {
  .arrow-hero-frame {
    gap: 40px;
    padding-top: 40px;
  }

  .arrow-intro {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    padding: 40px 54px 60px 54px;
  }

  .arrow-why-module {
    padding-left: 54px !important;
    padding-right: 54px !important;
  }

  .arrow-pain-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .arrow-pain-card-third,
  .arrow-pain-card-half {
    grid-column: span 1;
    height: auto;
    min-height: 280px;
  }

  .arrow-steps-container {
    flex-direction: column;
    gap: 40px;
  }

  .arrow-steps-title {
    max-width: 100%;
    position: static;
    font-size: 42px;
    line-height: 52px;
  }

  .arrow-steps-list {
    max-width: 100%;
    width: 100%;
  }

  .arrow-engineering-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    background-color: transparent;
  }

  .arrow-engineering-card {
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .arrow-engineering-card:nth-child(2n) {
    border-right: none;
  }

  .arrow-engineering-card:nth-last-child(-n + 2) {
    border-bottom: none;
  }

  .arrow-human-module {
    flex-direction: column;
    padding: 50px 60px !important;
    gap: 30px;
  }

  .arrow-human-title {
    max-width: 100%;
  }

  .arrow-human-text {
    max-width: 100%;
  }

  .arrow-users-module {
    padding: 80px 30px !important;
  }

  .arrow-users-title {
    font-size: 42px;
    line-height: 52px;
  }

  .arrow-steps-module {
    padding: 80px 54px !important;
  }

  .arrow-pain-card {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
  }

  .arrow-pain-card:nth-child(odd) {
    border-right: 1px solid rgba(255, 255, 255, 0.1) !important;
  }

  .arrow-pain-card:nth-child(even) {
    border-right: none !important;
  }

  .arrow-pain-card-half:last-child {
    grid-column: span 2;
    border-right: none !important;
    border-bottom: none !important;
  }

  .arrow-intro-title,
  .arrow-intro-desc {
    max-width: 100%;
    width: 100%;
  }

  .arrow-intro-title {
    font-size: 42px;
    line-height: 52px;
  }

  .arrow-workspace-title {
    font-size: 42px;
    line-height: 52px;
  }

  .arrow-workspace-name {
    font-size: 32px;
    line-height: 42px;
  }

  .arrow-intro-desc {
    font-size: 18px;
  }

  .arrow-details-module {
    padding: 60px 54px !important;
  }

  .arrow-details-row {
    flex-direction: column;
    gap: 0;
  }

  .arrow-details-item {
    width: 100%;
    flex: none;
  }

  .arrow-details-founders {
    flex-direction: column;
    gap: 0;
  }

  .arrow-details-founder + .arrow-details-founder {
    padding-top: 24px;
  }

  .arrow-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .arrow-stat-card {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .arrow-stat-card:nth-child(2n) {
    border-right: none;
  }

  .arrow-why-module {
    padding-top: 80px !important;
    padding-bottom: 80px !important;
  }

  .arrow-cta-content {
    padding-left: 40px;
    max-width: 45%;
  }

  .arrow-cta-title {
    font-size: 36px;
    line-height: 48px;
  }
}

@media (max-width: 992px) {
  .arrow-engineering-card,
  .arrow-workspace-card,
  .arrow-users-card,
  .arrow-next-card,
  .arrow-pain-card,
  .arrow-stat-card {
    padding: 30px !important;
  }

  .arrow-hero-frame {
    gap: 30px;
    padding-top: 30px;
  }

  .arrow-intro {
    padding: 30px 54px 50px 54px;
    gap: 16px;
  }

  .arrow-intro-title {
    font-size: 32px;
    line-height: 42px;
  }

  .arrow-intro-desc {
    font-size: 16px;
  }

  .arrow-human-module {
    padding: 30px 54px 50px 54px !important;
    gap: 16px;
  }

  .arrow-human-title {
    font-size: 32px;
    line-height: 42px;
  }

  .arrow-human-text {
    font-size: 16px;
    line-height: 24px;
  }

  .arrow-users-title {
    font-size: 32px;
    line-height: 42px;
  }

  .arrow-users-subtitle {
    font-size: 16px;
  }

  .arrow-results-header {
    display: none;
  }

  .arrow-results-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .arrow-results-number {
    font-size: 48px;
    line-height: 60px;
  }

  .arrow-comparison-grid {
    flex-direction: row;
    overflow-x: auto;
    flex-wrap: nowrap;
    scroll-snap-type: x mandatory;
    gap: 0;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .arrow-comparison-grid::-webkit-scrollbar {
    display: none;
  }

  .arrow-comparison-matrix,
  .arrow-comparison-manual,
  .arrow-comparison-arrow {
    width: 85vw;
    max-width: 350px;
    flex: 0 0 auto;
    scroll-snap-align: start;
    border: 1px solid rgba(255, 255, 255, 0.1);
  }

  .arrow-comparison-arrow {
    border: 1px solid rgba(10, 10, 10, 0.1);
  }

  .arrow-quote-container {
    flex-direction: column;
  }

  .arrow-quote-image {
    width: 100%;
    height: 400px;
    flex: none;
  }

  .arrow-quote-content {
    width: 100%;
    flex: none;
  }

  .arrow-quote-footer {
    flex-direction: column;
    height: auto;
  }

  .arrow-quote-author {
    border-right: none;
    border-bottom: 1px solid #0a0a0a;
    padding: 30px;
  }

  .arrow-quote-stats {
    padding: 30px;
  }

  .arrow-stat-number {
    font-size: 40px;
    line-height: 50px;
  }

  .arrow-next-row {
    flex-direction: column;
  }

  .arrow-next-row-top .arrow-next-card,
  .arrow-next-row-bottom .arrow-next-card {
    border-width: 0 1px 1px 1px;
  }

  .arrow-next-row-bottom .arrow-next-card:last-child {
    border-bottom-width: 0;
  }

  .arrow-faq-question {
    font-size: 24px;
    line-height: 32px;
  }

  .arrow-faq-icon-wrapper {
    height: 32px;
  }

  .arrow-cta-card {
    height: auto;
    min-height: 550px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    background-position: bottom center;
    background-size: 80% auto;
  }

  .arrow-cta-content {
    padding-top: 60px;
    padding-left: 30px;
    padding-right: 30px;
    padding-bottom: 55vw;
    width: 100%;
    max-width: 100%;
    gap: 30px;
    align-items: center;
    text-align: center;
  }

  .arrow-cta-title {
    font-size: 40px;
    line-height: 50px;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .arrow-intro {
    padding: 20px 40px 40px 40px;
    gap: 16px;
  }

  .arrow-human-module {
    padding: 20px 40px 40px 40px !important;
    gap: 16px;
  }

  .arrow-why-module {
    padding-top: 60px !important;
    padding-bottom: 60px !important;
    padding-left: 40px !important;
    padding-right: 40px !important;
  }

  .arrow-nav-module {
    padding: 40px 16px !important;
  }

  .arrow-nav-item {
    font-size: 16px;
    padding: 0 24px;
  }

  .arrow-details-module {
    padding: 40px 40px !important;
  }

  .arrow-results-title,
  .arrow-comparison-title,
  .arrow-next-title,
  .arrow-faq-title {
    font-size: 32px;
    line-height: 42px;
    padding: 0 16px;
  }

  .arrow-details-title,
  .arrow-why-title {
    font-size: 40px;
    line-height: 50px;
  }

  .arrow-details-label,
  .arrow-details-value,
  .arrow-details-founder-name {
    font-size: 16px;
    line-height: 24px;
  }

  .arrow-pain-grid {
    padding: 0 16px;
  }

  .arrow-pain-title {
    font-size: 24px;
    line-height: 32px;
  }

  .arrow-pain-desc {
    font-size: 16px;
    line-height: 24px;
  }

  .arrow-steps-module {
    padding: 40px 40px !important;
  }

  .arrow-step-card {
    padding: 20px;
    gap: 20px;
  }

  .arrow-step-card:not(:last-child)::before {
    left: 53px;
    top: 36px;
    bottom: -36px;
  }

  .arrow-step-name {
    font-size: 24px;
    line-height: 32px;
  }

  .arrow-step-desc {
    font-size: 16px;
    line-height: 24px;
  }

  .arrow-engineering-grid {
    grid-template-columns: 1fr;
  }

  .arrow-engineering-module {
    margin-bottom: 0px !important;
    padding: 40px 16px !important;
  }

  .arrow-workspace-module {
    padding: 40px 16px !important;
  }

  .arrow-workspace-header {
    padding: 0 16px;
  }

  .arrow-workspace-title {
    font-size: 32px;
    line-height: 42px;
  }

  .arrow-workspace-name {
    font-size: 24px;
    line-height: 32px;
  }

  .arrow-workspace-desc {
    font-size: 16px;
    line-height: 24px;
  }

  .arrow-users-module {
    padding: 40px 16px !important;
  }

  .arrow-users-grid {
    grid-template-columns: 1fr;
  }

  .arrow-users-card {
    padding: 30px;
    gap: 30px;
    border-right: none !important;
  }

  .arrow-users-card:not(:last-child) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .arrow-users-name {
    font-size: 24px;
    line-height: 32px;
  }

  .arrow-users-desc {
    font-size: 16px;
    line-height: 24px;
  }

  .arrow-results-module {
    padding: 40px 40px !important;
  }

  .arrow-results-number {
    font-size: 40px;
    line-height: 50px;
  }

  .arrow-comparison-module {
    padding: 40px 16px !important;
  }

  .arrow-comparison-title {
    font-size: 32px;
    line-height: 42px;
  }

  .arrow-comparison-cell {
    padding: 0 20px;
    height: 120px;
    font-size: 16px;
    line-height: 24px;
  }

  .arrow-comparison-header {
    font-size: 24px;
    line-height: 32px;
  }

  .arrow-quote-module {
    padding: 40px 16px !important;
  }

  .arrow-quote-text {
    font-size: 20px;
    line-height: 32px;
    margin: 20px 30px;
  }

  .arrow-quote-mark {
    width: 40px;
    height: 34px;
  }

  .arrow-quote-mark.top-quote {
    margin: 30px 0 0 30px;
  }

  .arrow-quote-mark.bottom-quote {
    margin: 0 30px 20px auto;
  }

  .arrow-quote-image {
    height: 300px;
  }

  .arrow-next-module {
    padding: 40px 16px !important;
  }

  .arrow-next-card {
    padding: 30px;
  }

  .arrow-faq-module {
    padding: 40px 16px !important;
  }

  .arrow-faq-item {
    padding: 24px 16px;
    gap: 20px;
  }

  .arrow-faq-item.active .arrow-faq-answer-wrapper {
    margin-top: 20px;
  }

  .arrow-faq-question {
    font-size: 20px;
    line-height: 28px;
  }

  .arrow-faq-answer {
    font-size: 16px;
    line-height: 24px;
  }

  .arrow-faq-icon-wrapper {
    padding: 0 8px;
    height: 28px;
  }

  .arrow-cta-module {
    padding: 0 16px 30px !important;
  }

  .arrow-cta-card {
    min-height: 480px;
    background-size: 100% auto;
  }

  .arrow-cta-content {
    padding-top: 40px;
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 70vw;
    align-items: center;
    text-align: center;
    gap: 30px;
    max-width: 100%;
  }

  .arrow-cta-title {
    font-size: 32px;
    line-height: 42px;
  }

  .arrow-cta-button {
    font-size: 16px;
    padding: 12px 24px;
    white-space: nowrap;
  }

  .arrow-engineering-card {
    padding: 30px;
    gap: 30px;
    border-right: none !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
  }

  .arrow-engineering-card:last-child {
    border-bottom: none !important;
  }

  .arrow-engineering-title {
    font-size: 42px;
    line-height: 52px;
  }

  .arrow-engineering-text {
    font-size: 18px;
    line-height: 28px;
  }
}

.arrow-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 0px 30px;
  gap: 0;
  position: relative;
  margin-bottom: 1px;
}

.arrow-features::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.1);
  z-index: 3;
  pointer-events: none;
}

.arrow-feature-card {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 40px;
  gap: 40px;
  background: #0a0a0a;
  border-width: 1px 1px 0 0;
  border-style: solid;
  border-color: rgba(255, 255, 255, 0.1);
}

.arrow-feature-card:first-child {
  border-left-width: 1px;
}

.arrow-feature-icon {
  width: 30px;
  height: 30px;
}

.arrow-feature-text {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.5;
  color: #ffffff;
  margin: 0;
}

.arrow-nav-bar {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  width: 100%;
  height: 64px;
  box-sizing: border-box;
}

.arrow-nav-item {
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  background: #0a0a0a;
  color: #ffffff;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  line-height: 30px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.arrow-nav-item:first-child {
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.arrow-nav-item.active {
  background: #ffffff;
  color: #0a0a0a;
}

@media (max-width: 1400px) {
  .arrow-feature-card {
    padding: 30px;
    gap: 30px;
  }
}

@media (max-width: 1200px) {
  .arrow-features {
    grid-template-columns: repeat(2, 1fr);
  }

  .arrow-feature-card {
    border-width: 1px 1px 0 0;
  }

  .arrow-feature-card:nth-child(2n) {
    border-right-width: 0;
  }
}

@media (max-width: 768px) {
  .arrow-features {
    padding: 0 16px;
  }

  .arrow-feature-text {
    font-size: 18px;
  }

  .arrow-stats {
    padding: 0 12px;
  }

  .arrow-stat-value {
    font-size: 32px;
    line-height: 42px;
  }

  .arrow-stat-card {
    height: auto;
    min-height: 250px;
  }
}

@media (max-width: 576px) {
  .arrow-features {
    grid-template-columns: 1fr;
  }

  .arrow-feature-card {
    border-width: 1px 0 0 0 !important;
  }

  .arrow-stats {
    grid-template-columns: 1fr;
  }

  .arrow-stat-card {
    border-right: none !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .arrow-stat-card:last-child {
    border-bottom: none;
  }

  .arrow-why-module {
    padding-left: 40px !important;
    padding-right: 40px !important;
  }

  .arrow-why-title {
    font-size: 32px;
    line-height: 42px;
  }

  .arrow-why-desc {
    font-size: 16px;
    line-height: 24px;
  }

  .arrow-details-module {
    padding: 40px 36px !important;
  }

  .arrow-pain-grid {
    grid-template-columns: 1fr;
  }

  .arrow-pain-card-third,
  .arrow-pain-card-half {
    grid-column: span 1 !important;
    min-height: 200px;
  }

  .arrow-pain-card {
    border-right: none !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
  }

  .arrow-pain-card:last-child {
    border-bottom: none !important;
  }

  .arrow-steps-module {
    padding: 40px 16px !important;
  }

  .arrow-step-card {
    padding: 20px 16px;
    gap: 16px;
  }

  .arrow-step-card:not(:last-child)::before {
    left: 49px;
    top: 36px;
    bottom: -36px;
  }

  .arrow-engineering-module {
    padding: 40px 16px !important;
  }

  .arrow-engineering-card {
    padding: 40px;
    gap: 20px;
  }

  .arrow-engineering-title {
    font-size: 32px;
    line-height: 42px;
  }

  .arrow-engineering-text {
    font-size: 16px;
    line-height: 24px;
  }

  .arrow-engineering-subtitle {
    font-size: 16px;
    line-height: 24px;
  }
}

@media (max-width: 360px) {
  .arrow-engineering-module,
  .arrow-workspace-module {
    padding: 40px 12px !important;
  }

  .arrow-workspace-header {
    padding: 0 12px;
  }

  .arrow-workspace-title {
    font-size: 24px;
    line-height: 32px;
  }

  .arrow-workspace-name {
    font-size: 20px;
    line-height: 28px;
  }

  .arrow-users-module {
    padding: 40px 12px !important;
  }

  .arrow-users-header {
    padding: 0 12px;
  }

  .arrow-results-number {
    font-size: 32px;
    line-height: 40px;
  }

  .arrow-comparison-module {
    padding: 40px 12px !important;
  }

  .arrow-results-title,
  .arrow-comparison-title,
  .arrow-next-title,
  .arrow-faq-title {
    font-size: 24px;
    line-height: 32px;
    padding: 0 16px;
  }

  .arrow-comparison-cell {
    padding-left: 12px;
    padding-right: 12px;
  }

  .arrow-quote-module {
    padding: 40px 12px !important;
  }

  .arrow-quote-text {
    font-size: 16px;
    line-height: 26px;
    margin: 20px;
  }

  .arrow-quote-mark.top-quote {
    margin: 20px 0 0 20px;
  }

  .arrow-quote-mark.bottom-quote {
    margin: 0 20px 20px auto;
  }

  .arrow-quote-author,
  .arrow-quote-stats {
    padding: 20px;
  }

  .arrow-next-module {
    padding: 40px 12px !important;
  }

  .arrow-next-card {
    padding: 30px;
  }

  .arrow-faq-module {
    padding: 40px 12px !important;
  }

  .arrow-faq-item {
    padding: 20px 12px;
    gap: 16px;
  }

  .arrow-faq-item.active .arrow-faq-answer-wrapper {
    margin-top: 16px;
  }

  .arrow-faq-question {
    font-size: 18px;
    line-height: 26px;
  }

  .arrow-faq-icon-wrapper {
    padding: 0;
    height: 26px;
  }

  .arrow-faq-icon {
    width: 16px;
    height: 8px;
  }

  .arrow-cta-module {
    padding: 0 12px 30px !important;
  }

  .arrow-cta-card {
    height: 350px;
  }

  .arrow-cta-title {
    font-size: 24px;
    line-height: 32px;
  }

  .arrow-cta-button {
    font-size: 13px;
    padding: 10px 16px;
  }

  .arrow-features,
  .arrow-pain-grid {
    padding: 0 12px;
  }

  .arrow-nav-module {
    padding: 40px 13px !important;
  }

  .arrow-feature-text {
    font-size: 16px;
  }
}

@media (max-width: 1200px) {
  .arrow-nav-bar {
    display: flex;
    overflow-x: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }

  .arrow-nav-bar::-webkit-scrollbar {
    display: none;
  }

  .arrow-nav-item {
    flex: 0 0 auto;
    padding: 0 32px;
  }
}
