:root {
  --ld-bg: #f4f7ff;
  --ld-surface: #ffffff;
  --ld-primary: #11215f;
  --ld-primary-2: #1c63d3;
  --ld-teal: #0fb58e;
  --ld-text: #27315f;
  --ld-muted: #5d688f;
  --ld-border: #dfe6fb;
  --ld-shadow: 0 16px 38px rgba(25, 47, 120, 0.11);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
}

body.ld-body {
  font-family: "Manrope", sans-serif;
  background: var(--ld-bg);
  color: var(--ld-text);
}

.ld-page {
  position: relative;
  overflow-x: clip;
}

.ld-bg-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  opacity: 0.14;
  z-index: -2;
  pointer-events: none;
}

.ld-page::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(244, 247, 255, 0.9) 0%, rgba(244, 247, 255, 0.95) 100%);
  z-index: -1;
}

.ld-nav {
  position: sticky;
  top: 0;
  z-index: 90;
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid var(--ld-border);
  backdrop-filter: blur(8px);
}

.ld-nav-inner {
  min-height: 74px;
  display: flex;
  align-items: center;
  gap: 18px;
}

.ld-nav-logo img {
  width: 170px;
  height: auto;
  display: block;
}

.ld-nav-links {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 22px;
}

.ld-nav-links a {
  text-decoration: none;
  color: #2f3a71;
  font-size: 0.93rem;
  font-weight: 700;
}

.ld-nav-links a:hover {
  color: var(--ld-primary-2);
}

.ld-nav-cta {
  text-decoration: none;
  color: #2d3a73;
  border: 1px solid #97a7db;
  border-radius: 999px;
  padding: 0.45rem 0.9rem;
  font-size: 0.83rem;
  font-weight: 700;
  white-space: nowrap;
}

.ld-nav-cta:hover {
  color: #fff;
  background: var(--ld-primary-2);
  border-color: var(--ld-primary-2);
}

.ld-page section {
  padding: 52px 0;
}

.ld-hero {
  padding-top: 38px;
}

.ld-hero-visual {
  position: relative;
  min-height: 570px;
  display: grid;
  place-items: end center;
}

.ld-hero-visual::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  left: 43%;
  top: 52%;
  transform: translate(-50%, -50%);
  background:
    radial-gradient(circle, rgba(95, 132, 255, 0.34) 0%, rgba(95, 132, 255, 0.2) 35%, rgba(95, 132, 255, 0.07) 58%, transparent 74%),
    radial-gradient(circle at 65% 40%, rgba(74, 220, 224, 0.24) 0%, rgba(74, 220, 224, 0.08) 44%, transparent 72%);
  filter: blur(1px);
}

.ld-hero-visual-girl {
  position: relative;
  margin-left: -86px;
  max-width: 507px;
  height: auto;
  z-index: 2;
  opacity: 0.98;
  transform: translateX(-42px);
  -webkit-mask-image: radial-gradient(circle at 50% 52%, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.97) 48%, rgba(0, 0, 0, 0.72) 66%, rgba(0, 0, 0, 0.22) 81%, rgba(0, 0, 0, 0) 100%);
  mask-image: radial-gradient(circle at 50% 52%, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.97) 48%, rgba(0, 0, 0, 0.72) 66%, rgba(0, 0, 0, 0.22) 81%, rgba(0, 0, 0, 0) 100%);
}

.ld-brand-logo {
  width: clamp(170px, 22vw, 250px);
  height: auto;
  margin-bottom: 12px;
}

.ld-kicker {
  margin-bottom: 6px;
  color: #51609c;
  font-weight: 700;
}

.ld-title,
.ld-page h2,
.ld-page h3,
.ld-page h4 {
  color: var(--ld-primary);
  font-family: "Sora", sans-serif;
}

.ld-title {
  font-size: clamp(2rem, 5vw, 3.6rem);
  line-height: 1.05;
  margin-bottom: 1rem;
  max-width: 690px;
}

.ld-title span,
.ld-page h2 span {
  color: var(--ld-primary-2);
}

.ld-subtitle {
  font-size: 1.09rem;
  line-height: 1.6;
  color: var(--ld-muted);
  max-width: 620px;
  margin-bottom: 1rem;
}

.ld-hero-list {
  list-style: none;
  margin: 0 0 1.2rem;
  padding: 0;
  display: grid;
  gap: 8px;
}

.ld-hero-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #344275;
  font-weight: 700;
}

.ld-hero-list i {
  color: var(--ld-teal);
}

.ld-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  text-decoration: none;
  border-radius: 12px;
  border: 0;
  background: linear-gradient(135deg, #1a2c78, #162264);
  color: #fff;
  font-weight: 800;
  font-size: 0.95rem;
  padding: 0.8rem 1rem;
  box-shadow: 0 10px 22px rgba(19, 34, 97, 0.27);
  line-height: 1.1;
  min-height: 3rem;
}

.ld-btn--stacked {
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 0.2rem;
}

.ld-btn-main-text {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  line-height: 1.2;
  white-space: nowrap;
}

.ld-btn-subtext {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  line-height: 1.2;
  opacity: 0.95;
  margin-top: 0.05rem;
}

.ld-btn i {
  font-size: 1rem;
  line-height: 1;
  display: inline-flex;
  align-items: center;
}

.ld-btn span {
  opacity: 0.8;
  margin-left: 0.2rem;
}

.ld-note {
  color: #4f5e90;
  font-weight: 700;
  margin-top: 2px;
}

.ld-note i {
  color: var(--ld-primary-2);
}

.ld-scheduler {
  background: var(--ld-surface);
  border: 1px solid var(--ld-border);
  border-radius: 20px;
  padding: 14px;
  box-shadow: var(--ld-shadow);
}

.ld-calendly-head {
  padding: 8px 8px 12px;
}

.ld-calendly-head h3 {
  margin: 0;
  font-size: clamp(1.35rem, 2.2vw, 1.8rem);
}

.ld-calendly-head p {
  margin-top: 4px;
  color: #6674a2;
  font-weight: 600;
}

.ld-video-wrap {
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 12px;
  border: 1px solid #dbe4fb;
}

.ld-video {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
}

.ld-calendly-head:empty {
  display: none;
}

.ld-calendly-shell {
  border: 1px solid #dfe5fb;
  border-radius: 14px;
  overflow: hidden;
}

.ld-scheduler .calendly-inline-widget {
  min-width: 100% !important;
  height: 700px !important;
  background: #fff;
}

.ld-builder-content.is-empty {
  display: none;
}

.ld-trust .container,
.ld-solutions .container,
.ld-work .container {
  background: var(--ld-surface);
  border: 1px solid var(--ld-border);
  border-radius: 18px;
  box-shadow: 0 8px 22px rgba(35, 56, 130, 0.08);
  padding: 24px;
}

.ld-trust-title {
  text-align: center;
  font-family: "Sora", sans-serif;
  color: var(--ld-primary);
  max-width: 760px;
  margin: 0 auto 20px;
  font-size: 1.35rem;
  line-height: 1.3;
}

.ld-mini-stat {
  height: 100%;
  background: #fff;
  border: 1px solid #e3e8fb;
  border-radius: 12px;
  padding: 12px;
  text-align: center;
}

.ld-mini-stat i {
  font-size: 1.4rem;
  color: var(--ld-primary-2);
  display: block;
  margin-bottom: 6px;
}

.ld-mini-stat strong {
  display: block;
  color: var(--ld-primary-2);
  font-size: 1.38rem;
  line-height: 1.1;
}

.ld-mini-stat span {
  font-size: 0.86rem;
  color: #596791;
  font-weight: 700;
}

.ld-logos {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
}

.ld-client-logo {
  margin: 0;
  min-height: 56px;
  border-radius: 12px;
  border: 1px solid #e4e9fc;
  background: #fff;
  display: grid;
  place-items: center;
  padding: 8px;
}

.ld-client-logo img {
  width: 100%;
  max-height: 32px;
  object-fit: contain;
}

.ld-client-logo--bcr img {
  transform: scale(1.22);
  transform-origin: center;
}

.ld-solutions h2,
.ld-work h2 {
  text-align: center;
  margin: 0 0 22px;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
}

.ld-solution-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid #e4e9fc;
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 8px 20px rgba(40, 63, 145, 0.07);
}

.ld-solution-card i {
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  font-size: 1.9rem;
  margin-bottom: 12px;
}

.ld-solution-card .ld-c1 { background: #5f47ce; }
.ld-solution-card .ld-c2 { background: #f5a300; }
.ld-solution-card .ld-c3 { background: #1b65de; }
.ld-solution-card .ld-c4 { background: #18b7b0; }

.ld-solution-card h3 {
  font-size: 1.38rem;
  margin-bottom: 8px;
  min-height: 3.3em;
  display: flex;
  align-items: center;
}

.ld-solution-card p {
  color: #5b6790;
  line-height: 1.52;
  margin-bottom: 10px;
}

.ld-solution-card ul {
  margin: 0 0 12px;
  padding-left: 1.05rem;
  display: grid;
  gap: 5px;
  flex: 1 1 auto;
}

.ld-solution-card li {
  color: #596690;
  font-size: 0.9rem;
  line-height: 1.4;
}

.ld-solution-card a {
  margin-top: auto;
  text-decoration: none;
  color: var(--ld-primary-2);
  font-weight: 800;
}

.ld-industries {
  background: linear-gradient(135deg, #101f60, #0e1645 58%, #081330);
}

.ld-industries .container {
  padding-top: 10px;
  padding-bottom: 10px;
}

.ld-industries h2 {
  color: #fff;
  text-align: center;
  margin: 0 0 10px;
  font-size: clamp(1.6rem, 3vw, 2.3rem);
}

.ld-industries-copy {
  margin: 0 auto 16px;
  max-width: 760px;
  text-align: center;
  color: #cfe0ff;
  font-size: 1rem;
  line-height: 1.6;
}

.ld-industries-copy--secondary {
  margin-top: -4px;
  margin-bottom: 20px;
  max-width: 860px;
  color: #dce9ff;
  font-size: 0.98rem;
}

.ld-industries-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.ld-industries-grid div {
  text-align: center;
  color: #d5e7ff;
  font-size: 0.86rem;
  font-weight: 700;
}

.ld-industries-grid i {
  display: block;
  font-size: 3.35rem;
  color: #2fd5cf;
  margin-bottom: 6px;
}

.ld-work-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.ld-work-header h2 {
  margin: 0;
}

.ld-work-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}

.ld-work-slide {
  width: 100%;
}

.ld-work-step {
  height: 100%;
  min-height: 210px;
  position: relative;
  text-align: center;
  background: #fff;
  border: 1px solid #e6ebfc;
  border-radius: 14px;
  padding: 16px 12px;
}

.ld-work-step em {
  display: inline-grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--ld-teal);
  color: #fff;
  font-style: normal;
  font-weight: 800;
  margin-bottom: 8px;
}

.ld-work-step i {
  display: block;
  font-size: 2.4rem;
  color: #6a63d8;
  margin-bottom: 8px;
}

@media (min-width: 1200px) {
  .ld-work .container {
    max-width: 1280px;
    padding-left: 34px;
    padding-right: 34px;
  }
}

.ld-work-step h3 {
  font-size: 1rem;
  margin-bottom: 6px;
}

.ld-work-step p {
  color: #606c96;
  margin: 0;
  line-height: 1.4;
  font-size: 0.92rem;
}

.ld-credibility {
  background: linear-gradient(180deg, #f8fbff 0%, #eef4ff 100%);
  padding: 40px 0 30px;
}

.ld-credibility-intro {
  margin: 0 0 18px;
  color: #46557a;
  font-size: 1rem;
  line-height: 1.6;
  max-width: 980px;
}

.ld-credibility-row {
  margin-bottom: 16px;
}

.ld-credibility-row h3 {
  color: #14224d;
  font-size: 0.95rem;
  font-weight: 800;
  margin: 0 0 10px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.ld-credibility-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: flex-start;
}

.ld-credibility-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
  border-radius: 16px;
  background: #fff;
  border: 1px solid #dfe7fb;
  box-shadow: 0 8px 20px rgba(20, 34, 77, 0.05);
  box-sizing: border-box;
  overflow: hidden;
}

.iso-card {
  width: clamp(110px, 16vw, 160px);
  aspect-ratio: 1 / 1;
  min-width: 110px;
  min-height: 110px;
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

.iso-card img,
.iso-card .iso-logo {
  width: 82%;
  height: 82%;
  max-width: 120px;
  max-height: 120px;
  object-fit: contain;
  object-position: center;
  display: block;
  margin: 0 auto;
}

.ld-credibility-logo--image {
  width: clamp(110px, 16vw, 160px);
  height: clamp(110px, 16vw, 160px);
  min-width: 110px;
  min-height: 110px;
  padding: 0;
  border-radius: 16px;
  overflow: hidden;
}

.ld-credibility-logo--image img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}

.ld-credibility-logo--iso-main {
  width: clamp(110px, 16vw, 160px);
  height: clamp(110px, 16vw, 160px);
  min-width: 110px;
  min-height: 110px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  margin: 0;
  overflow: hidden;
}

.iso-logo-red {
  width: 82%;
  height: 82%;
  max-width: 120px;
  max-height: 120px;
  object-fit: contain;
  object-position: center;
  display: block;
}

.ld-credibility-logo--kiwa {
  width: clamp(110px, 16vw, 160px);
  height: clamp(110px, 16vw, 160px);
  min-width: 110px;
  min-height: 110px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.iso-logo-kiwa {
  width: 82%;
  height: 82%;
  max-width: 120px;
  max-height: 120px;
  object-fit: contain;
  object-position: center;
  display: block;
}

.ld-credibility-logo--iso {
  min-width: 108px;
  padding: 10px 14px;
  gap: 4px;
  flex-direction: column;
  line-height: 1;
}

.ld-credibility-iso-mark {
  font-size: 0.86rem;
  font-weight: 800;
  color: #0f5fd9;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ld-credibility-iso-number {
  font-size: 1.05rem;
  font-weight: 800;
  color: #14224d;
}

.ld-credibility-logo img {
  max-height: 28px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

.ld-credibility-logo--text {
  color: #233c76;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  white-space: nowrap;
}

.ld-final-cta {
  background: linear-gradient(135deg, #101f60, #0e1645 58%, #081330);
  padding: 34px 0;
}

.ld-final-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.ld-final-cta h2 {
  color: #fff;
  margin: 0 0 6px;
  font-size: clamp(1.5rem, 2.8vw, 2.2rem);
}

.ld-final-cta p {
  margin: 0;
  color: #c9d6ff;
  font-weight: 600;
}

.ld-final-cta .ld-btn {
  background: linear-gradient(135deg, #12bb96, #0a9e7f);
  white-space: nowrap;
}

.ld-footer {
  background: #0a1338;
  color: #d6e0ff;
  padding: 30px 0;
}

.ld-footer-grid {
  display: grid;
  grid-template-columns: 1.55fr 1fr 1fr 1fr;
  column-gap: 34px;
  row-gap: 18px;
}

.ld-footer-grid > div:nth-child(5) {
  grid-column: 1;
  grid-row: 2;
  margin-top: 2px;
}

.ld-footer-logo {
  width: 165px;
  height: auto;
  margin-bottom: 10px;
}

.ld-footer h4 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 8px;
}

.ld-footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 6px;
}

.ld-footer li,
.ld-footer p {
  color: #c0ccec;
  font-size: 0.9rem;
}

.ld-footer a {
  color: #c0ccec;
  text-decoration: none;
}

.ld-footer a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.ld-footer-brand p {
  margin-bottom: 12px;
  max-width: 290px;
}

.ld-footer-social {
  display: flex;
  align-items: center;
  gap: 8px;
}

.ld-footer-social a {
  color: #0a76ff;
  font-size: 1rem;
  text-decoration: underline;
}

.ld-footer-social a:hover {
  color: #53a1ff;
}

.ld-footer ul a {
  color: #0a76ff;
  text-decoration: underline;
}

.ld-footer ul a:hover {
  color: #53a1ff;
}

.ld-footer-bottom {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid rgba(214, 224, 255, 0.22);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.ld-footer-bottom p {
  margin: 0;
  font-size: 0.84rem;
}

.ld-footer-legal-links {
  display: flex;
  align-items: center;
  gap: 14px;
}

.ld-footer-legal-links a {
  color: #d6e0ff;
  font-size: 0.84rem;
  text-decoration: none;
}

.ld-footer-legal-links a:hover {
  color: #ffffff;
  text-decoration: underline;
}

@media (max-width: 1199px) {
  .ld-nav-links {
    display: none;
  }

  .ld-logos {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .ld-industries-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .ld-work-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ld-footer-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .ld-footer-grid > div:nth-child(5) {
    grid-column: auto;
    grid-row: auto;
    margin-top: 0;
  }

  .ld-hero-visual {
    min-height: 420px;
  }

}

@media (max-width: 767px) {
  .ld-nav-inner {
    min-height: 62px;
  }

  .ld-work-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .ld-work-grid {
    grid-template-columns: 1fr;
  }

  .ld-nav-logo img {
    width: 140px;
  }

  .ld-nav-cta {
    margin-left: auto;
    font-size: 0.75rem;
    padding: 0.4rem 0.7rem;
  }

  .ld-page section {
    padding: 42px 0;
  }

  .ld-title {
    font-size: 2rem;
  }

  .ld-video {
    height: 180px;
  }

  .ld-scheduler .calendly-inline-widget {
    height: 640px !important;
  }

  .ld-trust .container,
  .ld-solutions .container,
  .ld-work .container {
    border-radius: 14px;
    padding: 16px;
  }

  .ld-logos {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ld-final-cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .ld-final-cta .ld-btn {
    width: 100%;
  }

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

  .ld-footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .ld-footer-legal-links {
    flex-wrap: wrap;
    gap: 10px;
  }
}
