:root {
  --bg: #04060b;
  --card: rgba(8, 10, 18, 0.92);
  --text: #f4f7ff;
  --muted: #9ba5ba;
  --line: rgba(255,255,255,0.08);
  --primary: #6c63ff;
  --primary2: #8f89ff;
  --glow: rgba(108, 99, 255, 0.28);
  --success: #25d366;
  --radius: 28px;
  --shadow: 0 20px 60px rgba(0,0,0,0.35);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  position: relative;
}

a {
  text-decoration: none;
  color: inherit;
}

.grid-overlay {
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 34px 34px;
  z-index: -3;
  mask-image: radial-gradient(circle at center, black 35%, transparent 95%);
}

.bg-glow {
  position: fixed;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  filter: blur(120px);
  z-index: -2;
  opacity: 0.45;
}

.bg-glow-1 {
  background: #625bff;
  top: -100px;
  left: -100px;
}

.bg-glow-2 {
  background: #1b244f;
  right: -120px;
  top: 260px;
}

.section {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.header {
  width: min(1120px, 92%);
  margin: 0 auto;
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 999;
  backdrop-filter: blur(18px);
  background: rgba(4,6,11,0.58);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.logo {
  font-size: 1.2rem;
  font-weight: 900;
  letter-spacing: -0.5px;
}

.logo span {
  color: var(--primary2);
}

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav a {
  color: var(--muted);
  transition: 0.3s ease;
}

.nav a:hover {
  color: white;
}

.nav-btn {
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--line);
}

.menu-btn {
  display: none;
  background: transparent;
  color: white;
  border: none;
  font-size: 1.6rem;
  cursor: pointer;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 16px;
  width: min(1120px, 92%);
  margin: 0 auto 16px;
  padding: 16px;
  background: rgba(11, 14, 22, 0.88);
  border: 1px solid var(--line);
  border-radius: 20px;
  backdrop-filter: blur(18px);
}

.hero {
  min-height: 92vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  padding: 90px 0 30px;
}

.hero-badge {
  display: inline-flex;
  margin: 0 auto 20px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.04);
  color: #d8dcff;
  font-size: 0.92rem;
  backdrop-filter: blur(12px);
}

.hero h1 {
  font-size: clamp(2.8rem, 6vw, 5.3rem);
  line-height: 1.03;
  letter-spacing: -2px;
  max-width: 920px;
  margin: 0 auto 20px;
}

.hero h1 span {
  background: linear-gradient(90deg, #ffffff, #8f89ff, #6c63ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero p {
  max-width: 760px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.8;
}

.hero-buttons,
.cta-buttons,
.founder-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.btn {
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 600;
  transition: 0.35s ease;
  border: 1px solid transparent;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary2));
  color: white;
  box-shadow: 0 12px 30px var(--glow);
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
}

.btn-secondary {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line);
  color: white;
}

.btn-secondary:hover {
  transform: translateY(-3px);
  border-color: rgba(255,255,255,0.18);
}

.full-btn {
  width: 100%;
  margin-top: 24px;
}

.hero-stats {
  margin-top: 42px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.stat-card,
.service-card,
.timeline-card,
.pricing-card,
.founder-card,
.cta-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.stat-card {
  padding: 24px;
}

.stat-card h3 {
  font-size: 1.35rem;
  margin-bottom: 10px;
}

.stat-card p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

.section-heading {
  text-align: center;
  padding: 90px 0 24px;
}

.section-heading h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  letter-spacing: -1px;
  margin-bottom: 14px;
}

.section-heading p {
  max-width: 760px;
  margin: 0 auto;
  color: var(--muted);
  line-height: 1.8;
}

.cards-section,
.timeline,
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 26px 0 20px;
}

.service-card,
.timeline-card,
.pricing-card {
  padding: 30px;
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.service-card:hover,
.timeline-card:hover,
.pricing-card:hover,
.founder-card:hover,
.cta-card:hover {
  transform: translateY(-6px);
  border-color: rgba(108, 99, 255, 0.4);
  box-shadow: 0 20px 50px rgba(108, 99, 255, 0.12);
}

.icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: rgba(108,99,255,0.12);
  border: 1px solid rgba(108,99,255,0.25);
  margin-bottom: 18px;
  font-size: 1.25rem;
}

.service-card h3,
.timeline-card h3,
.pricing-card h3 {
  margin-bottom: 12px;
  font-size: 1.18rem;
}

.service-card p,
.timeline-card p,
.pricing-desc,
.founder-card p,
.cta-card p {
  color: var(--muted);
  line-height: 1.8;
  font-size: 0.97rem;
}

.service-card a {
  display: inline-block;
  margin-top: 18px;
  color: #b7b1ff;
  font-weight: 600;
}

.timeline-card {
  position: relative;
  min-height: 220px;
}

.timeline-card span {
  position: absolute;
  top: 22px;
  right: 22px;
  font-size: 2.4rem;
  font-weight: 800;
  color: rgba(255,255,255,0.08);
}

.price {
  font-size: 3rem;
  font-weight: 800;
  margin: 14px 0 16px;
}

.price span {
  font-size: 0.95rem;
  color: var(--muted);
  font-weight: 500;
  margin-left: 4px;
}

.pricing-desc {
  margin-bottom: 28px;
}

.pricing-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  color: #d7ddf0;
  line-height: 1.7;
}

.pricing-card ul li {
  position: relative;
  padding-left: 28px;
}

.pricing-card ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #8f89ff;
  font-weight: 800;
}

.featured {
  position: relative;
  border: 1px solid rgba(108,99,255,0.45);
  box-shadow: 0 20px 60px rgba(108,99,255,0.18);
}

.popular-badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--primary), var(--primary2));
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.5px;
}

.small-tag {
  color: #a79fff;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  margin-bottom: 10px;
}

.cta,
.founder {
  padding: 90px 0 20px;
}

.founder-card,
.cta-card {
  padding: 42px;
  text-align: center;
}

.founder-card h2,
.cta-card h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 16px;
}

.footer {
  width: min(1120px, 92%);
  margin: 80px auto 30px;
  padding: 28px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer p,
.footer a {
  color: var(--muted);
  margin-top: 10px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: var(--success);
  color: white;
  display: grid;
  place-items: center;
  box-shadow: 0 16px 35px rgba(37, 211, 102, 0.35);
  z-index: 1000;
  animation: pulse 2.2s infinite;
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.08); }
  100% { transform: scale(1); }
}

@media (max-width: 980px) {
  .cards-section,
  .timeline,
  .pricing-grid,
  .hero-stats {
    grid-template-columns: 1fr 1fr;
  }

  .nav {
    display: none;
  }

  .menu-btn {
    display: block;
  }
}

@media (max-width: 640px) {
  .hero {
    min-height: auto;
    padding-top: 60px;
  }

  .hero h1 {
    font-size: 2.45rem;
    letter-spacing: -1.5px;
  }

  .hero p,
  .section-heading p {
    font-size: 0.97rem;
  }

  .cards-section,
  .timeline,
  .pricing-grid,
  .hero-stats {
    grid-template-columns: 1fr;
  }

  .service-card,
  .timeline-card,
  .pricing-card,
  .founder-card,
  .cta-card,
  .stat-card {
    padding: 22px;
  }

  .section-heading {
    padding-top: 70px;
  }

  .price {
    font-size: 2.5rem;
  }

  .whatsapp-float {
    width: 56px;
    height: 56px;
    right: 18px;
    bottom: 18px;
  }
}
