.elementor-78 .elementor-element.elementor-element-a1a3750{--display:flex;}/* Start custom CSS for html, class: .elementor-element-6b2ba42 */* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --blue: #0553f1;
  --neon: #1da1ff;
  --dark: #030712;
  --dark2: #0b1220;
  --white: #ffffff;
  --glass: rgba(255,255,255,.08);
  --border: rgba(255,255,255,.12);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: #02040a;
  color: white;
  overflow-x: hidden;
}

/* BACKGROUND */
.bg {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background:
    radial-gradient(circle at top left, rgba(5,83,241,.25), transparent 35%),
    radial-gradient(circle at bottom right, rgba(0,150,255,.15), transparent 35%),
    linear-gradient(180deg,#02040a,#07111f,#02040a);
  z-index: -5;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: rgba(255,255,255,.6);
  border-radius: 50%;
  animation: float 10s infinite linear;
}

@keyframes float {
  from { transform: translateY(100vh); opacity: 0; }
  20% { opacity: 1; }
  to { transform: translateY(-10vh); opacity: 0; }
}

/* GLOBAL */
.container {
  width: 90%;
  max-width: 1250px;
  margin: auto;
}

section {
  padding: 120px 0;
  position: relative;
}

.section-title {
  font-size: clamp(2.2rem, 5vw, 5rem);
  font-weight: 900;
  margin-bottom: 20px;
  line-height: 1.1;
}

.section-sub {
  max-width: 760px;
  color: #d5d9e2;
  line-height: 1.7;
  font-size: 1.1rem;
  margin-bottom: 60px;
}

.glass {
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 28px;
}

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(0,0,0,.6),rgba(0,0,0,.8)),
    url('https://images.unsplash.com/photo-1517466787929-bc90951d0974?q=80&w=1974&auto=format&fit=crop');
  background-size: cover;
  background-position: center;
  z-index: -1;
  transform: scale(1.1);
  animation: zoomBg 18s infinite alternate ease-in-out;
}

@keyframes zoomBg {
  from { transform: scale(1.1); }
  to { transform: scale(1.2); }
}

.hero-content {
  max-width: 820px;
}

.badge {
  display: inline-flex;
  padding: 12px 20px;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.1);
  margin-bottom: 30px;
  font-size: .9rem;
  font-weight: 600;
  box-shadow: 0 0 30px rgba(5,83,241,.3);
}

.hero h1 {
  font-size: clamp(3rem, 7vw, 7rem);
  line-height: 1;
  font-weight: 900;
  margin-bottom: 25px;
  letter-spacing: -3px;
}

.hero h1 span {
  color: var(--neon);
  text-shadow: 0 0 30px rgba(0,150,255,.8);
}

.hero p {
  font-size: 1.2rem;
  line-height: 1.7;
  color: #dbe3f1;
  margin-bottom: 40px;
  max-width: 700px;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 34px;
  border-radius: 18px;
  font-weight: 700;
  text-decoration: none;
  transition: .4s ease;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, var(--blue), var(--neon));
  color: white;
  box-shadow:
    0 0 30px rgba(5,83,241,.5),
    0 0 70px rgba(5,83,241,.25);
}

.btn-secondary {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  color: white;
  backdrop-filter: blur(10px);
}

.btn:hover {
  transform: translateY(-5px) scale(1.03);
  box-shadow:
    0 0 40px rgba(0,150,255,.8),
    0 0 90px rgba(0,150,255,.3);
}

/* GRID */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.card {
  padding: 40px;
  transition: .4s;
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  width: 260px;
  height: 260px;
  background: rgba(5,83,241,.15);
  filter: blur(90px);
  top: -120px;
  right: -120px;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 35px rgba(5,83,241,.18);
}

.card h3 {
  font-size: 1.6rem;
  margin-bottom: 15px;
}

.card p {
  color: #d8dce7;
  line-height: 1.7;
}

/* PLANS */
.plans {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.plan {
  padding: 45px 35px;
  position: relative;
  overflow: hidden;
  transition: .4s;
}

.plan:hover {
  transform: translateY(-12px);
}

.popular {
  border: 2px solid rgba(0,150,255,.5);
  box-shadow:
    0 0 40px rgba(5,83,241,.25),
    0 0 100px rgba(5,83,241,.12);
}

.popular-tag {
  position: absolute;
  top: 18px;
  right: 18px;
  background: #ffffff;
  color: #000;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: .8rem;
  font-weight: 800;
}

.price {
  font-size: 3rem;
  font-weight: 900;
  margin: 20px 0;
  color: var(--neon);
}

.plan ul {
  list-style: none;
  margin-bottom: 30px;
}

.plan li {
  margin-bottom: 12px;
  color: #d7dce7;
}

/* COUNTDOWN */
.countdown {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 50px;
}

.time-box {
  min-width: 130px;
  padding: 35px;
  text-align: center;
}

.time-box h3 {
  font-size: 3rem;
  color: var(--neon);
}

/* PAYMENTS */
.payments {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.payment {
  padding: 35px 50px;
  font-size: 1.5rem;
  font-weight: 700;
}

/* CTA FINAL */
.final-box {
  padding: 80px 50px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-box::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: rgba(0,150,255,.18);
  filter: blur(120px);
  top: -180px;
  left: 50%;
  transform: translateX(-50%);
}

/* MOBILE */
@media(max-width: 768px) {
  .hero { text-align: center; }
  .hero-buttons { justify-content: center; }
  .section-title { font-size: 2.7rem; }
}/* End custom CSS */