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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  line-height: 1.8;
  color: #000000;
  background-color: #FAFAFA;
  overflow-x: hidden;
  cursor: none;
}
body.menu-open {
  overflow: hidden;
}
@media (max-width: 768px) {
  body {
    cursor: auto;
  }
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: none;
}
@media (max-width: 768px) {
  a {
    cursor: pointer;
  }
}

button {
  cursor: none;
}
@media (max-width: 768px) {
  button {
    cursor: pointer;
  }
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul {
  list-style: none;
}

.cursor {
  position: fixed;
  width: 8px;
  height: 8px;
  background-color: #06C755;
  border-radius: 50%;
  pointer-events: none;
  z-index: 10000;
  mix-blend-mode: difference;
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s, background-color 0.2s;
}
.cursor--hover {
  width: 40px;
  height: 40px;
  background-color: #06C755;
}
@media (max-width: 768px) {
  .cursor {
    display: none;
  }
}

.cursor-follower {
  position: fixed;
  width: 40px;
  height: 40px;
  border: 1px solid #06C755;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.3s, height 0.3s, border-color 0.3s;
}
.cursor-follower--hover {
  width: 60px;
  height: 60px;
  border-color: #06C755;
}
@media (max-width: 768px) {
  .cursor-follower {
    display: none;
  }
}

.loading {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background-color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
.loading.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.loading__content {
  position: relative;
  z-index: 2;
  text-align: center;
}
.loading__logo {
  margin-bottom: 60px;
  overflow: hidden;
}
.loading__logo-text {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #000000;
  animation: loadingLogoIn 1s ease-out forwards;
}
.loading__progress {
  width: 200px;
  height: 2px;
  background-color: rgba(0, 0, 0, 0.1);
  margin: 0 auto 24px;
  overflow: hidden;
}
.loading__progress-bar {
  width: 0;
  height: 100%;
  background-color: #06C755;
  transition: width 0.1s ease-out;
}
.loading__counter {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
}
.loading__counter-num {
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #000000;
  min-width: 36px;
  text-align: right;
}
.loading__counter-percent {
  font-family: "Montserrat", sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  color: #06C755;
}
.loading__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.loading__line {
  position: absolute;
  background-color: rgba(6, 199, 85, 0.05);
}
.loading__line--1 {
  width: 1px;
  height: 100%;
  left: 25%;
  animation: loadingLineV 2s ease-in-out infinite;
}
.loading__line--2 {
  width: 1px;
  height: 100%;
  left: 50%;
  animation: loadingLineV 2s ease-in-out infinite 0.3s;
}
.loading__line--3 {
  width: 1px;
  height: 100%;
  left: 75%;
  animation: loadingLineV 2s ease-in-out infinite 0.6s;
}

@keyframes loadingLogoIn {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes loadingLineV {
  0%, 100% {
    transform: scaleY(0);
    transform-origin: top;
  }
  50% {
    transform: scaleY(1);
    transform-origin: top;
  }
  51% {
    transform-origin: bottom;
  }
  100% {
    transform: scaleY(0);
    transform-origin: bottom;
  }
}
.section-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.section-label {
  display: inline-block;
  font-family: "Montserrat", sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #06C755;
  margin-bottom: 1.5rem;
  position: relative;
  padding-left: 40px;
}
.section-label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 2px;
  background-color: #06C755;
}

.section-title {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: #000000;
}
.section-title__line {
  display: block;
}
.section-title em {
  font-style: normal;
  color: #06C755;
  position: relative;
}
.section-title--white {
  color: #FFFFFF;
}
.section-title--white em {
  color: #3DD67C;
}
.section-title--large {
  font-size: clamp(2.5rem, 7vw, 6rem);
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 24px 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.header--scrolled {
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  padding: 16px 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
}
.header__container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .header__container {
    padding: 0 24px;
  }
}
.header__logo {
  display: flex;
  align-items: center;
  z-index: 1001;
}
.header__logo-text {
  font-family: "Montserrat", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #000000;
}
@media (max-width: 968px) {
  .header__nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .header__nav.active {
    opacity: 1;
    visibility: visible;
  }
}
.header__nav-list {
  display: flex;
  align-items: center;
  gap: 48px;
}
@media (max-width: 968px) {
  .header__nav-list {
    flex-direction: column;
    gap: 32px;
  }
}
.header__nav-link {
  font-family: "Montserrat", sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: #000000;
  position: relative;
  padding: 8px 0;
  transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.header__nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #06C755;
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.header__nav-link:hover {
  color: #000000;
}
.header__nav-link:hover::after {
  width: 100%;
}
.header__nav-link--contact {
  color: #FFFFFF;
  padding: 14px 32px;
  background-color: #06C755;
  font-weight: 600;
}
.header__nav-link--contact::after {
  display: none;
}
.header__nav-link--contact:hover {
  background-color: #05A647;
  color: #FFFFFF;
}
@media (max-width: 968px) {
  .header__nav-link {
    font-size: 1.5rem;
    font-weight: 600;
  }
}
.header__menu-btn {
  display: none;
  flex-direction: column;
  gap: 6px;
  width: 32px;
  height: 24px;
  background: none;
  border: none;
  z-index: 1001;
}
@media (max-width: 968px) {
  .header__menu-btn {
    display: flex;
  }
}
.header__menu-btn span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #000000;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center;
}
.header__menu-btn.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.header__menu-btn.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.header__menu-btn.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: #FFFFFF;
}
.hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 24px;
  max-width: 1000px;
}
.hero__tag {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 48px;
  animation: fadeInUp 1s ease-out 0.3s both;
}
.hero__tag-line {
  width: 60px;
  height: 2px;
  background-color: #06C755;
}
.hero__tag-text {
  font-family: "Montserrat", sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #06C755;
}
.hero__title {
  margin-bottom: 40px;
}
.hero__title-line {
  display: block;
  overflow: hidden;
}
.hero__title-line--1 {
  animation: fadeInUp 1s ease-out 0.3s both;
}
.hero__title-line--2 {
  animation: fadeInUp 1s ease-out 0.5s both;
}
.hero__title-line--3 {
  animation: fadeInUp 1s ease-out 0.7s both;
}
.hero__title-word {
  display: inline-block;
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(2rem, 6vw, 4.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.3;
  color: #000000;
}
.hero__title-word--accent {
  color: #06C755;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(2.5rem, 7vw, 5.5rem);
}
.hero__subtitle {
  font-size: 1rem;
  line-height: 2.2;
  color: #000000;
  margin-bottom: 80px;
  animation: fadeInUp 1s ease-out 0.9s both;
}
@media (max-width: 768px) {
  .hero__subtitle {
    font-size: 0.9375rem;
  }
  .hero__subtitle br {
    display: none;
  }
}
.hero__scroll {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  animation: fadeInUp 1s ease-out 1.1s both;
}
.hero__scroll-text {
  font-family: "Montserrat", sans-serif;
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #000000;
}
.hero__scroll-line-wrapper {
  width: 1px;
  height: 80px;
  background-color: rgba(26, 26, 26, 0.15);
  overflow: hidden;
}
.hero__scroll-line {
  display: block;
  width: 100%;
  height: 100%;
  background-color: #06C755;
  animation: scrollLine 2s ease-in-out infinite;
}
.hero__marquee {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px 0;
  background-color: #06C755;
  overflow: hidden;
}
.hero__marquee-track {
  display: flex;
  gap: 80px;
  animation: marquee 30s linear infinite;
  white-space: nowrap;
}
.hero__marquee-track span {
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #FFFFFF;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(60px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes scrollLine {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(100%);
  }
}
@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.about {
  position: relative;
  padding: 180px 0;
  background-color: #FFFFFF;
  overflow: hidden;
}
@media (max-width: 768px) {
  .about {
    padding: 100px 0;
  }
}
.about__container {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 80px;
}
@media (max-width: 768px) {
  .about__container {
    padding: 0 24px;
  }
}
.about__header {
  margin-bottom: 80px;
  max-width: 800px;
}
.about__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  margin-bottom: 0;
}
@media (max-width: 968px) {
  .about__content {
    grid-template-columns: 1fr;
    gap: 60px;
  }
}
.about__text {
  padding-top: 20px;
}
.about__lead {
  font-size: 1.375rem;
  font-weight: 600;
  line-height: 1.9;
  margin-bottom: 24px;
  color: #000000;
}
.about__description {
  font-size: 1rem;
  color: #000000;
  line-height: 2;
}
.about__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 768px) {
  .about__stats {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
.about__stat {
  text-align: center;
  padding: 40px 24px;
  background-color: #FAFAFA;
  position: relative;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(26, 26, 26, 0.08);
}
.about__stat.animate-in {
  opacity: 1;
  transform: translateY(0);
}
.about__stat:nth-child(2) {
  transition-delay: 0.1s;
}
.about__stat:nth-child(3) {
  transition-delay: 0.2s;
}
.about__stat::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background-color: #06C755;
}
.about__stat-number {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: #06C755;
  line-height: 1;
  margin-bottom: 12px;
}
.about__stat-label {
  font-family: "Montserrat", sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #000000;
}

.vision {
  position: relative;
  padding: 180px 0;
  background-color: #1A1A1A;
  overflow: hidden;
}
@media (max-width: 768px) {
  .vision {
    padding: 100px 0;
  }
}
.vision__container {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 80px;
}
@media (max-width: 768px) {
  .vision__container {
    padding: 0 24px;
  }
}
.vision__header {
  margin-bottom: 80px;
}
.vision__header .section-label {
  color: #3DD67C;
}
.vision__header .section-label::before {
  background-color: #06C755;
}
.vision__content {
  max-width: 900px;
}
.vision__main {
  max-width: 900px;
}
.vision__catchphrase {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  line-height: 1.6;
  color: #FFFFFF;
  margin-bottom: 40px;
}
.vision__catchphrase em {
  color: #3DD67C;
  font-style: normal;
}
.vision__description p {
  font-size: 1rem;
  line-height: 2.2;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 32px;
}
.vision__statement {
  font-weight: 600;
  color: #FFFFFF !important;
  padding-left: 24px;
  border-left: 3px solid #06C755;
}

.services {
  position: relative;
  padding: 180px 0;
  background-color: #FFFFFF;
  overflow: hidden;
}
@media (max-width: 768px) {
  .services {
    padding: 100px 0;
  }
}
.services__container {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 80px;
}
@media (max-width: 768px) {
  .services__container {
    padding: 0 24px;
  }
}
.services__header {
  margin-bottom: 80px;
  text-align: center;
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
@media (max-width: 768px) {
  .services__grid {
    grid-template-columns: 1fr;
  }
}

.service-card {
  position: relative;
  background-color: #FAFAFA;
  border: 1px solid rgba(26, 26, 26, 0.08);
  padding: 48px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  transform: translateY(40px);
  overflow: hidden;
}
.service-card.animate-in {
  opacity: 1;
  transform: translateY(0);
}
.service-card:nth-child(2) {
  transition-delay: 0.1s;
}
.service-card:nth-child(3) {
  transition-delay: 0.2s;
}
.service-card:nth-child(4) {
  transition-delay: 0.3s;
}
.service-card:hover {
  border-color: #06C755;
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(6, 199, 85, 0.1);
}
@media (max-width: 768px) {
  .service-card {
    padding: 32px 24px;
  }
}
.service-card__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 32px;
}
.service-card__number {
  font-family: "Montserrat", sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  color: #06C755;
}
.service-card__logo {
  text-align: right;
}
.service-card__logo-text {
  font-family: "Montserrat", sans-serif;
  font-size: 1.75rem;
  font-weight: 800;
  display: block;
  margin-bottom: 4px;
}
.service-card__logo-text--furupochi {
  color: #06C755;
}
.service-card__logo-text--mokare {
  color: #06C755;
}
.service-card__logo-text--ene {
  color: #06C755;
}
.service-card__logo-text--wakey {
  color: #3B82F6;
}
.service-card__logo-sub {
  font-size: 0.75rem;
  color: #000000;
  font-weight: 500;
}
.service-card__title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #000000;
  margin-bottom: 20px;
  line-height: 1.5;
}
.service-card__text {
  font-size: 0.9375rem;
  color: #000000;
  line-height: 1.9;
  margin-bottom: 24px;
}
.service-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.service-card__tag {
  display: inline-block;
  padding: 6px 12px;
  background-color: rgba(6, 199, 85, 0.1);
  color: #05A647;
  font-size: 0.75rem;
  font-weight: 500;
}

.company {
  position: relative;
  padding: 180px 0;
  background-color: #FAFAFA;
  overflow: hidden;
}
@media (max-width: 768px) {
  .company {
    padding: 100px 0;
  }
}
.company__container {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 80px;
}
@media (max-width: 768px) {
  .company__container {
    padding: 0 24px;
  }
}
.company__header {
  margin-bottom: 60px;
}
.company__list {
  display: flex;
  flex-direction: column;
}
.company__item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 40px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(26, 26, 26, 0.08);
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.company__item.animate-in {
  opacity: 1;
  transform: translateY(0);
}
.company__item:nth-child(1) {
  transition-delay: 0.05s;
}
.company__item:nth-child(2) {
  transition-delay: 0.1s;
}
.company__item:nth-child(3) {
  transition-delay: 0.15s;
}
.company__item:nth-child(4) {
  transition-delay: 0.2s;
}
.company__item:nth-child(5) {
  transition-delay: 0.25s;
}
.company__item:nth-child(6) {
  transition-delay: 0.3s;
}
.company__item:nth-child(7) {
  transition-delay: 0.35s;
}
.company__item:nth-child(8) {
  transition-delay: 0.4s;
}
.company__item:last-child {
  border-bottom: none;
}
@media (max-width: 768px) {
  .company__item {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}
.company__term {
  font-size: 0.875rem;
  color: #000000;
  font-weight: 600;
}
.company__desc {
  font-size: 0.9375rem;
  line-height: 1.8;
  color: #000000;
}

.contact {
  padding: 200px 0;
  background-color: #1A1A1A;
  position: relative;
  overflow: hidden;
}
@media (max-width: 768px) {
  .contact {
    padding: 120px 0;
  }
}
.contact__container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 80px;
  position: relative;
  z-index: 2;
}
@media (max-width: 768px) {
  .contact__container {
    padding: 0 24px;
  }
}
.contact__content {
  max-width: 800px;
}
.contact__content .section-label {
  color: #06C755;
}
.contact__content .section-label::before {
  background-color: #06C755;
}
.contact__content .section-title {
  margin-bottom: 40px;
}
.contact__text {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 60px;
  line-height: 2;
}
@media (max-width: 768px) {
  .contact__text br {
    display: none;
  }
}
.contact__buttons {
  display: flex;
  gap: 24px;
}
@media (max-width: 768px) {
  .contact__buttons {
    flex-direction: column;
  }
}
.contact__btn {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 20px 40px;
  font-family: "Montserrat", sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.contact__btn--primary {
  background-color: #06C755;
  color: #FFFFFF;
}
.contact__btn--primary:hover {
  background-color: #05A647;
  transform: translateX(8px);
}
.contact__btn--primary:hover .contact__btn-icon {
  transform: translateX(4px);
}
.contact__btn--secondary {
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #FFFFFF;
}
.contact__btn--secondary:hover {
  background-color: #FFFFFF;
  color: #000000;
  border-color: #FFFFFF;
}
.contact__btn-icon {
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer {
  background-color: #FFFFFF;
  border-top: 1px solid rgba(26, 26, 26, 0.08);
  padding: 80px 0 40px;
}
.footer__container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 80px;
}
@media (max-width: 768px) {
  .footer__container {
    padding: 0 24px;
  }
}
.footer__main {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(26, 26, 26, 0.08);
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .footer__main {
    flex-direction: column;
    gap: 40px;
  }
}
.footer__brand {
  max-width: 400px;
}
.footer__logo {
  font-family: "Montserrat", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #000000;
  display: block;
  margin-bottom: 16px;
}
.footer__tagline {
  font-size: 0.875rem;
  color: #000000;
}
.footer__nav-list {
  display: flex;
  gap: 40px;
}
@media (max-width: 768px) {
  .footer__nav-list {
    flex-wrap: wrap;
    gap: 24px 40px;
  }
}
.footer__nav-list a {
  font-size: 0.875rem;
  color: #000000;
  transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.footer__nav-list a:hover {
  color: #06C755;
}
.footer__services {
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(26, 26, 26, 0.08);
  margin-bottom: 40px;
}
.footer__services-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #06C755;
  margin-bottom: 16px;
}
.footer__services-list {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}
.footer__services-list span {
  font-size: 0.9375rem;
  color: #000000;
  font-weight: 500;
}
.footer__bottom {
  text-align: center;
}
.footer__copyright {
  font-size: 0.75rem;
  color: #000000;
  letter-spacing: 0.05em;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
