*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

:root {
  --lt-primary: #1598ea;
  --lt-primary-rgb: 11 114 133;
  --lt-secondary: #00b496;
  --lt-secondary-rgb: 31 206 138;
  --lt-accent: #4d73ff;
  --lt-accent-rgb: 109 40 217;
  --lt-ink: #0b1220;
  --lt-heading: #0b1220;
  --lt-text: #334155;
  --lt-bg: #f8fafc;
  --lt-surface: rgba(255, 255, 255, 0.82);
  --lt-surface-strong: rgba(255, 255, 255, 0.96);
  --lt-border: rgba(15, 23, 42, 0.12);
  --lt-soft: rgba(15, 23, 42, 0.06);
  --bs-border-radius: 0;
  --bs-border-radius-sm: 0;
  --bs-border-radius-lg: 0;
  --bs-border-radius-xl: 0;
  --bs-border-radius-xxl: 0;
  --bs-border-radius-pill: 0;
}

[data-theme=dark] {
  --lt-ink: rgba(255, 255, 255, 0.94);
  --lt-heading: rgba(255, 255, 255, 0.94);
  --lt-text: rgba(255, 255, 255, 0.72);
  --lt-bg: #070c13;
  --lt-surface: rgba(255, 255, 255, 0.06);
  --lt-surface-strong: rgba(255, 255, 255, 0.10);
  --lt-border: rgba(255, 255, 255, 0.12);
  --lt-soft: rgba(255, 255, 255, 0.07);
}

@font-face {
  font-family: "Patron";
  src: url("../fonts/PatronWEB-Regular.woff2");
  font-display: swap;
  font-weight: 400;
}
@font-face {
  font-family: "Patron";
  src: url("../fonts/PatronWEB-Light.woff2");
  font-display: swap;
  font-weight: 300;
}
@font-face {
  font-family: "Patron";
  src: url("../fonts/PatronWEB-Bold.woff2");
  font-display: swap;
  font-weight: 800;
}
body {
  font-family: "Patron", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: var(--lt-text);
  line-height: 1.7;
  overflow-x: hidden;
  background-color: var(--lt-bg);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Patron", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 800;
  color: var(--lt-heading);
  line-height: 1.08;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
}

h2 {
  font-size: clamp(1.8rem, 2.2vw, 2.6rem);
}

h3 {
  font-size: clamp(1.3rem, 1.6vw, 1.75rem);
}

h4 {
  font-size: 1.15rem;
}

h5 {
  font-size: 1rem;
}

p {
  margin-bottom: 1rem;
}
p:last-child {
  margin-bottom: 0;
}

a {
  color: var(--lt-primary);
  text-decoration: none;
  transition: color 0.2s ease;
}
a:hover {
  color: var(--lt-secondary);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul,
ol {
  padding-left: 1.25rem;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.zs-track {
  overflow: hidden;
}

.lt-section {
  padding: 90px 0;
}

.lt-grid {
  display: grid;
  gap: 24px;
}

.lt-glass, .lt-card {
  background: var(--lt-surface-strong);
  border: 1px solid var(--lt-border);
  box-shadow: 0 16px 44px rgba(2, 6, 23, 0.08);
}

.lt-card {
  border-radius: 0px;
}

.lt-media, .lt-card-media {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--lt-border);
  background: var(--lt-surface-strong);
}

.lt-media img, .lt-card-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.lt-media::after, .lt-card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(2, 6, 23, 0.08) 0%, rgba(2, 6, 23, 0.28) 100%);
  pointer-events: none;
}

.lt-card-media {
  aspect-ratio: 16/10;
}

.lt-card-media.is-tall {
  aspect-ratio: 3/4;
  object-position: top;
}

.lt-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 0px;
  background: rgba(255, 0, 82, 0.14);
  color: var(--lt-secondary);
  border: 1px solid rgba(255, 0, 82, 0.22);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pushable {
  display: inline-block;
  background: linear-gradient(40deg, #0023ad, #000000, #ad0037);
  border: none;
  border-radius: 8px;
  padding: 0;
  cursor: pointer;
  text-decoration: none;
  position: relative;
  top: 3px;
}

.pushable .front {
  display: block;
  padding: 8px 32px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.5px;
  background: linear-gradient(40deg, #1557ff, #1d1d1d, #ff1b63);
  color: #ffffff;
  transform: translateY(-4px);
  transition: transform 600ms cubic-bezier(0.3, 0.7, 0.4, 1);
}

.pushable:hover .front {
  transform: translateY(-5px);
  transition: transform 250ms cubic-bezier(0.3, 0.7, 0.4, 1.5);
}

.pushable:active .front {
  transform: translateY(-2px);
  transition: transform 34ms;
}

.pushable:focus:not(:focus-visible) {
  outline: none;
}

.pushable:focus-visible {
  outline: none;
  box-shadow: 0 0 0 0.22rem rgba(0, 50, 255, 0.22);
}

.pushable.light {
  background: linear-gradient(45deg, #97a2ba, #d5b5b5, #b2768b);
}

.pushable.light .front {
  background: linear-gradient(45deg, #c3c9ff, #ffffff, #ffcddc);
  color: #000000;
}

.form-control,
.form-select {
  border-radius: 0px;
  border-color: var(--lt-border);
  background: var(--lt-surface-strong);
}

.form-control:focus,
.form-select:focus {
  border-color: rgba(0, 50, 255, 0.4) !important;
  box-shadow: 0 0 0 0.22rem rgba(0, 50, 255, 0.16) !important;
}

.lt-header {
  position: sticky;
  top: 0;
  z-index: 1040;
}

.navbar-glass {
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 10px 30px rgba(2, 6, 23, 0.06);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: all 0.28s ease;
  padding: 0;
}

.navbar-glass.is-scrolled {
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 16px 55px rgba(2, 6, 23, 0.1);
}

.navbar-glass .navbar-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--lt-heading);
  padding: 8px 0;
}

.navbar-glass .brand-mark {
  background: linear-gradient(135deg, #0032ff, #a359c8, #ff0052);
  color: transparent;
  font-weight: 900;
  -webkit-background-clip: text;
  background-clip: text;
  line-height: 1;
  font-family: "Patron", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 34px;
}

.navbar-glass .brand-text {
  display: grid;
  line-height: 1.1;
}

.navbar-glass .brand-text strong {
  font-family: "Patron", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 400;
  font-size: 15px;
  margin-bottom: 0;
  letter-spacing: 0.5px;
}

.navbar-glass .navbar-toggler {
  border: 0;
  padding: 0;
}

.navbar-glass .navbar-toggler:focus {
  box-shadow: none;
}

.navbar-glass .navbar-toggler i {
  font-size: 26px;
  color: var(--lt-heading);
}

.navbar-glass .nav-link {
  font-size: 14px;
  font-weight: 400;
  color: var(--lt-heading) !important;
  padding: 18px 14px !important;
  border-radius: 0;
  transition: all 0.28s ease;
}

.navbar-glass .nav-link:hover {
  color: var(--lt-heading) !important;
  background: rgba(0, 50, 255, 0.08);
}

.navbar-glass .nav-link.active {
  background: rgba(0, 50, 255, 0.12);
}

.navbar-glass .nav-cta {
  margin-left: 10px;
}

.navbar-glass .dropdown-menu {
  border-radius: 0;
  border: 1px solid var(--lt-border);
  background: var(--lt-surface-strong);
  padding: 14px;
  box-shadow: 0 26px 80px rgba(2, 6, 23, 0.14);
}

.navbar-glass .dropdown-item {
  border-radius: 0;
  font-weight: 700;
  padding: 10px 12px;
}

.navbar-glass .dropdown-item:hover,
.navbar-glass .dropdown-item:focus {
  background: rgba(0, 50, 255, 0.08);
}

.navbar-glass .dropdown-toggle::after {
  margin-left: 0.55rem;
  vertical-align: 0.15rem;
}

.navbar-glass .lt-services-dropdown {
  width: min(980px, 100vw - 28px);
  left: 50%;
  transform: translateX(-50%);
  right: auto;
  top: calc(100% + 10px);
  padding: 18px;
}

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

.lt-services-title {
  font-family: "Patron", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 14px;
}

.lt-services-item {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  padding: 12px 10px;
  border: 1px solid transparent;
  background: transparent;
  color: inherit;
  text-decoration: none;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.lt-services-item:hover {
  transform: translateY(-2px);
  background: rgba(0, 50, 255, 0.06);
  border-color: rgba(0, 50, 255, 0.14);
}

.lt-services-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  border: 1px solid rgba(0, 50, 255, 0.14);
  background: rgba(0, 50, 255, 0.08);
  color: var(--lt-primary);
}

.lt-services-copy strong {
  display: block;
  font-weight: 800;
  color: var(--lt-heading);
  margin-bottom: 4px;
}

.lt-services-copy span {
  display: block;
  color: var(--lt-text);
  font-weight: 600;
  font-size: 0.9rem;
  line-height: 1.4;
}

.lt-services-actions {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

@media (max-width: 992px) {
  .navbar-glass .navbar-collapse {
    margin-top: 14px;
    border: 1px solid var(--lt-border);
    border-radius: 0px;
    background: var(--lt-surface-strong);
    padding: 0px;
    margin: 0 -12px;
  }
  .navbar-glass .nav-link {
    padding: 14px 14px !important;
  }
  .navbar-glass .nav-cta {
    margin-left: 0;
    margin: 10px 14px 15px;
  }
  .navbar-glass .lt-services-dropdown {
    width: 100%;
    left: 0;
    transform: none;
    top: 0;
    padding: 14px;
    box-shadow: none;
  }
  .lt-services-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .lt-services-actions {
    justify-content: flex-start;
  }
  .lt-services-item:hover {
    transform: none;
  }
}
.lt-footer {
  padding: 60px 0 24px;
  background: url("../images/dark.jpg");
  background-size: cover;
  background-position: center;
  color: rgba(255, 255, 255, 0.4392156863);
  position: relative;
  font-size: 15px;
}
.lt-footer > * {
  position: relative;
  z-index: 15;
}

.lt-footer .footer-top {
  background: var(--lt-surface-strong);
  border: 1px solid var(--lt-border);
  box-shadow: 0 16px 44px rgba(2, 6, 23, 0.08);
  border-radius: 0px;
  padding: 28px;
  margin-bottom: 40px;
  background: linear-gradient(180deg, rgba(2, 6, 23, 0.62) 0%, rgba(2, 6, 23, 0.68) 100%), var(--lt-footer-top-bg, none), rgba(255, 255, 255, 0.06);
  background-size: cover;
  background-position: center;
  border-color: rgba(255, 255, 255, 0.12);
}

.lt-footer .footer-title {
  color: rgba(255, 255, 255, 0.92);
  font-weight: 700;
  margin-bottom: 14px;
}
.lt-footer .footer-title.branding {
  font-size: 25px;
  font-weight: 500;
}

.lt-footer a {
  color: rgba(255, 255, 255, 0.78);
}

.lt-footer a:hover {
  color: #80a4ff;
}

.lt-footer .footer-links {
  display: grid;
  gap: 10px;
}

.lt-footer .footer-links a {
  font-weight: 300;
}

.lt-footer .footer-meta {
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
}

.lt-footer .social {
  display: inline-flex;
  gap: 10px;
}

.lt-footer .social a {
  width: 44px;
  height: 44px;
  border-radius: 0;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.lt-footer .social a:hover {
  background: rgba(0, 50, 255, 0.18);
  border-color: rgba(0, 50, 255, 0.26);
}

@media (max-width: 768px) {
  .lt-footer .footer-meta {
    flex-direction: column;
    align-items: flex-start;
  }
}
.lt-page-hero {
  position: relative;
  overflow: hidden;
  padding: 30px 0;
  background: rgb(2, 6, 23);
}

.lt-page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(2, 6, 23, 0.62) 0%, rgba(2, 6, 23, 0.58) 100%), var(--lt-page-hero-bg, none), radial-gradient(760px 420px at 18% 8%, rgba(255, 0, 82, 0.18), transparent 60%), radial-gradient(860px 460px at 86% 0%, rgba(0, 50, 255, 0.18), transparent 62%);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  pointer-events: none;
}

.lt-page-hero .container {
  position: relative;
  z-index: 1;
}

.lt-page-hero .hero-inner {
  padding: 14px 0;
}

.lt-page-hero .breadcrumb {
  margin-bottom: 0;
}

.lt-page-hero h1 {
  color: rgba(255, 255, 255, 0.96);
}

.lt-page-hero .lt-muted {
  color: rgba(255, 255, 255, 0.72) !important;
}

.lt-page-hero .breadcrumb-item,
.lt-page-hero .breadcrumb-item a {
  color: rgba(255, 255, 255, 0.76);
  font-weight: 600;
}

.lt-page-hero .breadcrumb-item.active {
  color: rgba(255, 255, 255, 0.94);
}

.lt-page-hero .breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255, 255, 255, 0.42);
}

.lt-hero {
  padding: 140px 0 90px;
  position: relative;
  overflow: hidden;
  background: url("../images/neavy-bg.jpg");
  background-size: cover;
  background-position: center;
}

.lt-hero .container {
  position: relative;
  z-index: 1;
}

.lt-hero-copy {
  position: relative;
}

.lt-hero-copy > * {
  position: relative;
  z-index: 1;
}

.lt-hero-vector {
  position: absolute;
  right: -6%;
  top: -18%;
  width: min(720px, 62vw);
  height: auto;
  pointer-events: none;
}

.lt-hero h1 {
  font-family: "Patron", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: clamp(2.7rem, 4.2vw, 4.35rem);
  letter-spacing: -0.03em;
  color: rgba(255, 255, 255, 0.96);
}

.lt-hero .lead {
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.15rem;
  max-width: 52ch;
}

.kicker {
  background: rgba(255, 255, 255, 0.0588235294);
  border: 1px solid rgba(255, 255, 255, 0.1411764706);
  color: rgba(255, 255, 255, 0.7803921569);
  border-radius: 16px;
  padding: 1px 10px 2px;
  display: inline-block;
  margin-bottom: 12px;
  font-size: 13px;
}

.lt-hero .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}

.lt-hero .hero-stats {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.lt-hero .lt-stat {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.lt-hero .lt-stat strong {
  color: rgba(255, 255, 255, 0.95);
}

.lt-hero .lt-stat span {
  color: rgba(255, 255, 255, 0.7);
}

.lt-stat {
  background: var(--lt-surface-strong);
  border: 1px solid var(--lt-border);
  box-shadow: 0 16px 44px rgba(2, 6, 23, 0.08);
  border-radius: 0px;
  padding: 18px 18px 16px;
}

.lt-stat strong {
  display: block;
  font-size: 2.25rem;
  margin: 0 0 10px;
  line-height: 1;
}

.lt-stat span {
  display: block;
  color: var(--lt-text);
  font-weight: 600;
  font-size: 0.9rem;
}

.lt-section-heading {
  max-width: 780px;
}

.lt-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  position: relative;
  isolation: isolate;
  padding: 6px 14px 5px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.lt-kicker > span {
  display: inline-block;
  background: linear-gradient(135deg, #0032ff, #5600e0, #ff0052);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.lt-kicker::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  z-index: -2;
}

.lt-kicker::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, #0032ff, #5600e0, #ff0052);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: -1;
}

.lt-soft-surface {
  background: radial-gradient(900px 420px at 66% 30%, #eaedff, rgba(0, 0, 0, 0) 62%), radial-gradient(760px 380px at 94% 15%, #ffdaea, #ffffff 62%);
}

.lt-feature-card {
  --lt-feature-to: #eaedff;
  --lt-feature-icon-from: #1557ff;
  --lt-feature-icon-to: #0032ff;
  background: linear-gradient(135deg, #ffffff 0%, var(--lt-feature-to) 100%);
  border: 1px solid color-mix(in srgb, var(--lt-feature-icon-to) 30%, #ffffff);
  border-radius: 16px;
  padding: 28px;
  height: 100%;
}

.lt-feature-card .icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--lt-feature-icon-from) 0%, var(--lt-feature-icon-to) 100%);
  color: #ffffff;
  font-size: 1.15rem;
  margin-bottom: 18px;
  box-shadow: 0 10px 20px rgba(2, 6, 23, 0.14);
}

.lt-feature-card--blue {
  --lt-feature-to: #eaedff;
  --lt-feature-icon-from: #1557ff;
  --lt-feature-icon-to: #0032ff;
}

.lt-feature-card--green {
  --lt-feature-to: #e3ffed;
  --lt-feature-icon-from: #00e0a1;
  --lt-feature-icon-to: #00d0a7;
}

.lt-feature-card--pink {
  --lt-feature-to: #ffe2ee;
  --lt-feature-icon-from: #ff1b63;
  --lt-feature-icon-to: #ff0052;
}

.lt-feature-card h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}

.services-home {
  background: linear-gradient(45deg, lavender, aliceblue, lavenderblush);
}

.lt-service-card {
  --lt-service-bg: #d2f2c1;
  --lt-service-accent: #1b7a39;
  background: var(--lt-service-bg);
  border: 1px solid rgba(2, 6, 23, 0.22);
  border-radius: 20px;
  padding: 20px;
  height: 100%;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.lt-service-card::before {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 999px;
  right: -80px;
  top: -90px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.55) 0%, rgba(255, 255, 255, 0) 64%);
  pointer-events: none;
}

.lt-service-card::after {
  content: "";
  position: absolute;
  right: 18px;
  top: 18px;
  width: 130px;
  height: 90px;
  opacity: 0.18;
  background-image: radial-gradient(rgba(2, 6, 23, 0.7) 1px, transparent 1px);
  background-size: 10px 10px;
  pointer-events: none;
}

.lt-service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 50px rgba(7, 20, 38, 0.1);
}

.lt-service-card .service-icon {
  font-size: 2.2rem;
  line-height: 1;
  color: var(--lt-service-accent);
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.lt-service-card h3 {
  font-size: 1.35rem;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

.lt-service-card .service-desc {
  margin: 0;
  color: rgba(2, 6, 23, 0.68);
  font-weight: 600;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

.lt-service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
  position: relative;
  z-index: 1;
}

.lt-service-tag {
  display: inline-flex;
  align-items: center;
  padding: 3px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(2, 6, 23, 0.14);
  color: var(--lt-service-accent);
  font-size: 0.78rem;
  font-weight: 400;
}

.lt-service-footer {
  margin-top: auto;
  padding-top: 18px;
  position: relative;
  z-index: 1;
}

.lt-service-cta {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 6px 6px 6px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(2, 6, 23, 0.18);
  color: #434343;
  font-weight: 400;
  text-decoration: none;
}

.lt-service-cta:hover {
  color: var(--lt-service-accent);
}

.lt-service-cta .arrow {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(2, 6, 23, 0.18);
}

.lt-service-card--green {
  --lt-service-bg: #d2f2c1;
  --lt-service-accent: #1b7a39;
}

.lt-service-card--purple {
  --lt-service-bg: #e2dbff;
  --lt-service-accent: #5600e0;
}

.lt-service-card--orange {
  --lt-service-bg: #ffd6bf;
  --lt-service-accent: #ff6a00;
}

.lt-service-card--blue {
  --lt-service-bg: #d9eaff;
  --lt-service-accent: #1557ff;
}

.lt-service-card--pink {
  --lt-service-bg: #ffd8e8;
  --lt-service-accent: #ff1b63;
}

.lt-service-card--teal {
  --lt-service-bg: #cdf7f0;
  --lt-service-accent: #0f766e;
}

.lt-tag {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 0px;
  font-size: 0.82rem;
  font-weight: 700;
  background: rgba(0, 170, 154, 0.13);
  border: 1px solid rgba(0, 254, 255, 0.14);
  color: var(--lt-heading);
}

.lt-cta {
  background: var(--lt-surface-strong);
  border: 1px solid var(--lt-border);
  box-shadow: 0 16px 44px rgba(2, 6, 23, 0.08);
  border-radius: 0px;
  padding: 38px;
  background: linear-gradient(180deg, rgb(0, 15, 79) 0%, rgba(0, 0, 0, 0) 100%), radial-gradient(900px 420px at 10% 0%, rgb(91, 0, 174), rgba(0, 0, 0, 0) 62%), radial-gradient(760px 380px at 92% 0%, rgb(0, 107, 242), rgba(0, 0, 0, 0.9882352941) 62%);
  background-size: cover;
  background-position: center;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.lt-cta .pushable {
  min-width: 180px;
}
.lt-cta .pushable .front {
  text-align: center;
  padding: 12px 24px;
}

.lt-cta h2 {
  margin-bottom: 12px;
  color: #fff;
}

.lt-cta p {
  color: #fff;
  margin-bottom: 0;
}

.lt-pricing {
  position: relative;
  overflow: hidden;
  background: #fff;
}

.lt-pricing .container {
  position: relative;
  z-index: 1;
}

.lt-plan-card {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  box-shadow: 0px 2px 3px rgba(1, 8, 40, 0.23);
  background: var(--lt-plan-surface, rgba(255, 255, 255, 0.86));
  padding: 26px 26px 22px;
  height: 100%;
}

.lt-plan-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(0deg, rgba(2, 6, 23, 0.08) 0 1px, transparent 1px 22px), repeating-linear-gradient(90deg, rgba(2, 6, 23, 0.08) 0 1px, transparent 1px 22px);
  background-size: 22px 22px, 22px 22px;
  opacity: 0.14;
  pointer-events: none;
}

.lt-plan-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.35) 0%, rgba(255, 255, 255, 0) 44%);
  pointer-events: none;
}

.lt-plan-card > * {
  position: relative;
  z-index: 1;
}

.lt-plan--starter {
  --lt-plan-accent: #ff7a4d;
  --lt-plan-surface: rgba(255, 242, 234, 0.92);
}
.lt-plan--starter .pushable {
  background: #111;
}
.lt-plan--starter .pushable .front {
  background: #464646;
  color: #fff;
}

.lt-plan--growth {
  --lt-plan-accent: #3c63ff;
  --lt-plan-surface: rgba(234, 241, 255, 0.92);
}
.lt-plan--growth .pushable {
  background: #1c3492;
}
.lt-plan--growth .pushable .front {
  background: #3e6ac4;
  color: #fff;
}

.lt-plan--enterprise {
  --lt-plan-accent: #20c8a1;
  --lt-plan-surface: rgba(230, 251, 252, 0.92);
}
.lt-plan--enterprise .pushable {
  background: #0c5761;
}
.lt-plan--enterprise .pushable .front {
  background: #0e977d;
  color: #fff;
}

.lt-plan-head {
  margin-bottom: 18px;
}

.lt-plan-name {
  font-weight: 800;
  color: rgba(2, 6, 23, 0.92);
  font-size: 1rem;
}

.lt-plan-kicker {
  font-size: 0.85rem;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.6117647059);
  margin-bottom: 30px;
}

.lt-plan-price {
  font-size: clamp(2.3rem, 3.4vw, 2.8rem);
  font-weight: 900;
  color: var(--lt-plan-accent);
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin: 8px 0 12px;
}

.lt-plan-desc {
  margin: 0 0 18px;
  color: rgba(2, 6, 23, 0.62);
  font-weight: 600;
  line-height: 1.6;
}

.lt-plan-btn {
  display: inline-flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  height: 44px;
  padding: 0 16px;
  border-radius: 10px;
  font-weight: 800;
  color: rgba(2, 6, 23, 0.9);
  border: 1px solid rgba(2, 6, 23, 0.14);
  background: rgba(255, 255, 255, 0.85);
  text-decoration: none;
}

.lt-plan-btn:hover {
  color: rgba(2, 6, 23, 0.9);
  border-color: rgba(2, 6, 23, 0.22);
  background: rgba(255, 255, 255, 0.92);
}

.lt-plan-btn.is-primary {
  background: var(--lt-plan-accent);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 12px 28px rgba(60, 99, 255, 0.24);
}

.lt-plan-btn.is-primary:hover {
  background: var(--lt-plan-accent);
  color: #fff;
  opacity: 0.96;
}

.lt-plan-divider {
  height: 1px;
  width: 100%;
  background: rgba(2, 6, 23, 0.12);
  margin: 18px 0;
}

.lt-plan-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.lt-plan-features li {
  color: rgba(2, 6, 23, 0.72);
  font-weight: 400;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.lt-plan-features i {
  color: var(--lt-plan-accent);
}

.lt-plan-card.is-featured .lt-plan-features i {
  color: rgba(60, 99, 255, 0.95);
}

@media (max-width: 991px) {
  .lt-hero {
    padding: 110px 0 70px;
  }
  .lt-hero-copy::before {
    inset: -22px -14px -22px -14px;
    background: linear-gradient(180deg, rgba(2, 6, 23, 0.82) 0%, rgba(2, 6, 23, 0.62) 100%);
  }
  .lt-hero .hero-stats {
    grid-template-columns: 1fr;
  }
  .lt-hero-visual {
    min-height: 380px;
    margin-top: 26px;
  }
}
@media (max-width: 767px) {
  .lt-page-hero .hero-inner {
    padding: 10px 0;
  }
  .lt-cta {
    padding: 28px;
  }
}
.home-logos {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  align-items: center;
  opacity: 0.75;
}

.home-logos .logo-pill {
  background: var(--lt-surface-strong);
  border: 1px solid var(--lt-border);
  box-shadow: 0 16px 44px rgba(2, 6, 23, 0.08);
  border-radius: 0px;
  padding: 14px 16px;
  text-align: center;
  font-weight: 800;
  color: var(--lt-heading);
}

.lt-landing-showcase {
  padding: 0;
  background: #0b1020;
  color: rgba(255, 255, 255, 0.92);
}

.lt-landing-showcase h2 {
  color: rgba(255, 255, 255, 0.96);
}

.lt-landing-showcase .lt-muted {
  color: rgba(255, 255, 255, 0.72);
}

.lt-landing-showcase > .container {
  padding-top: 0px;
  position: relative;
  z-index: 10;
  padding-bottom: 60px;
}
@media (min-width: 992px) {
  .lt-landing-showcase > .container {
    transform: translateY(50%);
    padding-bottom: 18px;
  }
}

.lt-landing-block {
  position: relative;
  background: radial-gradient(760px 420px at 8% 86%, rgba(0, 50, 255, 0.16), transparent 62%), radial-gradient(860px 460px at 92% 94%, rgba(255, 0, 82, 0.12), transparent 60%), linear-gradient(180deg, rgba(11, 16, 32, 0.95) 0%, rgba(11, 16, 32, 0.86) 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background-attachment: fixed;
}

.lt-landing-block:first-of-type {
  border-top: 0;
}

.lt-landing-block:nth-of-type(even) {
  background: linear-gradient(45deg, lavender, aliceblue, lavenderblush);
  color: rgba(2, 6, 23, 0.92);
  border-top-color: rgba(2, 6, 23, 0.1);
}

.lt-landing-block:nth-of-type(even) .lt-muted {
  color: rgba(2, 6, 23, 0.68);
}

.lt-landing-block:nth-of-type(even) .lt-landing-title {
  color: rgba(2, 6, 23, 0.96);
}

.lt-landing-block:nth-of-type(even) .lt-landing-overline {
  color: rgba(2, 6, 23, 0.62);
}

.lt-landing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(18px, 2.8vw, 34px);
  align-items: center;
  min-height: 180vh;
  padding-top: 86px;
  padding-bottom: 86px;
}

.lt-landing-block[data-media=right] .lt-landing-media {
  order: 2;
}

.lt-landing-block[data-media=right] .lt-landing-copy {
  order: 1;
}

.lt-landing-media,
.lt-landing-copy {
  align-self: start;
}

.lt-landing-media {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
}

.lt-landing-copy {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
}

.lt-landing-media-inner {
  position: relative;
  border-radius: 0;
  overflow: hidden;
  background: transparent;
  border: 0;
  box-shadow: none;
  transform: translateZ(0);
  height: clamp(540px, 86vh, 860px);
  width: 100%;
}

.lt-landing-media-inner::after {
  content: none;
}

.lt-landing-block:nth-of-type(even) .lt-landing-media-inner {
  background: transparent;
  border-color: transparent;
  box-shadow: none;
}

.lt-landing-block:nth-of-type(even) .lt-landing-media-inner::after {
  content: none;
}

.lt-landing-media img {
  display: block;
  width: 100%;
  height: auto;
  transform: translateZ(0);
}

.lt-landing-copy-inner {
  padding: clamp(18px, 2.4vw, 28px);
}

.lt-landing-overline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 12px;
}

.lt-landing-overline::before {
  content: "";
  width: 26px;
  height: 2px;
  background: rgba(255, 0, 82, 0.68);
}

.lt-landing-title {
  font-size: clamp(1.8rem, 3.2vw, 3.1rem);
  line-height: 1.06;
  color: rgba(255, 255, 255, 0.96);
  margin-bottom: 14px;
}

@media (max-width: 991px) {
  .lt-landing-showcase {
    padding: 70px 0;
  }
  .lt-landing-block {
    padding: 50px 0;
  }
  .lt-landing-grid {
    grid-template-columns: 1fr;
    min-height: 0;
    padding-top: 0;
    padding-bottom: 0;
  }
  .lt-landing-block[data-media=right] .lt-landing-media,
  .lt-landing-block[data-media=right] .lt-landing-copy {
    order: initial;
  }
  .lt-landing-media img {
    height: auto;
  }
  .lt-landing-media,
  .lt-landing-copy {
    position: static;
    height: auto;
    display: block;
  }
  .lt-landing-media-inner {
    height: 450px;
  }
  .lt-landing-media img {
    height: 100%;
    object-fit: cover;
    object-position: top;
  }
}
.cta-btns {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
}

.lt-get-in-touch {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(2, 6, 23, 0.94) 0%, rgba(7, 12, 19, 0.96) 100%);
}

.lt-get-in-touch::before,
.lt-get-in-touch::after {
  content: "";
  position: absolute;
  inset: -140px -120px;
  pointer-events: none;
  z-index: 0;
}

.lt-get-in-touch::before {
  background: radial-gradient(820px 460px at 16% 28%, rgba(0, 50, 255, 0.28), transparent 62%), radial-gradient(720px 420px at 88% 40%, rgba(255, 0, 82, 0.22), transparent 60%);
  filter: blur(18px);
}

.lt-get-in-touch::after {
  background: radial-gradient(900px 520px at 52% 110%, rgba(255, 255, 255, 0.06), transparent 58%);
}

.lt-get-in-touch .container {
  position: relative;
  z-index: 1;
}

.lt-get-in-touch h2 {
  color: rgba(255, 255, 255, 0.96);
}

.lt-get-in-touch .lt-muted {
  color: rgba(255, 255, 255, 0.72);
}

.lt-touch-panel {
  box-shadow: 0 26px 90px rgb(0, 0, 0);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 26px;
  height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.1333333333);
  border-radius: 12px;
}
.lt-touch-panel .form-control {
  color: #fff;
  box-shadow: none !important;
  border: none;
  background: rgba(169, 190, 255, 0.1019607843);
  border-radius: 8px;
  padding: 10px 14px;
  letter-spacing: 1px;
  font-size: 15px;
  font-weight: 300;
}
.lt-touch-panel .form-control::placeholder {
  color: rgba(255, 255, 255, 0.6);
}
.lt-touch-panel .form-control:focus {
  background-color: transparent;
  border: none;
  box-shadow: none !important;
  background: rgba(169, 190, 255, 0.1019607843);
  border-radius: 8px;
  padding: 10px 14px;
  color: #fff;
}

.lt-touch-panel .h4 {
  color: rgba(255, 255, 255, 0.94);
}

.lt-touch-panel a {
  color: rgba(255, 255, 255, 0.86);
  text-decoration: none;
  font-weight: 700;
}

.lt-touch-panel a:hover {
  color: rgba(255, 255, 255, 0.96);
}

.lt-touch-item {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.lt-touch-item:last-of-type {
  border-bottom: 0;
  padding-bottom: 6px;
}

.lt-touch-icon {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: linear-gradient(135deg, #0032ff, #1598ea);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.94);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.35);
}

.lt-touch-item strong,
.lt-touch-note {
  font-family: "Patron";
  font-weight: 300;
  color: #6a7889 !important;
  font-size: 15px;
  line-height: 1.2;
  display: block;
}

.lt-touch-icon.is-pink {
  background: linear-gradient(135deg, #ff0052, #ff3d7f);
  border-color: rgba(255, 255, 255, 0.1);
}

.lt-touch-note {
  padding-top: 14px;
}

@media (max-width: 768px) {
  .lt-touch-panel {
    padding: 20px;
  }
}
.lt-cta-footer {
  --lt-cta-footer-ink: rgba(255, 255, 255, 0.92);
  --lt-cta-footer-muted: rgba(255, 255, 255, 0.72);
  --lt-cta-footer-grid: rgba(255, 255, 255, 0.08);
  --lt-cta-footer-star: rgba(255, 255, 255, 0.32);
  --lt-cta-footer-blue: rgba(0, 50, 255, 0.46);
  --lt-cta-footer-pink: rgba(255, 0, 82, 0.34);
  padding: 110px 0 0;
  position: relative;
  overflow: hidden;
  background: radial-gradient(1100px 520px at 50% -10%, rgba(255, 255, 255, 0.06), transparent 62%), linear-gradient(180deg, rgba(2, 6, 23, 0.96) 0%, rgba(5, 7, 18, 0.98) 100%);
  color: var(--lt-cta-footer-muted);
}

.lt-cta-footer::before,
.lt-cta-footer::after {
  content: "";
  position: absolute;
  inset: -140px -140px;
  pointer-events: none;
}

.lt-cta-footer::before {
  background: radial-gradient(860px 520px at 12% 30%, var(--lt-cta-footer-blue), transparent 62%), radial-gradient(820px 520px at 88% 40%, var(--lt-cta-footer-pink), transparent 60%);
  filter: blur(22px);
  opacity: 0.9;
  z-index: 0;
}

.lt-cta-footer::after {
  background: repeating-linear-gradient(0deg, rgba(255, 255, 255, 0) 0 56px, var(--lt-cta-footer-grid) 56px 57px), repeating-linear-gradient(90deg, rgba(255, 255, 255, 0) 0 56px, var(--lt-cta-footer-grid) 56px 57px), radial-gradient(var(--lt-cta-footer-star) 1px, transparent 1px);
  background-size: auto, auto, 160px 160px;
  background-position: center, center, 0 0;
  opacity: 0.55;
  z-index: 0;
  mask-image: radial-gradient(80% 70% at 50% 18%, rgba(0, 0, 0, 0.85), transparent 72%);
}

.lt-cta-footer > .container,
.lt-cta-footer .lt-footer > .container {
  position: relative;
  z-index: 1;
}

.lt-cta--footer {
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 0;
  border-radius: 0;
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.lt-cta--footer h2 {
  color: var(--lt-cta-footer-ink);
  font-size: clamp(2.25rem, 4vw, 3.25rem);
  line-height: 1.08;
  margin: 14px 0 10px;
}

.lt-cta--footer p {
  color: var(--lt-cta-footer-muted);
  max-width: 62ch;
  margin: 0 auto 22px;
}

.branding {
  background: linear-gradient(135deg, #0032ff, #a359c8, #ff0052);
  color: transparent;
  font-weight: 900;
  -webkit-background-clip: text;
  background-clip: text;
  line-height: 1;
  font-family: "Patron", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 64px;
  display: inline-flex;
}

.lt-cta-footer .lt-footer {
  background: transparent;
  padding: 64px 0 24px;
}

.lt-cta-footer .lt-footer .container {
  padding-top: 52px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

@media (max-width: 768px) {
  .lt-cta-footer {
    padding-top: 90px;
  }
  .lt-cta-footer .lt-footer {
    padding-top: 52px;
  }
}
body.page-about .lt-about {
  padding: 0;
}
body.page-about .lt-kicker {
  margin-bottom: 0px !important;
  display: none;
}
body.page-about .lt-about-block {
  padding: 90px 0;
  position: relative;
  overflow: hidden;
  color: rgba(2, 6, 23, 0.92);
  border-top: 1px solid rgba(2, 6, 23, 0.1);
}
@media (max-width: 1199px) {
  body.page-about .lt-about-block {
    padding: 24px 0;
  }
}
body.page-about .lt-about-block:first-of-type {
  border-top: 0;
}
body.page-about .lt-about-block .lt-muted {
  color: rgba(2, 6, 23, 0.68);
}
body.page-about .lt-about-grid {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}
@media (max-width: 1199px) {
  body.page-about .lt-about-grid img {
    max-width: 400px;
    margin: 30px auto;
    width: 100%;
  }
}
@media (max-width: 767px) {
  body.page-about .lt-about-grid img {
    max-width: 300px;
    margin: 30px auto;
    max-height: 250px;
  }
}
body.page-about .lt-about-grid .row {
  align-items: center;
  justify-content: space-between;
}
body.page-about .lt-about-lead {
  display: flex;
  gap: 16px;
  flex-direction: column;
  align-items: flex-start;
}
body.page-about .lt-about-lead .lt-icon-3d {
  flex: 0 0 auto;
  margin-top: 6px;
}
body.page-about .lt-about-lead h2 {
  font-size: clamp(1.7rem, 2.8vw, 2.4rem);
  line-height: 1.12;
  margin: 0 0 15px !important;
}
body.page-about .lt-icon-3d {
  --lt-accent: #3e6ac4;
  width: 56px;
  height: 56px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  position: relative;
  isolation: isolate;
  box-shadow: 2px 2px 1px rgba(2, 6, 23, 0.14);
  border: 1px solid rgba(2, 6, 23, 0.12);
  background: rgba(255, 255, 255, 0.92);
  transform: translateZ(0);
}
body.page-about .lt-icon-3d .lt-icon-back,
body.page-about .lt-icon-3d .lt-icon-front {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  font-size: 1.45rem;
  line-height: 1;
}
body.page-about .lt-icon-3d .lt-icon-back {
  color: color-mix(in srgb, var(--lt-accent) 22%, transparent);
  transform: translate(0, 0);
}
body.page-about .lt-icon-3d .lt-icon-front {
  color: color-mix(in srgb, var(--lt-accent) 92%, white);
  --fa-primary-color: color-mix(in srgb, var(--lt-accent) 92%, white);
  --fa-secondary-color: color-mix(in srgb, var(--lt-accent) 50%, white);
  --fa-primary-opacity: 1;
  --fa-secondary-opacity: 0.35;
}
body.page-about .lt-icon-3d.is-sm {
  width: 44px;
  height: 44px;
  border-radius: 8px;
}
body.page-about .lt-icon-3d.is-sm .lt-icon-back,
body.page-about .lt-icon-3d.is-sm .lt-icon-front {
  font-size: 1.15rem;
}
body.page-about .lt-icon-3d[data-accent=blue] {
  --lt-accent: #1557ff;
}
body.page-about .lt-icon-3d[data-accent=pink] {
  --lt-accent: #ff1b63;
}
body.page-about .lt-icon-3d[data-accent=teal] {
  --lt-accent: #0f766e;
}
body.page-about .lt-icon-3d[data-accent=purple] {
  --lt-accent: #5600e0;
}
body.page-about .lt-icon-3d[data-accent=orange] {
  --lt-accent: #ff6a00;
}
body.page-about .lt-icon-3d[data-accent=green] {
  --lt-accent: #1b7a39;
}
body.page-about .lt-about-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
body.page-about .lt-chip {
  display: inline-flex;
  align-items: center;
  padding: 3px 8px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  border: 1px solid #e0aabb;
  background: rgb(255, 241, 245);
  color: #c80038;
  border-radius: 5%;
}
body.page-about .lt-about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
body.page-about .lt-about-card {
  border: 1px solid rgba(2, 6, 23, 0.12);
  background: #fff;
  padding: 18px;
}
body.page-about .lt-about-card-title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
body.page-about .lt-about-card-title strong {
  color: rgba(2, 6, 23, 0.92);
  font-weight: 800;
}
body.page-about .lt-quote {
  border: 1px solid rgba(2, 6, 23, 0.12);
  background: rgba(2, 6, 23, 0.02);
  padding: 18px;
  box-shadow: 2px 2px 2px rgba(2, 6, 23, 0.1);
}
body.page-about .lt-quote p {
  font-size: 1.05rem;
  line-height: 1.6;
  color: rgba(2, 6, 23, 0.86);
  font-weight: 600;
}
body.page-about .lt-steps {
  list-style: none;
  padding: 0 !important;
  counter-reset: step;
}
body.page-about .lt-steps:not(.row) {
  display: grid;
  gap: 12px;
}
body.page-about .lt-step {
  counter-increment: step;
  position: relative;
  padding: 16px 16px 16px 52px;
  border: 1px solid rgba(2, 6, 23, 0.12);
  background: rgba(2, 6, 23, 0.02);
}
body.page-about .lt-step::before {
  content: counter(step);
  position: absolute;
  left: 16px;
  top: 16px;
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  font-weight: 900;
  background: #dbe3ff;
  color: var(--lt-accent);
}
body.page-about .lt-step strong {
  display: block;
  font-weight: 900;
  color: rgba(2, 6, 23, 0.92);
}
body.page-about .lt-pillars {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  width: 100%;
}
@media (max-width: 767px) {
  body.page-about .lt-pillars {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}
body.page-about .lt-pillar {
  border: 1px solid rgba(2, 6, 23, 0.12);
  background: rgba(2, 6, 23, 0.02);
  box-shadow: 5px 5px -3px rgba(0, 0, 0, 0.18);
  padding: 12px;
}
body.page-about .lt-pillar-top {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
body.page-about .lt-icon-3d.is-sm {
  margin: 0;
  line-height: 1.3;
}
body.page-about .lt-pillar strong {
  font-weight: 900;
  color: rgba(2, 6, 23, 0.92);
}
body.page-about .lt-about-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
body.page-about .lt-about-stat {
  border: 1px solid rgba(2, 6, 23, 0.12);
  background: rgb(227, 251, 237);
  box-shadow: 2px 2px 2px rgba(2, 6, 23, 0.08);
  padding: 18px 18px 16px;
}
body.page-about .lt-about-stat strong {
  display: block;
  font-size: 2.15rem;
  line-height: 1;
  margin-bottom: 8px;
  color: rgba(2, 6, 23, 0.92);
}
body.page-about .lt-about-stat span {
  display: block;
  font-weight: 700;
  color: rgba(2, 6, 23, 0.68);
  font-size: 0.92rem;
}
body.page-about .lt-about-stat.is-wide {
  grid-column: span 2;
}
@media (max-width: 992px) {
  body.page-about .lt-about-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  body.page-about .lt-about-stat.is-wide {
    grid-column: auto;
  }
}

.page-about [data-accent=blue] {
  background: linear-gradient(45deg, #d2e2ff, #ffffff 50%);
}
@media (max-width: 991px) {
  .page-about [data-accent=blue] {
    background: linear-gradient(360deg, #d2e2ff, #ffffff 50%);
  }
}

.page-about [data-accent=pink] {
  background: linear-gradient(-45deg, #ffd2e2, #ffffff 50%);
}
@media (max-width: 991px) {
  .page-about [data-accent=pink] {
    background: linear-gradient(360deg, #ffd2e2, #ffffff 50%);
  }
}

.page-about [data-accent=teal] {
  background: linear-gradient(45deg, #d2ffff, #ffffff 50%);
}
@media (max-width: 991px) {
  .page-about [data-accent=teal] {
    background: linear-gradient(360deg, #d2ffff, #ffffff 50%);
  }
}

.page-about [data-accent=purple] {
  background: linear-gradient(-45deg, #d4c2ff, #ffffff 50%);
}
@media (max-width: 991px) {
  .page-about [data-accent=purple] {
    background: linear-gradient(360deg, #d4c2ff, #ffffff 50%);
  }
}

.page-about [data-accent=orange] {
  background: linear-gradient(-45deg, #ffe5d2, #ffffff 50%);
}
@media (max-width: 991px) {
  .page-about [data-accent=orange] {
    background: linear-gradient(360deg, #ffe5d2, #ffffff 50%);
  }
}

.page-about [data-accent=green] {
  background: linear-gradient(45deg, #aaefba, #ffffff 50%);
}
@media (max-width: 991px) {
  .page-about [data-accent=green] {
    background: linear-gradient(360deg, #aaefba, #ffffff 50%);
  }
}

body.page-services .lt-section {
  background-color: #fff;
}
body.page-services .lt-services-intro {
  background: radial-gradient(900px 420px at 66% 30%, #eaedff, rgba(0, 0, 0, 0) 62%), radial-gradient(760px 380px at 94% 15%, #ffdaea, #ffffff 62%);
}
body.page-services .lt-services-intro p {
  max-width: 80ch;
}
body.page-services .lt-services-categories {
  padding-top: 0;
}
body.page-services .lt-feature-card .lt-icon-3d {
  margin-bottom: 18px;
}
body.page-services .lt-services-list {
  background: linear-gradient(45deg, lavender, aliceblue, lavenderblush);
}
body.page-services .lt-services-list-panel {
  background: var(--lt-surface-strong);
  border: 1px solid var(--lt-border);
  box-shadow: 0 16px 44px rgba(2, 6, 23, 0.08);
  border-radius: 18px;
  padding: clamp(18px, 2.6vw, 28px);
}
body.page-services .lt-services-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(2, 6, 23, 0.08);
  background: rgba(255, 255, 255, 0.72);
}
body.page-services .lt-services-item i {
  margin-top: 3px;
  color: #ff0052;
}
body.page-services .lt-services-item span {
  color: rgba(2, 6, 23, 0.86);
  font-weight: 700;
}
body.page-services .lt-icon-3d {
  --lt-accent: #3e6ac4;
  width: 56px;
  height: 56px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  position: relative;
  isolation: isolate;
  box-shadow: 2px 2px 1px rgba(2, 6, 23, 0.14);
  border: 1px solid rgba(2, 6, 23, 0.12);
  background: rgba(255, 255, 255, 0.92);
  transform: translateZ(0);
  flex: 0 0 auto;
}
body.page-services .lt-icon-3d .lt-icon-back,
body.page-services .lt-icon-3d .lt-icon-front {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  font-size: 1.45rem;
  line-height: 1;
}
body.page-services .lt-icon-3d .lt-icon-back {
  color: color-mix(in srgb, var(--lt-accent) 22%, transparent);
  transform: translate(0, 0);
}
body.page-services .lt-icon-3d .lt-icon-front {
  color: color-mix(in srgb, var(--lt-accent) 92%, white);
  --fa-primary-color: color-mix(in srgb, var(--lt-accent) 92%, white);
  --fa-secondary-color: color-mix(in srgb, var(--lt-accent) 50%, white);
  --fa-primary-opacity: 1;
  --fa-secondary-opacity: 0.35;
}
body.page-services .lt-icon-3d.is-sm {
  width: 44px;
  height: 44px;
  border-radius: 8px;
}
body.page-services .lt-icon-3d.is-sm .lt-icon-back,
body.page-services .lt-icon-3d.is-sm .lt-icon-front {
  font-size: 1.15rem;
}
body.page-services .lt-icon-3d[data-accent=blue] {
  --lt-accent: #1557ff;
}
body.page-services .lt-icon-3d[data-accent=pink] {
  --lt-accent: #ff1b63;
}
body.page-services .lt-icon-3d[data-accent=teal] {
  --lt-accent: #0f766e;
}
body.page-services .lt-icon-3d[data-accent=purple] {
  --lt-accent: #5600e0;
}
body.page-services .lt-icon-3d[data-accent=orange] {
  --lt-accent: #ff6a00;
}
body.page-services .lt-icon-3d[data-accent=green] {
  --lt-accent: #1b7a39;
}
body.page-services .lt-mosaic-grid {
  display: block;
}
body.page-services .lt-mosaic-card {
  --lt-mosaic-bg: #eef2ff;
  --lt-card-accent: #1557ff;
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  padding: clamp(18px, 2.2vw, 26px);
  background: var(--lt-mosaic-bg);
  box-shadow: none;
  border: 1px solid rgba(2, 6, 23, 0.08);
  height: 100%;
}
body.page-services .lt-mosaic-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(520px 260px at 0% 0%, rgba(255, 255, 255, 0.58), transparent 62%), radial-gradient(520px 260px at 100% 15%, rgba(255, 255, 255, 0.28), transparent 60%), radial-gradient(520px 260px at 85% 85%, color-mix(in srgb, var(--lt-card-accent) 14%, transparent), transparent 65%);
  pointer-events: none;
}
body.page-services .lt-mosaic-card .lt-icon-3d {
  --lt-accent: var(--lt-card-accent);
  background: #fff;
}
body.page-services .lt-mosaic-card[data-tone=lavender] {
  --lt-card-accent: #5b21b6;
  --lt-mosaic-bg: color-mix(in srgb, var(--lt-card-accent) 14%, #ffffff);
}
body.page-services .lt-mosaic-card[data-tone=pink] {
  --lt-card-accent: #db2777;
  --lt-mosaic-bg: color-mix(in srgb, var(--lt-card-accent) 14%, #ffffff);
}
body.page-services .lt-mosaic-card[data-tone=butter] {
  --lt-card-accent: #d97706;
  --lt-mosaic-bg: color-mix(in srgb, var(--lt-card-accent) 16%, #ffffff);
}
body.page-services .lt-mosaic-card[data-tone=mint] {
  --lt-card-accent: #15803d;
  --lt-mosaic-bg: color-mix(in srgb, var(--lt-card-accent) 14%, #ffffff);
}
body.page-services .lt-mosaic-card[data-tone=peach] {
  --lt-card-accent: #c2410c;
  --lt-mosaic-bg: color-mix(in srgb, var(--lt-card-accent) 14%, #ffffff);
}
body.page-services .lt-mosaic-card[data-tone=cloud] {
  --lt-card-accent: #0f766e;
  --lt-mosaic-bg: color-mix(in srgb, var(--lt-card-accent) 10%, #ffffff);
}
body.page-services .lt-mosaic-card[data-tone=sky] {
  --lt-card-accent: #1d4ed8;
  --lt-mosaic-bg: color-mix(in srgb, var(--lt-card-accent) 12%, #ffffff);
}
body.page-services .lt-mosaic-card[data-tone=lilac] {
  --lt-card-accent: #a21caf;
  --lt-mosaic-bg: color-mix(in srgb, var(--lt-card-accent) 12%, #ffffff);
}
body.page-services .lt-mosaic-header {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 12px;
}
body.page-services .lt-mosaic-text h3 {
  font-size: 1.2rem;
  font-weight: 900;
  color: rgba(2, 6, 23, 0.92);
}
body.page-services .lt-mosaic-card .lt-muted {
  color: rgba(2, 6, 23, 0.68);
}
body.page-services .lt-mosaic-card ul {
  position: relative;
  z-index: 1;
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 6px;
}
body.page-services .lt-mosaic-card li {
  line-height: 1.55;
}
body.page-services .lt-mosaic-art {
  position: absolute;
  right: 18px;
  top: 52%;
  z-index: 0;
  font-size: clamp(3.2rem, 6vw, 5rem);
  opacity: 0.12;
  color: color-mix(in srgb, var(--lt-card-accent) 80%, rgba(2, 6, 23, 0.2));
  transform: translateY(-50%);
  pointer-events: none;
}
@media (min-width: 992px) {
  body.page-services .lt-mosaic-art {
    right: 22px;
  }
}
@media (max-width: 768px) {
  body.page-services .lt-services-intro {
    padding-bottom: 60px;
  }
  body.page-services .lt-services-item {
    padding: 12px 14px;
  }
}

body.page-careers .lt-icon-3d {
  --lt-accent: #3e6ac4;
  width: 56px;
  height: 56px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  position: relative;
  isolation: isolate;
  box-shadow: 2px 2px 1px rgba(2, 6, 23, 0.14);
  border: 1px solid rgba(2, 6, 23, 0.12);
  background: rgba(255, 255, 255, 0.92);
  transform: translateZ(0);
  flex: 0 0 auto;
}
body.page-careers .lt-icon-3d .lt-icon-back,
body.page-careers .lt-icon-3d .lt-icon-front {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  font-size: 1.45rem;
  line-height: 1;
}
body.page-careers .lt-icon-3d .lt-icon-back {
  color: color-mix(in srgb, var(--lt-accent) 22%, transparent);
  transform: translate(0, 0);
}
body.page-careers .lt-icon-3d .lt-icon-front {
  color: color-mix(in srgb, var(--lt-accent) 92%, white);
  --fa-primary-color: color-mix(in srgb, var(--lt-accent) 92%, white);
  --fa-secondary-color: color-mix(in srgb, var(--lt-accent) 50%, white);
  --fa-primary-opacity: 1;
  --fa-secondary-opacity: 0.35;
}
body.page-careers .lt-icon-3d.is-sm {
  width: 44px;
  height: 44px;
  border-radius: 8px;
}
body.page-careers .lt-icon-3d.is-sm .lt-icon-back,
body.page-careers .lt-icon-3d.is-sm .lt-icon-front {
  font-size: 1.15rem;
}
body.page-careers .lt-icon-3d[data-accent=blue] {
  --lt-accent: #1557ff;
}
body.page-careers .lt-icon-3d[data-accent=pink] {
  --lt-accent: #ff1b63;
}
body.page-careers .lt-icon-3d[data-accent=teal] {
  --lt-accent: #0f766e;
}
body.page-careers .lt-icon-3d[data-accent=purple] {
  --lt-accent: #5600e0;
}
body.page-careers .lt-icon-3d[data-accent=orange] {
  --lt-accent: #ff6a00;
}
body.page-careers .lt-icon-3d[data-accent=green] {
  --lt-accent: #1b7a39;
}
body.page-careers .lt-careers-intro {
  background: radial-gradient(900px 420px at 66% 30%, #eaedff, rgba(0, 0, 0, 0) 62%), radial-gradient(760px 380px at 94% 15%, #ffdaea, #ffffff 62%);
}
body.page-careers .lt-careers-intro p {
  max-width: 82ch;
  margin-left: auto;
  margin-right: auto;
}
body.page-careers .lt-feature-card .lt-icon-3d {
  margin-bottom: 18px;
}
body.page-careers .lt-careers-join {
  background: linear-gradient(45deg, lavender, aliceblue, lavenderblush);
}
body.page-careers .lt-careers-join-panel {
  background: var(--lt-surface-strong);
  border: 1px solid var(--lt-border);
  box-shadow: 0 16px 44px rgba(2, 6, 23, 0.08);
  border-radius: 18px;
  padding: clamp(18px, 2.6vw, 30px);
}

body.page-portfolio .lt-portfolio {
  padding-top: 70px;
}
body.page-portfolio .lt-portfolio-card {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}
body.page-portfolio .lt-portfolio-card:focus-visible {
  outline: 3px solid rgba(0, 50, 255, 0.45);
  outline-offset: 6px;
}
body.page-portfolio .lt-portfolio-card-inner {
  height: 100%;
  overflow: hidden;
  box-shadow: none;
  transition: all 0.28s ease, box-shadow 0.25s ease, transform 0.25s ease;
}
body.page-portfolio .lt-portfolio-card:hover .lt-portfolio-card-inner {
  transform: translateY(-4px);
}
body.page-portfolio .lt-portfolio-card-body {
  padding: 18px 18px 20px;
}
body.page-portfolio .lt-portfolio-overline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(2, 6, 23, 0.62);
  margin-bottom: 10px;
}
body.page-portfolio .lt-portfolio-overline::before {
  content: "";
  width: 22px;
  height: 2px;
  background: rgba(255, 0, 82, 0.68);
}
body.page-portfolio .lt-portfolio-title {
  margin: 0 0 10px;
  font-size: 1.25rem;
  line-height: 1.1;
}
body.page-portfolio .lt-portfolio-desc {
  margin-bottom: 14px;
}
body.page-portfolio .lt-portfolio-tech {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
body.page-portfolio .lt-tech-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(2, 6, 23, 0.04);
  border: 1px solid rgba(2, 6, 23, 0.1);
  color: rgba(2, 6, 23, 0.82);
  font-weight: 700;
  font-size: 12px;
  line-height: 1;
}
body.page-portfolio .lt-tech-pill i {
  font-size: 16px;
  --fa-primary-color: rgba($lt-primary-solid, 0.92);
  --fa-secondary-color: rgba($lt-secondary-solid, 0.58);
  --fa-primary-opacity: 1;
  --fa-secondary-opacity: 0.32;
}

body.page-apply {
  background: radial-gradient(900px 420px at 20% 20%, #eef2ff, rgba(0, 0, 0, 0) 62%), radial-gradient(760px 380px at 90% 10%, #ffe4ef, rgba(0, 0, 0, 0) 62%), #f8fafc;
}
body.page-apply .lt-apply-main {
  padding-top: 56px;
}
body.page-apply .lt-apply-panel,
body.page-apply .lt-apply-form-card {
  border-radius: 18px;
  padding: clamp(18px, 2.2vw, 26px);
}
body.page-apply .lt-apply-panel h2 {
  font-family: "Patron", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: rgba(2, 6, 23, 0.92);
}
body.page-apply .lt-apply-panel h4 {
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: rgb(0, 0, 0);
  margin-top: 24px;
  margin-bottom: 18px;
}
body.page-apply .lt-apply-panel .lt-kicker {
  margin-bottom: 10px;
}
body.page-apply .lt-apply-panel p {
  line-height: 1.7;
}
body.page-apply .lt-apply-panel p + h4,
body.page-apply .lt-apply-panel .lt-checklist + h4,
body.page-apply .lt-apply-panel ul + h4,
body.page-apply .lt-apply-panel .table-responsive + h4 {
  margin-top: 26px;
}
body.page-apply .lt-apply-panel .lt-checklist {
  margin-top: 10px;
}
body.page-apply .lt-apply-panel ul.lt-muted {
  margin: 0;
  padding-left: 1.1rem;
  display: grid;
  gap: 8px;
}
body.page-apply .lt-apply-panel ul.lt-muted li {
  line-height: 1.55;
}
body.page-apply .lt-apply-panel .table-responsive {
  margin-top: 10px;
}
body.page-apply .lt-apply-form-card h2 {
  font-family: "Patron", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: rgba(2, 6, 23, 0.92);
}
body.page-apply .lt-apply-form-card .form-group {
  margin: 0 0 0px !important;
}
body.page-apply .lt-apply-form-card .form-label {
  font-weight: 400;
  color: rgba(2, 6, 23, 0.88);
  margin-bottom: 0px;
  font-size: 15px;
}
body.page-apply .lt-apply-form-card .form-control,
body.page-apply .lt-apply-form-card .form-select {
  border-radius: 8px;
  border-color: rgba(2, 6, 23, 0.14);
  min-height: 52px;
  padding: 12px 14px;
  background-color: rgba(255, 255, 255, 0.92);
  color: rgba(2, 6, 23, 0.88);
}
body.page-apply .lt-apply-form-card textarea.form-control {
  min-height: 140px;
  padding-top: 12px;
  padding-bottom: 12px;
  resize: vertical;
}
body.page-apply .lt-apply-form-card .form-control::placeholder,
body.page-apply .lt-apply-form-card textarea.form-control::placeholder {
  color: rgba(2, 6, 23, 0.4);
}
body.page-apply .lt-apply-form-card .form-control:focus,
body.page-apply .lt-apply-form-card .form-select:focus {
  border-color: rgba(21, 87, 255, 0.42);
  box-shadow: 0 0 0 0.22rem rgba(21, 87, 255, 0.14);
}
body.page-apply .lt-apply-form-card .form-control[aria-invalid=true],
body.page-apply .lt-apply-form-card .form-select[aria-invalid=true],
body.page-apply .lt-apply-form-card textarea.form-control[aria-invalid=true] {
  border-color: rgba(220, 38, 38, 0.55);
  box-shadow: 0 0 0 0.22rem rgba(220, 38, 38, 0.1);
}
body.page-apply .lt-apply-panel + .lt-apply-panel {
  margin-top: 18px;
}
body.page-apply .lt-apply-form-card {
  border: 1px solid rgba(2, 6, 23, 0.12);
  box-shadow: 0 22px 60px rgba(2, 6, 23, 0.1);
}
@media (min-width: 992px) {
  body.page-apply .lt-apply-form-card {
    position: sticky;
    top: 110px;
  }
}
body.page-apply .lt-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}
body.page-apply .lt-checklist li {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: start;
  line-height: 1.4;
  font-size: 15px;
  color: #707585;
}
body.page-apply .lt-checklist li strong {
  font-weight: 400;
  color: #000;
}
body.page-apply .lt-checklist i {
  color: color-mix(in srgb, #1557ff 85%, white);
  position: relative;
  top: 3px;
}
body.page-apply .lt-apply-table {
  margin-bottom: 0;
  border-color: rgba(2, 6, 23, 0.12);
}
body.page-apply .lt-apply-table th {
  font-weight: 600;
  color: rgba(2, 6, 23, 0.84);
}
body.page-apply .lt-apply-table td {
  color: rgba(2, 6, 23, 0.78);
}
body.page-apply .lt-fieldset {
  border: 0;
  padding: 0;
  margin: 0;
}
body.page-apply .lt-pill-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
body.page-apply .lt-pill {
  position: relative;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  user-select: none;
}
body.page-apply .lt-pill input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}
body.page-apply .lt-pill span {
  display: inline-flex;
  align-items: center;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(2, 6, 23, 0.14);
  background: rgba(255, 255, 255, 0.78);
  color: rgba(2, 6, 23, 0.8);
  font-size: 13px;
  line-height: 1.1;
  transition: background 200ms ease, border-color 200ms ease, box-shadow 200ms ease, transform 200ms ease;
}
body.page-apply .lt-pill:hover span {
  transform: translateY(-1px);
  border-color: rgba(2, 6, 23, 0.22);
  box-shadow: 0 10px 22px rgba(2, 6, 23, 0.08);
}
body.page-apply .lt-pill input:focus-visible + span {
  box-shadow: 0 0 0 0.22rem rgba(21, 87, 255, 0.16);
}
body.page-apply .lt-pill input:checked + span {
  background: linear-gradient(45deg, rgba(195, 201, 255, 0.95), rgba(255, 255, 255, 0.95), rgba(255, 205, 220, 0.85));
  border-color: rgba(21, 87, 255, 0.34);
  color: rgba(2, 6, 23, 0.92);
}
body.page-apply .lt-file-meta {
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: rgba(2, 6, 23, 0.62);
  font-size: 13px;
}
body.page-apply .lt-file-label {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 70%;
}
body.page-apply .lt-field-error {
  display: none;
  margin-top: 6px;
  color: #dc2626;
  font-size: 12px;
}
body.page-apply .lt-field-error:not(:empty) {
  display: block;
}
body.page-apply .lt-form-alert {
  border-radius: 14px;
  padding: 12px 14px;
  display: grid;
  gap: 4px;
  border: 1px solid rgba(2, 6, 23, 0.12);
}
body.page-apply .lt-form-alert.is-success {
  background: rgba(22, 163, 74, 0.08);
  border-color: rgba(22, 163, 74, 0.22);
  color: rgba(2, 6, 23, 0.88);
}
body.page-apply .lt-form-alert.is-error {
  background: rgba(220, 38, 38, 0.06);
  border-color: rgba(220, 38, 38, 0.22);
  color: rgba(2, 6, 23, 0.88);
}
body.page-apply .lt-apply-contact-items {
  display: grid;
  gap: 10px;
}
body.page-apply .lt-apply-contact-items a,
body.page-apply .lt-apply-contact-items span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(2, 6, 23, 0.78);
  text-decoration: none;
}
body.page-apply .lt-apply-contact-items a:hover {
  text-decoration: underline;
}

body.page-project .lt-project {
  padding-top: 70px;
}
body.page-project .lt-project-media {
  background: var(--lt-surface-strong);
  border: 1px solid var(--lt-border);
  box-shadow: 0 16px 44px rgba(2, 6, 23, 0.08);
  border-radius: 0px;
  overflow: hidden;
}
body.page-project .lt-project-media img {
  display: block;
  width: 100%;
  height: auto;
}
body.page-project .lt-project-panel {
  background: var(--lt-surface-strong);
  border: 1px solid var(--lt-border);
  box-shadow: 0 16px 44px rgba(2, 6, 23, 0.08);
  border-radius: 0px;
  padding: 22px;
}
body.page-project .lt-project-copy {
  margin-top: 12px;
}
body.page-project .lt-project-block {
  margin-top: 18px;
}
body.page-project .lt-project-tech {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
body.page-project .lt-tech-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(2, 6, 23, 0.04);
  border: 1px solid rgba(2, 6, 23, 0.1);
  color: rgba(2, 6, 23, 0.82);
  font-weight: 800;
  font-size: 12px;
  line-height: 1;
}
body.page-project .lt-tech-pill i {
  font-size: 16px;
  --fa-primary-color: rgba($lt-primary-solid, 0.92);
  --fa-secondary-color: rgba($lt-secondary-solid, 0.58);
  --fa-primary-opacity: 1;
  --fa-secondary-opacity: 0.32;
}
body.page-project .lt-project-details {
  display: grid;
  gap: 12px;
}
body.page-project .lt-project-detail {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px;
  border-radius: 8px;
  border: 1px solid rgba(2, 6, 23, 0.1);
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
}
body.page-project .lt-project-detail-icon {
  width: 44px;
  height: 44px;
  border-radius: 7px;
  display: grid;
  place-items: center;
  background: rgba(2, 6, 23, 0.04);
  border: 1px solid rgba(2, 6, 23, 0.1);
  flex-shrink: 0;
}
body.page-project .lt-project-detail-icon i {
  font-size: 18px;
  --fa-primary-color: rgba($lt-primary-solid, 0.92);
  --fa-secondary-color: rgba($lt-secondary-solid, 0.58);
  --fa-primary-opacity: 1;
  --fa-secondary-opacity: 0.32;
}
body.page-project .lt-project-detail-label {
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 11px;
  color: rgba(2, 6, 23, 0.62);
  margin-bottom: 2px;
}
body.page-project .lt-project-detail-value {
  font-weight: 700;
  color: rgba(2, 6, 23, 0.9);
}
body.page-project .lt-project-actions {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
@media (min-width: 768px) {
  body.page-project .lt-project-panel {
    position: sticky;
    top: 90px;
  }
}

.page-contact {
  background: radial-gradient(900px 420px at 18% 18%, rgba(21, 87, 255, 0.14), transparent 62%), radial-gradient(760px 380px at 90% 10%, rgba(255, 0, 82, 0.1), transparent 62%), var(--lt-bg);
}

.lt-contact-hero {
  padding: 60px 0;
  background: #fff;
}

.lt-contact-breadcrumb .breadcrumb {
  margin-bottom: 0;
}

.lt-contact-breadcrumb {
  margin-bottom: 18px;
}

.lt-contact-title {
  font-size: clamp(2.3rem, 4vw, 3.45rem);
  letter-spacing: -0.03em;
  margin: 10px 0 12px;
}

.lt-contact-title-accent {
  color: #1557ff;
}

.lt-contact-sub {
  max-width: 56ch;
  margin-bottom: 18px;
}

.lt-contact-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 16px;
}

.lt-contact-card {
  border-radius: 16px;
  padding: 16px;
  border: 1px solid var(--lt-border);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 10px 24px rgba(7, 20, 38, 0.08);
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.lt-contact-card h3 {
  font-size: 1rem;
  margin: 0 0 4px;
}

.lt-contact-card a {
  color: var(--lt-heading);
  font-weight: 700;
}

.lt-contact-card a:hover {
  color: var(--lt-primary);
}

.lt-contact-ico {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: radial-gradient(120% 120% at 20% 20%, rgba(21, 87, 255, 0.22), rgba(21, 87, 255, 0.06));
  border: 1px solid rgba(21, 87, 255, 0.18);
  display: grid;
  place-items: center;
  color: rgba(2, 6, 23, 0.86);
  flex: 0 0 auto;
}

.lt-contact-inline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.lt-contact-copy {
  appearance: none;
  border: 1px solid var(--lt-border);
  background: rgba(255, 255, 255, 0.7);
  color: var(--lt-heading);
  font-weight: 700;
  padding: 8px 10px;
  border-radius: 12px;
  line-height: 1;
  transition: all 0.28s ease;
}

.lt-contact-copy:hover {
  border-color: rgba(0, 50, 255, 0.35);
  box-shadow: 0 10px 24px rgba(7, 20, 38, 0.08);
}

.lt-contact-mini {
  font-size: 1.05rem;
  margin-bottom: 10px;
}

.lt-contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
}

.lt-contact-links a {
  font-weight: 700;
  color: var(--lt-text);
  padding: 8px 12px;
  border: 1px solid var(--lt-border);
  background: var(--lt-surface);
  border-radius: 999px;
}

.lt-contact-links a:hover {
  color: var(--lt-heading);
  border-color: rgba(0, 50, 255, 0.35);
}

.lt-contact-panel {
  border-radius: 18px;
  border: 1px solid var(--lt-border);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 22px 60px rgba(2, 6, 23, 0.1);
  padding: 22px;
}

.lt-contact-panel-head {
  margin-bottom: 14px;
}

.lt-contact-panel-title {
  font-size: 1.6rem;
  margin-bottom: 4px;
}

.lt-field {
  display: grid;
}

.lt-field-label {
  font-weight: 400;
  color: rgba(2, 6, 23, 0.88);
  margin-bottom: 0px;
  font-size: 15px;
}

.page-contact .form-control {
  border-radius: 8px;
  border-color: rgba(2, 6, 23, 0.14);
  min-height: 52px;
  padding: 12px 14px;
  background-color: rgba(255, 255, 255, 0.92);
  color: rgba(2, 6, 23, 0.88);
  box-shadow: none !important;
}

.page-contact textarea.form-control {
  min-height: 140px;
  padding-top: 12px;
  padding-bottom: 12px;
  resize: vertical;
}

.page-contact .form-control::placeholder,
.page-contact textarea.form-control::placeholder {
  color: rgba(2, 6, 23, 0.4);
}

.page-contact .form-control:focus {
  border-color: rgba(21, 87, 255, 0.42);
}

.page-contact .form-control[aria-invalid=true],
.page-contact textarea.form-control[aria-invalid=true] {
  border-color: rgba(220, 38, 38, 0.55);
}

.lt-field-error {
  display: none;
  font-weight: 400;
  color: #c70040;
  line-height: 1;
  margin: 10px 0 0px;
  font-size: 13px;
}

.lt-field.is-error .lt-field-error {
  display: block;
}

.lt-field-error:not(:empty) {
  display: block;
}

.lt-contact-submit {
  width: 100%;
  margin-top: 16px;
  border: 0;
  border-radius: 10px;
  padding: 15px 18px;
  font-weight: 900;
  letter-spacing: 0.01em;
  color: #ffffff;
  background: linear-gradient(180deg, #1557ff 0%, #0a36d6 60%, #07279f 100%);
  position: relative;
  transition: all 0.28s ease;
}

.lt-contact-submit:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}

.lt-contact-submit:not(:disabled):hover {
  transform: translateY(-1px);
}

.lt-contact-spinner {
  position: absolute;
  right: 16px;
  top: 50%;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.55);
  border-top-color: transparent;
  transform: translateY(-50%);
  display: none;
  animation: ltSpin 0.8s linear infinite;
}

.lt-contact-submit.is-loading .lt-contact-spinner {
  display: block;
}

@keyframes ltSpin {
  to {
    transform: translateY(-50%) rotate(360deg);
  }
}
.lt-contact-status {
  margin-top: 12px;
  border-radius: 10px;
  border: 1px solid transparent;
  background: transparent;
  color: #a00041;
  font-weight: 400;
  font-size: 13px;
  display: none;
}

.lt-contact-status.is-success {
  display: block;
}

.lt-contact-status.is-error {
  display: block;
}

.lt-contact-testimonials {
  padding: 86px 0;
  border-top: 1px solid var(--lt-border);
  border-bottom: 1px solid var(--lt-border);
  background: linear-gradient(45deg, rgb(0, 7, 36), rgb(31, 0, 22));
}

.lt-contact-section-head {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.lt-center {
  text-align: center;
  align-items: center;
}

.lt-contact-testimonials h2 {
  color: var(--lt-heading);
}

.lt-contact-testimonials .kicker {
  background: rgba(21, 87, 255, 0.08);
}

.lt-testimonial-card {
  border-radius: 16px;
  border: 1px solid var(--lt-border);
  background: #fff;
  padding: 18px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.lt-testimonial-brand {
  font-weight: 900;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}

.lt-testimonial-quote {
  color: var(--lt-text);
  margin-bottom: 12px;
}

.lt-testimonial-meta {
  display: grid;
  gap: 4px;
}

.lt-testimonial-meta span {
  color: #858ba1;
  font-weight: 400;
  line-height: 1;
  font-size: 14px;
}

.lt-testimonial-author {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 12px;
  align-items: center;
  margin-top: 14px;
  line-height: 1;
}

.lt-avatar {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-weight: 900;
  letter-spacing: 0.02em;
  color: rgba(2, 6, 23, 0.78);
  background: rgba(21, 87, 255, 0.1);
  border: 1px solid rgba(2, 6, 23, 0.12);
}

.lt-social-card {
  display: flex;
  align-items: center;
  gap: 14px;
  border-radius: 10px;
  border: 1px solid #ddd;
  background: rgba(255, 255, 255, 0.96);
  padding: 12px;
  height: 100%;
  transition: all 0.28s ease;
  color: var(--lt-heading);
}

.page-contact .lt-icon-3d {
  --lt-accent: #3e6ac4;
  width: 56px;
  height: 56px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  position: relative;
  isolation: isolate;
  box-shadow: 2px 2px 1px rgba(2, 6, 23, 0.14);
  border: 1px solid rgba(2, 6, 23, 0.12);
  background: rgba(255, 255, 255, 0.92);
  transform: translateZ(0);
}

.page-contact .lt-icon-3d .lt-icon-back,
.page-contact .lt-icon-3d .lt-icon-front {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  font-size: 1.45rem;
  line-height: 1;
}

.page-contact .lt-icon-3d .lt-icon-back {
  color: color-mix(in srgb, var(--lt-accent) 22%, transparent);
  transform: translate(0, 0);
}

.page-contact .lt-icon-3d .lt-icon-front {
  color: color-mix(in srgb, var(--lt-accent) 92%, white);
  --fa-primary-color: color-mix(in srgb, var(--lt-accent) 92%, white);
  --fa-secondary-color: color-mix(in srgb, var(--lt-accent) 50%, white);
  --fa-primary-opacity: 1;
  --fa-secondary-opacity: 0.35;
}

.page-contact .lt-icon-3d.is-sm {
  width: 44px;
  height: 44px;
  border-radius: 8px;
}

.page-contact .lt-icon-3d.is-sm .lt-icon-back,
.page-contact .lt-icon-3d.is-sm .lt-icon-front {
  font-size: 1.15rem;
}

.page-contact .lt-icon-3d[data-accent=blue] {
  --lt-accent: #1557ff;
}

.page-contact .lt-icon-3d[data-accent=skype] {
  --lt-accent: #00aff0;
}

.lt-social-body {
  display: grid;
  gap: 2px;
}

.lt-social-label {
  font-size: 15px;
  font-weight: 400;
  color: rgba(2, 6, 23, 0.62);
  line-height: 1.2;
}

.lt-social-value {
  font-size: 18px;
  font-weight: 700;
  color: rgba(2, 6, 23, 0.92);
  line-height: 1.1;
  word-break: break-word;
}

.lt-social-card--email {
  background: linear-gradient(95deg, rgba(21, 87, 255, 0.08), rgba(255, 255, 255, 0.96));
}

.lt-social-card--skype {
  background: linear-gradient(95deg, rgba(0, 175, 240, 0.1), rgba(255, 255, 255, 0.96));
}

.lt-contact-faq {
  padding: 64px 0 86px;
  border-top: 1px solid rgba(0, 0, 0, 0.2);
  background: var(--lt-bg);
}

.lt-faq-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.lt-faq-head.lt-center {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 10px;
}

.lt-faq-tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.lt-faq-tab {
  border: 1px solid var(--lt-border);
  background: var(--lt-surface);
  color: var(--lt-heading);
  font-weight: 900;
  padding: 10px 14px;
  border-radius: 999px;
  transition: all 0.28s ease;
}

.lt-faq-tab.is-active {
  background: rgba(0, 50, 255, 0.12);
  border-color: rgba(0, 50, 255, 0.28);
}

.lt-faq-accordion {
  margin-top: 18px;
  display: grid;
  gap: 12px;
  max-width: 920px;
  margin-inline: auto;
}

.lt-faq-item {
  border-radius: 16px;
  border: 1px solid var(--lt-border);
  background: var(--lt-surface-strong);
  box-shadow: 0 10px 24px rgba(7, 20, 38, 0.08);
  overflow: hidden;
}

.lt-faq-headbtn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  border: 0;
  background: transparent;
  color: var(--lt-heading);
  font-weight: 900;
  text-align: left;
}

.lt-faq-icon {
  width: 24px;
  height: 24px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  border: 1px solid var(--lt-border);
  background: var(--lt-surface);
}

.lt-faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.28s ease;
}

.lt-faq-body-inner {
  padding: 0 16px 14px;
  color: var(--lt-text);
  font-weight: 400;
}

.lt-faq-item.is-open .lt-faq-body {
  max-height: 320px;
}

.lt-toast {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 999;
  border-radius: 16px;
  border: 1px solid var(--lt-border);
  background: var(--lt-surface-strong);
  box-shadow: 0 18px 50px rgba(7, 20, 38, 0.1);
  padding: 12px 14px;
  color: var(--lt-heading);
  font-weight: 900;
  max-width: min(360px, 100vw - 32px);
  transform: translateY(10px);
  opacity: 0;
  pointer-events: none;
  transition: all 0.28s ease;
}

.lt-toast.is-visible {
  transform: translateY(0);
  opacity: 1;
}

@media (max-width: 768px) {
  .lt-contact-cards {
    grid-template-columns: 1fr;
  }
}
.text-gradient {
  background: linear-gradient(90deg, #0032ff, #ffffff, #ff0052);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lt-muted {
  color: #5a5a5a;
  font-size: 15px;
}

.lt-divider {
  height: 1px;
  width: 100%;
  background: var(--lt-border);
}

@media (max-width: 768px) {
  .hide-mobile {
    display: none !important;
  }
}
@media (min-width: 768px) {
  .show-mobile {
    display: none !important;
  }
}