:root {
  --bg: #100816;
  --bg-soft: #181020;
  --bg-card: rgba(255, 255, 255, 0.08);
  --white: #ffffff;
  --text: #efe8f7;
  --muted: #b8a9c7;
  --pink: #ff3f8e;
  --pink-dark: #d82670;
  --purple: #7d3cff;
  --orange: #ff9d42;
  --green: #25d366;
  --border: rgba(255, 255, 255, 0.13);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.32);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --container: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 20% 10%, rgba(255, 63, 142, 0.22), transparent 32%),
    radial-gradient(circle at 90% 20%, rgba(125, 60, 255, 0.2), transparent 34%),
    linear-gradient(180deg, #100816 0%, #150b20 45%, #0d0712 100%);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}

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

img {
  max-width: 100%;
}

.container {
  width: min(var(--container), calc(100% - 36px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(20px);
  background: rgba(16, 8, 22, 0.78);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.logo-icon {
  width: 44px;
  height: 44px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--pink), var(--purple));
  color: var(--white);
  box-shadow: 0 16px 34px rgba(255, 63, 142, 0.28);
}

.logo-text {
  font-size: 25px;
  color: var(--white);
}

.logo-text span {
  color: var(--pink);
}

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

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

.main-nav a:hover {
  color: var(--white);
}

.header-btn,
.btn,
.form-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 800;
  border: 1px solid transparent;
  transition: 0.25s ease;
  cursor: pointer;
}

.header-btn {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border-color: var(--border);
}

.header-btn:hover {
  background: var(--white);
  color: #17101e;
  transform: translateY(-2px);
}

.mobile-menu-btn {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  cursor: pointer;
}

.mobile-menu-btn span {
  display: block;
  width: 21px;
  height: 2px;
  background: var(--white);
  margin: 5px auto;
  transition: 0.25s ease;
}

.hero {
  position: relative;
  padding: 96px 0 70px;
  min-height: 760px;
  overflow: hidden;
}

.hero-bg-glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(14px);
  opacity: 0.6;
  pointer-events: none;
}

.glow-one {
  width: 390px;
  height: 390px;
  background: rgba(255, 63, 142, 0.22);
  top: 120px;
  left: -120px;
}

.glow-two {
  width: 460px;
  height: 460px;
  background: rgba(125, 60, 255, 0.18);
  right: -170px;
  top: 90px;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 60px;
  align-items: center;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #ffd0e2;
  background: rgba(255, 63, 142, 0.12);
  border: 1px solid rgba(255, 63, 142, 0.22);
  border-radius: 999px;
  padding: 9px 15px;
  font-size: 14px;
  font-weight: 800;
}

.eyebrow span {
  width: 9px;
  height: 9px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 0 8px rgba(37, 211, 102, 0.12);
}

.hero h1 {
  margin-top: 24px;
  max-width: 760px;
  font-size: clamp(42px, 6vw, 76px);
  line-height: 0.98;
  letter-spacing: -0.07em;
  color: var(--white);
}

.hero-text {
  max-width: 650px;
  margin-top: 26px;
  color: var(--muted);
  font-size: 19px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--pink), var(--purple));
  color: var(--white);
  box-shadow: 0 22px 50px rgba(255, 63, 142, 0.26);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 28px 70px rgba(255, 63, 142, 0.34);
}

.btn-secondary {
  color: var(--white);
  border-color: var(--border);
  background: rgba(255, 255, 255, 0.08);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-3px);
}

.btn-dark {
  background: #111;
  color: var(--white);
}

.btn-dark:hover {
  transform: translateY(-3px);
  background: #000;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 620px;
  margin-top: 42px;
}

.trust-row div {
  padding: 18px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid var(--border);
}

.trust-row strong {
  display: block;
  color: var(--white);
  font-size: 21px;
  line-height: 1.1;
}

.trust-row span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  margin-top: 5px;
}

.hero-card {
  position: relative;
}

.application-card {
  position: relative;
  padding: 34px;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.07));
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  backdrop-filter: blur(24px);
}

.card-badge {
  display: inline-flex;
  color: #ffe8f2;
  background: rgba(255, 63, 142, 0.18);
  border: 1px solid rgba(255, 63, 142, 0.24);
  border-radius: 999px;
  padding: 8px 13px;
  font-size: 13px;
  font-weight: 800;
}

.application-card h2 {
  margin-top: 20px;
  font-size: 34px;
  line-height: 1.1;
  letter-spacing: -0.04em;
  color: var(--white);
}

.application-card p {
  margin-top: 12px;
  color: var(--muted);
}

.application-card form {
  margin-top: 24px;
}

.application-card label {
  display: block;
  margin: 16px 0 8px;
  color: var(--white);
  font-weight: 800;
  font-size: 14px;
}

.application-card input {
  width: 100%;
  height: 54px;
  border-radius: 17px;
  border: 1px solid var(--border);
  background: rgba(10, 6, 15, 0.6);
  color: var(--white);
  outline: none;
  padding: 0 16px;
  font-size: 15px;
}

.application-card input::placeholder {
  color: rgba(255, 255, 255, 0.42);
}

.form-submit {
  width: 100%;
  margin-top: 20px;
  background: linear-gradient(135deg, var(--green), #12a94c);
  color: var(--white);
}

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

.mini-note {
  margin-top: 18px;
  padding: 15px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.07);
  color: var(--muted);
  font-size: 14px;
}

.floating-stat {
  position: absolute;
  min-width: 164px;
  padding: 16px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.92);
  color: #1a101d;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

.floating-stat strong {
  display: block;
  font-size: 24px;
  line-height: 1;
}

.floating-stat span {
  font-size: 13px;
  color: #725c7a;
  font-weight: 700;
}

.stat-a {
  left: -30px;
  bottom: -34px;
}

.stat-b {
  right: -28px;
  top: -28px;
}

.stats-section {
  padding: 0 0 72px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.stat-box {
  display: flex;
  align-items: center;
  gap: 17px;
  padding: 26px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border);
}

.stat-icon {
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--pink), var(--purple));
  color: var(--white);
  font-size: 23px;
  font-weight: 900;
}

.stat-box strong {
  display: block;
  color: var(--white);
  font-size: 30px;
  line-height: 1;
}

.stat-box span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 14px;
}

.section {
  padding: 92px 0;
}

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

.section-heading span {
  display: inline-flex;
  color: var(--pink);
  font-weight: 900;
  margin-bottom: 14px;
}

.section-heading h2,
.about-content h2,
.content-box h2,
.final-cta h2 {
  color: var(--white);
  font-size: clamp(32px, 4vw, 50px);
  line-height: 1.08;
  letter-spacing: -0.055em;
}

.section-heading p {
  margin-top: 15px;
  color: var(--muted);
  font-size: 17px;
}

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

.feature-card,
.step-card,
.testimonial-card,
.content-box,
.faq-list details {
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.07);
  border-radius: var(--radius-lg);
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.16);
}

.feature-card {
  padding: 28px;
  transition: 0.25s ease;
}

.feature-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.1);
}

.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: rgba(255, 63, 142, 0.13);
  color: var(--pink);
  font-weight: 900;
}

.feature-card h3,
.step-card h3 {
  margin-top: 20px;
  color: var(--white);
  font-size: 21px;
  line-height: 1.2;
}

.feature-card p,
.step-card p,
.testimonial-card p,
.content-box p,
.about-content p,
.faq-list p {
  margin-top: 14px;
  color: var(--muted);
}

.steps-section {
  position: relative;
  background:
    linear-gradient(135deg, rgba(255, 63, 142, 0.14), rgba(125, 60, 255, 0.15)),
    rgba(255, 255, 255, 0.02);
}

.light span,
.light h2,
.light p {
  color: var(--white);
}

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

.step-card {
  padding: 32px;
  background: rgba(255, 255, 255, 0.1);
}

.step-number {
  width: 56px;
  height: 56px;
  border-radius: 20px;
  display: grid;
  place-items: center;
  background: var(--white);
  color: var(--pink);
  font-size: 25px;
  font-weight: 950;
}

.center-action {
  margin-top: 36px;
  text-align: center;
}

.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 58px;
  align-items: center;
}

.image-panel {
  min-height: 560px;
  border-radius: 44px;
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 63, 142, 0.32), transparent 30%),
    radial-gradient(circle at 90% 70%, rgba(125, 60, 255, 0.28), transparent 34%),
    rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
  box-shadow: var(--shadow);
}

.phone-mockup {
  width: 280px;
  min-height: 470px;
  border-radius: 38px;
  padding: 24px;
  background: #1a0e24;
  border: 10px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.42);
}

.phone-top {
  width: 90px;
  height: 6px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.25);
  margin: 0 auto 28px;
}

.live-card {
  padding: 22px;
  border-radius: 26px;
  background: linear-gradient(135deg, var(--pink), var(--purple));
}

.live-card span {
  display: block;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
}

.live-card strong {
  display: block;
  font-size: 34px;
  color: var(--white);
  line-height: 1;
  margin-top: 8px;
}

.chat-line {
  height: 14px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.11);
  margin-top: 18px;
}

.chat-line.short {
  width: 75%;
}

.chat-line.small {
  width: 55%;
}

.income-box {
  margin-top: 34px;
  padding: 18px;
  border-radius: 23px;
  background: rgba(255, 255, 255, 0.09);
}

.income-box span {
  color: var(--muted);
  font-size: 13px;
}

.income-box strong {
  display: block;
  color: var(--white);
  margin-top: 6px;
  line-height: 1.25;
}

.about-content h2 {
  margin-top: 20px;
}

.about-content p {
  font-size: 17px;
}

.check-list {
  list-style: none;
  margin-top: 24px;
  display: grid;
  gap: 13px;
}

.check-list li {
  position: relative;
  padding-left: 34px;
  color: var(--text);
  font-weight: 700;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 23px;
  height: 23px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(37, 211, 102, 0.18);
  color: var(--green);
  font-size: 13px;
}

.content-section {
  padding-top: 20px;
}

.content-box {
  padding: 44px;
  background:
    linear-gradient(135deg, rgba(255, 63, 142, 0.1), rgba(125, 60, 255, 0.08)),
    rgba(255, 255, 255, 0.06);
}

.content-box h2 {
  margin-top: 18px;
  max-width: 920px;
}

.content-box p {
  font-size: 17px;
}

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

.testimonial-card {
  padding: 30px;
}

.testimonial-card p {
  font-size: 17px;
}

.testimonial-card strong {
  display: block;
  color: var(--white);
  margin-top: 24px;
}

.testimonial-card span {
  color: var(--pink);
  font-size: 14px;
  font-weight: 800;
}

.faq-section {
  padding-top: 40px;
}

.faq-list {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  gap: 15px;
}

.faq-list details {
  padding: 0;
  overflow: hidden;
}

.faq-list summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 26px;
  color: var(--white);
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255, 63, 142, 0.16);
  display: grid;
  place-items: center;
  color: var(--pink);
  font-size: 20px;
  flex: 0 0 30px;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list p {
  padding: 0 26px 24px;
  margin-top: 0;
}

.final-cta {
  padding: 80px 0;
}

.final-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 44px;
  border-radius: 34px;
  background:
    radial-gradient(circle at 15% 30%, rgba(255, 255, 255, 0.22), transparent 20%),
    linear-gradient(135deg, var(--pink), var(--purple));
  box-shadow: 0 30px 90px rgba(255, 63, 142, 0.28);
}

.final-cta span {
  display: block;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 8px;
}

.final-cta h2 {
  max-width: 760px;
}

.final-cta p {
  max-width: 760px;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.82);
}

.site-footer {
  padding: 70px 0 30px;
  background: rgba(0, 0, 0, 0.24);
  border-top: 1px solid var(--border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.7fr 0.8fr;
  gap: 36px;
}

.footer-logo {
  margin-bottom: 18px;
}

.site-footer p {
  color: var(--muted);
  max-width: 560px;
}

.site-footer h3 {
  color: var(--white);
  margin-bottom: 18px;
}

.site-footer a:not(.logo) {
  display: block;
  color: var(--muted);
  margin-bottom: 10px;
  transition: 0.25s ease;
}

.site-footer a:not(.logo):hover {
  color: var(--white);
}

.footer-bottom {
  margin-top: 44px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: var(--muted);
  font-size: 14px;
}

.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--green);
  color: var(--white);
  font-size: 28px;
  font-weight: 900;
  box-shadow: 0 20px 50px rgba(37, 211, 102, 0.35);
  z-index: 80;
  transition: 0.25s ease;
}

.whatsapp-float:hover {
  transform: translateY(-5px) scale(1.04);
}

@media (max-width: 1060px) {
  .header-btn {
    display: none;
  }

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

  .hero {
    padding-top: 70px;
  }

  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonial-grid,
  .steps-grid,
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .stat-a,
  .stat-b {
    display: none;
  }
}

@media (max-width: 780px) {
  .mobile-menu-btn {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: 82px;
    left: 18px;
    right: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 14px;
    background: rgba(22, 12, 32, 0.96);
    border: 1px solid var(--border);
    border-radius: 22px;
    box-shadow: var(--shadow);
  }

  .main-nav.active {
    display: flex;
  }

  .main-nav a {
    padding: 13px 14px;
    border-radius: 14px;
  }

  .main-nav a:hover {
    background: rgba(255, 255, 255, 0.08);
  }

  .hero {
    min-height: auto;
    padding: 58px 0 50px;
  }

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

  .hero-text {
    font-size: 16px;
  }

  .trust-row {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn,
  .header-btn {
    width: 100%;
  }

  .application-card {
    padding: 24px;
  }

  .application-card h2 {
    font-size: 28px;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 64px 0;
  }

  .section-heading {
    text-align: left;
  }

  .section-heading h2,
  .about-content h2,
  .content-box h2,
  .final-cta h2 {
    font-size: 33px;
  }

  .image-panel {
    min-height: 460px;
  }

  .phone-mockup {
    width: 245px;
    min-height: 420px;
  }

  .content-box {
    padding: 28px;
  }

  .final-cta-inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 30px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .whatsapp-float {
    width: 56px;
    height: 56px;
    right: 18px;
    bottom: 18px;
  }
}

@media (max-width: 460px) {
  .container {
    width: min(100% - 24px, var(--container));
  }

  .logo-text {
    font-size: 21px;
  }

  .logo-icon {
    width: 40px;
    height: 40px;
  }

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

  .stats-section {
    padding-bottom: 44px;
  }

  .stat-box {
    padding: 20px;
  }

  .faq-list summary {
    padding: 18px;
    gap: 16px;
  }

  .faq-list p {
    padding: 0 18px 20px;
  }
}