:root {
  --ink: #0e1635;
  --ink-soft: #1b2552;
  --panel: rgba(255,255,255,0.08);
  --panel-border: rgba(255,255,255,0.12);
  --accent: #4d8dff;
  --accent-soft: #7bc4ff;
  --surface: #f5f7fd;
  --text-muted: #c8d2f0;
}
body {
  font-family: "Plus Jakarta Sans", sans-serif;
  background: var(--surface);
  color: #16203d;
  border-radius: 0;
}
body.is-loading {
  overflow: hidden;
}
.preloader {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 20% 20%, rgba(102, 154, 255, 0.2), transparent 40%),
    linear-gradient(180deg, #060c26 0%, #0b1438 100%);
  transition: opacity 0.4s ease, visibility 0.4s ease;
}
.preloader--hide {
  opacity: 0;
  visibility: hidden;
}
.preloader-content {
  display: grid;
  place-items: center;
  gap: 16px;
  text-align: center;
  color: rgba(228, 235, 255, 0.85);
}
.preloader-logo {
  position: relative;
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
}
.preloader-logo img {
  width: 64px;
  height: 64px;
  object-fit: contain;
}
.preloader-ring {
  position: absolute;
  inset: -6px;
  border-radius: 999px;
  border: 2px solid rgba(120, 163, 255, 0.28);
  border-top-color: rgba(120, 163, 255, 0.85);
  border-right-color: rgba(120, 163, 255, 0.6);
  animation: preloaderSpin 1.2s linear infinite;
  box-shadow: 0 0 24px rgba(120, 163, 255, 0.18);
}
.preloader-content p {
  margin: 0;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.preloader-content p.is-fading {
  opacity: 0;
  transform: translateY(4px);
}
@keyframes preloaderSpin {
  to {
    transform: rotate(360deg);
  }
}
@media (prefers-reduced-motion: reduce) {
  .preloader-ring {
    animation: none;
  }
}
body.menu-open {
  overflow: hidden;
}
section[id] {
  scroll-margin-top: 130px;
}
.topbar {
  position: sticky;
  top: 0;
  z-index: 1040;
  padding: 12px 0 10px;
  background: rgb(6 12 38 / 96%);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.topbar .container {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.topbar-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
}
.topbar-main-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
  margin-left: auto;
}
.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.05);
  color: rgba(255,255,255,0.9);
  text-decoration: none;
  font-size: 0.98rem;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.02);
  transition: transform 0.24s ease, background 0.24s ease, border-color 0.24s ease, color 0.24s ease, box-shadow 0.24s ease;
}
.social-link:hover,
.social-link:focus-visible {
  transform: translateY(-2px) scale(1.03);
  background: rgba(88, 135, 255, 0.16);
  border-color: rgba(126, 171, 255, 0.28);
  color: #ffffff;
  box-shadow: 0 12px 22px rgba(24, 48, 110, 0.22);
}
.topbar-subnav {
  display: flex;
  align-items: center;
  gap: 4px;
  width: 100%;
  padding-top: 4px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.topbar-subnav-label {
  color: rgba(255,255,255,0.72);
  font-size: 0.88rem;
  font-weight: 700;
  white-space: nowrap;
  letter-spacing: 0.02em;
}
.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: #fff;
  text-decoration: none;
}
.brand-badge {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  transform-origin: center;
  padding: 4px;
  /* background: linear-gradient(180deg, rgb(18 32 73 / 78%), rgb(82 147 255)); */
  /* box-shadow: inset 0 0 0 1px rgba(255,255,255,0.08); */
  transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
  border-radius: 4px;
}
.brand-badge img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.24));
  transform-origin: center;
  animation: logoOrbit 10s linear infinite;
  transition: transform 0.35s ease;
}
.brand-mark:hover .brand-badge img,
.brand-mark:focus-visible .brand-badge img {
  animation-play-state: paused;
  transform: rotate(0deg);
}
.brand-mark:hover .brand-badge,
.brand-mark:focus-visible .brand-badge {
  background: linear-gradient(180deg, rgba(126, 170, 255, 0.28), rgba(56, 92, 184, 0.16));
  box-shadow:
    inset 0 0 0 1px rgba(163, 193, 255, 0.34),
    0 10px 24px rgba(24, 48, 110, 0.28);
  transform: translateY(-1px);
}
.brand-text {
  font-size: 1.06rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}
.topbar-nav {
  display: flex;
  align-items: center;
  gap: 20px;
}
.topbar-subnav .topbar-nav {
  gap: 4px;
  width: 100%;
  flex-wrap: wrap;
}
.topbar-subnav-right {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
  flex-shrink: 0;
}
.topbar-item {
  position: static;
}
.topbar-nav .nav-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  position: relative;
  padding: 10px 0;
  color: rgba(255,255,255,0.8);
  font-size: 0.96rem;
  font-weight: 600;
  transition: color 0.2s ease;
  text-decoration: none;
  border: 0;
  background: transparent;
}
.topbar-main .topbar-nav .nav-link {
  padding: 8px 0;
}
.topbar-subnav .nav-link {
  gap: 10px;
  padding: 8px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgb(3 38 100 / 64%), rgb(14 19 49 / 50%)),
    rgba(14, 15, 19, 0.97);
  font-size: 0.92rem;
  line-height: 1.2;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.subnav-utility {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 0px 10px;
  color: rgba(255,255,255,0.88);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.subnav-utility-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: rgba(255,255,255,0.09);
  color: #ffffff;
  font-size: 0.84rem;
  flex-shrink: 0;
}
.subnav-utility:hover,
.subnav-utility:focus-visible {
  color: #fff;
  transform: translateY(-1px);
}
.subnav-profile {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 8px 6px 6px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  color: #fff;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.subnav-profile:hover,
.subnav-profile:focus-visible {
  color: #fff;
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.14);
  transform: translateY(-1px);
}
.subnav-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, #8ed0ff, #5c7cff);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 800;
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}
.subnav-profile span:last-child {
  padding-right: 4px;
  font-size: 0.9rem;
  font-weight: 700;
}
.topbar-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -18px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #2478eb, #ffffff);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}
.topbar-subnav .nav-link::after {
  display: none;
}
.topbar-nav .nav-link:hover,
.topbar-nav .nav-link:focus-visible {
  color: #fff;
}
.topbar-main .topbar-nav .nav-link.is-active {
  color: #ffffff;
  text-shadow: 0 0 18px rgba(122, 179, 255, 0.28);
}
.topbar-main .topbar-nav .nav-link.is-active::after {
  transform: scaleX(1);
  background: linear-gradient(90deg, #5c9dff, #ffffff 72%);
  box-shadow: 0 0 20px rgba(92, 157, 255, 0.28);
}
.topbar-item.dropdown-open > .nav-link::after,
.topbar-nav .nav-link:hover::after,
.topbar-nav .nav-link:focus-visible::after {
  transform: scaleX(1);
}
.topbar-subnav .nav-link:hover,
.topbar-subnav .nav-link:focus-visible,
.topbar-subnav .topbar-item.dropdown-open > .nav-link {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.14);
  transform: translateY(-1px);
}
.topbar-subnav .nav-link.is-active,
.subnav-utility.is-active {
  color: #ffffff;
  background:
    linear-gradient(180deg, rgba(84, 126, 255, 0.28), rgba(17, 28, 68, 0.7)),
    rgba(255,255,255,0.08);
  border-color: rgba(154, 193, 255, 0.28);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.08),
    0 12px 26px rgba(6, 14, 38, 0.22);
  transform: translateY(-1px);
}
.subnav-utility.is-active .subnav-utility-icon {
  background: rgba(255,255,255,0.16);
  box-shadow: 0 0 0 6px rgba(92, 157, 255, 0.12);
}
.topbar-nav .nav-link:active,
.topbar-subnav .nav-link:active,
.topbar-cta:active,
.topbar-toggle:active,
.mobile-nav a:active,
.mobile-dropdown-toggle:active,
.mobile-close:active,
.mega-menu-tab:active,
.mega-menu-column a:active {
  transform: translateY(1px);
}
.nav-caret {
  font-size: 0.78rem;
  transition: transform 0.2s ease;
}
.topbar-item.dropdown-open .nav-caret {
  transform: rotate(180deg);
}
.topbar-dropdown {
  position: absolute;
  top: calc(100% + 2px);
  left: 50%;
  width: min(1080px, calc(100vw - 48px));
  max-height: min(72vh, 620px);
  padding: 22px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgb(3 38 100 / 64%), rgb(14 19 49 / 50%)),
    rgba(14, 15, 19, 0.97);
  box-shadow: 0 34px 70px rgba(3, 8, 24, 0.48);
  backdrop-filter: blur(22px);
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 10px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}
.topbar-dropdown::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(109, 213, 108, 0.08), transparent 30%, transparent 70%, rgba(122, 196, 255, 0.06));
  pointer-events: none;
}
.topbar-item.dropdown-open .topbar-dropdown,
.topbar-item:hover .topbar-dropdown,
.topbar-item:focus-within .topbar-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}
body.leadchat-open .topbar-item:hover .topbar-dropdown,
body.leadchat-open .topbar-item:focus-within .topbar-dropdown,
body.leadchat-open .topbar-item.dropdown-open .topbar-dropdown {
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 12px);
  pointer-events: none;
}
.mega-menu {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
  color: #fff;
}
.mega-menu-sidebar {
  max-height: min(64vh, 540px);
  padding-right: 24px;
  border-right: 1px solid rgba(255,255,255,0.12);
  overflow: auto;
}
.mega-menu-tab {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 7px;
  padding: 14px 16px;
  border: 0;
  border-radius: 16px;
  background: transparent;
  color: rgba(255,255,255,0.84);
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  transition: background 0.24s ease, color 0.24s ease, transform 0.24s ease, box-shadow 0.24s ease;
}
.mega-menu-tab::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0) 42%);
  opacity: 0;
  transition: opacity 0.24s ease;
  pointer-events: none;
  border-radius: 15px;
}
.mega-menu-tab-main {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}
.mega-menu-tab-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  color: #eaf0ff;
  font-size: 0.92rem;
  flex-shrink: 0;
}
.mega-menu-tab.active,
.mega-menu-tab:hover,
.mega-menu-tab:focus-visible {
  background: linear-gradient(90deg, rgba(255,255,255,0.12), rgba(255,255,255,0.05));
  color: #fff;
  transform: translateX(6px);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.04), 0 14px 28px rgba(5, 13, 36, 0.2);
  outline: none;
}
.mega-menu-tab.active::before,
.mega-menu-tab:hover::before,
.mega-menu-tab:focus-visible::before {
  opacity: 1;
}
.mega-menu-tab i {
  opacity: 0.75;
  font-size: 0.92rem;
}
.mega-menu-all {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 28px;
  position: relative;
  width: 100%;
  min-height: 64px;
  text-align: center;
  color: #ffffff;
  font-size: 1.02rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  text-decoration: none;
  padding: 16px 22px;
  border: 1px solid rgba(120, 155, 235, 0.22);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(40, 66, 132, 0.92), rgba(8, 15, 34, 0.98));
  box-shadow:
    inset 0 1px 0 rgba(167, 198, 255, 0.2),
    inset 0 -1px 0 rgba(0,0,0,0.28),
    0 12px 26px rgba(2, 8, 24, 0.32);
  overflow: hidden;
  transform: translateY(0) scale(1);
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  isolation: isolate;
  --sheen-x: -140%;
}
.mega-menu-all::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.12), transparent 42%),
    linear-gradient(110deg, transparent 22%, rgba(255,255,255,0.2) 48%, transparent 72%);
  background-size: 100% 100%, 220% 100%;
  background-position: 0 0, var(--sheen-x) 0;
  opacity: 0.9;
  pointer-events: none;
  transition: background-position 0.45s ease, opacity 0.2s ease;
}
.mega-menu-all::after {
  pointer-events: none;
}
.mega-menu-all::before {
  content: "";
  width: 14px;
  height: 14px;
  position: relative;
  z-index: 1;
  margin-left: 6px;
  background: rgba(255,255,255,0.95);
  flex-shrink: 0;
  clip-path: polygon(20% 10%, 75% 50%, 20% 90%, 0 70%, 35% 50%, 0 30%);
  transition: transform 0.22s ease;
}
.mega-menu-all:hover,
.mega-menu-all:focus-visible {
  color: #fff;
  background:
    linear-gradient(180deg, rgba(48, 81, 156, 0.98), rgba(10, 21, 46, 1));
  border-color: rgba(153, 187, 255, 0.3);
  box-shadow:
    inset 0 1px 0 rgba(180, 208, 255, 0.24),
    inset 0 -1px 0 rgba(0,0,0,0.32),
    0 18px 34px rgba(4, 14, 38, 0.4);
  transform: translateY(-2px) scale(1.01);
  --sheen-x: 140%;
}
.mega-menu-all:hover::before,
.mega-menu-all:focus-visible::before {
  transform: translateX(3px);
}
.mega-menu-all:active {
  transform: translateY(1px) scale(0.995);
  box-shadow:
    inset 0 1px 0 rgba(170, 196, 255, 0.18),
    inset 0 -1px 0 rgba(0,0,0,0.34),
    0 10px 18px rgba(4, 14, 38, 0.28);
}
.mega-menu-content {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px 22px;
  align-content: start;
  max-height: min(64vh, 540px);
  padding-right: 6px;
  overflow: auto;
}
.mega-menu-header {
  grid-column: 1 / -1;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 6px;
}
.mega-menu-header h3 {
  margin: 0 0 6px;
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1.2;
}
.mega-menu-header p {
  margin: 0;
  max-width: 480px;
  color: #bfc9eb;
  font-size: 0.93rem;
  line-height: 1.7;
}
.mega-menu-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  color: #eef3ff;
  font-size: 0.8rem;
  font-weight: 700;
  white-space: nowrap;
}
.mega-menu-badge::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #6dd56c;
  box-shadow: 0 0 0 6px rgba(109, 213, 108, 0.12);
}
.mega-menu-column h4 {
  margin-bottom: 14px;
  color: rgba(255,255,255,0.72);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  width: 100%;
  white-space: nowrap;
}
.mega-menu-column a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 9px;
  padding: 12px 14px;
  border-radius: 16px;
  color: #f2f5ff;
  text-decoration: none;
  font-size: 0.98rem;
  line-height: 1.5;
  background: linear-gradient(180deg, rgba(255,255,255,0.035), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.05);
  transition: color 0.18s ease, transform 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}
.mega-menu-column a::after {
  content: "â†—";
  color: rgba(255,255,255,0.42);
  font-size: 0.88rem;
}
.mega-menu-column a:hover,
.mega-menu-column a:focus-visible {
  color: #fff;
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.08);
  transform: translateX(2px);
}
.mega-menu-links-grid a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 88px;
  padding: 18px 18px;
  border-radius: 16px;
  color: #f2f5ff;
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 600;
  line-height: 1.45;
  background: linear-gradient(180deg, rgba(255,255,255,0.035), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.05);
  transition: color 0.18s ease, transform 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}
.mega-menu-links-grid a::after {
  content: "â†—";
  color: rgba(255,255,255,0.42);
  font-size: 0.88rem;
  flex-shrink: 0;
}
.mega-menu-links-grid a:hover,
.mega-menu-links-grid a:focus-visible {
  color: #fff;
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.08);
  transform: translateX(2px);
}
.mega-menu-links-grid {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px 18px;
}
.mega-menu-sidebar::-webkit-scrollbar,
.mega-menu-content::-webkit-scrollbar {
  width: 8px;
}
.mega-menu-sidebar::-webkit-scrollbar-thumb,
.mega-menu-content::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
}
.topbar-cta {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px 10px 18px;
  border-radius: 999px;
  background: linear-gradient(180deg, #ffffff 0%, #eef3ff 100%);
  color: #10183b;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 16px 32px rgba(0,0,0,0.2), inset 0 1px 0 rgba(255,255,255,0.6);
  transition: transform 0.24s ease, box-shadow 0.24s ease, background 0.24s ease;
}
.topbar-cta::before,
.hero-primary::before,
.hero-secondary::before,
.portfolio-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 10%, rgba(255,255,255,0.34) 42%, transparent 72%);
  transform: translateX(-140%);
  transition: transform 0.55s ease;
  pointer-events: none;
}
.topbar-cta:hover,
.topbar-cta:focus-visible {
  color: #10183b;
  transform: translateY(-2px);
  box-shadow: 0 20px 34px rgba(0,0,0,0.24), inset 0 1px 0 rgba(255,255,255,0.68);
  background: linear-gradient(180deg, #ffffff 0%, #f7f9ff 100%);
}
.topbar-cta:hover::before,
.topbar-cta:focus-visible::before,
.hero-primary:hover::before,
.hero-primary:focus-visible::before,
.hero-secondary:hover::before,
.hero-secondary:focus-visible::before,
.portfolio-cta:hover::before,
.portfolio-cta:focus-visible::before {
  transform: translateX(140%);
}
.topbar-cta-text {
  font-size: 0.98rem;
  font-weight: 800;
  letter-spacing: -0.01em;
}
.topbar-cta-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: #10183b;
  color: #fff;
  font-size: 0.94rem;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.05);
}
.topbar-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  background: rgba(255,255,255,0.05);
  color: #fff;
  font-size: 1.25rem;
}
.mobile-menu-backdrop {
  position: fixed;
  inset: 0;
  z-index: 1060;
  background: rgba(6, 11, 29, 0.58);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}
.mobile-menu-backdrop.active {
  opacity: 1;
  visibility: visible;
}
.mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1070;
  width: min(92vw, 380px);
  height: 100vh;
  padding: 22px;
  background: linear-gradient(180deg, #121527 0%, #1a1f39 100%);
  box-shadow: -24px 0 54px rgba(0,0,0,0.32);
  transform: translateX(100%);
  transition: transform 0.28s ease;
  overflow-y: auto;
}
.mobile-drawer.active {
  transform: translateX(0);
}
.mobile-drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
}
.mobile-close {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  background: rgba(255,255,255,0.05);
  color: #fff;
  font-size: 1.15rem;
}
.mobile-nav {
  display: grid;
  gap: 8px;
}
.mobile-nav a,
.mobile-dropdown-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  background: rgba(255,255,255,0.04);
  color: #eef3ff;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}
.mobile-nav a:hover,
.mobile-nav a:focus-visible,
.mobile-dropdown-toggle:hover,
.mobile-dropdown-toggle:focus-visible {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.12);
}
.mobile-nav a.is-active {
  background: linear-gradient(180deg, rgba(87, 132, 255, 0.24), rgba(255,255,255,0.08));
  border-color: rgba(150, 189, 255, 0.34);
  box-shadow: 0 16px 28px rgba(5, 13, 36, 0.2);
}
.mobile-nav a.is-active .mobile-item-icon {
  background: linear-gradient(135deg, rgba(135, 186, 255, 0.22), rgba(92, 132, 255, 0.34));
  color: #ffffff;
}
.mobile-item-main {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.mobile-item-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 12px;
  background: rgba(255,255,255,0.08);
  color: #dfe7ff;
  font-size: 0.98rem;
  flex-shrink: 0;
}
.mobile-dropdown-toggle {
  text-align: left;
}
.mobile-dropdown-panel {
  display: grid;
  gap: 8px;
  max-height: 0;
  margin-top: 0;
  overflow: hidden;
  transition: max-height 0.25s ease, margin-top 0.25s ease;
}
.mobile-dropdown-panel.active {
  max-height: 340px;
  margin-top: 10px;
}
.mobile-dropdown-panel a {
  padding: 12px 14px;
  margin-left: 8px;
  font-size: 0.92rem;
  color: #dce6ff;
}
.mobile-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.mobile-socials .social-link {
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.06);
}
.hero {
  position: relative;
  --hero-cursor-x: 76%;
  --hero-cursor-y: 28%;
  --hero-tilt-x: 0deg;
  --hero-tilt-y: 0deg;
  overflow: hidden;
  background:
    radial-gradient(circle at 16% 18%, rgba(66, 118, 255, 0.14), transparent 22%),
    radial-gradient(circle at 84% 78%, rgba(22, 73, 196, 0.16), transparent 26%),
    radial-gradient(circle at 50% 120%, rgba(96, 148, 255, 0.12), transparent 34%),
    linear-gradient(145deg, #010206 0%, #04070f 22%, #050b17 44%, #03050c 72%, #010206 100%);
  color: white;
  padding: 84px 0 74px;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(102, 134, 214, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(102, 134, 214, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, transparent 0, transparent 49%, rgba(84, 134, 255, 0.06) 50%, transparent 51%, transparent 100%);
  background-size: 40px 40px, 40px 40px, 200px 200px;
  opacity: 0.1;
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  left: var(--hero-cursor-x);
  top: var(--hero-cursor-y);
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(116, 184, 255, 0.24), rgba(62, 116, 255, 0.12) 34%, transparent 72%);
  filter: blur(34px);
  transform: translate(-50%, -50%);
  animation: pulseGlow 9s ease-in-out infinite;
  transition: left 0.18s ease, top 0.18s ease;
  pointer-events: none;
}
.hero .container::before {
  content: "";
  position: absolute;
  inset: -4% -2% auto;
  height: 65%;
  opacity: 0.5;
  pointer-events: none;
}
.hero .container {
  position: relative;
  z-index: 1;
}
.hero-pattern {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.hero-pattern span {
  position: absolute;
  padding: 8px 12px;
  border: 1px solid rgba(144, 178, 255, 0.1);
  background: rgba(4, 8, 20, 0.5);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.02), 0 20px 48px rgba(0, 0, 0, 0.34);
  color: rgba(203, 220, 255, 0.18);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  backdrop-filter: blur(8px);
  animation: floatGlyph 14s ease-in-out infinite;
}
.hero-pattern span:nth-child(1) { top: 18%; left: 7%; }
.hero-pattern span:nth-child(2) { top: 15%; left: 31%; }
.hero-pattern span:nth-child(3) { top: 21%; right: 24%; }
.hero-pattern span:nth-child(4) { top: 56%; left: 8%; }
.hero-pattern span:nth-child(5) { top: 62%; left: 34%; }
.hero-pattern span:nth-child(6) { top: 74%; right: 16%; }
.hero-pattern span:nth-child(7) { top: 40%; right: 11%; }
.hero-pattern span:nth-child(8) { bottom: 12%; left: 42%; }
.hero-pattern span:nth-child(2n) {
  animation-duration: 18s;
}
.hero-depth-scene {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  perspective: 1200px;
}
.hero-depth-card,
.hero-depth-ring {
  position: absolute;
  transition: transform 0.22s ease;
}
.hero-depth-card {
  width: 210px;
  height: 140px;
  border: 1px solid rgba(118, 154, 245, 0.18);
  background:
    linear-gradient(180deg, rgba(20, 34, 72, 0.54), rgba(4, 9, 22, 0.24)),
    linear-gradient(135deg, rgba(105, 157, 255, 0.18), transparent 62%);
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,0.05),
    0 36px 80px rgba(0, 0, 0, 0.46),
    0 0 40px rgba(42, 92, 214, 0.12);
  backdrop-filter: blur(16px);
}
.hero-depth-card::before {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(150, 183, 255, 0.12);
  background:
    linear-gradient(rgba(148, 176, 255, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148, 176, 255, 0.12) 1px, transparent 1px);
  background-size: 18px 18px;
  opacity: 0.72;
}
.hero-depth-card-a {
  top: 10%;
  right: 8%;
  transform: rotateY(-24deg) rotateX(16deg) translate3d(0, 0, 0);
  animation: driftPanelA 15s ease-in-out infinite;
}
.hero-depth-card-b {
  bottom: 12%;
  right: 22%;
  width: 180px;
  height: 120px;
  transform: rotateY(-14deg) rotateX(12deg) translate3d(0, 0, 0);
  animation: driftPanelB 13s ease-in-out infinite;
}
.hero-depth-card-c {
  top: 22%;
  left: 6%;
  width: 160px;
  height: 108px;
  transform: rotateY(18deg) rotateX(-12deg) translate3d(0, 0, 0);
  animation: driftPanelC 17s ease-in-out infinite;
}
.hero-depth-ring {
  border-radius: 50%;
  border: 1px solid rgba(122, 164, 255, 0.14);
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,0.02),
    0 0 50px rgba(47, 92, 202, 0.14);
}
.hero-depth-ring-a {
  top: 8%;
  left: 48%;
  width: 260px;
  height: 260px;
  transform: translateX(-50%);
  animation: spinRing 24s linear infinite;
}
.hero-depth-ring-b {
  bottom: -40px;
  right: 6%;
  width: 320px;
  height: 320px;
  animation: spinRingReverse 28s linear infinite;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 34px;
  align-items: center;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  padding: 9px 15px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  color: #c8d7ff;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  animation: riseIn 0.8s ease both;
}
.hero-eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #7bc4ff;
  box-shadow: 0 0 0 6px rgba(123, 196, 255, 0.14);
}
.hero h1 {
  max-width: 640px;
  margin-bottom: 16px;
  font-size: clamp(2.7rem, 5.4vw, 4.7rem);
  font-weight: 800;
  line-height: 1.01;
  letter-spacing: -0.04em;
  animation: riseIn 0.9s ease 0.08s both;
}
.hero-lead {
  max-width: 540px;
  margin-bottom: 24px;
  color: #d7def7;
  font-size: 1.02rem;
  line-height: 1.65;
  animation: riseIn 0.9s ease 0.16s both;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 24px;
  animation: riseIn 0.9s ease 0.24s both;
}
.hero-primary,
.hero-secondary {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.24s ease, background 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}
.hero-primary {
  background: #fff;
  color: #10183b;
  box-shadow: 0 18px 32px rgba(0,0,0,0.24);
}
.hero-primary:hover,
.hero-primary:focus-visible {
  color: #10183b;
  transform: translateY(-2px);
  box-shadow: 0 24px 42px rgba(0,0,0,0.28);
}
.hero-secondary {
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.05);
  color: #fff;
}
.hero-secondary:hover,
.hero-secondary:focus-visible {
  color: #fff;
  background: rgba(255,255,255,0.09);
  transform: translateY(-2px);
  box-shadow: 0 18px 32px rgba(0,0,0,0.18);
}
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: #c8d7ff;
  animation: riseIn 0.9s ease 0.32s both;
}
.hero-meta-item strong {
  display: block;
  margin-bottom: 2px;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 800;
}
.hero-meta-item span {
  font-size: 0.9rem;
}
.hero-visual {
  position: relative;
  min-height: 520px;
  transform-style: preserve-3d;
  transform: perspective(1200px) rotateX(var(--hero-tilt-x)) rotateY(var(--hero-tilt-y));
  transition: transform 0.22s ease;
}
.hero-card-main,
.hero-card-float,
.hero-panel {
  position: absolute;
  border: 1px solid rgba(157, 184, 255, 0.14);
  background: linear-gradient(180deg, rgba(19, 30, 66, 0.66), rgba(8, 15, 34, 0.34));
  box-shadow: 0 34px 72px rgba(0, 0, 0, 0.34), 0 0 44px rgba(42, 92, 214, 0.09);
  backdrop-filter: blur(14px);
}
.hero-card-main {
  inset: 58px 0 58px 54px;
  border-radius: 34px;
  padding: 22px;
  animation: floatCard 8s ease-in-out infinite;
  transform: translateZ(24px);
}
.hero-card-float {
  top: 0;
  right: 28px;
  width: 210px;
  border-radius: 24px;
  padding: 18px;
  animation: floatCard 7s ease-in-out infinite reverse;
  transform: translateZ(66px);
}
.hero-panel {
  left: 0;
  bottom: 0;
  width: 230px;
  border-radius: 24px;
  padding: 18px;
  animation: floatCard 6.5s ease-in-out infinite;
  transform: translateZ(52px);
}
.hero-video-trigger {
  position: absolute;
  top: 50%;
  right: 54px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 212px;
  padding: 12px 16px 12px 12px;
  border: 1px solid rgba(168, 193, 255, 0.22);
  background: linear-gradient(180deg, rgba(15, 24, 55, 0.88), rgba(22, 35, 79, 0.72));
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.08),
    0 24px 52px rgba(3, 8, 28, 0.42),
    0 0 32px rgba(76, 129, 255, 0.18);
  color: #f5f8ff;
  text-align: left;
  transform: translateY(-50%) translateZ(84px);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}
.hero-video-trigger:hover,
.hero-video-trigger:focus-visible {
  transform: translateY(calc(-50% - 2px)) translateZ(92px);
  border-color: rgba(189, 210, 255, 0.34);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.12),
    0 30px 60px rgba(3, 8, 28, 0.48),
    0 0 40px rgba(76, 129, 255, 0.24);
  outline: none;
}
.hero-video-trigger-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #7cb4ff, #4d8dff);
  color: #fff;
  font-size: 1.55rem;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.28),
    0 18px 30px rgba(50, 99, 222, 0.28);
  animation: pulseHalo 3s ease-in-out infinite;
  flex-shrink: 0;
}
.hero-video-trigger-copy {
  display: grid;
  gap: 4px;
}
.hero-video-trigger-copy strong {
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.01em;
}
.hero-video-trigger-copy small {
  color: #cad7fb;
  font-size: 0.78rem;
  line-height: 1.45;
}
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.24s ease;
}
.video-modal.active {
  opacity: 1;
  pointer-events: auto;
}
.video-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 9, 28, 0.72);
  backdrop-filter: blur(12px);
}
.video-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(960px, 100%);
  padding: 24px;
  border: 1px solid rgba(160, 184, 255, 0.18);
  background: linear-gradient(180deg, rgba(12, 20, 46, 0.96), rgba(19, 31, 72, 0.92));
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.08),
    0 30px 80px rgba(0, 0, 0, 0.46);
  transform: translateY(18px) scale(0.98);
  transition: transform 0.24s ease;
}
.video-modal.active .video-modal-dialog {
  transform: translateY(0) scale(1);
}
.video-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.06);
  color: #fff;
  font-size: 1rem;
  transition: background 0.2s ease, transform 0.2s ease;
}
.video-modal-close:hover,
.video-modal-close:focus-visible {
  background: rgba(92, 142, 255, 0.18);
  transform: translateY(-1px);
  outline: none;
}
.video-modal-head {
  max-width: 620px;
  margin-bottom: 18px;
}
.video-modal-kicker {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 7px 12px;
  border: 1px solid rgba(136, 169, 255, 0.16);
  background: rgba(93, 132, 255, 0.08);
  color: #9ebcff;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.video-modal-head h3 {
  margin: 0 0 10px;
  color: #fff;
  font-size: clamp(1.6rem, 2.4vw, 2.2rem);
  font-weight: 800;
}
.video-modal-head p {
  margin: 0;
  color: #c7d4fb;
  font-size: 0.98rem;
  line-height: 1.75;
}
.video-modal-frame-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(255,255,255,0.1);
  background: linear-gradient(180deg, rgba(7, 12, 28, 0.94), rgba(15, 24, 55, 0.96));
}
.video-modal-frame-wrap video {
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: cover;
  background: #0a1025;
}
.video-modal:not(.client-video-modal) .video-modal-frame-wrap .video-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
}
.hero-window {
  height: 100%;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(10, 16, 43, 0.88), rgba(19, 26, 61, 0.98));
  overflow: hidden;
}
.hero-window-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 18px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.hero-window-dots {
  display: flex;
  gap: 7px;
}
.hero-window-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
}
.hero-window-label {
  color: #d7def7;
  font-size: 0.84rem;
  font-weight: 600;
}
.hero-window-body {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 16px;
  height: calc(100% - 57px);
  padding: 18px;
}
.hero-sidebar {
  display: grid;
  gap: 10px;
  align-content: start;
}
.hero-sidebar span,
.hero-bar,
.hero-card-box,
.hero-chart,
.hero-pill {
  border-radius: 16px;
  background: rgba(255,255,255,0.06);
}
.hero-sidebar span {
  height: 44px;
}
.hero-content {
  display: grid;
  gap: 14px;
  align-content: start;
}
.hero-bar {
  height: 88px;
  background: linear-gradient(135deg, rgba(123,196,255,0.28), rgba(77,141,255,0.42));
  animation: shimmer 4.6s linear infinite;
}
.hero-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.hero-card-box {
  min-height: 118px;
}
.hero-chart {
  min-height: 160px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.04)),
    linear-gradient(135deg, rgba(123,196,255,0.2), transparent 55%);
  animation: shimmer 5.4s linear infinite;
}
.hero-pill {
  height: 54px;
}
.hero-mini-label {
  margin-bottom: 12px;
  color: #c8d7ff;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.hero-mini-value {
  color: #fff;
  font-size: 1.8rem;
  font-weight: 800;
  line-height: 1;
}
.hero-mini-copy {
  margin-top: 8px;
  color: #c8d7ff;
  font-size: 0.9rem;
  line-height: 1.5;
}
.hero-logo-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
  animation: riseIn 0.9s ease 0.4s both;
}
.hero-logo-chip {
  padding: 8px 12px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  color: #e3eaff;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}
@keyframes pulseHalo {
  0%, 100% {
    box-shadow:
      inset 0 1px 0 rgba(255,255,255,0.28),
      0 18px 30px rgba(50, 99, 222, 0.28),
      0 0 0 0 rgba(98, 144, 255, 0.22);
  }
  50% {
    box-shadow:
      inset 0 1px 0 rgba(255,255,255,0.34),
      0 20px 34px rgba(50, 99, 222, 0.34),
      0 0 0 14px rgba(98, 144, 255, 0);
  }
}
@keyframes sectionDriftTech {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(18px, -12px, 0) scale(1.03); }
}
@keyframes sectionDriftPortfolio {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(-18px, 12px, 0) scale(1.02); }
}
@keyframes sectionFloatPlane {
  0%, 100% { transform: perspective(1200px) rotateX(64deg) rotateY(-12deg) translateY(0); }
  50% { transform: perspective(1200px) rotateX(64deg) rotateY(-7deg) translateY(-10px); }
}
@keyframes sectionFloatPlaneAlt {
  0%, 100% { transform: perspective(1200px) rotateX(64deg) rotateY(18deg) translateY(0); }
  50% { transform: perspective(1200px) rotateX(64deg) rotateY(12deg) translateY(10px); }
}
@keyframes sectionSpinHalo {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
@keyframes sectionSpinHaloReverse {
  from { transform: rotate(360deg); }
  to { transform: rotate(0deg); }
}
.section { padding: 60px 0; }
.card { border: none; box-shadow: 0 4px 10px rgba(0,0,0,0.1); }
.hiring-flow {
  position: relative;
  overflow: hidden;
  padding: 96px 0 88px;
  background:
    radial-gradient(circle at 10% 14%, rgba(92, 144, 255, 0.12), transparent 22%),
    radial-gradient(circle at 88% 84%, rgba(86, 118, 222, 0.1), transparent 26%),
    linear-gradient(180deg, #fbfcff 0%, #f3f7ff 52%, #eef3ff 100%);
  color: #11182f;
}
.hiring-flow::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(102, 132, 214, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(102, 132, 214, 0.05) 1px, transparent 1px);
  background-size: 38px 38px;
  opacity: 0.45;
  pointer-events: none;
}
.hiring-flow::after {
  content: "";
  position: absolute;
  inset: -20% -10% auto -10%;
  height: 320px;
  background: radial-gradient(circle, rgba(90, 150, 255, 0.18), transparent 60%);
  filter: blur(10px);
  opacity: 0.5;
  pointer-events: none;
}
.hiring-flow .container {
  position: relative;
  z-index: 1;
}
.hiring-flow-head {
  text-align: center;
  margin-bottom: 60px;
}
.hiring-flow-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  padding: 9px 15px;
  border: 1px solid rgba(66, 108, 219, 0.14);
  background: rgba(82, 124, 255, 0.08);
  color: #355bc7;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.hiring-flow h2 {
  margin: 0 0 16px;
  font-size: clamp(2.3rem, 4vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
}
.hiring-flow-intro {
  max-width: 760px;
  margin: 0 auto;
  color: #56627f;
  font-size: 1.08rem;
  line-height: 1.8;
}
.hiring-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 36px;
  align-items: start;
}
.hiring-step {
  display: grid;
  gap: 28px;
  position: relative;
  perspective: 900px;
}
.hiring-step-track {
  display: grid;
  grid-template-columns: minmax(42px, 1fr) auto minmax(42px, 1fr);
  align-items: center;
  min-height: 92px;
  transform-style: preserve-3d;
}
.hiring-step-line {
  position: relative;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(125, 167, 255, 0.15), rgba(83, 119, 236, 0.92), rgba(125, 167, 255, 0.15));
  box-shadow: 0 8px 20px rgba(74, 118, 236, 0.18);
  overflow: hidden;
  transform: translateZ(8px);
  animation: hiringLineFloat 5.8s ease-in-out infinite;
}
.hiring-step-line::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -1px;
  width: 14px;
  height: 14px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  color: rgba(83, 119, 236, 0.85);
  transform: translateY(-50%) rotate(45deg);
}
.hiring-step-line::before {
  content: "";
  position: absolute;
  inset: -6px 0;
  background: linear-gradient(90deg, transparent, rgba(122, 164, 255, 0.55), transparent);
  opacity: 0.6;
  animation: hiringLineSweep 4.8s ease-in-out infinite;
}
.hiring-step-line.is-muted {
  background: linear-gradient(90deg, rgba(83, 119, 236, 0.08), rgba(83, 119, 236, 0.22));
  box-shadow: none;
}
.hiring-step-line.is-muted::after {
  color: rgba(83, 119, 236, 0.22);
}
.hiring-step-node {
  display: grid;
  place-items: center;
  width: 84px;
  height: 84px;
  margin: 0 16px;
  border-radius: 50%;
  border: 2px solid rgba(77, 116, 230, 0.5);
  background:
    radial-gradient(circle at 30% 30%, rgba(255,255,255,0.98), rgba(235, 243, 255, 0.92)),
    linear-gradient(180deg, #ffffff 0%, #edf3ff 100%);
  color: #4269dc;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.9),
    0 16px 28px rgba(77, 116, 230, 0.18),
    0 0 0 8px rgba(130, 171, 255, 0.14);
  transform: translateZ(20px);
  animation: hiringPulse 4.8s ease-in-out infinite, hiringOrbit 6.4s ease-in-out infinite;
}
.hiring-step-node::after {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 50%;
  border: 1px dashed rgba(120, 160, 255, 0.6);
  opacity: 0.7;
}
.hiring-step-node::before {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(130, 171, 255, 0.35), transparent 65%);
  opacity: 0.55;
  filter: blur(2px);
  z-index: -1;
}
.hiring-step:hover .hiring-step-node {
  transform: translateZ(28px) rotateX(6deg) rotateY(-6deg);
}
.hiring-step:hover .hiring-step-node {
  color: #ffffff;
  border-color: rgba(90, 150, 255, 0.9);
  background: linear-gradient(180deg, rgb(18 32 73 / 78%), rgb(82 147 255));
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.9),
    0 20px 34px rgba(77, 116, 230, 0.28),
    0 0 0 10px rgba(130, 171, 255, 0.22);
}
.hiring-step:hover .hiring-step-node::after {
  border-color: rgba(255,255,255,0.8);
  opacity: 0.9;
}
.hiring-step:nth-child(2) .hiring-step-node {
  animation-delay: 0.6s;
}
.hiring-step:nth-child(3) .hiring-step-node {
  animation-delay: 1.2s;
}
.hiring-step-copy {
  position: relative;
  text-align: center;
  padding: 30px 28px 28px;
  border: 1px solid rgba(92, 120, 210, 0.12);
  background: linear-gradient(180deg, rgba(255,255,255,0.84), rgba(244, 248, 255, 0.92));
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.8),
    0 20px 40px rgba(68, 95, 176, 0.08);
  backdrop-filter: blur(8px);
  transform-style: preserve-3d;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  animation: hiringFloat 6.2s ease-in-out infinite;
}
.hiring-step:nth-child(2) .hiring-step-copy {
  animation-delay: 0.4s;
}
.hiring-step:nth-child(3) .hiring-step-copy {
  animation-delay: 0.8s;
}
.hiring-step:hover .hiring-step-copy {
  transform: translateY(-10px) rotateX(2deg) rotateY(-2deg);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.85),
    0 26px 50px rgba(68, 95, 176, 0.18);
}
.hiring-step-copy::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.3), transparent 40%);
  pointer-events: none;
}
.hiring-step-copy::after {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 14px;
  border: 1px solid rgba(89, 134, 255, 0.16);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}
.hiring-step:hover .hiring-step-copy::after {
  opacity: 1;
}
.hiring-step-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  padding: 7px 12px;
  border: 1px solid rgba(80, 112, 216, 0.14);
  background: rgba(84, 124, 255, 0.08);
  color: #3d63d0;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.hiring-step-copy h3 {
  position: relative;
  z-index: 1;
  margin-bottom: 18px;
  font-size: clamp(1.3rem, 2vw, 1.8rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.hiring-step-copy p {
  position: relative;
  z-index: 1;
  max-width: 430px;
  margin: 0 auto;
  color: #4c5876;
  font-size: 1rem;
  line-height: 1.78;
}
@keyframes hiringFloat {
  0%,
  100% {
    transform: translateY(0) translateZ(10px);
  }
  50% {
    transform: translateY(-8px) translateZ(14px);
  }
}
@keyframes hiringPulse {
  0%,
  100% {
    box-shadow:
      inset 0 1px 0 rgba(255,255,255,0.86),
      0 18px 34px rgba(77, 116, 230, 0.12);
  }
  50% {
    box-shadow:
      inset 0 1px 0 rgba(255,255,255,0.9),
      0 26px 46px rgba(77, 116, 230, 0.22);
  }
}
@keyframes hiringLineSweep {
  0% {
    transform: translateX(-60%);
  }
  100% {
    transform: translateX(60%);
  }
}
@keyframes hiringLineFloat {
  0%,
  100% {
    transform: translateZ(8px) translateY(0);
  }
  50% {
    transform: translateZ(12px) translateY(-4px);
  }
}
@keyframes hiringOrbit {
  0%,
  100% {
    transform: translateZ(20px) rotateX(0deg) rotateY(0deg);
  }
  50% {
    transform: translateZ(28px) rotateX(6deg) rotateY(-6deg);
  }
}
.cta {
  position: relative;
  overflow: hidden;
  padding: 78px 0;
  background:
    radial-gradient(circle at 18% 20%, rgba(123, 196, 255, 0.12), transparent 24%),
    radial-gradient(circle at 86% 78%, rgba(91, 128, 237, 0.14), transparent 28%),
    linear-gradient(135deg, #0b1231 0%, #111a46 54%, #0b1231 100%);
  color: white;
}
.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 36px 36px;
  opacity: 0.18;
  pointer-events: none;
}
.cta .container {
  position: relative;
  z-index: 1;
}
.cta-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 34px 36px;
  border: 1px solid rgba(255,255,255,0.1);
  background: linear-gradient(180deg, rgba(255,255,255,0.09), rgba(255,255,255,0.05));
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.12),
    0 24px 54px rgba(6, 11, 29, 0.26);
  backdrop-filter: blur(10px);
}
.cta-copy {
  max-width: 760px;
}
.cta-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  padding: 8px 14px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.06);
  color: #bcd3ff;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.cta-copy h2 {
  margin-bottom: 12px;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
}
.cta-copy p {
  margin: 0;
  color: rgba(255,255,255,0.82);
  font-size: 1.02rem;
  line-height: 1.75;
}
.cta-button {display: inline-flex;align-items: center;gap: 12px;padding: 10px 14px 10px 18px;border-radius: 999px;background: linear-gradient(180deg, #ffffff 0%, #eef3ff 100%);color: #10183b;font-weight: 700;text-decoration: none;box-shadow: 0 16px 32px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.6);transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;}
.cta-button:hover,
.cta-button:focus-visible {
  color: #244eaf;
  transform: translateY(-2px);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.88),
    0 22px 40px rgba(10, 20, 54, 0.22);
}
.cta-button-icon {display: inline-flex;align-items: center;justify-content: center;width: 34px;height: 34px;border-radius: 999px;background: #222b51;color: #fff;font-size: 0.94rem;box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05);}
.video-feedback {
  position: relative;
  padding: 90px 0;
  background:
    radial-gradient(circle at 12% 12%, rgba(92, 138, 255, 0.16), transparent 36%),
    linear-gradient(180deg, rgba(6, 12, 38, 0.96) 0%, rgba(9, 17, 46, 0.98) 100%);
  color: #fff;
  overflow: hidden;
}
.video-feedback::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 34px 34px;
  opacity: 0.12;
  pointer-events: none;
}
.video-feedback .container {
  position: relative;
  z-index: 1;
}
.video-feedback-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 26px;
}
.video-feedback-kicker {
  display: inline-flex;
  padding: 6px 12px;
  border: 1px solid rgba(139, 184, 255, 0.2);
  background: rgba(77, 141, 255, 0.12);
  color: #a7c6ff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.video-feedback-head h2 {
  margin: 12px 0 10px;
  font-size: clamp(1.8rem, 2.4vw, 2.4rem);
  font-weight: 800;
}
.video-feedback-head p {
  margin: 0;
  max-width: 560px;
  color: rgba(226, 235, 255, 0.76);
  line-height: 1.7;
}
.video-feedback-nav {
  display: inline-flex;
  gap: 12px;
}
.video-feedback-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(120, 163, 255, 0.22);
  background: rgba(16, 24, 59, 0.8);
  color: #fff;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.video-feedback-arrow:hover,
.video-feedback-arrow:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(156, 194, 255, 0.5);
  box-shadow: 0 14px 26px rgba(4, 10, 30, 0.32);
  outline: none;
}
.video-feedback-stage {
  overflow: hidden;
  padding-bottom: 8px;
  perspective: 1400px;
}
.video-feedback-track {
  display: flex;
  gap: 18px;
  transition: transform 0.6s ease;
  will-change: transform;
}
.video-feedback-card {
  position: relative;
  flex: 0 0 clamp(240px, calc((100% - 54px) / 4), 340px);
  border: 1px solid rgba(120, 163, 255, 0.2);
  background:
    linear-gradient(180deg, rgba(14, 24, 58, 0.96), rgba(16, 28, 66, 0.92)),
    radial-gradient(circle at 20% 10%, rgba(120, 163, 255, 0.12), transparent 40%);
  padding: 16px;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.08),
    0 18px 34px rgba(4, 10, 30, 0.35);
  display: grid;
  gap: 14px;
  transform-style: preserve-3d;
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}
.video-feedback-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(130deg, rgba(120, 163, 255, 0.45), rgba(88, 135, 255, 0.05), rgba(120, 163, 255, 0.4));
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.video-feedback-card::after {
  content: "";
  position: absolute;
  inset: 12px 12px auto auto;
  width: 62px;
  height: 62px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(120, 163, 255, 0.35), transparent 70%);
  opacity: 0.6;
  filter: blur(0.5px);
  pointer-events: none;
  transform: translateZ(40px);
}
.video-feedback-card:hover,
.video-feedback-card:focus-within {
  transform: translateY(-6px) rotateX(4deg) rotateY(-6deg);
  border-color: rgba(140, 184, 255, 0.45);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.1),
    0 26px 48px rgba(4, 10, 30, 0.45);
}
.video-feedback-card:hover::before,
.video-feedback-card:focus-within::before {
  opacity: 1;
}
.video-feedback-card:nth-child(odd) {
  animation: videoCardFloat 6s ease-in-out infinite;
}
.video-feedback-card:nth-child(even) {
  animation: videoCardFloat 6.8s ease-in-out infinite;
  animation-delay: 0.6s;
}
.video-feedback-media {
  position: relative;
  transform-style: preserve-3d;
}
.video-feedback-center-logo {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  z-index: 1;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.video-feedback-center-logo img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  opacity: 0.9;
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.45));
}
.video-feedback-card:hover .video-feedback-center-logo,
.video-feedback-card:focus-within .video-feedback-center-logo,
.video-feedback-card.is-playing .video-feedback-center-logo {
  opacity: 0;
  transform: scale(0.94);
}
.video-feedback-overlay {
  position: absolute;
  inset: auto 14px 14px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  z-index: 5;
  pointer-events: auto;
  transform: translateZ(60px);
}
.video-feedback-media video {
  width: 100%;
  height: 210px;
  border-radius: 14px;
  object-fit: cover;
  display: block;
  background: #0b1438;
  transform: translateZ(10px);
  box-shadow: 0 14px 30px rgba(6, 14, 40, 0.35);
}
.video-feedback-play {
  position: relative;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.22);
  background: rgba(12, 20, 50, 0.7);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  box-shadow: 0 12px 24px rgba(4, 10, 30, 0.4);
  transition: transform 0.25s ease, opacity 0.25s ease, background 0.25s ease;
  z-index: 3;
  pointer-events: auto;
}
.video-feedback-card.is-buffering .video-feedback-play::after {
  content: "";
  position: absolute;
  inset: -7px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.18);
  border-top-color: rgba(90, 160, 255, 0.95);
  animation: videoFeedbackSpin 0.9s linear infinite;
}
.video-feedback-expand {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.22);
  background: rgba(12, 20, 50, 0.7);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 1rem;
  box-shadow: 0 12px 24px rgba(4, 10, 30, 0.4);
  transition: transform 0.25s ease, opacity 0.25s ease, background 0.25s ease;
  pointer-events: auto;
}
.video-feedback-expand:hover,
.video-feedback-expand:focus-visible {
  transform: scale(1.05);
  background: rgba(77, 141, 255, 0.65);
  outline: none;
}
.video-feedback-play .icon-pause {
  display: none;
}
.video-feedback-play.is-playing .icon-play {
  display: none;
}
.video-feedback-play.is-playing .icon-pause {
  display: inline-block;
}
.video-feedback-card:hover .video-feedback-play,
.video-feedback-card:focus-within .video-feedback-play {
  transform: scale(1.05);
  background: rgba(77, 141, 255, 0.65);
}
.video-feedback-play.is-playing {
  background: rgba(77, 141, 255, 0.2);
  opacity: 0.7;
}
@keyframes videoFeedbackSpin {
  to {
    transform: rotate(360deg);
  }
}
.video-feedback-stars {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(12, 20, 50, 0.6);
  color: #ffd76a;
  font-size: 0.85rem;
  box-shadow: 0 10px 20px rgba(4, 10, 30, 0.35);
  pointer-events: none;
}
.video-feedback-info-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.video-feedback-info-head h3 {
  margin: 0;
}
.video-feedback-info .video-feedback-stars {
  background: rgba(12, 20, 50, 0.5);
  border-color: rgba(255,255,255,0.16);
  box-shadow: none;
}
.video-feedback-info h3 {
  margin: 0 0 4px;
  font-size: 1.05rem;
  font-weight: 700;
  transform: translateZ(18px);
}
.video-feedback-info p {
  margin: 0;
  color: rgba(214, 225, 255, 0.74);
  transform: translateZ(12px);
}
@keyframes videoCardFloat {
  0%, 100% {
    transform: translateY(0) rotateX(0) rotateY(0);
  }
  50% {
    transform: translateY(-8px) rotateX(2deg) rotateY(-2deg);
  }
}
@media (prefers-reduced-motion: reduce) {
  .video-feedback-card {
    animation: none;
  }
}
.faq {
  position: relative;
  padding: 90px 0 72px;
  background: #ffffff;
  color: #10183b;
}
.faq::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(12, 22, 62, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(12, 22, 62, 0.06) 1px, transparent 1px);
  background-size: 36px 36px;
  opacity: 0.18;
  pointer-events: none;
}
.faq .container {
  position: relative;
  z-index: 1;
}
.faq-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1.4fr);
  gap: 32px;
  align-items: start;
}
.faq-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 0;
}
.faq-kicker {
  display: inline-flex;
  padding: 6px 12px;
  border: 1px solid rgba(30, 62, 138, 0.2);
  background: rgba(77, 141, 255, 0.12);
  color: #22438f;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.faq-header h2 {
  margin: 12px 0 10px;
  font-size: clamp(1.8rem, 2.4vw, 2.4rem);
  font-weight: 800;
}
.faq-header p {
  margin: 0;
  max-width: 560px;
  color: rgba(20, 30, 64, 0.72);
  line-height: 1.7;
}
.faq-contact {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid rgba(32, 66, 146, 0.25);
  background: #0f1b3d;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  box-shadow: 0 14px 30px rgba(15, 27, 61, 0.2);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.faq-contact:hover,
.faq-contact:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(156, 194, 255, 0.5);
  box-shadow: 0 20px 36px rgba(4, 10, 30, 0.34);
  outline: none;
}
.faq-contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: rgba(77, 141, 255, 0.25);
  color: #cfe0ff;
  font-size: 0.95rem;
}
.faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  max-height: 400px;
  overflow-y: auto;
  padding-right: 8px;
  scrollbar-gutter: stable;
}
.faq-item {
  border: 1px solid rgba(20, 30, 64, 0.12);
  background: #ffffff;
  padding: 18px 20px;
  box-shadow: 0 12px 26px rgba(10, 20, 50, 0.08);
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.faq-item[open] {
  border-color: rgba(30, 62, 138, 0.35);
  transform: translateY(-1px);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-weight: 700;
  font-size: 1rem;
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item summary::after {
  content: "+";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  border: 1px solid rgba(30, 62, 138, 0.28);
  color: #3053b5;
  font-weight: 700;
  transition: transform 0.2s ease, background 0.2s ease;
}
.faq-item[open] summary::after {
  content: "â€“";
  background: rgba(77, 141, 255, 0.2);
  transform: rotate(180deg);
}
.faq-body {
  margin-top: 12px;
  color: rgba(20, 30, 64, 0.72);
  line-height: 1.7;
  font-size: 0.95rem;
}
.site-footer {
  position: relative;
  overflow: visible;
  padding: 84px 0 24px;
  background:
    radial-gradient(circle at 12% 18%, rgba(90, 137, 255, 0.14), transparent 24%),
    radial-gradient(circle at 88% 80%, rgba(82, 120, 214, 0.12), transparent 28%),
    linear-gradient(180deg, rgba(6, 12, 38, 0.98) 0%, rgba(9, 16, 44, 0.98) 100%);
  color: #fff;
}
.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 34px 34px;
  opacity: 0.14;
  pointer-events: none;
}
.site-footer .container {
  position: relative;
  z-index: 1;
}
.footer-top {
  display: grid;
  grid-template-columns: minmax(280px, 0.92fr) minmax(0, 1.3fr);
  gap: 56px;
  padding-bottom: 34px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand-block {
  display: grid;
  align-content: start;
  gap: 20px;
}
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: #fff;
  text-decoration: none;
}
.footer-brand-badge {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  padding: 6px;
  /* border: 1px solid rgba(255,255,255,0.14); */
  /* background: linear-gradient(180deg, rgba(18, 32, 73, 0.9), rgba(82, 147, 255, 0.92)); */
  /* box-shadow: inset 0 0 0 1px rgba(255,255,255,0.08); */
}
.footer-brand-badge img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.footer-brand-text {
  font-size: 1.18rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}
.footer-about {
  max-width: 420px;
  margin: 0;
  color: rgba(228, 235, 255, 0.78);
  font-size: 0.98rem;
  line-height: 1.85;
}
.footer-contact-list {
  display: grid;
  gap: 12px;
}
.footer-contact-list a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(241, 245, 255, 0.86);
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease;
}
.footer-contact-list a:hover,
.footer-contact-list a:focus-visible {
  color: #ffffff;
  transform: translateX(2px);
}
.footer-contact-list i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  background: rgba(255,255,255,0.06);
  color: #9ec0ff;
  font-size: 0.9rem;
}
.footer-links-block {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(220px, 0.85fr);
  gap: 34px;
}
.footer-links-group {
  display: grid;
  align-content: start;
  gap: 12px;
}
.footer-links-group-services {
  gap: 14px;
}
.footer-links-group h3 {
  margin: 0 0 10px;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.01em;
}
.footer-service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 18px;
}
.footer-links-group a {
  color: rgba(228, 235, 255, 0.78);
  text-decoration: none;
  transition: color 0.24s ease, transform 0.24s ease;
}
.footer-links-group a:hover,
.footer-links-group a:focus-visible {
  color: #ffffff;
  transform: translateX(4px);
}
.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
}
.footer-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.04);
  color: #f3f6ff;
  text-decoration: none;
  transition: transform 0.24s ease, background 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}
.footer-social:hover,
.footer-social:focus-visible {
  transform: translateY(-3px) scale(1.04);
  background: rgba(88, 135, 255, 0.16);
  border-color: rgba(126, 171, 255, 0.3);
  color: #fff;
  box-shadow: 0 14px 26px rgba(24, 48, 110, 0.22);
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-top: 20px;
}
.footer-bottom p {
  margin: 0;
  color: rgba(224, 232, 255, 0.68);
  font-size: 0.9rem;
}
.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 18px;
}
.footer-bottom-links a {
  color: rgba(224, 232, 255, 0.7);
  font-size: 0.9rem;
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer-bottom-links a:hover,
.footer-bottom-links a:focus-visible {
  color: #fff;
}
.lead-chat {
  position: relative;
  z-index: 10;
  display: grid;
  justify-items: end;
  gap: 12px;
  margin-top: 18px;
}
.lead-chat--footer {
  justify-items: start;
  width: min(100%, 320px);
}
.lead-chat--footer .lead-chat-launcher {
  width: 100%;
  justify-content: flex-start;
}
.lead-chat-launcher {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px 12px 12px;
  border: 1px solid rgba(120, 163, 255, 0.18);
  background: linear-gradient(180deg, rgba(10, 20, 49, 0.96), rgba(17, 29, 71, 0.94));
  color: #fff;
  box-shadow:
    0 18px 38px rgba(4, 10, 30, 0.34),
    0 0 36px rgba(77, 141, 255, 0.14);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}
.lead-chat-launcher:hover,
.lead-chat-launcher:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(156, 194, 255, 0.28);
  box-shadow:
    0 24px 44px rgba(4, 10, 30, 0.42),
    0 0 44px rgba(77, 141, 255, 0.2);
  outline: none;
}
.lead-chat-launcher-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  background: linear-gradient(135deg, #78b4ff, #4d8dff);
  color: #fff;
  font-size: 1.1rem;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.24),
    0 14px 26px rgba(42, 92, 214, 0.26);
}
.lead-chat-launcher-copy {
  display: grid;
  text-align: left;
}
.lead-chat-launcher-copy strong {
  font-size: 0.96rem;
  font-weight: 800;
}
.lead-chat-launcher-copy small {
  color: rgba(214, 225, 255, 0.8);
  font-size: 0.76rem;
  line-height: 1.4;
}
.mega-menu-cta.lead-chat-launcher {
  width: 100%;
  justify-content: flex-start;
  margin-top: 16px;
}
.lead-chat-panel {
  position: absolute;
  left: 0;
  bottom: calc(100% + 12px);
  width: min(620px, 92vw);
  min-width: 520px;
  padding: 22px;
  border: 1px solid rgba(116, 152, 242, 0.16);
  background:
    linear-gradient(180deg, rgba(11, 19, 47, 0.97), rgba(17, 28, 66, 0.96)),
    linear-gradient(135deg, rgba(255,255,255,0.06), rgba(255,255,255,0));
  color: #fff;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.08),
    0 30px 64px rgba(4, 10, 30, 0.42);
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px) scale(0.98);
  transform-origin: bottom right;
  transition: opacity 0.26s ease, transform 0.26s ease, visibility 0.26s ease;
}
.lead-chat.is-open .lead-chat-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}
.lead-chat-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}
.lead-chat-kicker {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 6px 10px;
  border: 1px solid rgba(139, 184, 255, 0.14);
  background: rgba(77, 141, 255, 0.08);
  color: #9bc1ff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.lead-chat-head h3 {
  margin: 0 0 8px;
  font-size: 1.32rem;
  font-weight: 800;
}
.lead-chat-head p {
  margin: 0;
  color: rgba(214, 225, 255, 0.78);
  font-size: 0.92rem;
  line-height: 1.6;
}
.lead-chat-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.04);
  color: #fff;
  transition: background 0.22s ease, transform 0.22s ease;
}
.lead-chat-close:hover,
.lead-chat-close:focus-visible {
  background: rgba(77, 141, 255, 0.16);
  transform: translateY(-1px);
  outline: none;
}
.lead-chat-form {
  display: grid;
  gap: 16px;
}
.lead-chat-progress {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
}
.lead-chat-progress-step {
  height: 4px;
  background: rgba(255,255,255,0.08);
  overflow: hidden;
}
.lead-chat-progress-step.is-active,
.lead-chat-progress-step.is-complete {
  background: linear-gradient(90deg, #6da9ff, #9bc1ff);
}
.lead-chat-section {
  display: none;
  gap: 10px;
}
.lead-chat-section.is-active {
  display: grid;
}
.lead-chat-label {
  color: #eef3ff;
  font-size: 0.88rem;
  font-weight: 700;
}
.lead-chat-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.lead-chat-option {
  padding: 10px 12px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.04);
  color: rgba(235, 241, 255, 0.88);
  font-size: 0.82rem;
  font-weight: 600;
  transition: background 0.22s ease, border-color 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease;
}
.lead-chat-option:hover,
.lead-chat-option:focus-visible,
.lead-chat-option.active {
  background: rgba(77, 141, 255, 0.18);
  border-color: rgba(140, 187, 255, 0.28);
  transform: translateY(-1px);
  box-shadow: 0 12px 22px rgba(5, 13, 36, 0.18);
  outline: none;
}
.lead-chat-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.lead-chat-field {
  display: grid;
  gap: 8px;
}
.lead-chat-field span {
  color: #eef3ff;
  font-size: 0.84rem;
  font-weight: 700;
}
.lead-chat-field input,
.lead-chat-field textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.05);
  color: #fff;
  padding: 12px 14px;
  font-size: 0.92rem;
  transition: border-color 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}
.lead-chat-field input::placeholder,
.lead-chat-field textarea::placeholder {
  color: rgba(204, 217, 255, 0.5);
}
.lead-chat-field input:focus,
.lead-chat-field textarea:focus {
  border-color: rgba(140, 187, 255, 0.28);
  background: rgba(255,255,255,0.07);
  box-shadow: 0 0 0 4px rgba(77, 141, 255, 0.12);
  outline: none;
}
.lead-chat-field-full {
  grid-column: 1 / -1;
}
.lead-chat-budget-amount {
  margin-top: 12px;
}
.lead-chat-actions {
  display: grid;
  gap: 10px;
}
.lead-chat-nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.lead-chat-back,
.lead-chat-next {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.05);
  color: #eef3ff;
  font-size: 0.88rem;
  font-weight: 700;
  transition: background 0.22s ease, border-color 0.22s ease, transform 0.22s ease;
}
.lead-chat-back:hover,
.lead-chat-back:focus-visible,
.lead-chat-next:hover,
.lead-chat-next:focus-visible {
  background: rgba(77, 141, 255, 0.14);
  border-color: rgba(140, 187, 255, 0.28);
  transform: translateY(-1px);
  outline: none;
}
.lead-chat-back[hidden],
.lead-chat-next[hidden] {
  display: none !important;
}
.lead-chat-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  padding: 12px 16px;
  border: 0;
  background: linear-gradient(180deg, #ffffff 0%, #eef3ff 100%);
  color: #10183b;
  font-weight: 800;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.7),
    0 16px 30px rgba(0,0,0,0.22);
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}
.lead-chat-submit:hover,
.lead-chat-submit:focus-visible {
  transform: translateY(-2px);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.84),
    0 20px 38px rgba(0,0,0,0.28);
  outline: none;
}
.lead-chat-submit:disabled {
  opacity: 0.72;
  cursor: wait;
  transform: none;
}
.lead-chat-submit-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  background: #244eaf;
  color: #fff;
  font-size: 0.84rem;
}
.lead-chat-status {
  min-height: 20px;
  margin: 0;
  color: rgba(214, 225, 255, 0.8);
  font-size: 0.82rem;
}
.lead-chat-status.is-error {
  color: #ffb0b0;
}
.lead-chat-status.is-success {
  color: #b6ffd8;
}
.page-shell {
  min-height: 100vh;
  background:
    radial-gradient(circle at 12% 18%, rgba(92, 141, 255, 0.12), transparent 24%),
    linear-gradient(180deg, #f9fbff 0%, #eef4ff 100%);
}
.page-hero {
  position: relative;
  overflow: hidden;
  padding: 148px 0 68px;
  background:
    radial-gradient(circle at 82% 14%, rgba(92, 141, 255, 0.14), transparent 24%),
    linear-gradient(180deg, #0c1434 0%, #141d48 100%);
  color: #fff;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 36px 36px;
  opacity: 0.16;
  pointer-events: none;
}
.page-hero .container,
.page-content .container {
  position: relative;
  z-index: 1;
}
.page-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  padding: 8px 14px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.06);
  color: #dfe8ff;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.page-hero h1 {
  max-width: 760px;
  margin: 0 0 16px;
  font-size: clamp(2.35rem, 5vw, 4.3rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.04em;
}
.page-hero p {
  max-width: 760px;
  margin: 0;
  color: rgba(227, 235, 255, 0.82);
  font-size: 1.05rem;
  line-height: 1.85;
}
.page-content {
  position: relative;
  padding: 72px 0 90px;
}
.page-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(280px, 0.34fr);
  gap: 28px;
  align-items: start;
}
.page-sections {
  display: grid;
  gap: 20px;
}
.page-card,
.page-sidebar-card,
.support-channel,
.support-faq-item,
.support-mini {
  border: 1px solid rgba(96, 124, 201, 0.12);
  background: linear-gradient(180deg, rgba(255,255,255,0.94), rgba(243, 247, 255, 0.9));
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.82),
    0 18px 42px rgba(61, 86, 160, 0.08);
}
.page-card {
  padding: 28px;
}
.page-card h2 {
  margin: 0 0 14px;
  color: #121b37;
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.page-card p,
.page-card li,
.page-sidebar-card p,
.support-channel p,
.support-faq-item p,
.support-mini span {
  color: #52607f;
  font-size: 0.98rem;
  line-height: 1.85;
}
.page-card p:last-child,
.page-sidebar-card p:last-child,
.support-channel p:last-child,
.support-faq-item p:last-child {
  margin-bottom: 0;
}
.page-card ul {
  margin: 0;
  padding-left: 1.1rem;
}
.page-sidebar {
  display: grid;
  gap: 18px;
}
.page-sidebar-card {
  padding: 24px;
}
.page-sidebar-card h3 {
  margin: 0 0 12px;
  color: #152040;
  font-size: 1.05rem;
  font-weight: 800;
}
.page-sidebar-links {
  display: grid;
  gap: 10px;
}
.page-sidebar-links a {
  color: #365dc9;
  text-decoration: none;
  font-weight: 600;
}
.page-sidebar-links a:hover,
.page-sidebar-links a:focus-visible {
  color: #1f46b5;
}
.support-intro-grid,
.support-channel-grid,
.support-faq {
  display: grid;
  gap: 18px;
}
.support-intro-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.support-mini {
  padding: 22px;
}
.support-mini strong {
  display: block;
  margin-bottom: 8px;
  color: #162444;
  font-size: 1rem;
  font-weight: 800;
}
.support-channel-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.support-channel,
.support-faq-item {
  padding: 24px;
}
.support-channel h2,
.support-faq-item h2 {
  margin: 0 0 10px;
  color: #152040;
  font-size: 1.12rem;
  font-weight: 800;
}
.support-meta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  color: #365dc9;
  font-size: 0.88rem;
  font-weight: 700;
}
.auth-page {
  position: relative;
}
.auth-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(280px, 0.34fr);
  gap: 28px;
  align-items: start;
}
.auth-shell--featured {
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
}
.auth-shell--compact {
  grid-template-columns: minmax(300px, 0.78fr) minmax(0, 0.92fr);
}
.auth-panel {
  position: relative;
  overflow: hidden;
  padding: 30px;
  border: 1px solid rgba(96, 124, 201, 0.12);
  background:
    radial-gradient(circle at top right, rgba(61, 214, 194, 0.18), transparent 28%),
    linear-gradient(180deg, #13204c 0%, #1a2757 100%);
  color: #fff;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.08),
    0 20px 48px rgba(26, 39, 87, 0.2);
}
.auth-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 34px 34px;
  opacity: 0.12;
  pointer-events: none;
}
.auth-panel > * {
  position: relative;
  z-index: 1;
}
.auth-eyebrow,
.auth-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 12px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.08);
  color: #dbe5ff;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.auth-panel h2,
.auth-card-head h2 {
  margin: 16px 0 12px;
  font-size: clamp(1.75rem, 3vw, 2.45rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
}
.auth-panel h2 {
  color: #fff;
}
.auth-card-head h2 {
  color: #152040;
  font-size: 1.95rem;
}
.auth-panel p,
.auth-card-head p {
  margin: 0;
  line-height: 1.85;
}
.auth-panel p {
  color: rgba(229, 236, 255, 0.82);
}
.auth-card-head p {
  color: #566381;
}
.auth-feature-list {
  display: grid;
  gap: 14px;
  margin-top: 26px;
}
.auth-feature-item {
  padding: 18px 18px 16px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.05);
}
.auth-feature-item strong {
  display: block;
  margin-bottom: 6px;
  color: #fff;
  font-size: 0.98rem;
  font-weight: 800;
}
.auth-feature-item span {
  color: rgba(225, 234, 255, 0.78);
  font-size: 0.94rem;
  line-height: 1.75;
}
.auth-card,
.dashboard-card {
  border: 1px solid rgba(96, 124, 201, 0.12);
  background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(243, 247, 255, 0.92));
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.82),
    0 18px 42px rgba(61, 86, 160, 0.08);
}
.auth-card {
  padding: 30px;
}
.auth-card--form {
  padding: 34px;
}
.auth-card-head {
  margin-bottom: 22px;
}
.auth-form {
  display: grid;
  gap: 18px;
}
.auth-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.auth-field {
  display: grid;
  gap: 10px;
}
.auth-field span {
  color: #182647;
  font-size: 0.92rem;
  font-weight: 700;
}
.auth-field small {
  color: #6b7792;
  font-size: 0.84rem;
  line-height: 1.6;
}
.auth-field input,
.auth-field textarea {
  width: 100%;
  min-height: 52px;
  padding: 0 16px;
  border: 1px solid rgba(73, 101, 182, 0.16);
  background: rgba(248, 251, 255, 0.96);
  color: #152040;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.auth-field input:focus,
.auth-field textarea:focus {
  border-color: rgba(54, 93, 201, 0.44);
  box-shadow: 0 0 0 4px rgba(54, 93, 201, 0.08);
  background: #fff;
}
.auth-submit,
.dashboard-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 18px;
  border: 0;
  background: linear-gradient(135deg, #2f75ff, #3dd6c2);
  color: #071126;
  font-weight: 800;
  text-decoration: none;
  transition: transform 0.22s ease, box-shadow 0.22s ease, filter 0.22s ease;
}
.auth-submit:hover,
.auth-submit:focus-visible,
.dashboard-link:hover,
.dashboard-link:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(47, 117, 255, 0.18);
  filter: saturate(1.03);
}
.auth-alert {
  margin-bottom: 18px;
  padding: 14px 16px;
  border: 1px solid transparent;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.7;
}
.auth-alert--success {
  border-color: rgba(43, 171, 126, 0.2);
  background: rgba(43, 171, 126, 0.1);
  color: #126347;
}
.auth-alert--error {
  border-color: rgba(199, 57, 57, 0.18);
  background: rgba(199, 57, 57, 0.08);
  color: #8b2230;
}
.auth-alert--info {
  border-color: rgba(54, 93, 201, 0.18);
  background: rgba(54, 93, 201, 0.08);
  color: #2747a8;
}
.auth-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 18px;
}
.auth-links--between {
  align-items: center;
  justify-content: space-between;
}
.auth-links--stack {
  display: grid;
  gap: 12px;
}
.auth-links span {
  color: #6a7590;
  font-weight: 600;
}
.auth-links a {
  color: #365dc9;
  font-weight: 700;
  text-decoration: none;
}
.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}
.dashboard-card {
  padding: 28px;
}
.dashboard-card h2,
.dashboard-card h3 {
  margin: 0 0 12px;
  color: #142040;
  font-weight: 800;
}
.dashboard-card p,
.dashboard-meta span {
  color: #55627f;
  line-height: 1.8;
}
.dashboard-profile {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}
.dashboard-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: linear-gradient(135deg, #8ed0ff, #5c7cff);
  color: #fff;
  font-size: 1.1rem;
  font-weight: 800;
}
.dashboard-meta {
  display: grid;
  gap: 14px;
}
.dashboard-meta strong {
  display: block;
  margin-bottom: 4px;
  color: #152040;
}
.dashboard-link--muted {
  background: linear-gradient(180deg, #eef3ff 0%, #ffffff 100%);
  color: #152040;
  border: 1px solid rgba(83, 102, 155, 0.12);
}
.page-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
}
.page-cta-link .topbar-cta-icon {
  width: 34px;
  height: 34px;
}
.service-showcase {
  position: relative;
  overflow: hidden;
  padding: 98px 0 92px;
  background:
    radial-gradient(circle at 12% 18%, rgba(88, 132, 255, 0.08), transparent 22%),
    radial-gradient(circle at 84% 78%, rgba(104, 124, 210, 0.08), transparent 26%),
    linear-gradient(180deg, #fcfdff 0%, #f5f8ff 100%);
  color: #121a30;
}
.service-showcase::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(102, 132, 214, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(102, 132, 214, 0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.4;
  pointer-events: none;
}
.service-showcase .container {
  position: relative;
  z-index: 1;
}
.service-showcase-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.92fr);
  gap: 54px;
  align-items: center;
}
.service-showcase-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  padding: 8px 14px;
  border: 1px solid rgba(66, 108, 219, 0.12);
  background: rgba(82, 124, 255, 0.06);
  color: #3d63d0;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.service-showcase-copy h2 {
  max-width: 560px;
  margin-bottom: 16px;
  font-size: clamp(2.5rem, 4.4vw, 4.2rem);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.04em;
}
.service-showcase-copy > p {
  max-width: 560px;
  margin-bottom: 34px;
  color: #5b6784;
  font-size: 1.05rem;
  line-height: 1.8;
}
.service-benefits {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px 28px;
}
.service-benefit {
  position: relative;
  padding: 4px 0 0;
}
.service-benefit-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  margin-bottom: 18px;
  border: 1px solid rgba(98, 132, 225, 0.14);
  background: linear-gradient(180deg, rgba(255,255,255,0.9), rgba(242, 247, 255, 0.96));
  color: #4a72e1;
  font-size: 1.35rem;
  box-shadow: 0 16px 30px rgba(64, 98, 182, 0.08);
}
.service-benefit h3 {
  margin-bottom: 12px;
  font-size: 1.55rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.service-benefit p {
  margin: 0;
  color: #5b6784;
  font-size: 1rem;
  line-height: 1.7;
}
.service-showcase-visual {
  position: relative;
  min-height: 760px;
  perspective: 1600px;
  transform-style: preserve-3d;
}
.service-showcase-visual::before {
  content: "";
  position: absolute;
  inset: 40px 18px 24px 18px;
  background:
    radial-gradient(circle at 50% 24%, rgba(124, 165, 255, 0.18), transparent 36%),
    linear-gradient(180deg, rgba(74, 111, 214, 0.08), rgba(255,255,255,0.2));
  box-shadow:
    inset 0 0 0 1px rgba(111, 138, 214, 0.08),
    0 40px 90px rgba(75, 104, 187, 0.12);
  filter: blur(0.2px);
}
.service-showcase-visual::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 18px;
  width: 72%;
  height: 40px;
  background: radial-gradient(circle, rgba(42, 68, 135, 0.18), transparent 68%);
  transform: translateX(-50%);
  filter: blur(16px);
}
.service-expert-card {
  position: absolute;
  width: 300px;
  border: 1px solid rgba(87, 111, 187, 0.12);
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(247, 250, 255, 0.96));
  box-shadow:
    0 26px 52px rgba(44, 64, 120, 0.14),
    0 10px 24px rgba(76, 107, 187, 0.08),
    inset 0 1px 0 rgba(255,255,255,0.8);
  overflow: hidden;
  transform-origin: center;
  transform-style: preserve-3d;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}
.service-expert-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.28), transparent 36%);
  pointer-events: none;
}
.service-expert-card::after {
  content: "";
  position: absolute;
  top: 16px;
  right: 16px;
  width: 44px;
  height: 44px;
  background:
    radial-gradient(circle at 30% 30%, rgba(255,255,255,0.92), rgba(255,255,255,0.06) 60%),
    linear-gradient(180deg, rgba(96, 142, 255, 0.24), rgba(66, 105, 208, 0.1));
  box-shadow: inset 0 0 0 1px rgba(118, 154, 238, 0.16);
  opacity: 0.75;
  pointer-events: none;
}
.service-expert-card-main {
  top: 0;
  left: 74px;
  z-index: 3;
  transform: rotate(-1.5deg) rotateX(7deg) rotateY(-8deg) translateZ(42px);
  animation: expertFloatMain 8s ease-in-out infinite;
}
.service-expert-card-side {
  top: 122px;
  right: 0;
  z-index: 2;
  transform: rotate(1.6deg) rotateX(5deg) rotateY(10deg) translateZ(18px);
  animation: expertFloatSide 9.5s ease-in-out infinite;
}
.service-expert-card-bottom {
  bottom: 0;
  left: 34px;
  z-index: 1;
  transform: rotate(-1deg) rotateX(4deg) rotateY(-6deg) translateZ(0);
  animation: expertFloatBottom 10.5s ease-in-out infinite;
}
.service-expert-card:hover {
  border-color: rgba(110, 148, 243, 0.24);
  box-shadow:
    0 34px 70px rgba(44, 64, 120, 0.18),
    0 12px 32px rgba(76, 107, 187, 0.12),
    inset 0 1px 0 rgba(255,255,255,0.84);
}
.service-expert-photo {
  display: block;
  width: 100%;
  height: 320px;
  object-fit: cover;
  background: #dfe5f4;
  transform: translateZ(18px);
}
.service-expert-body {
  position: relative;
  z-index: 1;
  padding: 18px 18px 20px;
  transform: translateZ(28px);
}
.service-expert-body h3 {
  margin-bottom: 8px;
  color: #365bc9;
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.service-expert-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 6px;
  color: #39724b;
  font-size: 0.88rem;
  font-weight: 700;
}
.service-expert-role {
  margin-bottom: 10px;
  color: #54627d;
  font-size: 0.95rem;
  font-weight: 600;
}
.service-expert-company {
  color: #4f5c7b;
  font-size: 0.95rem;
  line-height: 1.65;
}
.transform-cta {
  position: relative;
  overflow: hidden;
  padding: 82px 0;
  background:
    radial-gradient(circle at 14% 18%, rgba(96, 134, 230, 0.06), transparent 22%),
    linear-gradient(180deg, #fbfcff 0%, #f3f7ff 100%);
}
.transform-cta .container {
  position: relative;
  z-index: 1;
}
.transform-cta-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 34px;
  align-items: center;
  padding: 46px 48px 46px 52px;
  border: 1px solid rgba(180, 205, 255, 0.22);
  background: radial-gradient(circle at 22% 28%, rgba(156, 195, 255, 0.18), transparent 34%), linear-gradient(90deg, #0b6efd 0%, #5f87d1 46%, #243b73 78%, #17233f 100%);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.24),
    inset 0 -1px 0 rgba(10, 18, 42, 0.14),
    0 34px 82px rgba(15, 24, 56, 0.18);
  position: relative;
  isolation: isolate;
  border-radius: 30px;
}
.transform-cta-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.1), transparent 32%),
    linear-gradient(180deg, transparent 52%, rgba(255,255,255,0.035) 100%);
  pointer-events: none;
}
.transform-cta-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.06);
  pointer-events: none;
}
.transform-cta-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  padding: 9px 15px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.1);
  color: rgba(248,250,255,0.94);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.transform-cta-copy {
  position: relative;
  z-index: 1;
  color: #ffffff;
}
.transform-cta-copy h2 {
  max-width: 640px;
  margin-bottom: 20px;
  font-size: clamp(2.3rem, 4vw, 4rem);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.04em;
  text-wrap: balance;
}
.transform-cta-copy p {
  max-width: 520px;
  margin-bottom: 34px;
  color: rgba(239,244,255,0.9);
  font-size: 1.08rem;
  line-height: 1.8;
}
.transform-cta-button {display: inline-flex;align-items: center;gap: 12px;padding: 10px 14px 10px 18px;border-radius: 999px;background: linear-gradient(180deg, #ffffff 0%, #eef3ff 100%);color: #10183b;font-weight: 700;text-decoration: none;box-shadow: 0 16px 32px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.6);transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;}
.transform-cta-button:hover,
.transform-cta-button:focus-visible {
  color: #10183b;
  transform: translateY(-1px);
  box-shadow:
    0 20px 34px rgba(0,0,0,0.24),
    inset 0 1px 0 rgba(255,255,255,0.68);
  background: linear-gradient(180deg, #ffffff 0%, #f7f9ff 100%);
}
.transform-cta-button-icon {display: inline-flex;align-items: center;justify-content: center;width: 34px;height: 34px;border-radius: 999px;background: #2a73e4;color: #fff;font-size: 0.94rem;box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05);}
.transform-cta-visual {
  position: relative;
  min-height: 360px;
  display: grid;
  place-items: center;
}
.transform-cta-grid {
  position: absolute;
  inset: 20% 8% 18% 12%;
  border: 1px solid rgba(233, 241, 255, 0.08);
  background:
    linear-gradient(rgba(233, 241, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(233, 241, 255, 0.08) 1px, transparent 1px);
  background-size: 152px 80px;
  opacity: 0.32;
}
.transform-cta-circuit {
  position: absolute;
  inset: 20% 20% 18% 0;
  background:
    radial-gradient(circle at 24% 50%, rgba(229, 239, 255, 0.34) 0 2px, transparent 2px 100%),
    linear-gradient(90deg, rgba(229, 239, 255, 0.3) 0 2px, transparent 2px 100%),
    linear-gradient(180deg, rgba(229, 239, 255, 0.18) 0 2px, transparent 2px 100%);
  background-size: 120px 120px, 140px 18px, 18px 74px;
  mask: linear-gradient(90deg, rgba(0,0,0,0.9), transparent 88%);
  -webkit-mask: linear-gradient(90deg, rgba(0,0,0,0.9), transparent 88%);
  opacity: 0.55;
  animation: circuitPulse 6.5s ease-in-out infinite;
}
.transform-cta-orb {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(195, 221, 255, 0.24), transparent 68%);
  filter: blur(4px);
}
.transform-cta-orb-a {
  width: 120px;
  height: 120px;
  top: 24px;
  right: 180px;
  opacity: 0.34;
}
.transform-cta-orb-b {
  width: 76px;
  height: 76px;
  bottom: 40px;
  right: 260px;
  opacity: 0.22;
}
.transform-cta-data {
  position: absolute;
  display: grid;
  gap: 8px;
  opacity: 0.42;
}
.transform-cta-data span {
  display: block;
  width: 14px;
  height: 14px;
  border: 1px solid rgba(229, 239, 255, 0.22);
  background: rgba(229, 239, 255, 0.05);
}
.transform-cta-data-a {
  top: 42px;
  left: 56%;
  grid-template-columns: repeat(4, 14px);
}
.transform-cta-data-b {
  top: 82px;
  left: 72%;
  grid-template-columns: repeat(3, 14px);
}
.transform-cta-logo-wrap {
  position: absolute;
  right: 8px;
  width: 280px;
  height: 280px;
  display: grid;
  place-items: center;
  filter: drop-shadow(0 24px 44px rgba(12, 22, 48, 0.24));
}
.transform-cta-ring {
  position: absolute;
  border: 2px solid rgba(238, 244, 255, 0.82);
  border-radius: 50%;
}
.transform-cta-ring-a {
  inset: 0;
  border-color: rgba(238, 244, 255, 0.8);
  border-right-color: transparent;
  animation: spinRing 18s linear infinite;
}
.transform-cta-ring-b {
  inset: 18px;
  border-color: rgba(195, 227, 255, 0.7);
  border-left-color: transparent;
  animation: spinRingReverse 14s linear infinite;
}
.transform-cta-ring-c {
  inset: 34px;
  border-color: rgba(230, 239, 255, 0.36);
  border-top-color: transparent;
  animation: spinRing 11s linear infinite;
}
.transform-cta-ring-d {
  inset: 52px;
  border: 1px dashed rgba(201, 228, 255, 0.3);
  animation: spinRingReverse 24s linear infinite;
}
.transform-cta-logo-core {
  position: relative;
  z-index: 1;
  width: 176px;
  height: 176px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 28%, #ffffff, #eff4ff 72%);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.92),
    0 20px 48px rgba(28, 50, 108, 0.2),
    0 0 0 12px rgba(243, 247, 255, 0.08);
  animation: logoCoreFloat 5.5s ease-in-out infinite;
}
.transform-cta-logo-core img {
  width: 112px;
  height: 112px;
  object-fit: contain;
  display: block;
  border-radius: 50%;
}
.tech-spectrum {
  position: relative;
  overflow: hidden;
  padding: 88px 0;
  background:
    radial-gradient(circle at top left, rgba(123, 196, 255, 0.18), transparent 30%),
    radial-gradient(circle at bottom right, rgba(77, 141, 255, 0.18), transparent 32%),
    linear-gradient(135deg, #0b1231 0%, #111a46 50%, #0b1231 100%);
  color: #fff;
}
.tech-spectrum::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 32px 32px;
  opacity: 0.18;
  pointer-events: none;
}
.tech-spectrum::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 16% 24%, rgba(132, 196, 255, 0.18), transparent 0 20%),
    radial-gradient(circle at 82% 20%, rgba(92, 138, 255, 0.16), transparent 0 18%),
    radial-gradient(circle at 74% 76%, rgba(123, 196, 255, 0.12), transparent 0 20%),
    conic-gradient(from 180deg at 78% 24%, rgba(132, 196, 255, 0.18), rgba(132, 196, 255, 0) 42%) 76% 18% / 340px 220px no-repeat,
    linear-gradient(135deg, rgba(255,255,255,0.12), rgba(255,255,255,0) 42%) 14% 24% / 260px 260px no-repeat;
  filter: blur(4px);
  opacity: 0.82;
  transform: translate3d(0, 0, 0);
  animation: sectionDriftTech 18s ease-in-out infinite;
  pointer-events: none;
}
.tech-spectrum .container {
  position: relative;
  z-index: 1;
}
.tech-spectrum .container::before,
.tech-spectrum .container::after {
  content: "";
  position: absolute;
  pointer-events: none;
}
.tech-spectrum .container::before {
  top: 84px;
  right: -58px;
  width: 320px;
  height: 240px;
  border: 1px solid rgba(137, 186, 255, 0.14);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.01)),
    linear-gradient(135deg, rgba(103, 149, 255, 0.12), rgba(103, 149, 255, 0));
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,0.03),
    0 22px 60px rgba(6, 17, 48, 0.28),
    0 0 34px rgba(88, 135, 255, 0.12);
  transform: perspective(1200px) rotateX(68deg) rotateY(-26deg) rotateZ(-10deg);
  animation: sectionFloatPlane 14s ease-in-out infinite;
}
.tech-spectrum .container::after {
  left: -56px;
  bottom: 86px;
  width: 220px;
  height: 220px;
  border: 1px solid rgba(137, 186, 255, 0.14);
  border-radius: 50%;
  box-shadow:
    inset 0 0 22px rgba(111, 171, 255, 0.08),
    0 0 34px rgba(88, 135, 255, 0.12);
  animation: sectionSpinHalo 20s linear infinite;
}
.spectrum-layout {
  position: relative;
  z-index: 1;
}
.spectrum-layout::before,
.spectrum-layout::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 0;
}
.spectrum-layout::before {
  left: 22%;
  top: 64px;
  width: 260px;
  height: 180px;
  border: 1px solid rgba(139, 188, 255, 0.12);
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.01));
  box-shadow: 0 24px 44px rgba(7, 18, 50, 0.26);
  transform: perspective(1200px) rotateX(70deg) rotateY(18deg) rotateZ(6deg);
  animation: sectionFloatPlaneAlt 17s ease-in-out infinite;
}
.spectrum-layout::after {
  right: 8%;
  bottom: 48px;
  width: 180px;
  height: 180px;
  border: 1px solid rgba(139, 188, 255, 0.1);
  border-radius: 50%;
  box-shadow: 0 0 34px rgba(88, 135, 255, 0.14);
  animation: sectionSpinHaloReverse 16s linear infinite;
}
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  padding: 8px 14px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  color: var(--accent-soft);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.tech-spectrum h2 {
  max-width: none;
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  line-height: 1.16;
}
.section-intro {
  max-width: none;
  margin-bottom: 44px;
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.8;
}
.spectrum-layout {
  display: grid;
  grid-template-columns: minmax(260px, 360px) minmax(0, 1fr);
  gap: 30px;
  align-items: stretch;
}
.spectrum-nav {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-left: 28px;
}
.spectrum-nav::before {
  content: "";
  position: absolute;
  top: 10px;
  bottom: 10px;
  left: 12px;
  width: 4px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(77, 141, 255, 0.75), rgba(77, 141, 255, 0.08));
  box-shadow: 0 0 20px rgba(77, 141, 255, 0.24);
}
.spectrum-tab {
  position: relative;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255,255,255,0.10), rgba(255,255,255,0.04));
  color: #dbe5ff;
  text-align: left;
  padding: 18px 22px 18px 54px;
  font-weight: 700;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 18px 35px rgba(4, 10, 30, 0.18);
}
.spectrum-tab::before {
  content: "";
  position: absolute;
  left: -16px;
  top: 50%;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  transform: translateY(-50%);
  background: #ffffff;
  border: 5px solid var(--accent);
  box-shadow: 0 0 0 8px rgba(77, 141, 255, 0.18);
}
.spectrum-tab::after {
  content: "";
  position: absolute;
  left: 18px;
  top: 50%;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  transform: translateY(-50%);
  background: rgba(123, 196, 255, 0.24);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.12);
}
.spectrum-tab:hover,
.spectrum-tab:focus-visible {
  transform: translateX(6px);
  border-color: rgba(123, 196, 255, 0.35);
  outline: none;
}
.spectrum-tab.active {
  background: linear-gradient(90deg, rgba(123, 196, 255, 0.84), rgba(77, 141, 255, 0.88));
  color: #fff;
  border-color: rgba(166, 221, 255, 0.45);
  box-shadow: 0 22px 40px rgba(55, 117, 255, 0.25);
}
.spectrum-panel {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  border: 1px solid var(--panel-border);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.04));
  box-shadow: 0 24px 60px rgba(3, 9, 28, 0.28);
  overflow: hidden;
  backdrop-filter: blur(14px);
}
.spectrum-panel-top {
  padding: 30px;
}
.spectrum-panel-meta {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: flex-start;
  margin-bottom: 24px;
}
.spectrum-panel-meta h3 {
  margin-bottom: 10px;
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800;
}
.spectrum-panel-meta p {
  margin: 0;
  max-width: 560px;
  color: var(--text-muted);
  line-height: 1.8;
}
.spectrum-count {
  flex-shrink: 0;
  padding: 12px 16px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  background: rgba(255,255,255,0.07);
  color: #f3f7ff;
  font-size: 0.95rem;
  font-weight: 700;
  white-space: nowrap;
}
.tech-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.tech-card {
  position: relative;
  min-height: 176px;
  padding: 18px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(133, 153, 194, 0.24), rgba(92, 108, 151, 0.22));
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
  overflow: hidden;
}
.tech-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.12), transparent 45%);
  opacity: 0.65;
  pointer-events: none;
}
.tech-card:hover {
  transform: translateY(-8px) rotateX(3deg);
  border-color: rgba(123, 196, 255, 0.3);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.24);
}
.tech-icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin-bottom: 16px;
  border-radius: 18px;
  background: linear-gradient(135deg, #ffffff, #dde8ff);
  color: #1740a5;
  font-size: 1.3rem;
  box-shadow: 0 12px 24px rgba(11, 18, 49, 0.22);
}
.tech-card h4 {
  margin-bottom: 6px;
  font-size: 1.05rem;
  font-weight: 700;
}
.tech-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.6;
}
.spectrum-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 24px 30px 30px;
  min-height: 62px;
  padding: 16px 24px;
  border: 1px solid rgba(120, 155, 235, 0.22);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(40, 66, 132, 0.92), rgba(8, 15, 34, 0.98));
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  box-shadow:
    inset 0 1px 0 rgba(167, 198, 255, 0.2),
    inset 0 -1px 0 rgba(0,0,0,0.28),
    0 12px 26px rgba(2, 8, 24, 0.32);
  position: relative;
  overflow: hidden;
  isolation: isolate;
  --spectrum-sheen-x: -140%;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.spectrum-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.12), transparent 42%),
    linear-gradient(110deg, transparent 22%, rgba(255,255,255,0.2) 48%, transparent 72%);
  background-size: 100% 100%, 220% 100%;
  background-position: 0 0, var(--spectrum-sheen-x) 0;
  opacity: 0.9;
  pointer-events: none;
  transition: background-position 0.45s ease, opacity 0.2s ease;
}
.spectrum-cta > * {
  position: relative;
  z-index: 1;
}
.spectrum-cta:hover,
.spectrum-cta:focus-visible {
  color: #fff;
  background: linear-gradient(180deg, rgba(48, 81, 156, 0.98), rgba(10, 21, 46, 1));
  border-color: rgba(153, 187, 255, 0.3);
  box-shadow:
    inset 0 1px 0 rgba(180, 208, 255, 0.24),
    inset 0 -1px 0 rgba(0,0,0,0.32),
    0 18px 34px rgba(4, 14, 38, 0.4);
  transform: translateY(-2px) scale(1.01);
  --spectrum-sheen-x: 140%;
}
.spectrum-cta:active {
  transform: translateY(1px) scale(0.995);
  box-shadow:
    inset 0 1px 0 rgba(170, 196, 255, 0.18),
    inset 0 -1px 0 rgba(0,0,0,0.34),
    0 10px 18px rgba(4, 14, 38, 0.28);
}
.spectrum-cta-arrow {
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1;
  transition: transform 0.25s ease;
}
.spectrum-cta:hover .spectrum-cta-arrow,
.spectrum-cta:focus-visible .spectrum-cta-arrow {
  transform: translateX(6px);
}
.customer-reviews {
  position: relative;
  overflow: hidden;
  padding: 96px 0 92px;
  background:
    radial-gradient(circle at 12% 18%, rgba(123, 196, 255, 0.08), transparent 22%),
    radial-gradient(circle at 86% 80%, rgba(77, 141, 255, 0.1), transparent 24%),
    linear-gradient(180deg, #f8fbff 0%, #eef4ff 100%);
  color: #14203d;
}
.customer-reviews::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(104, 132, 206, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(104, 132, 206, 0.04) 1px, transparent 1px);
  background-size: 38px 38px;
  opacity: 0.4;
  pointer-events: none;
}
.customer-reviews .container {
  position: relative;
  z-index: 1;
}
.customer-reviews-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 28px;
  margin-bottom: 38px;
}
.customer-reviews-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  padding: 8px 14px;
  border: 1px solid rgba(77, 118, 228, 0.14);
  background: rgba(85, 124, 255, 0.08);
  color: #3d63d0;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.customer-reviews-head h2 {
  max-width: 860px;
  margin-bottom: 14px;
  font-size: clamp(2.1rem, 4vw, 3.4rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.04em;
}
.customer-reviews-head p {
  max-width: 760px;
  margin: 0;
  color: #5a6785;
  font-size: 1.04rem;
  line-height: 1.8;
}
.review-nav {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  flex-shrink: 0;
}
.review-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border: 1px solid rgba(79, 112, 204, 0.14);
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(236, 242, 255, 0.94));
  color: #17326d;
  font-size: 1.1rem;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.84),
    0 14px 28px rgba(51, 77, 152, 0.12);
  transition: transform 0.24s ease, box-shadow 0.24s ease, background 0.24s ease;
}
.review-arrow:hover,
.review-arrow:focus-visible {
  transform: translateY(-2px);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.92),
    0 18px 34px rgba(51, 77, 152, 0.18);
  outline: none;
}
.review-stage {
  position: relative;
  perspective: 1800px;
}
.review-stage::before,
.review-stage::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  filter: blur(22px);
  pointer-events: none;
}
.review-stage::before {
  top: 34px;
  left: 22%;
  width: 180px;
  height: 180px;
  background: rgba(121, 178, 255, 0.18);
}
.review-stage::after {
  right: 12%;
  bottom: 28px;
  width: 220px;
  height: 220px;
  background: rgba(103, 122, 231, 0.14);
}
.review-feature {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  gap: 26px;
  align-items: stretch;
  padding: 30px;
  border: 1px solid rgba(100, 128, 205, 0.12);
  background:
    linear-gradient(145deg, rgba(255,255,255,0.9), rgba(245, 249, 255, 0.82)),
    linear-gradient(180deg, rgba(255,255,255,0.22), rgba(255,255,255,0));
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.74),
    0 28px 62px rgba(60, 86, 162, 0.1);
  backdrop-filter: blur(12px);
  transform-style: preserve-3d;
}
.review-profile-card,
.review-quote {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(99, 126, 205, 0.12);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.76),
    0 24px 44px rgba(55, 83, 160, 0.1);
  transform: translateZ(0);
}
.review-profile-card::before,
.review-quote::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.18), transparent 42%);
  pointer-events: none;
}
.review-profile-card {
  display: grid;
  gap: 20px;
  padding: 22px;
  background: linear-gradient(180deg, rgba(255,255,255,0.92), rgba(241, 246, 255, 0.82));
  transform: translate3d(0, -6px, 34px) rotateY(-5deg);
  animation: reviewFloatA 7s ease-in-out infinite;
}
.review-profile {
  display: grid;
  align-content: start;
  gap: 18px;
}
.review-avatar {
  width: 100%;
  max-width: 108px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border: 3px solid rgba(255,255,255,0.85);
  box-shadow: 0 16px 34px rgba(57, 83, 160, 0.16);
}
.review-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  padding: 6px 10px;
  background: rgba(63, 99, 212, 0.08);
  color: #355bc7;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.review-profile-copy h3 {
  margin-bottom: 6px;
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.review-title,
.review-project {
  margin: 0;
  color: #55617e;
  font-size: 0.98rem;
  line-height: 1.7;
}
.review-project {
  margin-top: 6px;
  color: #355bc7;
  font-weight: 700;
}
.review-meta-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.review-meta-card {
  padding: 14px 14px 13px;
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(99, 126, 205, 0.1);
}
.review-meta-label {
  display: block;
  margin-bottom: 6px;
  color: #6a7695;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.review-meta-value {
  display: block;
  color: #162544;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
}
.review-quote {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 28px 26px 28px 54px;
  background: linear-gradient(180deg, rgba(243, 247, 255, 0.92), rgba(255,255,255,0.82));
  transform: translate3d(0, 12px, 28px) rotateY(4deg);
  animation: reviewFloatC 7.5s ease-in-out infinite;
}
.review-quote-mark {
  position: absolute;
  top: 10px;
  left: 18px;
  color: rgba(63, 101, 212, 0.2);
  font-size: 4.2rem;
  font-weight: 800;
  line-height: 1;
}
.review-rating {
  display: inline-flex;
  gap: 6px;
  margin-bottom: 18px;
}
.review-rating i {
  color: #ffb648;
  font-size: 0.95rem;
}
.review-quote p {
  margin: 0;
  color: #31405e;
  font-size: 1.08rem;
  line-height: 1.9;
}
.review-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
}
.review-dot {
  width: 11px;
  height: 11px;
  border: 0;
  background: rgba(49, 79, 161, 0.18);
  transition: transform 0.22s ease, background 0.22s ease;
}
.review-dot.active {
  background: #4168da;
  transform: scale(1.2);
}
.review-feature.fade-enter {
  animation: reviewFadeUp 0.55s ease;
}
@keyframes reviewFadeUp {
  0% {
    opacity: 0;
    transform: translateY(18px) scale(0.985);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
@keyframes reviewFloatA {
  0%, 100% { transform: translate3d(0, -6px, 34px) rotateY(-5deg); }
  50% { transform: translate3d(0, -12px, 38px) rotateY(-3deg); }
}
@keyframes reviewFloatC {
  0%, 100% { transform: translate3d(0, 12px, 28px) rotateY(4deg); }
  50% { transform: translate3d(0, 4px, 32px) rotateY(2deg); }
}
.portfolio-showcase {
  position: relative;
  overflow: hidden;
  padding: 88px 0;
  background:
    radial-gradient(circle at top center, rgba(114, 147, 255, 0.14), transparent 28%),
    linear-gradient(135deg, #0b1231 0%, #171f48 45%, #0d1434 100%);
  color: #fff;
}
.portfolio-showcase::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 34px 34px;
  opacity: 0.14;
  pointer-events: none;
}
.portfolio-showcase::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 26%, rgba(132, 196, 255, 0.14), transparent 0 20%),
    radial-gradient(circle at 82% 76%, rgba(92, 138, 255, 0.14), transparent 0 22%),
    conic-gradient(from 220deg at 18% 24%, rgba(255,255,255,0.1), rgba(255,255,255,0) 44%) 8% 18% / 240px 240px no-repeat,
    conic-gradient(from 40deg at 84% 18%, rgba(255,255,255,0.08), rgba(255,255,255,0) 48%) 82% 14% / 260px 200px no-repeat,
    linear-gradient(135deg, rgba(118, 165, 255, 0.16), rgba(118, 165, 255, 0) 60%) 78% 78% / 300px 220px no-repeat;
  opacity: 0.8;
  animation: sectionDriftPortfolio 20s ease-in-out infinite;
  pointer-events: none;
}
.portfolio-showcase .container {
  position: relative;
  z-index: 1;
}
.portfolio-showcase .container::before,
.portfolio-showcase .container::after {
  content: "";
  position: absolute;
  pointer-events: none;
}
.portfolio-showcase .container::before {
  top: 74px;
  left: -62px;
  width: 320px;
  height: 180px;
  border: 1px solid rgba(130, 175, 255, 0.12);
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.01));
  transform: perspective(1200px) rotateX(68deg) rotateY(24deg) rotateZ(8deg);
  box-shadow:
    0 24px 48px rgba(6, 17, 48, 0.28),
    0 0 34px rgba(88, 135, 255, 0.12);
  animation: sectionFloatPlaneAlt 16s ease-in-out infinite;
}
.portfolio-showcase .container::after {
  right: -34px;
  top: 92px;
  width: 210px;
  height: 210px;
  border: 1px solid rgba(130, 175, 255, 0.14);
  border-radius: 50%;
  box-shadow:
    inset 0 0 20px rgba(113, 171, 255, 0.06),
    0 0 30px rgba(88, 135, 255, 0.12);
  animation: sectionSpinHaloReverse 18s linear infinite;
}
.portfolio-shell {
  position: relative;
  z-index: 1;
}
.portfolio-shell::before,
.portfolio-shell::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 0;
}
.portfolio-shell::before {
  right: 10%;
  bottom: 42px;
  width: 260px;
  height: 160px;
  border: 1px solid rgba(137, 184, 255, 0.12);
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.01));
  box-shadow: 0 20px 44px rgba(7, 18, 50, 0.24);
  transform: perspective(1200px) rotateX(68deg) rotateY(-18deg) rotateZ(-4deg);
  animation: sectionFloatPlane 18s ease-in-out infinite;
}
.portfolio-shell::after {
  left: 12%;
  top: 96px;
  width: 160px;
  height: 160px;
  border: 1px solid rgba(137, 184, 255, 0.1);
  border-radius: 50%;
  box-shadow: 0 0 30px rgba(88, 135, 255, 0.12);
  animation: sectionSpinHalo 14s linear infinite;
}
.portfolio-title {
  max-width: 940px;
  margin: 0 auto 42px;
  text-align: center;
  font-size: clamp(2rem, 4vw, 3.45rem);
  font-weight: 800;
  line-height: 1.16;
}
.portfolio-shell {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
}
.portfolio-arrow {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  border: 0;
  border-radius: 50%;
  background: #fff;
  color: #111938;
  font-size: 1.8rem;
  box-shadow: 0 18px 40px rgba(6, 11, 29, 0.28);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.portfolio-arrow:hover,
.portfolio-arrow:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 24px 44px rgba(6, 11, 29, 0.34);
  outline: none;
}
.portfolio-card {
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.04));
  box-shadow: 0 28px 60px rgba(5, 10, 28, 0.3);
  overflow: hidden;
  backdrop-filter: blur(10px);
}
.portfolio-slide {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(360px, 1.35fr);
  gap: 22px;
  padding: 36px;
  align-items: stretch;
}
.portfolio-copy {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-width: 0;
}
.portfolio-brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 110px;
  height: 110px;
  margin-bottom: 22px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(255,255,255,0.98), rgba(234, 240, 255, 0.94));
  color: #0f173b;
  font-size: 1.05rem;
  font-weight: 800;
  box-shadow: 0 18px 34px rgba(9, 15, 40, 0.2);
}
.portfolio-copy h3 {
  margin-bottom: 10px;
  font-size: clamp(1.9rem, 3vw, 2.5rem);
  font-weight: 800;
}
.portfolio-tagline {
  margin-bottom: 22px;
  color: #d8e1ff;
  font-size: 1.18rem;
}
.portfolio-divider {
  margin: 0 0 26px;
  border-color: rgba(255,255,255,0.12);
  opacity: 1;
}
.portfolio-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 26px;
  margin-bottom: 28px;
}
.portfolio-metric strong {
  display: block;
  margin-bottom: 4px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
}
.portfolio-metric span {
  color: #d8e1ff;
  font-size: 1.04rem;
  line-height: 1.55;
}
.portfolio-cta {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  align-self: flex-start;
  padding: 14px 22px;
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  transition: background 0.24s ease, transform 0.24s ease, box-shadow 0.24s ease;
}
.portfolio-cta:hover,
.portfolio-cta:focus-visible {
  color: #fff;
  background: rgba(255,255,255,0.18);
  transform: translateX(6px);
  box-shadow: 0 16px 30px rgba(7, 16, 42, 0.2);
  outline: none;
}
.portfolio-visual {
  position: relative;
  min-height: 520px;
  border-radius: 32px;
  overflow: hidden;
  background: var(--portfolio-bg, linear-gradient(135deg, #ffc74f, #f2b42f));
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.18);
}
.portfolio-glow {
  position: absolute;
  inset: auto 12% 7% 12%;
  height: 38px;
  border-radius: 999px;
  background: rgba(0,0,0,0.12);
  filter: blur(16px);
}
.portfolio-device {
  position: absolute;
  border: 4px solid rgba(255,255,255,0.2);
  background: linear-gradient(180deg, #0b0f1f 0%, #171b2d 100%);
  box-shadow: 0 30px 45px rgba(0,0,0,0.22);
  overflow: hidden;
}
.portfolio-device::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 10px;
  width: 34%;
  height: 14px;
  border-radius: 999px;
  transform: translateX(-50%);
  background: rgba(255,255,255,0.08);
}
.portfolio-device-a {
  width: 220px;
  height: 430px;
  left: 19%;
  bottom: 9%;
  border-radius: 34px;
  transform: rotate(-22deg);
}
.portfolio-device-b {
  width: 220px;
  height: 430px;
  right: 15%;
  bottom: 14%;
  border-radius: 34px;
}
.portfolio-device.web {
  width: 78%;
  height: 72%;
  left: 11%;
  bottom: 14%;
  border-radius: 28px;
  transform: none;
}
.portfolio-device-dms {
  box-shadow:
    0 34px 54px rgba(7, 14, 34, 0.26),
    0 0 46px rgba(115, 170, 255, 0.18);
}
.portfolio-device-screenshot {
  width: 76%;
  height: 74%;
  left: 12%;
  bottom: 13%;
}
.portfolio-screen {
  position: absolute;
  inset: 24px 10px 10px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
  overflow: hidden;
}
.portfolio-shot {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  filter: saturate(1.02) contrast(1.02);
}
.portfolio-shot-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(13, 22, 52, 0.74);
  color: #f5f8ff;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  backdrop-filter: blur(10px);
}
.portfolio-shot-note {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(13, 22, 52, 0.78);
  color: rgba(233, 239, 255, 0.9);
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.5;
  backdrop-filter: blur(10px);
}
.screen-topbar {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 12px 14px 8px;
}
.screen-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.22);
}
.screen-hero {
  margin: 8px 14px;
  border-radius: 20px;
  background: var(--portfolio-accent, rgba(255, 199, 79, 0.95));
}
.screen-hero.tall {
  height: 120px;
}
.screen-hero.short {
  height: 88px;
}
.screen-lines {
  display: grid;
  gap: 8px;
  padding: 10px 14px 14px;
}
.screen-line {
  height: 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
}
.screen-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding: 4px 14px 14px;
}
.screen-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0 14px 6px;
}
.screen-chip {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  color: rgba(235, 241, 255, 0.88);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}
.screen-metric-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding: 2px 14px 14px;
}
.screen-metric-card {
  min-height: 84px;
  padding: 12px;
  border-radius: 18px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.05);
}
.screen-metric-card strong {
  display: block;
  margin-bottom: 6px;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
}
.screen-metric-card span {
  display: block;
  color: rgba(220, 230, 255, 0.72);
  font-size: 0.73rem;
  line-height: 1.45;
}
.screen-card {
  min-height: 82px;
  border-radius: 16px;
  background: rgba(255,255,255,0.05);
}
.screen-cta {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  height: 42px;
  border-radius: 999px;
  background: rgba(255,255,255,0.09);
}
.screen-side-note {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  padding: 10px 14px;
  border-radius: 16px;
  background: rgba(255,255,255,0.08);
  color: rgba(230, 238, 255, 0.82);
  font-size: 0.74rem;
  font-weight: 600;
  line-height: 1.45;
}
.portfolio-indicators {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
}
.portfolio-dot {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,0.24);
  transition: transform 0.2s ease, background 0.2s ease;
}
.portfolio-dot.active {
  background: #fff;
  transform: scale(1.15);
}
@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes floatCard {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
@keyframes shimmer {
  0% {
    filter: brightness(1);
  }
  50% {
    filter: brightness(1.16);
  }
  100% {
    filter: brightness(1);
  }
}
@keyframes pulseGlow {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.08);
    opacity: 0.72;
  }
}
@keyframes floatGlyph {
  0%, 100% {
    transform: translate3d(0, 0, 0);
    opacity: 0.18;
  }
  50% {
    transform: translate3d(0, -16px, 0);
    opacity: 0.32;
  }
}
@keyframes driftPanelA {
  0%, 100% {
    transform: rotateY(-24deg) rotateX(16deg) translate3d(0, 0, 0);
  }
  50% {
    transform: rotateY(-14deg) rotateX(9deg) translate3d(-18px, 18px, 40px);
  }
}
@keyframes driftPanelB {
  0%, 100% {
    transform: rotateY(-14deg) rotateX(12deg) translate3d(0, 0, 0);
  }
  50% {
    transform: rotateY(-4deg) rotateX(20deg) translate3d(22px, -14px, 34px);
  }
}
@keyframes driftPanelC {
  0%, 100% {
    transform: rotateY(18deg) rotateX(-12deg) translate3d(0, 0, 0);
  }
  50% {
    transform: rotateY(10deg) rotateX(-4deg) translate3d(16px, 18px, 28px);
  }
}
@keyframes spinRing {
  from {
    transform: translateX(-50%) rotate(0deg);
  }
  to {
    transform: translateX(-50%) rotate(360deg);
  }
}
@keyframes spinRingReverse {
  from {
    transform: rotate(360deg);
  }
  to {
    transform: rotate(0deg);
  }
}
@keyframes expertFloatMain {
  0%, 100% {
    transform: rotate(-1.5deg) rotateX(7deg) rotateY(-8deg) translate3d(0, 0, 42px);
  }
  50% {
    transform: rotate(-0.2deg) rotateX(10deg) rotateY(-12deg) translate3d(10px, -14px, 68px);
  }
}
@keyframes expertFloatSide {
  0%, 100% {
    transform: rotate(1.6deg) rotateX(5deg) rotateY(10deg) translate3d(0, 0, 18px);
  }
  50% {
    transform: rotate(2.4deg) rotateX(8deg) rotateY(14deg) translate3d(8px, -10px, 42px);
  }
}
@keyframes expertFloatBottom {
  0%, 100% {
    transform: rotate(-1deg) rotateX(4deg) rotateY(-6deg) translate3d(0, 0, 0);
  }
  50% {
    transform: rotate(0deg) rotateX(7deg) rotateY(-10deg) translate3d(14px, -8px, 28px);
  }
}
@keyframes circuitPulse {
  0%, 100% {
    opacity: 0.42;
    transform: translateX(0);
  }
  50% {
    opacity: 0.72;
    transform: translateX(10px);
  }
}
@keyframes logoCoreFloat {
  0%, 100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-8px) scale(1.03);
  }
}
@keyframes logoOrbit {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.fade-enter {
  animation: panelFade 0.35s ease;
}
@keyframes panelFade {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 1199.98px) {
  .topbar-nav {
    gap: 14px;
  }
  .topbar-nav .nav-link {
    font-size: 0.9rem;
  }
  .topbar-subnav .nav-link {
    font-size: 0.86rem;
    padding: 8px;
  }
  .topbar-subnav-label {
    font-size: 0.82rem;
  }
  .topbar-subnav-right {
    gap: 8px;
  }
  .subnav-utility,
  .subnav-profile {
    padding-inline: 10px;
  }
  .topbar-dropdown {
    width: min(940px, calc(100vw - 28px));
  }
  .mega-menu {
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 22px;
  }
  .mega-menu-content {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .mega-menu-links-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .tech-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .service-showcase-grid {
    gap: 36px;
  }
  .service-expert-card-main {
    left: 28px;
  }
}
@media (max-width: 991.98px) {
  .topbar-main {
    justify-content: flex-end;
  }
  .topbar-main .topbar-nav,
  .topbar-subnav,
  .topbar-cta {
    display: none;
  }
  .topbar-toggle {
    display: inline-flex;
  }
  .hero {
    padding: 76px 0 70px;
  }
  .hero-depth-card-c,
  .hero-depth-ring-a {
    display: none;
  }
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .hero-visual {
    min-height: 500px;
  }
  .hero-video-trigger {
    right: 24px;
    min-width: 196px;
  }
  .transform-cta-shell {
    grid-template-columns: 1fr;
    padding: 36px;
  }
  .transform-cta-visual {
    min-height: 300px;
  }
  .transform-cta-grid {
    inset: 18% 10% 16% 16%;
  }
  .transform-cta-data-b {
    display: none;
  }
  .transform-cta-logo-wrap {
    position: relative;
    right: auto;
  }
  .service-showcase-grid {
    grid-template-columns: 1fr;
  }
  .service-showcase-visual {
    min-height: 700px;
  }
  .hiring-steps {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .hiring-step {
    gap: 18px;
  }
  .hiring-flow-intro {
    max-width: 680px;
  }
  .hiring-step-track {
    min-height: auto;
  }
  .hiring-step-line.is-muted {
    display: none;
  }
  .tech-spectrum {
    padding: 72px 0;
  }
  .tech-spectrum .container::before,
  .portfolio-showcase .container::before {
    display: none;
  }
  .customer-reviews {
    padding: 76px 0 72px;
  }
  .customer-reviews-head {
    flex-direction: column;
    align-items: flex-start;
  }
  .portfolio-showcase {
    padding: 72px 0;
  }
  .tech-spectrum::after,
  .portfolio-showcase::after {
    opacity: 0.42;
  }
  .video-feedback {
    padding: 76px 0 72px;
  }
  .video-feedback-head {
    flex-direction: column;
    align-items: flex-start;
  }
  .spectrum-layout {
    grid-template-columns: 1fr;
  }
  .spectrum-nav {
    padding-left: 0;
    gap: 12px;
  }
  .spectrum-nav::before {
    display: none;
  }
  .spectrum-tab {
    padding-left: 22px;
  }
  .spectrum-tab::before,
  .spectrum-tab::after {
    display: none;
  }
  .spectrum-panel-meta {
    flex-direction: column;
  }
  .portfolio-shell {
    grid-template-columns: 1fr;
  }
  .portfolio-arrow {
    display: none;
  }
  .review-feature {
    grid-template-columns: 1fr;
  }
  .review-profile-card,
  .review-quote {
    transform: none;
  }
  .review-profile {
    grid-template-columns: 108px minmax(0, 1fr);
    align-items: center;
  }
  .video-feedback-card {
    flex: 0 0 calc((100% - 18px) / 2);
  }
  .portfolio-slide {
    grid-template-columns: 1fr;
  }
  .portfolio-visual {
    min-height: 440px;
  }
  .tech-spectrum .container::after,
  .portfolio-showcase .container::after {
    display: none;
  }
  .cta-shell {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-top {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .footer-links-block {
    grid-template-columns: 1fr;
  }
  .page-grid,
  .auth-shell,
  .support-intro-grid,
  .support-channel-grid {
    grid-template-columns: 1fr;
  }
  .auth-shell--featured,
  .auth-shell--compact {
    grid-template-columns: 1fr;
  }
  .dashboard-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 767.98px) {
  .topbar {
    padding: 14px 0;
  }
  .page-hero {
    padding: 132px 0 58px;
  }
  .page-content {
    padding: 60px 0 72px;
  }
  .page-card,
  .auth-card,
  .dashboard-card,
  .page-sidebar-card,
  .support-channel,
  .support-faq-item,
  .support-mini {
    padding: 22px;
  }
  .auth-grid {
    grid-template-columns: 1fr;
  }
  .auth-panel {
    padding: 24px;
  }
  .transform-cta {
    padding: 64px 0;
  }
  .tech-spectrum::after,
  .portfolio-showcase::after {
    opacity: 0.3;
  }
  .video-feedback-head h2 {
    font-size: 2.1rem;
  }
  .video-feedback-nav {
    width: 100%;
    justify-content: flex-end;
  }
  .video-feedback-media video {
    height: 190px;
  }
  .video-feedback-card {
    flex: 0 0 88vw;
  }
  .customer-reviews-head h2 {
    font-size: 2.3rem;
  }
  .review-nav {
    width: 100%;
    justify-content: flex-end;
  }
  .review-feature {
    padding: 22px;
  }
  .review-profile-card {
    padding: 20px;
  }
  .review-profile {
    grid-template-columns: 1fr;
  }
  .review-avatar {
    max-width: 92px;
  }
  .review-meta-grid {
    grid-template-columns: 1fr;
  }
  .transform-cta-shell {
    padding: 28px 24px;
    gap: 24px;
  }
  .transform-cta-copy h2 {
    font-size: 2.2rem;
  }
  .transform-cta-copy p {
    font-size: 1rem;
    line-height: 1.7;
  }
  .transform-cta-circuit {
    inset: 12% 6% 8% 0;
  }
  .transform-cta-grid {
    inset: 18% 4% 12% 18%;
    opacity: 0.24;
  }
  .transform-cta-orb-b,
  .transform-cta-data {
    display: none;
  }
  .transform-cta-logo-wrap {
    width: 230px;
    height: 230px;
  }
  .transform-cta-logo-core {
    width: 148px;
    height: 148px;
  }
  .transform-cta-logo-core img {
    width: 94px;
    height: 94px;
  }
  .service-showcase {
    padding: 72px 0 64px;
  }
  .service-benefits {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .service-showcase-visual {
    min-height: auto;
    display: grid;
    gap: 18px;
  }
  .service-showcase-visual::before {
    display: none;
  }
  .service-expert-card {
    position: relative;
    width: 100%;
    max-width: none;
    transform: none;
    animation: none;
  }
  .service-expert-card-main,
  .service-expert-card-side,
  .service-expert-card-bottom {
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
  }
  .service-expert-photo {
    height: 260px;
    transform: none;
  }
  .hiring-flow {
    padding: 68px 0 60px;
  }
  .hiring-flow-head {
    margin-bottom: 34px;
  }
  .hiring-flow-intro {
    font-size: 1rem;
    line-height: 1.7;
  }
  .hiring-step-track {
    grid-template-columns: 0 minmax(72px, auto) 1fr;
  }
  .hiring-step-line {
    margin-left: 14px;
  }
  .hiring-step-node {
    width: 72px;
    height: 72px;
    margin: 0 14px 0 0;
    font-size: 1.9rem;
  }
  .hiring-step-copy {
    text-align: left;
    padding: 24px 22px 22px;
  }
  .hiring-step-copy p {
    max-width: none;
    margin: 0;
  }
  .hero h1 { font-size: 36px; }
  .hero-lead {
    font-size: 1rem;
  }
  .hero-visual {
    min-height: 430px;
  }
  .hero-video-trigger {
    top: auto;
    right: 20px;
    bottom: 18px;
    min-width: 178px;
    padding: 10px 14px 10px 10px;
    transform: translateZ(82px);
  }
  .hero-video-trigger:hover,
  .hero-video-trigger:focus-visible {
    transform: translateY(-2px) translateZ(88px);
  }
  .hero-video-trigger-icon {
    width: 48px;
    height: 48px;
    font-size: 1.28rem;
  }
  .video-modal-dialog {
    padding: 22px 20px 20px;
  }
  .hero-card-main {
    inset: 54px 0 34px 20px;
  }
  .hero-card-float {
    right: 8px;
    width: 180px;
  }
  .hero-panel {
    width: 180px;
  }
  .hero-depth-scene {
    opacity: 0.6;
  }
  .hero-depth-card-b,
  .hero-depth-ring-b {
    display: none;
  }
  .hero-pattern span:nth-child(n+5) {
    display: none;
  }
  .section {
    padding: 48px 0;
  }
  .tech-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .spectrum-panel-top,
  .spectrum-cta {
    padding: 22px;
  }
  .tech-card {
    min-height: 160px;
  }
  .portfolio-slide {
    padding: 24px;
  }
  .portfolio-brand {
    width: 92px;
    height: 92px;
    border-radius: 24px;
  }
  .portfolio-metrics {
    grid-template-columns: 1fr;
  }
  .portfolio-visual {
    min-height: 360px;
  }
  .portfolio-device-a,
  .portfolio-device-b {
    width: 160px;
    height: 320px;
  }
  .cta {
    padding: 64px 0;
  }
  .cta-shell {
    padding: 28px 24px;
  }
  .cta-copy p {
    font-size: 0.98rem;
  }
  .site-footer {
    padding: 68px 0 24px;
  }
  .faq-layout {
    grid-template-columns: 1fr;
  }
  .faq-grid {
    grid-template-columns: 1fr;
  }
  .footer-links-block {
    grid-template-columns: 1fr;
  }
  .footer-service-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
  .lead-chat {
    justify-items: stretch;
    margin-top: 16px;
  }
  .lead-chat-launcher,
  .lead-chat-panel {
    width: 100%;
  }
  .lead-chat-panel {
    max-height: min(78vh, 720px);
    overflow-y: auto;
    left: 0;
    right: 0;
  }
  .lead-chat-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 575.98px) {
  .brand-text {
    font-size: 0.96rem;
  }
  .transform-cta-shell {
    padding: 24px 20px;
  }
  .tech-spectrum::after,
  .portfolio-showcase::after {
    opacity: 0.22;
  }
  .lead-chat {
    gap: 10px;
  }
  .lead-chat-panel {
    padding: 18px;
  }
  .lead-chat-launcher-copy small {
    display: none;
  }
  .lead-chat-head {
    gap: 12px;
  }
  .lead-chat-head h3 {
    font-size: 1.16rem;
  }
  .lead-chat-options {
    gap: 6px;
  }
  .lead-chat-option {
    width: 100%;
  }
  .lead-chat-nav {
    grid-template-columns: 1fr;
  }
  .hero-video-trigger {
    left: 20px;
    right: 20px;
    bottom: 14px;
    width: auto;
    min-width: 0;
    justify-content: center;
  }
  .hero-video-trigger-copy small {
    display: none;
  }
  .video-modal {
    padding: 14px;
  }
  .video-modal-dialog {
    padding: 18px 16px 16px;
  }
  .video-modal-close {
    top: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
  }
  .page-hero h1 {
    font-size: 2.15rem;
  }
  .page-hero p,
  .page-card p,
  .page-card li,
  .page-sidebar-card p,
  .support-mini span,
  .support-channel p,
  .support-faq-item p {
    font-size: 0.95rem;
  }
  .footer-bottom-links {
    flex-wrap: wrap;
    gap: 12px;
  }
  .customer-reviews-head h2 {
    font-size: 1.95rem;
  }
  .customer-reviews-head p,
  .review-quote p {
    font-size: 0.98rem;
  }
  .review-arrow {
    width: 48px;
    height: 48px;
  }
  .review-feature {
    padding: 18px;
  }
  .review-quote {
    padding: 22px 18px 22px 44px;
  }
  .transform-cta-kicker {
    font-size: 0.72rem;
  }
  .transform-cta-copy h2 {
    font-size: 1.95rem;
  }
  .transform-cta-button {
    width: 100%;
    justify-content: center;
  }
  .transform-cta-visual {
    min-height: 240px;
  }
  .transform-cta-grid,
  .transform-cta-orb {
    display: none;
  }
  .transform-cta-circuit {
    opacity: 0.38;
  }
  .transform-cta-logo-wrap {
    width: 190px;
    height: 190px;
  }
  .transform-cta-logo-core {
    width: 122px;
    height: 122px;
  }
  .transform-cta-logo-core img {
    width: 76px;
    height: 76px;
  }
  .cta-button {
    width: 100%;
    justify-content: center;
  }
  .service-showcase-copy h2 {
    font-size: 2.2rem;
  }
  .service-showcase-copy > p,
  .service-benefit p {
    font-size: 0.98rem;
  }
  .service-expert-body {
    padding: 16px;
    transform: none;
  }
  .hiring-flow-kicker {
    font-size: 0.75rem;
  }
  .hiring-flow h2 {
    font-size: 2rem;
  }
  .hiring-step-track {
    grid-template-columns: 0 minmax(64px, auto) 1fr;
  }
  .hiring-step-node {
    width: 64px;
    height: 64px;
    font-size: 1.7rem;
  }
  .hiring-step-line::after {
    width: 18px;
    height: 18px;
  }
  .hero {
    padding: 64px 0 56px;
  }
  .hero-eyebrow {
    margin-bottom: 18px;
  }
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-primary,
  .hero-secondary {
    justify-content: center;
  }
  .hero-meta {
    gap: 16px;
  }
  .hero-visual {
    min-height: 340px;
  }
  .hero-card-main {
    inset: 50px 0 24px 0;
    padding: 16px;
  }
  .hero-card-float,
  .hero-panel {
    display: none;
  }
  .hero-window-body {
    grid-template-columns: 66px minmax(0, 1fr);
    gap: 12px;
    padding: 12px;
  }
  .hero-card-grid {
    gap: 10px;
  }
  .hero-depth-scene,
  .hero-pattern {
    display: none;
  }
  .tech-spectrum {
    padding: 60px 0;
  }
  .portfolio-showcase {
    padding: 60px 0;
  }
  .tech-spectrum h2 {
    font-size: 1.9rem;
  }
  .section-intro {
    font-size: 0.98rem;
  }
  .tech-grid {
    grid-template-columns: 1fr;
  }
  .spectrum-cta {
    font-size: 0.96rem;
  }
  .portfolio-title {
    margin-bottom: 30px;
    font-size: 1.95rem;
  }
  .portfolio-slide {
    padding: 20px;
  }
  .portfolio-visual {
    min-height: 310px;
    border-radius: 24px;
  }
  .portfolio-device-a,
  .portfolio-device-b {
    width: 132px;
    height: 264px;
  }
  .portfolio-device.web {
    width: 86%;
    height: 74%;
    left: 7%;
  }
}
@media (prefers-reduced-motion: reduce) {
  .brand-badge img {
    animation: none !important;
  }
  .hero::after {
    transition: none !important;
  }
  .hero-depth-card,
  .hero-depth-ring,
  .hero-pattern span,
  .hero-visual,
  .hero-card-main,
  .hero-card-float,
  .hero-panel,
  .service-expert-card,
  .transform-cta-grid,
  .transform-cta-circuit,
  .transform-cta-orb,
  .transform-cta-data,
  .transform-cta-ring,
  .transform-cta-logo-core {
    animation: none !important;
    transition: none !important;
    transform: none !important;
  }
}
body *,
body *::before,
body *::after {
  border-radius: 0;
}
.client-video-modal .video-modal-dialog {
  width: min(960px, 92vw);
}
.client-video-modal .video-modal-frame-wrap {
  border-radius: 18px;
}
.client-video-modal video {
  width: 100%;
  height: min(70vh, 520px);
  border-radius: 18px;
  background: #000;
}
.client-video-modal video::-webkit-media-controls-enclosure {
  border-radius: 0 0 18px 18px;
  background: linear-gradient(180deg, rgba(8, 14, 34, 0.05) 0%, rgba(8, 14, 34, 0.72) 100%);
  padding: 10px 12px;
}
.client-video-modal video::-webkit-media-controls-panel {
  background: transparent;
  color: #fff;
}
.client-video-modal video::-webkit-media-controls-play-button,
.client-video-modal video::-webkit-media-controls-fullscreen-button,
.client-video-modal video::-webkit-media-controls-mute-button {
  filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.35));
  opacity: 0.9;
}
.client-video-modal video::-webkit-media-controls-current-time-display,
.client-video-modal video::-webkit-media-controls-time-remaining-display {
  color: #f0f4ff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.45);
}
.client-video-modal video::-webkit-media-controls-timeline {
  border-radius: 999px;
  height: 4px;
  margin: 0 10px;
}
.client-video-modal video::-webkit-media-controls-timeline::-webkit-media-controls-timeline-container {
  border-radius: 999px;
}
.client-video-modal video::-webkit-media-controls-volume-slider {
  border-radius: 999px;
}
.client-video-modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.client-video-modal-title {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.client-video-modal-title h3 {
  margin: 0;
  font-size: 1.35rem;
}
.client-video-modal-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(214, 225, 255, 0.76);
  font-size: 0.95rem;
}
.client-video-modal-rating {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.client-video-modal-rating-label {
  color: rgba(214, 225, 255, 0.75);
  font-weight: 600;
  font-size: 0.86rem;
  letter-spacing: 0.02em;
}
.client-video-modal-role {
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(140, 184, 255, 0.24);
  background: rgba(14, 24, 58, 0.7);
  color: rgba(226, 235, 255, 0.9);
}
.client-video-modal-stars {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: #ffd76a;
}
.client-video-modal-actions {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.client-video-modal-nav {
  position: absolute;
  top: 18px;
  right: 18px;
  display: inline-flex;
  gap: 10px;
  z-index: 3;
}
.client-video-modal-actions .video-modal-close {
  order: 1;
}
.client-video-modal .video-modal-frame-wrap {
  position: relative;
}
.client-video-modal-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(140, 184, 255, 0.24);
  background: rgba(12, 20, 50, 0.75);
  color: rgba(214, 225, 255, 0.86);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  z-index: 2;
}
.client-video-modal .video-modal-frame-wrap {
  position: relative;
}
.client-video-modal-arrow {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.06);
  color: #fff;
  display: grid;
  place-items: center;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}
.client-video-modal-arrow:hover,
.client-video-modal-arrow:focus-visible {
  transform: translateY(-1px);
  background: rgba(77, 141, 255, 0.22);
  border-color: rgba(140, 184, 255, 0.45);
  outline: none;
}
