
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: #07111f;
  color: white;
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.hero {
  padding: 80px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.hero-image {
  width: 100%;
  max-height: 700px;
  object-fit: cover;
  border-radius: 20px;
  padding: 18px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.logo {
  height: 130px;
  margin-bottom: 28px;
  border-radius: 500px;
}

.tag {
  display: inline-flex;
  align-items: center;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid rgba(203, 183, 35, 0.779);
  background: rgba(255,255,255,0.03);
  color: #cbd5e1;
  margin-bottom: 26px;
  font-size: 14px;
}

h1 {
  font-size: 72px;
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
}

.subtitle {
  margin-top: 30px;
  font-size: 20px;
  line-height: 1.8;
  color: #cbd5e1;
}

.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.badge {
  border: 1px solid rgba(203, 183, 35, 0.779);
  background: rgba(255,255,255,0.03);
  padding: 12px 18px;
  border-radius: 16px;
  color: #e5e7eb;
  font-size: 17px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.btn-primary {
  background: white;
  color: black;
  padding: 18px 32px;
  border-radius: 18px;
  text-decoration: none;
  font-weight: 700;
  transition: 0.3s;
}

.btn-primary:hover {
  transform: translateY(-4px);
}

.btn-secondary {
  border: 1px solid rgba(203, 183, 35, 0.779);
  color: white;
  padding: 18px 32px;
  border-radius: 18px;
  text-decoration: none;
  font-weight: 700;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px;
  margin-top: 50px;
}

.stat-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(203, 183, 35, 0.779);
  padding: 28px;
  border-radius: 28px;
}

.stat-card h3 {
  font-size: 36px;
  margin-bottom: 12px;
}

.stat-card p {
  color: #94a3b8;
}

.hero-image-box,
.product-image-box {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(203, 183, 35, 0.779);
  border-radius: 36px;
  padding: 1px;
  
}

.hero-image,
.product-image,
.about-image {
  border-radius: 28px;
}

.section {
  padding: 120px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 70px;
}

.section-header span,
.section-mini-title {
  color: #94a3b8;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-size: 14px;
}

.section-header h2,
.left-title {
  font-size: 58px;
  line-height: 1.1;
  margin-top: 20px;
  font-weight: 900;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 24px;
}

.card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(203, 183, 35, 0.779);
  border-radius: 30px;
  padding: 38px;
}

.card-number {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background: rgb(255, 255, 255);
  color: black;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  margin-bottom: 26px;
}

.card h3 {
  font-size: 30px;
  margin-bottom: 18px;
}

.card p {
  font-size: 20px;
  color: #94a3b8;
  line-height: 1.8;
}

.product-grid,
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.feature-box {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 20px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(203, 183, 35, 0.779);
  border-radius: 20px;
  padding: 22px;
  margin-bottom: 18px;
}

.tag {
  display: inline-flex;
  align-items: center;
  padding: 16px 28px;
  border-radius: 999px;
  border: 1px solid rgba(203, 183, 35, 0.9);
  background: rgba(255,255,255,0.03);
  color: #ffffff;
  margin-bottom: 40px;
  font-size: 17px;
  font-weight: 500;
}

.feature-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: white;
  color: black;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  flex-shrink: 0;
}

.product-button {
  margin-top: 36px;
  font-size: 20px;
}

.about-text {
  color: rgb(203, 213, 225);
  line-height: 1.9;
  font-size: 20px;
  margin-top: 28px;
}

.hero-image,
.product-image,
.about-image {
border-radius: 28px;
}

.about-image {
  width: 100%;
  height: 700px;
  object-fit: cover;
  border-radius: 24px;
  border: 1px solid #cbb723e6;
  padding: 20px;
}

.about-cards {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 18px;
  margin-top: 42px;
}

.mini-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(203, 183, 35, 0.9);
  border-radius: 24px;
  padding: 28px;
}

.mini-card h3 {
  font-size: 36px;
  margin-bottom: 12px;
}

.mini-card p {
  color: rgb(148, 163, 184);
}

.cta-box {
  background: rgb(255, 255, 255);
  color: black;
  border-radius: 42px;
  padding: 90px 60px;
  text-align: center;
  border: 1px solid rgba(203, 183, 35, 0.9);
}

.cta-box h2 {
  font-size: 64px;
  line-height: 1.1;
  margin-bottom: 28px;
  font-weight: 900;
  
}

.cta-box p {
  max-width: 820px;
  margin: 0 auto 40px;
  line-height: 1.8;
  font-size: 20px;
  color: #444;
}

.dark-btn {
  background: #07111f;
  color: #ffffff;
}

footer {
  padding: 40px 0;
  border-top: 1px solid rgba(203, 183, 35, 0.9);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.footer-logo {
  height: 100px;
}

.footer-content p {
  color: #94a3b8;
}

@media(max-width: 1100px) {

  h1 {
    font-size: 54px;
  }

  .section-header h2,
  .left-title,
  .cta-box h2 {
  font-size: 42px;
  }

  .hero-grid,
  .product-grid,
  .about-grid,
  .cards-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .cta-box {
    padding: 60px 30px;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
  }
}

@media(max-width: 640px) {

  .hero {
    padding: 50px 0;
  }

  h1 {
    font-size: 42px;
  }

  .section {
    padding: 80px 0;
  }

  .section-header h2,
  .left-title,
  .cta-box h2 {
    font-size: 34px;
  }

  .subtitle,
  .about-text,
  .cta-box p {
    font-size: 16px;
  }

  .cards-grid,
  .about-cards {
    grid-template-columns: 1fr;
  }

  .card,
  .mini-card {
    padding: 28px;
  }

  .cta-box {
    border-radius: 28px;
  }

}
.hero-image {
  width: 100%;
  height: 70%;
  object-fit: cover;
  border-radius: 20px;
}
.slider {
  position: relative;
  width: 100%;
  height: 700px;
  overflow: hidden;
  border-radius: 28px;
}
.slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 20px;

  object-fit: cover;

  opacity: 0;
  transition: opacity 1s ease;

  pointer-events: none;
}

.slide.active {
  opacity: 1;
}