* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg: #07111f;
  --bg-2: #0d1728;
  --card: rgba(255, 255, 255, 0.08);
  --card-2: rgba(255, 255, 255, 0.12);
  --text: #f7fbff;
  --muted: #a8b6ca;
  --line: rgba(255, 255, 255, 0.14);
  --primary: #32e58f;
  --primary-dark: #0faa68;
  --blue: #59a8ff;
  --purple: #a779ff;
  --orange: #ffbc6b;
  --danger: #ff5d8f;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Plus Jakarta Sans", Arial, sans-serif;
  background:
    radial-gradient(circle at top left, rgba(50, 229, 143, 0.13), transparent 34rem),
    radial-gradient(circle at top right, rgba(89, 168, 255, 0.16), transparent 35rem),
    var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-glow {
  position: fixed;
  width: 25rem;
  height: 25rem;
  border-radius: 50%;
  filter: blur(110px);
  pointer-events: none;
  opacity: 0.4;
  z-index: -1;
}

.glow-one {
  top: 10%;
  left: -12%;
  background: var(--primary);
}

.glow-two {
  bottom: 5%;
  right: -12%;
  background: var(--blue);
}

.header {
  width: 100%;
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: rgba(7, 17, 31, 0.76);
  border-bottom: 1px solid var(--line);
}

.nav {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: #04120d;
  font-weight: 900;
  background: linear-gradient(135deg, var(--primary), #b5ffd9);
  box-shadow: 0 10px 28px rgba(50, 229, 143, 0.25);
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 1rem;
  letter-spacing: -0.03em;
}

.brand small {
  color: var(--muted);
  font-size: 0.76rem;
  margin-top: 3px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  color: var(--muted);
  font-weight: 700;
  font-size: 0.92rem;
}

.nav-links a {
  transition: 0.25s ease;
}

.nav-links a:hover {
  color: var(--text);
}

.nav-cta {
  color: #06130d !important;
  background: var(--primary);
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: 0 12px 34px rgba(50, 229, 143, 0.23);
}

.menu-toggle {
  width: 44px;
  height: 44px;
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  border: 1px solid var(--line);
  background: var(--card);
  border-radius: 14px;
  cursor: pointer;
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  background: white;
  margin: 0 auto;
  border-radius: 10px;
}

.section {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 100px 0;
}

.hero {
  min-height: calc(100vh - 82px);
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 60px;
  padding-top: 70px;
}

.eyebrow,
.tag {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #c9ffdf;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 10px 14px;
  border: 1px solid rgba(50, 229, 143, 0.28);
  border-radius: 999px;
  background: rgba(50, 229, 143, 0.08);
}

.eyebrow span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 0 6px rgba(50, 229, 143, 0.14);
}

.hero h1 {
  margin-top: 28px;
  font-size: clamp(2.65rem, 6vw, 5.75rem);
  line-height: 0.95;
  letter-spacing: -0.075em;
  max-width: 850px;
}

.hero-text {
  margin-top: 28px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.8;
  max-width: 660px;
}

.hero-actions {
  margin-top: 36px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.btn {
  border: 1px solid var(--line);
  padding: 15px 22px;
  border-radius: 999px;
  font-weight: 900;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: 0.25s ease;
}

.btn:hover {
  transform: translateY(-3px);
}

.btn-primary {
  color: #04120d;
  background: linear-gradient(135deg, var(--primary), #c1ffdc);
  border-color: transparent;
  box-shadow: 0 18px 42px rgba(50, 229, 143, 0.24);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.08);
}

.hero-stats {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  max-width: 580px;
}

.hero-stats div {
  padding: 20px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.06);
  border-radius: 22px;
}

.hero-stats strong {
  display: block;
  font-size: 1.3rem;
}

.hero-stats span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.88rem;
}

.hero-card {
  position: relative;
  display: grid;
  place-items: center;
}

.phone-mockup {
  width: min(380px, 100%);
  padding: 15px;
  border-radius: 42px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: linear-gradient(145deg, rgba(255,255,255,0.18), rgba(255,255,255,0.04));
  box-shadow: var(--shadow);
  transform: rotate(3deg);
}

.phone-top {
  width: 100px;
  height: 22px;
  border-radius: 0 0 18px 18px;
  background: #081323;
  margin: 0 auto -5px;
  position: relative;
  z-index: 2;
}

.screen {
  min-height: 610px;
  border-radius: 32px;
  padding: 28px;
  background:
    radial-gradient(circle at top right, rgba(89, 168, 255, 0.26), transparent 16rem),
    linear-gradient(180deg, #13233a, #07111f);
  border: 1px solid rgba(255, 255, 255, 0.12);
  overflow: hidden;
  position: relative;
}

.screen::after {
  content: "";
  position: absolute;
  inset: auto -30% -20% -30%;
  height: 220px;
  background: radial-gradient(circle, rgba(50, 229, 143, 0.2), transparent 70%);
}

.screen-pill {
  width: fit-content;
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(50, 229, 143, 0.12);
  color: #c5ffdc;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.screen h3 {
  margin-top: 26px;
  font-size: 2.15rem;
  letter-spacing: -0.06em;
  line-height: 1.05;
}

.app-grid {
  margin-top: 34px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.app-card {
  min-height: 118px;
  padding: 18px;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  font-weight: 900;
  line-height: 1.1;
  position: relative;
  overflow: hidden;
}

.app-card::before {
  content: "";
  position: absolute;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  top: -30px;
  right: -30px;
  background: rgba(255, 255, 255, 0.25);
}

.app-card span {
  opacity: 0.82;
}

.canva {
  background: linear-gradient(135deg, #00d4ff, #7c3cff);
}

.capcut {
  background: linear-gradient(135deg, #ffffff, #bec9d6);
  color: #06111f;
}

.chatgpt {
  background: linear-gradient(135deg, #2ee69a, #0b8f66);
  color: #03110a;
}

.grok {
  background: linear-gradient(135deg, #ffbc6b, #ff5d8f);
}

.mini-dashboard {
  margin-top: 26px;
  display: grid;
  gap: 14px;
}

.mini-dashboard div {
  padding: 18px;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.08);
}

.mini-dashboard span {
  display: block;
  color: var(--muted);
  font-size: 0.8rem;
}

.mini-dashboard strong {
  display: block;
  margin-top: 6px;
  font-size: 1rem;
}

.floating-badge {
  position: absolute;
  padding: 13px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
  font-weight: 900;
  animation: float 4s ease-in-out infinite;
}

.badge-one {
  top: 15%;
  left: 5%;
}

.badge-two {
  right: 0;
  bottom: 20%;
  animation-delay: 1s;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

.ticker {
  border-block: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.05);
  overflow: hidden;
  padding: 18px 0;
}

.ticker-track {
  display: flex;
  width: max-content;
  gap: 36px;
  animation: ticker 22s linear infinite;
}

.ticker span {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

@keyframes ticker {
  to { transform: translateX(-50%); }
}

.section-heading {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 54px;
}

.section-heading h2,
.why h2,
.offer h2,
.contact-strip h2 {
  margin-top: 18px;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
  letter-spacing: -0.065em;
}

.section-heading p,
.why p,
.offer p,
.contact-strip p {
  margin-top: 18px;
  color: var(--muted);
  line-height: 1.8;
  font-size: 1rem;
}

.intro-grid,
.product-grid,
.testimonial-grid {
  display: grid;
  gap: 22px;
}

.intro-grid {
  grid-template-columns: repeat(3, 1fr);
}

.glass-card,
.product-card,
.testimonial,
.step,
.trust-panel,
.offer-card,
.faq-list,
.contact-strip {
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(255,255,255,0.1), rgba(255,255,255,0.045));
  border-radius: 30px;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.18);
}

.glass-card {
  padding: 34px;
}

.icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: rgba(50, 229, 143, 0.14);
  color: var(--primary);
  font-size: 1.4rem;
}

.glass-card h3,
.product-card h3,
.step h3 {
  margin-top: 22px;
  font-size: 1.34rem;
  letter-spacing: -0.03em;
}

.glass-card p,
.product-card p,
.step p,
.testimonial p {
  margin-top: 14px;
  color: var(--muted);
  line-height: 1.75;
}

.product-grid {
  grid-template-columns: repeat(3, 1fr);
}

.product-card {
  padding: 30px;
  position: relative;
  overflow: hidden;
  transition: 0.25s ease;
}

.product-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(50, 229, 143, 0.1), transparent 15rem);
  opacity: 0;
  transition: 0.25s ease;
}

.product-card:hover {
  transform: translateY(-8px);
  border-color: rgba(50, 229, 143, 0.35);
}

.product-card:hover::before {
  opacity: 1;
}

.product-icon {
  width: 58px;
  height: 58px;
  border-radius: 20px;
  display: grid;
  place-items: center;
  color: white;
  font-weight: 900;
  position: relative;
  z-index: 1;
}

.canva-bg { background: linear-gradient(135deg, #00d4ff, #7c3cff); }
.capcut-bg { background: linear-gradient(135deg, #ffffff, #b9c4d0); color: #06111f; }
.ai-bg { background: linear-gradient(135deg, #2ee69a, #0b8f66); color: #03110a; }
.grok-bg { background: linear-gradient(135deg, #ffbc6b, #ff5d8f); }
.veo-bg { background: linear-gradient(135deg, #59a8ff, #a779ff); }
.bundle-bg { background: linear-gradient(135deg, #32e58f, #59a8ff); color: #03110a; }

.product-card ul {
  margin: 20px 0 24px;
  display: grid;
  gap: 10px;
  list-style: none;
  color: #dce8f5;
  position: relative;
  z-index: 1;
}

.product-card li {
  padding-left: 22px;
  position: relative;
}

.product-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 900;
}

.product-card a {
  position: relative;
  z-index: 1;
  color: #081323;
  background: var(--primary);
  display: inline-flex;
  padding: 13px 16px;
  border-radius: 999px;
  font-weight: 900;
}

.highlight-card {
  background: linear-gradient(145deg, rgba(50, 229, 143, 0.14), rgba(255,255,255,0.045));
}

.why {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 34px;
  align-items: center;
}

.check-list {
  margin-top: 30px;
  display: grid;
  gap: 14px;
}

.check-list div {
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255,255,255,0.055);
  color: #dce8f5;
  font-weight: 700;
}

.check-list span {
  color: var(--primary);
  font-weight: 900;
  margin-right: 8px;
}

.trust-panel {
  padding: 34px;
}

.trust-top {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 30px;
}

.trust-top strong {
  font-size: 1.35rem;
}

.trust-top span {
  color: var(--muted);
}

.progress-block {
  margin-top: 24px;
}

.progress-label {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  color: var(--muted);
}

.progress-label strong {
  color: var(--text);
}

.progress {
  height: 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.11);
  overflow: hidden;
}

.progress span {
  display: block;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--primary), var(--blue));
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.step {
  padding: 28px;
}

.step span {
  color: var(--primary);
  font-size: 2.2rem;
  font-weight: 900;
  letter-spacing: -0.06em;
}

.offer-card {
  padding: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  background:
    radial-gradient(circle at top right, rgba(50, 229, 143, 0.2), transparent 26rem),
    linear-gradient(145deg, rgba(255,255,255,0.12), rgba(255,255,255,0.05));
}

.testimonial-grid {
  grid-template-columns: repeat(3, 1fr);
}

.testimonial {
  padding: 30px;
}

.testimonial strong {
  display: block;
  margin-top: 22px;
}

.faq-list {
  max-width: 850px;
  margin: 0 auto;
  padding: 18px;
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item:last-child {
  border-bottom: 0;
}

.faq-item button {
  width: 100%;
  padding: 22px 6px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border: 0;
  background: transparent;
  color: white;
  cursor: pointer;
  font: inherit;
  font-weight: 900;
  text-align: left;
}

.faq-item button span {
  color: var(--primary);
  font-size: 1.4rem;
}

.faq-answer {
  display: none;
  padding: 0 6px 22px;
  color: var(--muted);
  line-height: 1.75;
}

.faq-item.active .faq-answer {
  display: block;
}

.contact-strip {
  width: min(1180px, calc(100% - 32px));
  margin: 10px auto 90px;
  padding: 42px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
}

.footer {
  border-top: 1px solid var(--line);
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 48px 0;
  display: grid;
  grid-template-columns: 1.5fr 0.7fr 0.9fr;
  gap: 28px;
}

.footer p {
  color: var(--muted);
  max-width: 460px;
  margin-top: 18px;
  line-height: 1.75;
}

.footer h4 {
  margin-bottom: 16px;
}

.footer a:not(.brand) {
  display: block;
  color: var(--muted);
  margin-top: 12px;
  transition: 0.25s ease;
}

.footer a:not(.brand):hover {
  color: var(--text);
}

.floating-whatsapp {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 60;
  padding: 15px 20px;
  border-radius: 999px;
  background: #25d366;
  color: #03110a;
  font-weight: 900;
  box-shadow: 0 16px 40px rgba(37, 211, 102, 0.28);
  animation: pulse 2.4s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.34); }
  70% { box-shadow: 0 0 0 16px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: 0.8s ease;
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: 0.12s; }
.delay-2 { transition-delay: 0.24s; }
.delay-3 { transition-delay: 0.36s; }

@media (max-width: 980px) {
  .menu-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    left: 16px;
    right: 16px;
    top: 92px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(7, 17, 31, 0.96);
    box-shadow: var(--shadow);
  }

  .nav-links.open {
    display: flex;
  }

  .hero,
  .why {
    grid-template-columns: 1fr;
  }

  .hero {
    gap: 30px;
    padding-top: 50px;
  }

  .phone-mockup {
    transform: none;
  }

  .intro-grid,
  .product-grid,
  .testimonial-grid,
  .steps,
  .footer {
    grid-template-columns: 1fr 1fr;
  }

  .offer-card,
  .contact-strip {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 72px 0;
  }

  .nav {
    height: 74px;
  }

  .brand strong {
    font-size: 0.92rem;
  }

  .brand small {
    font-size: 0.7rem;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
    border-radius: 14px;
  }

  .hero {
    min-height: auto;
  }

  .hero h1 {
    font-size: 3.1rem;
  }

  .hero-stats,
  .intro-grid,
  .product-grid,
  .testimonial-grid,
  .steps,
  .footer {
    grid-template-columns: 1fr;
  }

  .screen {
    min-height: 520px;
    padding: 22px;
  }

  .screen h3 {
    font-size: 1.75rem;
  }

  .app-card {
    min-height: 96px;
    border-radius: 20px;
    padding: 14px;
  }

  .floating-badge {
    display: none;
  }

  .offer-card,
  .contact-strip {
    padding: 28px;
  }

  .floating-whatsapp {
    right: 16px;
    bottom: 16px;
  }
}
