/* [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;
  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;
  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/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 100px;
}

.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: #f1f1f1;
  max-width: 1600px;
  margin-bottom: 60px;
  margin-left: auto;
  margin-right: auto;
  font-size: 18px;
}

.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: 40px;
  display: grid;
}

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

.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;
}

.right-feature-column .side-card:last-child {
  flex: 1;
}

.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;
  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) {
  .kf-arch-card-header {
    border-bottom: 1px solid #e5e7eb;
    flex-direction: row;
    align-items: stretch;
    display: flex;
  }

  .kf-arch-illustration {
    border-right: 1px solid #e5e7eb;
    flex-shrink: 0;
    width: 42%;
  }
}

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

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

  .right-feature-column {
    flex-direction: column;
    gap: 24px;
    display: flex;
  }

  .kf-arch-card-header {
    flex-direction: column;
    display: flex;
  }

  .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: 16px;
  flex-direction: column;
  width: 100%;
  max-width: 100%;
  display: flex;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, .04);
}

.kf-arch-illustration {
  justify-content: center;
  align-items: center;
  height: 200px;
  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: linear-gradient(135deg, rgba(46, 125, 50, .05), rgba(46, 125, 50, .15));
}

.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: linear-gradient(135deg, rgba(21, 101, 192, .05), rgba(21, 101, 192, .15));
}

.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: linear-gradient(135deg, rgba(46, 125, 50, .05), rgba(46, 125, 50, .15));
}

.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;
  align-items: center;
  margin: 12px 20px 16px;
  display: flex;
}

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

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

.kf-arch-divider span {
  letter-spacing: .5px;
  padding: 0 12px;
  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: 0 20px 20px;
  display: flex;
}

.qapi-card .kf-arch-list {
  justify-content: space-between;
  padding-bottom: 24px;
}

.qapi-card .feature-link:last-child {
  margin-bottom: 0;
}

.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;
}

.footer-strip {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  max-width: 1440px;
  min-height: auto;
  margin-left: auto;
  margin-right: auto;
  padding: 16px 40px;
  display: flex;
  box-shadow: 0 4px 20px rgba(0, 0, 0, .03);
}

.footer-strip-text {
  white-space: nowrap;
  color: #4b5563;
  flex: 1;
  font-size: 22px;
  line-height: 1.3;
}

.footer-strip-text strong {
  letter-spacing: .5px;
  font-family: Poppins, sans-serif;
  font-weight: normal;
}

.footer-strip-text .logo-care {
  color: #153c7f;
  font-weight: 500;
}

.footer-strip-text .logo-ascendium {
  color: #7cc142;
  font-weight: 800;
}

.footer-strip-image {
  object-fit: contain;
  transform-origin: 100%;
  flex-shrink: 0;
  width: 160px;
  height: 80px;
  transform: scale(1.6);
}

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

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

  .right-feature-column {
    flex-direction: column;
    gap: 24px;
    display: flex;
  }

  .footer-strip-text {
    white-space: normal;
    font-size: 18px;
  }
}

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

  .footer-strip {
    text-align: center;
    flex-direction: column;
    gap: 16px;
    padding: 24px;
  }
}

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