﻿@charset "UTF-8";
/* Corporate Design Colors variables */
/* ── Reconnect Modal ────────────────────────────── */
.components-reconnect-first-attempt-visible,
.components-reconnect-repeated-attempt-visible,
.components-reconnect-failed-visible,
.components-pause-visible,
.components-resume-failed-visible,
.components-rejoining-animation {
  display: none;
}

#components-reconnect-modal.components-reconnect-show .components-reconnect-first-attempt-visible,
#components-reconnect-modal.components-reconnect-show .components-rejoining-animation,
#components-reconnect-modal.components-reconnect-paused .components-pause-visible,
#components-reconnect-modal.components-reconnect-resume-failed .components-resume-failed-visible,
#components-reconnect-modal.components-reconnect-retrying,
#components-reconnect-modal.components-reconnect-retrying .components-reconnect-repeated-attempt-visible,
#components-reconnect-modal.components-reconnect-retrying .components-rejoining-animation,
#components-reconnect-modal.components-reconnect-failed,
#components-reconnect-modal.components-reconnect-failed .components-reconnect-failed-visible {
  display: block;
}

#components-reconnect-modal {
  background-color: white;
  width: 20rem;
  margin: 20vh auto;
  padding: 2rem;
  border: 0;
  border-radius: 0.5rem;
  box-shadow: 0 3px 6px 2px rgba(0, 0, 0, 0.3);
  opacity: 0;
  transition: display 0.5s allow-discrete, overlay 0.5s allow-discrete;
  animation: components-reconnect-modal-fadeOutOpacity 0.5s both;
}
#components-reconnect-modal[open] {
  animation: components-reconnect-modal-slideUp 1.5s cubic-bezier(0.05, 0.89, 0.25, 1.02) 0.3s, components-reconnect-modal-fadeInOpacity 0.5s ease-in-out 0.3s;
  animation-fill-mode: both;
}

#components-reconnect-modal::backdrop {
  background-color: rgba(0, 0, 0, 0.4);
  animation: components-reconnect-modal-fadeInOpacity 0.5s ease-in-out;
  opacity: 1;
}

@keyframes components-reconnect-modal-slideUp {
  0% {
    transform: translateY(30px) scale(0.95);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes components-reconnect-modal-fadeInOpacity {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes components-reconnect-modal-fadeOutOpacity {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.components-rejoining-animation {
  position: relative;
  width: 80px;
  height: 80px;
}

.components-rejoining-animation div {
  position: absolute;
  border: 3px solid #0087ff;
  opacity: 1;
  border-radius: 50%;
  animation: components-rejoining-animation 1.5s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

.components-rejoining-animation div:nth-child(2) {
  animation-delay: -0.5s;
}

@keyframes components-rejoining-animation {
  0% {
    top: 40px;
    left: 40px;
    width: 0;
    height: 0;
    opacity: 0;
  }
  4.9% {
    top: 40px;
    left: 40px;
    width: 0;
    height: 0;
    opacity: 0;
  }
  5% {
    top: 40px;
    left: 40px;
    width: 0;
    height: 0;
    opacity: 1;
  }
  100% {
    top: 0px;
    left: 0px;
    width: 80px;
    height: 80px;
    opacity: 0;
  }
}
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: #fff;
}

/* ── Reconnect Modal ────────────────────────────── */
.components-reconnect-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

#components-reconnect-modal p {
  margin: 0;
  text-align: center;
}

#components-reconnect-modal button {
  border: 0;
  background-color: #6b9ed2;
  color: #FFF;
  padding: 4px 24px;
  border-radius: 4px;
}

#components-reconnect-modal button:hover {
  background-color: #3b6ea2;
}

#components-reconnect-modal button:active {
  background-color: #6b9ed2;
}

/* ── Error ────────────────────────────── */
.error-icon {
  font-size: 4rem;
  color: #E8ECF0 !important;
}

.error-request-id {
  color: #9A9AB0;
}

/* ── Not Found ────────────────────────────── */
.notfound-code {
  font-size: 6rem;
  font-weight: 800 !important;
  color: #E8ECF0 !important;
  line-height: 1 !important;
}

@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/roboto-v51-latin-regular.woff2") format("woff2");
}
body {
  font-family: "Roboto", sans-serif;
  color: #000;
}

.body-text {
  color: #5A5A7A;
  line-height: 1.8;
}

.highlight {
  color: #313F49;
}

.content-card {
  border-radius: 12px !important;
  height: 100%;
}

.content-card-text {
  color: #5A5A7A;
  line-height: 1.7;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  border-top: 1px solid #E8ECF0;
  box-shadow: 0 -4px 32px rgba(49, 63, 73, 0.12);
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 9000;
  padding: 16px 0 24px 0;
}
.cookie-banner .mud-container {
  max-width: 100% !important;
  padding-left: 24px !important;
  padding-right: 24px !important;
}

.cookie-banner--up {
  transform: translateY(0);
}

.cookie-banner-container {
  display: flex;
  align-items: center;
  gap: 48px;
}

.cookie-banner-text {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
  min-width: 0;
}

.cookie-banner-header {
  display: flex;
  align-items: center;
  gap: 10px;
}

.cookie-banner-icon {
  color: #F7931E !important;
  font-size: 1.4rem !important;
  flex-shrink: 0;
}

.cookie-banner-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  flex-shrink: 0;
  flex-wrap: wrap-reverse;
}

.cta-banner {
  background: linear-gradient(135deg, #313F49, #31526b);
  padding: 64px 16px;
  color: #FFF;
}

.cta-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.cta-banner-text {
  color: #FFF !important;
  flex: 1;
  min-width: 280px;
}

.cta-banner-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.cta-btn-outline {
  color: #FFF !important;
  border-color: rgba(255, 255, 255, 0.6) !important;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}

.feature-icon {
  color: #313F49;
  margin-top: 2px;
  flex-shrink: 0;
}

.feature-logo {
  height: 28px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
  flex-shrink: 0;
}

.feature-title {
  font-weight: 700 !important;
  color: #313F49 !important;
}

.feature-text {
  color: #5A5A7A;
}

.gradient-panel {
  border-radius: 16px !important;
  overflow: hidden;
}

.gradient-panel-header {
  padding: 32px;
  color: #FFF;
  background: linear-gradient(135deg, #313F49, #31526b);
}

.gradient-panel-icon {
  font-size: 3rem;
  opacity: 0.9;
  margin-bottom: 16px;
}

.gradient-panel-title {
  color: #FFF !important;
  font-weight: 700 !important;
}

.gradient-panel-body {
  padding: 24px;
}

.home-hero {
  background: linear-gradient(135deg, #313F49 0%, #31526b 60%, #313F49 100%);
  height: calc(100vh - 210px);
  display: flex;
  align-items: center;
  padding: 20px 16px 60px 16px;
  color: #FFF;
  position: relative;
  overflow: hidden;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  background: rgba(247, 147, 30, 0.08);
  color: #E9993E;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 30px;
}

.hero-headline {
  color: #FFF !important;
  font-weight: 800 !important;
  line-height: 1.15;
  margin-bottom: 24px;
  max-width: 780px;
}

.hero-subline {
  color: rgba(255, 255, 255, 0.8) !important;
  font-weight: 400 !important;
  max-width: 640px;
  line-height: 1.7;
  margin-bottom: 40px;
}

.hero-btn-outline {
  color: #FFF !important;
  border-color: rgba(255, 255, 255, 0.55) !important;
}

.hero-btn-text {
  color: rgba(255, 255, 255, 0.75) !important;
}

.page-hero {
  background: linear-gradient(135deg, #313F49, #31526b);
  color: white;
  padding: 64px 16px;
}

.page-hero-breadcrumbs {
  opacity: 0.7;
  margin-bottom: 16px;
}

.page-hero-breadcrumbs .mud-breadcrumb-item {
  color: rgba(255, 255, 255, 0.8) !important;
}

.page-hero-breadcrumbs .mud-breadcrumb-separator {
  color: rgba(255, 255, 255, 0.4) !important;
}

.page-hero-breadcrumbs .mud-link {
  color: rgba(255, 255, 255, 0.8) !important;
}

.page-hero-title {
  color: white !important;
  font-weight: 700 !important;
  margin-bottom: 16px;
}

.page-hero-subtitle {
  color: rgba(255, 255, 255, 0.85) !important;
  max-width: 640px;
  line-height: 1.6;
}

.breadcrumb-sep {
  color: rgba(255, 255, 255, 0.4);
  margin: 0 4px;
}

.breadcrumb-current {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
}

.breadcrumb-link {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.875rem;
  text-decoration: none;
}

.service-card {
  width: 100%;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  border-radius: 12px !important;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(49, 63, 73, 0.12) !important;
}

.service-card-content {
  flex-grow: 1;
}

.service-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(49, 63, 73, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-card-content .card-title {
  font-weight: 600 !important;
}

.service-card-text {
  color: #5A5A7A;
  line-height: 1.6;
}

.ht-footer {
  background: #111C24;
  color: rgba(255, 255, 255, 0.85);
  padding: 64px 0 0;
}

.footer-logo {
  font-size: 1.25rem;
  font-weight: 700;
  color: #FFF;
  letter-spacing: 0.05em;
}

.footer-logo span {
  color: #F7931E;
}

.footer-claim {
  color: rgba(255, 255, 255, 0.7) !important;
  font-style: italic;
}

.footer-location {
  opacity: 0.7;
}

.footer-heading {
  color: rgba(255, 255, 255, 0.5) !important;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.75rem !important;
}

.footer-link {
  color: rgba(255, 255, 255, 0.75) !important;
  text-decoration: none !important;
  font-size: 0.875rem;
  transition: color 0.2s;
}

.footer-link:hover {
  color: #F7931E !important;
}

.footer-link-item {
  padding: 2px 0 !important;
}

.footer-email-icon {
  vertical-align: middle;
}

.footer-email-link {
  color: inherit;
  text-decoration: none;
}

.footer-divider {
  border-color: rgba(255, 255, 255, 0.15) !important;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0 24px;
  flex-wrap: wrap;
  gap: 12px;
}

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

.footer-legal-link {
  color: rgba(255, 255, 255, 0.5) !important;
  text-decoration: none !important;
  font-size: 0.8rem;
  transition: color 0.2s;
}

.footer-legal-link:hover {
  color: rgba(255, 255, 255, 0.85) !important;
}

.footer-legal-sep {
  color: rgba(255, 255, 255, 0.3);
}

.footer-copyright {
  opacity: 0.6;
}

.nav-desktop-menu {
  display: none;
  align-items: center;
  gap: 4px;
}
@media (min-width: 960px) {
  .nav-desktop-menu {
    display: flex;
  }
}

.nav-popover {
  background-color: rgba(49, 63, 73, 0.95);
  backdrop-filter: blur(2px);
  color: #FFF;
}

.nav-logo-img {
  margin-right: 10px;
  filter: brightness(0) invert(1);
}

.nav-icon-custom svg.mud-icon-root {
  fill: #F7931E;
}

.nav-brand-text {
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.05em;
  color: #FFF;
}

.nav-btn {
  font-size: 0.875rem !important;
  letter-spacing: 0.02em !important;
  text-transform: none !important;
  padding: 6px 12px !important;
}

.nav-btn-portal {
  font-size: 0.8rem !important;
  text-transform: none !important;
  border-color: rgba(255, 255, 255, 0.5) !important;
  padding: 4px 10px !important;
  margin-left: 4px !important;
}
.nav-btn-portal svg.mud-icon-root {
  fill: #F7931E;
}

.lang-switch {
  display: flex;
  align-items: center;
  margin-left: 12px;
  font-size: 0.8rem;
  gap: 4px;
}

.lang-link {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  font-weight: 600;
  padding: 2px 0px;
  transition: color 0.2s;
}

.lang-link:hover {
  color: #F7931E;
}

.lang-link.drawer-lang-active {
  color: #FFF;
}

.lang-link.drawer-lang-inactive {
  color: rgba(255, 255, 255, 0.5);
}

.lang-sep {
  color: rgba(255, 255, 255, 0.4);
  margin: 0 2px;
}

.drawer-brand-text {
  font-weight: 700 !important;
}

.drawer-lang-active {
  font-weight: 700;
  color: #313F49;
}

.drawer-lang-inactive {
  color: #9A9AB0;
}

/* ── Content sections ────────────────────────────── */
.error-section {
  min-height: 60vh;
  display: flex;
  align-items: center;
  padding: 80px 16px;
  text-align: center;
}

.content-section {
  padding: 80px 16px;
}

.content-section-alt {
  padding: 80px 16px;
  background: var(--color-bg-alt);
}

.about-intro-grid {
  align-items: center;
}

.about-stat-card {
  text-align: center;
  padding: 28px 20px;
  background: #F5F7FA;
  border-radius: 12px;
}

.about-stat-icon {
  margin-bottom: 8px;
}

.about-stat-value {
  color: #313F49 !important;
  font-weight: 800 !important;
}

.about-stat-label {
  color: #5A5A7A;
}

.about-value-card {
  border-radius: 12px !important;
  height: 100%;
}

.about-card-icon {
  margin-bottom: 12px;
}

.about-card-text {
  color: #5A5A7A;
  line-height: 1.7;
}

.about-subpage-card {
  border-radius: 12px !important;
  padding: 32px;
  height: 100%;
}

.about-subpage-icon {
  margin-bottom: 16px;
}

.about-subpage-text {
  color: #5A5A7A;
  line-height: 1.7;
  margin-bottom: 20px;
}

.about-fam-logo {
  height: 130px;
}

.about-veek-logo {
  height: 120px;
  padding-left: 6px;
}

.about-fam-link {
  color: #5A5A7A !important;
}

.position-card {
  border-radius: 12px !important;
  height: 100%;
}

.position-card-icon {
  margin-bottom: 12px;
}

.position-card-text {
  color: #5A5A7A;
  line-height: 1.6;
  margin-bottom: 12px;
}

.segment-caption {
  color: #9A9AB0;
}

.segment-chip {
  margin-top: 6px;
}

.cloud-pillar {
  padding: 32px;
}

.faq-item {
  border-bottom: 1px solid #E8ECF0;
}

.faq-answer {
  color: #5A5A7A;
  padding: 8px 0;
}

.consulting-info-card {
  border-radius: 16px !important;
  padding: 32px;
}

.agile-role-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  padding: 12px;
  background: #F5F7FA;
  border-radius: 8px;
}

.agile-role-text {
  color: #5A5A7A;
}

.contact-form-card {
  border-radius: 16px !important;
  padding: 40px;
}

.contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-sidebar-card {
  border-radius: 16px !important;
  padding: 28px;
}

.contact-detail-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.contact-detail-row--last {
  margin-bottom: 0;
}

.contact-email-link {
  color: #5A5A7A;
  text-decoration: none;
  font-size: 14px;
}

/* ── About Teaser ────────────────────────────── */
.about-content-grid {
  align-items: center;
}

.about-body-text {
  color: #5A5A7A;
  line-height: 1.8;
  margin-bottom: 32px;
}

.stat-card {
  text-align: center;
  padding: 24px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(49, 63, 73, 0.08);
}

.stat-card .stat-value {
  color: #313F49;
  font-weight: 800;
}

.stat-card .stat-label {
  color: #5A5A7A;
}

/* ── Cleints ────────────────────────────── */
.client-card {
  background: #fff;
  border: 1px solid #E8ECF0;
  border-radius: 12px;
  padding: 32px 24px;
  text-align: center;
  transition: box-shadow 0.2s;
}

.client-card:hover {
  box-shadow: 0 4px 20px rgba(49, 63, 73, 0.1);
}

.client-card-icon {
  margin-bottom: 12px;
}

.client-card-text {
  color: #5A5A7A;
  margin-top: 8px;
}

/* ── Processes ────────────────────────────── */
.process-step {
  text-align: center;
  padding: 24px 16px;
}

.process-step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #313F49;
  color: #FFF;
  font-size: 1.25rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.process-step-arrow {
  color: #E8ECF0;
}

.process-subtitle {
  max-width: 100%;
}

.process-step-title {
  font-weight: 700 !important;
  color: #313F49 !important;
}

.process-step-text {
  color: #5A5A7A;
  margin-top: 4px;
}

/* ── Trust Bar ────────────────────────────── */
.trust-bar {
  background: #F5F7FA;
  padding: 40px 16px;
  border-bottom: 1px solid #E8ECF0;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 8px 0;
}

.trust-badge-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: #313F49;
  color: #FFF;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.trust-badge-title {
  color: #313F49 !important;
  font-weight: 700 !important;
}

.trust-badge-text {
  color: #5A5A7A;
}

.support-level-item {
  margin-bottom: 20px;
}

.support-level-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
}

.support-badge {
  background: #313F49;
  color: #FFF;
  border-radius: 8px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
}

.support-level-text {
  color: #5A5A7A;
  padding-left: 42px;
}

.target-item {
  width: 100%;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 20px;
  background: #F5F7FA;
  border-radius: 12px;
}

.target-icon {
  margin-top: 2px;
  flex-shrink: 0;
}

.target-text {
  color: #000;
  line-height: 1.6;
}

.partner-info-card {
  border-radius: 16px !important;
  padding: 32px;
  background: #F5F7FA !important;
}

.partner-card-text {
  color: #5A5A7A;
  line-height: 1.7;
  margin-bottom: 20px;
}

.partner-info-card .card-title {
  margin-bottom: 20px;
}

.partner-content-section {
  padding: 80px 16px 16px;
}

.empty-section {
  min-height: 42px;
  background: #fff;
}

/* ── Partner logos ticker ───────────────────────── */
@keyframes logos-ticker {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.logos-ticker-section {
  padding: 32px 0;
  overflow: hidden;
  background: #F5F7FA;
  color: #313F49;
}

.logos-ticker-wrapper {
  overflow: hidden;
  width: 100%;
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.logos-ticker-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: logos-ticker 30s linear infinite;
}

.logos-ticker-track:hover {
  animation-play-state: paused;
}

.logo-item {
  display: flex;
  align-items: center;
  height: 72px;
  gap: 12px;
  padding: 0 44px;
  border-right: 1px solid #d0d5da;
  cursor: default;
}

.logo-item:hover {
  opacity: 1;
}

.logo-item-link {
  cursor: pointer;
  color: inherit !important;
}

.logo-badge {
  height: 72px;
  max-width: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.88rem;
  flex-shrink: 0;
}

.logo-name {
  font-weight: 600;
  font-size: 0.88rem;
  white-space: nowrap;
  color: #313F49;
}

.lifecycle-grid {
  align-items: center;
}

.lifecycle-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
}

.lifecycle-number {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #313F49;
  color: #FFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
  font-size: 0.875rem;
}

.lifecycle-phase-text {
  color: #5A5A7A;
}

.card-title {
  font-weight: 700;
  color: #313F49;
  margin-bottom: 0px;
}

.cookie-banner-actions .mud-button-text {
  padding: 6px 16px;
}

.mud-toolbar-appbar {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
}

.mud-appbar {
  padding: 0 16px;
}
