/* Base */
html,
body {
  height: 100%;
  margin: 0;
}

* {
  box-sizing: border-box;
}

a {
    text-decoration: none; /* Убирает подчеркивание */
}

button {
  all: unset; /* Сбрасывает все свойства */
  cursor: pointer; /* Возвращает курсор "рука" */
  /* Или более детально: */
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  font: inherit;
  color: inherit;
}

/* Animations */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideRight {
  from { opacity: 0; transform: translateX(-60px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

@keyframes count-line {
  from { width: 0; }
  to { width: 100%; }
}

@keyframes orbit {
  from { transform: rotate(0deg) translateX(210px) rotate(0deg); }
  to { transform: rotate(360deg) translateX(210px) rotate(-360deg); }
}

@keyframes orbit-sm {
  from { transform: rotate(0deg) translateX(140px) rotate(0deg); }
  to { transform: rotate(360deg) translateX(140px) rotate(-360deg); }
}

@keyframes spin-core {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(-360deg); }
}

@keyframes rocket-rise {
  0% {
    transform: translate3d(-185px, 40px, 0) rotate(0deg);
    opacity: 0.2;
  }
  18% {
    opacity: 0.95;
  }
  82% {
    transform: translate3d(34px, -138px, 0) rotate(0deg);
    opacity: 1;
  }
  94% {
    transform: translate3d(170px, -205px, 0) rotate(0deg);
    opacity: 1;
  }
  100% {
    transform: translate3d(170px, -205px, 0) rotate(0deg);
    opacity: 0;
  }
}

@keyframes rocket-rise-trail {
  0% {
    transform: translate3d(-185px, 40px, 0) rotate(38deg) scaleY(1);
    opacity: 0.2;
  }
  18% {
    opacity: 0.95;
  }
  82% {
    transform: translate3d(34px, -138px, 0) rotate(38deg) scaleY(0.84);
    opacity: 1;
  }
  94% {
    transform: translate3d(170px, -205px, 0) rotate(38deg) scaleY(0.56);
    opacity: 1;
  }
  100% {
    transform: translate3d(170px, -205px, 0) rotate(38deg) scaleY(0.56);
    opacity: 0;
  }
}

@keyframes rocket-trail {
  0%, 100% {
    filter: blur(0.35px) brightness(0.92);
    box-shadow: 0 0 8px rgba(255, 107, 62, 0.18);
  }
  24% {
    filter: blur(0.8px) brightness(1.2);
    box-shadow: 0 0 14px rgba(255, 107, 62, 0.3);
  }
  52% {
    filter: blur(0.5px) brightness(1.05);
    box-shadow: 0 0 10px rgba(255, 107, 62, 0.22);
  }
  74% {
    filter: blur(1.05px) brightness(1.28);
    box-shadow: 0 0 18px rgba(255, 107, 62, 0.4);
  }
}

@keyframes orbit-growth-reveal {
  0%, 64% {
    opacity: 0;
    transform: translateY(8px) scale(1.02);
  }
  76% {
    opacity: 0.18;
    transform: translateY(0) scale(1.06);
  }
  92% {
    opacity: 0.28;
    transform: translateY(-2px) scale(1.08);
  }
  100% {
    opacity: 0.06;
    transform: translateY(-4px) scale(1.04);
  }
}

.anim-fade-up { animation: fadeUp 0.8s ease-out forwards; opacity: 0; }
.anim-fade-in { animation: fadeIn 1s ease-out forwards; opacity: 0; }
.anim-slide-right { animation: slideRight 0.8s ease-out forwards; opacity: 0; }
.anim-float { animation: float 4s ease-in-out infinite; }

.delay-1 { animation-delay: 0.15s; }
.delay-2 { animation-delay: 0.3s; }
.delay-3 { animation-delay: 0.45s; }
.delay-4 { animation-delay: 0.6s; }

.gradient-text {
  background: linear-gradient(135deg, #ff6b3e, #ff3e7a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.card-hover {
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.card-hover:hover {
  transform: translateY(-8px);
}

.card-hover:hover .card-icon-bg,
.card-hover:hover .services__icon {
  transform: scale(1.1);
}

.cta-btn {
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.cta-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.cta-btn:hover::before {
  width: 300px;
  height: 300px;
}

.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(255, 107, 62, 0.4);
}

.stat-line {
  height: 3px;
  border-radius: 2px;
  animation: count-line 1.5s ease-out forwards;
}

.scroll-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.7s cubic-bezier(0.23, 1, 0.32, 1);
}

.scroll-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.15;
  pointer-events: none;
}

.nav-link {
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.orbit-dot {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin: -4px 0 0 -4px;
}

.marquee-track {
  display: flex;
  animation: marquee-scroll 20s linear infinite;
  width: max-content;
}

@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes ambient-drift {
  0% {
    transform: translate3d(-4%, -2%, 0) scale(1);
  }
  50% {
    transform: translate3d(4%, 2%, 0) scale(1.08);
  }
  100% {
    transform: translate3d(-4%, -2%, 0) scale(1);
  }
}

@keyframes grid-shift {
  from {
    background-position: 0 0, 0 0, 0 0;
  }
  to {
    background-position: 0 0, 100px 100px, 0 140px;
  }
}

@keyframes scanline-flicker {
  0%, 100% {
    opacity: 0.22;
  }
  50% {
    opacity: 0.36;
  }
}

:root {
  --bg-color: #0a0a0f;
  --surface-color: rgba(255, 255, 255, 0.03);
  --text-color: #f0ece6;
  --primary-color: #ff6b3e;
  --secondary-color: #ff3e7a;
  --neon-cyan: #00f2ff;
  --neon-blue: #45a3ff;
  --font-family: "Outfit", sans-serif;
  --text-muted: rgba(240, 236, 230, 0.5);
  --text-muted-soft: rgba(240, 236, 230, 0.45);
  --text-muted-dim: rgba(240, 236, 230, 0.4);
  --text-muted-strong: rgba(240, 236, 230, 0.6);
  --text-muted-faint: rgba(240, 236, 230, 0.3);
}

.theme-root {
  background-color: var(--bg-color);
  color: var(--text-color);
  font-family: var(--font-family);
}

.text-accent { color: var(--primary-color); }
.text-contrast { color: var(--bg-color); }
.text-muted { color: var(--text-muted); }
.text-muted-soft { color: var(--text-muted-soft); }
.text-muted-dim { color: var(--text-muted-dim); }
.text-muted-strong { color: var(--text-muted-strong); }
.text-muted-faint { color: var(--text-muted-faint); }

.font-mono { font-family: "Space Mono", monospace; }

.icon-12 { width: 12px; height: 12px; }
.icon-14 { width: 14px; height: 14px; }
.icon-16 { width: 16px; height: 16px; }
.icon-18 { width: 18px; height: 18px; }
.icon-24 { width: 24px; height: 24px; }
.icon-star { color: var(--primary-color); fill: var(--primary-color); }

.top-bar {
  background: rgba(255, 107, 62, 0.08);
  border-bottom: 1px solid rgba(255, 107, 62, 0.1);
  backdrop-filter: blur(12px);
}

.main-nav {
  backdrop-filter: blur(16px);
  background: rgba(10, 10, 15, 0.7);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-link {
  color: var(--text-muted-strong);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-link:hover,
.top-bar a.text-muted:hover {
  color: var(--primary-color);
}

.nav-link::after {
  background: var(--primary-color);
}

.nav-link-muted {
  color: var(--text-muted-strong);
  transition: color 0.3s ease;
}

.nav-link-muted:hover {
  color: var(--primary-color);
}

.brand-mark {
  width: 32px;
  height: 32px;
  background: var(--primary-color);
  border-radius: 8px;
}

.brand-mark-sm {
  width: 28px;
  height: 28px;
  border-radius: 6px;
}

.brand-logo {
  display: block;
  width: auto;
  height: auto;
  object-fit: contain;
}

.brand-logo-nav {
  width: 32px;
  height: 32px;
}

.brand-logo-footer {
  width: 28px;
  height: 28px;
}

.brand-wordmark {
  display: block;
  width: auto;
  height: auto;
  object-fit: contain;
}

.brand-wordmark-nav {
  width: clamp(170px, 24vw, 250px);
  max-height: 56px;
}

.brand-wordmark-footer {
  width: clamp(190px, 28vw, 300px);
  max-height: none;
}

.hero-section {
  position: relative;
  overflow: hidden;
  min-height: 85%;
  padding-top: 180px;
  padding-bottom: 80px;
}

.hero-orb-primary {
  width: 400px;
  height: 400px;
  background: var(--primary-color);
  top: 10%;
  right: -5%;
}

.hero-orb-secondary {
  width: 300px;
  height: 300px;
  background: var(--secondary-color);
  bottom: 10%;
  left: -8%;
}

.orbit-visual {
  position: absolute;
  top: 60%;
  right: 8%;
  transform: translateY(-50%);
  width: 460px;
  height: 460px;
}

.orbit-growth {
  position: absolute;
  inset: -64px;
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(0, 242, 255, 0.06), rgba(0, 242, 255, 0.01)),
    repeating-linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.05) 0 1px,
      transparent 1px 44px
    ),
    repeating-linear-gradient(
      0deg,
      rgba(255, 255, 255, 0.04) 0 1px,
      transparent 1px 30px
    );
  border: 1px solid rgba(0, 242, 255, 0.12);
  opacity: 0;
  z-index: 1;
  transform-origin: center;
  animation: orbit-growth-reveal 6.6s ease-out infinite;
}

.orbit-growth-bars {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 22px;
  height: 180px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: clamp(10px, 1vw, 18px);
}

.orbit-growth-bar {
  width: clamp(14px, 1.6vw, 24px);
  border-radius: 12px 12px 4px 4px;
  background: linear-gradient(180deg, rgba(0, 242, 255, 0.7), rgba(255, 107, 62, 0.25));
}

.orbit-growth-bar-1 { height: 56px; }
.orbit-growth-bar-2 { height: 92px; }
.orbit-growth-bar-3 { height: 128px; }
.orbit-growth-bar-4 { height: 164px; }
.orbit-growth-bar-5 { height: 118px; }
.orbit-growth-bar-6 { height: 144px; }
.orbit-growth-bar-7 { height: 98px; }
.orbit-growth-bar-8 { height: 170px; }

.orbit-ring {
  position: absolute;
  border-radius: 50%;
  z-index: 2;
}

.orbit-ring-outer {
  inset: 0;
  border: 1px solid rgba(255, 107, 62, 0.1);
}

.orbit-ring-inner {
  inset: 46px;
  border: 1px solid rgba(255, 107, 62, 0.08);
}

.orbit-dot-primary {
  background: var(--primary-color);
  animation: orbit 8s linear infinite;
  z-index: 3;
}

.orbit-dot-secondary {
  background: var(--secondary-color);
  animation: orbit 8s linear infinite;
  animation-delay: -4s;
  z-index: 3;
}

.orbit-dot-small {
  background: var(--primary-color);
  opacity: 0.5;
  animation: orbit-sm 6s linear infinite;
  width: 10px;
  height: 10px;
  margin: -5px 0 0 -5px;
  z-index: 3;
}

.orbit-core {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 52px;
  height: 52px;
  object-fit: contain;
  filter: drop-shadow(0 0 24px rgba(255, 107, 62, 0.42));
  animation: spin-core 10s linear infinite;
  z-index: 4;
}

.sales-rocket {
  position: absolute;
  left: 4%;
  bottom: 3%;
  width: 190px;
  height: 220px;
  z-index: 5;
  pointer-events: none;
}

.sales-rocket-trail {
  position: absolute;
  left: 74px;
  top: 70px;
  width: 8px;
  height: 118px;
  border-radius: 999px;
  transform-origin: top center;
  transform: rotate(0deg);
  background: linear-gradient(180deg, rgba(255, 107, 62, 0.7), rgba(0, 242, 255, 0.08));
  filter: blur(0.4px);
  animation:
    rocket-rise-trail 6.6s linear infinite,
    rocket-trail 1.2s ease-in-out infinite;
}

.sales-rocket-icon {
  position: absolute;
  left: 70px;
  top: 44px;
  width: 34px;
  height: 34px;
  color: #ff7a45;
  filter: drop-shadow(0 0 18px rgba(255, 107, 62, 0.58));
  animation: rocket-rise 6.6s linear infinite;
}

.hero-badge {
  background: rgba(255, 107, 62, 0.1);
  border: 1px solid rgba(255, 107, 62, 0.2);
  color: var(--primary-color);
}

.hero-badge-dot {
  width: 6px;
  height: 6px;
  background: var(--primary-color);
  border-radius: 50%;
  display: inline-block;
}

.hero-subtitle {
  max-width: 540px;
  color: var(--text-muted);
}

.btn-primary {
  background: var(--primary-color);
  color: var(--bg-color);
}

.btn-liquid {
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: rgba(255, 255, 255, 0.92);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.05)),
    linear-gradient(135deg, rgba(255, 107, 62, 0.18), rgba(255, 62, 122, 0.1));
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.38),
    inset 0 -10px 20px rgba(255, 255, 255, 0.04),
    0 12px 28px rgba(0, 0, 0, 0.32);
}

.btn-liquid::before {
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: radial-gradient(120% 160% at 12% 12%, rgba(255, 255, 255, 0.34), transparent 52%);
  opacity: 0.85;
  transition: opacity 0.3s ease;
}

.btn-liquid::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.2), transparent 45%);
}

.btn-liquid:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.42);
  transform: translateY(-2px) scale(1.01);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.46),
    inset 0 -10px 24px rgba(255, 255, 255, 0.06),
    0 16px 34px rgba(255, 107, 62, 0.22);
}

.btn-liquid:hover::before {
  width: 100%;
  height: 100%;
  opacity: 1;
}

.btn-submit {
  border: 0;
  cursor: pointer;
}

.marquee-section {
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.marquee-content {
  color: rgba(240, 236, 230, 0.15);
  font-family: "Space Mono", monospace;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  white-space: nowrap;
}

.surface-card {
  background: var(--surface-color);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.surface-card-soft {
  border-color: rgba(255, 255, 255, 0.05);
}

.stat-line-fill {
  max-width: 60px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.section-kicker,
.section-block__kicker {
  color: var(--primary-color);
  font-family: "Space Mono", monospace;
}

.delay-step-1 { transition-delay: 0.15s; }
.delay-step-2 { transition-delay: 0.2s; }
.delay-step-3 { transition-delay: 0.3s; }
.delay-step-4 { transition-delay: 0.4s; }
.delay-step-5 { transition-delay: 0.45s; }

.card-icon-wrap {
  background: rgba(255, 107, 62, 0.12);
}

.process-step-number {
  color: rgba(255, 107, 62, 0.12);
  font-family: "Space Mono", monospace;
}

.avatar-dot {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.avatar-dot-alt {
  background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
}

.form-shell {
  background: var(--surface-color);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 32px;
  border-radius: 24px;
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: var(--text-color);
  font-family: var(--font-family);
  font-size: 1rem;
  line-height: 1.5;
}

.form-control:focus {
  border-color: rgba(255, 107, 62, 0.3);
  outline: none;
}

.form-control-textarea {
  resize: none;
  min-height: 120px;
  appearance: none;
}

.form-control::placeholder {
  color: rgba(240, 236, 230, 0.42);
  opacity: 1;
}

.form-success {
  display: none;
  padding: 16px;
  background: rgba(76, 175, 80, 0.1);
  border: 1px solid rgba(76, 175, 80, 0.3);
  border-radius: 12px;
  text-align: center;
  color: rgba(76, 175, 80, 0.8);
}

.form-error {
  display: none;
  padding: 16px;
  background: rgba(255, 107, 62, 0.12);
  border: 1px solid rgba(255, 107, 62, 0.38);
  border-radius: 12px;
  text-align: center;
  color: rgba(255, 160, 130, 0.95);
}

.cta-panel {
  background: linear-gradient(135deg, rgba(255, 107, 62, 0.15), rgba(255, 62, 122, 0.08));
  border: 1px solid rgba(255, 107, 62, 0.15);
}

.cta-panel-glow {
  background: radial-gradient(circle at 30% 50%, rgba(255, 107, 62, 0.1), transparent 60%);
}

.cta-subtitle {
  max-width: 480px;
  color: var(--text-muted);
}

.footer-shell {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-social-link {
  background: rgba(255, 255, 255, 0.05);
}

.footer-social-link:hover {
  background: rgba(255, 107, 62, 0.2);
}

.gradient-text {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Distinct Visual Language (non-tailwind-like) */
:root {
  --paper-shadow: 0 18px 38px rgba(0, 0, 0, 0.35);
  --soft-outline: 1px solid rgba(255, 255, 255, 0.14);
  --top-bar-height: 32px;
  --site-nav-height: clamp(68px, 7vw, 84px);
  --site-header-offset: calc(var(--top-bar-height) + var(--site-nav-height));
}

.theme-root {
  position: relative;
  isolation: isolate;
  background:
    radial-gradient(1100px 500px at 88% -8%, rgba(0, 242, 255, 0.14), transparent 56%),
    radial-gradient(900px 480px at 14% 110%, rgba(255, 107, 62, 0.16), transparent 60%),
    linear-gradient(160deg, #060810 0%, #0a1020 46%, #070a12 100%);
}

.theme-root::before,
.theme-root::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.theme-root::before {
  background:
    radial-gradient(circle at 14% 22%, rgba(0, 242, 255, 0.2), transparent 34%),
    radial-gradient(circle at 84% 20%, rgba(0, 180, 255, 0.16), transparent 34%),
    radial-gradient(circle at 58% 78%, rgba(255, 107, 62, 0.14), transparent 38%);
  filter: blur(24px) saturate(115%);
  opacity: 0.78;
  animation: ambient-drift 18s ease-in-out infinite;
}

.theme-root::after {
  background:
    linear-gradient(180deg, transparent 0%, rgba(0, 242, 255, 0.045) 100%),
    linear-gradient(
      90deg,
      rgba(0, 242, 255, 0.085) 1px,
      transparent 1px
    ),
    repeating-linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.05) 0 1px,
      transparent 1px 4px
    ),
    linear-gradient(
      0deg,
      rgba(0, 242, 255, 0.07) 1px,
      transparent 1px
    );
  background-size: auto, 100px 100px, auto, 100px 100px;
  opacity: 0.34;
  animation: grid-shift 16s linear infinite, scanline-flicker 3.2s ease-in-out infinite;
}

.app-shell > * {
  position: relative;
  z-index: 1;
}

.top-bar {
  background: #000;
  border-bottom: var(--soft-outline);
}

.main-nav {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(30, 35, 52, 0.62);
}

.hero-section {
  padding-top: 170px;
}

.hero-badge {
  border-radius: 999px;
  box-shadow: inset 0 0 0 1px rgba(255, 107, 62, 0.22);
}

#hero-title {
  text-wrap: balance;
  text-shadow: 0 6px 26px rgba(0, 0, 0, 0.35);
}

.cta-btn {
  border-radius: 999px;
}

.btn-primary {
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.28),
    0 14px 30px rgba(255, 107, 62, 0.33);
}

.btn-primary:hover {
  transform: translateY(-3px) rotate(-0.35deg);
}

.marquee-section {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01)),
    repeating-linear-gradient(
      115deg,
      rgba(255, 255, 255, 0.02) 0 1px,
      transparent 1px 12px
    );
}

.surface-card {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  border: var(--soft-outline);
  border-radius: 26px 26px 26px 10px;
  background:
    linear-gradient(165deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02) 48%, rgba(255, 255, 255, 0.01)),
    var(--surface-color);
  box-shadow: var(--paper-shadow);
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
  height: 100%;
}

.surface-card::before {
  content: "";
  position: absolute;
  top: -60%;
  left: -42%;
  width: 64%;
  height: 220%;
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  transform: translate3d(-120%, 0, 0) rotate(18deg);
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.05) 38%,
    rgba(255, 255, 255, 0.35) 50%,
    rgba(255, 255, 255, 0.05) 62%,
    rgba(255, 255, 255, 0) 100%
  );
  transition: transform 0.6s ease, opacity 0.25s ease;
}

.surface-card:hover::before {
  opacity: 1;
  transform: translate3d(260%, 0, 0) rotate(18deg);
}

.surface-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 242, 255, 0.45);
  box-shadow:
    0 0 0 1px rgba(0, 242, 255, 0.18),
    0 0 20px rgba(0, 242, 255, 0.25),
    0 0 38px rgba(69, 163, 255, 0.2),
    var(--paper-shadow);
}

.card-icon-wrap {
  border-radius: 14px 14px 14px 6px;
  box-shadow: inset 0 0 0 1px rgba(255, 107, 62, 0.16);
}

.process-step-number {
  font-size: clamp(2.25rem, 4vw, 3.6rem);
  line-height: 1;
}

.form-shell {
  border-radius: 28px 28px 28px 12px;
  border: var(--soft-outline);
  box-shadow: var(--paper-shadow);
  backdrop-filter: blur(6px);
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

.form-control {
  border-radius: 14px 14px 14px 8px;
  transition: border-color 0.25s ease, background-color 0.25s ease;
}

.form-control:focus {
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 0 0 4px rgba(255, 107, 62, 0.12);
}

.cta-panel {
  border-radius: 34px 34px 34px 14px;
  box-shadow: 0 24px 44px rgba(0, 0, 0, 0.35);
}

.footer-shell {
  margin-top: 56px;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.015));
}

@media (max-width: 768px) {
  .theme-root::before {
    opacity: 0.62;
    filter: blur(18px);
  }

  .theme-root::after {
    opacity: 0.24;
  }

  .surface-card {
    border-radius: 20px 20px 20px 10px;
  }

  .hero {
    padding-top: 150px;
  }
}

/* Semantic Layout Classes */
.page-root {
  height: 100%;
}

.app-shell {
  width: 100%;
  height: 100%;
  overflow: auto;
}

.inline-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
}

.social-link-xs {
  width: 1.5rem;
  height: 1.5rem;
}

.social-link-md {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 999px;
}

.main-nav {
  position: fixed;
  top: var(--top-bar-height);
  left: 0;
  width: 100%;
  z-index: 50;
  transition: top 0.28s ease;
}

.brand-mark-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-word {
  font-weight: 700;
}

.brand-word-lg {
  font-size: 1.125rem;
  line-height: 1.75rem;
  letter-spacing: -0.025em;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 1rem;
  margin-bottom: 2rem;
  font-size: 0.75rem;
  line-height: 1rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.hero-title {
  margin-bottom: 1.5rem;
  font-size: clamp(2.8rem, 8vw, 4.7rem);
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: -0.025em;
}

.btn-nav {
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 600;
}

.btn-hero {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 700;
}

.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 500;
}

.marquee-shell {
  width: 100%;
  overflow: hidden;
  padding: 1.5rem 0;
}

.marquee-row {
  display: flex;
  align-items: center;
  gap: 3rem;
  padding: 0 1.5rem;
}

.page-section {
  width: 100%;
  padding: 6rem 0;
}

.section-container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-container-narrow {
  max-width: 48rem;
}

.section-head,
.section-block__head {
  margin-bottom: 4rem;
}

.section-head-center,
.section-block__head--center {
  margin-bottom: 3rem;
  text-align: center;
}

.section-title,
.section-block__title {
  font-size: clamp(2.2rem, 6vw, 3rem);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -0.025em;
}

.section-title-tight,
.section-block__title--tight {
  margin-bottom: 1rem;
}

.section-subtitle,
.section-block__subtitle {
  font-size: 1.125rem;
  line-height: 1.75rem;
}

.card-icon-bg {
  width: 3.5rem;
  height: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.card-title,
.content-card__title {
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
  line-height: 1.75rem;
  font-weight: 700;
}

.card-copy,
.content-card__copy {
  font-size: 0.875rem;
  line-height: 1.625;
}

.process-title {
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
  line-height: 1.75rem;
  font-weight: 700;
}

.process-copy {
  font-size: 0.875rem;
  line-height: 1.5;
}

.testimonials-grid .card-hover:hover {
  transform: none;
}

.testimonials-controls {
  display: flex;
  justify-content: flex-end;
  gap: 0.5rem;
}

.testimonials-head-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.testimonial-nav-btn {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(240, 236, 230, 0.9);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  transition: transform 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

.testimonial-nav-btn:hover {
  transform: translateY(-1px);
  background: rgba(255, 107, 62, 0.22);
  border-color: rgba(255, 107, 62, 0.4);
}

.testimonial-nav-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  transform: none;
}

@media (max-width: 767px) {
  .testimonials-head-row {
    align-items: flex-start;
  }
}

.stars-row {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-bottom: 1rem;
}

.testimonial-copy {
  margin-bottom: 1.5rem;
  font-size: 0.875rem;
  line-height: 1.625;
}

.person-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-height: 64px;
  margin-top: auto;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.04);
}

.person-info {
  min-height: 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.person-name {
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 700;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.person-role {
  font-size: 0.75rem;
  line-height: 1.15rem;
  min-height: 2.3rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.form-grid,
.contact-form__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.form-shell > * + * {
  margin-top: 1.5rem;
}

.form-label,
.contact-form__label {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 500;
}

.form-submit,
.contact-form__submit {
  width: min(100%, 36rem);
  max-width: 100%;
  margin-inline: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 1.25rem;
  font-size: 1rem;
  font-weight: 700;
}

.cta-title {
  margin-bottom: 1.5rem;
  font-size: clamp(2.2rem, 6vw, 3rem);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -0.025em;
}

.cta-panel-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.25rem 2.5rem;
  font-size: 1rem;
  font-weight: 700;
}

.service-section-title {
  margin: 0.5rem 0 1.25rem;
}

.service-copy {
  margin: 0 0 1rem;
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(240, 236, 230, 0.8);
}

.service-copy:last-child {
  margin-bottom: 0;
}

.orbit-visual {
  display: none;
}

@media (min-width: 768px) {
  .form-grid,
  .contact-form__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
}

@media (min-width: 1024px) {
  .orbit-visual {
    display: block;
  }
}

@media (max-width: 1023px) {
  .sales-rocket {
    display: none;
  }
}

/* BEM Bridge Layer */
.topbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 60;
  transition: transform 0.28s ease, opacity 0.28s ease;
}

.topbar.is-hidden {
  transform: translateY(-100%);
  opacity: 0;
}

.topbar__inner,
.site-nav__inner,
.stats__container,
.services__container,
.process__container,
.testimonials__container,
.about-page__container,
.service-page__container,
.site-footer__inner {
  max-width: 80rem;
  margin: 0 auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.site-footer__inner {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.topbar__inner {
  padding-top: 0.35rem;
  padding-bottom: 0.35rem;
  min-height: var(--top-bar-height);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.9rem;
  line-height: 0.95rem;
}

.topbar__contacts,
.topbar__social,
.site-nav__links,
.hero__actions,
.testimonials__controls,
.site-footer__social {
  display: flex;
  align-items: center;
}

.topbar__contacts {
  gap: 1rem;
  flex-wrap: wrap;
}

.topbar__social,
.testimonials__controls,
.site-footer__social {
  gap: 0.75rem;
}

.site-nav {
  position: fixed;
  top: var(--top-bar-height);
  left: 0;
  width: 100%;
  z-index: 50;
  transition: top 0.28s ease;
}

/* Ensure first section content starts below fixed header stack */
.topbar + .site-nav + .page-section {
  margin-top: var(--site-header-offset);
}

body.topbar-hidden .site-nav {
  top: 0;
}

.site-nav__inner {
  padding-top: 1rem;
  padding-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-nav__links {
  display: none;
  gap: 2rem;
}

.site-nav__dropdown {
  position: relative;
}

.site-nav__dropdown::after {
  content: "";
  position: absolute;
  top: 100%;
  left: -0.5rem;
  right: -0.5rem;
  height: 1rem;
}

.site-nav__toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.site-nav__toggle-icon {
  transition: transform 0.25s ease;
}

.site-nav__dropdown-menu {
  position: absolute;
  top: calc(100% + 0.35rem);
  left: 0;
  min-width: 260px;
  padding: 0.75rem;
  display: grid;
  gap: 0.35rem;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  border-radius: 18px 18px 18px 8px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(10, 16, 32, 0.94);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.35);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.site-nav__dropdown:hover .site-nav__dropdown-menu,
.site-nav__dropdown:focus-within .site-nav__dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.site-nav__dropdown:hover .site-nav__toggle-icon,
.site-nav__dropdown:focus-within .site-nav__toggle-icon {
  transform: rotate(180deg);
}

.site-nav__dropdown-link {
  padding: 0.75rem 0.9rem;
  border-radius: 12px 12px 12px 6px;
  color: rgba(240, 236, 230, 0.82);
  transition: background-color 0.25s ease, color 0.25s ease;
}

.site-nav__dropdown-link:hover {
  background: rgba(255, 107, 62, 0.12);
  color: var(--primary-color);
}

.hero__container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 10;
}

.hero__content {
  max-width: 48rem;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 1rem;
  margin-bottom: 2rem;
  font-size: 0.75rem;
  line-height: 1rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  background: rgba(255, 107, 62, 0.1);
  border: 1px solid rgba(255, 107, 62, 0.2);
  color: var(--primary-color);
  border-radius: 999px;
  box-shadow: inset 0 0 0 1px rgba(255, 107, 62, 0.22);
}

.hero__badge-dot {
  width: 6px;
  height: 6px;
  background: var(--primary-color);
  border-radius: 50%;
  display: inline-block;
}

.hero__title {
  margin-bottom: 1.5rem;
  font-size: clamp(2.8rem, 8vw, 4.7rem);
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: -0.025em;
}

.hero__subtitle {
  max-width: 540px;
  color: var(--text-muted);
}

.hero__actions {
  flex-wrap: wrap;
  gap: 1rem;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 85%;
  padding-top: 170px;
  padding-bottom: 80px;
}

.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.15;
  pointer-events: none;
}

.hero__orb--primary {
  width: 400px;
  height: 400px;
  background: var(--primary-color);
  top: 10%;
  right: -5%;
}

.hero__orb--secondary {
  width: 300px;
  height: 300px;
  background: var(--secondary-color);
  bottom: 10%;
  left: -8%;
}

.tech-marquee {
  width: 100%;
  overflow: hidden;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01)),
    repeating-linear-gradient(
      115deg,
      rgba(255, 255, 255, 0.03) 0 8px,
      transparent 8px 26px
    );
}

.tech-marquee__track {
  display: flex;
  animation: marquee-scroll 20s linear infinite;
  width: max-content;
}

.tech-marquee__row {
  display: flex;
  align-items: center;
  gap: 3rem;
  padding: 0 1.5rem;
  color: rgba(240, 236, 230, 0.15);
  font-family: "Space Mono", monospace;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  white-space: nowrap;
}

.stats__grid,
.services__grid,
.process__grid,
.about-page__layout,
.about-page__points-grid,
.service-page__intro-grid,
.service-page__solutions-grid,
.service-page__deliverables-grid,
.service-page__faq-grid,
.service-page__trust-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.stats__grid {
  gap: 2rem;
}

.stats__card,
.services__card {
  padding: 2rem;
}

.stats__card {
  text-align: center;
}

.stats__value {
  margin-bottom: 0.5rem;
  font-size: 3rem;
  line-height: 1;
  font-weight: 800;
}

.stats__label {
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 500;
}

.stats__line {
  margin: 0 auto 1rem;
}

.services__card {
  display: block;
  color: inherit;
}

.services__icon {
  width: 3.5rem;
  height: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  background: rgba(255, 107, 62, 0.12);
}

.services__card-title {
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
  line-height: 1.75rem;
  font-weight: 700;
}

.services__card-copy {
  font-size: 0.875rem;
  line-height: 1.625;
}

.services__card-link {
  margin-top: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--neon-cyan);
  font-size: 0.9rem;
  font-weight: 600;
}

.process__card {
  padding: 1.5rem;
}

.process__step-number {
  color: var(--primary-color);
  font-family: "Space Mono", monospace;
}

.process__title {
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
  line-height: 1.75rem;
  font-weight: 700;
}

.process__copy {
  font-size: 0.875rem;
  line-height: 1.5;
}

.testimonials__head-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.testimonials__nav-btn {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(240, 236, 230, 0.9);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  transition: transform 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

.testimonials__nav-btn:hover {
  transform: translateY(-1px);
  background: rgba(255, 107, 62, 0.22);
  border-color: rgba(255, 107, 62, 0.4);
}

.testimonials__nav-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  transform: none;
}

.testimonials__carousel {
  width: 100%;
  margin-top: 20px;
}

.testimonials__viewport {
  overflow: hidden;
  padding: 42px 28px;
  margin: -42px -28px;
}

.testimonials__grid {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.45s ease;
  will-change: transform;
  align-items: stretch;
}

.testimonials__card {
  flex: 0 0 100%;
  padding: 2rem;
  display: flex;
  flex-direction: column;
}

.testimonials__stars {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-bottom: 1rem;
}

.testimonials__copy {
  margin-bottom: 1.5rem;
  font-size: 0.875rem;
  line-height: 1.625;
}

.testimonials__person {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-height: 64px;
  margin-top: auto;
  position: relative;
}

.testimonials__avatar {
  width: 52px;
  height: 52px;
  min-width: 52px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow:
    0 0 0 4px rgba(255, 255, 255, 0.03),
    0 14px 30px rgba(0, 0, 0, 0.28);
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.18), transparent 60%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  filter: saturate(0.88) contrast(1.06) brightness(0.98);
}

.testimonials__person-info {
  min-height: 52px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0.15rem 0;
}

.testimonials__person-name,
.testimonials__person-role {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.testimonials__person-name {
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  -webkit-line-clamp: 1;
}

.testimonials__person-role {
  font-size: 0.75rem;
  line-height: 1.15rem;
  min-height: 2.3rem;
  opacity: 0.88;
  -webkit-line-clamp: 2;
}

.lead-capture__panel,
.lead-capture__form,
.lead-capture__wrap,
.lead-capture__body,
.lead-capture__submit,
.lead-capture__success {
  width: 100%;
}

.lead-capture__wrap {
  max-width: 48rem;
  margin: 0 auto;
  padding: 0 0 2rem;
}

.lead-capture__panel {
  background: linear-gradient(135deg, rgba(255, 107, 62, 0.15), rgba(255, 62, 122, 0.08));
  border: 1px solid rgba(255, 107, 62, 0.15);
  border-radius: 34px 34px 34px 14px;
  box-shadow: 0 24px 44px rgba(0, 0, 0, 0.35);
}

.lead-capture__glow {
  background: radial-gradient(circle at 30% 50%, rgba(255, 107, 62, 0.1), transparent 60%);
}

.lead-capture__body {
  position: relative;
  z-index: 10;
  text-align: center;
}

.lead-capture__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.lead-capture__submit {
  display: flex;
  width: min(100%, 36rem);
  max-width: 100%;
  margin-inline: auto;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
}

/* Use a unified UI font in the contact form for closer Latin/Cyrillic rendering */
.lead-capture__form,
.lead-capture__form .contact-form__label,
.lead-capture__form .form-control,
.lead-capture__form .form-control::placeholder,
.lead-capture__form .lead-capture__submit {
  font-family: "Segoe UI", "Noto Sans", Arial, sans-serif;
}

.service-page__hero {
  min-height: auto;
  padding-bottom: 4rem;
}

.service-page__hero-content {
  max-width: 52rem;
}

.service-page__hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: start;
}

.service-page__hero-subtitle {
  max-width: 46rem;
}

.service-page__hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
  margin: 1.6rem 0 1.6rem;
}

.service-page__hero-stat {
  padding: 1rem 1.05rem;
  border-radius: 18px 18px 18px 6px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.025);
}

.service-page__hero-stat strong {
  display: block;
  font-family: "Space Mono", monospace;
  font-size: 0.84rem;
  color: var(--primary-color);
}

.service-page__hero-stat span {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.82rem;
  line-height: 1.45;
  color: rgba(240, 236, 230, 0.72);
}

.service-page__hero-panel {
  position: relative;
  overflow: hidden;
  padding: 1.75rem;
  border-radius: 28px 28px 28px 10px;
  background:
    radial-gradient(circle at top right, rgba(255, 107, 62, 0.18), transparent 36%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.02));
}

.service-page__hero-panel-list {
  display: grid;
  gap: 0.9rem;
  margin-top: 1rem;
}

.service-page__hero-panel-item {
  padding: 1rem 1rem 1rem 1.1rem;
  border-left: 2px solid rgba(255, 107, 62, 0.45);
  background: rgba(255, 255, 255, 0.025);
  border-radius: 0 14px 14px 0;
}

.service-page__hero-panel-item strong {
  display: block;
  margin-bottom: 0.35rem;
  color: rgba(255, 255, 255, 0.94);
}

.service-page__hero-panel-item p,
.service-page__hero-panel-footnote {
  margin: 0;
  line-height: 1.65;
  color: rgba(240, 236, 230, 0.7);
}

.service-page__hero-panel-footnote {
  margin-top: 1rem;
  font-size: 0.85rem;
}

.service-page__breadcrumbs {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  color: rgba(240, 236, 230, 0.48);
  font-size: 0.85rem;
}

.service-page__breadcrumbs a {
  color: rgba(240, 236, 230, 0.68);
}

.service-page__breadcrumbs a:hover {
  color: var(--primary-color);
}

.service-page__intro-card,
.service-page__facts,
.service-page__solution-card,
.service-page__deliverable-card,
.service-page__faq-card,
.service-page__trust-card,
.service-page__inline-cta,
.service-page__summary {
  padding: 2rem;
}

.service-page__intro-grid,
.service-page__solutions-grid,
.service-page__deliverables-grid,
.service-page__faq-grid,
.service-page__trust-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.service-page__facts {
  display: grid;
  align-content: start;
  gap: 1.25rem;
}

.service-page__solution-card {
  height: 100%;
}

.service-page__solution-number {
  margin-bottom: 1rem;
  font-size: 2rem;
  line-height: 1;
  font-weight: 800;
  color: rgba(255, 107, 62, 0.28);
  font-family: "Space Mono", monospace;
}

.service-page__fact,
.about-page__highlight {
  padding: 1.25rem;
  border-radius: 20px 20px 20px 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.service-page__fact p,
.about-page__highlight p {
  margin: 0.5rem 0 0;
  line-height: 1.65;
}

.service-page__inline-cta,
.about-page__signoff {
  text-align: center;
}

.service-page__trust-value,
.about-page__highlight-value {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  line-height: 1;
  font-weight: 800;
}

.service-page__trust-copy {
  margin: 0.75rem 0 0;
  color: rgba(240, 236, 230, 0.72);
  line-height: 1.7;
}

.service-page__inline-cta-btn,
.about-page__aside-btn,
.about-page__signoff-btn {
  justify-content: center;
  margin-top: 1.5rem;
}

.service-page__signal-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: start;
}

.service-page__signal-story,
.service-page__signal-card {
  padding: 2rem;
}

.service-page__signal-story {
  background:
    radial-gradient(circle at top left, rgba(255, 107, 62, 0.12), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.02));
}

.service-page__signal-stack {
  display: grid;
  gap: 1rem;
}

.service-page__signal-card {
  position: relative;
  overflow: hidden;
}

.service-page__signal-card:hover {
  border-color: rgba(0, 242, 255, 0.45);
  box-shadow:
    0 0 0 1px rgba(0, 242, 255, 0.18),
    0 0 20px rgba(0, 242, 255, 0.25),
    0 0 38px rgba(69, 163, 255, 0.2),
    var(--paper-shadow);
}

.service-page__signal-card::before {
  content: "";
  position: absolute;
  top: -60%;
  left: -42%;
  width: 64%;
  height: 220%;
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  transform: translate3d(-120%, 0, 0) rotate(18deg);
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.05) 38%,
    rgba(255, 255, 255, 0.35) 50%,
    rgba(255, 255, 255, 0.05) 62%,
    rgba(255, 255, 255, 0) 100%
  );
  transition: transform 0.6s ease, opacity 0.25s ease;
}

.service-page__signal-card::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, var(--primary-color), rgba(255, 62, 122, 0.5));
}

.service-page__signal-label {
  display: inline-block;
  margin-bottom: 0.85rem;
  color: rgba(255, 107, 62, 0.78);
  font-family: "Space Mono", monospace;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-page__summary-copy,
.about-page__point-copy,
.about-page__signoff-copy {
  margin: 0;
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(240, 236, 230, 0.8);
}

.about-page__hero {
  min-height: auto;
  padding-bottom: 3rem;
}

.about-page__hero-content {
  max-width: 60rem;
}

.about-page__hero-subtitle {
  max-width: 46rem;
}

.about-page__layout,
.about-page__points-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.about-page__story,
.about-page__aside,
.about-page__point,
.about-page__signoff {
  padding: 2rem;
}

.about-page__story,
.about-page__signoff {
  backdrop-filter: blur(6px);
}

.about-page__section-title {
  margin: 0.5rem 0 1.5rem;
}

.about-page__copy {
  display: grid;
  gap: 1rem;
}

.about-page__aside {
  display: grid;
  align-content: start;
  gap: 1.5rem;
}

.about-page__signature {
  display: grid;
  gap: 0.25rem;
  margin: 1.75rem 0 2rem;
}

.site-footer__brand {
  position: relative;
  max-width: 32rem;
  padding: 0.5rem 0.25rem;
  overflow: visible;
}

.site-footer__watermark {
  position: absolute;
  right: -2.5rem;
  bottom: -2rem;
  width: clamp(160px, 22vw, 280px);
  opacity: 0.08;
}

.site-footer__logo-wrap {
  display: inline-flex;
  align-items: center;
  line-height: 0;
  position: relative;
  z-index: 1;
  margin-bottom: 1rem;
}

.site-footer__description,
.site-footer__about-link {
  position: relative;
  z-index: 1;
}

.site-footer__about-link {
  color: var(--neon-cyan);
}

.site-footer__description,
.site-footer__copy,
.site-footer__link {
  font-size: 0.95rem;
  line-height: 1.45;
  font-weight: 400;
}

.site-footer__bottom {
  max-width: 80rem;
  margin: 1.5rem auto 0;
  padding: 1.1rem 1.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.site-footer__legal-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  margin-left: auto;
}

.site-footer__links {
  width: 100%;
  display: grid;
  gap: 1.5rem;
  margin-top: 2rem;
}

.site-footer__column {
  display: grid;
  gap: 0.55rem;
  align-content: start;
}

.site-footer__title {
  margin: 0 0 0.35rem;
  font-size: 0.95rem;
  line-height: 1.2;
}

.site-footer__link {
  color: var(--text-muted-soft);
  text-decoration: none;
  transition: color 0.2s ease;
}

.site-footer__link:hover {
  color: var(--primary-color);
}

.site-footer__contact-text {
  font-size: 0.95rem;
  line-height: 1.35;
}

.privacy-page__section {
  padding-top: 2.5rem;
}

.site--privacy .app-shell {
  height: auto;
  overflow: visible;
}

@media (min-width: 768px) {
  .site-nav__links {
    display: flex;
  }

  .service-page__hero-grid {
    grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
  }

  .stats__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .services__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .testimonials__card {
    flex: 0 0 calc((100% - 1.5rem) / 2);
  }

  .lead-capture__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-page__layout {
    grid-template-columns: minmax(0, 1.6fr) minmax(280px, 0.8fr);
    align-items: start;
  }

  .about-page__points-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .service-page__intro-grid {
    grid-template-columns: minmax(0, 1.5fr) minmax(280px, 0.8fr);
    align-items: start;
  }

  .service-page__signal-grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  }

  .service-page__solutions-grid,
  .service-page__deliverables-grid,
  .service-page__faq-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-page__trust-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .site-footer__inner {
    flex-direction: row;
    align-items: flex-start;
  }

  .site-footer__links {
    width: auto;
    margin-top: 1.75rem;
    grid-template-columns: repeat(3, minmax(180px, 1fr));
    gap: 2.5rem;
  }

  .site-footer__bottom {
    margin-top: 2rem;
    padding-top: 1.25rem;
  }
}

@media (max-width: 767px) {
  .service-page__hero-stats {
    grid-template-columns: 1fr;
  }

  .site-footer__watermark {
    right: -1.2rem;
    bottom: -1.4rem;
    width: 140px;
    opacity: 0.07;
  }
}

@media (min-width: 1024px) {
  .services__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .testimonials__card {
    flex: 0 0 calc((100% - 3rem) / 3);
  }
}

/* =====================================================
   Design Improvements - merged from _design-improvements.css
   ===================================================== */

/* Trust card - animated accent line */
.service-page__trust-card {
  position: relative;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.service-page__trust-accent {
  width: 40px;
  height: 3px;
  margin-top: 1.25rem;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  transition: width 0.4s ease;
}

.service-page__trust-card:hover .service-page__trust-accent {
  width: 72px;
}

/* Solution card - redesigned number */
.service-page__solution-header {
  display: flex;
  align-items: center;
  margin-bottom: 0.875rem;
}

.service-page__solution-number {
  font-size: 1.6rem;
  font-weight: 900;
  font-family: "Space Mono", monospace;
  line-height: 1;
}

.service-page__solution-card {
  position: relative;
  overflow: hidden;
}

.service-page__solution-card::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 0;
  background: linear-gradient(180deg, var(--primary-color), rgba(255, 62, 122, 0.5));
  border-radius: 3px 0 0 3px;
  transition: width 0.3s ease;
}

.service-page__solution-card:hover::after {
  width: 3px;
}

/* Deliverable card - icon */
.service-page__deliverable-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  margin-bottom: 1.1rem;
  border-radius: 14px 14px 14px 6px;
  background: linear-gradient(135deg, rgba(255, 107, 62, 0.18), rgba(255, 62, 122, 0.08));
  border: 1px solid rgba(255, 107, 62, 0.2);
  color: var(--primary-color);
  transition: transform 0.3s ease, background 0.3s ease;
}

.service-page__deliverable-card:hover .service-page__deliverable-icon {
  transform: scale(1.1) rotate(-3deg);
  background: linear-gradient(135deg, rgba(255, 107, 62, 0.28), rgba(255, 62, 122, 0.14));
}

/* Signal story - keyword tags */
.service-page__signal-story-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.25rem;
}

.service-page__signal-story-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.85rem;
  background: rgba(255, 107, 62, 0.08);
  border: 1px solid rgba(255, 107, 62, 0.2);
  border-radius: 999px;
  color: rgba(255, 107, 62, 0.88);
  font-size: 0.78rem;
  font-family: "Space Mono", monospace;
  letter-spacing: 0.04em;
  transition: background 0.25s ease, border-color 0.25s ease;
}

.service-page__signal-story-tag:hover {
  background: rgba(255, 107, 62, 0.14);
  border-color: rgba(255, 107, 62, 0.38);
}

/* FAQ Accordion */
.service-page__faq-accordion {
  display: grid;
  gap: 0.85rem;
}

.service-page__faq-item {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px 20px 20px 8px;
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02) 48%, rgba(255, 255, 255, 0.01)), var(--surface-color);
  overflow: hidden;
  transition: border-color 0.28s ease, box-shadow 0.28s ease;
}

.service-page__faq-item.is-open {
  border-color: rgba(0, 242, 255, 0.35);
  box-shadow: 0 0 0 1px rgba(0, 242, 255, 0.12), 0 0 18px rgba(0, 242, 255, 0.12), var(--paper-shadow);
}

.service-page__faq-trigger {
  all: unset;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.35rem 1.75rem;
  cursor: pointer;
  box-sizing: border-box;
  transition: background 0.2s ease;
}

.service-page__faq-trigger:hover {
  background: rgba(255, 255, 255, 0.025);
}

.service-page__faq-question {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5;
  color: rgba(240, 236, 230, 0.92);
}

.service-page__faq-icon {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 107, 62, 0.1);
  border: 1px solid rgba(255, 107, 62, 0.2);
  color: var(--primary-color);
  transition: background 0.25s ease;
  position: relative;
}

.service-page__faq-item.is-open .service-page__faq-icon {
  background: rgba(255, 107, 62, 0.18);
}

.faq-icon-plus,
.faq-icon-minus {
  position: absolute;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.faq-icon-minus {
  opacity: 0;
  transform: scale(0.6);
}

.service-page__faq-item.is-open .faq-icon-plus {
  opacity: 0;
  transform: scale(0.6);
}

.service-page__faq-item.is-open .faq-icon-minus {
  opacity: 1;
  transform: scale(1);
}

.service-page__faq-body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s ease;
}

.service-page__faq-item.is-open .service-page__faq-body {
  grid-template-rows: 1fr;
}

.service-page__faq-body > * {
  overflow: hidden;
}

.service-page__faq-answer {
  margin: 0;
  padding: 0 1.75rem 1.35rem;
  font-size: 0.9rem;
  line-height: 1.75;
  color: rgba(240, 236, 230, 0.72);
}

/* Inline CTA - enhanced */
.service-page__cta-section .service-page__inline-cta {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 2.5rem 2rem;
  background: linear-gradient(135deg, rgba(255, 107, 62, 0.14), rgba(255, 62, 122, 0.07)), var(--surface-color);
  border-color: rgba(255, 107, 62, 0.2);
}

.service-page__inline-cta-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse at 50% 0%, rgba(255, 107, 62, 0.16), transparent 60%);
}

.service-page__inline-cta-body {
  position: relative;
  z-index: 1;
}

/* Summary - left accent bar */
.service-page__summary-section .service-page__summary {
  position: relative;
  padding-left: 3rem;
}

.service-page__summary-section .service-page__summary::after {
  content: "";
  position: absolute;
  top: 1.75rem;
  left: 2rem;
  width: 3px;
  bottom: 1.75rem;
  background: linear-gradient(180deg, var(--primary-color), rgba(255, 62, 122, 0.3));
  border-radius: 999px;
}

@media (max-width: 767px) {
  .service-page__faq-trigger {
    padding: 1.1rem 1.25rem;
  }

  .service-page__faq-answer {
    padding: 0 1.25rem 1.1rem;
  }
}

