@font-face {
  font-family: "Satoshi";
  src: url("../fonts/Satoshi-Regular.woff2") format("woff2"), url("../fonts/Satoshi-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Satoshi";
  src: url("../fonts/Satoshi-Bold.woff2") format("woff2"), url("../fonts/Satoshi-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-padding-top: 2rem;
}

body {
  font-family: "Satoshi", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  line-height: 1.7;
  color: #2f4858;
  background-color: #f7f5f3;
  font-weight: 700;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  cursor: none;
}

.cursor {
  position: fixed;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #2f4858;
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: difference;
  transition: transform 0.15s ease, background-color 0.15s ease, border 0.15s ease, mix-blend-mode 0.15s ease;
  border: 0px solid transparent;
}
.cursor.hover {
  transform: scale(3);
}

.container {
  padding: 0 clamp(1rem, 4vw, 2rem);
}

.header {
  background-color: #f7f5f3;
  padding: clamp(1rem, 2vw, 1.5rem) 0;
}
.header .nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header .nav .nav-links {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 3vw, 2rem);
}
.header .logo img {
  width: 18vw;
}
.header .tagline {
  font-size: clamp(0.8rem, 1.5vw, 1.5rem);
  color: #2f4858;
}
.header .nav-links {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 3vw, 2rem);
}
.header .cta-button {
  background-color: #e67e22;
  color: #ffffff;
  border: none;
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2rem);
  border-radius: 500px;
  font-size: clamp(0.8rem, 1.2vw, 1.2rem);
  cursor: pointer;
  font-family: "Satoshi", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-weight: 700;
  transition: all 0.3s ease;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
.header .cta-button:hover {
  background-color: #d35400;
  transform: translateY(-0.125rem);
  box-shadow: 0 0.25rem 0.75rem rgba(204, 85, 0, 0.25);
}
.header .language {
  font-size: clamp(1rem, 1.2vw, 1.5rem);
  color: #2f4858;
  cursor: pointer;
  text-decoration: none;
}

.hero {
  padding: clamp(3rem, 10vw, 20rem) 0 clamp(3rem, 5vw, 6rem);
  min-height: 80vh;
  display: flex;
  align-items: center;
}
.hero-line {
  font-size: clamp(2rem, 6vw, 8.5rem);
  line-height: 1.1;
  color: #2f4858;
  margin-bottom: clamp(0.5rem, 1vw, 0.8rem);
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.hero-line.animate {
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 768px) {
  .hero-line {
    opacity: 1;
    transform: translateY(0);
    transition: none;
  }
}

.cta-section, .about, .clients, .services {
  padding: clamp(3rem, 8vw, 4rem) 0;
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.animate.cta-section, .animate.about, .animate.clients, .animate.services {
  opacity: 1;
  transform: translateY(0);
}

.about .about-grid, .clients .client-grid, .services .service-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(2rem, 6vw, 4rem);
  align-items: start;
}

.about .about-item h3, .clients .client-item h3, .services .service-item h3 {
  font-size: clamp(1.4rem, 1.4vw, 5rem);
  color: #2f4858;
  font-weight: 700;
  line-height: 1.5;
}

.about .about-item p, .clients .client-item p, .services .service-list p, .services .service-category p {
  font-size: clamp(1.4rem, 1.4vw, 5rem);
  color: #2f4858;
  line-height: 1.5;
  font-weight: 700;
}

.services .service-grid .service-title {
  grid-column: 1/4;
}
.services .service-grid .service-content {
  grid-column: 4/8;
}
.services .service-grid .service-list {
  grid-column: 9/12;
}
.services .service-grid .service-number {
  grid-column: 12/13;
  text-align: right;
}
.services .service-item h3 {
  margin-bottom: clamp(1.5rem, 1.4vw, 2.5rem);
}
.services .service-category {
  margin-bottom: clamp(2rem, 4vw, 3rem);
}
.services .service-category h4 {
  font-size: clamp(1.4rem, 1.4vw, 5rem);
  color: #2f4858;
  margin-bottom: clamp(0.5rem, 1vw, 0.8rem);
  text-decoration: underline;
}
.services .service-list h4 {
  font-size: clamp(1.4rem, 1.4vw, 5rem);
  color: #2f4858;
}
.services .service-list p {
  line-height: 1.5;
}
.services .section-number {
  font-size: clamp(1.4rem, 1.4vw, 5rem);
  color: #2f4858;
}

.clients .client-grid .client-item:first-child {
  grid-column: 1/4;
}
.clients .client-grid .client-item:nth-child(2) {
  grid-column: 4/10;
}
.clients .client-grid .client-number {
  grid-column: 12/13;
  text-align: right;
}
.clients .cta-link {
  color: #e67e22 !important;
  text-decoration: underline;
  cursor: pointer;
  display: block;
  font-weight: 700;
  line-height: 1.1;
  margin: 0;
}
.clients .cta-link:hover {
  color: #e67e22;
}
.clients .cta-link:visited {
  color: #e67e22;
}
.clients .section-number {
  font-size: 1.4vw;
  color: #999;
}

.about .about-grid .about-item:first-child {
  grid-column: 1/4;
}
.about .about-grid .about-item:nth-child(2) {
  grid-column: 4/10;
}
.about .about-grid .about-number {
  grid-column: 12/13;
  text-align: right;
}
.about .about-item p {
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}
.about .section-number {
  font-size: clamp(0.8rem, 1.2vw, 1rem);
  color: #999;
}

.cta-section {
  padding: clamp(3rem, 12vw, 6rem) 0 clamp(6rem, 12vw, 12rem);
  text-align: center;
  overflow: hidden;
}
.cta-section .container {
  overflow: hidden;
}
.cta-section .cta-title {
  font-size: clamp(2.5rem, 6vw, 6rem);
  color: #e67e22;
  text-decoration: underline;
  text-decoration-skip-ink: none;
  text-underline-offset: 0.1em;
  display: block;
}

.footer {
  padding: clamp(1rem, 3vw, 2rem) 0 5rem;
}
.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: clamp(1rem, 3vw, 2rem);
  font-size: clamp(0.8rem, 1.2vw, 0.9rem);
}
.footer-links {
  display: flex;
  gap: clamp(1rem, 2vw, 1.5rem);
}
.footer-links a {
  color: #2f4858;
  text-decoration: none;
  opacity: 0.8;
}
.footer-links a:hover {
  opacity: 1;
  text-decoration: underline;
}

@media (max-width: 768px) {
  .footer {
    padding-bottom: 6rem;
  }
  .header .nav {
    gap: 1rem;
  }
  .header .tagline {
    display: none;
  }
  .header .logo img {
    width: 40vw;
  }
  .header .nav .nav-links .cta-button {
    position: fixed;
    bottom: 70px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    width: 80vw;
    max-width: 400px;
    text-align: center;
    border-radius: 500px;
    font-size: clamp(1.2rem, 1.2vw, 1.5rem);
  }
  .hero-text {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }
  .hero-text.animate {
    opacity: 1;
    transform: translateY(0);
  }
  .hero-text .hero-line {
    display: inline;
  }
  .hero-text .hero-line::after {
    content: " ";
  }
  .hero-text .hero-line:nth-child(5)::after, .hero-text .hero-line:nth-child(9)::after {
    content: "\a";
    white-space: pre;
  }
  .about,
  .clients,
  .services {
    padding: clamp(1rem, 12vw, 2rem) 0;
  }
  .cta-section {
    padding: clamp(1rem, 12vw, 2rem) 0 clamp(2rem, 12vw, 4rem);
  }
  .service-grid,
  .client-grid,
  .about-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .service-grid .service-item,
  .service-grid .client-item,
  .service-grid .about-item,
  .client-grid .service-item,
  .client-grid .client-item,
  .client-grid .about-item,
  .about-grid .service-item,
  .about-grid .client-item,
  .about-grid .about-item {
    grid-column: 1/-1 !important;
    position: static !important;
  }
  .service-grid .service-item .section-number,
  .service-grid .client-item .section-number,
  .service-grid .about-item .section-number,
  .client-grid .service-item .section-number,
  .client-grid .client-item .section-number,
  .client-grid .about-item .section-number,
  .about-grid .service-item .section-number,
  .about-grid .client-item .section-number,
  .about-grid .about-item .section-number {
    margin-top: 1rem;
  }
  .footer-content {
    flex-direction: column;
    text-align: center;
  }
  .section-number {
    display: none;
  }
  .services h3 {
    display: none;
  }
}
