:root {
  --ld-bg-1: #f3efff;
  --ld-bg-2: #e5e9ff;
  --ld-bg-3: #d7ddfa;
  --ld-text: #282669;
  --ld-title: #2a1f73;
  --ld-card: rgba(255, 255, 255, 0.86);
  --ld-accent: #26b89c;
  --ld-accent-dark: #1f8f79;
  --ld-border: #d8ddf7;
  --ld-shadow: 0 22px 44px rgba(58, 63, 140, 0.12);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body.ld-body {
  font-family: "Manrope", sans-serif;
  color: var(--ld-text);
  background:
    radial-gradient(1200px 520px at -8% -18%, rgba(255, 255, 255, 0.9), transparent 65%),
    radial-gradient(900px 420px at 108% 12%, rgba(255, 255, 255, 0.68), transparent 58%),
    radial-gradient(1200px 400px at 50% 105%, rgba(255, 255, 255, 0.5), transparent 55%),
    linear-gradient(180deg, var(--ld-bg-1) 0%, var(--ld-bg-2) 45%, var(--ld-bg-3) 100%);
}

.ld-page {
  position: relative;
  isolation: isolate;
  overflow-x: hidden;
}

.ld-home-logo {
  position: fixed;
  top: 18px;
  left: 18px;
  z-index: 80;
  display: inline-flex;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(215, 223, 252, 0.95);
  border-radius: 14px;
  padding: 8px 10px;
  backdrop-filter: blur(8px);
  box-shadow: 0 12px 24px rgba(58, 63, 140, 0.14);
}

.ld-home-logo img {
  width: clamp(130px, 16vw, 210px);
  height: auto;
  display: block;
}

.ld-bg-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  /* opacity: 0.38; */
  z-index: -2;
  pointer-events: none;
  user-select: none;
}

.ld-page::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(245, 241, 255, 0.28) 0%, rgba(227, 233, 255, 0.42) 45%, rgba(216, 223, 250, 0.5) 100%);
}

.ld-page section {
  position: relative;
  padding: 66px 0;
}

.ld-hero {
  padding-top: 108px;
}

.ld-brand-logo {
  width: clamp(190px, 27vw, 330px);
  height: auto;
  display: block;
  margin-bottom: 14px;
  filter: drop-shadow(0 8px 20px rgba(64, 74, 145, 0.18));
}

.ld-kicker {
  font-weight: 800;
  letter-spacing: 0.01em;
  color: #4f5b9b;
  margin-bottom: 1rem;
}

.ld-title,
.ld-page h2,
.ld-page h3 {
  font-family: "Sora", sans-serif;
  color: var(--ld-title);
}

.ld-title {
  font-size: clamp(2.15rem, 4.4vw, 3.65rem);
  line-height: 1.1;
  margin-bottom: 0.85rem;
  max-width: 760px;
}

.ld-subtitle {
  font-size: clamp(1rem, 2.05vw, 1.38rem);
  line-height: 1.42;
  max-width: 690px;
  margin-bottom: 1.5rem;
}

.ld-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  text-decoration: none;
  color: #fff;
  background: linear-gradient(135deg, var(--ld-accent), var(--ld-accent-dark));
  font-weight: 800;
  font-size: 1.08rem;
  padding: 0.9rem 1.7rem;
  box-shadow: 0 10px 24px rgba(23, 165, 136, 0.28);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ld-btn span {
  opacity: 0.8;
  margin-left: 0.35rem;
  font-weight: 700;
}

.ld-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 26px rgba(23, 165, 136, 0.32);
  color: #fff;
}

.ld-note {
  color: #3d4478;
  font-weight: 700;
}

.ld-scheduler {
  background:
    radial-gradient(220px 120px at 98% 0%, rgba(111, 122, 228, 0.2), transparent 70%),
    radial-gradient(230px 120px at 3% 100%, rgba(25, 179, 148, 0.16), transparent 70%),
    var(--ld-card);
  border: 1px solid rgba(194, 204, 242, 0.95);
  border-radius: 28px;
  padding: 14px;
  box-shadow: var(--ld-shadow);
  backdrop-filter: blur(8px);
  position: relative;
}

.ld-video-wrap {
  border-radius: 16px;
  padding: 6px;
  margin-bottom: 12px;
  background: linear-gradient(145deg, #ffffffd9, #eaf0ff9c);
  border: 1px solid #d6dff9;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7), 0 14px 32px rgba(43, 65, 132, 0.12);
}

.ld-video {
  width: 100%;
  height: 208px;
  object-fit: cover;
  display: block;
  border-radius: 14px;
  background: linear-gradient(135deg, #96a8dd, #7484c8 60%, #4e5b97);
}

.ld-calendly-head {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 10px;
}

.ld-calendly-head:empty {
  display: none;
}

.ld-calendly-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.85rem;
  color: #2d4799;
  background: #eaf0ff;
  border: 1px solid #cfdbff;
  padding: 0.4rem 0.75rem;
}

.ld-calendly-badge i {
  color: #1e61ce;
}

.ld-calendly-head h3 {
  margin: 0;
  font-size: clamp(1.25rem, 2.4vw, 1.7rem);
  line-height: 1.2;
}

.ld-calendly-head p {
  color: #3e4f86;
  line-height: 1.45;
}

.ld-calendly-points {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 2px 0 0;
  padding: 0;
}

.ld-calendly-points li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.9rem;
  font-weight: 700;
  color: #32457f;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid #d7dff6;
  border-radius: 999px;
  padding: 0.35rem 0.7rem;
}

.ld-calendly-points i {
  color: #16a085;
}

.ld-calendly-shell {
  position: relative;
  border-radius: 16px;
  padding: 6px;
  background: linear-gradient(145deg, #ffffffd9, #eaf0ff9c);
  border: 1px solid #d6dff9;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7), 0 14px 32px rgba(43, 65, 132, 0.12);
}

.ld-calendly-shell::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 20px;
  background: linear-gradient(130deg, rgba(83, 115, 229, 0.26), rgba(24, 184, 148, 0.26));
  z-index: -1;
  filter: blur(7px);
}

.ld-scheduler .calendly-inline-widget {
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
}

.ld-scheduler .calendly-inline-widget iframe {
  border-radius: 14px;
}

.ld-page h2 {
  font-size: clamp(2rem, 3vw, 3rem);
  text-align: center;
  line-height: 1.16;
  margin-bottom: 26px;
}

.ld-blockers .container,
.ld-process .container,
.ld-what .container {
  background: rgba(255, 255, 255, 0.22);
  border: 1px solid rgba(230, 235, 255, 0.7);
  border-radius: 28px;
  padding: 30px;
  backdrop-filter: blur(2px);
}

.ld-builder-content {
  padding-bottom: 88px;
}

.ld-content-article {
  margin: 0;
}

.ld-builder-content.is-empty {
  padding-bottom: 0;
}

.ld-builder-content > .vc_row {
  margin-bottom: 0;
}

.ld-card {
  height: 100%;
  background: var(--ld-card);
  border: 1px solid #dce1f8;
  border-radius: 14px;
  padding: 14px 14px 12px;
  box-shadow: 0 8px 16px rgba(63, 73, 141, 0.08);
}

.ld-card i {
  width: 65px;
  height: 65px;
  border-radius: 12px;
  display: inline-grid;
  place-items: center;
  font-size: 3.25rem;
  color: #3760c2;
  margin-bottom: 8px;
  background: linear-gradient(160deg, #ecf2ff, #d8e5ff);
  border: 1px solid #cfdbff;
}

.ld-card h3 {
  font-size: 1.12rem;
  margin-bottom: 4px;
  line-height: 1.2;
}

.ld-card p {
  margin: 0;
  color: #465089;
  line-height: 1.35;
  font-size: 0.95rem;
}

.ld-steps,
.ld-kpis {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.ld-steps li,
.ld-kpis li {
  background: var(--ld-card);
  border: 1px solid #dce2f7;
  border-radius: 12px;
  padding: 13px 15px;
  font-size: 1.06rem;
  font-weight: 700;
  box-shadow: 0 6px 14px rgba(45, 57, 125, 0.07);
}

.ld-steps li span {
  width: 30px;
  height: 30px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  margin-right: 10px;
  color: #fff;
  background: linear-gradient(135deg, #19b394, #1f8f76);
}

.ld-steps li small {
  font-weight: 600;
  color: #5a6694;
}

.ld-kpis li strong {
  color: #2b66cb;
  font-size: 1.42rem;
}

.ld-logos {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
}

.ld-client-logo {
  margin: 0;
  background: #ffffffa6;
  border: 1px solid #dde4fa;
  border-radius: 12px;
  min-height: 62px;
  display: grid;
  place-items: center;
  padding: 9px;
}

.ld-client-logo img {
  width: 100%;
  max-height: 45px;
  object-fit: contain;
}

.ld-badges {
  background: var(--ld-card);
  border: 1px solid #dce2f8;
  border-radius: 20px;
  padding: 16px;
  box-shadow: var(--ld-shadow);
}

.ld-badges h3 {
  font-size: 1.28rem;
  margin-bottom: 10px;
}

.ld-badges-logos {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.ld-badge-item,
.ld-badge-text {
  margin: 0;
  min-height: 72px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid #dce4fa;
  border-radius: 12px;
  padding: 8px;
}

.ld-badge-item img {
  width: 100%;
  object-fit: contain;
}

.ld-badge-text {
  font-weight: 800;
  color: #3f4f8d;
  font-size: 0.95rem;
  text-align: center;
}

.ld-final-cta {
  padding-top: 24px;
  padding-bottom: 76px;
}

.ld-final-cta h2 {
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 1200px) {
  .ld-logos {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .ld-page section {
    padding: 48px 0;
  }

  .ld-title {
    font-size: 2rem;
  }

  .ld-brand-logo {
    width: clamp(170px, 58vw, 250px);
    margin-bottom: 12px;
  }

  .ld-home-logo {
    top: 10px;
    left: 10px;
    padding: 6px 8px;
  }

  .ld-home-logo img {
    width: clamp(110px, 36vw, 160px);
  }

  .ld-subtitle {
    font-size: 1rem;
  }

  .ld-calendly-shell {
    padding: 6px;
  }

  .ld-video {
    height: 190px;
  }

  .ld-scheduler .calendly-inline-widget {
    min-width: 100% !important;
    height: 630px !important;
  }

  .ld-blockers .container,
  .ld-process .container,
  .ld-what .container {
    border-radius: 18px;
    padding: 20px 14px;
  }

  .ld-logos {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ld-badges-logos {
    grid-template-columns: 1fr;
  }
}
