:root {
  --theme-color: #E3FF04;
  --title-color: #0A0C00;
  --body-color: #0A0C00;
  --smoke-color: #F6F5F3;
  --black-color: #202020;
  --white-color: #ffffff;
  --light-color: #9fa2ad;
  --border-color: #E3E3E3;
  --title-font: "Unbounded", "Trebuchet MS", sans-serif;
  --body-font: "Poppins", "Helvetica Neue", Arial, sans-serif;
  --main-container: 1296px;
  --container-gutters: 24px;
  --section-space: 140px;
  --section-space-mobile: 80px;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: var(--body-font);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.625;
  color: var(--body-color);
  background-color: var(--white-color);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--title-color);
  text-decoration: none;
  transition: color 0.4s var(--ease);
}

button {
  font: inherit;
  color: inherit;
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid #6d7a00;
  outline-offset: 3px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--title-font);
  color: var(--title-color);
  font-weight: 700;
  line-height: 1.4;
  margin: 0 0 15px;
}

h1 { font-size: 100px; line-height: 1.167; }
h2 { font-size: 60px; line-height: 1.133; }
h3 { font-size: 36px; line-height: 1.278; }
h4 { font-size: 24px; line-height: 1.333; }
h5 { font-size: 20px; line-height: 1.417; }
h6 { font-size: 18px; line-height: 1.5; }

p {
  margin: 0 0 18px;
  line-height: 1.75;
}

.container {
  max-width: calc(var(--main-container) + var(--container-gutters) * 2);
  margin-inline: auto;
  padding-inline: var(--container-gutters);
  width: 100%;
}

.space {
  padding-block: var(--section-space);
}

.space-bottom {
  padding-bottom: var(--section-space);
}

.bg-theme {
  background-color: var(--theme-color);
}

.bg-smoke {
  background-color: var(--smoke-color);
}

.sec-title {
  font-size: 60px;
  font-weight: 600;
  letter-spacing: -1.8px;
  line-height: 1.133;
  margin: -0.16em 0 22px;
}

.sec-text {
  font-size: 18px;
  line-height: 1.667;
  margin: 30px 0 0;
}

.title-area {
  margin-bottom: 65px;
}

.title-area--center {
  text-align: center;
}

.title-area--flush {
  margin-bottom: 0;
}

.link-effect {
  position: relative;
  overflow: hidden;
  display: block;
  height: 17px;
  line-height: normal;
}

.link-effect__item {
  display: block;
  height: 100%;
  position: relative;
  top: 0;
  transition: top 0.3s var(--ease);
}

.link-effect:hover .link-effect__item,
a:hover > .link-effect .link-effect__item,
button:hover > .link-effect .link-effect__item,
a:focus-visible > .link-effect .link-effect__item,
button:focus-visible > .link-effect .link-effect__item {
  top: -100%;
}

.btn {
  position: relative;
  z-index: 2;
  display: inline-block;
  border: none;
  text-align: center;
  background-color: var(--title-color);
  color: var(--white-color);
  font-family: var(--title-font);
  font-size: 14px;
  font-weight: 600;
  padding: 21.5px 40px;
  border-radius: 0;
  overflow: hidden;
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-color: var(--theme-color);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.45s var(--ease);
}

.btn:hover,
.btn:focus-visible {
  color: var(--title-color);
}

.btn:hover::before,
.btn:focus-visible::before {
  transform: scaleX(1);
}

.btn--theme {
  background-color: var(--theme-color);
  color: var(--title-color);
}

.btn--theme::before {
  background-color: var(--title-color);
}

.btn--theme:hover,
.btn--theme:focus-visible {
  color: var(--theme-color);
}

.btn--circle {
  border-radius: 50%;
  height: 180px;
  width: 180px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.link-btn {
  font-size: 14px;
  font-weight: 600;
  font-family: var(--title-font);
  line-height: 0.8;
  position: relative;
  padding-bottom: 6px;
  text-transform: uppercase;
  color: var(--title-color);
  display: inline-flex;
  align-items: flex-end;
  gap: 10px;
}

.link-btn::before,
.link-btn::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background-color: var(--title-color);
  transition: width 0.4s var(--ease);
}

.link-btn::after {
  width: 0;
  left: 0;
  right: auto;
  transition: width 0.6s var(--ease);
}

.link-btn:hover::before,
.link-btn:focus-visible::before {
  width: 0;
}

.link-btn:hover::after,
.link-btn:focus-visible::after {
  width: 100%;
}

.link-btn__arrow {
  width: 12px;
  height: 12px;
  flex: none;
  margin-bottom: 1px;
  transition: transform 0.4s var(--ease);
}

.link-btn:hover .link-btn__arrow,
.link-btn:focus-visible .link-btn__arrow {
  transform: translate3d(3px, -3px, 0);
}

.nav-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 41;
}

.sticky-wrapper {
  padding-inline: 36px;
  transition: background-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.sticky-wrapper.is-sticky {
  position: fixed;
  inset: 0 0 auto;
  background-color: var(--white-color);
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.07);
  animation: stickyAni 0.6s var(--ease);
}

@keyframes stickyAni {
  from { transform: translate3d(0, -40px, 0); opacity: 0.7; }
  to { transform: translate3d(0, 0, 0); opacity: 1; }
}

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

.header-logo {
  font-family: var(--title-font);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--title-color);
  display: inline-flex;
  align-items: baseline;
  gap: 7px;
  padding-block: 30px;
}

.header-logo__mark {
  position: relative;
}

.header-logo__mark::after {
  content: "";
  position: absolute;
  right: -6px;
  bottom: 4px;
  width: 6px;
  height: 6px;
  background-color: var(--theme-color);
  border-radius: 50%;
}

.header-logo__word {
  font-size: 15px;
  font-weight: 400;
  letter-spacing: -0.01em;
}

.main-menu {
  margin-left: auto;
}

.main-menu ul {
  display: flex;
  align-items: center;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.main-menu a {
  display: block;
  position: relative;
  font-family: var(--title-font);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: -0.14px;
  color: var(--title-color);
  padding: 46.5px 20px;
}

.main-menu a::before {
  content: "";
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 40px;
  height: 2px;
  background-color: var(--theme-color);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.4s var(--ease);
}

.main-menu a:hover::before,
.main-menu a:focus-visible::before,
.main-menu a[aria-current="page"]::before {
  transform: scaleX(1);
}

.sidebar-btn {
  background: transparent;
  height: 60px;
  width: 60px;
  border: 2px solid var(--title-color);
  border-radius: 50%;
  padding: 0;
  display: grid;
  place-content: center;
  gap: 4px;
  flex: none;
}

.sidebar-btn .line {
  display: block;
  height: 2px;
  width: 18px;
  background: var(--title-color);
  transition: transform 0.4s var(--ease), width 0.4s var(--ease), opacity 0.3s var(--ease);
}

.sidebar-btn:hover .line:nth-child(2) {
  width: 10px;
}

.sidebar-btn[aria-expanded="true"] .line:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.sidebar-btn[aria-expanded="true"] .line:nth-child(2) {
  opacity: 0;
}

.sidebar-btn[aria-expanded="true"] .line:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.sidemenu-wrapper {
  position: fixed;
  inset: 0;
  z-index: 999;
  background-color: rgba(10, 12, 0, 0.65);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s var(--ease), visibility 0.5s var(--ease);
}

.sidemenu-wrapper.is-open {
  opacity: 1;
  visibility: visible;
}

.sidemenu-content {
  background-color: var(--title-color);
  width: min(560px, 100%);
  margin-left: auto;
  padding: 120px 80px 80px;
  height: 100%;
  overflow-y: auto;
  position: relative;
  transform: translate3d(100%, 0, 0);
  transition: transform 0.6s var(--ease);
}

.sidemenu-wrapper.is-open .sidemenu-content {
  transform: translate3d(0, 0, 0);
}

.sidemenu-close {
  width: 60px;
  height: 60px;
  position: absolute;
  top: 40px;
  right: 40px;
  background-color: transparent;
  border: 2px solid rgba(246, 245, 243, 0.35);
  border-radius: 50%;
  color: var(--white-color);
  display: grid;
  place-content: center;
  transition: transform 0.4s var(--ease), background-color 0.4s var(--ease);
}

.sidemenu-close:hover {
  transform: rotate(90deg);
  background-color: #2e2e2d;
}

.sidemenu-close svg {
  width: 18px;
  height: 18px;
}

.sidemenu-logo {
  color: var(--white-color);
  font-family: var(--title-font);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.04em;
  display: inline-flex;
  align-items: baseline;
  gap: 7px;
}

.sidemenu-logo .header-logo__word {
  color: rgba(255, 255, 255, 0.7);
}

.sidemenu-text {
  color: rgba(246, 245, 243, 0.7);
  margin: 28px 0 40px;
  max-width: 320px;
}

.sidemenu-nav {
  list-style: none;
  margin: 0 0 44px;
  padding: 0;
  border-top: 1px solid rgba(246, 245, 243, 0.2);
}

.sidemenu-nav li {
  border-bottom: 1px solid rgba(246, 245, 243, 0.2);
}

.sidemenu-nav a {
  display: block;
  padding: 16px 0;
  font-family: var(--title-font);
  font-size: 18px;
  font-weight: 500;
  color: var(--white-color);
}

.sidemenu-nav a:hover,
.sidemenu-nav a:focus-visible {
  color: var(--theme-color);
}

.sidemenu-block {
  margin-bottom: 30px;
}

.sidemenu-block h6 {
  color: var(--white-color);
  font-size: 16px;
  font-weight: 500;
  margin: 0 0 6px;
  line-height: 1.6;
}

.sidemenu-block a {
  color: var(--white-color);
}

.sidemenu-block a:hover,
.sidemenu-block a:focus-visible {
  color: var(--theme-color);
}

.sidemenu-legal {
  color: rgba(246, 245, 243, 0.55);
  font-size: 13px;
  line-height: 1.7;
  margin: 0;
}

.hero-wrapper {
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.hero-wrapper::before,
.hero-wrapper::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  z-index: -1;
  pointer-events: none;
}

.hero-wrapper::before {
  width: 620px;
  height: 620px;
  top: -260px;
  left: -180px;
  background: radial-gradient(circle, rgba(227, 255, 4, 0.55) 0%, rgba(227, 255, 4, 0) 70%);
  animation: floatBlob 18s var(--ease) infinite alternate;
}

.hero-wrapper::after {
  width: 460px;
  height: 460px;
  right: -140px;
  top: 40px;
  background: radial-gradient(circle, rgba(227, 255, 4, 0.4) 0%, rgba(227, 255, 4, 0) 70%);
  animation: floatBlob 22s var(--ease) 1.5s infinite alternate-reverse;
}

@keyframes floatBlob {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to { transform: translate3d(40px, 50px, 0) scale(1.12); }
}

.hero-style1 {
  position: relative;
  z-index: 6;
  padding: 185px 0 80px;
}

.hero-title {
  font-size: 120px;
  font-weight: 600;
  letter-spacing: -3.6px;
  line-height: 1.05;
  color: var(--title-color);
  margin: 0;
}

.hero-title__line {
  display: block;
}

.hero-title__line--end {
  text-align: right;
}

.hero-title__accent {
  background: linear-gradient(96deg, #0A0C00 25%, #6d7a00 60%, #0A0C00 90%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-lead {
  width: 50%;
  margin-left: auto;
}

.hero-text {
  font-size: 18px;
  line-height: 1.667;
  margin: 23px 0 0;
}

.hero-actions {
  margin-top: 30px;
}

.hero-year-tag {
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 300px;
  margin-top: 90px;
}

.hero-year-tag svg {
  flex: none;
  width: 40px;
  height: 40px;
}

.hero-year-tag p {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.6;
  margin: 0;
  text-transform: uppercase;
}

.about-area {
  margin-top: 100px;
  position: relative;
}

.about-area__inner {
  position: relative;
}

.about-img {
  position: absolute;
  left: 0;
  top: -100px;
  bottom: 140px;
  width: 44%;
  z-index: 3;
}

.about-img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.about-row {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.about-content {
  width: 50%;
}

.about-list {
  list-style: none;
  margin: 34px 0 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.about-list li {
  position: relative;
  padding-left: 26px;
  font-size: 17px;
}

.about-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 12px;
  height: 2px;
  background-color: var(--title-color);
}

.btn-wrap {
  margin-top: 50px;
}

.services-area {
  overflow: hidden;
}

.accordion-area {
  max-width: 66.66%;
  margin-inline: auto;
}

.accordion-card {
  transition: background-color 0.4s var(--ease);
  background: transparent;
  border-bottom: 2px solid var(--title-color);
  display: flex;
  align-items: flex-start;
  padding-block: 30px;
  position: relative;
  justify-content: space-between;
  gap: 20px;
}

.accordion-card:first-child {
  border-top: 2px solid var(--title-color);
}

.accordion-header {
  flex: none;
  margin: 0;
  font-size: inherit;
  line-height: inherit;
}

.accordion-button {
  font-size: 24px;
  font-weight: 600;
  font-family: var(--title-font);
  color: var(--title-color);
  border: 0;
  background-color: transparent;
  padding: 0;
  margin: 0;
  text-align: left;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.3;
}

.accordion-button::after {
  content: "";
  position: absolute;
  top: 34px;
  right: 0;
  width: 16px;
  height: 16px;
  background:
    linear-gradient(var(--title-color), var(--title-color)) center/16px 2px no-repeat,
    linear-gradient(var(--title-color), var(--title-color)) center/2px 16px no-repeat;
  transition: transform 0.35s var(--ease);
}

.accordion-button[aria-expanded="true"]::after {
  transform: rotate(90deg);
  background:
    linear-gradient(var(--title-color), var(--title-color)) center/16px 2px no-repeat;
}

.accordion-number {
  font-size: 14px;
  font-weight: 600;
  margin-right: 40px;
  flex: none;
  padding-top: 6px;
}

.accordion-panel {
  max-width: 365px;
  padding-right: 60px;
  overflow: hidden;
  transition: max-height 0.45s var(--ease), opacity 0.35s var(--ease);
}

.accordion-panel.is-collapsed {
  max-height: 0;
  opacity: 0;
}

.accordion-body {
  margin-top: -0.5em;
}

.accordion-body p {
  margin: 0;
  font-size: 18px;
}

.accordion-tags {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 16px 0 0;
  padding: 0;
}

.accordion-tags li {
  font-size: 13px;
  font-family: var(--title-font);
  font-weight: 500;
  border: 1px solid var(--title-color);
  padding: 5px 12px;
}

.work-area {
  overflow: hidden;
  position: relative;
}

.work-area::before {
  content: "";
  position: absolute;
  inset: 240px 0 0;
  background: linear-gradient(180deg, rgba(246, 245, 243, 0) 0%, var(--smoke-color) 90px, var(--smoke-color) 100%);
  z-index: -1;
}

.work-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
}

.work-col--half {
  width: 48.5%;
}

.work-col--wide {
  width: 56%;
}

.work-col--narrow {
  width: 40%;
}

.work-col--action {
  width: 100%;
  display: flex;
  justify-content: center;
}

.work-wrap {
  position: relative;
  display: block;
}

.work-wrap--offset-top {
  margin-top: 140px;
}

.work-wrap--offset-lg {
  margin-top: 140px;
}

.work-thumb {
  display: block;
  overflow: hidden;
  position: relative;
}

.work-thumb img {
  width: 100%;
  height: auto;
  transform: scale(1.03);
  transition: transform 0.5s var(--ease);
}

.work-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 12, 0, 0) 55%, rgba(10, 12, 0, 0.35) 100%);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}

.work-wrap:hover .work-thumb img {
  transform: scale(1.09) translate3d(8px, 0, 0);
}

.work-wrap:hover .work-thumb::after {
  opacity: 1;
}

.work-details {
  padding-top: 28px;
}

.work-meta {
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  margin: 0 0 14px;
  list-style: none;
}

.work-meta li {
  font-size: 18px;
}

.work-meta li:not(:last-child)::after {
  content: "/";
  margin: 0 6px;
}

.work-title {
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 23px;
  line-height: 1.278;
}

.work-result {
  margin-bottom: 23px;
  max-width: 460px;
}

.industries-area {
  position: relative;
  overflow: hidden;
}

.industries-area::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 240px;
  background: linear-gradient(180deg, var(--smoke-color) 0%, rgba(246, 245, 243, 0) 100%);
  z-index: -1;
}

.industries-lead {
  max-width: 720px;
  margin-inline: auto;
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px 24px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.industry-card {
  position: relative;
  padding: 26px 20px 0 0;
  border-top: 2px solid var(--border-color);
  transition: transform 0.4s var(--ease);
}

.industry-card::after {
  content: "";
  position: absolute;
  left: 0;
  top: -2px;
  width: 0;
  height: 2px;
  background: var(--title-color);
  transition: width 0.5s var(--ease);
}

.industry-card:hover {
  transform: translate3d(0, -6px, 0);
}

.industry-card:hover::after {
  width: 100%;
}

.industry-card__number {
  display: block;
  font-family: var(--title-font);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.14px;
  margin-bottom: 16px;
}

.industry-card__title {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.35;
  margin-bottom: 10px;
}

.industry-card__text {
  font-size: 16px;
  margin-bottom: 0;
}

.industry-marquee {
  margin-top: 110px;
  padding-block: 31px;
  background: var(--title-color);
  display: flex;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 7%, #000 93%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 7%, #000 93%, transparent 100%);
}

.industry-marquee__track {
  display: flex;
  flex: none;
  min-width: 100%;
  animation: marqueeScroll 34s linear infinite;
}

.industry-marquee__group {
  display: flex;
  flex: none;
  align-items: center;
  gap: 25px;
  padding-right: 25px;
}

.industry-marquee__item {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  white-space: nowrap;
  font-family: var(--title-font);
  font-size: 36px;
  font-weight: 600;
  color: var(--smoke-color);
}

.industry-marquee__item::before {
  content: "";
  flex: none;
  width: 18px;
  height: 18px;
  background: var(--theme-color);
  clip-path: polygon(50% 0, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

@keyframes marqueeScroll {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-50%, 0, 0); }
}

.team-area {
  overflow: hidden;
}

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

.team-card {
  overflow: hidden;
  position: relative;
  display: flex;
}

.team-card__img {
  position: relative;
  display: block;
  overflow: hidden;
  width: 100%;
}

.team-card__img::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 12, 0, 0) 40%, #0A0C00 100%);
  z-index: 1;
}

.team-card__img img {
  transition: transform 0.5s var(--ease), filter 0.5s var(--ease);
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1);
}

.team-card__content {
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 0 28px 30px;
  z-index: 2;
}

.team-card__title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 7px;
  color: var(--white-color);
}

.team-card__desig {
  font-size: 16px;
  display: block;
  color: rgba(255, 255, 255, 0.8);
}

.team-card:hover .team-card__img img {
  transform: scale(1.05);
  filter: grayscale(0);
}

.pricing-area {
  margin-top: 100px;
  position: relative;
}

.pricing-area__inner {
  position: relative;
}

.pricing-img {
  position: absolute;
  right: 0;
  top: -100px;
  bottom: 140px;
  width: 44%;
  z-index: 3;
}

.pricing-img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.pricing-content {
  width: 50%;
}

.pricing-mark {
  width: 46px;
  height: 34px;
  margin-bottom: 22px;
}

.pricing-slider {
  position: relative;
}

.pricing-track {
  position: relative;
}

.pricing-slide {
  transition: opacity 0.45s var(--ease), transform 0.45s var(--ease), visibility 0.45s var(--ease);
}

.pricing-slide + .pricing-slide {
  margin-top: 50px;
}

.pricing-slider.is-enhanced .pricing-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transform: translate3d(0, 14px, 0);
  margin-top: 0;
}

.pricing-slider.is-enhanced .pricing-slide.is-active {
  position: relative;
  opacity: 1;
  visibility: visible;
  transform: translate3d(0, 0, 0);
}

.pricing-slide__text {
  margin: 28px 0 24px;
  line-height: 1.583;
  font-size: 24px;
}

.pricing-list {
  list-style: none;
  margin: 0 0 30px;
  padding: 0;
  display: grid;
  gap: 10px;
}

.pricing-list li {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid rgba(10, 12, 0, 0.25);
  padding-bottom: 10px;
  font-size: 16px;
}

.pricing-list li span:last-child {
  font-family: var(--title-font);
  font-weight: 600;
  white-space: nowrap;
}

.pricing-slide__name {
  font-size: 20px;
  font-weight: 600;
  font-family: var(--title-font);
  margin: 0 0 6px;
}

.pricing-slide__note {
  font-size: 16px;
  display: block;
}

.pricing-dots {
  display: none;
  gap: 10px;
  margin-top: 40px;
  padding: 0;
}

.pricing-slider.is-enhanced .pricing-dots {
  display: flex;
}

.pricing-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid var(--title-color);
  background: transparent;
  padding: 0;
  transition: background-color 0.3s var(--ease), transform 0.3s var(--ease);
}

.pricing-dot[aria-selected="true"] {
  background-color: var(--title-color);
  transform: scale(1.15);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 24px;
}

.process-card {
  position: relative;
  display: block;
}

.process-card__img {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.process-card__img img {
  width: 100%;
  height: auto;
  transform: scale(1.04);
  transition: transform 0.5s var(--ease);
}

.process-card:hover .process-card__img img {
  transform: scale(1.04) translate3d(6px, 0, 0);
}

.process-card__content {
  padding-top: 30px;
}

.process-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  font-size: 14px;
  font-family: var(--title-font);
  font-weight: 500;
  margin-bottom: 16px;
}

.process-meta span:first-child {
  position: relative;
  padding-right: 20px;
}

.process-meta span:first-child::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 8px;
  height: 1px;
  background-color: var(--title-color);
}

.process-card__title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 12px;
}

.process-card__text {
  margin-bottom: 17px;
}

.footer-wrapper {
  position: relative;
  overflow: hidden;
}

.footer-top {
  padding-block: var(--section-space);
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  justify-content: space-between;
}

.footer-top-title {
  font-size: 80px;
  font-weight: 600;
  margin: -0.21em 0 -0.22em;
  line-height: 1.1;
  flex: 1 1 480px;
}

.footer-top-wrap {
  flex: 0 1 430px;
}

.footer-top-wrap p {
  font-size: 18px;
  margin-bottom: 26px;
}

.footer-contact {
  list-style: none;
  margin: 0 0 30px;
  padding: 0;
  display: grid;
  gap: 8px;
}

.footer-contact li {
  font-size: 16px;
  line-height: 1.6;
}

.footer-contact a {
  position: relative;
}

.footer-contact a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 1px;
  background-color: var(--title-color);
  transition: width 0.4s var(--ease);
}

.footer-contact a:hover::after,
.footer-contact a:focus-visible::after {
  width: 100%;
}

.footer-menu-area {
  border-block: 2px solid var(--title-color);
  padding-block: 21px;
  display: flex;
  flex-wrap: wrap;
  gap: 15px 40px;
  justify-content: space-between;
}

.footer-menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 15px 40px;
}

.footer-menu-list a {
  display: block;
  font-family: var(--title-font);
  font-weight: 600;
  font-size: 14px;
  color: var(--title-color);
  text-transform: uppercase;
  letter-spacing: -0.14px;
}

.copyright-wrap {
  padding-block: 22px 40px;
}

.copyright-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 30px;
  justify-content: space-between;
  align-items: center;
}

.copyright-legal {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  max-width: 760px;
  color: var(--black-color);
}

.copyright-text {
  margin: 0;
  font-size: 14px;
}

.scroll-top {
  position: fixed;
  right: 30px;
  bottom: 30px;
  width: 50px;
  height: 50px;
  border: none;
  border-radius: 50%;
  background-color: var(--theme-color);
  display: grid;
  place-content: center;
  z-index: 40;
  opacity: 0;
  visibility: hidden;
  transform: translate3d(0, 16px, 0);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease), visibility 0.4s var(--ease);
  box-shadow: 0 8px 24px rgba(10, 12, 0, 0.18);
}

.scroll-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translate3d(0, 0, 0);
}

.scroll-top svg {
  width: 16px;
  height: 16px;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 900;
  background-color: var(--title-color);
  color: var(--white-color);
  padding: 26px 30px;
  max-width: 720px;
  margin-inline: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 20px 30px;
  align-items: center;
  justify-content: space-between;
  transform: translate3d(0, 24px, 0);
  opacity: 0;
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}

.cookie-banner.is-visible {
  transform: translate3d(0, 0, 0);
  opacity: 1;
}

.cookie-banner p {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(246, 245, 243, 0.85);
  flex: 1 1 320px;
}

.cookie-banner a {
  color: var(--theme-color);
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex: none;
}

.cookie-btn {
  font-family: var(--title-font);
  font-size: 13px;
  font-weight: 600;
  padding: 13px 26px;
  border: 2px solid var(--theme-color);
  background-color: transparent;
  color: var(--theme-color);
  transition: background-color 0.35s var(--ease), color 0.35s var(--ease);
}

.cookie-btn:hover,
.cookie-btn:focus-visible {
  background-color: var(--theme-color);
  color: var(--title-color);
}

.page-header {
  padding: 200px 0 80px;
  border-bottom: 2px solid var(--title-color);
}

.page-header__title {
  font-size: 80px;
  font-weight: 600;
  letter-spacing: -2px;
  margin: 0 0 18px;
  line-height: 1.1;
}

.page-header__meta {
  font-size: 16px;
  margin: 0;
}

.reading-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  width: 100%;
  background-color: var(--theme-color);
  transform: scaleX(0);
  transform-origin: left center;
  z-index: 60;
}

.legal-layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 80px;
  align-items: start;
}

.legal-toc {
  position: sticky;
  top: 120px;
  border-left: 2px solid var(--title-color);
  padding-left: 24px;
}

.legal-toc h2 {
  font-size: 14px;
  font-family: var(--title-font);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 18px;
}

.legal-toc ol {
  list-style: none;
  counter-reset: toc;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 9px;
}

.legal-toc li {
  counter-increment: toc;
}

.legal-toc a {
  font-size: 14px;
  line-height: 1.5;
  display: block;
  position: relative;
  padding-left: 28px;
  color: var(--black-color);
}

.legal-toc a::before {
  content: counter(toc, decimal-leading-zero);
  position: absolute;
  left: 0;
  font-family: var(--title-font);
  font-weight: 600;
  font-size: 12px;
}

.legal-toc a:hover,
.legal-toc a:focus-visible {
  color: var(--title-color);
  text-decoration: underline;
}

.legal-content h2 {
  font-size: 30px;
  font-weight: 600;
  margin: 0 0 18px;
  letter-spacing: -0.02em;
}

.legal-section {
  padding-bottom: 50px;
  margin-bottom: 50px;
  border-bottom: 1px solid var(--border-color);
}

.legal-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.legal-section h3 {
  font-size: 20px;
  font-weight: 600;
  margin: 30px 0 12px;
}

.legal-section ul,
.legal-section ol {
  padding-left: 20px;
  margin: 0 0 18px;
}

.legal-section li {
  margin-bottom: 9px;
  line-height: 1.75;
}

.legal-section a {
  text-decoration: underline;
}

.legal-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 18px;
  font-size: 15px;
}

.legal-table th,
.legal-table td {
  border: 1px solid var(--border-color);
  padding: 12px 14px;
  text-align: left;
  vertical-align: top;
}

.legal-table th {
  font-family: var(--title-font);
  font-weight: 600;
  font-size: 14px;
  background-color: var(--smoke-color);
}

.legal-callout {
  background-color: var(--smoke-color);
  border-left: 4px solid var(--theme-color);
  padding: 26px 30px;
  margin-bottom: 18px;
}

.legal-callout p:last-child {
  margin-bottom: 0;
}

.legal-updated {
  font-family: var(--title-font);
  font-size: 14px;
  font-weight: 500;
}

.has-js .reveal {
  opacity: 0;
  transform: translate3d(0, 40px, 0);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.has-js .reveal--left {
  transform: translate3d(-50px, 0, 0);
}

.has-js .reveal--right {
  transform: translate3d(50px, 0, 0);
}

.has-js .reveal.is-revealed {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

@media (max-width: 1399px) {
  .hero-title { font-size: 100px; }
  .sec-title { font-size: 48px; }
  h1 { font-size: 72px; }
  .footer-top-title { font-size: 66px; }
  .page-header__title { font-size: 62px; }
  .work-title { font-size: 30px; }
}

@media (max-width: 1199px) {
  :root {
    --section-space: 110px;
  }
  .hero-title { font-size: 78px; letter-spacing: -2px; }
  .hero-style1 { padding: 155px 0 80px; }
  .sec-title { font-size: 40px; letter-spacing: -1px; }
  h2 { font-size: 40px; }
  h3 { font-size: 30px; }
  .footer-top-title { font-size: 52px; }
  .page-header__title { font-size: 52px; }
  .sticky-wrapper { padding-inline: 16px; }
  .main-menu a { padding-inline: 13px; }
  .accordion-area { max-width: 100%; }
  .pricing-slide__text { font-size: 20px; }
  .legal-layout { grid-template-columns: 240px 1fr; gap: 48px; }
  .industry-grid { grid-template-columns: repeat(2, 1fr); gap: 40px 24px; }
  .industry-marquee__item { font-size: 30px; }
}

@media (max-width: 991px) {
  :root {
    --section-space: var(--section-space-mobile);
  }
  .main-menu {
    display: none;
  }
  .hero-style1 {
    padding: 130px 0 60px;
  }
  .hero-title {
    font-size: 62px;
    letter-spacing: -1.2px;
  }
  .hero-title__line--end {
    text-align: left;
  }
  .hero-lead {
    width: 100%;
    margin-left: 0;
  }
  .hero-year-tag {
    margin-top: 50px;
  }
  .about-area,
  .pricing-area {
    margin-top: 0;
  }
  .about-img,
  .pricing-img {
    position: relative;
    width: 100%;
    top: -60px;
    bottom: auto;
    height: 380px;
    margin-bottom: -20px;
  }
  .about-row {
    display: block;
  }
  .about-content,
  .pricing-content {
    width: 100%;
  }
  .accordion-card {
    display: block;
  }
  .accordion-panel {
    max-width: none;
    padding-right: 0;
  }
  .accordion-body {
    margin-top: 20px;
  }
  .work-col--half,
  .work-col--wide,
  .work-col--narrow {
    width: 100%;
  }
  .work-wrap--offset-top,
  .work-wrap--offset-lg {
    margin-top: 60px;
  }
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .industry-grid {
    gap: 36px 24px;
  }
  .industry-marquee {
    margin-top: 70px;
    padding-block: 24px;
  }
  .footer-top {
    display: block;
  }
  .footer-top-title {
    margin-bottom: 30px;
    font-size: 46px;
  }
  .page-header {
    padding: 150px 0 60px;
  }
  .legal-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .legal-toc {
    position: static;
  }
  .btn--circle {
    width: 150px;
    height: 150px;
  }
  .sidemenu-content {
    padding: 100px 32px 60px;
  }
  .sidemenu-close {
    top: 28px;
    right: 28px;
  }
}

@media (max-width: 767px) {
  .hero-title { font-size: 46px; }
  .sec-title { font-size: 32px; letter-spacing: normal; }
  .work-title { font-size: 26px; }
  .process-grid { grid-template-columns: 1fr; }
  .footer-menu-area { display: block; }
  .footer-menu-list { display: block; }
  .footer-menu-list li:not(:last-child) { margin-bottom: 10px; }
  .footer-menu-list + .footer-menu-list { margin-top: 10px; }
  .cookie-banner { padding: 22px; }
  .cookie-actions { width: 100%; }
  .cookie-btn { flex: 1; }
  .page-header__title { font-size: 38px; }
  .legal-content h2 { font-size: 24px; }
  .industry-marquee__item { font-size: 26px; gap: 14px; }
  .industry-marquee__item::before { width: 14px; height: 14px; }
}

@media (max-width: 575px) {
  .hero-title { font-size: 38px; letter-spacing: normal; }
  .sidebar-btn { height: 50px; width: 50px; }
  .header-logo { font-size: 19px; }
  .accordion-number { margin-right: 12px; }
  .accordion-button { font-size: 20px; }
  .accordion-body p { font-size: 16px; }
  .team-grid { grid-template-columns: 1fr; }
  .btn { padding: 18px 30px; }
  .btn--circle { width: 140px; height: 140px; }
  .footer-top-title { font-size: 36px; }
  .work-meta li { font-size: 16px; }
  .legal-table { font-size: 14px; }
  .legal-table th, .legal-table td { padding: 9px 10px; }
  .industry-grid { grid-template-columns: 1fr; gap: 30px; }
  .industry-marquee__item { font-size: 22px; }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .has-js .reveal {
    opacity: 1;
    transform: none;
  }
  .hero-wrapper::before,
  .hero-wrapper::after {
    animation: none;
  }
  .industry-marquee__track {
    animation: none;
  }
}
