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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: #F7F5F2;
}

body {
  font-family: "Inter", sans-serif, "Noto Sans JP", sans-serif, sans-serif;
  color: #1A1A1A;
  line-height: 1.8;
  letter-spacing: 0.05em;
  background-color: #F7F5F2;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
  background-color: transparent;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

ul, ol {
  list-style: none;
}

img, video {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

button, input, textarea, select {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
}

button {
  cursor: pointer;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.08em;
}

.reveal {
  opacity: 0;
  filter: blur(10px);
  transform: translateY(24px);
  transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1), filter 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.revealed {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}

.container {
  width: 100%;
  max-width: 1280px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 24px;
  padding-left: 24px;
}

section {
  padding-top: 140px;
  padding-bottom: 140px;
  position: relative;
}
@media (max-width: 1024px) {
  section {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
@media (max-width: 768px) {
  section {
    padding-top: 72px;
    padding-bottom: 72px;
  }
}

.section-header {
  margin-bottom: 60px;
}
.section-header .section-tag {
  font-size: 13px;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  color: #777777;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 12px;
}
.section-header .section-title {
  font-size: 32px;
  color: #1A1A1A;
}
@media (max-width: 768px) {
  .section-header .section-title {
    font-size: 28px;
  }
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 110;
  background: rgba(247, 245, 242, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.header.menu-open {
  background: transparent !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  border-bottom: 1px solid transparent !important;
}
.header .header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
  padding-right: 40px;
  padding-left: 40px;
}
@media (max-width: 768px) {
  .header .header-container {
    height: 70px;
    padding-right: 24px;
    padding-left: 24px;
  }
}

.logo {
  font-family: "Inter", sans-serif;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: #1A1A1A;
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo img {
  height: 38px;
  width: auto;
  display: block;
}
@media (max-width: 768px) {
  .logo img {
    height: 32px;
  }
}
.logo .logo-text {
  font-weight: 600;
  display: inline-block;
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 40px;
}
@media (max-width: 1024px) {
  .nav-desktop {
    display: none !important;
  }
}
.nav-desktop .nav-link {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: #1A1A1A;
  position: relative;
  padding: 8px 0;
}
.nav-desktop .nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #FFDE00;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.nav-desktop .nav-link:hover {
  color: #1A1A1A;
}
.nav-desktop .nav-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}
@media (max-width: 1024px) {
  .nav-actions {
    margin-right: 48px;
  }
}
@media (max-width: 480px) {
  .nav-actions {
    gap: 16px;
    margin-right: 40px;
  }
}

.lang-switch {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: #777777;
  letter-spacing: 0.05em;
}
@media (max-width: 1024px) {
  .lang-switch {
    display: none;
  }
}
.lang-switch button {
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 4px 6px;
  border-radius: 4px;
  border-bottom: 2px solid transparent;
}
.lang-switch button:hover {
  color: #1A1A1A;
}
.lang-switch button.active {
  color: #1A1A1A;
  background-color: rgba(0, 0, 0, 0.03);
  border-bottom: 2px solid #FFDE00;
  border-radius: 4px 4px 0 0;
  font-weight: 600;
}
.lang-switch .lang-divider {
  width: 1px;
  height: 10px;
  background-color: rgba(0, 0, 0, 0.08);
}

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  position: absolute;
  right: 40px;
  z-index: 110;
}
@media (max-width: 1024px) {
  .hamburger {
    display: block;
  }
}
@media (max-width: 768px) {
  .hamburger {
    right: 24px;
  }
}
.hamburger .hamburger-box {
  width: 24px;
  height: 14px;
  display: inline-block;
  position: relative;
}
.hamburger .hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -1px;
  width: 24px;
  height: 1.5px;
  background-color: #1A1A1A;
  position: absolute;
  transition-property: transform;
  transition-duration: 0.6s;
  transition-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
}
.hamburger .hamburger-inner::before, .hamburger .hamburger-inner::after {
  content: "";
  display: block;
  width: 24px;
  height: 1.5px;
  background-color: #1A1A1A;
  position: absolute;
  transition-property: transform;
  transition-duration: 0.6s;
  transition-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
}
.hamburger .hamburger-inner::before {
  top: -6px;
}
.hamburger .hamburger-inner::after {
  bottom: -6px;
}
.hamburger.active .hamburger-inner {
  transform: rotate(45deg);
}
.hamburger.active .hamburger-inner::before {
  top: 0;
  opacity: 0;
}
.hamburger.active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(-90deg);
}

.overlay-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 105;
  background-color: rgba(247, 245, 242, 0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.overlay-menu.active {
  opacity: 1;
  visibility: visible;
}
.overlay-menu.active .overlay-nav-link {
  opacity: 1;
  transform: translateY(0);
}
.overlay-menu .overlay-close {
  display: none !important;
}
.overlay-menu .overlay-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  width: 100%;
  max-width: 320px;
  padding: 0 24px;
}
.overlay-menu .overlay-nav-link {
  font-family: "Inter", sans-serif;
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: #1A1A1A;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  display: block;
  text-align: center;
  width: 100%;
}
.overlay-menu .overlay-nav-link:nth-child(1) {
  transition-delay: 0.08s;
}
.overlay-menu .overlay-nav-link:nth-child(2) {
  transition-delay: 0.16s;
}
.overlay-menu .overlay-nav-link:nth-child(3) {
  transition-delay: 0.24s;
}
.overlay-menu .overlay-nav-link:nth-child(4) {
  transition-delay: 0.32s;
}
.overlay-menu .overlay-nav-link:nth-child(5) {
  transition-delay: 0.4s;
}
.overlay-menu .overlay-nav-link:nth-child(6) {
  transition-delay: 0.48s;
}
.overlay-menu .overlay-nav-link:nth-child(7) {
  transition-delay: 0.56s;
}
.overlay-menu .overlay-nav-link:hover {
  color: #777777;
}
.overlay-menu .overlay-nav-link.overlay-contact-btn {
  border: 1px solid rgba(0, 0, 0, 0.15) !important;
  padding: 10px 0 !important;
  border-radius: 26px !important;
  font-size: 16px !important;
  font-weight: 500 !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase;
  margin-top: 10px;
}
.overlay-menu .overlay-nav-link.overlay-contact-btn:hover {
  border-color: #1A1A1A !important;
  background-color: rgba(0, 0, 0, 0.02) !important;
  color: #1A1A1A !important;
}
.overlay-menu .overlay-lang-switch {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #777777;
  width: 100%;
}
.overlay-menu .overlay-lang-switch button {
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 6px 12px;
  border-radius: 4px;
  border-bottom: 2px solid transparent;
}
.overlay-menu .overlay-lang-switch button:hover {
  color: #1A1A1A;
}
.overlay-menu .overlay-lang-switch button.active {
  color: #1A1A1A;
  background-color: rgba(0, 0, 0, 0.03);
  border-bottom: 2px solid #FFDE00;
  border-radius: 4px 4px 0 0;
  font-weight: 600;
}
.overlay-menu .overlay-lang-switch .lang-divider {
  width: 1px;
  height: 12px;
  background-color: rgba(0, 0, 0, 0.08);
}

.trans-node {
  transition: opacity 0.3s ease, filter 0.3s ease;
}
.trans-node.trans-blur {
  opacity: 0;
  filter: blur(5px);
}

.footer {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding-top: 80px;
  padding-bottom: 40px;
  background-color: #F7F5F2;
}
.footer .footer-container {
  display: flex;
  flex-direction: column;
  gap: 60px;
}
.footer .footer-main {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 40px;
}
@media (max-width: 768px) {
  .footer .footer-main {
    flex-direction: column;
    align-items: flex-start;
  }
}
.footer .footer-brand {
  max-width: 400px;
}
.footer .footer-brand .footer-logo {
  font-family: "Inter", sans-serif;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: #1A1A1A;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer .footer-brand .footer-logo img {
  height: 44px;
  width: auto;
  display: block;
}
.footer .footer-brand .footer-logo .footer-logo-text {
  font-size: 16px;
  font-weight: 600;
  transform: translateY(2px);
}
.footer .footer-brand .footer-desc {
  font-size: 14px;
  color: #777777;
  line-height: 1.8;
}
.footer .footer-links {
  display: flex;
  gap: 80px;
}
@media (max-width: 768px) {
  .footer .footer-links {
    gap: 40px;
    width: 100%;
  }
}
@media (max-width: 480px) {
  .footer .footer-links {
    flex-direction: column;
    gap: 24px;
  }
}
.footer .footer-links .footer-nav-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.footer .footer-links .footer-nav-title {
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: #1A1A1A;
  text-transform: uppercase;
}
.footer .footer-links .footer-nav-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer .footer-links .footer-nav-list a {
  font-size: 14px;
  color: #777777;
}
.footer .footer-links .footer-nav-list a:hover {
  color: #1A1A1A;
}
.footer .footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding-top: 30px;
  flex-wrap: wrap;
  gap: 20px;
}
@media (max-width: 768px) {
  .footer .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}
.footer .footer-bottom .footer-copy {
  font-family: "Inter", sans-serif;
  font-size: 12px;
  color: #777777;
}
.footer .footer-bottom .footer-legal {
  display: flex;
  gap: 24px;
}
.footer .footer-bottom .footer-legal a {
  font-size: 12px;
  color: #777777;
}
.footer .footer-bottom .footer-legal a:hover {
  color: #1A1A1A;
}

.glass-card {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 24px;
  padding: 40px;
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.01);
}
.glass-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.85);
  border-color: rgba(255, 255, 255, 0.6);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.04);
}
@media (max-width: 768px) {
  .glass-card {
    padding: 30px 24px;
    border-radius: 20px;
  }
}

.project-card {
  display: block;
  border-radius: 24px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.project-card .project-img-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0.03);
}
.project-card .project-img-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.project-card .project-info {
  padding: 32px;
}
@media (max-width: 768px) {
  .project-card .project-info {
    padding: 24px;
  }
}
.project-card .project-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}
.project-card .project-meta .project-cat {
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: #777777;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 6px;
}
.project-card .project-meta .project-cat::before {
  content: "";
  width: 6px;
  height: 6px;
  background-color: #FFDE00;
  border-radius: 50%;
  display: inline-block;
}
.project-card .project-meta .project-metrics {
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #1A1A1A;
}
.project-card .project-title {
  font-size: 20px;
  color: #1A1A1A;
  margin-bottom: 12px;
  font-weight: 500;
}
.project-card .project-desc {
  font-size: 14px;
  color: #777777;
  line-height: 1.6;
  margin-bottom: 20px;
}
.project-card .project-role {
  font-size: 12px;
  color: #777777;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding-top: 16px;
}
.project-card .project-role span {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  color: #1A1A1A;
  margin-left: 6px;
}
.project-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.7);
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.05);
}
.project-card:hover .project-img-wrapper img {
  transform: scale(1.05);
}

.btn-group {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  padding: 0 32px;
  border-radius: 26px;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}
@media (max-width: 480px) {
  .btn {
    width: 100%;
    height: 48px;
    padding: 0 24px;
  }
}

.btn-primary {
  background-color: #1A1A1A;
  color: #F7F5F2;
  border: 1px solid #1A1A1A;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}
.btn-primary:hover {
  background-color: transparent;
  color: #1A1A1A;
  border-color: #1A1A1A;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(255, 222, 0, 0.25);
}

.btn-secondary {
  background-color: transparent;
  color: #1A1A1A;
  border: 1px solid rgba(0, 0, 0, 0.15);
}
.btn-secondary:hover {
  border-color: #1A1A1A;
  background-color: rgba(0, 0, 0, 0.02);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 222, 0, 0.15);
}

.text-btn {
  display: inline-flex;
  align-items: center;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: #1A1A1A;
  position: relative;
  padding: 4px 0;
  gap: 8px;
}
.text-btn .arrow-icon {
  width: 16px;
  height: 16px;
  fill: currentColor;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.text-btn::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #FFDE00;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.text-btn:hover {
  color: #1A1A1A;
}
.text-btn:hover .arrow-icon {
  transform: translateX(4px);
}
.text-btn:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.hero-section {
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  position: relative;
  padding-top: 80px;
  padding-bottom: 0;
  overflow: hidden;
  background: linear-gradient(135deg, #F7F5F2 0%, #EDEAE5 100%);
}
@media (max-width: 768px) {
  .hero-section {
    min-height: 550px;
    padding-top: 70px;
  }
}

.hero-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.hero-container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
}

.hero-content {
  max-width: 800px;
}
.hero-content .hero-subtitle {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #777777;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 24px;
  display: block;
}
.hero-content .hero-title {
  font-size: 56px;
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: 0.05em;
  color: #1A1A1A;
  margin-bottom: 32px;
}
@media (max-width: 1280px) {
  .hero-content .hero-title {
    font-size: 48px;
  }
}
@media (max-width: 768px) {
  .hero-content .hero-title {
    font-size: 36px;
    line-height: 1.4;
  }
}
@media (max-width: 480px) {
  .hero-content .hero-title {
    font-size: 28px;
  }
}
.lang-ja .hero-content .hero-title {
  font-weight: 500;
}
.hero-content .hero-desc {
  font-size: 18px;
  color: #777777;
  line-height: 1.8;
  margin-bottom: 48px;
  max-width: 600px;
}
@media (max-width: 768px) {
  .hero-content .hero-desc {
    font-size: 16px;
    margin-bottom: 32px;
  }
}

.hero-scroll-down {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: #777777;
  text-transform: uppercase;
  z-index: 2;
}
.hero-scroll-down::after {
  content: "";
  width: 1.5px;
  height: 40px;
  background-color: #FFDE00;
  display: block;
  animation: scrollLine 2s infinite cubic-bezier(0.16, 1, 0.3, 1);
  transform-origin: top;
}

@keyframes scrollLine {
  0% {
    transform: scaleY(0);
    transform-origin: top;
  }
  50% {
    transform: scaleY(1);
    transform-origin: top;
  }
  50.1% {
    transform: scaleY(1);
    transform-origin: bottom;
  }
  100% {
    transform: scaleY(0);
    transform-origin: bottom;
  }
}
.positioning-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}
@media (max-width: 1024px) {
  .positioning-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

.positioning-card .card-num {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #777777;
  display: block;
  margin-bottom: 24px;
  opacity: 0.5;
}
.positioning-card .card-title {
  font-size: 24px;
  font-weight: 500;
  color: #1A1A1A;
  margin-bottom: 16px;
}
@media (max-width: 768px) {
  .positioning-card .card-title {
    font-size: 20px;
  }
}
.positioning-card .card-desc {
  font-size: 15px;
  color: #777777;
  line-height: 1.8;
  margin-bottom: 24px;
}
.positioning-card .card-sublist {
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding-top: 20px;
}
.positioning-card .card-sublist li {
  font-size: 14px;
  color: #1A1A1A;
  display: flex;
  align-items: center;
  gap: 10px;
}
.positioning-card .card-sublist li::before {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: #777777;
}

.services-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 40px;
}

.service-item {
  display: grid;
  grid-template-columns: 350px 1fr;
  padding: 60px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
.service-item:first-child {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}
@media (max-width: 1024px) {
  .service-item {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 40px 0;
  }
}
.service-item .service-meta .service-num {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #777777;
  margin-bottom: 12px;
  display: block;
}
.service-item .service-meta .service-name {
  font-size: 24px;
  font-weight: 500;
  color: #1A1A1A;
}
@media (max-width: 768px) {
  .service-item .service-meta .service-name {
    font-size: 20px;
  }
}
.service-item .service-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 30px;
}
.service-item .service-content .service-desc {
  font-size: 16px;
  color: #777777;
  line-height: 1.8;
  max-width: 700px;
}
.service-item .service-content .service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.service-item .service-content .service-tags .service-tag {
  font-size: 13px;
  background-color: rgba(0, 0, 0, 0.03);
  color: #777777;
  padding: 6px 14px;
  border-radius: 100px;
  border: 1px solid rgba(0, 0, 0, 0.02);
}

.whyus-container {
  display: grid;
  grid-template-columns: 1.2fr 1.8fr;
  gap: 80px;
  align-items: start;
}
@media (max-width: 1024px) {
  .whyus-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.whyus-left .whyus-slogan {
  font-size: 36px;
  font-weight: 500;
  line-height: 1.5;
  color: #1A1A1A;
}
@media (max-width: 768px) {
  .whyus-left .whyus-slogan {
    font-size: 28px;
  }
}

.whyus-right {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.whyus-right .whyus-block .block-title {
  font-size: 20px;
  font-weight: 500;
  color: #1A1A1A;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.whyus-right .whyus-block .block-title::before {
  content: "";
  width: 6px;
  height: 6px;
  background-color: #1A1A1A;
  border-radius: 50%;
}
.whyus-right .whyus-block .block-desc {
  font-size: 15px;
  color: #777777;
  line-height: 1.8;
}

.workflow-timeline {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin-top: 60px;
  padding-bottom: 20px;
}
.workflow-timeline::before {
  content: "";
  position: absolute;
  top: 40px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: rgba(0, 0, 0, 0.08);
  z-index: 1;
}
@media (max-width: 1024px) {
  .workflow-timeline::before {
    display: none;
  }
}
@media (max-width: 1024px) {
  .workflow-timeline {
    flex-direction: column;
    gap: 40px;
  }
  .workflow-timeline::after {
    content: "";
    position: absolute;
    top: 0;
    left: 20px;
    width: 1px;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.08);
    z-index: 1;
  }
}

.workflow-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  z-index: 2;
  padding: 0 20px;
}
@media (max-width: 1024px) {
  .workflow-step {
    flex-direction: row;
    align-items: flex-start;
    padding: 0 0 0 50px;
    gap: 24px;
  }
}
.workflow-step .step-node {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: #F7F5F2;
  border: 2px solid #1A1A1A;
  margin-bottom: 30px;
  position: relative;
  align-self: flex-start;
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
@media (max-width: 1024px) {
  .workflow-step .step-node {
    margin-bottom: 0;
    position: absolute;
    left: 9px;
    top: 4px;
  }
}
.workflow-step .step-node::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #1A1A1A;
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.workflow-step:hover .step-node {
  transform: scale(1.15);
  border-color: #FFDE00;
  background-color: #FFDE00;
}
.workflow-step:hover .step-node::after {
  background-color: #1A1A1A;
  opacity: 1;
}
.workflow-step .step-info .step-num {
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: #777777;
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 8px;
}
.workflow-step .step-info .step-title {
  font-size: 18px;
  font-weight: 500;
  color: #1A1A1A;
  margin-bottom: 12px;
}
.workflow-step .step-info .step-desc {
  font-size: 14px;
  color: #777777;
  line-height: 1.6;
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 40px;
}
@media (max-width: 768px) {
  .experience-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

.company-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 40px;
}
.company-table tr {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
.company-table tr:first-child {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}
.company-table th, .company-table td {
  padding: 24px 0;
  font-size: 15px;
  text-align: left;
  vertical-align: top;
  line-height: 1.8;
}
.company-table th {
  width: 250px;
  font-weight: 500;
  color: #1A1A1A;
}
@media (max-width: 768px) {
  .company-table th {
    width: 100%;
    display: block;
    padding-bottom: 8px;
  }
}
.company-table td {
  color: #777777;
}
@media (max-width: 768px) {
  .company-table td {
    width: 100%;
    display: block;
    padding-top: 0;
    padding-bottom: 24px;
  }
}

.contact-container {
  display: flex;
  justify-content: center;
  align-items: start;
  max-width: 680px;
  margin: 0 auto;
}

.contact-info .contact-text {
  font-size: 16px;
  color: #777777;
  line-height: 1.8;
  margin-bottom: 32px;
}
.contact-info .contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-info .contact-details .detail-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.contact-info .contact-details .detail-item .detail-label {
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 500;
  color: #777777;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.contact-info .contact-details .detail-item .detail-value {
  font-size: 16px;
  color: #1A1A1A;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.contact-form .form-group {
  display: flex;
  flex-direction: column;
  position: relative;
}
.contact-form .form-group label {
  font-size: 14px;
  color: #777777;
  margin-bottom: 12px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.contact-form .form-group input, .contact-form .form-group textarea {
  width: 100%;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  padding: 10px 0;
  font-size: 16px;
  color: #1A1A1A;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.contact-form .form-group input:focus, .contact-form .form-group textarea:focus {
  border-bottom-color: #1A1A1A;
}
.contact-form .form-group textarea {
  height: 120px;
  resize: none;
}
.contact-form .form-group .required-tag {
  color: #A94442;
  font-size: 11px;
  margin-left: 6px;
  font-weight: normal;
}
.contact-form .form-submit {
  align-self: flex-start;
  margin-top: 10px;
}
@media (max-width: 480px) {
  .contact-form .form-submit {
    width: 100%;
  }
  .contact-form .form-submit button {
    width: 100%;
  }
}