* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}
body {
  background: #0b0b0b;
  color: white;
  overflow-x: hidden;
}

/*nav-i sutff*/
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.logo {
  text-transform: uppercase;
  font-size: 22px;
  font-weight: bold;
  letter-spacing: 2px;
}
.logo-span {
  color: #ff2d2d;
}
.langbtn {
  background-color: transparent;
  border: none;
  color: white;
  cursor: pointer;
  padding: 10px;
}
.nav-btn {
  text-transform: capitalize;
  background: #ff2d2d;
  border: none;
  color: white;
  padding: 12px 22px;
  border-radius: 30px;
  cursor: pointer;
  font-weight: bold;
  transition: 0.3s;
}
.nav-btn:hover {
  transform: scale(1.05);
}

/* hero värk*/
.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 110%;
  height: 110%;
  object-fit: cover;
  opacity: 0;
  animation: videoFadeIn 2s ease forwards;
  z-index: -3;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: -2;
}
.hero-overlay::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(0, 0, 0, 0.55),
    rgba(0, 0, 0, 0.2),
    rgba(0, 0, 0, 0.75)
  );
}
.hero-cont {
  position: relative;
  z-index: 2;
  color: white;
  text-align: center;
  max-width: 800px;

  transform: translateY(20px);
  opacity: 0;
  animation: contentFade 1.5s ease forwards 0.5s;
}
@keyframes videoFadeIn {
  from {
    opacity: 0;
    transform: scale(1.05);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes contentFade {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 0;
}
.tag {
  text-transform: uppercase;
  display: inline-block;
  background: #ff2d2d;
  padding: 10px 18px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 25px;
  letter-spacing: 1px;
}
.liner {
  background: linear-gradient(-0deg, #ff2d2d, #151515, #bdbdbd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: clamp(48px, 8vw, 110px);
  line-height: 0.95;
  margin-bottom: 25px;
  font-weight: 900;
  text-transform: uppercase;
}
.hero p {
  color: #bdbdbd;
  font-size: 18px;
  max-width: 650px;
  margin: 0 auto 35px;
  line-height: 1.6;
}
.tick-tack {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.aeg {
  background: #151515;
  padding: 20px 28px;
  border-radius: 16px;
  min-width: 110px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.aeg h2 {
  transition: all 0.3s ease;
  font-size: 40px;
  color: #ff2d2d;
}
.aeg span {
  text-transform: uppercase;
  color: #888;
  font-size: 14px;
  letter-spacing: 1px;
}
.hero-cta {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.cta-btn1 {
  text-transform: capitalize;
  background: #ff2d2d;
  color: white;
  border: none;
  padding: 16px 30px;
  border-radius: 40px;
  cursor: pointer;
  font-size: 16px;
  font-weight: bold;
  transition: 0.3s;
}
.cta-btn2 {
  text-transform: capitalize;
  background: transparent;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 16px 30px;
  border-radius: 40px;
  cursor: pointer;
  font-size: 16px;
  font-weight: bold;
  transition: 0.3s;
}
.cta-btn1:hover {
  border: 1px solid #ff2d2d;
  color: #ff2d2d;
  background-color: #0b0b0b;
}
.cta-btn2:hover {
  background-color: #bdbdbd;
  color: #0b0b0b;
}
.dontwait {
  color: white;
}

/*Trust*/
.trust_facts {
  width: 100%;

  text-align: center;
}
.trust {
  background: linear-gradient(179deg, #ff2d2d, #151515, #bdbdbd);
  display: flex;
  justify-content: space-around;
}
.facts {
  text-align: center;
}
.fact_num {
  font-size: 20px;
  font-weight: 900;
  color: #bdbdbd;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: -0.5px;
}
.fact_txt {
  font-size: 10px;
  font-weight: 800;
  color: #bdbdbd;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 2px;
}

/*Kliendid */
.kliendid {
  width: 100%;
  margin: 25px auto;
  padding: 0 14px;
  padding: 15px 0;
  text-align: center;
}
.kliendid h3 {
  font-size: 40px;
  background: linear-gradient(50deg, #ff2d2d, #151515, #bdbdbd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.kliendid p {
  margin-bottom: 25px;
  font-size: 14px;
  font-weight: 900;
  color: #bdbdbd;
  padding: 0px 15px;
  line-height: 1;
  letter-spacing: -0.5px;
}
.klient-cont {
  background: linear-gradient(-12deg, #ff2d2d, #151515, #bdbdbd);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  padding: 40px 60px;
}
.kliendi_kaardid {
  justify-self: center;
  border-radius: 50px;
  text-align: center;
  padding: 10px 0px;
  max-width: 180px;
  font-size: 30px;
  font-weight: 900;
  color: #000;
  line-height: 1;
  letter-spacing: -0.5px;
}
.kliendi_kaardid img {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
}
.klient_q {
  font-size: 18px;
  font-weight: 900;
  color: #bdbdbd;
  padding: 0px 15px;
  line-height: 1;
  letter-spacing: -0.5px;
}
.klient_name {
  margin-top: 5px;
  font-size: 10px;
  font-weight: 800;
  color: #151515;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/*products*/
.tooted {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px 20px;
}
.toote-header {
  text-align: center;
  padding: 60px 20px 20px;
}

.toote-header h1 {
  background: linear-gradient(-0deg, #ff2d2d, #151515, #bdbdbd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: clamp(28px, 8vw, 60px);
  line-height: 0.95;
  margin-bottom: 25px;
  font-weight: 900;
  text-transform: uppercase;
}

.toote-header p {
  max-width: 600px;
  margin: 25px auto;
  opacity: 0.8;
}

.limited {
  background: linear-gradient(0deg, #ff2d2d, #151515);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: clamp(20px, 10vw, 40px);
  line-height: 0.95;
  margin-bottom: 25px;
  font-weight: 900;
  text-transform: uppercase;
}

.toote-cont {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  max-width: 1100px;
  width: 100%;
  margin: auto;
}
.toote-kaart {
  position: relative;
  background: #1c1c1c;
  border: 1px solid rgba(255, 45, 45, 0.1);
  border-radius: 14px;
  padding: 20px;
  text-align: center;
  transition: 0.25s ease;
}
.toote-kaart:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 45, 45, 0.4);
}
.toote-kaart img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 15px;
}
.toote-kaart h3 {
  font-size: 18px;
  margin: 10px 0;
  color: white;
}
.hind {
  font-size: 22px;
  font-weight: bold;
  color: #ff2d2d;
  margin: 10px 0;
}
.kirjeldus {
  font-size: 13px;
  opacity: 0.8;
  margin-bottom: 15px;
}
.osta {
  background: #ff2d2d;
  color: white;
  border: none;
  padding: 10px 16px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: bold;
  transition: 0.2s;
  width: 100%;
}
.osta:hover {
  background: #e02626;
}
.vana-hind {
  position: relative;
  color: rgba(255, 255, 255, 0.4);
  font-size: 14px;
}

.vana-hind::after {
  content: "";
  position: absolute;
  left: 43%;
  top: 40%;
  width: 15%;
  height: 2px;
  background: rgba(255, 49, 49, 0.8);
  box-shadow: 0 0 8px rgba(255, 49, 49, 0.4);
  transform: rotate(-8deg);
}

.save {
  opacity: 0;
  position: absolute;
  top: 12px;
  right: 12px;
  background: #ff3131;
  color: white;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  transform: translateY(-5px);
  transition: all 0.25s ease;
}
.toote-kaart:hover .save {
  opacity: 1;
}

/* Offer */
.offer {
  text-align: center;
  padding: 100px 20px;
  background: linear-gradient(to bottom, #111, #0b0b0b);
}
.offer h2 {
  font-size: clamp(36px, 6vw, 72px);
  margin-bottom: 20px;
  text-transform: uppercase;
}
.offer-sub {
  color: #ff2d2d;
}
.offer p {
  max-width: 700px;
  margin: 0 auto 30px;
  color: #aaa;
  line-height: 1.6;
  font-size: 18px;
}
.discount-btn {
  text-transform: uppercase;
  color: #bdbdbd;
  display: inline-block;
  background: #ff2d2d;
  padding: 18px 30px;
  border-radius: 20px;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}
.discount-btn:hover {
  border: 1px solid #ff2d2d;
  background-color: #0b0b0b;
  color: #ff2d2d;
}

/* Cta */
.cta {
  text-align: center;
  padding: 100px 20px;
}
.cta h2 {
  text-transform: uppercase;
  font-size: clamp(34px, 5vw, 60px);
  margin-bottom: 20px;
}
.cta p {
  color: #aaa;
  margin-bottom: 35px;
  font-size: 18px;
}
.cta-btn {
  cursor: pointer;
  color: #bdbdbd;
  display: inline-block;
  background: #ff2d2d;
  padding: 18px 30px;
  border-radius: 20px;
  font-size: 28px;
  font-weight: bold;
}
.cta-btn:hover {
  border: 1px solid #ff2d2d;
  background-color: #0b0b0b;
  color: #ff2d2d;
}
.next-time {
  color: #ff2d2d;
}

/*footer*/
.footer {
  padding-bottom: 20px;
  width: 100%;
}
.vasak {
  display: flex;
}
.footer-cont {
  width: 100%;
  gap: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  color: #666;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 14px;
}
.parem_list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
  list-style-type: none;
}
.parem_list a {
  color: #bdbdbd;
  text-decoration: none;
  font-weight: 900;
}

@media (max-width: 768px) {
  header {
    padding: 20px;
  }

  .time-box {
    min-width: 90px;
    padding: 16px;
  }

  .time-box h2 {
    font-size: 32px;
  }

  .hero {
    min-height: auto;
    padding: 100px 20px;
  }
}
@media (min-width: 768px) {
  .parem_list {
    display: flex;
    flex-direction: row;
  }
}
