/*!******************************************************************************************************************************************************************************************************************************!*\
  !*** css ../../node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[4].rules[0].oneOf[0].use[1]!../../node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[4].rules[0].oneOf[0].use[2]!./src/styles.css?ngGlobalStyle ***!
  \******************************************************************************************************************************************************************************************************************************/
:root {
  --e-global-color-2951776: #00aeef;
  --e-global-color-833e159: #1d75bf;
  --e-global-color-3a8ab63: #1c2733;
  --brand-gradient: linear-gradient(250deg, var(--e-global-color-2951776) 0%, var(--e-global-color-833e159) 100%);
  --blue-900: #082f5f;
  --blue-800: #154f87;
  --blue-700: var(--e-global-color-833e159);
  --blue-100: #e9f7fd;
  --cyan-600: var(--e-global-color-2951776);
  --ink: var(--e-global-color-3a8ab63);
  --muted: #3f4b59;
  --line: #e8edf2;
  --surface: #ffffff;
  --page: #f7fafc;
  font-family: "Roboto", "Segoe UI", Arial, sans-serif;
}

* { box-sizing: border-box; }
body {
  margin: 0;
  background: var(--page);
  color: var(--ink);
  font-size: 16px;
}

button, input, select, textarea {
  font: inherit;
}

button {
  border: 0;
  cursor: pointer;
}

.app-shell {
  min-height: 100vh;
  display: grid;
  grid-template-rows: auto 1fr auto;
}

.auth-page {
  min-height: 100vh;
  display: grid;
  align-content: center;
  gap: 22px;
  padding: 28px;
  max-width: 560px;
  margin: 0 auto;
  background:
    radial-gradient(circle at top right, rgba(0, 174, 239, .12), transparent 34%),
    var(--page);
}

.site-footer {
  padding: 18px clamp(18px, 5vw, 72px) 28px;
  color: var(--muted);
  text-align: center;
  font-size: .9rem;
}

.auth-page .site-footer {
  padding: 6px 0 0;
}

.loading-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  background: rgba(8, 47, 95, .34);
  backdrop-filter: blur(2px);
}

.loading-card {
  min-width: 190px;
  min-height: 84px;
  display: grid;
  place-items: center;
  gap: 10px;
  padding: 20px 24px;
  border-radius: 8px;
  background: white;
  color: var(--blue-800);
  font-weight: 900;
  box-shadow: 0 24px 70px rgba(8, 47, 95, .28);
}

.loading-spinner {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 4px solid #cdeffc;
  border-top-color: var(--cyan-600);
  animation: loading-spin .8s linear infinite;
}

@keyframes loading-spin {
  to { transform: rotate(360deg); }
}

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

.site-header {
  background: white;
  color: var(--ink);
  min-height: 84px;
  padding: 0 clamp(18px, 5vw, 72px);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
  border-bottom: 1px solid var(--line);
  box-shadow: 0 4px 18px rgba(8, 47, 95, .08);
}

.brand {
  display: flex;
  align-items: center;
  min-width: 180px;
}

.brand-logo {
  display: block;
  width: min(198px, 56vw);
  height: auto;
}

.nav-stack {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  min-width: 0;
}

.menu-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: white;
  place-items: center;
  gap: 4px;
  padding: 9px;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: #062a52;
}

.nav-item {
  color: #062a52;
  text-decoration: none;
  padding: 31px 0 29px;
  border-bottom: 2px solid transparent;
  font-weight: 500;
}

.nav-item.active, .nav-item:hover {
  color: var(--cyan-600);
  border-bottom-color: var(--cyan-600);
}

.nav-menu {
  position: relative;
}

.nav-submenu {
  position: absolute;
  top: calc(100% - 8px);
  left: 0;
  min-width: 190px;
  display: none;
  z-index: 9;
  padding: 8px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(8, 47, 95, .16);
}

.nav-menu:hover .nav-submenu,
.nav-menu:focus-within .nav-submenu {
  display: grid;
}

.nav-submenu a {
  padding: 10px 12px;
  border-radius: 8px;
  color: #062a52;
  text-decoration: none;
  font-weight: 700;
}

.nav-submenu a:hover {
  background: #eef9fe;
  color: var(--cyan-600);
}

.main {
  min-width: 0;
}

.header-actions {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  min-width: 0;
}

.avatar-button {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--brand-gradient);
  color: white;
  font-weight: 800;
  text-transform: uppercase;
  box-shadow: 0 8px 18px rgba(29, 117, 191, .2);
}

.avatar-button:hover {
  filter: brightness(1.03);
}

.notification-button {
  position: relative;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #fff1f0;
  color: #b42318;
  border: 1px solid #ffb8b0;
}

.notification-button svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.notification-dot {
  position: absolute;
  top: -5px;
  right: -4px;
  min-width: 18px;
  height: 18px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  padding: 0 5px;
  background: #d92d20;
  color: white;
  border: 2px solid white;
  font-size: .68rem;
  font-weight: 900;
}

.notification-menu {
  position: absolute;
  right: 52px;
  top: calc(100% + 12px);
  width: min(340px, calc(100vw - 36px));
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(8, 47, 95, .16);
  padding: 10px;
  z-index: 6;
}

.notification-title {
  padding: 8px 10px;
  color: var(--ink);
  font-weight: 900;
}

.notification-item {
  width: 100%;
  display: grid;
  gap: 4px;
  text-align: left;
  background: white;
  border-radius: 8px;
  padding: 10px;
  color: var(--ink);
}

.notification-item:hover {
  background: #eef9fe;
}

.notification-item span,
.notification-empty {
  color: var(--muted);
  font-size: .88rem;
}

.notification-empty {
  padding: 10px;
}

.account-menu {
  position: absolute;
  right: 0;
  top: calc(100% + 12px);
  width: 250px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(8, 47, 95, .16);
  padding: 10px;
  z-index: 5;
}

.account-email {
  color: var(--muted);
  font-size: .9rem;
  padding: 8px 10px 12px;
  overflow-wrap: anywhere;
}

.account-menu-item {
  width: 100%;
  text-align: left;
  border-radius: 8px;
  background: white;
  color: var(--ink);
  padding: 10px;
  font-weight: 700;
}

.account-menu-item:hover {
  background: #eef9fe;
  color: var(--cyan-600);
}

.account-menu-item.primary {
  background: var(--brand-gradient);
  color: white;
  text-align: center;
}

.account-menu-item.signout {
  color: #9f1f17;
}

.account-menu-item.signout:hover {
  background: #fff1f0;
  color: #9f1f17;
}

.account-menu-divider {
  height: 1px;
  background: var(--line);
  margin: 8px 0;
}

.account-settings {
  display: grid;
  gap: 10px;
  padding: 8px 0 10px;
}

.account-settings label {
  display: grid;
  gap: 5px;
  color: var(--muted);
  font-size: .82rem;
  font-weight: 800;
}

.account-settings input {
  min-height: 38px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 8px 10px;
  font: inherit;
}

.account-settings.wide {
  gap: 14px;
}

.account-message {
  color: var(--muted);
  font-size: .85rem;
  line-height: 1.35;
}

.required-account-card {
  margin-bottom: 22px;
  border-color: #bcecff;
  background: linear-gradient(180deg, #ffffff 0%, #f5fbff 100%);
}

.birthday-banner {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 22px;
  margin-bottom: 22px;
  padding: 24px;
  border-radius: 8px;
  border: 1px solid #bcecff;
  background:
    radial-gradient(circle at 12% 18%, rgba(0, 174, 239, .16), transparent 28%),
    linear-gradient(135deg, #ffffff 0%, #eef9fe 58%, #f7fcff 100%);
  box-shadow: 0 18px 44px rgba(8, 47, 95, .1);
}

.birthday-banner h1 {
  margin: 4px 0 8px;
  color: #062a52;
  font-size: clamp(1.55rem, 3vw, 2.2rem);
}

.birthday-banner p {
  margin: 0;
  max-width: 780px;
  color: #334456;
  line-height: 1.65;
}

.birthday-kicker {
  color: var(--cyan-600) !important;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .04em;
  font-size: .78rem;
}

.birthday-cake {
  position: relative;
  width: 96px;
  height: 96px;
  display: grid;
  place-items: center;
  animation: birthday-bounce 1.8s ease-in-out infinite;
}

.cake-base,
.cake-top,
.candle,
.flame {
  position: absolute;
  display: block;
}

.cake-base {
  bottom: 14px;
  width: 78px;
  height: 38px;
  border-radius: 10px 10px 14px 14px;
  background: linear-gradient(250deg, var(--cyan-600) 0%, var(--blue-700) 100%);
  box-shadow: inset 0 -8px 0 rgba(6, 42, 82, .14);
}

.cake-top {
  bottom: 48px;
  width: 68px;
  height: 22px;
  border-radius: 12px;
  background: #ffffff;
  border: 3px solid #bcecff;
}

.candle {
  bottom: 70px;
  width: 10px;
  height: 24px;
  border-radius: 4px;
  background: repeating-linear-gradient(45deg, #ffffff 0 5px, #00aeef 5px 10px);
}

.flame {
  bottom: 93px;
  width: 16px;
  height: 20px;
  border-radius: 50% 50% 50% 0;
  background: #ffb703;
  transform: rotate(-35deg);
  animation: candle-flicker .8s ease-in-out infinite alternate;
}

@keyframes birthday-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

@keyframes candle-flicker {
  from { transform: rotate(-35deg) scale(1); opacity: .9; }
  to { transform: rotate(-28deg) scale(1.12); opacity: 1; }
}

.content {
  padding: 36px clamp(18px, 5vw, 72px) 56px;
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
}

.hero-band {
  background: var(--brand-gradient);
  color: white;
  padding: 34px;
  border-radius: 8px;
  display: grid;
  gap: 10px;
  margin-bottom: 24px;
  box-shadow: 0 20px 48px rgba(29, 117, 191, .2);
}

.hero-band h1, .page-title h1 {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.1;
  font-weight: 800;
  color: inherit;
}

.hero-band p, .page-title p {
  margin: 0;
  color: rgba(255,255,255,.92);
  max-width: 780px;
  line-height: 1.7;
}

.page-title p {
  color: var(--muted);
}

.grid {
  display: grid;
  gap: 18px;
}

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

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

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  box-shadow: 0 10px 30px rgba(8, 47, 95, .06);
}

.login-card {
  width: min(100%, 480px);
}

.card h2, .card h3 {
  margin-top: 0;
  color: var(--ink);
  font-weight: 800;
}

.stat {
  display: grid;
  gap: 8px;
}

.stat strong {
  font-size: 2rem;
  color: var(--cyan-600);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.field {
  display: grid;
  gap: 7px;
}

.field.full {
  grid-column: 1 / -1;
}

label {
  font-weight: 700;
  color: var(--ink);
}

.field-hint {
  color: var(--muted);
  font-size: .84rem;
}

input, select, textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 11px 12px;
  background: white;
  color: var(--ink);
}

input:focus, select:focus, textarea:focus {
  border-color: var(--cyan-600);
  box-shadow: 0 0 0 3px rgba(0, 174, 239, .14);
  outline: none;
}

input.control-error, select.control-error, textarea.control-error {
  border-color: #d92d20;
  box-shadow: 0 0 0 3px rgba(217, 45, 32, .12);
}

textarea {
  min-height: 108px;
  resize: vertical;
}

.button-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}

.action-icons {
  display: flex;
  align-items: center;
  gap: 7px;
  flex-wrap: nowrap;
}

.section-heading-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.icon-button {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #eef9fe;
  color: var(--blue-800);
  border: 1px solid #caecfa;
  font-size: 1rem;
  font-weight: 900;
  line-height: 1;
  box-shadow: none;
}

.icon-button:hover {
  background: var(--brand-gradient);
  color: white;
  border-color: transparent;
}

.icon-button.danger {
  background: #fff1f0;
  color: #b42318;
  border-color: #ffb8b0;
}

.icon-button.danger:hover {
  background: #b42318;
  color: white;
}

.icon-button:disabled {
  cursor: not-allowed;
  opacity: .45;
}

.download-arrow {
  position: relative;
  display: block;
  width: 16px;
  height: 18px;
}

.download-arrow::before {
  content: "";
  position: absolute;
  left: 7px;
  top: 2px;
  width: 2px;
  height: 11px;
  border-radius: 999px;
  background: currentColor;
}

.download-arrow::after {
  content: "";
  position: absolute;
  left: 3px;
  top: 8px;
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
}

.check-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
}

.check-row input {
  width: auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 8px;
  background: var(--brand-gradient);
  color: white;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 10px 22px rgba(29, 117, 191, .18);
}

.btn.secondary {
  background: #eef9fe;
  color: var(--blue-800);
  box-shadow: none;
  border: 1px solid #caecfa;
}

.btn.accent {
  background: var(--brand-gradient);
}

.btn.danger {
  background: #b42318;
  box-shadow: 0 10px 22px rgba(180, 35, 24, .14);
}

.btn:disabled {
  cursor: not-allowed;
  opacity: .55;
  box-shadow: none;
}

.provider-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-size: .86rem;
}

.provider-divider::before,
.provider-divider::after {
  content: "";
  height: 1px;
  flex: 1;
  background: var(--line);
}

.provider-icons {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.provider-icon-button {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: white;
  border: 1px solid var(--line);
  box-shadow: 0 8px 18px rgba(8, 47, 95, .08);
}

.provider-icon-button:hover {
  border-color: #bcecff;
  box-shadow: 0 10px 24px rgba(8, 47, 95, .12);
  transform: translateY(-1px);
}

.gmail-mark {
  width: 25px;
  height: 25px;
}

.microsoft-mark {
  display: grid;
  grid-template-columns: repeat(2, 10px);
  grid-template-rows: repeat(2, 10px);
  gap: 2px;
}

.microsoft-mark i {
  display: block;
  width: 10px;
  height: 10px;
}

.microsoft-mark i:nth-child(1) { background: #f25022; }
.microsoft-mark i:nth-child(2) { background: #7fba00; }
.microsoft-mark i:nth-child(3) { background: #00a4ef; }
.microsoft-mark i:nth-child(4) { background: #ffb900; }

.linkedin-mark {
  width: 24px;
  height: 24px;
  border-radius: 4px;
  display: grid;
  place-items: center;
  background: #0a66c2;
  color: white;
  font-family: Arial, sans-serif;
  font-size: .9rem;
  font-weight: 900;
  line-height: 1;
}

.tabs {
  display: flex;
  gap: 8px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 18px;
  overflow-x: auto;
}

.tab {
  background: transparent;
  color: var(--muted);
  padding: 12px 14px;
  border-bottom: 3px solid transparent;
  white-space: nowrap;
}

.tab.active {
  color: var(--cyan-600);
  border-color: var(--cyan-600);
  font-weight: 800;
}

.table-wrap {
  overflow-x: auto;
}

.table-toolbar,
.pagination-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.table-toolbar {
  color: var(--muted);
  font-weight: 700;
}

.column-menu {
  position: relative;
}

.column-menu summary {
  cursor: pointer;
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--blue-800);
  font-weight: 800;
  list-style: none;
}

.column-menu summary::-webkit-details-marker {
  display: none;
}

.column-menu-panel {
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  z-index: 10;
  display: grid;
  gap: 8px;
  width: 220px;
  max-height: 300px;
  overflow: auto;
  padding: 10px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(8, 47, 95, .16);
}

.column-menu-panel label {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
}

.table-toolbar label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.table-toolbar select {
  width: auto;
  min-width: 82px;
  padding: 7px 10px;
}

.pagination-row {
  color: var(--muted);
  font-weight: 800;
}

table {
  width: 100%;
  border-collapse: collapse;
}

th, td {
  border-bottom: 1px solid var(--line);
  padding: 12px;
  text-align: left;
  vertical-align: top;
}

.clickable-row {
  cursor: pointer;
}

.clickable-row:hover,
.selected-row {
  background: #eef9fe;
}

th {
  color: var(--blue-800);
  font-size: .86rem;
}

.pill {
  display: inline-flex;
  border-radius: 999px;
  padding: 4px 9px;
  background: #e6f8fe;
  color: var(--e-global-color-833e159);
  font-weight: 800;
  font-size: .8rem;
}

.pill.status-disabled {
  background: #fff1f0;
  color: #b42318;
}

.drawer-backdrop {
  position: fixed;
  inset: 0;
  z-index: 40;
  background: rgba(6, 42, 82, .28);
}

.slide-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 41;
  width: min(760px, calc(100vw - 22px));
  height: 100vh;
  overflow: auto;
  padding: 24px;
  background: white;
  border-left: 1px solid var(--line);
  box-shadow: -18px 0 44px rgba(8, 47, 95, .18);
  animation: drawer-in .18s ease-out;
}

.slide-drawer.compact {
  width: min(520px, calc(100vw - 22px));
}

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

@keyframes drawer-in {
  from { transform: translateX(24px); opacity: .7; }
  to { transform: translateX(0); opacity: 1; }
}

.notice {
  padding: 12px 14px;
  border-radius: 8px;
  background: #eaf8fe;
  color: #08486d;
  border: 1px solid #bcecff;
}

.error-notice {
  background: #fff1f0;
  color: #9f1f17;
  border-color: #ffb8b0;
}

@media (max-width: 860px) {
  .app-shell {
    grid-template-columns: 1fr;
  }
  .site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    min-height: 0;
    padding: 14px 18px;
    grid-template-columns: auto 1fr auto;
    gap: 12px;
  }
  .brand {
    min-width: 0;
    grid-column: 2;
    grid-row: 1;
    justify-content: center;
  }
  .brand-logo {
    width: min(168px, 42vw);
  }
  .menu-toggle {
    display: grid;
    justify-self: start;
    grid-column: 1;
    grid-row: 1;
  }
  .nav-stack {
    grid-column: 1 / -1;
    display: none;
    width: 100%;
    gap: 0;
    justify-content: stretch;
    align-items: stretch;
    padding: 8px;
    background: white;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 16px 34px rgba(8, 47, 95, .14);
  }
  .nav-stack.open {
    display: grid;
  }
  .nav-item {
    padding: 12px;
    border-bottom: 0;
    border-radius: 8px;
  }
  .nav-item.active,
  .nav-item:hover {
    background: #eef9fe;
  }
  .nav-submenu {
    position: static;
    display: grid;
    box-shadow: none;
    border: 0;
    padding: 0;
    min-width: 0;
  }
  .nav-submenu a {
    padding: 12px;
    border-radius: 8px;
    font-weight: 500;
  }
  .nav-submenu a:hover {
    background: #eef9fe;
  }
  .header-actions {
    justify-self: end;
    grid-column: 3;
    grid-row: 1;
  }
  .notification-menu,
  .account-menu {
    right: 0;
    top: calc(100% + 10px);
  }
  .content {
    padding: 18px;
  }
  .birthday-banner {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }
  .grid.two, .grid.three, .form-grid {
    grid-template-columns: 1fr;
  }
}

.landing-page {
  --landing-blue: #49a5e6;
  --landing-blue-dark: #2f86d8;
  --landing-navy: #14213d;
  --landing-ink: #29364a;
  --landing-soft: #f4f8fc;
  --landing-line: #dfe7ef;
  min-height: 100vh;
  overflow-x: hidden;
  background: #ffffff;
  color: var(--landing-ink);
  font-family: "Roboto", "Segoe UI", Arial, sans-serif;
  line-height: 1.65;
}

.landing-page a {
  color: inherit;
  text-decoration: none;
}

.landing-page img {
  display: block;
  max-width: 100%;
}

.landing-container {
  width: min(1140px, calc(100% - 40px));
  margin: 0 auto;
}

.landing-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  background: rgba(255, 255, 255, .03);
  border-bottom: 1px solid rgba(255, 255, 255, .22);
  transition: background .42s ease, box-shadow .42s ease, border-color .42s ease;
}

.landing-header.scrolled {
  background: #ffffff;
  border-bottom-color: rgba(108, 144, 185, .18);
  box-shadow: 0 4px 22px rgba(18, 31, 56, .07);
}

.landing-nav-wrap {
  width: min(1140px, calc(100% - 40px));
  min-height: 90px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
}

.landing-logo img {
  width: 178px;
}

.landing-nav {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 2px;
  margin-left: auto;
  --indicator-x: 0px;
  --indicator-w: 0px;
  --indicator-opacity: 0;
}

.landing-nav::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
  width: var(--indicator-w);
  height: 2px;
  opacity: var(--indicator-opacity);
  transform: translateX(var(--indicator-x));
  background: var(--landing-blue);
  transition: transform .28s ease, width .28s ease, opacity .22s ease;
}

.landing-nav > a,
.landing-dropdown-label {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  padding: 31px 13px;
  color: #ffffff;
  font-weight: 500;
  font-size: 16px;
  text-shadow: 0 1px 2px rgba(12, 25, 54, .35);
  transition: color .17s ease;
  background: transparent !important;
}

.landing-header.on-image .landing-nav > a,
.landing-header.on-image .landing-dropdown-label {
  color: #ffffff;
}

.landing-header.scrolled .landing-nav > a,
.landing-header.scrolled .landing-dropdown-label {
  color: #031a34;
  text-shadow: none;
}

.landing-nav > a:hover,
.landing-nav > a.active,
.landing-dropdown.active .landing-dropdown-label,
.landing-dropdown:hover .landing-dropdown-label {
  color: var(--landing-blue);
}

.landing-dropdown {
  position: relative;
  z-index: 5;
}

.landing-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 260px;
  padding: 10px 0;
  background: #ffffff;
  border: 1px solid rgba(73, 165, 230, .16);
  box-shadow: 0 18px 44px rgba(18, 31, 56, .18);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: .16s ease;
  z-index: 1002;
}

.landing-dropdown:hover .landing-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.landing-dropdown-menu a {
  display: block;
  padding: 11px 18px;
  color: #192848;
  font-weight: 600;
}

.landing-dropdown-menu a:hover {
  color: var(--landing-blue);
  background: #f1fcff;
}

.landing-dropdown-menu a.active {
  color: var(--landing-blue);
  background: #f1fcff;
}

.landing-page .landing-signin {
  flex: 0 0 auto;
  min-height: 42px;
  padding: 9px 20px;
  margin-left: 22px;
  border: 1px solid rgba(255, 255, 255, .72);
  border-radius: 999px;
  background: rgba(255, 255, 255, .12);
  color: #ffffff;
  font-weight: 700;
  text-shadow: 0 1px 2px rgba(12, 25, 54, .35);
  transition: color .18s ease, background .18s ease, border-color .18s ease, box-shadow .18s ease;
  position: relative;
  z-index: 3;
}

.landing-header.scrolled .landing-signin {
  color: #ffffff;
  background: var(--landing-blue);
  border-color: var(--landing-blue);
  text-shadow: none;
}

.landing-page .landing-signin:hover {
  color: var(--landing-blue);
  background: #ffffff;
  border-color: #ffffff;
  text-shadow: none;
}

.landing-header.scrolled .landing-signin:hover {
  color: var(--landing-blue);
  background: #ffffff;
  border-color: var(--landing-blue);
  box-shadow: 0 10px 28px rgba(73, 165, 230, .22);
}

.landing-header.on-image .landing-signin:hover {
  color: var(--landing-blue);
  background: #ffffff;
  border-color: #ffffff;
}

.landing-menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  border: 1px solid var(--landing-line);
  background: #ffffff;
  place-items: center;
  gap: 4px;
  padding: 9px;
}

.landing-menu-toggle span {
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: #062a52;
}

.landing-hero {
  position: relative;
  min-height: 838px;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: #ffffff;
}

.landing-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(8, 19, 45, .34), rgba(8, 19, 45, .18));
}

.landing-hero-bg,
.landing-hero-slide {
  position: absolute;
  inset: 0;
}

.landing-hero-slide {
  background-position: center;
  background-size: cover;
  opacity: 0;
  transform: scale(1.02);
  animation: landing-hero-fade 20s ease-in-out infinite;
}

.landing-hero-slide-1 { background-image: url('heroDash.d2935fee5605fdfc.jpg'); }
.landing-hero-slide-2 { background-image: url('heroSoftware.7b0d83dd0d52a53a.jpg'); animation-delay: 5s; }
.landing-hero-slide-3 { background-image: url('heroCloud.f12025d7a16c9fea.jpg'); animation-delay: 10s; }
.landing-hero-slide-4 { background-image: url('heroData.c2fa6183ee1674cc.jpg'); animation-delay: 15s; }

.landing-hero .landing-container {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
  padding-top: 88px;
  text-align: center;
}

.landing-hero h1 {
  max-width: 980px;
  margin: 0 0 28px;
  color: #ffffff;
  font-family: "Kanit", "Barlow", "Roboto", sans-serif;
  font-size: clamp(44px, 5vw, 66px);
  font-style: italic;
  font-weight: 800;
  line-height: 1.2;
  text-shadow: 0 3px 8px rgba(0, 0, 0, .35);
}

@keyframes landing-hero-fade {
  0% { opacity: 0; transform: translateX(1.2%) scale(1.04); }
  6%, 25% { opacity: 1; transform: translateX(0) scale(1.02); }
  31%, 100% { opacity: 0; transform: translateX(-1.2%) scale(1.04); }
}

.landing-section {
  padding: 96px 0;
}

.landing-page-hero {
  min-height: 500px;
  padding-top: 108px;
  display: grid;
  place-items: center;
  color: #ffffff;
  text-align: center;
  background: linear-gradient(90deg, rgba(3, 22, 43, .86), rgba(3, 22, 43, .78)), var(--page-bg, url('heroCloud.f12025d7a16c9fea.jpg')) center/cover;
}

.landing-page-hero h1 {
  margin: 0 0 14px;
  color: #ffffff;
  font-family: "Barlow", "Roboto", sans-serif;
  font-size: clamp(38px, 5vw, 58px);
  font-weight: 800;
  line-height: 1.08;
}

.landing-breadcrumb {
  color: #ffffff;
  font-weight: 700;
}

.landing-breadcrumb a,
.landing-breadcrumb span {
  color: var(--landing-blue);
}

.landing-soft {
  background: var(--landing-soft);
}

.landing-section h2 {
  margin: 0 0 20px;
  color: var(--landing-navy);
  font-family: "Barlow", "Roboto", sans-serif;
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 800;
  line-height: 1.15;
}

.landing-eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  margin-bottom: 14px;
  padding: 5px 18px;
  border-radius: 999px;
  background: linear-gradient(250deg, var(--landing-blue) 0%, var(--landing-blue-dark) 100%);
  color: #ffffff;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.landing-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  margin-top: 18px;
  padding: 13px 24px;
  border-radius: 4px;
  background: var(--landing-blue);
  color: #ffffff;
  font-weight: 800;
}

.landing-btn:hover {
  background: var(--landing-blue-dark);
}

.landing-split,
.landing-contact-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 54px;
  align-items: center;
}

.landing-prose {
  max-width: 620px;
  font-size: 17px;
}

.landing-image-stack {
  position: relative;
  min-height: 430px;
  isolation: isolate;
}

.landing-image-stack img,
.landing-fixed-image,
.landing-service-card img {
  border-radius: 6px;
  box-shadow: 0 18px 45px rgba(20, 33, 61, .14);
}

.landing-image-stack img:first-child {
  position: absolute;
  top: 0;
  right: 0;
  width: 70%;
  height: 82%;
  object-fit: cover;
}

.landing-image-stack img:last-child {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
  width: 78%;
  height: 48%;
  object-fit: cover;
}

.landing-about-card-grid,
.landing-services-grid,
.landing-jobs-grid {
  display: grid;
  gap: 28px;
}

.landing-about-card-grid {
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
}

.landing-about-card,
.landing-job-card {
  min-height: 260px;
  padding: 38px;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 18px 45px rgba(20, 33, 61, .08);
}

.landing-services-grid {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 42px;
}

.landing-service-card {
  overflow: hidden;
  border: 1px solid var(--landing-line);
  border-radius: 6px;
  background: #ffffff;
  color: inherit;
  transition: transform .25s ease, box-shadow .25s ease;
}

.landing-service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 44px rgba(20, 33, 61, .14);
}

.landing-service-card img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: 0;
  box-shadow: none;
}

.landing-service-card h3,
.landing-job-card h3 {
  margin: 0;
  padding: 22px;
  color: var(--landing-navy);
  font-size: 22px;
}

.landing-job-card p {
  margin: 0;
  padding: 0 22px 22px;
}

.landing-jobs-grid {
  grid-template-columns: repeat(3, 1fr);
}

.landing-clients-section {
  overflow: hidden;
  background: #ffffff;
}

.landing-clients-section .landing-container {
  text-align: center;
}

.landing-clients-section h2 {
  margin-bottom: 34px;
}

.landing-client-carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 12px 0 8px;
}

.landing-client-carousel::before,
.landing-client-carousel::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: min(12vw, 150px);
  pointer-events: none;
}

.landing-client-carousel::before {
  left: 0;
  background: linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
}

.landing-client-carousel::after {
  right: 0;
  background: linear-gradient(270deg, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
}

.landing-client-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: landing-clients-scroll 34s linear infinite;
}

.landing-client-carousel:hover .landing-client-track {
  animation-play-state: paused;
}

.landing-client-logo {
  flex: 0 0 210px;
  height: 104px;
  display: grid;
  place-items: center;
  margin: 0 18px;
  padding: 22px 26px;
  border: 1px solid var(--landing-line);
  border-radius: 6px;
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(20, 33, 61, .07);
}

.landing-client-logo img {
  max-width: 150px;
  max-height: 58px;
  object-fit: contain;
  filter: saturate(.95);
}

@keyframes landing-clients-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.landing-product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px;
  margin-top: 42px;
}

.landing-product-card {
  overflow: hidden;
  display: grid;
  grid-template-rows: auto 1fr;
  border: 1px solid var(--landing-line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 45px rgba(20, 33, 61, .08);
  transition: transform .25s ease, box-shadow .25s ease;
}

.landing-product-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 24px 54px rgba(20, 33, 61, .14);
}

.landing-product-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.landing-product-card > div {
  display: grid;
  align-content: start;
  padding: 28px;
}

.landing-product-card h3,
.landing-product-panel h3,
.landing-workflow-step h3 {
  margin: 0 0 10px;
  color: var(--landing-navy);
  font-size: 24px;
  line-height: 1.2;
}

.landing-product-card p,
.landing-product-panel p,
.landing-workflow-step p,
.landing-product-copy p {
  margin: 0;
}

.landing-product-detail {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 54px;
  align-items: center;
}

.landing-product-copy {
  font-size: 18px;
}

.landing-product-visual {
  position: relative;
  min-height: 420px;
}

.landing-product-visual img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 22px 54px rgba(20, 33, 61, .18);
}

.landing-workflow-overlay {
  position: absolute;
  inset: auto 22px 22px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.landing-workflow-chip {
  display: grid;
  gap: 2px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, .34);
  border-radius: 8px;
  background: rgba(7, 26, 50, .76);
  color: #ffffff;
  backdrop-filter: blur(8px);
  animation: landing-float-chip 4.4s ease-in-out infinite;
}

.landing-workflow-chip:nth-child(2),
.landing-workflow-chip:nth-child(4) {
  animation-delay: .7s;
}

.landing-workflow-chip span {
  color: var(--landing-blue);
  font-weight: 900;
  font-size: 12px;
}

.landing-workflow-chip strong {
  font-size: 14px;
}

@keyframes landing-float-chip {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.landing-product-panel-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.landing-product-panel {
  min-height: 220px;
  padding: 32px;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 45px rgba(20, 33, 61, .08);
}

.landing-workflow-section {
  display: grid;
  gap: 34px;
}

.landing-workflow-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.landing-workflow-timeline::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 33px;
  height: 2px;
  background: linear-gradient(90deg, var(--landing-blue), var(--landing-blue-dark));
}

.landing-workflow-step {
  position: relative;
  z-index: 1;
  min-height: 230px;
  padding: 24px;
  border: 1px solid var(--landing-line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 16px 38px rgba(20, 33, 61, .08);
}

.landing-workflow-step > span {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: linear-gradient(250deg, var(--landing-blue) 0%, var(--landing-blue-dark) 100%);
  color: #ffffff;
  font-weight: 900;
  box-shadow: 0 12px 24px rgba(73, 165, 230, .25);
}

.landing-product-features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.landing-product-features span {
  padding: 8px 12px;
  border-radius: 999px;
  background: #eef7ff;
  color: #2f6fab;
  font-size: 13px;
  font-weight: 800;
}

.landing-fixed-image {
  width: min(470px, 100%);
  aspect-ratio: 4 / 3;
  object-fit: cover;
  justify-self: end;
}

.landing-contact {
  background: #ffffff;
}

.landing-contact-form {
  display: grid;
  gap: 14px;
}

.landing-contact-form input,
.landing-contact-form textarea {
  width: 100%;
  padding: 14px;
  border: 1px solid var(--landing-line);
  border-radius: 5px;
}

.landing-detail-row {
  display: grid;
  grid-template-columns: minmax(280px, .9fr) 1.1fr;
  gap: 46px;
  align-items: center;
  margin-bottom: 58px;
}

.landing-detail-row:nth-child(even) .landing-content-image {
  order: 2;
}

.landing-content-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: 0 18px 45px rgba(20, 33, 61, .14);
}

.landing-feature-list {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.landing-feature-list li {
  position: relative;
  padding-left: 22px;
}

.landing-feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .72em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--landing-blue);
}

.landing-consulting-layout {
  max-width: 980px;
}

.landing-consulting-layout .landing-detail-row {
  display: block;
  margin-bottom: 34px;
}

.landing-jobs-toolbar {
  display: grid;
  grid-template-columns: 1fr 260px;
  gap: 18px;
  margin: 22px 0 32px;
}

.landing-jobs-toolbar input,
.landing-jobs-toolbar select {
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid var(--landing-line);
  border-radius: 5px;
  background: #ffffff;
}

.landing-career-list {
  display: grid;
  gap: 22px;
}

.landing-career-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 28px;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 45px rgba(20, 33, 61, .08);
}

.landing-career-card h3 {
  margin: 0 0 14px;
  color: var(--landing-navy);
  font-size: 24px;
}

.landing-job-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.landing-pill {
  padding: 6px 10px;
  border-radius: 999px;
  background: #eef7ff;
  color: #2f6fab;
  font-size: 13px;
  font-weight: 700;
}

.landing-contact-item {
  margin-top: 22px;
}

.landing-contact-item h3 {
  margin: 0 0 4px;
  color: var(--landing-navy);
}

.landing-job-detail-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 48px;
  align-items: start;
}

.landing-apply-form {
  padding: 30px;
  border: 1px solid var(--landing-line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 45px rgba(20, 33, 61, .08);
}

.landing-apply-form h2 {
  margin-bottom: 10px;
  font-size: 28px;
}

.landing-hp-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.landing-contact-form textarea {
  min-height: 150px;
  resize: vertical;
}

.landing-footer {
  background: #121b38;
  color: #c2d1e2;
}

.landing-footer-top {
  display: grid;
  grid-template-columns: 1.25fr .72fr .9fr .9fr 1fr;
  gap: 34px;
  padding: 54px 0 42px;
}

.landing-footer h3 {
  margin: 0 0 16px;
  color: #ffffff;
}

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

.landing-footer a:hover {
  color: var(--landing-blue);
}

.landing-footer-bottom {
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, .1);
  text-align: center;
}

.landing-reveal-left,
.landing-reveal-right {
  opacity: 0;
  transform: translateX(var(--landing-reveal-x));
  transition: opacity .72s ease, transform .72s ease;
  will-change: transform, opacity;
}

.landing-reveal-left {
  --landing-reveal-x: -54px;
}

.landing-reveal-right {
  --landing-reveal-x: 54px;
}

.landing-reveal-left.is-visible,
.landing-reveal-right.is-visible,
.landing-service-card.is-visible,
.landing-detail-row.is-visible,
.landing-career-card.is-visible,
.landing-product-card.is-visible,
.landing-product-panel.is-visible,
.landing-workflow-step.is-visible {
  opacity: 1;
  transform: translateX(0);
}

@media (max-width: 900px) {
  .landing-container,
  .landing-nav-wrap {
    width: min(100% - 28px, 1140px);
  }

  .landing-header {
    position: sticky;
    background: #ffffff;
    border-bottom-color: rgba(108, 144, 185, .18);
    box-shadow: 0 4px 22px rgba(18, 31, 56, .07);
  }

  .landing-nav-wrap {
    min-height: 72px;
    gap: 10px;
  }

  .landing-logo img {
    width: 150px;
  }

  .landing-menu-toggle {
    order: 3;
    display: grid;
    margin-left: 8px;
  }

  .landing-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 40;
    display: none;
    flex-direction: column;
    align-items: stretch;
    max-height: calc(100vh - 78px);
    overflow-y: auto;
    margin-left: 0;
    background: #ffffff;
    border-top: 1px solid var(--landing-line);
    box-shadow: 0 18px 32px rgba(18, 31, 56, .12);
  }

  .landing-nav::after {
    display: none;
  }

  .landing-nav.open {
    display: flex;
  }

  .landing-nav > a,
  .landing-dropdown-label {
    padding: 14px 24px;
    color: #031a34 !important;
    text-shadow: none;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .landing-dropdown-menu {
    position: static;
    width: 100%;
    min-width: 0;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: 0;
    padding: 0 0 8px 16px;
    background: #f8fbff;
  }

  .landing-dropdown-menu a {
    padding: 10px 24px;
    color: #192848;
  }

  .landing-signin {
    order: 2;
    min-height: 38px;
    margin-left: auto;
    padding: 7px 15px;
    background: var(--landing-blue);
    border-color: var(--landing-blue);
    color: #ffffff;
    font-size: 14px;
    text-shadow: none;
    white-space: nowrap;
  }

  .landing-split,
  .landing-contact-grid,
  .landing-about-card-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .landing-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .landing-product-grid,
  .landing-product-detail,
  .landing-product-panel-grid {
    grid-template-columns: 1fr;
  }

  .landing-product-visual {
    min-height: 360px;
  }

  .landing-product-visual img {
    height: 360px;
  }

  .landing-workflow-timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .landing-workflow-timeline::before {
    display: none;
  }

  .landing-client-logo {
    flex-basis: 180px;
    height: 92px;
    margin: 0 12px;
    padding: 18px 22px;
  }

  .landing-jobs-grid {
    grid-template-columns: 1fr;
  }

  .landing-detail-row,
  .landing-career-card,
  .landing-job-detail-grid,
  .landing-footer-top,
  .landing-jobs-toolbar {
    grid-template-columns: 1fr;
  }

  .landing-detail-row:nth-child(even) .landing-content-image {
    order: 0;
  }

  .landing-page-hero {
    min-height: 390px;
    padding-top: 86px;
  }

  .landing-image-stack {
    width: 100%;
    max-width: 560px;
    min-height: 360px;
    justify-self: center;
  }
}

@media (max-width: 620px) {
  .landing-container,
  .landing-nav-wrap {
    width: min(100% - 24px, 1140px);
  }

  .landing-nav-wrap {
    min-height: 66px;
    gap: 8px;
  }

  .landing-logo img {
    width: 132px;
  }

  .landing-menu-toggle {
    width: 40px;
    height: 40px;
  }

  .landing-signin {
    min-height: 36px;
    padding: 7px 13px;
    font-size: 13px;
  }

  .landing-hero {
    min-height: 560px;
  }

  .landing-hero .landing-container {
    padding-top: 34px;
  }

  .landing-hero h1 {
    max-width: 100%;
    font-size: clamp(34px, 11vw, 46px);
    line-height: 1.12;
    overflow-wrap: anywhere;
  }

  .landing-section {
    padding: 62px 0;
  }

  .landing-section h2 {
    font-size: clamp(28px, 9vw, 38px);
  }

  .landing-services-grid {
    grid-template-columns: 1fr;
  }

  .landing-product-card > div,
  .landing-product-panel,
  .landing-workflow-step {
    padding: 24px;
  }

  .landing-product-visual {
    min-height: 330px;
  }

  .landing-product-visual img {
    height: 330px;
  }

  .landing-workflow-overlay,
  .landing-workflow-timeline {
    grid-template-columns: 1fr;
  }

  .landing-workflow-overlay {
    inset: auto 14px 14px;
  }

  .landing-workflow-chip:nth-child(n+3) {
    display: none;
  }

  .landing-client-track {
    animation-duration: 26s;
  }

  .landing-client-logo {
    flex-basis: 154px;
    height: 82px;
    margin: 0 9px;
    padding: 15px 18px;
  }

  .landing-client-logo img {
    max-width: 118px;
    max-height: 48px;
  }

  .landing-image-stack {
    min-height: 300px;
  }

  .landing-image-stack img:first-child {
    width: 82%;
  }

  .landing-image-stack img:last-child {
    width: 78%;
  }

  .landing-about-card {
    min-height: auto;
    padding: 30px 24px;
    border-radius: 14px;
  }

  .landing-career-card {
    align-items: start;
  }

  .landing-career-card .landing-btn {
    width: max-content;
  }

  .landing-contact-form .landing-btn {
    width: 100%;
  }
}

@media (max-width: 390px) {
  .landing-logo img {
    width: 118px;
  }

  .landing-signin {
    padding: 6px 10px;
  }

  .landing-hero h1 {
    font-size: 32px;
  }

  .landing-image-stack {
    min-height: 270px;
  }
}

