*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:Arial,sans-serif;
}

body{
  background:#ecbfbf;
  color:#fff;
  overflow-x:hidden;
}

/* HERO */

.reel-hero{
  position:relative;
  overflow:hidden;

  padding:120px 20px;

  background:
  linear-gradient(
    to bottom,
    #e8e2e2,
    #ef4141
  );
}

/* BLUR */

.reel-blur{
  position:absolute;
  border-radius:50%;
  filter:blur(90px);
}

.blur-1{
  width:320px;
  height:320px;

  background:
  rgba(255,0,85,0.18);

  top:-120px;
  left:-100px;
}

.blur-2{
  width:280px;
  height:280px;

  background:
  rgba(255,140,0,0.16);

  bottom:-100px;
  right:-100px;
}

/* CONTAINER */

.reel-container{
  max-width:1300px;
  margin:auto;

  display:grid;
  grid-template-columns:1fr 1fr;
  gap:70px;
  align-items:center;
}

/* LEFT */

.reel-badge{
  display:inline-block;

  padding:12px 24px;

  border-radius:100px;

  background:
  rgba(255,255,255,0.08);

  color:#ffb347;

  font-weight:600;

  margin-bottom:24px;
}

.reel-left h1{
  font-size:
  clamp(52px,7vw,92px);

  line-height:1.05;

  margin-bottom:24px;

  font-weight:900;
}

.reel-left h1 span{
  background:
  linear-gradient(
    90deg,
    #ff0055,
    #ff9800
  );

  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

.reel-left p{
  color:#cfcfcf;

  font-size:18px;
  line-height:1.9;

  margin-bottom:40px;
}

/* BUTTONS */

.reel-buttons{
  display:flex;
  gap:18px;

  margin-bottom:45px;
}

.reel-btn-primary,
.reel-btn-secondary{
  padding:18px 36px;

  border-radius:100px;

  text-decoration:none;

  font-weight:700;

  transition:0.4s;
}

.reel-btn-primary{
  background:
  linear-gradient(
    135deg,
    #ff0055,
    #ff9800
  );

  color:#fff;
}

.reel-btn-secondary{
  border:1px solid rgba(255,255,255,0.15);
  color:#fff;
}

.reel-btn-primary:hover,
.reel-btn-secondary:hover{
  transform:translateY(-6px);
}

/* STATS */

.reel-stats{
  display:flex;
  gap:24px;
  flex-wrap:wrap;
}

.reel-stat{
  padding:24px 30px;

  border-radius:24px;

  background:
  rgba(255,255,255,0.05);

  backdrop-filter:blur(12px);

  border:
  1px solid rgba(255,255,255,0.06);
}

.reel-stat h3{
  font-size:34px;
  margin-bottom:8px;
}

.reel-stat p{
  color:#ccc;
}

/* RIGHT */

.reel-right{
  position:relative;
}

/* PHONE */

.phone-mockup{
  width:320px;
  height:650px;

  background:#000;

  border-radius:45px;

  padding:14px;

  margin:auto;

  box-shadow:
  0 30px 80px rgba(0,0,0,0.4);
}

.phone-top{
  width:120px;
  height:28px;

  background:#111;

  border-radius:0 0 20px 20px;

  margin:0 auto 14px;
}

.phone-screen{
  position:relative;

  width:100%;
  height:calc(100% - 45px);

  border-radius:35px;

  overflow:hidden;
}

.phone-screen img{
  width:100%;
  height:100%;

  object-fit:cover;
}

/* PLAY */

.play-btn{
  position:absolute;

  top:50%;
  left:50%;

  transform:translate(-50%,-50%);

  width:90px;
  height:90px;

  border-radius:50%;

  display:flex;
  align-items:center;
  justify-content:center;

  background:
  rgba(255,255,255,0.2);

  backdrop-filter:blur(12px);

  font-size:34px;
}

/* INFO */

.reel-info{
  position:absolute;

  bottom:25px;
  left:20px;

  z-index:2;
}

.reel-info h3{
  font-size:24px;
  margin-bottom:10px;
}

.reel-info p{
  color:#eee;
}

/* FLOAT */

.reel-floating{
  position:absolute;

  padding:16px 22px;

  border-radius:18px;

  background:
  rgba(255,255,255,0.08);

  backdrop-filter:blur(12px);

  border:
  1px solid rgba(255,255,255,0.08);

  font-weight:600;
}

.float-1{
  top:30px;
  left:0;
}

.float-2{
  top:220px;
  right:0;
}

.float-3{
  bottom:30px;
  left:20px;
}

/* SERVICES */

.reel-services{
  padding:120px 20px;
}

.reel-heading{
  text-align:center;
  margin-bottom:60px;
}

.reel-heading h2{
  font-size:
  clamp(42px,5vw,72px);

  margin-bottom:18px;
}

.reel-heading p{
  color:#ccc;
  font-size:18px;
}

/* GRID */

.reel-grid{
  max-width:1300px;
  margin:auto;

  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:30px;
}

/* CARD */

.reel-card{
  padding:40px 30px;

  border-radius:30px;

  background:
  rgba(255,255,255,0.05);

  border:
  1px solid rgba(255,255,255,0.06);

  transition:0.4s;
}

.reel-card:hover{
  transform:translateY(-10px);
}

.reel-icon{
  width:80px;
  height:80px;

  border-radius:24px;

  display:flex;
  align-items:center;
  justify-content:center;

  margin-bottom:24px;

  background:
  linear-gradient(
    135deg,
    #ff0055,
    #ff9800
  );

  color:#fff;

  font-size:32px;
}

.reel-card h3{
  font-size:28px;
  margin-bottom:16px;
}

.reel-card p{
  color:#ccc;
  line-height:1.8;
}

/* SHOWCASE */

.reel-showcase{
  padding:0 20px 120px;
}

.showcase-grid{
  max-width:1300px;
  margin:auto;

  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:30px;
}

.showcase-box{
  padding:45px;

  border-radius:30px;

  text-align:center;

  font-size:28px;
  font-weight:700;

  background:
  rgba(255,255,255,0.05);

  border:
  1px solid rgba(255,255,255,0.06);

  transition:0.4s;
}

.showcase-box:hover{
  transform:translateY(-10px);
}

/* CTA */

.reel-cta{
  position:relative;

  overflow:hidden;

  padding:120px 20px;

  text-align:center;

  background:
  linear-gradient(
    135deg,
    #ff0055,
    #ff9800
  );
}

.cta-overlay{
  position:absolute;
  inset:0;

  background:
  radial-gradient(
    circle at top right,
    rgba(255,255,255,0.15),
    transparent 40%
  );
}

.reel-cta h2{
  position:relative;
  z-index:2;

  font-size:
  clamp(42px,5vw,74px);

  margin-bottom:20px;
}

.reel-cta p{
  position:relative;
  z-index:2;

  font-size:18px;

  margin-bottom:35px;

  color:
  rgba(255,255,255,0.9);
}

.reel-cta-btn{
  position:relative;
  z-index:2;

  display:inline-flex;
  align-items:center;
  gap:12px;

  padding:18px 38px;

  border-radius:100px;

  background:#fff;

  color:#111;

  text-decoration:none;

  font-weight:700;

  transition:0.4s;
}

.reel-cta-btn:hover{
  transform:translateY(-6px);
}

/* RESPONSIVE */

@media(max-width:1100px){

  .reel-container{
    grid-template-columns:1fr;
  }

  .reel-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .showcase-grid{
    grid-template-columns:1fr;
  }

}

@media(max-width:768px){

  .reel-buttons{
    flex-direction:column;
  }

  .reel-grid{
    grid-template-columns:1fr;
  }

  .phone-mockup{
    width:280px;
    height:580px;
  }

}