:root {
  --bg: #05050c;
  --card: #111325;
  --text: #ffffff;
  --muted: #aab0c3;
  --primary: #3456d3;
  --border: rgba(255,255,255,0.08);
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: Inter, system-ui, sans-serif;
}

/* HERO */
.lp-hero {
  text-align: center;
  padding: 120px 8% 100px;
  max-width: 1000px;
  margin: auto;
}

.lp-badge {
  color: var(--primary);
  letter-spacing: 3px;
  font-size: 13px;
  font-weight: 600;
}

.lp-hero h1 {
  font-size: 56px;
  font-weight: 800;
  margin: 20px 0;
}

.lp-hero p {
  font-size: 18px;
  color: var(--muted);
  max-width: 700px;
  margin: auto;
}

/* FINAL CTA */
.lp-cta{
  margin-top:40px;
  display:flex;
  justify-content:center;
  gap:20px;
  flex-wrap:wrap;
}

.lp-final-cta {
  padding: 110px 8%;
  text-align: center;
  background: radial-gradient(circle at top, rgba(52,86,211,0.25), transparent 60%);
}

.lp-final-cta h2 {
  font-size: 40px;
  margin-bottom: 20px;
}

.lp-final-cta p {
  margin-bottom: 30px;
}

.lp-final-cta .btn-primary {
  display: inline-block;
  margin-top: 10px;
}

.btn-primary,
.btn-secondary{
  display:inline-block;
}


.btn-primary {
  background: var(--primary);
  padding: 16px 34px;
  border-radius: 14px;
  color: white;
  text-decoration: none;
  font-weight: 600;
}

.btn-secondary {
  border: 1px solid var(--border);
  padding: 16px 34px;
  border-radius: 14px;
  color: white;
  text-decoration: none;
}

/* STATS */
.lp-stats {
  margin-top: 50px;
  display: flex;
  justify-content: center;
  gap: 40px;
}

.lp-stats div {
  text-align: center;
}

.lp-stats strong {
  font-size: 28px;
  display: block;
}

/* SERVICES */
.lp-services {
  padding: 100px 8%;
  text-align: center;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(240px,1fr));
  gap: 28px;
  margin-top: 50px;
}

.service-card {
  background: var(--card);
  padding: 36px;
  border-radius: 22px;
  border: 1px solid var(--border);
}

/* PROCESS */
.lp-process {
  padding: 100px 8%;
  text-align: center;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(180px,1fr));
  gap: 22px;
  margin-top: 40px;
}

.process-grid div {
  background: var(--card);
  padding: 28px;
  border-radius: 18px;
  border: 1px solid var(--border);
  font-weight: 600;
}

.process-grid span {
  display: block;
  color: var(--primary);
  font-size: 26px;
}

/* PROOF */
.lp-proof {
  padding: 100px 8%;
  text-align: center;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(200px,1fr));
  gap: 20px;
  margin-top: 40px;
}

.client {
  background: var(--card);
  padding: 26px;
  border-radius: 16px;
  border: 1px solid var(--border);
}

/* FINAL CTA */
.lp-final-cta {
  padding: 110px 8%;
  text-align: center;
  background: radial-gradient(circle at top, rgba(52,86,211,0.25), transparent 60%);
}

.lp-final-cta h2 {
  font-size: 40px;
  margin-bottom: 20px;
}

.whatsapp-float {
  position: fixed;
  bottom: 20px;       /* distance from bottom */
  right: 20px;        /* distance from right */
  width: 60px;        /* icon size */
  height: 60px;
  z-index: 1000;      /* ensures it stays on top */
  cursor: pointer;
  transition: transform 0.3s;
}

.whatsapp-float:hover {
  transform: scale(1.1); /* slight hover effect */
}

.whatsapp-float img {
  width: 100%;
  height: 100%;
  display: block;
}