:root {

  --paper: #F4EFE7;
  --paper-2: #EBE5D7;
  --paper-3: #E0D8C5;
  --surface: #FFFFFF;
  --surface-2: #FAF6EC;

  --dark: #07080D;
  --dark-2: #0D0F18;
  --dark-3: #12141F;
  --dark-card: #161825;
  --dark-line: rgba(255, 255, 255, 0.07);
  --dark-line-s: rgba(255, 255, 255, 0.14);

  --ink: #0C0E10;
  --ink-2: #1F2125;
  --ink-soft: #4A4D54;
  --muted: #807F76;
  --line: rgba(12, 14, 16, 0.08);
  --line-strong: rgba(12, 14, 16, 0.18);

  --pri: #4D79FF;
  --pri-glow: rgba(77, 121, 255, 0.35);
  --vio: #8B6FFF;
  --vio-glow: rgba(139, 111, 255, 0.3);
  --orange: #FF6B35;
  --pink: #FF4FA0;
  --lime: #C6F050;
  --cyan: #00E5FF;
  --cyan-glow: rgba(0, 229, 255, 0.25);
  --neon-g: #39FF14;

  --f-sans: 'Inter', -apple-system, system-ui, sans-serif;
  --f-mono: 'JetBrains Mono', ui-monospace, monospace;
  --f-serif: 'Instrument Serif', Georgia, serif;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-io: cubic-bezier(0.65, 0, 0.35, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

::selection {
  background: var(--ink);
  color: var(--paper);
}

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  font-family: var(--f-sans);
  background: var(--paper);
  color: var(--ink);
  font-size: 15px;
  line-height: 1.55;
  overflow-x: hidden;
  letter-spacing: -0.01em;
  font-feature-settings: "ss01", "cv11";
}

a {
  color: inherit;
  text-decoration: none;
}

img,
svg {
  display: block;
  max-width: 100%;
}

button,
input,
select,
textarea {
  font-family: inherit;
  color: inherit;
  font-size: inherit;
}

button {
  cursor: pointer;
  border: none;
  background: none;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 200;
  opacity: 0.04;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted);
  font-weight: 500;
}

.eyebrow::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--pri);
}

.nav {
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  width: calc(100% - 24px);
  max-width: 1240px;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 7px 7px 7px 16px;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(32px) saturate(180%);
  -webkit-backdrop-filter: blur(32px) saturate(180%);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 100px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06), 0 0 0 1px rgba(255, 255, 255, 0.4) inset;
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  height: 36px;
  overflow: hidden;
}

.logo-img {
  height: 36px;
  width: auto;
  max-width: 110px;
  object-fit: contain;
  object-position: left center;
  display: block;
  transition: opacity 0.3s;
}

.logo:hover .logo-img {
  opacity: 0.75;
}

.nav-links {
  display: flex;
  gap: 2px;
  list-style: none;
  flex: 1;
  justify-content: center;
}

.nav-links a {
  padding: 8px 14px;
  font-size: 13px;
  color: var(--ink-soft);
  border-radius: 100px;
  transition: color 0.2s, background 0.2s;
  font-weight: 500;
  white-space: nowrap;
}

.nav-links a:hover {
  color: var(--ink);
  background: rgba(0, 0, 0, 0.04);
}

.nav-links a.active {
  color: var(--ink);
  background: rgba(0, 0, 0, 0.06);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}

.lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 5px 6px;
  background: rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 100px;
  cursor: pointer;
  font-size: 11px;
  font-weight: 700;
  font-family: var(--f-mono);
  transition: background 0.2s, border-color 0.2s;
  white-space: nowrap;
  user-select: none;
}

.lang-toggle:hover {
  background: rgba(0, 0, 0, 0.08);
  border-color: rgba(0, 0, 0, 0.1);
}

.lang-option {
  padding: 4px 9px;
  border-radius: 100px;
  transition: background 0.2s, color 0.2s;
  color: var(--ink-soft);
  letter-spacing: 0.04em;
  line-height: 1;
}

.lang-option.active {
  background: var(--pri);
  color: #fff;
}

.lang-separator {
  color: rgba(0, 0, 0, 0.2);
  font-size: 9px;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 16px;
  background: var(--ink);
  color: #fff;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  transition: transform 0.3s var(--ease), box-shadow 0.3s, opacity 0.2s;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.2);
}

.nav-cta .arrow {
  transition: transform 0.3s var(--ease);
}

.nav-cta:hover .arrow {
  transform: translate(2px, -2px);
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  background: rgba(0, 0, 0, 0.04);
  flex-shrink: 0;
  transition: background 0.2s;
}

.mobile-toggle:hover {
  background: rgba(0, 0, 0, 0.08);
}

.mobile-toggle span {
  width: 18px;
  height: 1.5px;
  background: rgba(255, 255, 255, 0.85);
  border-radius: 2px;
  transition: transform 0.35s var(--ease), opacity 0.25s;
}

.mobile-toggle.open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.mobile-toggle.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.mobile-toggle.open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

@media (max-width: 1100px) {
  .nav-cta-text {
    display: none;
  }

  .nav-cta {
    padding: 9px 12px;
  }
}

@media (max-width: 880px) {
  .nav {
    padding: 7px 7px 7px 14px;
    gap: 8px;
  }

  .nav-links {
    display: none;
  }

  .nav-cta {
    display: none;
  }

  .mobile-toggle {
    display: flex;
  }

  .lang-toggle {
    margin-left: auto;
  }
}

@media (max-width: 480px) {
  .nav {
    top: 10px;
    width: calc(100% - 16px);
    padding: 6px 6px 6px 12px;
  }

  .logo-img {
    max-width: 90px;
    height: 30px;
  }
}

.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--ink);
  color: var(--paper);
  z-index: 99;
  display: none;
  flex-direction: column;
  padding: 100px 32px 40px;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mobile-menu a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 8px;
  font-size: 24px;
  font-weight: 600;
  color: var(--paper);
  border-bottom: 1px solid rgba(244, 239, 231, 0.1);
  letter-spacing: -0.025em;
  transition: padding-left 0.3s, color 0.3s;
}

.mobile-menu a:hover,
.mobile-menu a.active {
  padding-left: 12px;
  color: var(--lime);
}

.mobile-menu a .num {
  font-family: var(--f-mono);
  font-size: 12px;
  color: rgba(244, 239, 231, 0.4);
  font-weight: 500;
}

.mobile-menu .nav-cta {
  margin-top: 28px;
  justify-content: center;
  padding: 14px;
  font-size: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
  border: 1px solid transparent;
  white-space: nowrap;
  line-height: 1;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.btn .arrow {
  transition: transform 0.3s var(--ease);
  display: inline-block;
}

.btn-primary {
  background: var(--ink);
  color: var(--paper);
  box-shadow: 0 4px 14px rgba(12, 14, 16, 0.15);
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--pri) 0%, var(--vio) 100%);
  transform: translateY(101%);
  transition: transform 0.4s var(--ease);
  z-index: -1;
}

.btn-primary:hover::before {
  transform: translateY(0);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(43, 79, 255, 0.32);
}

.btn-primary:hover .arrow {
  transform: translate(3px, -3px);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
  color: var(--ink);
  border-color: var(--line);
}

.btn-ghost:hover {
  border-color: var(--ink);
  background: var(--surface);
  transform: translateY(-2px);
}

.hero {
  position: relative;
  padding: 120px 0 80px;
  overflow: hidden;
  background: radial-gradient(circle at 15% 25%, rgba(77, 121, 255, 0.05) 0%, transparent 45%),
    radial-gradient(circle at 85% 75%, rgba(139, 111, 255, 0.04) 0%, transparent 45%),
    var(--paper);
  min-height: 90vh;
  display: flex;
  align-items: center;
}

#threejs-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.45;
}

.hero-mesh {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.hero-mesh::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(rgba(12, 14, 16, 0.035) 1px, transparent 1px),
    radial-gradient(rgba(12, 14, 16, 0.025) 1.5px, transparent 1.5px);
  background-size: 32px 32px, 64px 64px;
  background-position: 0 0, 16px 16px;
  z-index: 1;
  pointer-events: none;
  opacity: 0.85;
}

.mb {
  position: absolute;
  border-radius: 50%;
  filter: blur(110px);
}

.mb1 {
  width: 50vw;
  height: 50vw;
  top: -15%;
  left: -8%;
  background: radial-gradient(circle, rgba(43, 79, 255, 0.28) 0%, transparent 60%);
  animation: floatA 22s ease-in-out infinite;
}

.mb2 {
  width: 45vw;
  height: 45vw;
  top: 10%;
  right: -12%;
  background: radial-gradient(circle, rgba(123, 91, 255, 0.24) 0%, transparent 60%);
  animation: floatB 26s ease-in-out infinite;
}

.mb3 {
  width: 40vw;
  height: 40vw;
  bottom: -25%;
  left: 30%;
  background: radial-gradient(circle, rgba(255, 107, 53, 0.18) 0%, transparent 60%);
  animation: floatA 30s ease-in-out infinite reverse;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 2;
}

@media (max-width: 980px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.hero-text {
  display: flex;
  flex-direction: column;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 14px 7px 11px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--line);
  border-radius: 100px;
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--ink-2);
  font-weight: 500;
  margin-bottom: 28px;
  align-self: flex-start;
  opacity: 0;
  animation: up 0.8s var(--ease) 0.1s forwards;
}

.hero-badge .live-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #22C55E;
  animation: pulseLive 2s ease-in-out infinite;
}

.hero-title {
  font-size: clamp(42px, 5.5vw, 76px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 24px;
  max-width: 14ch;
}

.hero-title .rl {
  display: block;
  overflow: hidden;
  padding-bottom: 0.04em;
}

.hero-title .rl>span {
  display: inline-block;
  transform: translateY(110%);
  animation: lineUp 1.1s var(--ease) forwards;
}

.hero-title .rl:nth-child(1)>span {
  animation-delay: 0.25s;
}

.hero-title .rl:nth-child(2)>span {
  animation-delay: 0.35s;
}

.hero-title .rl:nth-child(3)>span {
  animation-delay: 0.45s;
}

.hero-title em {
  font-family: var(--f-serif);
  font-style: italic;
  font-weight: 400;
  background: linear-gradient(135deg, var(--pri) 0%, var(--vio) 50%, var(--orange) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  background-size: 200% 200%;
  animation: gradShift 8s ease infinite;
  text-shadow: 0 0 35px rgba(123, 91, 255, 0.18);
}

@keyframes gradShift {

  0%,
  100% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }
}

.hero-sub {
  font-size: 17px;
  color: var(--ink-soft);
  max-width: 480px;
  margin-bottom: 32px;
  line-height: 1.55;
  opacity: 0;
  animation: up 0.8s var(--ease) 0.85s forwards;
}

.hero-cta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  opacity: 0;
  animation: up 0.8s var(--ease) 1s forwards;
}

.hero-scene {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  max-width: 540px;
  margin: 0 auto;
  opacity: 0;
  animation: up 1s var(--ease) 0.5s forwards;
}

.scene-orbit-outer,
.scene-orbit-mid,
.scene-orbit-inner {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  border: 1px dashed var(--line-strong) !important;
  transform: translate(-50%, -50%);
}

.scene-orbit-outer {
  width: 100%;
  height: 100%;
  animation: orbitSpin 60s linear infinite;
}

.scene-orbit-mid {
  width: 70%;
  height: 70%;
  animation: orbitSpin 45s linear infinite reverse;
}

.scene-orbit-inner {
  width: 42%;
  height: 42%;
  animation: orbitSpin 30s linear infinite;
}

@keyframes orbitSpin {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.scene-core {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 28%;
  height: 28%;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pri) 0%, var(--vio) 50%, var(--orange) 100%);
  background-size: 200% 200%;
  animation: gradShift 6s ease infinite, coreFloat 4s ease-in-out infinite;
  transform: translate(-50%, -50%);
  box-shadow:
    0 0 80px rgba(43, 79, 255, 0.35),
    0 20px 60px -10px rgba(43, 79, 255, 0.4),
    inset 0 4px 12px rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-family: var(--f-serif);
  font-style: italic;
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 400;
  letter-spacing: -0.02em;
}

@keyframes coreFloat {

  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
  }

  50% {
    transform: translate(-50%, -54%) scale(1.04);
  }
}

.scene-core::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pri), var(--vio), var(--orange));
  filter: blur(10px);
  opacity: 0.45;
  z-index: -1;
  animation: gradShift 6s ease infinite, corePulse 3.5s cubic-bezier(0.16, 1, 0.3, 1) infinite;
}

.scene-core::after {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pri), var(--vio), var(--orange));
  filter: blur(16px);
  opacity: 0.3;
  z-index: -2;
  animation: gradShift 6s ease infinite, corePulse 3.5s cubic-bezier(0.16, 1, 0.3, 1) infinite 1.75s;
}

@keyframes corePulse {
  0% {
    transform: scale(0.95);
    opacity: 0.6;
  }

  100% {
    transform: scale(2.6);
    opacity: 0;
  }
}

.scene-tag {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.85) !important;
  backdrop-filter: blur(16px) !important;
  -webkit-backdrop-filter: blur(16px) !important;
  border: 1px solid rgba(255, 255, 255, 0.5) !important;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  color: var(--ink) !important;
  white-space: nowrap;
  box-shadow: 0 8px 24px rgba(12, 14, 16, 0.06) !important;
  z-index: 2;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s, background-color 0.3s;
}

.scene-tag:hover {
  transform: translateY(-6px) scale(1.04) !important;
  background: rgba(255, 255, 255, 0.96);
  cursor: pointer;
}

.scene-tag.t1:hover {
  border-color: var(--pri) !important;
  box-shadow: 0 16px 36px rgba(77, 121, 255, 0.22) !important;
}

.scene-tag.t2:hover {
  border-color: var(--orange) !important;
  box-shadow: 0 16px 36px rgba(255, 107, 53, 0.22) !important;
}

.scene-tag.t3:hover {
  border-color: var(--vio) !important;
  box-shadow: 0 16px 36px rgba(139, 111, 255, 0.22) !important;
}

.scene-tag.t4:hover {
  border-color: var(--lime) !important;
  box-shadow: 0 16px 36px rgba(198, 240, 80, 0.22) !important;
}

.scene-tag.t5:hover {
  border-color: var(--pink) !important;
  box-shadow: 0 16px 36px rgba(255, 79, 160, 0.22) !important;
}

.scene-tag .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}

.scene-tag .ico {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.scene-tag.t1 {
  top: 8%;
  left: 6%;
  animation: floatTag1 5s ease-in-out infinite;
}

.scene-tag.t2 {
  top: 12%;
  right: 4%;
  animation: floatTag2 6s ease-in-out infinite;
}

.scene-tag.t3 {
  bottom: 22%;
  left: -2%;
  animation: floatTag3 5.5s ease-in-out infinite;
}

.scene-tag.t4 {
  bottom: 8%;
  right: 8%;
  animation: floatTag4 6.5s ease-in-out infinite;
}

.scene-tag.t1 .dot {
  background: var(--pri);
}

.scene-tag.t2 .dot {
  background: var(--orange);
}

.scene-tag.t3 .dot {
  background: var(--vio);
}

.scene-tag.t4 .dot {
  background: var(--lime);
}

@keyframes floatTag1 {

  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }

  50% {
    transform: translate3d(6px, -12px, 8px) rotate(1deg);
  }
}

@keyframes floatTag2 {

  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }

  50% {
    transform: translate3d(-8px, -8px, 12px) rotate(-1deg);
  }
}

@keyframes floatTag3 {

  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }

  50% {
    transform: translate3d(8px, 8px, -10px) rotate(0.8deg);
  }
}

@keyframes floatTag4 {

  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }

  50% {
    transform: translate3d(-6px, 10px, 6px) rotate(-0.8deg);
  }
}

.scene-dot {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  margin: -7px;
  box-shadow: 0 0 16px currentColor;
}

.scene-dot.d1 {
  color: var(--pri);
  background: var(--pri);
  animation: dotOrbit1 18s linear infinite;
}

.scene-dot.d2 {
  color: var(--orange);
  background: var(--orange);
  animation: dotOrbit2 14s linear infinite reverse;
}

.scene-dot.d3 {
  color: var(--lime);
  background: var(--lime);
  width: 10px;
  height: 10px;
  margin: -5px;
  animation: dotOrbit3 22s linear infinite;
}

@keyframes dotOrbit1 {
  from {
    transform: rotate(0deg) translateX(48%) rotate(0deg);
  }

  to {
    transform: rotate(360deg) translateX(48%) rotate(-360deg);
  }
}

@keyframes dotOrbit2 {
  from {
    transform: rotate(60deg) translateX(34%) rotate(-60deg);
  }

  to {
    transform: rotate(420deg) translateX(34%) rotate(-420deg);
  }
}

@keyframes dotOrbit3 {
  from {
    transform: rotate(180deg) translateX(20%) rotate(-180deg);
  }

  to {
    transform: rotate(540deg) translateX(20%) rotate(-540deg);
  }
}

@media (max-width: 980px) {
  .hero-scene {
    max-width: 440px;
  }

  .scene-tag {
    padding: 8px 12px;
    font-size: 11px;
  }
}

@media (max-width: 560px) {
  .hero-scene {
    max-width: 320px;
  }

  .scene-core {
    font-size: 18px;
  }

  .scene-tag {
    padding: 7px 11px;
    font-size: 10px;
  }

  .scene-tag .ico {
    width: 14px;
    height: 14px;
  }
}

.strip {
  padding: 24px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--surface);
  overflow: hidden;
}

.strip-wrap {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
}

.strip-track {
  display: flex;
  gap: 48px;
  align-items: center;
  animation: slide 45s linear infinite;
  white-space: nowrap;
  width: max-content;
}

.strip-item {
  font-family: var(--f-serif);
  font-size: 26px;
  font-style: italic;
  font-weight: 400;
  color: var(--ink);
  letter-spacing: -0.025em;
}

.strip-sep {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}

.strip-track>.strip-sep:nth-child(4n+2) {
  background: var(--pri);
}

.strip-track>.strip-sep:nth-child(4n+4) {
  background: var(--orange);
}

.strip-track>.strip-sep:nth-child(4n+6) {
  background: var(--vio);
}

.strip-track>.strip-sep:nth-child(4n+8) {
  background: var(--lime);
}

@keyframes slide {
  to {
    transform: translateX(-50%);
  }
}

.section {
  padding: 120px 0;
  position: relative;
}

.section.alt {
  background: var(--paper-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-head {
  text-align: center;
  margin-bottom: 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.section-title {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  max-width: 18ch;
}

.section-title em {
  font-family: var(--f-serif);
  font-style: italic;
  font-weight: 400;
  background: linear-gradient(135deg, var(--pri) 0%, var(--vio) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section-sub {
  font-size: 16px;
  color: var(--ink-soft);
  max-width: 560px;
  line-height: 1.55;
}

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

@media (max-width: 880px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

.svc {
  position: relative;
  border-radius: 28px;
  padding: 36px 36px 32px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.5s var(--ease), box-shadow 0.5s;
  display: flex;
  flex-direction: column;
  min-height: 380px;
  isolation: isolate;
}

.svc:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px -20px rgba(12, 14, 16, 0.25);
}

.svc.s1 {
  background: linear-gradient(160deg, #3A5FFF 0%, #2847D9 100%);
  color: var(--paper);
}

.svc.s2 {
  background: linear-gradient(160deg, #FF7A48 0%, #E85D2A 100%);
  color: var(--paper);
}

.svc.s3 {
  background: linear-gradient(160deg, #8B6FFF 0%, #6E4FE0 100%);
  color: var(--paper);
}

.svc.s4 {
  background: linear-gradient(160deg, #1A1C20 0%, #2A2D35 100%);
  color: var(--paper);
}

.svc-halo {
  position: absolute;
  width: 130%;
  height: 130%;
  top: -15%;
  right: -40%;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
  z-index: -1;
  transition: transform 0.8s var(--ease), opacity 0.6s;
}

.svc.s1 .svc-halo {
  background: var(--pri-light);
}

.svc.s2 .svc-halo {
  background: #FFB084;
}

.svc.s3 .svc-halo {
  background: #B89BFF;
}

.svc.s4 .svc-halo {
  background: var(--lime);
}

.svc:hover .svc-halo {
  transform: scale(1.15);
  opacity: 0.55;
}

.svc-num {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.7;
  margin-bottom: 24px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.svc-num::before {
  content: '';
  width: 22px;
  height: 1px;
  background: currentColor;
  opacity: 0.5;
}

.svc-title {
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.05;
  margin-bottom: 16px;
}

.svc-title em {
  font-family: var(--f-serif);
  font-style: italic;
  font-weight: 400;
  opacity: 0.95;
}

.svc-desc {
  font-size: 15px;
  line-height: 1.6;
  opacity: 0.85;
  max-width: 460px;
  margin-bottom: auto;
}

.svc-art {
  margin-top: 32px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
}

.svc-illo {
  width: 130px;
  height: 130px;
  flex-shrink: 0;
  transition: transform 0.6s var(--ease);
}

.svc:hover .svc-illo {
  transform: scale(1.06) rotate(-4deg);
}

.svc-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  align-self: flex-end;
  transition: gap 0.3s, background 0.3s, border-color 0.3s;
  color: white;
}

.svc.s4 .svc-cta {
  background: rgba(244, 239, 231, 0.1);
  border-color: rgba(244, 239, 231, 0.2);
}

.svc:hover .svc-cta {
  gap: 12px;
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.4);
}

.svc-cta .arrow {
  transition: transform 0.3s var(--ease);
}

.svc:hover .svc-cta .arrow {
  transform: translate(3px, -3px);
}

@media (max-width: 700px) {
  .svc {
    padding: 28px;
    min-height: 340px;
  }

  .svc-illo {
    width: 100px;
    height: 100px;
  }
}

.illo-spin {
  animation: illoSpin 24s linear infinite;
  transform-origin: center;
}

@keyframes illoSpin {
  to {
    transform: rotate(360deg);
  }
}

.illo-pulse-soft {
  animation: illoPulseSoft 4s ease-in-out infinite;
  transform-origin: center;
}

@keyframes illoPulseSoft {

  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.06);
    opacity: 0.92;
  }
}

.illo-float-y {
  animation: illoFloatY 5s ease-in-out infinite;
}

@keyframes illoFloatY {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-5px);
  }
}

.about {
  padding: 0;
  position: relative;
  overflow: hidden;
  background: #FAFAF9;
  color: var(--ink);
}

.about::before {
  content: '';
  position: absolute;
  inset: -50%;
  background:
    radial-gradient(ellipse 100% 50% at 50% 0%, rgba(43, 79, 255, 0.08), transparent 50%),
    radial-gradient(ellipse 80% 60% at 20% 50%, rgba(255, 107, 53, 0.06), transparent 60%),
    radial-gradient(ellipse 80% 60% at 80% 50%, rgba(123, 91, 255, 0.06), transparent 60%);
  animation: atmosphereShift 20s ease-in-out infinite alternate;
  pointer-events: none;
}

@keyframes atmosphereShift {
  0% {
    transform: translate(0, 0) scale(1);
    opacity: 0.8;
  }

  100% {
    transform: translate(2%, -2%) scale(1.05);
    opacity: 1;
  }
}

.about::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(1px 1px at 15% 25%, rgba(43, 79, 255, 0.15), transparent),
    radial-gradient(1px 1px at 65% 75%, rgba(255, 107, 53, 0.12), transparent),
    radial-gradient(1px 1px at 45% 15%, rgba(123, 91, 255, 0.12), transparent),
    radial-gradient(1px 1px at 85% 40%, rgba(43, 79, 255, 0.15), transparent),
    radial-gradient(1px 1px at 25% 85%, rgba(255, 107, 53, 0.12), transparent),
    radial-gradient(1px 1px at 75% 55%, rgba(123, 91, 255, 0.12), transparent);
  background-size: 400% 400%;
  animation: starsFloat 180s linear infinite;
  opacity: 0.4;
  pointer-events: none;
}

@keyframes starsFloat {
  0% {
    background-position: 0% 0%;
    opacity: 0.3;
  }

  50% {
    background-position: 100% 100%;
    opacity: 0.5;
  }

  100% {
    background-position: 0% 0%;
    opacity: 0.3;
  }
}

.about-container {
  position: relative;
  z-index: 1;
  max-width: 1000px;
  margin: 0 auto;
  padding: 160px 40px;
}

.about-opening {
  text-align: center;
  margin-bottom: 120px;
}

.about-opening .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 24px;
  background: rgba(255, 255, 255, 0.4);
  border: 1px solid rgba(12, 14, 16, 0.08);
  border-radius: 100px;
  font-family: var(--f-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--muted);
  font-weight: 500;
  margin-bottom: 40px;
  backdrop-filter: blur(10px);
  transition: all 0.6s var(--ease);
}

.about-opening .eyebrow::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, #FF6B35, #FF4FA0);
  box-shadow: 0 0 20px rgba(255, 107, 53, 0.6);
  animation: pulseLive 3s ease-in-out infinite;
}

.about-hook {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.15;
  margin-bottom: 36px;
  color: var(--ink);
}

.about-hook .moment {
  display: block;
  font-family: var(--f-serif);
  font-style: italic;
  font-weight: 400;
  background: linear-gradient(135deg, #FF6B35 0%, #FF4FA0 60%, #7B5BFF 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  background-size: 200% 200%;
  animation: shimmer 6s ease infinite;
  margin-top: 16px;
}

@keyframes shimmer {

  0%,
  100% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }
}

.about-intro {
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.8;
  color: var(--ink-soft);
  max-width: 720px;
  margin: 0 auto 60px;
}

.about-journey {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 120px;
}

.journey-card {
  padding: 36px 28px;
  background: rgba(255, 255, 255, 0.4);
  border: 1px solid rgba(12, 14, 16, 0.08);
  border-radius: 18px;
  backdrop-filter: blur(10px);
  transition: all 0.6s var(--ease);
  position: relative;
  overflow: hidden;
}

.journey-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(43, 79, 255, 0.06), transparent 60%);
  opacity: 0;
  transition: opacity 0.6s var(--ease);
}

.journey-card:hover {
  transform: translateY(-8px);
  border-color: rgba(12, 14, 16, 0.12);
  background: rgba(255, 255, 255, 0.6);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.1);
}

.journey-card:hover::before {
  opacity: 1;
}

.journey-number {
  font-size: clamp(56px, 6vw, 72px);
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 1;
  margin-bottom: 16px;
  background: linear-gradient(135deg, #EEFF99 0%, #2DD4DA 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  opacity: 0.9;
  transition: all 0.5s var(--ease);
}

.journey-card:hover .journey-number {
  transform: scale(1.1);
  opacity: 1;
}

.journey-card:nth-child(2) .journey-number {
  font-family: var(--f-serif);
  font-style: italic;
  background: linear-gradient(135deg, #FF6B35 0%, #FF4FA0 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.journey-card:nth-child(3) .journey-number {
  background: linear-gradient(135deg, #2B4FFF 0%, #7B5BFF 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.journey-label {
  font-family: var(--f-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--muted);
  font-weight: 500;
}

.about-narrative {
  max-width: 750px;
  margin: 0 auto;
}

.story-beat {
  margin-bottom: 80px;
  position: relative;
}

.story-beat:last-child {
  margin-bottom: 0;
}

.beat-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: #FF6B35;
  margin-bottom: 20px;
  font-weight: 600;
}

.beat-label::before {
  content: '';
  width: 28px;
  height: 1.5px;
  background: #FF6B35;
  transition: width 0.5s var(--ease);
}

.story-beat:hover .beat-label::before {
  width: 48px;
}

.story-beat:nth-child(2) .beat-label {
  color: #FF4FA0;
}

.story-beat:nth-child(2) .beat-label::before {
  background: #FF4FA0;
}

.story-beat:nth-child(3) .beat-label {
  color: #7B5BFF;
}

.story-beat:nth-child(3) .beat-label::before {
  background: #7B5BFF;
}

.story-beat:nth-child(4) .beat-label {
  color: #2DD4DA;
}

.story-beat:nth-child(4) .beat-label::before {
  background: #2DD4DA;
}

.beat-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--ink);
  transition: all 0.4s var(--ease);
}

.story-beat:hover .beat-title {
  color: var(--pri);
  transform: translateX(8px);
}

.beat-title .highlight {
  font-family: var(--f-serif);
  font-style: italic;
  font-weight: 400;
  background: linear-gradient(135deg, #FF6B35 0%, #FF4FA0 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.beat-text {
  font-size: 17px;
  line-height: 1.85;
  color: var(--ink-soft);
  margin-bottom: 16px;
  transition: color 0.3s var(--ease);
}

.story-beat:hover .beat-text {
  color: var(--ink);
}

.beat-quote {
  font-family: var(--f-serif);
  font-style: italic;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 400;
  color: var(--ink-2);
  line-height: 1.4;
  padding: 32px 0;
  margin: 32px 0;
  border-left: 3px solid;
  border-image: linear-gradient(180deg, #FF6B35, #FF4FA0) 1;
  padding-left: 32px;
  letter-spacing: -0.01em;
}

@media (max-width: 920px) {
  .about-container {
    padding: 120px 28px;
  }

  .about-journey {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .story-beat {
    margin-bottom: 60px;
  }

  .beat-quote {
    font-size: clamp(20px, 5vw, 28px);
    padding-left: 24px;
  }
}

@media (max-width: 640px) {
  .about-container {
    padding: 100px 20px;
  }

  .about-opening {
    margin-bottom: 80px;
  }

  .about-narrative {
    margin-bottom: 60px;
  }
}

@media (max-width: 920px) {
  .about {
    padding: 100px 0;
  }

  .about-inner {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .meta-val {
    font-size: 44px;
  }

  .meta-card:nth-child(2) .meta-val {
    font-size: 52px;
  }
}

.contact-embed {
  padding: 140px 0;
  position: relative;
  background: var(--paper);
  overflow: hidden;
}

.contact-embed::before {
  content: '';
  position: absolute;
  top: -10%;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 600px;
  background:
    radial-gradient(circle at 30% 50%, rgba(43, 79, 255, 0.14) 0%, transparent 50%),
    radial-gradient(circle at 70% 50%, rgba(123, 91, 255, 0.12) 0%, transparent 50%);
  filter: blur(80px);
  pointer-events: none;
}

.contact-card {
  position: relative;
  z-index: 1;
  background: #0D0F18;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 36px;
  padding: 64px;
  box-shadow: 0 40px 80px -15px rgba(0, 0, 0, 0.35);
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  max-width: 1200px;
  margin: 0 auto;
  color: #FFFFFF;
}

.contact-left h2 {
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin-bottom: 24px;
  color: #FFFFFF;
}

.contact-left h2 em {
  font-family: var(--f-serif);
  font-style: italic;
  font-weight: 400;
  background: linear-gradient(135deg, var(--pri) 0%, var(--vio) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.contact-tag {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.6);
  max-width: 400px;
  margin-bottom: 40px;
  line-height: 1.65;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.info-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 18px;
  transition: transform 0.3s var(--ease), border-color 0.3s, box-shadow 0.3s;
}

.info-row:hover {
  transform: translateX(6px);
  border-color: rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 12px 28px -12px rgba(0, 0, 0, 0.4);
}

.info-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--pri) 0%, var(--vio) 100%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(43, 79, 255, 0.25);
}

.info-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.info-label {
  font-family: var(--f-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500;
}

.info-val {
  font-size: 16px;
  font-weight: 600;
  color: #FFFFFF;
}

.info-val a:hover {
  color: var(--pri);
}

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

.form-heading {
  font-family: var(--f-serif);
  font-size: 28px;
  font-style: italic;
  font-weight: 400;
  margin-bottom: 8px;
  color: #FFFFFF;
}

.form-heading-sub {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 12px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-field label {
  font-family: var(--f-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 500;
}

.form-field input,
.form-field select,
.form-field textarea {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 15px 18px;
  font-size: 15px;
  color: #FFFFFF;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s, background-color 0.2s;
  border-radius: 14px;
  width: 100%;
  font-family: inherit;
}

.form-field select option {
  background: #0D0F18;
  color: #FFFFFF;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--pri);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 0 0 3px rgba(77, 121, 255, 0.25);
}

.form-field textarea {
  resize: vertical;
  min-height: 110px;
  font-family: inherit;
}

.form-field select {
  -webkit-appearance: none;
  appearance: none;
  background: rgba(255, 255, 255, 0.03) url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23ffffff' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat right 18px center;
  padding-right: 52px;
  cursor: pointer;
}

.form-submit {
  margin-top: 12px;
  padding: 16px 32px;
  background: #FFFFFF;
  color: #0C0E10;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: transform 0.3s var(--ease), box-shadow 0.3s, background-color 0.3s, color 0.3s;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
  isolation: isolate;
  cursor: pointer;
  border: none;
  align-self: flex-start;
}

.form-submit::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--pri) 0%, var(--vio) 100%);
  transform: translateY(101%);
  transition: transform 0.45s var(--ease);
  z-index: -1;
}

.form-submit:hover::before {
  transform: translateY(0);
}

.form-submit:hover {
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(43, 79, 255, 0.35);
}

.form-submit .arrow {
  transition: transform 0.3s var(--ease);
}

.form-submit:hover .arrow {
  transform: translate(4px, -4px);
}

input::placeholder,
textarea::placeholder {
  color: var(--muted) !important;
  opacity: 0.8 !important;
}

.contact-card input::placeholder,
.contact-card textarea::placeholder,
.form-container input::placeholder,
.form-container textarea::placeholder,
.enhanced-form input::placeholder,
.enhanced-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.45) !important;
  opacity: 1 !important;
}

@media (max-width: 1000px) {
  .contact-card {
    grid-template-columns: 1fr;
    padding: 48px 40px;
    gap: 50px;
    border-radius: 28px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

@media (max-width: 520px) {
  .contact-embed {
    padding: 100px 0;
  }

  .contact-card {
    padding: 36px 24px;
  }
}

footer {
  padding: 100px 0 48px;
  background: linear-gradient(180deg, #0A0A0A 0%, #18181B 100%);
  color: white;
  border-top: 1px solid rgba(43, 79, 255, 0.18);
  position: relative;
  overflow: hidden;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--pri) 50%, transparent);
}

footer::after {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 100%;
  background: radial-gradient(circle, rgba(43, 79, 255, 0.08) 0%, transparent 60%);
  filter: blur(100px);
  pointer-events: none;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 60px;
  margin-bottom: 72px;
  position: relative;
  z-index: 1;
}

.footer-brand .logo {
  margin-bottom: 38px !important;
  color: var(--paper);
}

.footer-brand .logo svg {
  color: var(--paper);
}

.footer-socials {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.social-icon {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 38px !important;
  height: 38px !important;
  border-radius: 50% !important;
  padding: 0 !important;
  box-sizing: border-box !important;
  color: #FFFFFF !important;
  transition: all 0.35s var(--ease) !important;
}

.social-icon.social-instagram {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%) !important;
  box-shadow: 0 6px 16px rgba(214, 36, 159, 0.25) !important;
}

.social-icon.social-facebook {
  background: #1877F2 !important;
  box-shadow: 0 6px 16px rgba(24, 119, 242, 0.25) !important;
}

.social-icon.social-linkedin {
  background: #0A66C2 !important;
  box-shadow: 0 6px 16px rgba(10, 102, 194, 0.25) !important;
}

.social-icon svg {
  display: block !important;
  margin: 0 !important;
  width: 17px !important;
  height: 17px !important;
  fill: none;
  stroke: currentColor;
  stroke-width: 2px;
  flex-shrink: 0 !important;
}

.social-icon:hover {
  transform: translateY(-4px) scale(1.1) rotate(6deg) !important;
  box-shadow: 0 10px 24px rgba(255, 255, 255, 0.15) !important;
  filter: brightness(1.12) !important;
}

.footer-brand p {
  font-size: 16px;
  color: rgba(244, 239, 231, 0.65);
  line-height: 1.7;
  max-width: 400px;
}

.footer-col h4 {
  font-family: var(--f-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(244, 239, 231, 0.4);
  margin-bottom: 20px;
  font-weight: 500;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-col a {
  font-size: 16px;
  color: rgba(244, 239, 231, 0.75);
  font-weight: 500;
  transition: color 0.2s, padding-left 0.3s;
  display: inline-block;
}

.footer-col a:hover {
  color: var(--pri-light);
  padding-left: 8px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--f-mono);
  font-size: 13px;
  color: rgba(244, 239, 231, 0.45);
  flex-wrap: wrap;
  gap: 20px;
  padding-top: 36px;
  border-top: 1px solid rgba(244, 239, 231, 0.08);
  position: relative;
  z-index: 1;
}

.techionic {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.02) !important;
  padding: 8px 18px !important;
  border-radius: 100px !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  font-family: var(--f-sans) !important;
  font-style: normal !important;
  font-size: 11px !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  transition: all 0.3s var(--ease) !important;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15) !important;
}

.techionic:hover {
  background: rgba(255, 255, 255, 0.05) !important;
  border-color: rgba(255, 255, 255, 0.15) !important;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25) !important;
  transform: translateY(-2px);
}

.techionic .tx-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--lime) !important;
  box-shadow: 0 0 10px var(--lime) !important;
  animation: pulseLive 2s ease-in-out infinite;
}

.techionic span {
  color: rgba(244, 239, 231, 0.45) !important;
  font-weight: 500 !important;
}

.techionic a {
  font-family: var(--f-sans) !important;
  font-style: normal !important;
  font-weight: 700 !important;
  color: #FFFFFF !important;
  letter-spacing: 0.08em !important;
  position: relative !important;
  transition: all 0.3s var(--ease) !important;
}

.techionic a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 1.5px;
  background: linear-gradient(90deg, var(--cyan), var(--lime));
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s var(--ease);
}

.techionic:hover a {
  color: var(--cyan) !important;
  text-shadow: 0 0 10px rgba(0, 229, 255, 0.4);
}

.techionic:hover a::after {
  transform: scaleX(1);
  transform-origin: left;
}

@media (max-width: 820px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 50px;
  }

  .footer-brand {
    grid-column: span 2;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}

@media (max-width: 500px) {
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-brand {
    grid-column: span 1;
  }
}

@keyframes pulseLive {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(43, 79, 255, 0.5);
    opacity: 1;
  }

  50% {
    box-shadow: 0 0 0 8px rgba(43, 79, 255, 0);
    opacity: 0.7;
  }
}

@keyframes floatA {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(8%, 6%) scale(1.1);
  }
}

@keyframes floatB {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(-6%, 8%) scale(1.08);
  }
}

@keyframes lineUp {
  to {
    transform: translateY(0);
  }
}

@keyframes up {
  to {
    opacity: 1;
    transform: translateY(0);
  }

  from {
    opacity: 0;
    transform: translateY(20px);
  }
}

.rv {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}

.rv.in {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.1s !important;
  }

  .rv {
    opacity: 1;
    transform: none;
  }
}

.cta {
  padding: 100px 0;
  background: var(--paper-2);
  text-align: center;
  border-top: 1px solid var(--line);
}

.cta h2 {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 20px;
  max-width: 18ch;
  margin-left: auto;
  margin-right: auto;
}

.cta h2 em {
  font-family: var(--f-serif);
  font-style: italic;
  font-weight: 400;
  background: linear-gradient(135deg, var(--pri), var(--vio));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.cta p {
  font-size: 16px;
  color: var(--ink-soft);
  max-width: 440px;
  margin: 0 auto 32px;
  line-height: 1.55;
}

.services-hero {
  padding: 180px 0 100px;
  background: linear-gradient(180deg, #FAFAF9 0%, #F5F5F4 100%);
  position: relative;
  overflow: hidden;
}

.services-hero::before {
  content: '';
  position: absolute;
  inset: -50%;
  background: radial-gradient(ellipse 60% 40% at 50% 0%, rgba(43, 79, 255, 0.06), transparent 60%);
  animation: heroGlow 8s ease-in-out infinite alternate;
}

@keyframes heroGlow {
  0% {
    opacity: 0.6;
    transform: translate(0, 0);
  }

  100% {
    opacity: 1;
    transform: translate(0, -3%);
  }
}

.services-hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.services-hero h1 {
  font-size: clamp(42px, 6vw, 76px);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 28px;
}

.services-hero h1 em {
  font-family: var(--f-serif);
  font-style: italic;
  font-weight: 400;
  background: linear-gradient(135deg, #FF6B35 0%, #FF4FA0 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-lead {
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.7;
  color: var(--ink-soft);
  max-width: 680px;
  margin: 0 auto;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.logo-mark {
  height: 26px;
  width: auto;
  display: block;
}

.logo-word {
  height: 18px;
  width: auto;
  display: block;
}

.footer-logo-full {
  display: inline-block;
  margin-bottom: 24px;
}

.footer-logo-full img {
  width: 130px;
  height: auto;
  display: block;
}

.services-detailed {
  padding: 120px 0;
  background: #FFFFFF;
}

.service-deep {
  margin-bottom: 140px;
  padding-bottom: 140px;
  border-bottom: 1px solid rgba(12, 14, 16, 0.08);
}

.service-deep:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.service-deep-header {
  margin-bottom: 60px;
}

.service-deep-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.service-deep-number {
  font-family: var(--f-mono);
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.1em;
}

.service-deep-badge {
  padding: 6px 14px;
  background: rgba(255, 107, 53, 0.1);
  border: 1px solid rgba(255, 107, 53, 0.3);
  border-radius: 100px;
  font-family: var(--f-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #FF6B35;
  font-weight: 600;
}

.service-deep h2 {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 16px;
}

.service-deep-tagline {
  font-size: clamp(18px, 2.2vw, 24px);
  color: var(--ink-soft);
  font-weight: 500;
}

.service-deep-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.service-deep-description h3 {
  font-size: 18px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--ink);
  margin-bottom: 16px;
  margin-top: 40px;
}

.service-deep-description h3:first-child {
  margin-top: 0;
}

.service-deep-description p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--ink-soft);
  margin-bottom: 20px;
}

.service-deep-benefits {
  list-style: none;
  padding: 0;
  margin: 24px 0;
}

.service-deep-benefits li {
  font-size: 15px;
  line-height: 1.8;
  color: var(--ink-soft);
  margin-bottom: 16px;
  padding-left: 28px;
  position: relative;
}

.service-deep-benefits li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: #2B4FFF;
  font-weight: 700;
}

.service-deep-benefits li strong {
  color: var(--ink);
  font-weight: 700;
}

.service-deep-deliverables {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.deliverable-tag {
  padding: 8px 16px;
  background: rgba(43, 79, 255, 0.08);
  border: 1px solid rgba(43, 79, 255, 0.2);
  border-radius: 8px;
  font-family: var(--f-mono);
  font-size: 12px;
  color: var(--ink);
  font-weight: 500;
}

.service-deep-examples {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.example-card {
  padding: 28px;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(12, 14, 16, 0.08);
  border-radius: 16px;
  transition: all 0.4s var(--ease);
  backdrop-filter: blur(10px);
}

.example-card:hover {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(12, 14, 16, 0.15);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(12, 14, 16, 0.1);
}

.example-icon {
  font-size: 32px;
  margin-bottom: 16px;
  line-height: 1;
}

.example-card h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 10px;
}

.example-card p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin: 0;
}

.services-approach {
  padding: 120px 0;
  background: linear-gradient(180deg, #000000 0%, #0A0A14 50%, #000000 100%);
  position: relative;
}

.approach-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 80px;
}

.approach-header h2 {
  font-size: clamp(36px, 5vw, 54px);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.2;
  color: var(--paper);
}

.approach-header h2 em {
  font-family: var(--f-serif);
  font-style: italic;
  font-weight: 400;
  color: #FF6B35;
}

.approach-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
}

.approach-phase {
  padding: 40px;
  background: rgba(244, 239, 231, 0.02);
  border: 1px solid rgba(244, 239, 231, 0.08);
  border-radius: 20px;
  transition: all 0.5s var(--ease);
}

.approach-phase:hover {
  background: rgba(244, 239, 231, 0.04);
  border-color: rgba(244, 239, 231, 0.15);
  transform: translateY(-8px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.4);
}

.phase-number {
  font-family: var(--f-mono);
  font-size: 14px;
  font-weight: 700;
  color: rgba(244, 239, 231, 0.3);
  margin-bottom: 20px;
  letter-spacing: 0.1em;
}

.approach-phase h3 {
  font-size: 24px;
  font-weight: 800;
  color: var(--paper);
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}

.approach-phase p {
  font-size: 15px;
  line-height: 1.75;
  color: rgba(244, 239, 231, 0.7);
  margin: 0;
}

.services-cta {
  padding: 100px 0;
  background: #000000;
}

.cta-card {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px;
  background: linear-gradient(135deg, rgba(43, 79, 255, 0.08) 0%, rgba(123, 91, 255, 0.08) 100%);
  border: 1px solid rgba(43, 79, 255, 0.2);
  border-radius: 24px;
  text-align: center;
}

.cta-card h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--paper);
  margin-bottom: 20px;
}

.cta-card p {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(244, 239, 231, 0.7);
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 920px) {
  .service-deep-body {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .approach-grid {
    grid-template-columns: 1fr;
  }

  .cta-card {
    padding: 40px 32px;
  }
}

@media (max-width: 640px) {
  .services-hero {
    padding: 140px 0 80px;
  }

  .services-detailed {
    padding: 80px 0;
  }

  .service-deep {
    margin-bottom: 80px;
    padding-bottom: 80px;
  }
}

.contact-hero {
  padding: 180px 0 100px;
  background: linear-gradient(180deg, #FAFAF9 0%, #F5F5F4 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.contact-hero::before {
  content: '';
  position: absolute;
  inset: -50%;
  background: radial-gradient(ellipse 50% 35% at 50% 0%, rgba(255, 79, 160, 0.06), transparent 60%);
  animation: contactGlow 10s ease-in-out infinite alternate;
}

@keyframes contactGlow {
  0% {
    opacity: 0.5;
  }

  100% {
    opacity: 1;
  }
}

.contact-hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}

.contact-hero h1 {
  font-size: clamp(44px, 6vw, 82px);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 24px;
}

.contact-hero h1 em {
  font-family: var(--f-serif);
  font-style: italic;
  font-weight: 400;
  background: linear-gradient(135deg, #FF4FA0 0%, #7B5BFF 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.contact-hero p {
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.7;
  color: var(--ink-soft);
  max-width: 640px;
  margin: 0 auto 48px;
}

.contact-guarantee {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 24px;
  background: rgba(238, 255, 153, 0.08);
  border: 1px solid rgba(238, 255, 153, 0.2);
  border-radius: 100px;
  font-family: var(--f-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #FF9999;
  font-weight: 600;
}

.contact-guarantee::before {
  content: '⚡';
  font-size: 16px;
}

.contact-methods {
  padding: 100px 0;
  background: #000000;
}

.methods-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 80px;
}

.method-card {
  padding: 40px 32px;
  background: rgba(244, 239, 231, 0.02);
  border: 1px solid rgba(244, 239, 231, 0.08);
  border-radius: 20px;
  text-align: center;
  transition: all 0.5s var(--ease);
  cursor: pointer;
}

.method-card:hover {
  background: rgba(244, 239, 231, 0.04);
  border-color: rgba(244, 239, 231, 0.15);
  transform: translateY(-8px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.3);
}

.method-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(43, 79, 255, 0.1);
  border-radius: 16px;
  font-size: 28px;
  transition: all 0.4s var(--ease);
}

.method-card:hover .method-icon {
  background: rgba(43, 79, 255, 0.15);
  transform: scale(1.1);
}

.method-card h3 {
  font-size: 20px;
  font-weight: 800;
  color: var(--paper);
  margin-bottom: 10px;
}

.method-card p {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(244, 239, 231, 0.65);
  margin-bottom: 20px;
}

.method-link {
  font-family: var(--f-mono);
  font-size: 13px;
  color: #2B4FFF;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s var(--ease);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.method-link:hover {
  color: #FF6B35;
  transform: translateX(4px);
}

.contact-form-section {
  padding: 120px 0 140px;
  background: linear-gradient(180deg, var(--surface) 0%, var(--paper-2) 100%);
  position: relative;
  overflow: hidden;
}

.contact-form-section::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -20%;
  width: 60%;
  height: 140%;
  background: radial-gradient(ellipse at center, rgba(43, 79, 255, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

.contact-form-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -20%;
  width: 60%;
  height: 140%;
  background: radial-gradient(ellipse at center, rgba(255, 107, 53, 0.04) 0%, transparent 60%);
  pointer-events: none;
}

.form-container {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.form-header {
  text-align: center;
  margin-bottom: 70px;
}

.form-header h2 {
  font-size: clamp(38px, 5vw, 58px);
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--ink);
  margin-bottom: 20px;
  line-height: 1.1;
}

.form-header p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-soft);
  max-width: 640px;
  margin: 0 auto;
}

.enhanced-form {
  display: grid;
  gap: 28px;
  background: rgba(255, 255, 255, 0.6);
  padding: 50px;
  border-radius: 24px;
  border: 1px solid rgba(12, 14, 16, 0.06);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.04);
  backdrop-filter: blur(10px);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.form-group {
  position: relative;
}

.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-2);
  margin-bottom: 12px;
  font-family: var(--f-mono);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 18px 22px;
  background: var(--surface);
  border: 2px solid rgba(12, 14, 16, 0.08);
  border-radius: 14px;
  font-family: var(--f-sans);
  font-size: 15px;
  color: var(--ink);
  transition: all 0.3s var(--ease);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--muted);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  background: var(--surface);
  border-color: var(--pri);
  box-shadow: 0 0 0 4px rgba(43, 79, 255, 0.08), 0 4px 12px rgba(43, 79, 255, 0.1);
  transform: translateY(-1px);
}

.form-group textarea {
  min-height: 160px;
  resize: vertical;
}

.form-group select {
  cursor: pointer;
}

.budget-selector {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.budget-option {
  padding: 16px;
  background: var(--surface);
  border: 2px solid rgba(12, 14, 16, 0.08);
  border-radius: 12px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  font-size: 14px;
  font-weight: 700;
  color: var(--ink-2);
}

.budget-option:hover {
  background: var(--surface-2);
  border-color: rgba(12, 14, 16, 0.12);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.budget-option.selected {
  background: linear-gradient(135deg, var(--pri) 0%, var(--vio) 100%);
  border-color: var(--pri);
  color: var(--surface);
  box-shadow: 0 6px 20px rgba(43, 79, 255, 0.3);
}

.urgency-selector {
  display: flex;
  gap: 12px;
}

.urgency-option {
  flex: 1;
  padding: 20px 16px;
  background: var(--surface);
  border: 2px solid rgba(12, 14, 16, 0.08);
  border-radius: 12px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s var(--ease);
}

.urgency-option:hover {
  background: var(--surface-2);
  border-color: rgba(12, 14, 16, 0.12);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.urgency-option.selected {
  background: linear-gradient(135deg, var(--orange) 0%, var(--pink) 100%);
  border-color: var(--orange);
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.3);
}

.urgency-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-soft);
  margin-bottom: 8px;
  font-family: var(--f-mono);
}

.urgency-option.selected .urgency-label {
  color: var(--surface);
}

.urgency-text {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
}

.urgency-option.selected .urgency-text {
  color: var(--surface);
}

.form-submit {
  margin-top: 20px;
}

@media (max-width: 768px) {
  .contact-form-section {
    padding: 80px 0 100px;
  }

  .enhanced-form {
    padding: 35px 25px;
    gap: 22px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 22px;
  }

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

  .urgency-selector {
    flex-direction: column;
  }

  .form-header h2 {
    font-size: clamp(32px, 8vw, 48px);
  }
}

@media (max-width: 480px) {
  .enhanced-form {
    padding: 28px 20px;
  }

  .budget-selector {
    grid-template-columns: 1fr;
  }
}

.contact-faq {
  padding: 100px 0;
  background: #000000;
}

.faq-header {
  text-align: center;
  margin-bottom: 60px;
}

.faq-header h2 {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--paper);
  margin-bottom: 16px;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 20px;
  padding: 32px;
  background: rgba(244, 239, 231, 0.02);
  border: 1px solid rgba(244, 239, 231, 0.08);
  border-radius: 16px;
  transition: all 0.4s var(--ease);
}

.faq-item:hover {
  background: rgba(244, 239, 231, 0.04);
  border-color: rgba(244, 239, 231, 0.12);
}

.faq-question {
  font-size: 18px;
  font-weight: 700;
  color: var(--paper);
  margin-bottom: 12px;
}

.faq-answer {
  font-size: 15px;
  line-height: 1.75;
  color: rgba(244, 239, 231, 0.7);
  margin: 0;
}

@media (max-width: 920px) {
  .methods-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 640px) {
  .contact-hero {
    padding: 140px 0 80px;
  }

  .contact-methods,
  .contact-form-section,
  .contact-faq {
    padding: 80px 0;
  }

  .budget-selector {
    grid-template-columns: 1fr;
  }

  .urgency-selector {
    flex-direction: column;
  }
}

.lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 100px;
  font-family: var(--f-mono);
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  margin: 0 8px;
}

.lang-toggle:hover {
  border-color: var(--line-strong);
  background: var(--surface);
}

.lang-option {
  padding: 4px 8px;
  border-radius: 100px;
  transition: all 0.3s var(--ease);
  cursor: pointer;
  color: var(--muted);
}

.lang-option.active {
  background: var(--ink);
  color: var(--paper);
}

.lang-separator {
  color: var(--line-strong);
  font-weight: 400;
}

[dir="rtl"] body {
  direction: rtl;
  text-align: right;
}

[dir="rtl"] .nav {
  direction: rtl;
}

[dir="rtl"] .nav-links {
  flex-direction: row-reverse;
}

[dir="rtl"] .hero-grid {
  direction: rtl;
}

[dir="rtl"] .hero-text {
  text-align: right;
}

[dir="rtl"] .hero-cta {
  justify-content: flex-end;
}

[dir="rtl"] .services-grid {
  direction: rtl;
}

[dir="rtl"] .footer-inner {
  direction: rtl;
}

[dir="rtl"] .about-opening {
  direction: rtl;
}

[dir="rtl"] .about-journey {
  direction: rtl;
}

[dir="rtl"] .about-narrative {
  direction: rtl;
  text-align: right;
}

[dir="rtl"] .beat-label::before {
  margin-left: 10px;
  margin-right: 0;
}

[dir="rtl"] .story-beat:hover .beat-title {
  transform: translateX(-8px);
}

[dir="rtl"] .beat-quote {
  border-left: none;
  border-right: 3px solid;
  border-image: linear-gradient(180deg, #FF6B35, #FF4FA0) 1;
  padding-left: 0;
  padding-right: 32px;
}

[dir="rtl"] .service-deep-body {
  direction: rtl;
}

[dir="rtl"] .service-deep-benefits li {
  padding-left: 0;
  padding-right: 28px;
}

[dir="rtl"] .service-deep-benefits li::before {
  left: auto;
  right: 0;
}

[dir="rtl"] .contact-hero-content {
  direction: rtl;
}

[dir="rtl"] .methods-grid {
  direction: rtl;
}

[dir="rtl"] .form-container {
  direction: rtl;
}

@media (max-width: 880px) {
  .lang-toggle {
    margin: 0 4px;
    padding: 6px 10px;
  }

  .lang-option {
    padding: 3px 6px;
    font-size: 11px;
  }
}

.about .eyebrow {
  background: rgba(12, 14, 16, 0.04);
  border-color: rgba(12, 14, 16, 0.1);
  color: rgba(12, 14, 16, 0.5);
}

.about-hook {
  color: var(--ink);
}

.about-intro {
  color: var(--ink-soft);
}

.journey-card {
  background: rgba(255, 255, 255, 0.6);
  border-color: rgba(12, 14, 16, 0.08);
  backdrop-filter: blur(20px);
}

.journey-card:hover {
  background: rgba(255, 255, 255, 0.8);
  border-color: rgba(12, 14, 16, 0.15);
}

.journey-label {
  color: var(--muted);
}

.beat-title {
  color: var(--ink);
}

.beat-text {
  color: var(--ink-soft);
}

.beat-quote {
  color: var(--ink);
}

.contact-methods {
  background: #FFFFFF;
}

.method-card {
  background: rgba(255, 255, 255, 0.6);
  border-color: rgba(12, 14, 16, 0.08);
  backdrop-filter: blur(10px);
}

.method-card:hover {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(12, 14, 16, 0.15);
}

.method-card h3 {
  color: var(--ink);
}

.method-card p {
  color: var(--ink-soft);
}

.contact-form-section {
  background: linear-gradient(180deg, #FFFFFF 0%, #F5F5F4 50%, #FFFFFF 100%);
}

.form-header h2 {
  color: var(--ink);
}

.form-header p {
  color: var(--ink-soft);
}

.contact-faq {
  background: #FFFFFF;
}

.faq-header h2 {
  color: var(--ink);
}

.faq-item {
  background: rgba(255, 255, 255, 0.6);
  border-color: rgba(12, 14, 16, 0.08);
}

.faq-item:hover {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(12, 14, 16, 0.12);
}

.faq-question {
  color: var(--ink);
}

.faq-answer {
  color: var(--ink-soft);
}

.services-approach {
  background: linear-gradient(180deg, #FFFFFF 0%, #F5F5F4 50%, #FFFFFF 100%);
}

.approach-header h2 {
  color: var(--ink);
}

.approach-phase {
  background: rgba(255, 255, 255, 0.6);
  border-color: rgba(12, 14, 16, 0.08);
}

.approach-phase:hover {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(12, 14, 16, 0.15);
}

.phase-number {
  color: var(--muted);
}

.approach-phase h3 {
  color: var(--ink);
}

.approach-phase p {
  color: var(--ink-soft);
}

.services-cta {
  background: #FFFFFF;
}

.cta-card {
  background: linear-gradient(135deg, rgba(43, 79, 255, 0.05) 0%, rgba(123, 91, 255, 0.05) 100%);
  border-color: rgba(43, 79, 255, 0.15);
}

.cta-card h2 {
  color: var(--ink);
}

.cta-card p {
  color: var(--ink-soft);
}

.about .beat-title:hover {
  color: var(--pri) !important;

  transform: translateX(8px);
}

.about .beat-text:hover {
  color: var(--ink) !important;

}

.about .journey-card:hover .journey-number {
  transform: scale(1.1);
  opacity: 1;
  filter: brightness(1.1);
}

.service-deep-description p:hover {
  color: var(--ink) !important;
}

.example-card:hover h4 {
  color: var(--pri) !important;
}

.example-card:hover p {
  color: var(--ink) !important;
}

.method-card:hover h3 {
  color: var(--pri) !important;
}

.method-card:hover p {
  color: var(--ink) !important;
}

.faq-item:hover .faq-question {
  color: var(--pri) !important;
}

.faq-item:hover .faq-answer {
  color: var(--ink) !important;
}

.approach-phase:hover h3 {
  color: var(--pri) !important;
}

.approach-phase:hover p {
  color: var(--ink) !important;
}

.about-hook,
.about-intro,
.journey-card,
.journey-number,
.journey-label,
.beat-label,
.beat-title,
.beat-text,
.beat-quote {
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-deep h2,
.service-deep-tagline,
.service-deep-description p,
.service-deep-description h3,
.example-card,
.example-card h4,
.example-card p {
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.method-card,
.method-card h3,
.method-card p,
.faq-item,
.faq-question,
.faq-answer,
.approach-phase,
.approach-phase h3,
.approach-phase p {
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-container,
.services-hero-content,
.contact-hero-content,
.service-deep,
.method-card,
.approach-phase {
  min-height: fit-content;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
span,
a,
button {
  transition: transform 0.3s ease, color 0.3s ease, opacity 0.3s ease;
  transform-origin: center center;
}

[dir="rtl"] * {
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-text,
.about-opening,
.about-journey,
.about-narrative,
.service-deep-body,
.methods-grid {
  transition: transform 0.5s ease, opacity 0.3s ease;
}

body.transitioning * {
  pointer-events: none;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.95);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.about-opening {
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.journey-card {
  animation: fadeInScale 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.journey-card:nth-child(1) {
  animation-delay: 0.1s;
}

.journey-card:nth-child(2) {
  animation-delay: 0.2s;
}

.journey-card:nth-child(3) {
  animation-delay: 0.3s;
}

.story-beat {
  animation: fadeInUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  opacity: 0;
}

.story-beat:nth-child(1) {
  animation-delay: 0.1s;
}

.story-beat:nth-child(2) {
  animation-delay: 0.2s;
}

.story-beat:nth-child(3) {
  animation-delay: 0.3s;
}

.story-beat:nth-child(4) {
  animation-delay: 0.4s;
}

.example-card {
  animation: fadeInScale 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  opacity: 0;
}

.example-card:nth-child(1) {
  animation-delay: 0.1s;
}

.example-card:nth-child(2) {
  animation-delay: 0.2s;
}

.example-card:nth-child(3) {
  animation-delay: 0.3s;
}

.method-card {
  animation: fadeInUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  opacity: 0;
}

.method-card:nth-child(1) {
  animation-delay: 0.1s;
}

.method-card:nth-child(2) {
  animation-delay: 0.2s;
}

.method-card:nth-child(3) {
  animation-delay: 0.3s;
}

.approach-phase {
  animation: fadeInScale 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  opacity: 0;
}

.approach-phase:nth-child(1) {
  animation-delay: 0.1s;
}

.approach-phase:nth-child(2) {
  animation-delay: 0.2s;
}

.approach-phase:nth-child(3) {
  animation-delay: 0.3s;
}

.approach-phase:nth-child(4) {
  animation-delay: 0.4s;
}

.journey-card {
  position: relative;
  overflow: hidden;
}

.journey-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #2B4FFF, #7B5BFF, #FF6B35);
  transform: translateX(-100%);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.journey-card:hover::after {
  transform: translateX(0);
}

.example-card,
.method-card,
.approach-phase,
.faq-item {
  position: relative;
  overflow: hidden;
}

.example-card::before,
.method-card::before,
.approach-phase::before,
.faq-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(43, 79, 255, 0.05), transparent);
  transition: left 0.5s ease;
}

.example-card:hover::before,
.method-card:hover::before,
.approach-phase:hover::before,
.faq-item:hover::before {
  left: 100%;
}

.btn {
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.btn:hover::after {
  width: 300px;
  height: 300px;
}

@keyframes shimmer {
  0% {
    background-position: -1000px 0;
  }

  100% {
    background-position: 1000px 0;
  }
}

body.lang-switching {
  position: relative;
}

body.lang-switching::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, #2B4FFF, transparent);
  background-size: 1000px 100%;
  animation: shimmer 1s linear;
  z-index: 9999;
}

.nav {
  display: grid;
  grid-template-columns: auto 1fr auto auto auto;
  gap: 16px;
  align-items: center;
  padding: 8px 12px;
}

.logo {
  grid-column: 1;
}

.nav-links {
  grid-column: 2;
  justify-self: center;
  margin: 0;
}

.lang-toggle {
  grid-column: 3;
  flex-shrink: 0;
}

.nav-cta {
  grid-column: 4;
  flex-shrink: 0;
}

.mobile-toggle {
  grid-column: 5;
  flex-shrink: 0;
}

.lang-toggle {
  min-width: 80px;
  justify-content: center;
}

@media (max-width: 1100px) {
  .nav {
    grid-template-columns: auto 1fr auto auto;
    gap: 8px;
  }

  .nav-links {
    gap: 0;
  }

  .nav-links a {
    padding: 9px 12px;
    font-size: 12px;
  }
}

@media (max-width: 880px) {
  .nav {
    grid-template-columns: auto 1fr auto auto;
    padding: 6px 6px 6px 18px;
  }

  .logo {
    grid-column: 1;
  }

  .lang-toggle {
    grid-column: 2;
    justify-self: end;
    margin-right: 8px;
  }

  .nav-cta {
    grid-column: 3;
  }

  .mobile-toggle {
    grid-column: 4;
  }
}

[dir="rtl"] .nav {
  direction: rtl;
}

[dir="rtl"] .nav-links {
  direction: rtl;
}

[dir="rtl"] .logo {
  direction: ltr;
}

.nav-links a,
.nav-cta,
.lang-toggle {
  white-space: nowrap;
}

[dir="rtl"] {
  text-align: right;
  direction: rtl;
}

[dir="rtl"] p,
[dir="rtl"] h1,
[dir="rtl"] h2,
[dir="rtl"] h3,
[dir="rtl"] h4,
[dir="rtl"] span,
[dir="rtl"] a {
  direction: rtl;
  unicode-bidi: embed;
}

[dir="rtl"] .beat-quote::after,
[dir="rtl"] p::after {
  content: none;
}

[dir="rtl"] .hero-title,
[dir="rtl"] .section-title,
[dir="rtl"] .beat-title,
[dir="rtl"] .service-deep h2 {
  text-align: right;
  direction: rtl;
}

[dir="rtl"] ul,
[dir="rtl"] ol {
  padding-right: 0;
  padding-left: 0;
  text-align: right;
}

[dir="rtl"] li {
  text-align: right;
  direction: rtl;
}

[dir="rtl"] .btn,
[dir="rtl"] .nav-cta {
  direction: rtl;
  text-align: center;
}

[dir="rtl"] .arrow {
  order: 2;
  margin-left: 0;
  margin-right: 8px;
}

[dir="rtl"] .nav-links {
  flex-direction: row-reverse;
}

[dir="rtl"] .footer-inner {
  direction: rtl;
  text-align: right;
}

[dir="rtl"] .footer-col ul {
  text-align: right;
}

[dir="rtl"] .form-field label,
[dir="rtl"] .form-field input,
[dir="rtl"] .form-field textarea,
[dir="rtl"] .form-field select {
  text-align: right;
  direction: rtl;
}

[dir="rtl"] .svc {
  text-align: right;
  direction: rtl;
}

[dir="rtl"] .about-opening,
[dir="rtl"] .about-intro,
[dir="rtl"] .journey-card,
[dir="rtl"] .story-beat {
  text-align: right;
  direction: rtl;
}

[dir="rtl"] .journey-label,
[dir="rtl"] .stat-label {
  direction: rtl;
}

[dir="rtl"] .method-card,
[dir="rtl"] .faq-item {
  text-align: right;
  direction: rtl;
}

.logo span,
.stat-number,
.journey-number,
a[href^="mailto:"],
a[href^="tel:"] {
  direction: ltr !important;
  unicode-bidi: embed !important;
  display: inline-block;
}

input[type="tel"],
input[type="email"],
input[name="phone"],
input[name="email"] {
  direction: ltr !important;
  unicode-bidi: embed !important;
  text-align: left !important;
}

.about .beat-title {
  transition: color 0.3s ease, transform 0.3s ease;
}

.about .beat-title:hover {
  color: var(--pri) !important;
  transform: translateX(8px);
}

.about .beat-text {
  transition: color 0.3s ease;
}

.about .beat-text:hover {
  color: var(--ink) !important;
}

.about .journey-card {
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.about .journey-number {
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-deep h2 {
  transition: color 0.3s ease;
}

.service-deep h2:hover {
  color: var(--pri) !important;
}

.service-deep-description h3 {
  transition: color 0.3s ease;
}

.service-deep-description h3:hover {
  color: var(--pri) !important;
}

.service-deep-description p {
  transition: color 0.3s ease;
}

.service-deep-description p:hover {
  color: var(--ink) !important;
}

.example-card h4 {
  transition: color 0.3s ease;
}

.example-card:hover h4 {
  color: var(--pri) !important;
}

.example-card p {
  transition: color 0.3s ease;
}

.example-card:hover p {
  color: var(--ink) !important;
}

.example-card {
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.method-card h3 {
  transition: color 0.3s ease;
}

.method-card:hover h3 {
  color: var(--pri) !important;
}

.method-card p {
  transition: color 0.3s ease;
}

.method-card:hover p {
  color: var(--ink) !important;
}

.method-card {
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-question {
  transition: color 0.3s ease;
}

.faq-item:hover .faq-question {
  color: var(--pri) !important;
}

.faq-answer {
  transition: color 0.3s ease;
}

.faq-item:hover .faq-answer {
  color: var(--ink) !important;
}

.faq-item {
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.approach-phase h3 {
  transition: color 0.3s ease;
}

.approach-phase:hover h3 {
  color: var(--pri) !important;
}

.approach-phase p {
  transition: color 0.3s ease;
}

.approach-phase:hover p {
  color: var(--ink) !important;
}

.approach-phase {
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  transition-property: color, background-color, border-color, transform, box-shadow, opacity;
  transition-duration: 0.3s;
  transition-timing-function: ease;
}

.hero-badge,
.hero-title,
.hero-sub,
.hero-cta,
.section-title,
.section-sub,
.eyebrow {
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.svc,
.journey-card,
.story-beat,
.service-deep,
.method-card,
.approach-phase,
.faq-item {
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn {
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-links a,
.nav-cta,
.footer-col a {
  transition: all 0.3s ease;
}

.svc:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px -20px rgba(12, 14, 16, 0.25);
}

.journey-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.15);
}

.story-beat:hover {
  transform: translateX(8px);
}

.example-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(12, 14, 16, 0.12);
}

.method-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.15);
}

.approach-phase:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.2);
}

.faq-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(12, 14, 16, 0.1);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary:hover {
  box-shadow: 0 12px 30px rgba(43, 79, 255, 0.32);
}

.nav-links a:hover {
  transform: translateY(-1px);
}

.nav-cta:hover {
  transform: translateY(-2px);
}

.footer-col a:hover {
  padding-left: 8px;
  color: var(--pri-light);
}

.nav {
  display: flex !important;
  grid-template-columns: none !important;
  align-items: center;
  justify-content: space-between;
  gap: 0 !important;
}

.nav-links {
  justify-self: auto !important;
  margin: 0;
}

.nav {
  padding: 8px 8px 8px 22px !important;
}

@media (max-width: 880px) {
  .nav {
    padding: 6px 6px 6px 18px !important;
  }
}

.mobile-menu {
  display: flex !important;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-20px) scale(0.98);
  transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    visibility 0s linear 0.35s;
}

.mobile-menu.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0) scale(1);
  transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    visibility 0s;
}

.nav {
  transition: top 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.4s ease,
    background 0.4s ease !important;
}

.svc {
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.rv {
  transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.85s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

@media (max-width: 768px) {

  .section {
    padding: 72px 0;
  }

  .contact-embed {
    padding: 72px 0;
  }

  .services-hero {
    padding: 130px 0 64px;
  }

  .services-detailed {
    padding: 72px 0;
  }

  .services-approach {
    padding: 72px 0;
  }

  .services-cta {
    padding: 64px 0;
  }

  .contact-hero {
    padding: 130px 0 64px;
  }

  .contact-methods,
  .contact-form-section,
  .contact-faq {
    padding: 64px 0;
  }

  .about-container {
    padding: 80px 20px;
  }

  .about-opening {
    margin-bottom: 60px;
  }

  .about-journey {
    margin-bottom: 60px;
  }

  .hero {
    min-height: auto;
    padding: 100px 0 48px;
  }

  .hero-scene {
    display: none;
  }

  .svc {
    min-height: 280px;
    padding: 24px;
  }

  .svc-illo {
    width: 80px;
    height: 80px;
  }

  .contact-card {
    padding: 32px 20px;
    gap: 36px;
    border-radius: 20px;
  }

  footer {
    padding: 64px 0 36px;
  }

  .section-head {
    margin-bottom: 40px;
    gap: 14px;
  }

  .strip-item {
    font-size: 20px;
  }

  .info-row {
    padding: 14px 16px;
  }
}

@media (max-width: 480px) {
  .section {
    padding: 56px 0;
  }

  .contact-embed {
    padding: 56px 0;
  }

  .hero {
    padding: 88px 0 40px;
  }

  .about-container {
    padding: 64px 20px;
  }

  .contact-card {
    padding: 28px 16px;
  }

  .svc {
    min-height: 240px;
    padding: 20px;
  }

  .svc-art {
    margin-top: 20px;
  }

  footer {
    padding: 52px 0 28px;
  }
}

.lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0;
  padding: 6px 8px;
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: 100px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 600;
  font-family: var(--f-mono);
  transition: box-shadow 0.2s, border-color 0.2s;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.lang-toggle:hover {
  border-color: var(--line-strong);
  box-shadow: 0 2px 12px rgba(12, 14, 16, 0.08);
}

.lang-option {
  padding: 4px 10px;
  border-radius: 100px;
  transition: background 0.25s var(--ease), color 0.25s;
  color: var(--muted);
  letter-spacing: 0.05em;
  line-height: 1;
}

.lang-option.active {
  background: var(--ink);
  color: var(--paper);
}

.lang-separator {
  color: var(--line-strong);
  font-size: 10px;
  padding: 0 2px;
}

.hero {
  background:
    radial-gradient(circle at 75% 50%, rgba(139, 111, 255, 0.08) 0%, transparent 55%),
    radial-gradient(circle at 20% 30%, rgba(77, 121, 255, 0.07) 0%, transparent 45%),
    radial-gradient(circle at 85% 85%, rgba(255, 107, 53, 0.06) 0%, transparent 50%),
    linear-gradient(180deg, #FAF8F5 0%, #F6F1E8 45%, #F2ECE0 75%, #EDE7D8 100%);
}

.mb {
  filter: blur(145px) !important;
}

.mb1 {
  background: radial-gradient(circle at 30% 30%, rgba(43, 79, 255, 0.38) 0%, rgba(123, 91, 255, 0.18) 45%, transparent 70%) !important;
}

.mb2 {
  background: radial-gradient(circle at 70% 60%, rgba(123, 91, 255, 0.34) 0%, rgba(255, 107, 53, 0.16) 50%, transparent 70%) !important;
}

.mb3 {
  background: radial-gradient(circle at 40% 50%, rgba(255, 107, 53, 0.28) 0%, rgba(43, 79, 255, 0.12) 40%, transparent 70%) !important;
}

.strip {
  background: var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 28px 0;
}

.section-head::before {
  content: '';
  display: block;
  width: 40px;
  height: 3px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--pri), var(--vio));
  margin: 0 auto;
}

.services-grid {
  gap: 20px;
}

.svc {
  border-radius: 32px;
  box-shadow: 0 4px 24px rgba(12, 14, 16, 0.06);
  transition: transform 0.5s var(--ease), box-shadow 0.5s, outline 0.3s;
  outline: 2px solid transparent;
}

.svc:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 40px 80px -20px rgba(12, 14, 16, 0.28);
  outline: 2px solid rgba(255, 255, 255, 0.3);
}

.svc::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 40%, rgba(255, 255, 255, 0.15) 50%, transparent 60%);
  transform: translateX(-100%);
  transition: transform 0s;
  z-index: 1;
  pointer-events: none;
}

.svc:hover::after {
  transform: translateX(100%);
  transition: transform 0.7s var(--ease);
}

.section.alt {
  background:
    radial-gradient(circle at 10% 30%, rgba(43, 79, 255, 0.05) 0%, transparent 45%),
    radial-gradient(circle at 90% 70%, rgba(255, 107, 53, 0.04) 0%, transparent 45%),
    linear-gradient(180deg, #EDE6D8 0%, #E8E1D4 100%);
}

.about {
  background:
    radial-gradient(circle at 80% 25%, rgba(123, 91, 255, 0.04) 0%, transparent 45%),
    radial-gradient(circle at 20% 75%, rgba(198, 240, 80, 0.04) 0%, transparent 50%),
    linear-gradient(180deg, #FAFAF8 0%, #F5F2EC 100%);
}

.journey-card {
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(12, 14, 16, 0.07);
  box-shadow: 0 2px 16px rgba(12, 14, 16, 0.05);
  transition: transform 0.5s var(--ease), box-shadow 0.5s, background 0.4s;
}

.journey-card:hover {
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 28px 56px rgba(12, 14, 16, 0.12);
}

.contact-card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(40px) saturate(200%);
  -webkit-backdrop-filter: blur(40px) saturate(200%);
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow:
    0 2px 0 rgba(255, 255, 255, 0.8) inset,
    0 32px 80px -12px rgba(12, 14, 16, 0.1);
}

.info-row:hover {
  border-color: rgba(43, 79, 255, 0.25);
  box-shadow: 0 8px 24px rgba(43, 79, 255, 0.08);
}

footer {
  background: linear-gradient(180deg, #1A1C22 0%, #0E1018 100%);
  border-top: none;
  position: relative;
}

footer::before {
  background: linear-gradient(90deg, transparent 0%, var(--pri) 40%, var(--vio) 60%, transparent 100%);
  opacity: 0.6;
}

.footer-col a:hover {
  color: var(--lime);
}

.btn-primary {
  box-shadow: 0 4px 20px rgba(12, 14, 16, 0.12);
  letter-spacing: -0.01em;
}

.btn-primary:hover {
  box-shadow: 0 16px 40px rgba(43, 79, 255, 0.35);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--pri);
  box-shadow: 0 0 0 4px rgba(43, 79, 255, 0.09), 0 2px 8px rgba(43, 79, 255, 0.06);
  background: rgba(255, 255, 255, 0.98);
}

.rv {
  opacity: 0;
  transform: translateY(32px) scale(0.98);
  transition: opacity 0.85s var(--ease), transform 0.85s var(--ease);
}

.rv.in {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.eyebrow::before {
  animation: eyebrowPulse 3s ease-in-out infinite;
}

@keyframes eyebrowPulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.4);
    opacity: 0.7;
  }
}

.gaming-hero {
  position: relative;
  padding: 130px 0 70px;
  overflow: hidden;
  background: linear-gradient(165deg, #EBE4D5 0%, #E5DED0 40%, #F0EAE0 100%);
  min-height: 85vh;
  display: flex;
  align-items: center;
}

.gaming-hero::before {
  content: '';
  position: absolute;
  inset: -40%;
  background:
    radial-gradient(ellipse 50% 40% at 60% 30%, rgba(123, 91, 255, 0.22) 0%, transparent 55%),
    radial-gradient(ellipse 40% 35% at 20% 70%, rgba(43, 79, 255, 0.16) 0%, transparent 55%),
    radial-gradient(ellipse 35% 30% at 85% 75%, rgba(255, 107, 53, 0.14) 0%, transparent 55%);
  animation: gamingAtmosphere 18s ease-in-out infinite alternate;
}

@keyframes gamingAtmosphere {
  0% {
    transform: scale(1) translate(0, 0);
    opacity: 0.8;
  }

  100% {
    transform: scale(1.08) translate(-2%, 2%);
    opacity: 1;
  }
}

.gaming-hero-canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.35;
}

.gaming-hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.gaming-hero-text {
  display: flex;
  flex-direction: column;
}

.gaming-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 16px 7px 11px;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(12, 14, 16, 0.08);
  border-radius: 100px;
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--ink-2);
  font-weight: 600;
  margin-bottom: 28px;
  align-self: flex-start;
  opacity: 0;
  animation: up 0.8s var(--ease) 0.1s forwards;
  letter-spacing: 0.04em;
}

.gaming-badge .badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--vio), var(--pri));
  box-shadow: 0 0 12px rgba(123, 91, 255, 0.6);
  animation: pulseLive 2s ease-in-out infinite;
}

.gaming-hero-title {
  font-size: clamp(38px, 4.8vw, 64px);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin-bottom: 20px;
}

.gaming-hero-title span.line {
  display: block;
  overflow: hidden;
  padding-bottom: 0.04em;
}

.gaming-hero-title span.line>span {
  display: inline-block;
  transform: translateY(110%);
  animation: lineUp 1.1s var(--ease) forwards;
}

.gaming-hero-title span.line:nth-child(1)>span {
  animation-delay: 0.2s;
}

.gaming-hero-title span.line:nth-child(2)>span {
  animation-delay: 0.32s;
}

.gaming-hero-title em {
  font-family: var(--f-serif);
  font-style: italic;
  font-weight: 400;
  background: linear-gradient(135deg, var(--vio) 0%, var(--pri) 50%, var(--orange) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  background-size: 200% 200%;
  animation: gradShift 7s ease infinite;
}

.gaming-hero-sub {
  font-size: 16px;
  color: var(--ink-soft);
  max-width: 500px;
  margin-bottom: 28px;
  line-height: 1.6;
  opacity: 0;
  animation: up 0.8s var(--ease) 0.9s forwards;
}

.gaming-hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  opacity: 0;
  animation: up 0.8s var(--ease) 1.05s forwards;
}

.gaming-hero-visual {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  max-width: 440px;
  margin: 0 auto;
  opacity: 0;
  animation: up 1s var(--ease) 0.5s forwards;
}

.gaming-orb {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 55%;
  height: 55%;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--vio) 0%, var(--pri) 50%, var(--orange) 100%);
  background-size: 200% 200%;
  animation: gradShift 5s ease infinite, coreFloat 4s ease-in-out infinite;
  box-shadow:
    0 0 0 20px rgba(123, 91, 255, 0.08),
    0 0 0 40px rgba(123, 91, 255, 0.04),
    0 20px 80px rgba(123, 91, 255, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.gaming-controller-svg {
  width: 78%;
  height: 78%;
  filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.25));
  transition: transform 0.4s var(--ease);
}

.gaming-orb:hover .gaming-controller-svg {
  transform: scale(1.08) rotate(-3deg);
}

.gaming-orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  border: 1px dashed rgba(12, 14, 16, 0.12);
  transform: translate(-50%, -50%);
}

.gaming-orbit-1 {
  width: 100%;
  height: 100%;
  animation: orbitSpin 50s linear infinite;
}

.gaming-orbit-2 {
  width: 74%;
  height: 74%;
  animation: orbitSpin 35s linear infinite reverse;
}

.gaming-float-tag {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(12, 14, 16, 0.07);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  color: var(--ink);
  box-shadow: 0 8px 28px rgba(12, 14, 16, 0.1);
  white-space: nowrap;
  z-index: 3;
}

.gaming-float-tag .ft-icon {
  font-size: 16px;
}

.gaming-float-tag.ft1 {
  top: 6%;
  left: 4%;
  animation: floatTag1 5s ease-in-out infinite;
}

.gaming-float-tag.ft2 {
  top: 10%;
  right: 2%;
  animation: floatTag2 6s ease-in-out infinite;
}

.gaming-float-tag.ft3 {
  bottom: 18%;
  left: -2%;
  animation: floatTag3 5.5s ease-in-out infinite;
}

.gaming-float-tag.ft4 {
  bottom: 8%;
  right: 6%;
  animation: floatTag4 6.5s ease-in-out infinite;
}

@media (max-width: 900px) {
  .gaming-hero-content {
    grid-template-columns: 1fr;
  }

  .gaming-hero-visual {
    max-width: 380px;
  }
}

@media (max-width: 560px) {
  .gaming-hero-visual {
    display: none;
  }

  .gaming-hero {
    padding: 120px 0 80px;
    min-height: auto;
  }
}

.gaming-pillars {
  padding: 120px 0;
  background: var(--surface);
  position: relative;
}

.gaming-pillars-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 64px;
}

.pillar-card {
  padding: 48px 40px;
  border-radius: 28px;
  position: relative;
  overflow: hidden;
  transition: transform 0.5s var(--ease), box-shadow 0.5s;
  display: flex;
  flex-direction: column;
  gap: 20px;
  isolation: isolate;
}

.pillar-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 40px 80px -20px rgba(12, 14, 16, 0.2);
}

.pillar-card.gamedev {
  background: linear-gradient(150deg, #2B3FD9 0%, #1E2DAA 100%);
  color: white;
}

.pillar-card.animation {
  background: linear-gradient(150deg, #6B35D9 0%, #4E1FAA 100%);
  color: white;
}

.pillar-card::before {
  content: '';
  position: absolute;
  width: 200%;
  height: 200%;
  top: -50%;
  right: -60%;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.3;
  z-index: -1;
  transition: transform 0.8s var(--ease), opacity 0.6s;
}

.pillar-card.gamedev::before {
  background: rgba(100, 150, 255, 0.8);
}

.pillar-card.animation::before {
  background: rgba(180, 120, 255, 0.8);
}

.pillar-card:hover::before {
  transform: scale(1.2);
  opacity: 0.45;
}

.pillar-icon {
  font-size: 48px;
  line-height: 1;
}

.pillar-card h3 {
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.pillar-card h3 em {
  font-family: var(--f-serif);
  font-style: italic;
  font-weight: 400;
  opacity: 0.85;
}

.pillar-card p {
  font-size: 15px;
  line-height: 1.7;
  opacity: 0.82;
}

@media (max-width: 700px) {
  .gaming-pillars-grid {
    grid-template-columns: 1fr;
  }
}

.gaming-section {
  padding: 120px 0;
  position: relative;
}

.gaming-section.alt-bg {
  background: linear-gradient(180deg, #EDE6D8 0%, #E8E1D4 100%);
}

.gaming-section-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 64px;
}

.gaming-section-title {
  font-size: clamp(36px, 4.5vw, 60px);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.gaming-section-title em {
  font-family: var(--f-serif);
  font-style: italic;
  font-weight: 400;
  background: linear-gradient(135deg, var(--vio) 0%, var(--pri) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.gaming-section-desc {
  font-size: 17px;
  line-height: 1.75;
  color: var(--ink-soft);
  max-width: 480px;
  align-self: end;
}

.gaming-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

@media (max-width: 800px) {
  .gaming-section-header {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .gaming-cards-grid {
    grid-template-columns: 1fr;
  }
}

.gaming-card {
  padding: 36px 32px;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(12, 14, 16, 0.08);
  border-radius: 24px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: transform 0.45s var(--ease), box-shadow 0.45s, background 0.3s, border-color 0.3s;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  overflow: hidden;
}

.gaming-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--pri), var(--vio));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
  border-radius: 3px 3px 0 0;
}

.gaming-card:hover::after {
  transform: scaleX(1);
}

.gaming-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 56px rgba(12, 14, 16, 0.12);
  background: rgba(255, 255, 255, 0.88);
  border-color: rgba(43, 79, 255, 0.15);
}

.gaming-card-icon {
  font-size: 36px;
  line-height: 1;
}

.gaming-card h4 {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--ink);
}

.gaming-card p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin: 0;
}

.gaming-card.anim-card::after {
  background: linear-gradient(90deg, var(--vio), var(--orange));
}

.gaming-tech {
  padding: 100px 0;
  background: var(--surface);
  position: relative;
  overflow: hidden;
}

.gaming-tech::before {
  content: '';
  position: absolute;
  inset: -30%;
  background: radial-gradient(ellipse 60% 40% at 50% 50%, rgba(43, 79, 255, 0.05), transparent 60%);
  pointer-events: none;
}

.tech-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-top: 56px;
}

.tech-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(12, 14, 16, 0.09);
  border-radius: 100px;
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  backdrop-filter: blur(10px);
  transition: transform 0.35s var(--ease), box-shadow 0.35s, background 0.3s;
  cursor: default;
}

.tech-pill:hover {
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 12px 32px rgba(12, 14, 16, 0.1);
  background: rgba(255, 255, 255, 0.95);
}

.tech-pill-emoji {
  font-size: 18px;
}

.gaming-why {
  padding: 120px 0;
  background: linear-gradient(180deg, #F5F0E8 0%, #EFE9DC 100%);
}

.gaming-why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.gaming-why-lead .gaming-section-title {
  margin-bottom: 24px;
}

.gaming-why-lead p {
  font-size: 17px;
  line-height: 1.8;
  color: var(--ink-soft);
  max-width: 460px;
}

.gaming-why-points {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.why-point {
  padding: 28px 32px;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(12, 14, 16, 0.08);
  border-radius: 20px;
  transition: transform 0.4s var(--ease), box-shadow 0.4s, background 0.3s;
  backdrop-filter: blur(10px);
}

.why-point:hover {
  transform: translateX(8px);
  box-shadow: 0 16px 40px rgba(12, 14, 16, 0.1);
  background: rgba(255, 255, 255, 0.85);
}

.why-point-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}

.why-point-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.why-point:nth-child(1) .why-point-icon {
  background: rgba(43, 79, 255, 0.1);
}

.why-point:nth-child(2) .why-point-icon {
  background: rgba(123, 91, 255, 0.1);
}

.why-point:nth-child(3) .why-point-icon {
  background: rgba(255, 107, 53, 0.1);
}

.why-point:nth-child(4) .why-point-icon {
  background: rgba(45, 212, 218, 0.1);
}

.why-point h4 {
  font-size: 17px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.02em;
}

.why-point p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin: 0;
}

@media (max-width: 900px) {
  .gaming-why-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

.gaming-process {
  padding: 120px 0;
  background: var(--surface);
}

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

.process-step {
  padding: 40px 36px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(12, 14, 16, 0.08);
  border-radius: 24px;
  backdrop-filter: blur(12px);
  position: relative;
  overflow: hidden;
  transition: transform 0.45s var(--ease), box-shadow 0.45s;
}

.process-step::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--pri), var(--vio));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease);
}

.process-step:hover::before {
  transform: scaleX(1);
}

.process-step:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 56px rgba(12, 14, 16, 0.12);
}

.process-num {
  font-family: var(--f-mono);
  font-size: 48px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 24px;
  background: linear-gradient(135deg, var(--pri), var(--vio));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  opacity: 0.25;
  transition: opacity 0.3s;
}

.process-step:hover .process-num {
  opacity: 0.45;
}

.process-step h3 {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: 14px;
}

.process-step p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--ink-soft);
  margin: 0;
}

@media (max-width: 700px) {
  .process-grid {
    grid-template-columns: 1fr;
  }
}

.gaming-cta-section {
  padding: 140px 0;
  background: linear-gradient(170deg, #EAE4D8 0%, #E4DED2 50%, #EDE8DF 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.gaming-cta-section::before {
  content: '';
  position: absolute;
  inset: -40%;
  background:
    radial-gradient(ellipse 60% 50% at 50% 50%, rgba(123, 91, 255, 0.12), transparent 55%);
  animation: floatA 20s ease-in-out infinite;
}

.gaming-cta-inner {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.gaming-cta-title {
  font-size: clamp(40px, 5.5vw, 72px);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin-bottom: 24px;
}

.gaming-cta-title em {
  font-family: var(--f-serif);
  font-style: italic;
  font-weight: 400;
  background: linear-gradient(135deg, var(--vio), var(--pri), var(--orange));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  background-size: 200% 200%;
  animation: gradShift 6s ease infinite;
}

.gaming-cta-desc {
  font-size: 18px;
  line-height: 1.7;
  color: var(--ink-soft);
  max-width: 520px;
  margin: 0 auto 40px;
}

[dir="rtl"] {
  font-family: 'Segoe UI', 'Arial', 'Tahoma', var(--f-sans), sans-serif;
  letter-spacing: 0;
}

[dir="rtl"] .nav {
  flex-direction: row-reverse;
}

[dir="rtl"] .nav-links {
  flex-direction: row-reverse;
}

[dir="rtl"] .logo {
  margin-right: 0;
  margin-left: auto;
}

[dir="rtl"] .hero-grid {
  direction: rtl;
}

[dir="rtl"] .hero-text {
  text-align: right;
}

[dir="rtl"] .hero-badge,
[dir="rtl"] .hero-cta {
  align-self: flex-end;
  justify-content: flex-end;
}

[dir="rtl"] .hero-sub {
  text-align: right;
}

[dir="rtl"] .eyebrow {
  flex-direction: row-reverse;
}

[dir="rtl"] .section-head {
  direction: rtl;
}

[dir="rtl"] .footer-inner {
  direction: rtl;
}

[dir="rtl"] .footer-col a:hover {
  padding-left: 0;
  padding-right: 8px;
}

[dir="rtl"] .about-opening {
  direction: rtl;
}

[dir="rtl"] .beat-label {
  flex-direction: row-reverse;
}

[dir="rtl"] .beat-quote {
  border-left: none;
  border-right: 3px solid;
  border-image: linear-gradient(180deg, #FF6B35, #FF4FA0) 1;
  padding-left: 0;
  padding-right: 32px;
  text-align: right;
}

[dir="rtl"] .info-row {
  flex-direction: row-reverse;
  text-align: right;
}

[dir="rtl"] .info-row:hover {
  transform: translateX(-6px);
}

[dir="rtl"] .contact-card {
  direction: rtl;
  text-align: right;
}

[dir="rtl"] .contact-info {
  text-align: right;
}

[dir="rtl"] .form-field {
  text-align: right;
}

[dir="rtl"] .form-submit {
  align-self: flex-end;
}

[dir="rtl"] .mobile-menu a {
  flex-direction: row-reverse;
}

[dir="rtl"] .mobile-menu a:hover {
  padding-left: 0;
  padding-right: 12px;
}

[dir="rtl"] .footer-bottom {
  flex-direction: row-reverse;
}

[dir="rtl"] .lang-toggle {
  flex-direction: row-reverse;
}

[dir="rtl"] .svc-art {
  flex-direction: row-reverse;
}

[dir="rtl"] .story-beat:hover .beat-title {
  transform: translateX(-8px);
}

[dir="rtl"] .gaming-hero-content {
  direction: rtl;
}

[dir="rtl"] .gaming-hero-text {
  text-align: right;
}

[dir="rtl"] .gaming-badge,
[dir="rtl"] .gaming-hero-cta {
  align-self: flex-end;
  justify-content: flex-end;
}

[dir="rtl"] .gaming-section-header {
  direction: rtl;
}

[dir="rtl"] .gaming-why-inner {
  direction: rtl;
}

[dir="rtl"] .why-point:hover {
  transform: translateX(-8px);
}

[dir="rtl"] .why-point-header {
  flex-direction: row-reverse;
}

[dir="rtl"] .gaming-section-title em {
  background: linear-gradient(225deg, var(--vio) 0%, var(--pri) 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.services-approach {
  background: linear-gradient(180deg, var(--paper-2) 0%, var(--paper-3) 100%);
}

.approach-header h2 {
  color: var(--ink);
}

.approach-header h2 em {
  font-family: var(--f-serif);
  font-style: italic;
  font-weight: 400;
  background: linear-gradient(135deg, var(--orange), var(--vio));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.approach-phase {
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(12, 14, 16, 0.08);
  backdrop-filter: blur(10px);
}

.approach-phase:hover {
  background: rgba(255, 255, 255, 0.8);
  border-color: rgba(12, 14, 16, 0.12);
  transform: translateY(-8px);
  box-shadow: 0 24px 56px rgba(12, 14, 16, 0.1);
}

.phase-number {
  color: var(--muted);
  opacity: 0.5;
}

.approach-phase h3 {
  color: var(--ink);
}

.approach-phase p {
  color: var(--ink-soft);
}

.services-cta {
  background: linear-gradient(180deg, var(--paper-3) 0%, var(--paper-2) 100%);
}

.cta-card {
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(12, 14, 16, 0.08);
}

.cta-card h2 {
  color: var(--ink);
}

.cta-card p {
  color: var(--ink-soft);
}

body.gaming-page {
  background: var(--paper) !important;
  color: var(--ink) !important;
}

body.gaming-page::before {
  opacity: 0.04;
}

body.gaming-page .nav {
  background: rgba(255, 255, 255, 0.72) !important;
  border-color: rgba(0, 0, 0, 0.05) !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06), 0 0 0 1px rgba(255, 255, 255, 0.4) inset !important;
}

body.gaming-page .nav-links a {
  color: var(--ink-soft) !important;
}

body.gaming-page .nav-links a:hover {
  color: var(--ink) !important;
  background: rgba(0, 0, 0, 0.04) !important;
}

body.gaming-page .nav-links a.active {
  color: var(--ink) !important;
  background: rgba(0, 0, 0, 0.06) !important;
}

body.gaming-page .lang-toggle {
  background: rgba(0, 0, 0, 0.04) !important;
  border-color: rgba(0, 0, 0, 0.06) !important;
}

body.gaming-page .lang-option {
  color: var(--ink-soft) !important;
}

body.gaming-page .lang-option.active {
  color: #fff !important;
  background: var(--pri) !important;
}

body.gaming-page .mobile-toggle {
  background: rgba(0, 0, 0, 0.04) !important;
}

body.gaming-page .logo-img {
  filter: none !important;
}

.gaming-hero {
  background: var(--paper) !important;
}

.gaming-pillars {
  background: var(--surface) !important;
}

.gaming-tech {
  background: var(--surface) !important;
}

.gaming-section {
  background: var(--paper) !important;
}

.gaming-section.alt-bg {
  background: var(--paper-2) !important;
}

.gaming-why {
  background: var(--paper-2) !important;
}

body.gaming-page .section-title,
body.gaming-page .gaming-hero-title,
body.gaming-page .gaming-section-title,
body.gaming-page h2:not(.gaming-cta-title),
body.gaming-page h3,
body.gaming-page h4:not(footer h4) {
  color: var(--ink) !important;
}

body.gaming-page .gaming-hero-sub,
body.gaming-page p:not(.gaming-cta-desc):not(footer p) {
  color: var(--ink-soft) !important;
}

body.gaming-page .gaming-cta-section,
body.gaming-page .gaming-cta-section h2,
body.gaming-page .gaming-cta-section span,
body.gaming-page .gaming-cta-section p {
  color: #FFFFFF !important;
}

body.gaming-page .gaming-cta-section p {
  color: rgba(255, 255, 255, 0.7) !important;
}

body.gaming-page footer h4,
body.gaming-page footer span {
  color: #FFFFFF !important;
}

body.gaming-page footer p {
  color: rgba(255, 255, 255, 0.65) !important;
}

body.gaming-page footer a {
  color: rgba(255, 255, 255, 0.75) !important;
}

body.gaming-page footer a:hover {
  color: #FFFFFF !important;
}

body.gaming-page .gaming-card,
body.gaming-page .why-point,
body.gaming-page .process-step,
body.gaming-page .tech-pill,
body.gaming-page .pillar-card {
  background: rgba(255, 255, 255, 0.7) !important;
  border: 1px solid rgba(12, 14, 16, 0.08) !important;
  box-shadow: 0 4px 16px rgba(12, 14, 16, 0.04) !important;
  color: var(--ink) !important;
}

body.gaming-page .gaming-card:hover,
body.gaming-page .why-point:hover,
body.gaming-page .process-step:hover,
body.gaming-page .tech-pill:hover {
  background: rgba(255, 255, 255, 0.92) !important;
  border-color: var(--pri) !important;
  box-shadow: 0 16px 40px rgba(12, 14, 16, 0.12) !important;
  color: var(--ink) !important;
}

body.gaming-page .pillar-card.gamedev {
  background: linear-gradient(150deg, #2B3FD9 0%, #1E2DAA 100%) !important;
  color: white !important;
}

body.gaming-page .pillar-card.animation {
  background: linear-gradient(150deg, #6B35D9 0%, #4E1FAA 100%) !important;
  color: white !important;
}

body.gaming-page .pillar-card.gamedev h3,
body.gaming-page .pillar-card.animation h3,
body.gaming-page .pillar-card h3,
body.gaming-page .pillar-card h3 span {
  color: #FFFFFF !important;
}

body.gaming-page .pillar-card.gamedev p,
body.gaming-page .pillar-card.animation p,
body.gaming-page .pillar-card p {
  color: rgba(255, 255, 255, 0.88) !important;
}

.gaming-float-tag {
  background: rgba(255, 255, 255, 0.85) !important;
  backdrop-filter: blur(16px) !important;
  -webkit-backdrop-filter: blur(16px) !important;
  border: 1px solid rgba(255, 255, 255, 0.5) !important;
  color: var(--ink) !important;
  box-shadow: 0 8px 32px rgba(12, 14, 16, 0.08) !important;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), background 0.3s !important;
}

.gaming-float-tag:hover {
  transform: translateY(-5px) scale(1.05) !important;
  background: rgba(255, 255, 255, 0.95) !important;
  border-color: var(--pri) !important;
  box-shadow: 0 16px 40px rgba(123, 91, 255, 0.2) !important;
}

.gaming-badge {
  background: rgba(77, 121, 255, 0.08) !important;
  border-color: rgba(77, 121, 255, 0.2) !important;
  color: var(--pri) !important;
}

.gaming-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 70% 20%, rgba(139, 111, 255, 0.06) 0%, transparent 55%), radial-gradient(ellipse 50% 50% at 10% 80%, rgba(0, 229, 255, 0.04) 0%, transparent 55%);
  pointer-events: none;
}

.gaming-orb {
  background: linear-gradient(135deg, var(--vio), var(--pri), var(--cyan));
  box-shadow: 0 0 0 16px rgba(139, 111, 255, 0.04), 0 0 0 32px rgba(139, 111, 255, 0.02), 0 0 80px rgba(139, 111, 255, 0.3);
}

body {
  background-color: var(--paper) !important;
  background-image:
    radial-gradient(rgba(12, 14, 16, 0.03) 1px, transparent 1px),
    radial-gradient(rgba(12, 14, 16, 0.025) 1.5px, transparent 1.5px) !important;
  background-size: 24px 24px, 48px 48px !important;
  background-position: 0 0, 12px 12px !important;
}

@media (min-width: 881px) {
  .nav {
    display: grid !important;
    grid-template-columns: 200px 1fr 240px !important;
    align-items: center;
    padding: 8px 12px 8px 20px !important;
  }

  .logo {
    grid-column: 1;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    margin: 0 !important;
  }

  .nav-links {
    grid-column: 2;
    display: flex !important;
    justify-content: center !important;
    gap: 6px !important;
    margin: 0 auto !important;
    padding: 0 !important;
  }

  .nav-right {
    grid-column: 3;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    gap: 8px !important;
    margin: 0 !important;
  }

  .logo-img {
    height: 34px !important;
    width: auto !important;
    max-width: 140px !important;
    object-fit: contain !important;
    display: block !important;
  }
}

[dir="rtl"] .nav {
  direction: ltr !important;
}

[dir="rtl"] .nav-links {
  direction: ltr !important;
  flex-direction: row !important;
}

[dir="rtl"] .nav-right {
  direction: ltr !important;
  flex-direction: row !important;
}

[dir="rtl"] .nav-links a {
  direction: rtl !important;
  unicode-bidi: embed;
}

[dir="rtl"] .nav-cta-text,
[dir="rtl"] .lang-option {
  direction: rtl !important;
  unicode-bidi: embed;
}

[dir="rtl"] .logo {
  margin-right: 0 !important;
  margin-left: 0 !important;
}

[dir="rtl"] .lang-toggle {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.services-cta,
.cta,
.gaming-cta-section {
  background: #0D0F18 !important;
  color: #FFFFFF !important;
  border-top: 1px solid rgba(255, 255, 255, 0.06) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06) !important;
  position: relative;
  overflow: hidden;
}

.services-cta::before,
.cta::before,
.gaming-cta-section::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(77, 121, 255, 0.06) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.services-cta .cta-card,
.cta .rv,
.gaming-cta-inner {
  position: relative;
  z-index: 1;
}

.services-cta h2,
.cta h2,
.gaming-cta-title {
  color: #FFFFFF !important;
}

.services-cta p,
.cta p,
.gaming-cta-desc {
  color: rgba(255, 255, 255, 0.6) !important;
}

.services-approach {
  background: #0D0F18 !important;
  color: #FFFFFF !important;
  padding: 120px 0 !important;
  border-top: 1px solid rgba(255, 255, 255, 0.06) !important;
}

.services-approach .approach-header h2 {
  color: #FFFFFF !important;
}

.services-approach .approach-phase {
  background: rgba(255, 255, 255, 0.02) !important;
  border: 1px solid rgba(255, 255, 255, 0.06) !important;
  color: #FFFFFF !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.services-approach .approach-phase:hover {
  background: rgba(255, 255, 255, 0.04) !important;
  border-color: rgba(255, 255, 255, 0.15) !important;
  transform: translateY(-8px) !important;
}

.services-approach .approach-phase h3 {
  color: #FFFFFF !important;
}

.services-approach .approach-phase p {
  color: rgba(255, 255, 255, 0.6) !important;
}

.services-approach .phase-number {
  color: var(--pri) !important;
  opacity: 0.8 !important;
  font-family: var(--f-mono);
}

.beat-quote {
  background: #0D0F18 !important;
  color: #FFFFFF !important;
  border-radius: 12px !important;
  padding: 24px 32px !important;
  font-family: var(--f-serif) !important;
  font-size: 20px !important;
  font-style: italic !important;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  margin: 20px 0 !important;
}

.contact-page .form-container {
  background: #0C0E12 !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  box-shadow: 0 40px 80px -15px rgba(0, 0, 0, 0.45) !important;
  color: #FFFFFF !important;
  padding: 60px 48px !important;
  border-radius: 32px !important;
}

.contact-page .enhanced-form {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  padding: 0 !important;
}

.contact-page .enhanced-form input::placeholder,
.contact-page .enhanced-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.45) !important;
}

.contact-page .form-header h2 {
  color: #FFFFFF !important;
  font-family: var(--f-sans) !important;
  font-size: clamp(32px, 4vw, 48px) !important;
  font-weight: 800 !important;
  letter-spacing: -0.03em !important;
  line-height: 1.15 !important;
}

.contact-page .form-header p {
  color: rgba(255, 255, 255, 0.65) !important;
  font-family: var(--f-sans) !important;
  font-size: 15px !important;
  line-height: 1.75 !important;
  font-weight: 450 !important;
}

.contact-page .enhanced-form label {
  color: rgba(255, 255, 255, 0.5) !important;
  font-family: var(--f-mono) !important;
  font-size: 11px !important;
  text-transform: uppercase !important;
  letter-spacing: 0.12em !important;
  font-weight: 600 !important;
}

.contact-page .enhanced-form input[type="text"],
.contact-page .enhanced-form input[type="email"],
.contact-page .enhanced-form input[type="tel"],
.contact-page .enhanced-form select,
.contact-page .enhanced-form textarea {
  background: rgba(255, 255, 255, 0.03) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  color: #FFFFFF !important;
  border-radius: 8px !important;
  transition: border-color 0.3s, background-color 0.3s;
  font-family: var(--f-sans) !important;
  font-size: 14px !important;
  letter-spacing: -0.01em !important;
  font-weight: 400 !important;
}

.contact-page .enhanced-form input:focus,
.contact-page .enhanced-form select:focus,
.contact-page .enhanced-form textarea:focus {
  border-color: var(--pri) !important;
  background: rgba(255, 255, 255, 0.06) !important;
  outline: none;
}

.contact-page .budget-option,
.contact-page .urgency-option {
  background: rgba(255, 255, 255, 0.03) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  color: rgba(255, 255, 255, 0.7) !important;
  font-family: var(--f-sans) !important;
  font-size: 13px !important;
}

.contact-page .budget-option:hover,
.contact-page .urgency-option:hover {
  background: rgba(255, 255, 255, 0.06) !important;
  border-color: rgba(255, 255, 255, 0.15) !important;
  color: #FFFFFF !important;
}

.contact-page .budget-option.selected {
  background: linear-gradient(135deg, var(--pri) 0%, var(--vio) 100%) !important;
  border-color: var(--pri) !important;
  color: #FFFFFF !important;
}

.contact-page .urgency-option.selected {
  background: linear-gradient(135deg, var(--orange) 0%, var(--pink) 100%) !important;
  border-color: var(--orange) !important;
}

.contact-page .urgency-option.selected .urgency-text {
  color: #FFFFFF !important;
}

.contact-page .urgency-text {
  color: rgba(255, 255, 255, 0.9);
  font-family: var(--f-sans) !important;
  font-size: 15px !important;
}

.contact-page .urgency-label {
  font-family: var(--f-mono) !important;
  font-size: 10px !important;
  letter-spacing: 0.1em !important;
}

.contact-page .enhanced-form option {
  background: #0D0F18;
  color: #FFFFFF;
}

.contact-faq .faq-item {
  background: rgba(255, 255, 255, 0.02) !important;
  border: 1px solid rgba(255, 255, 255, 0.06) !important;
}

.contact-faq .faq-item:hover {
  background: rgba(255, 255, 255, 0.04) !important;
  border-color: rgba(255, 255, 255, 0.12) !important;
}

.contact-embed .contact-card {
  background: #0C0E12 !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  color: #FFFFFF !important;
  box-shadow: 0 40px 80px -15px rgba(0, 0, 0, 0.45) !important;
}

.contact-embed .contact-card .contact-left h2 {
  color: #FFFFFF !important;
}

.contact-embed .contact-card .contact-tag {
  color: rgba(255, 255, 255, 0.6) !important;
}

.contact-embed .contact-card .info-row {
  background: rgba(255, 255, 255, 0.02) !important;
  border: 1px solid rgba(255, 255, 255, 0.06) !important;
}

.contact-embed .contact-card .info-row:hover {
  background: rgba(255, 255, 255, 0.04) !important;
  border-color: rgba(255, 255, 255, 0.15) !important;
}

.contact-embed .contact-card .info-label {
  color: rgba(255, 255, 255, 0.5) !important;
}

.contact-embed .contact-card .info-val {
  color: #FFFFFF !important;
}

.contact-embed .contact-card .form-heading {
  color: #FFFFFF !important;
}

.contact-embed .contact-card .form-heading-sub {
  color: rgba(255, 255, 255, 0.55) !important;
}

.contact-embed .contact-card .form-field label {
  color: rgba(255, 255, 255, 0.75) !important;
}

.contact-embed .contact-card .form-field input,
.contact-embed .contact-card .form-field select,
.contact-embed .contact-card .form-field textarea {
  background: rgba(255, 255, 255, 0.03) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  color: #FFFFFF !important;
}

.contact-embed .contact-card .form-field input:focus,
.contact-embed .contact-card .form-field select:focus,
.contact-embed .contact-card .form-field textarea:focus {
  background: rgba(255, 255, 255, 0.06) !important;
  border-color: var(--pri) !important;
  box-shadow: 0 0 0 3px rgba(77, 121, 255, 0.25) !important;
  color: #FFFFFF !important;
}

.contact-embed .contact-card .form-field select option {
  background: #0D0F18 !important;
  color: #FFFFFF !important;
}

.contact-embed .contact-card .form-submit {
  background: #FFFFFF !important;
  color: #0C0E10 !important;
}

.contact-embed .contact-card .form-submit:hover {
  color: #FFFFFF !important;
}

.contact-embed .contact-card input::placeholder,
.contact-embed .contact-card textarea::placeholder {
  color: rgba(255, 255, 255, 0.45) !important;
}

.logo {
  display: inline-flex !important;
  align-items: center !important;
  gap: 10px !important;
  text-decoration: none !important;
  overflow: visible !important;
  height: auto !important;
}

.logo-svg {
  transition: transform 0.4s var(--ease-spring) !important;
}

.logo:hover .logo-svg {
  transform: scale(1.15) rotate(15deg) !important;
}

.logo span {
  font-family: var(--f-sans) !important;
  font-size: 19px !important;
  font-weight: 850 !important;
  letter-spacing: -0.04em !important;
  color: var(--ink) !important;
  transition: color 0.3s var(--ease), opacity 0.3s var(--ease) !important;
  direction: ltr !important;
  display: inline-block !important;
}

.logo:hover span {
  color: var(--pri) !important;
}

.footer-brand .logo span {
  color: var(--paper) !important;
}

.footer-brand .logo:hover span {
  color: var(--cyan) !important;
}

.svc.s5 {
  background: linear-gradient(160deg, #12141F 0%, #07080D 100%) !important;
  border: 1px solid rgba(139, 111, 255, 0.2) !important;
  grid-column: span 2 !important;
}

.svc.s5:hover {
  border-color: var(--vio) !important;
  box-shadow: 0 30px 60px -20px rgba(139, 111, 255, 0.25) !important;
}

.svc.s5 .svc-title {
  color: #FFFFFF !important;
}

.svc.s5 .svc-desc {
  color: rgba(255, 255, 255, 0.75) !important;
}

.svc.s5 .svc-cta {
  color: var(--vio) !important;
}

.svc.s5 .svc-num {
  color: var(--vio) !important;
}

@media (max-width: 880px) {
  .svc.s5 {
    grid-column: auto !important;
  }
}

.scene-tag.t5 {
  position: absolute;
  top: 48%;
  right: -5%;
  animation: floatTag5 5.8s ease-in-out infinite;
  z-index: 2;
}

.scene-tag.t5 .dot {
  background: var(--pink) !important;
}

@keyframes floatTag5 {

  0%,
  100% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(-6px, 10px);
  }
}

.gaming-video-section {
  padding: 80px 0;
  background: var(--dark);
  position: relative;
}

.video-wrapper {
  position: relative;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(139, 111, 255, 0.15), 0 0 0 1px rgba(255, 255, 255, 0.08);
  aspect-ratio: 16 / 9;
  background: #000;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.video-wrapper:hover {
  transform: scale(1.015);
  box-shadow: 0 30px 60px rgba(139, 111, 255, 0.25), 0 0 0 1px rgba(139, 111, 255, 0.4);
}

.gaming-showcase-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(7, 8, 13, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s var(--ease);
  pointer-events: none;
}

.video-wrapper:hover .video-overlay {
  opacity: 1;
}

.play-btn-circle {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  transform: scale(0.9);
  transition: transform 0.3s var(--ease-spring);
}

.video-wrapper:hover .play-btn-circle {
  transform: scale(1);
}

.play-btn-circle svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
  margin-left: 2px;
}