* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background: #323232;
  color: #fff;
  line-height: 1.7;
}

/* HERO */
.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 90px 10%;
  min-height: 100vh;
}

.hero-text {
  max-width: 55%;
}

.hero-text h1 {
  font-size: 80px;
  font-weight: 700;
}
#contact p{margin-bottom:25px;}

.hero-text span {
  color: #ff5ca8;
  font-size: 22px;
  display: block;
  margin-bottom: 20px;
}

.hero-text p {
  font-size: 18px;
  margin-bottom: 30px;
}

.hero-img img {
  max-width: 360px;
  filter: drop-shadow(0 40px 50px rgba(0,0,0,0.7));
}

.btn {
  background: #ff5ca8;
  color: #fff;
  padding: 14px 30px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 600;
}

.btn.dark {
  background: #000;
}

/* SECTIONS */
section {
  padding: 80px 15%;
}

section h2 {
  font-size: 38px;
  margin-bottom: 25px;
  text-align: center;
}

/* STORY */
.story {
  background: #fff;
  color: #333;
  text-align: center;
}

/* WHY */
.why {
  background: #2b2b2b;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 25px;
}

.why-box {
  background: #1f1f1f;
  padding: 25px;
  border-radius: 15px;
  text-align: center;
}

.why-box h3 {
  color: #ff5ca8;
  margin-bottom: 10px;
}

/* HIGHLIGHTS */
.highlights {
  background: #fff;
  color: #333;
}

.highlights ul {
  list-style: none;
  max-width: 600px;
  margin: auto;
}

.highlights li {
  font-size: 18px;
  margin: 12px 0;
}

/* USES */
.uses {
  background: linear-gradient(135deg,#ff5ca8,#ff89c2);
  color: #fff;
}

.use-boxes {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 20px;
}

.use-boxes div {
  background: rgba(255,255,255,0.2);
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  font-weight: 600;
}

/* QUALITY */
.quality {
  background: #111;
  text-align: center;
}

/* CTA */
.cta {
  background: #fff;
  color: #333;
  text-align: center;
}

.hero-img {
  position: relative;
  width: 100%;
  max-width: 420px;
  height: 520px;
  margin-left: auto;
}

.hero-img img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
}

.hero-img img.active {
  opacity: 1;
}


/* FOOTER */
footer {
  background: #000;
  text-align: center;
  padding: 20px;
  font-size: 14px;
}

/* RESPONSIVE */
@media(max-width:1000px){
    .hero-img img{margin-top: 38px;}
  .hero {flex-direction: column;}
  .hero-text {max-width: 100%; text-align:center;}
  .why-grid,.use-boxes {grid-template-columns: 1fr;}
}