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

html{
  scroll-behavior:smooth;
}

body{
  background:#000;
  color:white;
  font-family:'Space Grotesk',sans-serif;
  overflow-x:hidden;
}

/* NAVBAR */

nav{
  position: absolute;
  top:0;
  left:0;
  width:100%;
  padding:12px 8%;
  display:flex;
  justify-content:space-between;
  align-items:center;
  z-index:1000;
  background: transparent;
 
}

.logo{
  font-size:34px;
  font-weight:700;
  letter-spacing:-1px;
}

nav ul{
  display:flex;
  gap:30px;
  list-style:none;
}

nav ul li a{
  text-decoration:none;
  color:white;
  font-size:15px;
  opacity:0.8;
  transition:0.3s ease;
}

nav ul li a:hover{
  opacity:1;
}

.nav-btn{
    padding:14px 24px;
    border:none;
    border-radius:50px;
    background: linear-gradient(135deg, #1f1f1f, #5f5f5f);
    color:white;
    font-weight:600;
    cursor:pointer;
    transition:0.3s ease;
    box-shadow: 0 8px 20px rgba(255,255,255,0.10);
}


.nav-btn:hover{
    transform:translateY(-4px);
    filter:brightness(1.1);
}


/* HERO */

.hero{
  position:relative;
  min-height:100vh;
  display:flex;
  justify-content:center;
  align-items:center;
  text-align:center;
  overflow:hidden;
  padding:0 8%;
}

.hero-video{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  z-index:-2;
}

.overlay{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.62);
  z-index:-1;
}

.hero-content{
  position:relative;
  z-index:2;
  max-width:1150px;
  animation:fadeUp 1.2s ease;
}

.hero-small{
  margin-bottom: 25px;
  letter-spacing:7px;
  font-size:13px;
  margin-bottom:28px;
  color:#d0d0d0;
}

.hero h1{
  font-size:118px;
  line-height:0.92;
  margin-bottom:35px;
  letter-spacing:-4px;
}

.hero-text{
  max-width:850px;
  margin:auto;
  font-size:20px;
  line-height:1.9;
  color:#d0d0d0;
}

.hero-buttons{
  margin-top:50px;
  display:flex;
  justify-content:center;
  gap:20px;
  flex-wrap:wrap;
}

.primary-btn,
.secondary-btn{
  padding:18px 38px;
  border-radius:50px;
  border:none;
  cursor:pointer;
  font-size:15px;
  transition:0.35s ease;
}

.primary-btn{
    background: linear-gradient(135deg, #1f1f1f, #5f5f5f);
    color:white;
    box-shadow: 0 8px 25px rgba(255,255,255,0.12);
}


.primary-btn:hover{
    transform:translateY(-4px);
    filter:brightness(1.1);
}

.secondary-btn{
  background:transparent;
  border:1px solid rgba(255,255,255,0.2);
  color:white;
}

.secondary-btn:hover{
  background:rgba(255,255,255,0.08);
  transform:translateY(-4px);
}

.hero-trust{
  margin-top:38px;
  display:flex;
  justify-content:center;
  gap:28px;
  flex-wrap:wrap;
  color:#d0d0d0;
  font-size:14px;
}

/* GENERAL */

section{
  padding:130px 8%;
}

.section-small{
  color:#999;
  letter-spacing:5px;
  margin-bottom:22px;
  font-size:13px;
}

h2{
  font-size:68px;
  line-height:1.05;
  margin-bottom:65px;
  letter-spacing:-2px;
}

/* CARDS */

.cards{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:30px;
}

.card{
  padding: 28px;
  background:rgba(255,255,255,0.03);
  border:1px solid rgba(255,255,255,0.08);
  border-radius:28px;
  backdrop-filter:blur(12px);
  transition:0.4s ease;
}

.card:hover{
  transform:translateY(-8px);
  border:1px solid rgba(255,255,255,0.15);
}

.card h3{
  font-size:28px;
  margin-bottom:22px;
}

.card p{
  color:#d0d0d0;
  line-height:1.9;
}

/* STEPS */

.steps{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:35px;
}

.step{
  padding:45px;
  background:#0d0d0d;
  border-radius:28px;
  border:1px solid rgba(255,255,255,0.06);
}

.step span{
  font-size:14px;
  color:#ff2020;
  letter-spacing:3px;
}

.step h3{
  margin:20px 0;
  font-size:30px;
}

.step p{
  color:#cfcfcf;
  line-height:1.8;
}

/* YOU MATTER */

.matter{
  text-align:center;
}

.matter-text{
  max-width:850px;
  margin:auto;
  font-size:24px;
  line-height:1.9;
  color:#d0d0d0;
}

/* TESTIMONIALS */

.feedback{
  overflow:hidden;
}

.feedback-slider{
  width:100%;
  overflow:hidden;
  position:relative;
  margin-top:60px;
}

.feedback-track{
  display:flex;
  gap:30px;
  width:max-content;
  animation:scrollFeedback 40s linear infinite;
}

.feedback-card{
  width:420px;
  flex-shrink:0;
  padding:40px;
  border-radius:28px;
  background:rgba(255,255,255,0.04);
  border:1px solid rgba(255,255,255,0.08);
  backdrop-filter:blur(10px);
  transition:0.4s ease;
}

.feedback-card:hover{
  transform:translateY(-8px);
  border:1px solid rgba(255,255,255,0.16);
}

.feedback-card p{
  font-size:17px;
  line-height:1.9;
  color:#d0d0d0;
  margin-bottom:28px;
}

.feedback-card h4{
  color:white;
  font-size:16px;
  font-weight:600;
}

/* FINAL CTA */

.final-cta{
  text-align:center;
}

.final-cta p{
  max-width:700px;
  margin:35px auto;
  color:#cfcfcf;
  line-height:1.9;
}

/* FOOTER */

footer{
  padding:110px 8%;
  border-top:1px solid rgba(255,255,255,0.08);
}

.footer-logo{
  font-size:52px;
  font-weight:700;
}

.footer-text{
  margin-top:22px;
  color:#d0d0d0;
}

.footer-links{
  margin-top:45px;
  display:flex;
  gap:25px;
  flex-wrap:wrap;
}

.footer-links a{
  color:#d0d0d0;
  text-decoration:none;
  transition:0.3s ease;
}

.footer-links a:hover{
  color:white;
}

.footer-line{
  width:100%;
  height:1px;
  background:rgba(255,255,255,0.1);
  margin:55px 0;
}

.location{
  margin-bottom:20px;
  color:#d0d0d0;
}

.disclaimer{
  color:#8d8d8d;
  line-height:1.9;
  max-width:950px;
}

/* ANIMATIONS */

@keyframes fadeUp{

  from{
    opacity:0;
    transform:translateY(50px);
  }

  to{
    opacity:1;
    transform:translateY(0);
  }

}

@keyframes scrollFeedback{

  from{
    transform:translateX(0);
  }

  to{
    transform:translateX(-50%);
  }

}

/* MOBILE */

@media(max-width:768px){

  nav ul{
    display:none;
  }

  .nav-btn{
    display:none;
  }

  .hero h1{
    font-size:58px;
    letter-spacing:-2px;
  }

  h2{
    font-size:44px;
  }

  .hero-text{
    font-size:17px;
  }

  .cards,
  .steps{
    grid-template-columns:1fr;
  }

  .feedback-card{
    width:300px;
  }

  .matter-text{
    font-size:20px;
  }

}
@media (max-width:768px){

    .hero{
    padding-top: calc(env(safe-area-inset-top) + 80px);
    }

    .logo{
        margin-bottom:25px;
    }

    .hero h1{
        font-size:60px;
        line-height:0.95;
    }

    .hero p{
        max-width:90%;
        margin:auto;
        line-height:1.7;
    }

    .hero-small{
        margin-top:30px;
        margin-bottom:20px;
    }

    .hero-content{
        padding-top:50px;
    }

}


.hero-small{
    margin-top:30px;
    margin-bottom:20px;
}

.hero-content{
    padding-top:50px;
}