/* [project]/src/app/css/Header.css [app-client] (css) */
.basic-header {
  z-index: 1000;
  background: #fff;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  left: 0;
}

.header-container {
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 12px 32px;
  display: flex;
  position: relative;
}

.header-logo-img {
  object-fit: contain;
  width: auto;
  height: auto;
  max-height: 120px;
}

@media (max-width: 1024px) {
  .header-container {
    padding: 12px 20px;
  }
}

.header-logo {
  flex: 40%;
  align-items: center;
  transition: transform .3s ease-in-out;
  display: flex;
}

.header-logo:hover {
  transform: translateY(-3px);
}

@media (max-width: 1024px) {
  .header-logo img {
    max-width: 140px;
    height: auto;
  }
}

.header-nav {
  flex-wrap: wrap;
  flex: 60%;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  display: flex;
}

.header-nav div {
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  display: flex;
}

@media (max-width: 1200px) {
  .header-nav {
    gap: 24px;
  }
}

@media (max-width: 1100px) {
  .header-nav {
    gap: 16px;
  }
}

.header-nav a {
  color: #153c7f;
  text-transform: uppercase;
  font-size: 18px;
  text-decoration: none;
  position: relative;
}

.header-nav a.active:after {
  content: "";
  background-color: #153c7f;
  width: 100%;
  height: 2px;
  position: absolute;
  bottom: -6px;
  left: 0;
}

.header-nav a.header-link-login {
  color: #153c7f;
  background-color: rgba(0, 0, 0, 0);
  border: 2px solid #153c7f;
  border-radius: 6px;
  padding: 8px 18px;
  font-weight: 600;
}

.header-nav a.header-link-login:hover {
  background-color: rgba(21, 60, 127, .08);
}

.header-nav a.header-link-login.active:after {
  display: none;
}

.header-nav a.header-link-register {
  color: #fff;
  background-color: #153c7f;
  border: 2px solid #153c7f;
  border-radius: 6px;
  padding: 8px 18px;
  font-weight: 600;
}

.header-nav a.header-link-register:hover {
  color: #fff;
  background-color: #1e4a8c;
  border-color: #1e4a8c;
}

.header-nav a.header-link-register.active:after {
  display: none;
}

.mobile-menu a.header-link-login {
  color: #153c7f;
  background-color: rgba(0, 0, 0, 0);
  border: 2px solid #153c7f;
  border-radius: 6px;
  padding: 10px 24px;
  font-weight: 600;
}

.mobile-menu a.header-link-register {
  color: #fff;
  background-color: #153c7f;
  border: 2px solid #153c7f;
  border-radius: 6px;
  padding: 10px 24px;
  font-weight: 600;
}

.hamburger {
  cursor: pointer;
  z-index: 1001;
  background: none;
  border: none;
  margin: -8px 0 -8px 8px;
  padding: 8px;
  display: none;
}

.hamburger svg {
  stroke: #003a8f;
  width: 28px;
  height: 28px;
}

.mobile-menu {
  z-index: 999;
  -webkit-overflow-scrolling: touch;
  background-color: rgba(255, 255, 255, .98);
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  padding: 80px 24px 32px;
  display: none;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  overflow-y: auto;
}

.mobile-menu a {
  text-align: left;
  text-transform: uppercase;
  border-radius: 8px;
  margin-bottom: 4px;
  padding: 14px 16px;
  font-size: 16px;
  display: block;
}

.mobile-menu a:not(.header-link-login):not(.header-link-register) {
  color: #153c7f;
}

.mobile-menu a.header-link-login, .mobile-menu a.header-link-register {
  text-align: center;
  margin-top: 8px;
}

.mobile-menu a.header-link-login {
  margin-bottom: 8px;
}

@media (min-width: 1025px) {
  .header-container {
    justify-content: space-between;
  }

  .header-nav {
    margin-left: auto;
  }
}

@media (max-width: 1024px) {
  .header-nav {
    display: none;
  }

  .hamburger {
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .mobile-menu.open {
    display: flex;
  }
}

/* [project]/src/app/css/Footer.css [app-client] (css) */
.interllekt-footer {
  color: #fff;
  background: #153c7f;
  margin-top: auto;
  padding: 40px 24px;
}

.footer-container {
  flex-direction: column;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 120px;
  padding-right: 120px;
  display: flex;
  position: relative;
}

.footer-brand {
  text-align: center;
  flex-direction: column;
  align-items: center;
  width: 100%;
  display: flex;
}

.footer-logo {
  justify-content: center;
  transition: transform .3s ease-in-out;
  display: flex;
}

.footer-logo:hover {
  transform: translateY(-3px);
}

.footer-mission {
  opacity: .9;
  max-width: 740px;
  margin: 16px 0 0;
  font-size: 15px;
  line-height: 1.5;
}

.app-buttons {
  flex-flow: row;
  justify-content: center;
  gap: 14px;
  margin-top: 24px;
  display: flex;
}

.app-buttons img {
  max-width: 100%;
  height: auto;
  transition: transform .2s;
  display: block;
}

.app-buttons a:hover img {
  transform: scale(1.05);
}

.footer-copyright {
  opacity: .95;
  color: #fff;
  margin: 24px 0 0;
  font-size: 14px;
}

.footer-copyright strong {
  font-weight: 700;
}

.footer-social-left {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  top: 40px;
  left: 2px;
}

.footer-legal-block {
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  display: flex;
  position: absolute;
  top: 40px;
  right: -20px;
}

.footer-legal-link {
  color: #fff;
  letter-spacing: .02em;
  opacity: .95;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: opacity .3s;
}

.footer-legal-link:hover {
  opacity: 1;
}

.footer-powered {
  opacity: .85;
  color: #fff;
  margin-top: 40px;
  font-size: 14px;
}

.footer-social {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.connect-title {
  margin-bottom: 8px;
  font-size: 18px;
  font-weight: 600;
}

.social-icons {
  align-items: center;
  gap: 32px;
  display: flex;
}

@media (max-width: 380px) {
  .interllekt-footer {
    padding: 40px 16px 28px;
  }

  .footer-container {
    gap: 28px;
  }

  .footer-links h4, .connect-title {
    font-size: 16px;
  }

  .footer-links a {
    font-size: 14px;
  }
}

.social-link {
  color: #7cc427;
  justify-content: center;
  align-items: center;
  font-size: 32px;
  transition: transform .2s, opacity .2s;
  display: flex;
}

.social-link:hover {
  opacity: .9;
  transform: scale(1.08);
}

.icon-f, .icon-in {
  font-family: Poppins, sans-serif;
  font-size: 34px;
  font-weight: 700;
  line-height: 1;
}

.icon-twitter, .icon-instagram {
  width: 36px;
  height: 36px;
}

@media (max-width: 1024px) {
  .interllekt-footer {
    padding: 60px 24px 36px;
  }

  .footer-container {
    gap: 36px;
    padding-left: 24px;
    padding-right: 24px;
  }

  .footer-mission {
    max-width: 480px;
  }

  .footer-social-left, .footer-legal-block {
    align-items: center;
    position: static;
  }

  .connect-title {
    text-align: center;
  }

  .social-icons {
    justify-content: center;
  }

  .icon-in {
    font-size: 32px;
  }
}

@media (max-width: 640px) {
  .interllekt-footer {
    padding: 48px 20px 32px;
  }

  .footer-logo {
    margin-bottom: auto;
  }

  .footer-container {
    gap: 32px;
  }

  .footer-powered {
    margin: 0;
  }

  .footer-mission {
    max-width: 320px;
    margin-top: 12px;
    font-size: 14px;
    line-height: 1.45;
  }

  .app-buttons {
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 20px;
  }

  .footer-links h4, .connect-title {
    margin-bottom: 16px;
    font-size: 17px;
  }

  .social-icons {
    gap: 24px;
  }

  .social-link {
    font-size: 28px;
  }
}

/* [project]/src/app/css/HeroSection.css [app-client] (css) */
.hero {
  height: calc(100vh - 120px);
  min-height: unset;
  color: #fff;
  text-align: center;
  box-sizing: border-box;
  background: linear-gradient(113.99deg, #153c7f 12.55%, #000820 87.43%);
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding: 0;
  display: flex;
  overflow: hidden;
}

.content {
  box-sizing: border-box;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  max-width: max(320px, min(85vw, 1200px));
  height: 100%;
  margin: 0 auto;
  padding: 20px max(1rem, min(3vw, 2rem)) 0;
  display: flex;
  overflow: hidden;
}

.hero h1 {
  z-index: 2;
  flex-shrink: 0;
  margin: 0 0 12px;
  font-size: max(1.5rem, min(2.5vw, 2.5rem));
  font-weight: 400;
  line-height: 1.3;
  position: relative;
}

.hero h1 .brand-ascendium {
  font-weight: 600;
}

.imageWrapper {
  z-index: 1;
  flex: 1;
  justify-content: center;
  align-items: flex-end;
  width: 100%;
  min-height: 0;
  display: flex;
  position: relative;
}

.imageWrapper img, .hero-image {
  object-fit: contain;
  object-position: bottom center;
  border-radius: max(4px, min(.5vw, 8px)) max(4px, min(.5vw, 8px)) 0 0;
  width: auto;
  max-width: 58%;
  height: auto;
  max-height: 100%;
  margin: 0;
  display: block;
  position: relative;
}

@media (max-width: 768px) {
  .hero {
    height: auto;
    min-height: unset;
    overflow: visible;
  }

  .content {
    height: auto;
  }

  .imageWrapper {
    flex: none;
    align-items: center;
  }

  .imageWrapper img, .hero-image {
    max-width: 88%;
    max-height: 40vh;
  }
}

/* [project]/src/app/css/SubHero.css [app-client] (css) */
.subhero-section {
  background-color: #ecf3ff;
  justify-content: center;
  padding: 80px 20px;
  display: flex;
}

.subhero-container {
  text-align: center;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}

.subhero-section h2 {
  color: #4d4d4d;
  margin-bottom: 24px;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.25;
}

.subhero-section p {
  color: #242424;
  margin-bottom: 20px;
  font-size: 1rem;
  line-height: 1.7;
}

.demo-button {
  color: #fff;
  cursor: pointer;
  background-color: #63a821;
  border: none;
  border-radius: 4px;
  padding: 14px 32px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: background .3s;
  display: inline-block;
}

.demo-button:hover {
  background-color: #7ac100;
}

@media (max-width: 1024px) {
  .subhero-section {
    padding: 64px 24px;
  }

  .subhero-section h2 {
    font-size: 1.8rem;
  }
}

@media (max-width: 768px) {
  .subhero-section {
    padding: 56px 20px;
  }

  .subhero-section h2 {
    margin-bottom: 20px;
    font-size: 1.5rem;
  }

  .subhero-section p {
    font-size: .95rem;
    line-height: 1.6;
  }

  .demo-button {
    padding: 12px 26px;
    font-size: .95rem;
  }
}

@media (max-width: 480px) {
  .subhero-section {
    padding: 48px 16px;
  }

  .subhero-section h2 {
    font-size: 1.3rem;
  }

  .subhero-section p {
    font-size: .9rem;
  }

  .demo-button {
    width: 100%;
    padding: 14px;
    font-size: .95rem;
  }
}

/* [project]/src/app/css/KeyFeatures.css [app-client] (css) */
.key-features {
  text-align: center;
  color: #fff;
  background: linear-gradient(168.42deg, rgba(95, 195, 0, .91) 4.18%, rgba(54, 102, 7, .91) 92.49%);
  padding: 80px 20px 0;
  position: relative;
  overflow: hidden;
}

.kf-header h2 {
  color: #fff;
  max-width: 1600px;
  margin-bottom: 16px;
  margin-left: auto;
  margin-right: auto;
  font-size: 38px;
  font-weight: 800;
  line-height: 1.2;
}

.kf-header p {
  color: #fff;
  text-align: center;
  max-width: 800px;
  margin-bottom: 60px;
  margin-left: auto;
  margin-right: auto;
  font-size: max(16px, min(1.2vw, 20px));
}

.key-features-container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}

.kf-architecture-grid {
  grid-template-columns: minmax(0, 1.45fr) minmax(0, 1fr);
  align-items: stretch;
  gap: 24px;
  margin-bottom: 24px;
  display: grid;
}

.qapi-card {
  box-sizing: border-box;
  flex-direction: column;
  width: 100%;
  max-width: 100%;
  height: 100%;
  display: flex;
}

.kf-arch-card.qapi-card {
  background: linear-gradient(135deg, #e6f4ea, #d0ecd9);
}

.kf-arch-card.health-card {
  background: linear-gradient(135deg, #e8f0fe, #d2e3fc);
}

.kf-arch-card.ops-card {
  background: linear-gradient(135deg, #f3f1ff, #e8e4ff);
}

.side-card {
  box-sizing: border-box;
  width: 100%;
  max-width: 100%;
  height: auto;
}

.right-feature-column {
  flex-direction: column;
  gap: 24px;
  width: 100%;
  max-width: none;
  height: 100%;
  display: flex;
}

.feature-card-image {
  object-fit: contain;
  width: 42%;
  max-height: 260px;
}

.side-card .feature-card-image {
  width: 42%;
  max-height: 220px;
}

.feature-card-content {
  flex: 1;
  padding: 32px;
}

.feature-card-title {
  color: #153c7f;
  text-transform: uppercase;
  margin-bottom: 12px;
  font-size: max(24px, min(1.8vw, 32px));
  font-weight: 800;
}

.feature-card-description {
  color: #4b5563;
  margin: 0;
  font-size: max(16px, min(1vw, 20px));
  line-height: 1.6;
}

@media (min-width: 1025px) {
  .key-features-container {
    max-width: 1280px;
  }

  .kf-architecture-grid {
    grid-template-columns: repeat(2, minmax(0, 620px));
    justify-content: center;
    margin-top: 48px;
  }

  .right-feature-column {
    justify-content: space-between;
  }

  .right-feature-column .side-card {
    min-height: unset;
    flex-direction: column;
    flex: none;
    display: flex;
  }

  .right-feature-column .health-card {
    min-height: unset;
    flex: none;
  }

  .right-feature-column .ops-card {
    flex: none;
  }

  .qapi-card .kf-arch-list {
    flex-grow: 1;
  }

  .right-feature-column .health-card .kf-arch-card-header, .right-feature-column .health-card .kf-arch-illustration {
    height: 170px;
  }

  .right-feature-column .health-card .feature-card-content {
    padding: 24px;
  }

  .right-feature-column .health-card .kf-arch-divider {
    margin: 12px 24px 8px;
  }

  .right-feature-column .health-card .kf-arch-list {
    flex-grow: 0;
    padding: 8px 24px 16px;
  }

  .kf-arch-card-header {
    border-bottom: 1px solid #e5e7eb;
    border-top-left-radius: 24px;
    border-top-right-radius: 24px;
    flex-direction: row-reverse;
    align-items: stretch;
    height: 200px;
    display: flex;
    overflow: hidden;
  }

  .kf-arch-illustration {
    border: none;
    flex-shrink: 0;
    align-items: flex-end;
    width: 42%;
  }
}

@media (max-width: 1024px) {
  .kf-architecture-grid {
    grid-template-columns: 1fr;
  }

  .qapi-card {
    grid-row: auto;
  }

  .right-feature-column {
    flex-direction: column;
    justify-content: flex-start;
    gap: 40px;
    height: auto;
    display: flex;
  }

  .kf-arch-card-header {
    border-top-left-radius: 24px;
    border-top-right-radius: 24px;
    flex-direction: column;
    display: flex;
    overflow: hidden;
  }

  .kf-arch-illustration {
    border-bottom: 1px solid #e5e7eb;
    border-right: none;
    width: 100%;
    height: 200px;
  }

  .feature-card-image {
    width: 100%;
    max-height: 180px;
  }
}

.kf-arch-card {
  box-sizing: border-box;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 24px;
  flex-direction: column;
  width: 100%;
  max-width: 100%;
  transition: box-shadow .3s, transform .3s;
  display: flex;
  position: relative;
  overflow: visible;
  box-shadow: -30px 24px 20px rgba(0, 0, 0, .15);
}

.kf-arch-card:hover {
  transform: translateY(-4px);
  box-shadow: -35px 28px 28px rgba(0, 0, 0, .18);
}

.kf-top-badge {
  z-index: 10;
  border: 4px solid #fff;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  transition: transform .3s;
  display: flex;
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 4px 12px rgba(0, 0, 0, .12);
}

.kf-arch-card:hover .kf-top-badge {
  transform: translateX(-50%)translateY(-2px);
}

.kf-badge-green {
  color: #fff;
  background-color: #2e7d32;
}

.kf-badge-blue {
  color: #fff;
  background-color: #153c7f;
}

.kf-badge-lavender {
  color: #2e7d32;
  background: linear-gradient(135deg, #f3f1ff, #e8e4ff);
}

.ops-card .feature-card-content {
  padding-top: 48px;
}

.kf-arch-illustration {
  justify-content: center;
  align-items: flex-end;
  height: 200px;
  padding-top: 20px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.kf-illust-bg {
  z-index: 0;
  border-radius: 50%;
  width: 120px;
  height: 120px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.kf-illust-qapi {
  background: none;
}

.kf-illust-qapi .kf-illust-bg {
  background: rgba(255, 255, 255, .6);
  box-shadow: 0 8px 32px rgba(46, 125, 50, .1);
}

.kf-illust-health {
  background: none;
}

.kf-illust-health .kf-illust-bg {
  background: rgba(255, 255, 255, .6);
  box-shadow: 0 8px 32px rgba(21, 101, 192, .1);
}

.kf-illust-ops {
  background: none;
}

.kf-illust-ops .kf-illust-bg {
  background: rgba(255, 255, 255, .6);
  box-shadow: 0 8px 32px rgba(46, 125, 50, .1);
}

.kf-illust-icon {
  z-index: 1;
  background: #fff;
  border-radius: 12px;
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  box-shadow: 0 4px 12px rgba(0, 0, 0, .08);
}

.kf-icon-main {
  z-index: 2;
  border-radius: 20px;
  width: 80px;
  height: 80px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 8px 24px rgba(0, 0, 0, .12);
}

.kf-icon-sub1 {
  width: 50px;
  height: 50px;
  top: 25%;
  left: 20%;
  transform: rotate(-10deg);
}

.kf-icon-sub2 {
  border-radius: 50%;
  width: 56px;
  height: 56px;
  bottom: 20%;
  right: 20%;
  transform: rotate(5deg);
}

.kf-arch-card:hover .kf-icon-main {
  transform: translate(-50%, -55%)scale(1.05);
}

.kf-arch-card:hover .kf-icon-sub1, .kf-arch-card:hover .kf-icon-sub2 {
  transform: rotate(0)scale(1.1)translateY(-5px);
}

.kf-illust-icon, .kf-icon-main, .kf-icon-sub1, .kf-icon-sub2 {
  transition: transform .3s cubic-bezier(.175, .885, .32, 1.275);
}

.kf-arch-body {
  text-align: left;
  padding: 24px 24px 16px;
}

.kf-arch-body h3 {
  color: #153c7f;
  margin-bottom: 12px;
  font-size: 22px;
  font-weight: 800;
}

.kf-arch-body p {
  color: #4b5563;
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
}

.kf-arch-divider {
  text-align: center;
  justify-content: center;
  align-items: center;
  margin: 20px 24px 12px;
  display: flex;
}

.kf-arch-divider:before, .kf-arch-divider:after {
  content: "";
  border-bottom: 1px solid #e5e7eb;
  flex: 1;
}

.kf-arch-divider.text-blue:before, .kf-arch-divider.text-blue:after {
  border-bottom-color: rgba(21, 101, 192, .25);
}

.kf-arch-divider.text-green:before, .kf-arch-divider.text-green:after {
  border-bottom-color: rgba(46, 125, 50, .25);
}

.kf-arch-divider span {
  letter-spacing: .5px;
  padding: 0 16px;
  font-size: 13px;
  font-weight: 700;
}

.kf-arch-divider.text-blue span {
  color: #1565c0;
}

.kf-arch-divider.text-green span {
  color: #2e7d32;
}

.kf-arch-list {
  box-sizing: border-box;
  flex-direction: column;
  flex-grow: 1;
  gap: 10px;
  width: 100%;
  padding: 12px 24px 24px;
  display: flex;
}

.kf-list-item {
  box-sizing: border-box;
  color: #1a1a1a;
  background: #fff;
  border: 1px solid #e5edf5;
  border-radius: 12px;
  align-items: center;
  width: 100%;
  min-height: 56px;
  padding: 0 24px;
  font-size: 16px;
  text-decoration: none;
  transition: all .2s;
  display: flex;
  box-shadow: 0 2px 6px rgba(0, 0, 0, .03);
}

.kf-list-item:hover {
  color: #fff;
  background: #0f3f8a;
  border-color: #0f3f8a;
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(15, 63, 138, .15);
}

.kf-list-icon {
  flex-shrink: 0;
  margin-right: 16px;
}

.text-green {
  color: #2e7d32;
}

.text-blue {
  color: #1565c0;
}

.kf-list-title {
  text-align: left;
  flex-grow: 1;
  font-size: 14px;
  font-weight: 600;
}

.kf-list-chevron {
  color: #9ca3af;
  flex-shrink: 0;
  transition: transform .2s;
}

.kf-list-item:hover .kf-list-chevron {
  color: #fff;
  transform: translateX(2px);
}

.kf-list-item:hover .kf-list-title, .kf-list-item:hover .kf-list-icon, .kf-list-item:hover .text-green, .kf-list-item:hover .text-blue {
  color: #fff !important;
}

.key-features-bottom-strip {
  box-sizing: border-box;
  align-items: center;
  width: 100%;
  max-width: 1100px;
  min-height: 80px;
  margin-top: 16px;
  margin-left: auto;
  margin-right: auto;
  padding: 0;
  display: flex;
}

@media (min-width: 1025px) {
  .key-features-bottom-strip {
    max-width: 1280px;
  }
}

.key-features-bottom-strip-text {
  color: #fff;
  text-align: left;
  white-space: nowrap;
  z-index: 2;
  box-sizing: border-box;
  flex: 1;
  max-width: calc(100% - 360px);
  padding-left: 48px;
  font-size: 20px;
  line-height: 1.4;
  position: relative;
}

.key-features-bottom-strip-text strong {
  letter-spacing: .8px;
  font-family: Poppins, sans-serif;
  font-weight: 600;
}

.key-features-bottom-strip-image {
  object-fit: contain;
  object-position: right bottom;
  z-index: 1;
  width: auto;
  height: 210px;
  position: absolute;
  bottom: 0;
  right: 0;
}

@media (max-width: 1024px) {
  .kf-architecture-grid {
    grid-template-columns: 1fr;
  }

  .qapi-card {
    grid-row: auto;
  }

  .right-feature-column {
    flex-direction: column;
    justify-content: flex-start;
    gap: 40px;
    height: auto;
    display: flex;
  }

  .key-features-bottom-strip {
    min-height: 60px;
    padding: 0 20px;
  }

  .key-features-bottom-strip-text {
    white-space: nowrap;
    max-width: calc(100% - 280px);
    font-size: 16px;
  }

  .key-features-bottom-strip-image {
    height: 170px;
  }
}

@media (max-width: 768px) {
  .kf-architecture-grid {
    grid-template-columns: 1fr;
  }

  .key-features-bottom-strip {
    text-align: center;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    min-height: auto;
    margin-top: 24px;
    padding: 24px 20px;
  }

  .key-features-bottom-strip-text {
    text-align: center;
    white-space: normal;
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
    font-size: 16px;
  }

  .key-features-bottom-strip-image {
    width: 100%;
    max-width: 240px;
    height: auto;
    margin: 20px auto 0;
    display: block;
    position: relative;
    bottom: auto;
    right: auto;
  }
}

/* [project]/src/app/css/MeasurableOutcomes.css [app-client] (css) */
.outcomes-section {
  text-align: center;
  background: #ecf3ff;
  padding: 80px 20px;
}

.outcomes-title {
  margin-bottom: 14px;
  font-size: 28px;
  font-weight: 600;
}

.outcomes-subtitle {
  color: #242424;
  max-width: 720px;
  margin: 0 auto 80px;
  line-height: 1.6;
}

.outcomes-container {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}

.outcomes-grid {
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  display: grid;
}

.outcome-card {
  text-align: left;
  z-index: 5;
  background: #fff;
  border-radius: 26px;
  min-height: 150px;
  padding: 64px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, .06);
}

.outcome-card h4, .outcome-card p {
  z-index: 2;
  position: relative;
}

.outcome-card h4 {
  margin-bottom: 12px;
  font-size: 20px;
}

.outcome-card p {
  font-size: 15px;
  line-height: 1.6;
  color: #242424 !important;
}

.outcome-card:before {
  content: "";
  z-index: 1;
  background: #153c7f;
  border-radius: 50%;
  width: 180px;
  height: 180px;
  position: absolute;
}

.curve-bottom-right:before {
  bottom: -90px;
  right: -90px;
}

.curve-bottom-left:before {
  bottom: -90px;
  left: -90px;
}

.curve-top-right:before {
  top: -90px;
  right: -90px;
}

.curve-top-left:before {
  top: -90px;
  left: -90px;
}

.card-icon {
  z-index: 3;
  background: #153c7f;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  display: flex;
  position: absolute;
}

.card-icon img {
  filter: brightness(0) invert();
  width: 32px;
}

.curve-bottom-right .card-icon {
  bottom: 14px;
  right: 14px;
}

.curve-bottom-left .card-icon {
  bottom: 14px;
  left: 14px;
}

.curve-top-right .card-icon {
  top: 14px;
  right: 14px;
}

.curve-top-left .card-icon {
  top: 14px;
  left: 14px;
}

.outcomes-center-circle {
  z-index: 4;
  pointer-events: none;
  background-size: contain;
  justify-content: center;
  align-items: center;
  width: 248px;
  height: 248px;
  display: flex;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.center-logo-box {
  border-radius: 6px;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 80px;
  display: flex;
}

.center-logo-box img {
  width: 80px;
  height: 80px;
}

@media (max-width: 900px) {
  .outcomes-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .outcomes-container {
    flex-direction: column-reverse;
    display: flex;
  }

  .outcomes-center-circle {
    margin: 40px auto;
    position: relative;
    transform: none;
  }
}

@media (max-width: 768px) {
  .outcomes-center-circle {
    display: none;
  }

  .outcomes-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .center-logo-box {
    width: 40px;
    height: 40px;
  }
}

/* [project]/src/app/css/OurPillars.css [app-client] (css) */
.pillars-section {
  text-align: center;
  background-color: #fff;
  padding: 80px 20px 40px;
}

.pillars-title {
  letter-spacing: 1.5px;
  color: #153c7f;
  margin-bottom: 12px;
  font-size: 34px;
  font-weight: 600;
}

.pillars-subtitle {
  color: #242424;
  max-width: 950px;
  margin: 0 auto 60px;
  font-size: 24px;
  line-height: 1.6;
}

.pillars-grid {
  grid-template-columns: repeat(2, 1fr);
  gap: 34px;
  max-width: 960px;
  margin: 0 auto;
  display: grid;
}

.pillar-card {
  text-align: left;
  background: linear-gradient(229.49deg, #fff -15.77%, #f6f6f6 43.04%, #dedddd 139.44%, #dddcdc 143.58%);
  border-radius: 32px;
  max-width: 400px;
  min-height: 220px;
  padding: 32px 32px 88px;
  transition: box-shadow .3s, transform .3s;
  position: relative;
  overflow: hidden;
  box-shadow: -40px 30px 25px rgba(0, 0, 0, .2);
}

.pillar-heading {
  color: #222;
  margin-bottom: 12px;
  font-size: 18px;
  font-weight: 600;
}

.pillar-description {
  color: #242424;
  font-size: 15px;
  line-height: 1.6;
}

.pillar-icon {
  z-index: 2;
  justify-content: center;
  align-items: center;
  width: 90px;
  height: 90px;
  display: flex;
  position: absolute;
  bottom: 0;
  right: 0;
}

.pillar-icon:before {
  content: "";
  z-index: -1;
  background-color: #153c7f;
  border-radius: 50%;
  width: 150px;
  height: 150px;
  position: absolute;
  bottom: -50px;
  right: -50px;
}

.pillar-icon img {
  object-fit: contain;
  width: 36px;
}

.pillars-grid > :last-child {
  grid-column: span 2;
  max-width: 420px;
  height: 200px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .pillars-grid {
    grid-template-columns: 1fr;
    height: auto;
  }

  .pillars-grid > :last-child {
    grid-column: span 1;
  }

  .pillar-card {
    max-width: -moz-fit-content;
    max-width: fit-content;
  }

  .pillar-icon:before {
    width: 100px;
    height: 100px;
    bottom: -40px;
    right: -40px;
  }

  .pillar-icon {
    width: 50px;
    height: 60px;
  }

  .pillars-title {
    font-size: 28px;
  }

  .pillars-subtitle {
    font-size: 18px;
  }

  .pillar-icon img {
    width: 28px;
  }
}

/* [project]/src/app/css/FromGoalsToResults.css [app-client] (css) */
.results-section {
  text-align: center;
  background-color: #f8fbff;
  padding: 60px 40px 48px;
  position: relative;
  overflow: hidden;
}

.results-content {
  z-index: 2;
  max-width: 1332px;
  margin: 0 auto;
  position: relative;
}

.results-header {
  max-width: 900px;
  margin: 0 auto 8px;
}

.results-title {
  color: #153c7f;
  letter-spacing: .8px;
  margin-bottom: 12px;
  font-size: 32px;
  font-weight: 600;
}

.results-subtitle {
  color: #242424;
  max-width: 760px;
  margin: 0 auto;
  font-size: 18px;
  line-height: 1.6;
}

.results-visual {
  justify-content: center;
  width: 100%;
  display: flex;
}

.results-image-wrapper {
  justify-content: center;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 100%;
  display: flex;
}

.results-image-wrapper > span {
  display: block !important;
}

.results-dashboard-image {
  width: min(1169px, 100%);
  height: auto;
  margin: -120px auto 0;
  display: block;
  transform: translateX(40px);
}

@media (max-width: 1320px) {
  .results-dashboard-image {
    max-width: calc(100vw - 40px);
    margin-top: max(-100px, min(-10vw, -60px));
    transform: translateX(32px);
  }
}

@media (max-width: 1024px) {
  .results-title {
    font-size: 28px;
  }

  .results-subtitle {
    font-size: 17px;
  }
}

@media (max-width: 768px) {
  .results-section {
    padding: 48px 20px 40px;
  }

  .results-header {
    margin-bottom: 4px;
  }

  .results-title {
    font-size: 26px;
  }

  .results-subtitle {
    font-size: 16px;
  }

  .results-dashboard-image {
    margin-top: max(-72px, min(-12vw, -40px));
    transform: translateX(20px);
  }
}

@media (max-width: 480px) {
  .results-title {
    font-size: 22px;
  }

  .results-subtitle {
    font-size: 15px;
  }
}

/* [project]/src/app/css/CustomerTestimonials.css [app-client] (css) */
.testimonials-section {
  text-align: center;
  background-color: #f1f7ff;
  padding: 80px 20px;
  position: relative;
}

.testimonials-header {
  max-width: 760px;
  margin: 0 auto 45px;
}

.testimonials-title {
  color: #242424;
  letter-spacing: .5px;
  margin-bottom: 16px;
  font-size: 26px;
  font-weight: 700;
}

.testimonials-subtitle {
  color: #5a5a5a;
  font-size: 16px;
  line-height: 1.6;
}

.testimonials-grid {
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
}

.testimonial-card {
  text-align: left;
  cursor: default;
  background: #fff;
  border: 1px solid #d7ebff;
  border-radius: 14px;
  flex-direction: column;
  width: 100%;
  height: 100%;
  display: flex;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(21, 60, 127, .06);
}

.testimonial-card-header {
  box-sizing: border-box;
  background: #153c7f;
  flex-direction: column;
  justify-content: center;
  gap: 3px;
  height: 125px;
  min-height: 125px;
  padding: 14px 18px;
  display: flex;
}

.testimonial-card-header .name {
  color: #fff;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  margin: 0;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.3;
  display: -webkit-box;
  overflow: hidden;
}

.testimonial-card-header .role {
  color: rgba(255, 255, 255, .88);
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  margin: 0;
  font-size: 12px;
  font-style: italic;
  font-weight: 400;
  line-height: 1.35;
  display: -webkit-box;
  overflow: hidden;
}

.testimonial-card-header .company {
  color: #fff;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  margin: 0;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.35;
  display: -webkit-box;
  overflow: hidden;
}

.testimonial-card-body {
  background: #fff;
  flex: 1;
  padding: 18px 20px 20px;
}

.testimonial-card-body .message-para {
  color: #242424;
  margin: 0 0 12px;
  font-size: 14px;
  line-height: 1.65;
}

.testimonial-card-body .message-para:last-child {
  margin-bottom: 0;
}

@media (max-width: 1024px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .testimonials-section {
    padding: 60px 16px;
  }

  .testimonials-header {
    margin-bottom: 35px;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .testimonial-card {
    border-radius: 12px;
  }

  .testimonial-card-header {
    height: 125px;
    min-height: 125px;
    padding: 14px 16px;
  }

  .testimonial-card-header .name {
    font-size: 14px;
  }

  .testimonial-card-body {
    padding: 16px 18px 18px;
  }

  .testimonial-card-body .message-para {
    font-size: 14px;
    line-height: 1.6;
  }
}

/* [project]/src/app/css/TrustedByHealthcare.css [app-client] (css) */
.trusted-section {
  text-align: center;
  background-color: #f8fbff;
  padding: 100px 20px;
}

.trusted-title {
  color: #4d4d4d;
  letter-spacing: .5px;
  margin-bottom: 60px;
  font-size: 30px;
  font-weight: 600;
  line-height: 1.3;
}

.trusted-content {
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  gap: 40px;
  max-width: 1250px;
  margin: 0 auto;
  display: grid;
}

.trusted-logos {
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  display: grid;
}

.logo-card {
  background: #fff;
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100px;
  transition: transform .2s;
  display: flex;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, .05);
}

.logo-card:hover {
  transform: translateY(-3px);
}

.logo-card a {
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 15px;
  display: flex;
}

.logo-image {
  object-fit: contain;
  width: 80%;
  height: 100%;
}

.logo-card > .logo-image {
  padding: 15px;
}

.trusted-image-container {
  border-radius: 14px;
  width: 100%;
  min-height: 400px;
  position: relative;
  overflow: hidden;
}

.trusted-image-img {
  object-fit: cover;
}

@media (max-width: 1024px) {
  .trusted-content {
    grid-template-columns: 1fr;
  }

  .trusted-image-container {
    order: -1;
    height: 400px;
  }
}

@media (max-width: 600px) {
  .trusted-section {
    padding: 60px 20px;
  }

  .trusted-title {
    font-size: 22px;
  }

  .trusted-logos {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .logo-card {
    height: 80px;
  }
}

/* [project]/src/app/css/DemoCTA.css [app-client] (css) */
.demo-cta-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  justify-content: center;
  align-items: center;
  padding: 3rem;
  display: flex;
}

.demo-cta-container {
  text-align: center;
  color: #fff;
  background-image: url("../media/bgdemo.dab93dc3.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  border-radius: 20px;
  width: 100%;
  max-width: 1000px;
  padding: 1.5rem 3rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, .25), inset 0 0 0 1px rgba(255, 255, 255, .08);
}

.demo-cta-container:before {
  content: "";
  pointer-events: none;
  z-index: 0;
  background: rgba(10, 20, 40, .1);
  border-radius: 20px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.demo-cta-container > * {
  z-index: 1;
  position: relative;
}

.demo-cta-title {
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background: linear-gradient(135deg, #fff 0%, #e8f5ff 100%);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  margin-bottom: 1.5rem;
  font-size: 24px;
  font-weight: 800;
}

.demo-cta-subtitle {
  opacity: .95;
  max-width: 700px;
  margin-bottom: 3rem;
  margin-left: auto;
  margin-right: auto;
  font-size: 16px;
  line-height: 1.8;
}

.demo-cta-subtitle .highlight {
  color: #a8e063;
  font-weight: 600;
}

.demo-cta-button {
  color: #153c7f;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: .5px;
  z-index: 1;
  background: linear-gradient(135deg, #a8e063 0%, #92d050 100%);
  border: none;
  border-radius: 50px;
  padding: 1.1rem 3rem;
  font-size: max(1.05rem, min(2.5vw, 1.2rem));
  font-weight: 700;
  text-decoration: none;
  transition: all .4s;
  display: inline-block;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(168, 224, 99, .4);
}

.demo-cta-button:before {
  content: "";
  background: linear-gradient(90deg, rgba(0, 0, 0, 0), rgba(255, 255, 255, .3), rgba(0, 0, 0, 0));
  width: 100%;
  height: 100%;
  transition: left .6s;
  position: absolute;
  top: 0;
  left: -100%;
}

.demo-cta-button:hover:before {
  left: 100%;
}

.demo-cta-button:hover {
  background: linear-gradient(135deg, #92d050 0%, #7bb830 100%);
  transform: translateY(-4px)scale(1.03);
  box-shadow: 0 20px 40px rgba(168, 224, 99, .5);
}

.demo-cta-button:focus {
  outline: none;
  box-shadow: 0 0 0 4px rgba(168, 224, 99, .4);
}

@media (max-width: 1024px) {
  .demo-cta-container {
    margin: 0 1rem;
    padding: 4rem 2.5rem;
  }
}

@media (max-width: 768px) {
  .demo-cta-section {
    padding: 4rem 1.5rem;
  }

  .demo-cta-container {
    padding: 3.5rem 2rem;
  }
}

@media (max-width: 480px) {
  .demo-cta-section {
    padding: 3rem 1rem;
  }

  .demo-cta-container {
    border-radius: 16px;
    padding: 3rem 1.5rem;
  }

  .demo-cta-button {
    width: 100%;
    max-width: 300px;
    padding: 1rem 2rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
  }
}

/*# sourceMappingURL=src_app_css_aa6cf08b._.css.map*/