:root {
  --ink: #12233d;
  --ink-soft: #4f6078;
  --paper: #f4f7fb;
  --white: #ffffff;
  --brand: #0c63e7;
  --brand-deep: #083f9e;
  --teal: #079a8b;
  --gold: #f2a100;
  --line: #d9e4f1;
  --radius: 18px;
  --shadow-soft: 0 18px 40px rgba(6, 29, 67, 0.08);
  --shadow-card: 0 18px 35px rgba(7, 42, 98, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "IBM Plex Sans", sans-serif;
  color: var(--ink-soft);
  background: var(--paper);
  line-height: 1.65;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--ink);
  font-family: "Plus Jakarta Sans", sans-serif;
  margin-top: 0;
}

a {
  transition: all 0.25s ease;
}

.klee-main {
  overflow: hidden;
}

.klee-navbar {
  background: rgba(255, 255, 255, 0.95);
  border: 0;
  box-shadow: 0 3px 22px rgba(7, 26, 61, 0.08);
  backdrop-filter: blur(6px);
}

.klee-navbar .navbar-brand {
  padding-top: 7px;
}

.klee-navbar .navbar-brand img {
  height: 54px;
}

.klee-navbar .navbar-nav > li > a {
  color: var(--ink);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.2px;
  padding-top: 26px;
  padding-bottom: 24px;
}

.klee-navbar .navbar-nav > li > a:hover,
.klee-navbar .navbar-nav > li > a:focus {
  color: var(--brand);
}

.klee-navbar .navbar-toggle {
  margin-top: 16px;
  border: 0;
  background: #edf3ff;
  border-radius: 10px;
}

.klee-navbar .icon-bar {
  background: var(--ink);
}

.klee-navbar .menu-cta {
  padding-left: 10px;
  margin-top: 12px;
}

.klee-navbar .menu-cta > a.btn-demo-nav {
  color: #fff;
  background: linear-gradient(125deg, var(--brand) 0%, var(--brand-deep) 100%);
  border: 0;
  border-radius: 30px;
  padding: 10px 18px;
  margin-top: 6px;
  margin-bottom: 6px;
}

.hero {
  position: relative;
  padding: 150px 0 85px;
  background: radial-gradient(circle at 20% 20%, #dce9ff 0%, #eef4ff 46%, #f4f7fb 100%);
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-backdrop::before,
.hero-backdrop::after {
  content: "";
  position: absolute;
  border-radius: 999px;
}

.hero-backdrop::before {
  width: 430px;
  height: 430px;
  right: -120px;
  top: -50px;
  background: radial-gradient(circle at 35% 35%, rgba(12, 99, 231, 0.28), rgba(12, 99, 231, 0));
}

.hero-backdrop::after {
  width: 370px;
  height: 370px;
  left: -120px;
  bottom: -130px;
  background: radial-gradient(circle at 40% 40%, rgba(7, 154, 139, 0.22), rgba(7, 154, 139, 0));
}

.hero .eyebrow {
  margin: 0 0 16px;
  color: var(--brand-deep);
  text-transform: uppercase;
  letter-spacing: 1.4px;
  font-size: 12px;
  font-weight: 700;
}

.hero h1 {
  font-size: 49px;
  line-height: 1.1;
  margin-bottom: 20px;
  max-width: 700px;
}

.hero .hero-description {
  font-size: 18px;
  max-width: 640px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 30px;
  margin-bottom: 24px;
}

.btn-primary-hero,
.btn-secondary-hero,
.btn-link-panel {
  display: inline-block;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  border-radius: 32px;
  padding: 12px 22px;
  text-decoration: none;
  border: 1px solid transparent;
}

.btn-primary-hero {
  color: #fff;
  background: linear-gradient(130deg, var(--brand) 0%, var(--brand-deep) 100%);
  box-shadow: 0 12px 26px rgba(12, 99, 231, 0.25);
}

.btn-primary-hero:hover,
.btn-primary-hero:focus {
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 16px 30px rgba(12, 99, 231, 0.32);
}

.btn-primary-hero.full {
  width: 100%;
}

.btn-secondary-hero {
  color: var(--brand-deep);
  border-color: #b9cff8;
  background: #edf4ff;
}

.btn-secondary-hero:hover,
.btn-secondary-hero:focus {
  color: var(--brand-deep);
  background: #ddeaff;
}

.hero-metrics {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.metric-card {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid #d7e3f5;
  border-radius: 14px;
  padding: 12px 15px;
  min-width: 170px;
}

.metric-card strong {
  display: block;
  color: var(--brand-deep);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 24px;
  line-height: 1.2;
}

.metric-card span {
  font-size: 13px;
  color: var(--ink-soft);
}

.hero-panel {
  background: #0f2648;
  color: #d4e2fb;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: var(--shadow-card);
  padding: 30px;
  margin-top: 8px;
}

.hero-panel h2 {
  color: #fff;
  font-size: 30px;
  margin-bottom: 12px;
}

.hero-panel p {
  margin-bottom: 14px;
}

.hero-panel ul {
  padding: 0;
  list-style: none;
  margin: 0 0 16px;
}

.hero-panel li {
  margin-bottom: 8px;
  font-size: 15px;
}

.hero-panel i {
  color: #59e0d3;
  margin-right: 8px;
}

.btn-link-panel {
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.35);
}

.btn-link-panel:hover,
.btn-link-panel:focus {
  color: #fff;
  background: rgba(255, 255, 255, 0.2);
}

.trust-strip {
  background: #fff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
}

.trust-title {
  margin: 0 0 14px;
  text-align: center;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #607797;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.trust-logos {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  align-items: center;
  gap: 18px;
}

.trust-logos img {
  max-width: 100%;
  max-height: 48px;
  filter: grayscale(100%);
  opacity: 0.86;
  margin: 0 auto;
}

.trust-logos img.logo-on-light {
  filter: brightness(0);
  opacity: 0.7;
}

.section-block {
  padding: 86px 0;
  background: var(--paper);
}

.section-alt {
  background: #ecf3fb;
}

.section-heading {
  text-align: center;
  max-width: 880px;
  margin: 0 auto 38px;
}

.section-heading.left {
  text-align: left;
  margin-left: 0;
}

.section-heading .kicker {
  margin: 0 0 10px;
  color: var(--teal);
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 1.4px;
  font-weight: 700;
}

.section-heading h2 {
  font-size: 38px;
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-heading p {
  font-size: 17px;
  margin: 0;
}

.challenge-card,
.product-card,
.solution-card,
.tech-card,
.case-box,
.timeline-grid article {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.challenge-card {
  padding: 26px 22px;
  min-height: 200px;
  margin-bottom: 18px;
}

.challenge-card h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.ecosystem-points {
  list-style: none;
  padding: 0;
  margin-top: 22px;
}

.ecosystem-points li {
  margin-bottom: 10px;
  color: var(--ink);
  font-weight: 500;
}

.ecosystem-points i {
  color: var(--brand);
  margin-right: 8px;
}

.ecosystem-map {
  position: relative;
  min-height: 390px;
  border-radius: 24px;
  border: 1px dashed #aac2ea;
  background: linear-gradient(130deg, #f6fbff 0%, #e8f1fd 100%);
  overflow: hidden;
}

.ecosystem-map::before,
.ecosystem-map::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.ecosystem-map::before {
  background:
    linear-gradient(transparent 49%, rgba(117, 145, 191, 0.16) 50%, transparent 51%) center/100% 58px,
    linear-gradient(90deg, transparent 49%, rgba(117, 145, 191, 0.16) 50%, transparent 51%) center/58px 100%;
}

.ecosystem-map::after {
  background: radial-gradient(circle at 50% 50%, rgba(12, 99, 231, 0.15), transparent 58%);
}

.ecosystem-node {
  position: absolute;
  border-radius: 30px;
  padding: 9px 16px;
  background: #fff;
  border: 1px solid #bdd0ed;
  color: var(--ink);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  z-index: 1;
}

.ecosystem-node.hub {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: linear-gradient(130deg, var(--brand) 0%, var(--brand-deep) 100%);
  color: #fff;
  border-color: transparent;
}

.ecosystem-node.n1 {
  left: 18%;
  top: 18%;
}

.ecosystem-node.n2 {
  right: 14%;
  top: 22%;
}

.ecosystem-node.n3 {
  left: 20%;
  bottom: 20%;
}

.ecosystem-node.n4 {
  right: 12%;
  bottom: 18%;
}

.product-grid .col-md-6 {
  margin-bottom: 18px;
}

.product-card {
  height: 100%;
  padding: 24px 20px 22px;
  display: flex;
  flex-direction: column;
}

.product-card .product-tag {
  display: inline-block;
  margin-bottom: 10px;
  background: #eaf2ff;
  color: var(--brand-deep);
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.7px;
}

.product-card h3 {
  margin-bottom: 10px;
  font-size: 28px;
}

.product-card p {
  margin-bottom: 12px;
}

.product-card ul {
  margin: 0 0 18px;
  padding-left: 18px;
}

.product-card li {
  margin-bottom: 4px;
  color: var(--ink);
}

.product-card a {
  margin-top: auto;
  color: var(--brand);
  font-weight: 700;
}

.product-card a:hover,
.product-card a:focus {
  color: var(--brand-deep);
  text-decoration: none;
}

.solution-grid .col-md-4 {
  margin-bottom: 16px;
}

.solution-card {
  height: 100%;
  padding: 24px;
}

.solution-card h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.tech-card {
  padding: 26px;
  height: 100%;
  margin-bottom: 16px;
}

.tech-card h3 {
  margin-bottom: 16px;
}

.tech-card ul {
  padding: 0;
  list-style: none;
  margin: 0;
}

.tech-card li {
  margin-bottom: 10px;
  color: var(--ink);
}

.tech-card i {
  width: 20px;
  color: var(--brand);
}

.case-section {
  background: linear-gradient(180deg, #f4f7fb 0%, #eef3fb 100%);
}

.case-box {
  padding: 24px;
}

.case-box h3 {
  margin-bottom: 10px;
}

.kpi-list {
  background: #0f2648;
  border-radius: 22px;
  padding: 24px;
  color: #d2e4ff;
  box-shadow: var(--shadow-card);
}

.kpi-list div {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding: 16px 0;
}

.kpi-list div:last-child {
  border-bottom: 0;
}

.kpi-list strong {
  display: block;
  color: #fff;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 30px;
  line-height: 1.2;
  margin-bottom: 2px;
}

.timeline-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.timeline-grid article {
  padding: 22px;
}

.timeline-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(130deg, var(--teal) 0%, #047065 100%);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  margin-bottom: 12px;
}

.timeline-grid h3 {
  font-size: 22px;
  margin-bottom: 8px;
}

.demo-section {
  background: #f5f9ff;
}

.demo-points {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}

.demo-points li {
  margin-bottom: 10px;
  font-weight: 600;
  color: var(--ink);
}

.demo-points i {
  margin-right: 7px;
  color: var(--teal);
}

.direct-contact {
  border-left: 3px solid #bdd4f8;
  padding-left: 12px;
}

.demo-form {
  background: #fff;
  border-radius: 20px;
  border: 1px solid #d8e5f5;
  box-shadow: var(--shadow-soft);
  padding: 26px;
}

.demo-form label {
  display: block;
  margin-bottom: 5px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  color: #5f7390;
}

.demo-form input,
.demo-form textarea {
  width: 100%;
  border: 1px solid #ccdcef;
  border-radius: 10px;
  padding: 10px 12px;
  color: var(--ink);
  background: #fdfefe;
}

.demo-form input:focus,
.demo-form textarea:focus {
  border-color: #97b7ea;
  outline: 0;
  box-shadow: 0 0 0 3px rgba(12, 99, 231, 0.12);
}

.form-note {
  margin: 12px 0 0;
  font-size: 13px;
  color: #5f7390;
}

.demo-status {
  margin-top: 12px;
  border-radius: 10px;
  padding: 10px 12px;
  display: none;
  font-size: 14px;
}

.demo-status.success {
  display: block;
  background: #e5faef;
  color: #16653b;
  border: 1px solid #9de3bc;
}

.demo-status.error {
  display: block;
  background: #ffecee;
  color: #8a2030;
  border: 1px solid #f6b2bb;
}

.site-footer {
  background: #0f2648;
  color: #c0d4f2;
  padding: 62px 0 24px;
}

.site-footer a {
  color: #deebff;
}

.site-footer a:hover,
.site-footer a:focus {
  color: #65d6cc;
  text-decoration: none;
}

.footer-brand img {
  max-width: 200px;
  margin-bottom: 16px;
}

.footer-nav h4 {
  color: #fff;
  font-size: 18px;
  margin-bottom: 12px;
}

.footer-nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-nav li {
  margin-bottom: 7px;
}

.footer-bottom {
  margin-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 16px;
  font-size: 13px;
  color: #9eb4d8;
}

@media (max-width: 1199px) {
  .hero h1 {
    font-size: 41px;
  }

  .klee-navbar .navbar-nav > li > a {
    font-size: 13px;
    padding-left: 10px;
    padding-right: 10px;
  }

  .timeline-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 991px) {
  .klee-navbar .navbar-nav > li > a {
    padding-top: 11px;
    padding-bottom: 11px;
  }

  .klee-navbar .menu-cta {
    margin-top: 0;
    padding-left: 0;
  }

  .hero {
    padding-top: 122px;
  }

  .hero h1 {
    font-size: 37px;
  }

  .hero-panel {
    margin-top: 20px;
  }

  .trust-logos {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
  }

  .section-heading h2 {
    font-size: 31px;
  }

  .ecosystem-map {
    min-height: auto;
    padding: 20px;
    display: grid;
    gap: 10px;
  }

  .ecosystem-node {
    position: relative;
    left: auto;
    top: auto;
    right: auto;
    bottom: auto;
    transform: none;
    width: 100%;
    text-align: center;
  }

  .ecosystem-node.hub {
    order: -1;
  }
}

@media (max-width: 767px) {
  .hero {
    padding-top: 108px;
    padding-bottom: 66px;
  }

  .hero h1 {
    font-size: 32px;
  }

  .hero .hero-description,
  .section-heading p {
    font-size: 16px;
  }

  .hero-actions {
    gap: 10px;
  }

  .btn-primary-hero,
  .btn-secondary-hero,
  .btn-link-panel {
    width: 100%;
    text-align: center;
  }

  .section-block {
    padding: 70px 0;
  }

  .section-heading h2 {
    font-size: 28px;
  }

  .timeline-grid {
    grid-template-columns: 1fr;
  }

  .site-footer {
    padding-top: 50px;
  }

  .footer-nav,
  .footer-brand {
    margin-bottom: 18px;
  }
}
