* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Cairo', sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background: #050505;
  color: #fff;
  overflow-x: hidden;
  position: relative;
}

/* ======================
   BACKGROUND EFFECTS
====================== */

.noise {
  position: fixed;
  inset: 0;
  opacity: .03;
  background: url("https://www.transparenttextures.com/patterns/noise.png");
  pointer-events: none;
  z-index: 999;
}

.bg-blur {
  position: fixed;
  border-radius: 50%;
  filter: blur(140px);
  pointer-events: none;
  z-index: -1;
  animation: floatBlur 14s infinite ease-in-out;
}

.blur1 {
  width: 500px;
  height: 500px;
  background: #d4af37;
  top: -150px;
  right: -150px;
  opacity: .15;
}

.blur2 {
  width: 450px;
  height: 450px;
  background: #8a3ffc;
  bottom: -100px;
  left: -100px;
  opacity: .15;
  animation-delay: 3s;
}

.blur3 {
  width: 350px;
  height: 350px;
  background: #00d4ff;
  top: 45%;
  left: 40%;
  opacity: .08;
  animation-delay: 6s;
}

@keyframes floatBlur {

  0%,
  100% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(50px, -40px);
  }

}

/* ======================
   HERO
====================== */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  padding: 100px 8%;
  position: relative;
}

.hero-content {
  max-width: 650px;
  z-index: 2;
}

.badge {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .05);
  backdrop-filter: blur(20px);
  margin-bottom: 25px;
}

.hero h1 {
  font-size: 78px;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero h1 span {
  display: block;
  background: linear-gradient(90deg,
      #d4af37,
      #fff1b0);

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero p {
  font-size: 20px;
  line-height: 1.9;
  color: #bdbdbd;
  margin-bottom: 40px;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

/* ======================
   BUTTONS
====================== */

.btn {
  padding: 16px 36px;
  border-radius: 60px;
  text-decoration: none;
  font-weight: 700;
  transition: .4s;
}

.primary {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg,
      #d4af37,
      #fff1b0);

  color: #111;
}

.primary::before {

  content: '';

  position: absolute;

  width: 80px;
  height: 200%;

  background: rgba(255, 255, 255, .4);

  top: -50%;

  left: -100px;

  transform: rotate(25deg);

  animation: shine 4s infinite;
}

@keyframes shine {

  100% {
    left: 120%;
  }

}

.primary:hover {

  transform: translateY(-5px);

  box-shadow:
    0 15px 40px rgba(212, 175, 55, .35);
}

.secondary {

  border: 1px solid rgba(255, 255, 255, .15);

  background: rgba(255, 255, 255, .04);

  backdrop-filter: blur(15px);

  color: #fff;
}

/* ======================
   PHONE MOCKUP
====================== */

.phone {
  width: 320px;
  height: 650px;
  padding: 15px;
  border-radius: 45px;
  background: #111;
  border: 1px solid rgba(255, 255, 255, .1);

  box-shadow:
    0 0 100px rgba(212, 175, 55, .18);

  animation: floatingPhone 6s ease-in-out infinite;
}

@keyframes floatingPhone {

  50% {
    transform: translateY(-20px);
  }

}

.screen {
  height: 100%;
  border-radius: 35px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;

  background:
    linear-gradient(135deg,
      #101010,
      #1e1e1e);
}

.invite-card {

  width: 80%;

  padding: 40px;

  text-align: center;

  border-radius: 30px;

  background:
    rgba(255, 255, 255, .06);

  backdrop-filter: blur(25px);

  border:
    1px solid rgba(255, 255, 255, .1);

  position: relative;

  overflow: hidden;
}

.invite-card::before {

  content: '';

  position: absolute;

  width: 100px;
  height: 250%;

  background:
    linear-gradient(transparent,
      rgba(255, 255, 255, .25),
      transparent);

  top: -100%;
  left: -120px;

  transform: rotate(25deg);

  animation: cardLight 5s infinite;
}

@keyframes cardLight {

  100% {
    left: 130%;
  }

}

.invite-card span {
  color: #d4af37;
}

.invite-card h3 {
  font-size: 32px;
  margin: 20px 0;
}

.invite-card button,
.invite-card a {

  margin-top: 20px;

  padding: 12px 25px;

  border: none;

  border-radius: 50px;

  background: #d4af37;

  font-weight: 700;

  cursor: pointer;

  text-decoration: none;

  color: #111;
}

/* ======================
   SECTIONS
====================== */

.stats,
.features,
.steps,
.portfolio,
.premium-cta {
  padding: 120px 8%;
}

.section-title {
  text-align: center;
  margin-bottom: 70px;
}

.section-title h2 {
  font-size: 52px;
  margin-bottom: 15px;
}

.section-title p {
  color: #999;
  font-size: 18px;
}

/* ======================
   STATS
====================== */

.stats {

  display: grid;

  grid-template-columns:
    repeat(auto-fit, minmax(220px, 1fr));

  gap: 25px;
}

.stat {

  text-align: center;

  padding: 40px;

  border-radius: 25px;

  background:
    rgba(255, 255, 255, .04);

  backdrop-filter: blur(15px);

  border:
    1px solid rgba(255, 255, 255, .08);
}

.stat h3 {

  font-size: 54px;

  color: #d4af37;

  margin-bottom: 10px;
}

.stat span {
  color: #aaa;
}

/* ======================
   FEATURES
====================== */

.features-grid {

  display: grid;

  grid-template-columns:
    repeat(auto-fit, minmax(250px, 1fr));

  gap: 30px;
}

.feature {

  padding: 40px;

  text-align: center;

  font-size: 45px;

  border-radius: 25px;

  background:
    rgba(255, 255, 255, .04);

  border:
    1px solid rgba(255, 255, 255, .08);

  backdrop-filter: blur(15px);

  transition: .4s;

  position: relative;

  overflow: hidden;
}

.feature::before {

  content: '';

  position: absolute;

  inset: 0;

  background:
    linear-gradient(135deg,
      rgba(212, 175, 55, .15),
      transparent);

  opacity: 0;

  transition: .4s;
}

.feature:hover {

  transform:
    translateY(-10px);
}

.feature:hover::before {
  opacity: 1;
}

.feature h3 {
  font-size: 22px;
  margin: 15px 0;
}

.feature p {
  font-size: 15px;
  color: #b8b8b8;
}

/* ======================
   STEPS
====================== */

.steps-grid {

  display: grid;

  grid-template-columns:
    repeat(auto-fit, minmax(280px, 1fr));

  gap: 30px;
}

.step {

  padding: 40px;

  border-radius: 25px;

  background:
    rgba(255, 255, 255, .04);

  border:
    1px solid rgba(255, 255, 255, .08);
}

.number {

  font-size: 60px;

  font-weight: 900;

  color: #d4af37;

  margin-bottom: 20px;
}

.step h3 {
  margin-bottom: 15px;
}

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

/* ======================
   PORTFOLIO
====================== */

.portfolio-grid {

  display: flex;

  justify-content: center;

  align-items: center;

  gap: 40px;

  flex-wrap: wrap;
}

.phone-item {

  width: 280px;

  height: 580px;

  padding: 12px;

  border-radius: 45px;

  background: #111;

  border:
    1px solid rgba(255, 255, 255, .1);

  overflow: hidden;

  transition: .5s;
}

.phone-item:hover {

  transform:
    translateY(-20px) scale(1.03);
}

.phone-item img {

  width: 100%;
  height: 100%;
  object-fit: cover;

  border-radius: 35px;
}

.center {
  transform: scale(1.08);
}

/* ======================
   PRICING
====================== */

.pricing {

  padding: 120px 8%;

  display: flex;

  justify-content: center;
}

.pricing-card {

  width: 100%;
  max-width: 650px;

  padding: 60px 40px;

  text-align: center;

  border-radius: 35px;

  position: relative;

  overflow: hidden;

  background:
    linear-gradient(145deg,
      rgba(255, 255, 255, .06),
      rgba(255, 255, 255, .02));

  backdrop-filter: blur(25px);

  border:
    1px solid rgba(212, 175, 55, .25);

  box-shadow:
    0 0 60px rgba(212, 175, 55, .15);
}

.pricing-card::before {

  content: "";

  position: absolute;

  width: 180px;
  height: 300%;

  background:
    linear-gradient(transparent,
      rgba(255, 255, 255, .15),
      transparent);

  top: -100%;

  left: -200px;

  transform: rotate(25deg);

  animation: pricingShine 6s linear infinite;
}

@keyframes pricingShine {

  100% {
    left: 130%;
  }

}

.pricing-badge {

  display: inline-block;

  padding: 10px 22px;

  border-radius: 50px;

  background:
    rgba(212, 175, 55, .15);

  color: #f6d365;

  margin-bottom: 25px;
}

.pricing-card h2 {

  font-size: 42px;

  margin-bottom: 15px;
}

.pricing-desc {

  color: #aaa;

  margin-bottom: 35px;
}

.price {

  display: flex;

  justify-content: center;

  align-items: flex-start;

  margin-bottom: 40px;
}

.currency {

  font-size: 40px;

  color: #d4af37;

  margin-left: 8px;
}

.amount {

  font-size: 110px;

  font-weight: 900;

  line-height: 1;

  background:
    linear-gradient(135deg,
      #d4af37,
      #fff1b0);

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.pricing-features {

  display: grid;

  gap: 15px;

  margin-bottom: 40px;
}

.pricing-feature {

  padding: 15px;

  border-radius: 15px;

  background:
    rgba(255, 255, 255, .04);

  color: #ddd;
}

.pricing-btn {

  display: inline-block;

  padding: 18px 45px;

  border-radius: 60px;

  text-decoration: none;

  font-weight: 800;

  color: #111;

  background:
    linear-gradient(135deg,
      #d4af37,
      #fff1b0);

  transition: .3s;
}

.pricing-btn:hover {

  transform: translateY(-5px);

  box-shadow:
    0 15px 35px rgba(212, 175, 55, .3);
}

/* ======================
   CTA
====================== */

.premium-cta {

  text-align: center;

  background:
    radial-gradient(circle,
      rgba(212, 175, 55, .12),
      transparent 70%);
}

.premium-cta h2 {

  font-size: 72px;

  margin-bottom: 20px;
}

.premium-cta p {

  font-size: 20px;

  color: #aaa;

  margin-bottom: 40px;
}

.premium-btn {

  display: inline-block;

  padding: 20px 55px;

  border-radius: 60px;

  text-decoration: none;

  font-weight: 900;

  color: #111;

  background:
    linear-gradient(135deg,
      #d4af37,
      #fff1b0);

  box-shadow:
    0 0 40px rgba(212, 175, 55, .3);

  transition: .4s;
}

.premium-btn:hover {

  transform:
    translateY(-5px);
}

/* ======================
   MOBILE
====================== */

@media(max-width:991px) {

  .hero {
    flex-direction: column;
    text-align: center;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero h1 {
    font-size: 48px;
  }

  .hero-buttons {
    justify-content: center;
  }

  .phone {
    transform: scale(.9);
  }

  .section-title h2 {
    font-size: 38px;
  }

  .premium-cta h2 {
    font-size: 42px;
  }

}