:root {
  --bg: #f7f8fb;
  --bg-soft: #f0f4ff;
  --card: rgba(255, 255, 255, 0.75);
  --glass-border: rgba(255, 255, 255, 0.35);
  --text: #111827;
  --muted: #4b5563;
  --primary: #2563eb;
  --accent: #06b6d4;
  --dark: #0f172a;
  --gradient: linear-gradient(120deg, #2563eb 0%, #06b6d4 100%);
  --shadow: 0 24px 60px rgba(15, 23, 42, 0.12);
  --radius: 18px;
  --container: 1100px;
}

html {
  overflow-x: hidden;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top right, #e9f4ff 0%, #f7f8fb 55%, #fefeff 100%),
    url("images/background-grid.svg");
  background-size: auto, 680px;
  background-repeat: no-repeat, repeat;
  background-position: top right, center;
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.section {
  padding: 80px 20px;
  max-width: 100%;
}

.section.soft {
  background: var(--bg-soft);
}

.section-head {
  max-width: 720px;
  margin: 0 auto 40px;
  text-align: center;
}

.section-head h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 12px;
}

.section-head p {
  color: var(--muted);
  margin-bottom: 20px;
}

.hero {
  padding: 30px 20px 90px;
  max-width: 100%;
  background: linear-gradient(140deg, rgba(37, 99, 235, 0.08), rgba(6, 182, 212, 0.08));
}

.nav {
  max-width: var(--container);
  margin: 0 auto 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo {
  font-weight: 800;
  font-size: 1.2rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.logo-mark {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 10px 20px rgba(37, 99, 235, 0.2);
  display: inline-block;
}

.nav-links {
  display: flex;
  gap: 20px;
  color: var(--muted);
}

.nav-links a {
  position: relative;
  padding-bottom: 6px;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.2s ease;
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  width: 100%;
}

.hero-grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  gap: 40px;
  align-items: center;
}

.hero-copy.glass {
  border-radius: calc(var(--radius) + 6px);
  padding: 28px;
  width: 100%;
  justify-self: stretch;
}

.hero-copy h1 {
  font-size: clamp(2.4rem, 4vw, 4.4rem);
  border-radius: clamp(20px, 4vw, 50px);
  padding: clamp(16px, 3vw, 30px);
  margin-bottom: 16px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.subhead {
  font-size: 1.05rem;
  color: var(--muted);
  margin-bottom: 24px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 20px;
}

.trust-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.trust-pills span {
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.1);
  color: var(--primary);
  font-size: 0.85rem;
}

.hero-visual {
  position: relative;
  display: grid;
  place-items: center;
}

.hero-visual img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-visual .floating {
  position: absolute;
  width: clamp(96px, 25vw, 140px);
  right: 10px;
  bottom: 10px;
  border-radius: 16px;
  background: white;
  padding: 10px;
}

.trust-bar {
  max-width: var(--container);
  margin: -40px auto 40px;
  padding: 20px;
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
}

.icon {
  font-size: 1.2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.icon svg {
  width: 22px;
  height: 22px;
}

.card-grid,
.benefits,
.steps,
.pricing-grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  gap: 20px;
}

.card,
.benefit,
.step,
.price-card {
  padding: 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.card h3,
.step h3,
.price-card h3 {
  margin: 12px 0 8px;
}

.card p,
.step p,
.benefit p {
  color: var(--muted);
}

.table-wrap {
  max-width: var(--container);
  width: 100%;
  margin: 0 auto;
  padding: 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  box-sizing: border-box;
}

table {
  width: 100%;
  min-width: 600px;
  border-collapse: collapse;
  font-size: 0.95rem;
}

thead th {
  text-align: left;
  padding: 12px 10px;
  background: rgba(37, 99, 235, 0.08);
  border-radius: 10px;
}

tbody td {
  padding: 12px 10px;
  border-bottom: 1px solid rgba(148, 163, 184, 0.2);
  overflow-wrap: anywhere;
}

.blurred {
  filter: blur(3px);
}

.table-note {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.9rem;
}

.price-card {
  position: relative;
  text-align: center;
}

.price {
  font-size: 2rem;
  font-weight: 800;
  margin: 12px 0;
}

.lead-count {
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
}

.price-card ul {
  list-style: none;
  color: var(--muted);
  margin-bottom: 20px;
}

.price-card li {
  margin: 8px 0;
}

.price-card.highlight {
  border: 2px solid rgba(37, 99, 235, 0.4);
  transform: translateY(-6px);
}

.badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient);
  color: white;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
}

.about-visual {
  max-width: 600px;
  margin: 0 auto;
}

.final-cta {
  background: var(--gradient);
  color: white;
}

.cta-inner {
  max-width: var(--container);
  margin: 0 auto;
  text-align: center;
}

.footer {
  padding: 40px 20px;
  background: #0b1224;
  color: #e2e8f0;
}

.footer-top {
  max-width: var(--container);
  margin: 0 auto 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
}

.footer-partner {
  max-width: 320px;
  display: grid;
  gap: 10px;
  text-align: right;
}

.partner-brand {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  font-weight: 700;
}

.partner-brand img {
  width: 34px;
  height: 34px;
  object-fit: contain;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  padding: 4px;
}

.footer-note {
  max-width: var(--container);
  margin: 0 auto 12px;
  text-align: center;
  color: #cbd5f5;
  font-size: 0.95rem;
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.footer a {
  color: #e2e8f0;
}

.footer-chat {
  display: inline-flex;
  align-items: center;
  margin-top: 8px;
  font-weight: 600;
  color: #a5f3fc;
}

.footer-chat:hover {
  color: #e0f2fe;
}

.copyright {
  text-align: center;
  font-size: 0.85rem;
  color: #94a3b8;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(37, 99, 235, 0.2);
}

.btn-primary {
  background: var(--gradient);
  color: white;
}

.btn-ghost {
  border-color: rgba(37, 99, 235, 0.4);
  color: var(--primary);
  background: transparent;
}

.btn-dark {
  background: var(--dark);
  color: white;
}

.glass {
  background: var(--card);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(14px);
}

.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: #25d366;
  color: white;
  padding: 14px 20px;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
  z-index: 1000;
}

@media (min-width: 900px) {
  .hero-grid {
    grid-template-columns: 1.3fr 0.7fr;
  }

  .card-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .steps {
    grid-template-columns: repeat(3, 1fr);
  }

  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .benefits {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 481px) and (max-width: 899px) {
  .card-grid,
  .benefits,
  .steps,
  .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-links {
    flex-wrap: wrap;
  }

  .hero-visual .floating {
    right: 10px;
    bottom: -10px;
  }

  .trust-bar {
    margin: 0 20px 40px;
  }

  .footer-partner {
    text-align: left;
  }

  .partner-brand {
    justify-content: flex-start;
  }
}

@media (max-width: 600px) {
  .section {
    padding: 60px 16px;
  }

  .hero {
    padding: 20px 16px 60px;
  }

  .btn {
    width: 100%;
  }

  .whatsapp-float {
    right: 16px;
    bottom: 16px;
  }

  .trust-bar {
    margin: 0 16px 32px;
  }
}

@media (max-width: 480px) {
  .hero-copy h1 {
    font-size: clamp(1.8rem, 8vw, 2.4rem);
  }

  .hero-visual .floating {
    display: none;
  }

  .table-wrap {
    padding: 16px;
  }
}
