@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Space+Grotesk:wght@300;400;500;600;700&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #ffffff;
  color: #030303;
  font-family: "Inter", sans-serif;
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

ul {
  list-style: none;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  color: #030303;
}

h1 {
  font-size: 6rem;
  line-height: 0.95;
  letter-spacing: -0.04em;
}
@media (max-width: 768px) {
  h1 {
    font-size: 3.5rem;
  }
}

h2 {
  font-size: 3.5rem;
  margin-bottom: 3rem;
  letter-spacing: -0.03em;
}
@media (max-width: 768px) {
  h2 {
    font-size: 2.2rem;
  }
}

p {
  color: #666666;
  font-size: 1.05rem;
  font-weight: 300;
  max-width: 50ch;
}

.btn {
  display: inline-block;
  padding: 1.2rem 3rem;
  font-family: "Inter", sans-serif;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #ffffff;
  background: #030303;
  border: 1px solid #030303;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.btn:hover {
  background: #38A768;
  border-color: #38A768;
  color: #ffffff;
}
.btn.btn-outline {
  background: transparent;
  color: #030303;
  border: 1px solid #030303;
}
.btn.btn-outline:hover {
  border-color: #38A768;
  background: #38A768;
  color: #ffffff;
}

nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 2rem 0;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), padding 0.4s ease;
}
nav.scrolled {
  padding: 1.5rem 0;
  background: rgba(255, 255, 255, 0.9);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  mix-blend-mode: normal;
  border-bottom: 1px solid #eeeeee;
}
nav .nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 768px) {
  nav .nav-container {
    padding: 0 1.5rem;
  }
}
nav .nav-container .logo {
  display: flex;
  align-items: center;
  height: 100%;
}
nav .nav-container .logo img {
  transition: filter 0.3s ease;
  filter: invert(0);
}
nav .nav-container .logo:hover img {
  filter: brightness(1.2);
}
nav .nav-container .nav-links {
  display: flex;
  gap: 4rem;
}
nav .nav-container .nav-links a {
  font-family: "Inter", sans-serif;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #666666;
}
nav .nav-container .nav-links a:hover {
  color: #38A768;
}
@media (max-width: 768px) {
  nav .nav-container .nav-links {
    display: none;
  }
}
@media (max-width: 768px) {
  nav .nav-container .nav-links.active {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #ffffff;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    z-index: 999;
  }
  nav .nav-container .nav-links.active a {
    font-size: 1.5rem;
  }
}
nav .nav-container .mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 1001;
}
@media (max-width: 768px) {
  nav .nav-container .mobile-menu-toggle {
    display: flex;
  }
}
nav .nav-container .mobile-menu-toggle span {
  width: 25px;
  height: 2px;
  background: #030303;
  transition: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
nav .nav-container .mobile-menu-toggle.open span:nth-child(1) {
  transform: translateY(4px) rotate(45deg);
}
nav .nav-container .mobile-menu-toggle.open span:nth-child(2) {
  transform: translateY(-4px) rotate(-45deg);
}

.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.3);
  z-index: 1;
}
.hero .hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 0;
  filter: grayscale(100%) invert(1) opacity(0.8);
}
.hero .hero-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 2;
  padding-top: 10vh;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (max-width: 768px) {
  .hero .hero-content {
    padding: 0 1.5rem;
  }
}
.hero .hero-content h1 {
  margin-bottom: 2.5rem;
}
.hero .hero-content h1 span.accent-text {
  display: block;
  color: #38A768;
}
.hero .hero-content .hero-btns {
  display: flex;
  gap: 1.5rem;
}
@media (max-width: 500px) {
  .hero .hero-content .hero-btns {
    flex-direction: column;
    width: 100%;
  }
  .hero .hero-content .hero-btns .btn {
    width: 100%;
  }
}
.hero .scroll-indicator {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  opacity: 0.8;
}
.hero .scroll-indicator .mouse {
  width: 26px;
  height: 42px;
  border: 2px solid #030303;
  border-radius: 20px;
  position: relative;
}
.hero .scroll-indicator .mouse::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  background: #38A768;
  border-radius: 50%;
  animation: scroll-anim 1.5s infinite;
}

@keyframes scroll-anim {
  0% {
    transform: translate(-50%, 0);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, 15px);
    opacity: 0;
  }
}
section {
  padding: 10rem 0;
  border-bottom: 1px solid #eeeeee;
}

.about .about-grid {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8rem;
  align-items: start;
}
@media (max-width: 768px) {
  .about .about-grid {
    padding: 0 1.5rem;
  }
}
@media (max-width: 900px) {
  .about .about-grid {
    gap: 4rem;
    grid-template-columns: 1fr;
  }
}
.about .about-grid .about-image {
  height: 600px;
  filter: grayscale(100%) contrast(1.2);
  transition: 0.5s ease;
}
.about .about-grid .about-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.about .about-grid .about-text h2 {
  font-size: 2.5rem;
  margin-bottom: 4rem;
}
.about .about-grid .about-text h3 {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  color: #030303;
  font-family: "Inter", sans-serif;
  font-weight: 300;
}
.about .about-grid .about-text p {
  margin-bottom: 2rem;
}
.about .about-grid .about-text .mission-vision {
  margin-top: 4rem;
  display: flex;
  flex-direction: column;
  gap: 3rem;
  border-left: 1px solid #38A768;
  padding-left: 2rem;
}
.about .about-grid .about-text .mission-vision .mv-item h4 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  letter-spacing: 0.05em;
}

.services .services-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}
@media (max-width: 768px) {
  .services .services-container {
    padding: 0 1.5rem;
  }
}
.services .services-container .services-header {
  margin-bottom: 6rem;
  max-width: 60%;
}
.services .services-container .services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid #eeeeee;
  border-left: 1px solid #eeeeee;
}
@media (max-width: 900px) {
  .services .services-container .services-grid {
    grid-template-columns: 1fr;
  }
}
.services .services-container .services-grid .service-card {
  padding: 4rem 3rem;
  border-right: 1px solid #eeeeee;
  border-bottom: 1px solid #eeeeee;
  transition: background 0.3s;
  height: 100%;
}
.services .services-container .services-grid .service-card:hover {
  background: #f9f9f9;
}
.services .services-container .services-grid .service-card:hover .icon {
  color: #38A768;
}
.services .services-container .services-grid .service-card .icon {
  font-size: 1.5rem;
  color: #666666;
  margin-bottom: 2rem;
  transition: 0.3s;
}
.services .services-container .services-grid .service-card h4 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}
.services .services-container .services-grid .service-card p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: #666666;
}

.values {
  background: #f9f9f9;
}
.values .values-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 4rem;
  align-items: start;
}
@media (max-width: 768px) {
  .values .values-container {
    padding: 0 1.5rem;
  }
}
@media (max-width: 900px) {
  .values .values-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}
.values .values-container .section-title {
  position: sticky;
  top: 100px;
}
@media (max-width: 900px) {
  .values .values-container .section-title {
    position: static;
    text-align: center;
    margin-bottom: 2rem;
  }
}
.values .values-container .values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
@media (max-width: 768px) {
  .values .values-container .values-grid {
    grid-template-columns: 1fr;
  }
}
.values .values-container .values-grid .value-item {
  background: #ffffff;
  border: 1px solid #eeeeee;
  padding: 2.5rem;
  transition: 0.3s;
}
.values .values-container .values-grid .value-item:hover {
  background: #ffffff;
  border-color: #38A768;
}
.values .values-container .values-grid .value-item:hover .icon-circle {
  color: #38A768;
}
.values .values-container .values-grid .value-item .icon-circle {
  margin-bottom: 1.5rem;
  font-size: 1.8rem;
  color: #030303;
}
.values .values-container .values-grid .value-item h4 {
  font-size: 1.1rem;
  margin-bottom: 0.8rem;
  color: #030303;
}
.values .values-container .values-grid .value-item p {
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 0;
}

.clients {
  padding: 8rem 0;
  border-top: 1px solid #eeeeee;
}
.clients .clients-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}
@media (max-width: 768px) {
  .clients .clients-container {
    padding: 0 1.5rem;
  }
}
.clients .clients-container h2 {
  font-size: 0.85rem;
  text-align: center;
  margin-bottom: 2rem;
  color: #666666;
  font-family: "Inter", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}
.clients .clients-container p {
  text-align: center;
  margin: 0 auto 4rem;
  max-width: 60ch;
}
.clients .clients-container .client-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: #eeeeee;
  border: 1px solid #eeeeee;
}
@media (min-width: 768px) {
  .clients .clients-container .client-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1024px) {
  .clients .clients-container .client-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.clients .clients-container .client-grid .client-item {
  background: #ffffff;
  padding: 3rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  text-align: center;
  transition: background 0.3s;
  cursor: default;
  height: 100%;
}
.clients .clients-container .client-grid .client-item:hover {
  background: #f9f9f9;
}
.clients .clients-container .client-grid .client-item span {
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #666666;
}

footer {
  padding: 6rem 0 2rem;
  background: #ffffff;
}
footer .footer-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 4rem;
}
@media (max-width: 768px) {
  footer .footer-content {
    padding: 0 1.5rem;
  }
}
@media (max-width: 768px) {
  footer .footer-content {
    flex-direction: column;
    text-align: center;
    gap: 3rem;
  }
}
footer .footer-content .footer-brand {
  max-width: 400px;
}
footer .footer-content .footer-brand img {
  margin-bottom: 1.5rem;
}
footer .footer-content .footer-brand p {
  font-size: 0.95rem;
  color: #666666;
}
footer .footer-content .footer-contact-minimal {
  text-align: right;
}
@media (max-width: 768px) {
  footer .footer-content .footer-contact-minimal {
    text-align: center;
  }
}
footer .footer-content .footer-contact-minimal h5 {
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  color: #666666;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
footer .footer-content .footer-contact-minimal .phone {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.5rem;
  color: #030303;
  font-weight: 500;
}
footer .footer-bottom {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  margin-top: 6rem;
  padding-top: 2rem;
  padding-bottom: 2rem;
  border-top: 1px solid #eeeeee;
  display: flex;
  justify-content: center;
  text-align: center;
}
@media (max-width: 768px) {
  footer .footer-bottom {
    padding: 0 1.5rem;
  }
}
@media (max-width: 768px) {
  footer .footer-bottom {
    margin-top: 4rem;
  }
}
footer .footer-bottom p {
  font-size: 0.75rem;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}/*# sourceMappingURL=style.css.map */