strong, p, h1, h2, h3, h4, h5, h6, span, a, li, button, label, input, textarea, select {
  color: inherit;
}

:root {
  --lavender-bg-start: #F3E8FF;
  --lavender-bg-end: #EDE9FE;
  --glass-white: rgba(255, 255, 255, 0.8);
  --glass-white-strong: rgba(255, 255, 255, 0.92);
  --glass-white-soft: rgba(255, 255, 255, 0.6);
  --text-deep: #4C1D95;
  --text-violet: #7C3AED;
  --accent-electric: #7C3AED;
  --accent-deep: #6D28D9;
  --border-lavender: #DDD6FE;
  --decor-soft: #A78BFA;
  --decor-pale: #EDE9FE;
  --shadow-violet: 0 10px 28px rgba(124, 58, 237, 0.3);
  --shadow-soft: 0 8px 24px rgba(76, 29, 149, 0.12);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

body {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-deep);
  background: linear-gradient(135deg, var(--lavender-bg-start) 0%, var(--lavender-bg-end) 100%);
  background-attachment: fixed;
  min-height: 100vh;
  cursor: default;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', 'Helvetica Neue', sans-serif;
  color: var(--text-deep);
  line-height: 1.15;
  font-weight: 600;
  letter-spacing: -0.01em;
}

h1 {
  font-size: clamp(2.4rem, 5.5vw, 4.5rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.05;
}

h2 {
  font-size: clamp(2rem, 3.8vw, 3.2rem);
  font-weight: 600;
  letter-spacing: -0.02em;
}

h3 {
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-weight: 600;
}

h4 {
  font-size: 1.2rem;
  font-weight: 600;
}

p {
  color: var(--text-deep);
  opacity: 0.92;
  line-height: 1.7;
}

a {
  color: var(--accent-electric);
  text-decoration: none;
  transition: color 0.25s ease;
}

a:hover {
  color: var(--accent-deep);
}

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

.lgx-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
}

.lgx-section {
  padding: clamp(60px, 8vw, 120px) 0;
  position: relative;
}

.lgx-section--compact {
  padding: clamp(40px, 5vw, 80px) 0;
}

.lgx-eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-electric);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}

.lgx-eyebrow::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--accent-electric);
}

.lgx-glass {
  background: var(--glass-white);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(124, 58, 237, 0.18);
  border-radius: 16px;
  box-shadow: var(--shadow-soft);
}

.lgx-glass--strong {
  background: var(--glass-white-strong);
  border: 1px solid rgba(124, 58, 237, 0.25);
}

.lgx-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 14px 28px;
  border-radius: 8px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 15px;
  border: none;
  cursor: pointer;
  text-align: center;
  white-space: nowrap;
  transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
  letter-spacing: 0.01em;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.lgx-btn--primary {
  background: var(--accent-electric);
  color: #ffffff !important;
  box-shadow: 0 6px 18px rgba(124, 58, 237, 0.35);
}

.lgx-btn--primary:hover {
  background: var(--accent-deep);
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(124, 58, 237, 0.45);
}

.lgx-btn--secondary {
  background: var(--glass-white);
  color: var(--accent-electric) !important;
  border: 2px solid var(--accent-electric);
  backdrop-filter: blur(12px);
}

.lgx-btn--secondary:hover {
  background: var(--accent-electric);
  color: #ffffff !important;
  transform: translateY(-2px);
}

.lgx-btn--ghost {
  background: rgba(255, 255, 255, 0.4);
  color: var(--text-deep) !important;
  border: 1px solid var(--border-lavender);
}

.lgx-btn--ghost:hover {
  background: var(--accent-electric);
  color: #ffffff !important;
  border-color: var(--accent-electric);
}

.lgx-btn--lg {
  padding: 18px 36px;
  font-size: 16px;
  min-height: 56px;
}

.lgx-btn--block {
  width: 100%;
  display: flex;
}

.lgx-site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(124, 58, 237, 0.15);
}

.lgx-site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 24px;
  max-width: 1400px;
  margin: 0 auto;
}

.lgx-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text-deep) !important;
  flex-shrink: 0;
}

.lgx-logo__mark {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent-electric) 0%, var(--accent-deep) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff !important;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 20px;
  box-shadow: 0 4px 14px rgba(124, 58, 237, 0.35);
}

.lgx-logo__text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.lgx-logo__domain {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--accent-electric);
  letter-spacing: 0.05em;
}

.lgx-logo__name {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--text-deep);
}

.lgx-logo__name-en {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: var(--accent-electric);
  letter-spacing: 0.06em;
  margin-top: 2px;
}

.lgx-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.lgx-nav__link {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-deep) !important;
  padding: 10px 14px;
  border-radius: 6px;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.lgx-nav__link:hover, .lgx-nav__link.is-active {
  background: var(--accent-electric);
  color: #ffffff !important;
}

.lgx-nav__cta {
  margin-left: 12px;
}

.lgx-burger {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: transparent;
  border: 1px solid var(--border-lavender);
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  padding: 0;
  transition: all 0.25s ease;
}

.lgx-burger:hover {
  background: rgba(124, 58, 237, 0.08);
}

.lgx-burger__bar {
  width: 22px;
  height: 2px;
  background: var(--text-deep);
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.lgx-burger.is-open .lgx-burger__bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
  background: var(--accent-electric);
}

.lgx-burger.is-open .lgx-burger__bar:nth-child(2) {
  opacity: 0;
}

.lgx-burger.is-open .lgx-burger__bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
  background: var(--accent-electric);
}

.lgx-mobile-drawer {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: linear-gradient(135deg, rgba(243, 232, 255, 0.95) 0%, rgba(237, 233, 254, 0.95) 100%);
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  display: flex;
  flex-direction: column;
  padding: 80px 32px 32px;
  transform: translateX(100%);
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}

.lgx-mobile-drawer::before {
  content: "";
  position: absolute;
  top: 10%;
  left: -10%;
  width: 60%;
  height: 50%;
  background: radial-gradient(circle, rgba(167, 139, 250, 0.4) 0%, transparent 70%);
  pointer-events: none;
}

.lgx-mobile-drawer::after {
  content: "";
  position: absolute;
  bottom: 10%;
  right: -10%;
  width: 60%;
  height: 50%;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.3) 0%, transparent 70%);
  pointer-events: none;
}

.lgx-mobile-drawer.is-open {
  transform: translateX(0);
}

.lgx-mobile-drawer__close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--border-lavender);
  cursor: pointer;
  font-size: 24px;
  color: var(--text-deep);
  display: flex;
  align-items: center;
  justify-content: center;
}

.lgx-mobile-drawer__nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 20px;
  position: relative;
  z-index: 1;
}

.lgx-mobile-drawer__link {
  font-family: 'Outfit', sans-serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--text-deep) !important;
  padding: 16px 18px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid var(--border-lavender);
  opacity: 0;
  transform: translateX(20px);
  transition: all 0.3s ease;
}

.lgx-mobile-drawer.is-open .lgx-mobile-drawer__link {
  opacity: 1;
  transform: translateX(0);
}

.lgx-mobile-drawer.is-open .lgx-mobile-drawer__link:nth-child(1) { transition-delay: 0.06s; }
.lgx-mobile-drawer.is-open .lgx-mobile-drawer__link:nth-child(2) { transition-delay: 0.12s; }
.lgx-mobile-drawer.is-open .lgx-mobile-drawer__link:nth-child(3) { transition-delay: 0.18s; }
.lgx-mobile-drawer.is-open .lgx-mobile-drawer__link:nth-child(4) { transition-delay: 0.24s; }
.lgx-mobile-drawer.is-open .lgx-mobile-drawer__link:nth-child(5) { transition-delay: 0.30s; }
.lgx-mobile-drawer.is-open .lgx-mobile-drawer__link:nth-child(6) { transition-delay: 0.36s; }
.lgx-mobile-drawer.is-open .lgx-mobile-drawer__link:nth-child(7) { transition-delay: 0.42s; }
.lgx-mobile-drawer.is-open .lgx-mobile-drawer__link:nth-child(8) { transition-delay: 0.48s; }

.lgx-mobile-drawer__link:hover, .lgx-mobile-drawer__link.is-active {
  background: var(--accent-electric);
  color: #ffffff !important;
  border-color: var(--accent-electric);
}

.lgx-mobile-drawer__cta {
  margin-top: 24px;
  position: relative;
  z-index: 1;
}

.lgx-hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 80px 0 60px;
}

.lgx-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.lgx-hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(124, 58, 237, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(124, 58, 237, 0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 0;
}

.lgx-hero__dots {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.lgx-hero__dot {
  position: absolute;
  border-radius: 50%;
  background: var(--accent-electric);
  opacity: 0.45;
  transition: all 0.4s ease;
  pointer-events: none;
}

.lgx-hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}

.lgx-hero__content {
  color: var(--text-deep);
}

.lgx-hero__subline {
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  color: var(--accent-electric);
  letter-spacing: 0.05em;
  margin-top: 18px;
  margin-bottom: 32px;
  display: inline-block;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid var(--border-lavender);
  border-radius: 999px;
}

.lgx-hero__subline span {
  margin: 0 6px;
  color: var(--decor-soft);
}

.lgx-hero__title {
  color: var(--text-deep);
  margin-top: 12px;
  margin-bottom: 24px;
}

.lgx-hero__title em {
  font-style: normal;
  background: linear-gradient(135deg, var(--accent-electric), var(--decor-soft));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.lgx-hero__lead {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-deep);
  opacity: 0.85;
  max-width: 540px;
  margin-bottom: 32px;
}

.lgx-hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.lgx-hero__stats {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
  padding-top: 28px;
  border-top: 1px solid rgba(124, 58, 237, 0.18);
}

.lgx-hero__stat-value {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(24px, 5vw, 32px);
  font-weight: 700;
  color: var(--accent-electric);
  letter-spacing: -0.02em;
  line-height: 1;
}

.lgx-hero__stat-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--text-deep);
  opacity: 0.7;
  margin-top: 6px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lgx-hero__visual {
  position: relative;
  aspect-ratio: 1 / 1.05;
  border-radius: 24px;
  background: var(--glass-white-strong);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(124, 58, 237, 0.2);
  box-shadow: 0 20px 50px rgba(76, 29, 149, 0.18);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lgx-hero__visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(167, 139, 250, 0.4), transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(124, 58, 237, 0.25), transparent 50%);
  z-index: 0;
}

.lgx-hero__visual-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 1;
}

.lgx-hero__chip {
  position: absolute;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(124, 58, 237, 0.25);
  border-radius: 12px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--text-deep);
  z-index: 2;
  box-shadow: 0 8px 20px rgba(76, 29, 149, 0.15);
}

.lgx-hero__chip-icon {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: var(--accent-electric);
  color: #ffffff !important;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.lgx-hero__chip--top {
  top: 24px;
  left: 24px;
}

.lgx-hero__chip--bottom {
  bottom: 24px;
  right: 24px;
}

.lgx-problem-solution {
  background: rgba(255, 255, 255, 0.5);
  border-top: 1px solid rgba(124, 58, 237, 0.12);
  border-bottom: 1px solid rgba(124, 58, 237, 0.12);
}

.lgx-problem-solution__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 40px;
}

.lgx-problem-solution__col {
  padding: 32px;
  border-radius: 16px;
  background: var(--glass-white);
  border: 1px solid rgba(124, 58, 237, 0.15);
}

.lgx-problem-solution__col h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-deep);
  margin-bottom: 16px;
}

.lgx-problem-solution__col h3 span {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #ffffff !important;
}

.lgx-problem-solution__col--problem h3 span {
  background: linear-gradient(135deg, #f87171, #dc2626);
}

.lgx-problem-solution__col--solution h3 span {
  background: linear-gradient(135deg, var(--accent-electric), var(--accent-deep));
}

.lgx-problem-solution__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.lgx-problem-solution__list li {
  position: relative;
  padding-left: 28px;
  font-size: 15px;
  color: var(--text-deep);
}

.lgx-problem-solution__col--problem .lgx-problem-solution__list li::before {
  content: "✕";
  position: absolute;
  left: 0;
  top: 0;
  color: #dc2626;
  font-weight: 700;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(220, 38, 38, 0.12);
  border-radius: 50%;
  font-size: 11px;
}

.lgx-problem-solution__col--solution .lgx-problem-solution__list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent-electric);
  font-weight: 700;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(124, 58, 237, 0.15);
  border-radius: 50%;
  font-size: 12px;
}

.lgx-services-stacking {
  position: relative;
}

.lgx-service-stack-card {
  position: relative;
  background: var(--glass-white-strong);
  border: 1px solid rgba(124, 58, 237, 0.2);
  border-radius: 24px;
  padding: 36px;
  margin-bottom: -80px;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 10px 30px rgba(76, 29, 149, 0.1);
  z-index: 1;
  display: grid;
  grid-template-columns: 100px 1fr auto;
  gap: 32px;
  align-items: center;
  min-width: 0;
}

.lgx-service-stack-card:last-child {
  margin-bottom: 0;
}

.lgx-service-stack-card:hover {
  transform: translateY(-8px) scale(1.02);
  z-index: 10;
  border: 2px solid var(--accent-electric);
  box-shadow: 0 24px 50px rgba(124, 58, 237, 0.25);
}

.lgx-service-stack-card__num {
  font-family: 'Outfit', sans-serif;
  font-size: 56px;
  font-weight: 700;
  color: var(--accent-electric);
  line-height: 1;
  letter-spacing: -0.03em;
}

.lgx-service-stack-card__title {
  font-family: 'Outfit', sans-serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--text-deep);
  margin-bottom: 8px;
}

.lgx-service-stack-card__desc {
  font-size: 15px;
  color: var(--text-deep);
  opacity: 0.85;
  line-height: 1.65;
}

.lgx-service-stack-card__price {
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  color: var(--accent-electric);
  margin-top: 8px;
}

.lgx-service-stack-card__link {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--accent-electric) !important;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  padding: 6px 12px;
  border-radius: 6px;
  border: 1px solid var(--border-lavender);
  transition: all 0.25s ease;
}

.lgx-service-stack-card__link:hover {
  background: var(--accent-electric);
  color: #ffffff !important;
  border-color: var(--accent-electric);
}

.lgx-services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.lgx-services-card {
  background: var(--glass-white-strong);
  border: 1px solid rgba(124, 58, 237, 0.2);
  border-radius: 18px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
}

.lgx-services-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.04), transparent);
  pointer-events: none;
}

.lgx-services-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent-electric);
  box-shadow: 0 18px 40px rgba(124, 58, 237, 0.18);
  z-index: 2;
}

.lgx-services-card__icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--accent-electric), var(--accent-deep));
  color: #ffffff !important;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 6px;
}

.lgx-services-card__cat {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-electric);
}

.lgx-services-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--text-deep);
  margin: 0;
}

.lgx-services-card__lead {
  font-size: 14px;
  color: var(--text-deep);
  opacity: 0.85;
  line-height: 1.65;
}

.lgx-services-card__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.lgx-services-card__list li {
  font-size: 13px;
  color: var(--text-deep);
  padding-left: 18px;
  position: relative;
  line-height: 1.55;
}

.lgx-services-card__list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--accent-electric);
  font-weight: 700;
}

.lgx-services-card__price {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  margin-top: auto;
  border-top: 1px solid rgba(124, 58, 237, 0.18);
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  color: var(--text-deep);
}

.lgx-services-card__price strong {
  color: var(--accent-electric);
  font-size: 15px;
}

.lgx-services-card__cta {
  margin-top: 8px;
}

.lgx-process {
  background: rgba(255, 255, 255, 0.4);
}

.lgx-process__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
  position: relative;
}

.lgx-process__node {
  background: var(--glass-white-strong);
  border: 1px solid rgba(124, 58, 237, 0.2);
  border-radius: 16px;
  padding: 28px;
  position: relative;
  transition: all 0.3s ease;
  z-index: 1;
}

.lgx-process__node:hover {
  transform: translateY(-6px);
  border-color: var(--accent-electric);
  box-shadow: 0 16px 36px rgba(124, 58, 237, 0.18);
  z-index: 2;
}

.lgx-process__node-num {
  font-family: 'Outfit', sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--accent-electric);
  line-height: 1;
  margin-bottom: 14px;
  display: inline-block;
}

.lgx-process__node-title {
  font-family: 'Outfit', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--text-deep);
  margin-bottom: 10px;
}

.lgx-process__node-desc {
  font-size: 14px;
  color: var(--text-deep);
  opacity: 0.85;
  line-height: 1.65;
}

.lgx-advantages {
  position: relative;
}

.lgx-advantages__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 40px;
}

.lgx-advantage-card {
  background: var(--glass-white);
  border: 1px solid rgba(124, 58, 237, 0.18);
  border-radius: 14px;
  padding: 28px 24px;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.lgx-advantage-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.06), rgba(167, 139, 250, 0.06));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.lgx-advantage-card:hover {
  background: var(--glass-white-strong);
  border-color: var(--accent-electric);
  transform: scale(1.05);
  z-index: 5;
  box-shadow: 0 16px 36px rgba(124, 58, 237, 0.22);
}

.lgx-advantage-card:hover::before {
  opacity: 1;
}

.lgx-advantage-card > * {
  position: relative;
  z-index: 1;
}

.lgx-advantage-card__num {
  font-family: 'Outfit', sans-serif;
  font-size: 38px;
  font-weight: 700;
  color: var(--accent-electric);
  line-height: 1;
  margin-bottom: 16px;
}

.lgx-advantage-card__title {
  font-family: 'Outfit', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--text-deep);
  margin-bottom: 10px;
  line-height: 1.35;
}

.lgx-advantage-card__desc {
  font-size: 14px;
  color: var(--text-deep);
  opacity: 0.8;
  line-height: 1.6;
}

.lgx-bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 16px;
  margin-top: 40px;
}

.lgx-bento__item {
  background: var(--glass-white-strong);
  border: 1px solid rgba(124, 58, 237, 0.2);
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  z-index: 1;
}

.lgx-bento__item--lg {
  grid-column: span 2;
  grid-row: span 2;
}

.lgx-bento__item--med {
  grid-column: span 2;
  grid-row: span 1;
}

.lgx-bento__item--wide {
  grid-column: span 2;
  grid-row: span 1;
}

.lgx-bento__item--has-image {
  background-size: cover;
  background-position: center;
  color: #ffffff !important;
}

.lgx-bento__item--has-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(76, 29, 149, 0.85) 100%);
  z-index: 0;
}

.lgx-bento__item--has-image > * {
  position: relative;
  z-index: 1;
  color: #ffffff !important;
}

.lgx-bento__item:hover {
  transform: scale(1.02);
  z-index: 10;
  border-color: var(--accent-electric);
  box-shadow: 0 16px 36px rgba(124, 58, 237, 0.25);
}

.lgx-bento__item-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 8px;
  display: inline-block;
  padding: 4px 10px;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  backdrop-filter: blur(10px);
  color: #ffffff !important;
  width: fit-content;
}

.lgx-bento__item-title {
  font-family: 'Outfit', sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: inherit;
  line-height: 1.2;
}

.lgx-bento__item-desc {
  font-size: 13px;
  opacity: 0.9;
  margin-top: 6px;
  color: inherit;
}

.lgx-team-reveal {
  margin-top: 40px;
}

.lgx-team-reveal__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.lgx-team-reveal__row {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 24px;
  border-radius: 12px;
  background: var(--glass-white);
  border: 1px solid rgba(124, 58, 237, 0.15);
  transition: all 0.3s ease;
  cursor: pointer;
  overflow: hidden;
}

.lgx-team-reveal__row:hover {
  background: var(--glass-white-strong);
  border-color: var(--accent-electric);
  transform: translateX(8px);
  z-index: 5;
  position: relative;
}

.lgx-team-reveal__row-name {
  font-family: 'Outfit', sans-serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--text-deep);
}

.lgx-team-reveal__row-role {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--accent-electric);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lgx-team-reveal__card {
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%) translateX(20px);
  background: var(--glass-white-strong);
  backdrop-filter: blur(20px);
  border: 1px solid var(--accent-electric);
  border-radius: 14px;
  padding: 14px;
  display: flex;
  align-items: center;
  gap: 14px;
  opacity: 0;
  pointer-events: none;
  transition: all 0.35s ease;
  z-index: 10;
  min-width: 280px;
  box-shadow: 0 12px 32px rgba(124, 58, 237, 0.25);
}

.lgx-team-reveal__row:hover .lgx-team-reveal__card {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

.lgx-team-reveal__card-photo {
  width: 60px;
  height: 60px;
  border-radius: 10px;
  object-fit: cover;
  flex-shrink: 0;
}

.lgx-team-reveal__card-info {
  display: flex;
  flex-direction: column;
}

.lgx-team-reveal__card-name {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: var(--text-deep);
}

.lgx-team-reveal__card-role {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--accent-electric);
  margin-top: 2px;
}

.lgx-team-reveal__card-exp {
  font-size: 12px;
  color: var(--text-deep);
  opacity: 0.75;
  margin-top: 4px;
}

.lgx-testimonials {
  background: rgba(255, 255, 255, 0.4);
}

.lgx-coverflow {
  position: relative;
  perspective: 1200px;
  margin-top: 40px;
}

.lgx-coverflow__track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 30px 12px;
  scrollbar-width: thin;
  scrollbar-color: var(--accent-electric) transparent;
}

.lgx-coverflow__track::-webkit-scrollbar {
  height: 8px;
}

.lgx-coverflow__track::-webkit-scrollbar-thumb {
  background: var(--accent-electric);
  border-radius: 999px;
}

.lgx-coverflow__card {
  flex: 0 0 clamp(280px, 80%, 420px);
  max-width: 100%;
  scroll-snap-align: center;
  background: var(--glass-white-strong);
  border: 1px solid rgba(124, 58, 237, 0.25);
  border-radius: 18px;
  padding: 32px;
  transition: all 0.4s ease;
  position: relative;
}

.lgx-coverflow__card:hover {
  transform: scale(1.04);
  border-color: var(--accent-electric);
  box-shadow: 0 18px 40px rgba(124, 58, 237, 0.2);
}

.lgx-coverflow__stars {
  color: var(--accent-electric);
  font-size: 16px;
  margin-bottom: 14px;
  letter-spacing: 4px;
}

.lgx-coverflow__quote {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-deep);
  margin-bottom: 22px;
  font-style: italic;
}

.lgx-coverflow__client {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid rgba(124, 58, 237, 0.18);
  padding-top: 16px;
}

.lgx-coverflow__client-photo {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.lgx-coverflow__client-name {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: var(--text-deep);
}

.lgx-coverflow__client-loc {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--accent-electric);
  margin-top: 2px;
}

.lgx-faq {
  max-width: 820px;
  margin: 40px auto 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.lgx-faq__item {
  background: var(--glass-white);
  border: 1px solid rgba(124, 58, 237, 0.18);
  border-radius: 14px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.lgx-faq__item.is-open {
  background: var(--glass-white-strong);
  border-color: var(--accent-electric);
  box-shadow: 0 12px 28px rgba(124, 58, 237, 0.18);
}

.lgx-faq__btn {
  width: 100%;
  background: transparent;
  border: none;
  padding: 22px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  text-align: left;
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-deep);
}

.lgx-faq__icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(124, 58, 237, 0.12);
  color: var(--accent-electric);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  transition: all 0.3s ease;
}

.lgx-faq__item.is-open .lgx-faq__icon {
  background: var(--accent-electric);
  color: #ffffff;
  transform: rotate(45deg);
}

.lgx-faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.lgx-faq__item.is-open .lgx-faq__answer {
  max-height: 320px;
}

.lgx-faq__answer-inner {
  padding: 0 24px 22px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-deep);
  opacity: 0.85;
}

.lgx-about-split {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 48px;
  align-items: start;
}

.lgx-about-split__sticky {
  position: sticky;
  top: 100px;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--glass-white-strong);
  border: 1px solid rgba(124, 58, 237, 0.2);
  box-shadow: 0 20px 50px rgba(76, 29, 149, 0.18);
}

.lgx-about-split__sticky img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lgx-about-split__content h2 {
  margin-bottom: 22px;
}

.lgx-about-split__lead {
  font-size: 18px;
  line-height: 1.65;
  color: var(--text-deep);
  margin-bottom: 18px;
  font-weight: 500;
}

.lgx-about-split__text {
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-deep);
  opacity: 0.88;
  margin-bottom: 14px;
}

.lgx-about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid rgba(124, 58, 237, 0.18);
}

.lgx-about-stat__value {
  font-family: 'Outfit', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--accent-electric);
  line-height: 1;
}

.lgx-about-stat__label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--text-deep);
  opacity: 0.75;
  margin-top: 8px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lgx-contact {
  background: rgba(255, 255, 255, 0.45);
}

.lgx-contact__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 32px;
  margin-top: 40px;
}

.lgx-contact__form {
  background: var(--glass-white-strong);
  border: 1px solid rgba(124, 58, 237, 0.2);
  border-radius: 18px;
  padding: 36px;
}

.lgx-field {
  margin-bottom: 22px;
}

.lgx-field label {
  display: block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-deep);
  margin-bottom: 8px;
}

.lgx-field input,
.lgx-field textarea,
.lgx-field select {
  width: 100%;
  border: none;
  border-bottom: 2px solid rgba(124, 58, 237, 0.2);
  background: rgba(255, 255, 255, 0.5);
  padding: 12px 4px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  color: var(--text-deep) !important;
  transition: all 0.25s ease;
  border-radius: 6px 6px 0 0;
}

.lgx-field input::placeholder,
.lgx-field textarea::placeholder {
  color: var(--text-deep);
  opacity: 0.5;
}

.lgx-field input:focus,
.lgx-field textarea:focus,
.lgx-field select:focus {
  outline: none;
  border-bottom-color: var(--accent-electric);
  background: rgba(255, 255, 255, 0.85);
}

.lgx-field textarea {
  resize: vertical;
  min-height: 100px;
}

.lgx-field--row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.lgx-contact__info {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.lgx-contact__info-card {
  background: var(--glass-white-strong);
  border: 1px solid rgba(124, 58, 237, 0.2);
  border-radius: 16px;
  padding: 26px;
}

.lgx-contact__info-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-electric);
  margin-bottom: 10px;
}

.lgx-contact__info-value {
  font-family: 'Outfit', sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--text-deep);
  line-height: 1.3;
}

.lgx-contact__info-value a {
  color: var(--text-deep) !important;
  text-decoration: none;
}

.lgx-contact__info-sub {
  font-size: 13px;
  color: var(--text-deep);
  opacity: 0.75;
  margin-top: 6px;
  line-height: 1.5;
}

.lgx-form-success {
  display: none;
  text-align: center;
  padding: 36px 20px;
}

.lgx-form-success.is-visible {
  display: block;
}

.lgx-form-success__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--accent-electric);
  color: #ffffff !important;
  font-size: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}

.lgx-form-success__title {
  font-family: 'Outfit', sans-serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--text-deep);
  margin-bottom: 10px;
}

.lgx-form-success__text {
  font-size: 14px;
  color: var(--text-deep);
  opacity: 0.85;
  line-height: 1.6;
}

.lgx-cta-band {
  background: linear-gradient(135deg, var(--accent-electric) 0%, var(--accent-deep) 100%);
  border-radius: 24px;
  padding: 56px 40px;
  text-align: center;
  color: #ffffff !important;
  position: relative;
  overflow: hidden;
  margin: 40px 0;
  box-shadow: 0 20px 50px rgba(124, 58, 237, 0.3);
}

.lgx-cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.18), transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.1), transparent 50%);
  pointer-events: none;
}

.lgx-cta-band > * {
  position: relative;
  z-index: 1;
}

.lgx-cta-band h2 {
  color: #ffffff !important;
  margin-bottom: 14px;
}

.lgx-cta-band p {
  color: rgba(255, 255, 255, 0.9) !important;
  margin-bottom: 28px;
  font-size: 16px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

.lgx-cta-band__actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.lgx-cta-band .lgx-btn--primary {
  background: #ffffff;
  color: var(--accent-electric) !important;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

.lgx-cta-band .lgx-btn--primary:hover {
  background: var(--decor-pale);
  color: var(--accent-deep) !important;
}

.lgx-cta-band .lgx-btn--secondary {
  background: transparent;
  color: #ffffff !important;
  border-color: rgba(255, 255, 255, 0.6);
}

.lgx-cta-band .lgx-btn--secondary:hover {
  background: #ffffff;
  color: var(--accent-electric) !important;
  border-color: #ffffff;
}

.lgx-page-header {
  padding: 80px 0 40px;
  text-align: center;
  position: relative;
}

.lgx-page-header__bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(124, 58, 237, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(124, 58, 237, 0.05) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
  z-index: 0;
}

.lgx-page-header > * {
  position: relative;
  z-index: 1;
}

.lgx-page-header h1 {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  margin-bottom: 16px;
}

.lgx-page-header p {
  font-size: 17px;
  max-width: 640px;
  margin: 0 auto;
  color: var(--text-deep);
  opacity: 0.85;
}

.lgx-breadcrumb {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--accent-electric);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  letter-spacing: 0.05em;
}

.lgx-breadcrumb a {
  color: var(--accent-electric) !important;
}

.lgx-breadcrumb span {
  opacity: 0.5;
}

.lgx-service-detail {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  margin-top: 40px;
}

.lgx-service-detail__hero {
  background: var(--glass-white-strong);
  border: 1px solid rgba(124, 58, 237, 0.2);
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 32px;
}

.lgx-service-detail__hero img {
  width: 100%;
  height: 360px;
  object-fit: cover;
}

.lgx-service-detail__content h2 {
  margin-top: 32px;
  margin-bottom: 14px;
}

.lgx-service-detail__content h2:first-child {
  margin-top: 0;
}

.lgx-service-detail__content p {
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 14px;
}

.lgx-service-detail__content ul {
  list-style: none;
  margin: 18px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.lgx-service-detail__content ul li {
  position: relative;
  padding-left: 28px;
  color: var(--text-deep);
  line-height: 1.65;
}

.lgx-service-detail__content ul li::before {
  content: "→";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent-electric);
  font-weight: 700;
}

.lgx-service-detail__sidebar {
  position: sticky;
  top: 100px;
  align-self: start;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.lgx-price-card {
  background: var(--glass-white-strong);
  border: 1px solid rgba(124, 58, 237, 0.25);
  border-radius: 18px;
  padding: 30px;
}

.lgx-price-card__label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-electric);
  margin-bottom: 8px;
}

.lgx-price-card__value {
  font-family: 'Outfit', sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--text-deep);
  letter-spacing: -0.02em;
}

.lgx-price-card__value small {
  font-size: 14px;
  opacity: 0.7;
  margin-left: 6px;
  font-weight: 400;
}

.lgx-price-card__note {
  font-size: 13px;
  color: var(--text-deep);
  opacity: 0.8;
  margin-top: 12px;
  margin-bottom: 22px;
  line-height: 1.5;
}

.lgx-related {
  background: var(--glass-white);
  border: 1px solid rgba(124, 58, 237, 0.18);
  border-radius: 18px;
  padding: 28px;
}

.lgx-related__title {
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-deep);
  margin-bottom: 16px;
}

.lgx-related__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.lgx-related__list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 10px;
  border: 1px solid var(--border-lavender);
  color: var(--text-deep) !important;
  font-size: 14px;
  transition: all 0.25s ease;
}

.lgx-related__list a:hover {
  background: var(--accent-electric);
  color: #ffffff !important;
  border-color: var(--accent-electric);
}

.lgx-legal {
  max-width: 820px;
  margin: 0 auto;
  background: var(--glass-white);
  border: 1px solid rgba(124, 58, 237, 0.18);
  border-radius: 18px;
  padding: 48px;
}

.lgx-legal h2 {
  margin-top: 28px;
  margin-bottom: 12px;
  font-size: 1.5rem;
}

.lgx-legal h2:first-child {
  margin-top: 0;
}

.lgx-legal p, .lgx-legal li {
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-deep);
  margin-bottom: 12px;
}

.lgx-legal ul {
  padding-left: 22px;
}

.lgx-thanks {
  text-align: center;
  padding: 80px 24px;
}

.lgx-thanks__icon {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: var(--accent-electric);
  color: #ffffff !important;
  font-size: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  box-shadow: 0 12px 30px rgba(124, 58, 237, 0.35);
}

.lgx-thanks h1 {
  margin-bottom: 16px;
}

.lgx-thanks p {
  font-size: 17px;
  max-width: 540px;
  margin: 0 auto 32px;
  color: var(--text-deep);
  opacity: 0.85;
}

.lgx-thanks__actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.lgx-site-footer {
  background: linear-gradient(135deg, var(--accent-electric) 0%, var(--accent-deep) 100%);
  border-radius: 24px 24px 0 0;
  color: #ffffff !important;
  margin-top: 80px;
  position: relative;
  overflow: hidden;
}

.lgx-site-footer::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -10%;
  width: 40%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08), transparent 60%);
  pointer-events: none;
}

.lgx-site-footer__inner {
  position: relative;
  z-index: 1;
  padding: 56px 32px 28px;
  max-width: 1280px;
  margin: 0 auto;
}

.lgx-site-footer__top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 36px;
  margin-bottom: 36px;
}

.lgx-footer-brand__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.lgx-footer-brand__mark {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.18);
  color: #ffffff !important;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 18px;
}

.lgx-footer-brand__name {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #ffffff !important;
}

.lgx-footer-brand__domain {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.7);
}

.lgx-footer-brand__desc {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  max-width: 360px;
}

.lgx-footer-col__title {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 16px;
}

.lgx-footer-col__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.lgx-footer-col__list a {
  color: #ffffff !important;
  font-size: 14px;
  opacity: 0.9;
  transition: opacity 0.2s ease;
}

.lgx-footer-col__list a:hover {
  opacity: 1;
  text-decoration: underline;
}

.lgx-footer-col__contact {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
}

.lgx-footer-col__contact a {
  color: #ffffff !important;
}

.lgx-footer-col__contact address {
  font-style: normal;
  margin-top: 8px;
  line-height: 1.6;
}

.lgx-site-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  padding-top: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.lgx-site-footer__copyright {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
  font-family: 'JetBrains Mono', monospace;
}

.lgx-site-footer__legal {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.lgx-site-footer__legal a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8) !important;
}

.lgx-site-footer__legal a:hover {
  color: #ffffff !important;
  text-decoration: underline;
}

.lgx-cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  right: auto;
  z-index: 9000;
  max-width: 440px;
  background: var(--glass-white-strong);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(124, 58, 237, 0.25);
  border-radius: 16px;
  padding: 22px;
  box-shadow: 0 16px 40px rgba(76, 29, 149, 0.25);
  color: var(--text-deep);
  display: block;
}

.lgx-cookie-banner.is-hidden {
  display: none !important;
}

.lgx-cookie-banner__title {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: var(--text-deep);
  margin-bottom: 8px;
}

.lgx-cookie-banner__text {
  font-size: 13px;
  line-height: 1.55;
  color: var(--text-deep);
  opacity: 0.85;
  margin-bottom: 14px;
}

.lgx-cookie-banner__text a {
  color: var(--accent-electric) !important;
  text-decoration: underline;
}

.lgx-cookie-banner__actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.lgx-cookie-banner__btn {
  flex: 1;
  min-width: 100px;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all 0.25s ease;
  font-family: 'DM Sans', sans-serif;
  text-align: center;
}

.lgx-cookie-banner__btn--accept {
  background: var(--accent-electric);
  color: #ffffff !important;
}

.lgx-cookie-banner__btn--accept:hover {
  background: var(--accent-deep);
}

.lgx-cookie-banner__btn--decline {
  background: transparent;
  color: var(--text-deep) !important;
  border-color: var(--border-lavender);
}

.lgx-cookie-banner__btn--decline:hover {
  background: var(--decor-pale);
}

.lgx-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.lgx-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.lgx-magnetic {
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
  will-change: transform;
}

@media (max-width: 1024px) {
  .lgx-hero__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .lgx-hero__visual {
    max-width: 480px;
    margin: 0 auto;
    width: 100%;
  }
  .lgx-process__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .lgx-advantages__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .lgx-bento {
    grid-template-columns: repeat(2, 1fr);
  }
  .lgx-bento__item--lg {
    grid-column: span 2;
  }
  .lgx-bento__item--med, .lgx-bento__item--wide {
    grid-column: span 2;
  }
  .lgx-about-split {
    grid-template-columns: 1fr;
  }
  .lgx-about-split__sticky {
    position: relative;
    top: auto;
    aspect-ratio: 16/10;
    max-height: 380px;
  }
  .lgx-contact__grid {
    grid-template-columns: 1fr;
  }
  .lgx-service-detail {
    grid-template-columns: 1fr;
  }
  .lgx-service-detail__sidebar {
    position: relative;
    top: auto;
  }
  .lgx-site-footer__top {
    grid-template-columns: 1fr 1fr;
  }
  .lgx-services-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .lgx-nav {
    display: none;
  }
  .lgx-burger {
    display: flex;
  }
  .lgx-hero {
    min-height: auto;
    padding: 60px 0 40px;
  }
  .lgx-hero__title {
    font-size: clamp(2rem, 7vw, 2.8rem);
  }
  .lgx-hero__actions {
    flex-direction: column;
    align-items: stretch;
  }
  .lgx-hero__actions .lgx-btn {
    width: 100%;
  }
  .lgx-hero__stats {
    gap: 20px;
  }
  .lgx-hero__stat-value {
    font-size: 26px;
  }
  .lgx-process__grid {
    grid-template-columns: 1fr;
  }
  .lgx-advantages__grid {
    grid-template-columns: 1fr;
  }
  .lgx-bento {
    grid-template-columns: 1fr;
    grid-auto-rows: 180px;
  }
  .lgx-bento__item--lg, .lgx-bento__item--med, .lgx-bento__item--wide {
    grid-column: span 1;
    grid-row: span 1;
  }
  .lgx-service-stack-card {
    grid-template-columns: 1fr;
    text-align: left;
    padding: 26px;
  }
  .lgx-service-stack-card__num {
    font-size: 40px;
  }
  .lgx-about-stats {
    grid-template-columns: 1fr 1fr;
  }
  .lgx-field--row {
    grid-template-columns: 1fr;
  }
  .lgx-cta-band {
    padding: 40px 24px;
  }
  .lgx-team-reveal__card {
    display: none;
  }
  .lgx-team-reveal__row {
    padding: 18px;
  }
  .lgx-team-reveal__row-name {
    font-size: 18px;
  }
  .lgx-legal {
    padding: 28px 22px;
  }
  .lgx-site-footer__top {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .lgx-site-footer__bottom {
    flex-direction: column;
    text-align: center;
  }
  .lgx-site-footer__legal {
    justify-content: center;
  }
  .lgx-cookie-banner {
    left: 12px;
    right: 12px;
    bottom: 12px;
    max-width: none;
  }
  .lgx-coverflow__card {
    flex: 0 0 86%;
    padding: 26px;
  }
  .lgx-services-grid {
    grid-template-columns: 1fr;
  }
  .lgx-services-card {
    padding: 26px;
  }
}

@media (max-width: 480px) {
  .lgx-section {
    padding: 50px 0;
  }
  .lgx-contact__form {
    padding: 24px 20px;
  }
  .lgx-problem-solution__grid {
    grid-template-columns: 1fr;
  }
  .lgx-problem-solution__col {
    padding: 24px;
  }
  .lgx-hero__chip {
    font-size: 10px;
    padding: 8px 12px;
  }
  .lgx-hero__chip--top {
    top: 16px;
    left: 16px;
  }
  .lgx-hero__chip--bottom {
    bottom: 16px;
    right: 16px;
  }
}
