@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("/assets/fonts/inter-cyrillic.woff2") format("woff2");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("/assets/fonts/inter-latin.woff2") format("woff2");
  unicode-range:
    U+0000-00FF,
    U+0131,
    U+0152-0153,
    U+02BB-02BC,
    U+02C6,
    U+02DA,
    U+02DC,
    U+0304,
    U+0308,
    U+0329,
    U+2000-206F,
    U+20AC,
    U+2122,
    U+2191,
    U+2193,
    U+2212,
    U+2215,
    U+FEFF,
    U+FFFD;
}

@font-face {
  font-family: "Space Grotesk";
  font-style: normal;
  font-weight: 500 700;
  font-display: swap;
  src: url("/assets/fonts/space-grotesk-latin.woff2") format("woff2");
  unicode-range:
    U+0000-00FF,
    U+0131,
    U+0152-0153,
    U+02BB-02BC,
    U+02C6,
    U+02DA,
    U+02DC,
    U+0304,
    U+0308,
    U+0329,
    U+2000-206F,
    U+20AC,
    U+2122,
    U+2191,
    U+2193,
    U+2212,
    U+2215,
    U+FEFF,
    U+FFFD;
}

:root {
  --bg: #0f172a;
  --bg-deep: #0b1120;
  --surface: rgba(17, 24, 39, 0.72);
  --surface-strong: rgba(30, 41, 59, 0.9);
  --surface-soft: rgba(148, 163, 184, 0.08);
  --line: rgba(148, 163, 184, 0.18);
  --line-strong: rgba(148, 163, 184, 0.28);
  --text: #f8fafc;
  --muted: #94a3b8;
  --muted-strong: #cbd5e1;
  --accent-a: #8b5cf6;
  --accent-b: #22d3ee;
  --shadow: 0 30px 80px rgba(2, 6, 23, 0.55);
  --glow: 0 0 120px rgba(34, 211, 238, 0.16);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --container: 1240px;
  --font-display: "Space Grotesk", "Segoe UI", sans-serif;
  --font-body: "Inter", "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  font-family: var(--font-body);
  background:
    radial-gradient(circle at 18% 18%, rgba(139, 92, 246, 0.26), transparent 22%),
    radial-gradient(circle at 82% 20%, rgba(34, 211, 238, 0.18), transparent 24%),
    radial-gradient(circle at 50% 78%, rgba(139, 92, 246, 0.12), transparent 28%),
    linear-gradient(180deg, #111827 0%, #0f172a 48%, #0b1120 100%);
}

.trust-section,
.services-section,
.process-section,
.portfolio-section,
.cta-section,
.contact-section,
.faq-section,
.site-footer {
  content-visibility: auto;
  contain-intrinsic-size: 900px;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

.shell {
  width: min(calc(100% - 40px), var(--container));
  margin: 0 auto;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 40;
  width: 100%;
  height: 2px;
  background: rgba(15, 23, 42, 0.12);
  pointer-events: none;
}

.scroll-progress-bar {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, rgba(139, 92, 246, 0.95), rgba(34, 211, 238, 0.95));
  box-shadow: 0 0 16px rgba(34, 211, 238, 0.24);
  transition: width 90ms linear;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  padding: 20px 0 0;
  transition: padding 180ms ease;
}

body.menu-open {
  overflow: hidden;
}

body.header-scrolled .site-header {
  padding-top: 10px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(30, 41, 59, 0.72), rgba(15, 23, 42, 0.56));
  backdrop-filter: blur(18px);
  box-shadow:
    0 12px 32px rgba(2, 6, 23, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transition:
    padding 180ms ease,
    background-color 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease,
    backdrop-filter 180ms ease;
}

body.header-scrolled .nav {
  padding: 10px 14px;
  border-color: rgba(148, 163, 184, 0.14);
  background:
    linear-gradient(180deg, rgba(30, 41, 59, 0.84), rgba(15, 23, 42, 0.7));
  backdrop-filter: blur(22px);
  box-shadow:
    0 14px 34px rgba(2, 6, 23, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.05em;
  transition: transform 180ms ease;
}

.brand-terminal {
  display: inline-flex;
  align-items: center;
  gap: 0;
  min-width: 12ch;
  color: #eef6ff;
  text-shadow:
    0 0 16px rgba(34, 211, 238, 0.16),
    0 0 24px rgba(139, 92, 246, 0.12);
}

.brand-terminal-base {
  color: #eef6ff;
}

.brand-terminal-suffix {
  position: relative;
  display: inline-flex;
  min-width: 4.5ch;
  padding-left: 0.3ch;
  color: rgba(125, 211, 252, 0.98);
}

.brand-terminal-suffix::after {
  content: "";
  width: 1px;
  height: 1.05em;
  margin-left: 0.22ch;
  background: rgba(34, 211, 238, 0.95);
  box-shadow:
    0 0 12px rgba(34, 211, 238, 0.45),
    0 0 18px rgba(139, 92, 246, 0.22);
  animation: brand-caret-blink 1s steps(1, end) infinite;
}

body.header-scrolled .brand {
  transform: scale(0.98);
}

.brand-mark {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(139, 92, 246, 0.9), rgba(34, 211, 238, 0.84));
  box-shadow:
    inset 0 1px 1px rgba(255, 255, 255, 0.28),
    0 10px 28px rgba(34, 211, 238, 0.18);
}

@keyframes brand-caret-blink {
  0%,
  48% {
    opacity: 1;
  }

  50%,
  100% {
    opacity: 0;
  }
}

.nav-links,
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a,
.lang-switcher a {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid transparent;
  color: var(--muted-strong);
  transition:
    transform 180ms ease,
    color 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

body.header-scrolled .nav-links a,
body.header-scrolled .lang-switcher a {
  padding: 8px 12px;
}

.nav-links a:hover,
.nav-links a[data-active="true"],
.lang-switcher a:hover,
.lang-switcher a[aria-current="page"] {
  color: var(--text);
  transform: translateY(-1px);
  border-color: rgba(148, 163, 184, 0.16);
  background:
    linear-gradient(180deg, rgba(30, 41, 59, 0.82), rgba(15, 23, 42, 0.74));
  box-shadow: 0 10px 22px rgba(2, 6, 23, 0.18);
}

.nav-links a[data-active="true"] {
  border-color: rgba(34, 211, 238, 0.2);
  box-shadow:
    0 10px 22px rgba(2, 6, 23, 0.18),
    0 0 18px rgba(34, 211, 238, 0.08);
}

.menu-toggle,
.mobile-menu {
  display: none;
}

.menu-toggle {
  position: relative;
  width: 52px;
  height: 52px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(15, 23, 42, 0.78);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 12px 24px rgba(2, 6, 23, 0.18);
  color: var(--text);
  cursor: pointer;
  transition:
    box-shadow 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease,
    transform 180ms ease;
}

body.header-scrolled .menu-toggle {
  width: 48px;
  height: 48px;
}

.menu-toggle:hover {
  transform: translateY(-1px);
  border-color: var(--line-strong);
  background: rgba(30, 41, 59, 0.88);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 14px 30px rgba(2, 6, 23, 0.24);
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transform-origin: center;
  transition:
    transform 220ms ease,
    opacity 180ms ease;
}

.menu-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.menu-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-6px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 9;
  padding: 92px 0 24px;
  background: rgba(2, 6, 23, 0.66);
  backdrop-filter: blur(18px);
}

.mobile-menu[hidden] {
  display: none;
}

.mobile-menu-panel {
  display: grid;
  gap: 18px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(30, 41, 59, 0.96), rgba(15, 23, 42, 0.92));
  box-shadow: var(--shadow);
}

.mobile-nav-links,
.mobile-lang-switcher {
  display: grid;
  gap: 10px;
}

.mobile-nav-links a,
.mobile-lang-switcher a {
  display: flex;
  align-items: center;
  min-height: 54px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(15, 23, 42, 0.54);
  color: var(--muted-strong);
}

.mobile-nav-links a:hover {
  border-color: rgba(148, 163, 184, 0.18);
  background: rgba(30, 41, 59, 0.74);
}

.mobile-nav-links a[data-active="true"] {
  color: var(--text);
  border-color: rgba(34, 211, 238, 0.2);
  background:
    linear-gradient(180deg, rgba(30, 41, 59, 0.84), rgba(15, 23, 42, 0.76));
  box-shadow: 0 0 18px rgba(34, 211, 238, 0.06);
}

.mobile-lang-switcher {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.mobile-lang-switcher a[aria-current="page"] {
  color: var(--text);
  border-color: rgba(34, 211, 238, 0.24);
  background: rgba(34, 211, 238, 0.1);
}

.hero {
  position: relative;
  overflow: clip;
  padding: 28px 0 72px;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  inset: auto;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(14px);
}

.hero::before {
  top: 72px;
  right: 6%;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.24), transparent 68%);
}

.hero::after {
  left: 8%;
  bottom: 4%;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(34, 211, 238, 0.16), transparent 70%);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
  gap: 34px;
  align-items: center;
  min-height: calc(100vh - 132px);
}

.hero-copy {
  position: relative;
  z-index: 2;
  padding: 48px 0;
  max-width: 640px;
}

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

.hero-copy::before {
  content: "";
  position: absolute;
  inset: 8% auto auto -10%;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.18), transparent 72%);
  filter: blur(10px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border: 1px solid rgba(167, 139, 250, 0.32);
  border-radius: 999px;
  color: var(--muted-strong);
  background: rgba(15, 23, 42, 0.58);
  backdrop-filter: blur(14px);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1 {
  margin-top: 24px;
  max-width: 12ch;
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5.75rem);
  line-height: 0.92;
  letter-spacing: -0.07em;
}

.lead {
  max-width: 640px;
  margin-top: 24px;
  color: var(--muted-strong);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  line-height: 1.72;
}

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

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 22px;
  border: 1px solid var(--line);
  border-radius: 999px;
  overflow: hidden;
  font-weight: 600;
  letter-spacing: -0.01em;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease;
}

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

.button-primary {
  border-color: rgba(139, 92, 246, 0.28);
  background:
    linear-gradient(135deg, rgba(139, 92, 246, 1), rgba(34, 211, 238, 0.92));
  box-shadow:
    0 16px 40px rgba(34, 211, 238, 0.18),
    0 12px 34px rgba(139, 92, 246, 0.24);
}

.button-primary:hover {
  box-shadow:
    0 18px 44px rgba(34, 211, 238, 0.24),
    0 14px 38px rgba(139, 92, 246, 0.28);
}

.button-secondary {
  color: var(--text);
  background: rgba(15, 23, 42, 0.48);
  backdrop-filter: blur(16px);
}

.button-secondary:hover {
  border-color: var(--line-strong);
  background: rgba(30, 41, 59, 0.72);
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted-strong);
  background: rgba(15, 23, 42, 0.46);
  backdrop-filter: blur(14px);
  font-size: 0.95rem;
}

.trust-pill::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-a), var(--accent-b));
  box-shadow: 0 0 18px rgba(34, 211, 238, 0.7);
}

.hero-visual {
  position: relative;
  min-height: 620px;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 10% 12% 12% 10%;
  border-radius: 36px;
  background:
    radial-gradient(circle at top, rgba(34, 211, 238, 0.14), transparent 38%),
    radial-gradient(circle at bottom left, rgba(139, 92, 246, 0.16), transparent 34%);
  filter: blur(12px);
  animation: pulse-glow 8s ease-in-out infinite;
}

.visual-stage {
  position: absolute;
  inset: 0;
  perspective: 1200px;
}

.light-streak,
.light-orb {
  position: absolute;
  pointer-events: none;
}

.light-streak {
  width: 240px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(34, 211, 238, 0.44), transparent);
  opacity: 0.7;
  filter: blur(0.3px);
}

.light-streak-1 {
  top: 12%;
  right: 6%;
  transform: rotate(-18deg);
}

.light-streak-2 {
  bottom: 18%;
  left: 2%;
  width: 190px;
  transform: rotate(24deg);
}

.light-orb {
  border-radius: 50%;
  filter: blur(2px);
}

.light-orb-1 {
  top: 18%;
  left: 8%;
  width: 14px;
  height: 14px;
  background: rgba(34, 211, 238, 0.9);
  box-shadow: var(--glow);
}

.light-orb-2 {
  right: 18%;
  bottom: 16%;
  width: 10px;
  height: 10px;
  background: rgba(139, 92, 246, 0.88);
  box-shadow: 0 0 70px rgba(139, 92, 246, 0.38);
}

.dashboard-shell {
  position: absolute;
  top: 11%;
  left: 10%;
  width: min(100%, 540px);
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(30, 41, 59, 0.94), rgba(15, 23, 42, 0.84));
  backdrop-filter: blur(22px);
  box-shadow: var(--shadow);
  transform: rotate(-6deg);
  animation: float-card 7.5s ease-in-out infinite;
}

.window-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.window-dots {
  display: flex;
  gap: 8px;
}

.window-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(248, 250, 252, 0.32);
}

.window-label {
  color: var(--muted);
  font-size: 0.9rem;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(180px, 0.75fr);
  gap: 16px;
  margin-top: 18px;
}

.chart-card,
.metric-card,
.floating-card {
  border: 1px solid var(--line);
  background: var(--surface);
  backdrop-filter: blur(14px);
}

.chart-card {
  min-height: 300px;
  padding: 20px;
  border-radius: 24px;
}

.chart-meta {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.chart-meta strong {
  display: block;
  font-size: 2.2rem;
  line-height: 1;
}

.chart-meta span,
.metric-card span,
.floating-copy span {
  color: var(--muted);
}

.trend-chip {
  padding: 9px 12px;
  border: 1px solid rgba(34, 211, 238, 0.24);
  border-radius: 999px;
  color: #67e8f9;
  background: rgba(34, 211, 238, 0.1);
  font-size: 0.88rem;
  white-space: nowrap;
}

.chart-area {
  position: relative;
  height: 190px;
  margin-top: 26px;
  border-radius: 20px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(148, 163, 184, 0.04), rgba(15, 23, 42, 0.06)),
    repeating-linear-gradient(
      180deg,
      transparent 0,
      transparent 32px,
      rgba(148, 163, 184, 0.08) 33px
    );
}

.chart-area::before {
  content: "";
  position: absolute;
  inset: auto 10% 14% 8%;
  height: 100px;
  border-radius: 999px;
  background:
    linear-gradient(90deg, rgba(139, 92, 246, 0.9), rgba(34, 211, 238, 0.95));
  clip-path: polygon(0 75%, 14% 62%, 28% 70%, 44% 38%, 58% 44%, 73% 18%, 86% 26%, 100% 0, 100% 100%, 0 100%);
  opacity: 0.95;
  filter: drop-shadow(0 0 24px rgba(34, 211, 238, 0.34));
}

.chart-area::after {
  content: "";
  position: absolute;
  inset: auto 10% 12% 8%;
  height: 90px;
  background: linear-gradient(180deg, rgba(34, 211, 238, 0.28), rgba(34, 211, 238, 0));
  clip-path: polygon(0 70%, 14% 57%, 28% 66%, 44% 34%, 58% 40%, 73% 14%, 86% 22%, 100% 0, 100% 100%, 0 100%);
}

.chart-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.chart-footer span {
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.54);
  color: var(--muted-strong);
  font-size: 0.82rem;
}

.metric-stack {
  display: grid;
  gap: 16px;
}

.metric-card {
  padding: 18px;
  border-radius: 22px;
}

.metric-card strong {
  display: block;
  font-size: 1.6rem;
  margin-bottom: 8px;
}

.metric-card p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.6;
}

.metric-card ul {
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.metric-card li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  color: var(--muted-strong);
  font-size: 0.95rem;
}

.metric-card li span {
  color: var(--text);
}

.floating-card {
  position: absolute;
  display: grid;
  gap: 10px;
  padding: 16px 18px;
  border-radius: 22px;
  box-shadow: 0 18px 40px rgba(2, 6, 23, 0.32);
}

.floating-card strong {
  font-size: 1.05rem;
}

.floating-card-primary {
  top: 2%;
  right: 4%;
  width: min(220px, 44%);
  transform: translateY(0);
  animation: float-card 8.5s ease-in-out infinite reverse;
}

.floating-card-secondary {
  right: 10%;
  bottom: 8%;
  width: min(250px, 48%);
  animation: float-card 9.2s ease-in-out infinite;
}

.floating-card-tertiary {
  left: 4%;
  bottom: 16%;
  width: min(220px, 42%);
  animation: float-card 10s ease-in-out infinite reverse;
}

.floating-icon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(139, 92, 246, 0.22), rgba(34, 211, 238, 0.22));
  border: 1px solid rgba(167, 139, 250, 0.16);
}

.floating-metrics {
  display: grid;
  gap: 10px;
}

.floating-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  color: var(--muted-strong);
  font-size: 0.92rem;
}

.floating-row::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(148, 163, 184, 0.02), rgba(148, 163, 184, 0.22));
}

.floating-row span {
  color: var(--text);
}

.floating-bars {
  display: grid;
  gap: 10px;
}

.floating-bars i {
  display: block;
  height: 10px;
  border-radius: 999px;
  background:
    linear-gradient(90deg, rgba(139, 92, 246, 0.96), rgba(34, 211, 238, 0.96));
}

.floating-bars i:nth-child(1) {
  width: 88%;
}

.floating-bars i:nth-child(2) {
  width: 68%;
}

.floating-bars i:nth-child(3) {
  width: 92%;
}

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

.acquisition-grid span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(15, 23, 42, 0.52);
  color: var(--muted-strong);
  font-size: 0.9rem;
}

.trust-section {
  position: relative;
  padding: 24px 0 88px;
}

.trust-section::before {
  content: "";
  position: absolute;
  top: 8%;
  left: 50%;
  width: min(920px, 82vw);
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, rgba(148, 163, 184, 0.28), transparent);
}

.trust-shell {
  position: relative;
}

.trust-shell::after {
  content: "";
  position: absolute;
  top: 14%;
  right: 6%;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(34, 211, 238, 0.12), transparent 70%);
  filter: blur(10px);
  pointer-events: none;
}

.trust-intro {
  max-width: 760px;
}

.trust-intro h2 {
  margin-top: 20px;
  font-size: clamp(2rem, 4.6vw, 3.4rem);
  line-height: 0.96;
}

.section-lead {
  max-width: 700px;
  margin-top: 18px;
  color: var(--muted-strong);
  font-size: clamp(1rem, 1.7vw, 1.15rem);
  line-height: 1.72;
}

.trust-panel {
  position: relative;
  margin-top: 34px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 32px;
  background:
    linear-gradient(180deg, rgba(17, 24, 39, 0.9), rgba(15, 23, 42, 0.82));
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.trust-panel::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, rgba(139, 92, 246, 0.28), rgba(34, 211, 238, 0.2), transparent);
}

.trust-ambient {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.trust-ambient-card {
  position: absolute;
  border: 1px solid rgba(148, 163, 184, 0.1);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(30, 41, 59, 0.18), rgba(15, 23, 42, 0.1));
  opacity: 0.32;
  filter: blur(12px);
}

.trust-ambient-card::before,
.trust-ambient-card::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(148, 163, 184, 0.14), transparent);
}

.trust-ambient-card::before {
  top: 26px;
}

.trust-ambient-card::after {
  top: 54px;
}

.trust-ambient-card-primary {
  top: -16px;
  right: 6%;
  width: 240px;
  height: 148px;
  transform: rotate(-8deg);
}

.trust-ambient-card-secondary {
  top: 10px;
  right: 21%;
  width: 180px;
  height: 112px;
  transform: rotate(7deg);
  opacity: 0.24;
}

.trust-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.trust-card,
.trust-metric {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(30, 41, 59, 0.8), rgba(15, 23, 42, 0.72));
  box-shadow: 0 16px 40px rgba(2, 6, 23, 0.22);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease,
    box-shadow 180ms ease;
}

.trust-card {
  min-height: 208px;
  padding: 24px;
  border-radius: 24px;
}

.trust-card:hover,
.trust-metric:hover {
  transform: translateY(-4px);
  border-color: rgba(203, 213, 225, 0.26);
  box-shadow:
    0 22px 44px rgba(2, 6, 23, 0.3),
    0 0 26px rgba(34, 211, 238, 0.08);
}

.trust-card::after,
.trust-metric::after {
  content: attr(data-placeholder);
  position: absolute;
  top: 14px;
  right: 14px;
  padding: 5px 8px;
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.66);
  color: var(--muted);
  font-size: 0.68rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.trust-card-icon {
  display: inline-flex;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(139, 92, 246, 0.22);
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(139, 92, 246, 0.18), rgba(34, 211, 238, 0.16));
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.08);
}

.trust-card-icon-image {
  width: 60px;
  height: 60px;
  padding: 0;
  overflow: hidden;
  border-radius: 18px;
  background: rgba(15, 23, 42, 0.42);
}

.trust-card-icon-image img {
  display: block;
  width: 76%;
  height: 76%;
  margin: auto;
  object-fit: contain;
}

.trust-card h3 {
  margin-top: 20px;
  font-size: 1.25rem;
  line-height: 1.15;
}

.trust-card p {
  max-width: 30ch;
  margin-top: 10px;
  color: var(--muted-strong);
  font-size: 0.96rem;
  line-height: 1.6;
}

.trust-metrics {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(148, 163, 184, 0.12);
}

.trust-metric {
  display: grid;
  gap: 8px;
  min-height: 112px;
  padding: 18px 20px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(30, 41, 59, 0.54), rgba(15, 23, 42, 0.46));
  box-shadow: 0 10px 26px rgba(2, 6, 23, 0.16);
}

.trust-metric-media {
  position: relative;
  min-height: 112px;
  padding: 0;
  overflow: hidden;
  border-color: rgba(139, 92, 246, 0.32);
  background:
    linear-gradient(180deg, rgba(76, 29, 149, 0.18), rgba(8, 47, 73, 0.14)),
    linear-gradient(180deg, rgba(30, 41, 59, 0.54), rgba(15, 23, 42, 0.46));
  box-shadow:
    0 14px 34px rgba(2, 6, 23, 0.24),
    0 0 0 1px rgba(255, 255, 255, 0.03) inset,
    0 0 26px rgba(34, 211, 238, 0.08);
}

.trust-metric-media::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 22px;
  padding: 1px;
  background: linear-gradient(
    135deg,
    rgba(139, 92, 246, 0.9),
    rgba(34, 211, 238, 0.84),
    rgba(139, 92, 246, 0.7)
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.72;
  pointer-events: none;
}

.trust-metric-media:hover::before {
  opacity: 1;
}

.trust-metric-media::after {
  display: none;
}

.trust-metric-media img {
  position: absolute;
  inset: 1px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 21px;
  object-position: center;
  transform: scale(1.02);
  filter: saturate(1.04) contrast(1.03);
  transition: transform 220ms ease, filter 220ms ease;
}

.trust-metric-media:hover img {
  transform: scale(1.05);
  filter: saturate(1.08) contrast(1.05);
}

.trust-metric-value {
  display: block;
  max-width: 16ch;
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2vw, 1.7rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.trust-metric-label {
  display: block;
  max-width: 28ch;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.55;
}

.services-section {
  position: relative;
  padding: 10px 0 96px;
}

.services-shell {
  position: relative;
}

.services-shell::before {
  content: "";
  position: absolute;
  top: 8%;
  left: -2%;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.12), transparent 72%);
  filter: blur(12px);
  pointer-events: none;
}

.services-intro {
  max-width: 760px;
}

.services-intro h2 {
  margin-top: 20px;
  font-size: clamp(2rem, 4.6vw, 3.35rem);
  line-height: 0.96;
}

.services-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.service-card {
  position: relative;
  overflow: hidden;
  min-height: 220px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(17, 24, 39, 0.88), rgba(15, 23, 42, 0.76));
  box-shadow: 0 18px 42px rgba(2, 6, 23, 0.22);
  backdrop-filter: blur(16px);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, rgba(139, 92, 246, 0.24), rgba(34, 211, 238, 0.18), transparent);
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(203, 213, 225, 0.24);
  box-shadow:
    0 24px 48px rgba(2, 6, 23, 0.3),
    0 0 28px rgba(34, 211, 238, 0.08);
}

.service-card-featured {
  background:
    linear-gradient(180deg, rgba(43, 27, 78, 0.78), rgba(15, 23, 42, 0.86));
  border-color: rgba(139, 92, 246, 0.34);
  box-shadow:
    0 20px 46px rgba(2, 6, 23, 0.26),
    0 0 34px rgba(139, 92, 246, 0.12);
}

.service-card-featured::after {
  content: "";
  position: absolute;
  inset: auto -12% -18% auto;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(34, 211, 238, 0.16), transparent 68%);
  filter: blur(12px);
  pointer-events: none;
}

.service-card-featured .service-icon {
  border-color: rgba(139, 92, 246, 0.34);
  box-shadow:
    inset 0 1px 1px rgba(255, 255, 255, 0.08),
    0 10px 28px rgba(139, 92, 246, 0.14);
}

.service-card-featured:hover {
  border-color: rgba(34, 211, 238, 0.34);
  box-shadow:
    0 26px 52px rgba(2, 6, 23, 0.32),
    0 0 42px rgba(139, 92, 246, 0.18);
}

.service-icon {
  position: relative;
  display: inline-flex;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(139, 92, 246, 0.24);
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(34, 211, 238, 0.18));
  box-shadow:
    inset 0 1px 1px rgba(255, 255, 255, 0.08),
    0 10px 24px rgba(34, 211, 238, 0.08);
}

.service-icon-image {
  width: 64px;
  height: 64px;
  padding: 0;
  overflow: hidden;
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(76, 29, 149, 0.16), rgba(8, 47, 73, 0.14)),
    linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(34, 211, 238, 0.18));
  box-shadow:
    inset 0 1px 1px rgba(255, 255, 255, 0.08),
    0 10px 24px rgba(34, 211, 238, 0.08),
    0 0 20px rgba(34, 211, 238, 0.08);
}

.service-icon-image img {
  position: absolute;
  inset: 0;
  width: 76%;
  height: 76%;
  margin: auto;
  object-fit: contain;
  border-radius: 16px;
}

.service-icon::before,
.service-icon::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  background: rgba(248, 250, 252, 0.82);
}

.service-icon::before {
  width: 16px;
  height: 2px;
  transform: translate(16px, 17px);
}

.service-icon::after {
  width: 12px;
  height: 2px;
  transform: translate(16px, 25px);
}

.service-icon-image::before,
.service-icon-image::after {
  display: none;
}

.service-card h3 {
  margin-top: 22px;
  font-size: 1.28rem;
  line-height: 1.14;
}

.service-card p {
  max-width: 26ch;
  margin-top: 12px;
  color: var(--muted-strong);
  font-size: 0.98rem;
  line-height: 1.62;
}

.process-section {
  position: relative;
  padding: 6px 0 104px;
}

.process-shell {
  position: relative;
}

.process-shell::before {
  content: "";
  position: absolute;
  top: 18%;
  right: -2%;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(34, 211, 238, 0.1), transparent 72%);
  filter: blur(12px);
  pointer-events: none;
}

.process-intro {
  max-width: 760px;
}

.process-intro h2 {
  margin-top: 20px;
  font-size: clamp(2rem, 4.6vw, 3.3rem);
  line-height: 0.96;
}

.process-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.process-grid::before {
  content: "";
  position: absolute;
  top: 38px;
  left: 5%;
  right: 5%;
  height: 1px;
  background: linear-gradient(90deg, rgba(139, 92, 246, 0.24), rgba(34, 211, 238, 0.18), rgba(139, 92, 246, 0.12));
  z-index: 0;
}

.process-card {
  position: relative;
  z-index: 1;
  overflow: hidden;
  min-height: 228px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(17, 24, 39, 0.9), rgba(15, 23, 42, 0.78));
  box-shadow: 0 18px 42px rgba(2, 6, 23, 0.22);
  backdrop-filter: blur(16px);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.process-card:hover {
  transform: translateY(-4px);
  border-color: rgba(203, 213, 225, 0.24);
  box-shadow:
    0 24px 48px rgba(2, 6, 23, 0.3),
    0 0 28px rgba(139, 92, 246, 0.08);
}

.process-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.process-step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 54px;
  min-height: 54px;
  padding: 0 12px;
  border: 1px solid rgba(139, 92, 246, 0.22);
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(139, 92, 246, 0.18), rgba(34, 211, 238, 0.14));
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: -0.03em;
}

.process-icon {
  position: relative;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 14px;
  background: rgba(15, 23, 42, 0.54);
}

.process-icon-image {
  width: 60px;
  height: 60px;
  flex: 0 0 60px;
  overflow: hidden;
  border-radius: 18px;
  border-color: rgba(139, 92, 246, 0.28);
  background:
    linear-gradient(180deg, rgba(76, 29, 149, 0.16), rgba(8, 47, 73, 0.14)),
    rgba(15, 23, 42, 0.54);
  box-shadow:
    inset 0 1px 1px rgba(255, 255, 255, 0.08),
    0 10px 24px rgba(34, 211, 238, 0.08);
}

.process-icon-image img {
  position: absolute;
  inset: 0;
  width: 76%;
  height: 76%;
  margin: auto;
  object-fit: contain;
  border-radius: 14px;
}

.process-icon::before,
.process-icon::after {
  content: "";
  position: absolute;
  left: 11px;
  right: 11px;
  height: 2px;
  border-radius: 999px;
  background: rgba(248, 250, 252, 0.82);
}

.process-icon::before {
  top: 15px;
}

.process-icon::after {
  top: 24px;
}

.process-icon-image::before,
.process-icon-image::after {
  display: none;
}

.process-card h3 {
  margin-top: 26px;
  font-size: 1.24rem;
  line-height: 1.14;
}

.process-card p {
  max-width: 24ch;
  margin-top: 12px;
  color: var(--muted-strong);
  font-size: 0.97rem;
  line-height: 1.62;
}

.portfolio-section {
  position: relative;
  padding: 0 0 108px;
}

.portfolio-shell {
  position: relative;
}

.portfolio-shell::before {
  content: "";
  position: absolute;
  top: 10%;
  left: 12%;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.1), transparent 72%);
  filter: blur(12px);
  pointer-events: none;
}

.portfolio-shell::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: calc(100% - 110px);
  background:
    linear-gradient(90deg, rgba(15, 23, 42, 0.96) 0, rgba(15, 23, 42, 0) 44px),
    linear-gradient(270deg, rgba(15, 23, 42, 0.96) 0, rgba(15, 23, 42, 0) 44px);
  pointer-events: none;
  z-index: 2;
}

.portfolio-intro {
  max-width: 780px;
}

.portfolio-intro h2 {
  margin-top: 20px;
  font-size: clamp(2rem, 4.6vw, 3.3rem);
  line-height: 0.96;
}

.portfolio-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(320px, 360px);
  gap: 18px;
  margin-top: 34px;
  padding-inline: 6px;
  padding-bottom: 8px;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.portfolio-rail::-webkit-scrollbar {
  height: 8px;
}

.portfolio-rail::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.22);
}

.portfolio-card {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 18px;
  min-height: 340px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  background: rgba(17, 24, 39, 0.6);
  box-shadow:
    0 18px 42px rgba(2, 6, 23, 0.22),
    0 0 18px rgba(34, 211, 238, 0.03);
  backdrop-filter: blur(10px);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
  scroll-snap-align: start;
  align-self: stretch;
}

.portfolio-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow:
    0 24px 50px rgba(2, 6, 23, 0.3),
    0 0 24px rgba(34, 211, 238, 0.05);
}

.portfolio-preview {
  position: relative;
  display: grid;
  align-content: start;
  min-height: 220px;
  padding: 18px;
  border: 1px solid rgba(148, 163, 184, 0.14);
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(30, 41, 59, 0.82), rgba(15, 23, 42, 0.78));
  overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.02);
}

.portfolio-preview-badge {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.54);
  color: var(--muted-strong);
  font-size: 0.78rem;
}

.portfolio-preview-screen,
.portfolio-preview-grid span,
.portfolio-preview-stack span,
.portfolio-preview-columns span,
.portfolio-preview-lines span,
.portfolio-preview-chip-row span {
  display: block;
  border: 1px solid rgba(148, 163, 184, 0.12);
  background: rgba(15, 23, 42, 0.56);
}

.portfolio-preview-screen {
  margin-top: 18px;
  height: 94px;
  border-radius: 18px;
}

.portfolio-preview-screen-wide {
  height: 108px;
}

.portfolio-preview-screen-tall {
  height: 124px;
}

.portfolio-preview-stack,
.portfolio-preview-columns,
.portfolio-preview-chip-row {
  display: grid;
  gap: 10px;
  margin-top: 12px;
}

.portfolio-preview-stack span {
  height: 12px;
  border-radius: 999px;
}

.portfolio-preview-stack span:nth-child(1) {
  width: 78%;
}

.portfolio-preview-stack span:nth-child(2) {
  width: 64%;
}

.portfolio-preview-stack span:nth-child(3) {
  width: 86%;
}

.portfolio-preview-columns {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.portfolio-preview-columns span {
  min-height: 72px;
  border-radius: 16px;
}

.portfolio-preview-lines span {
  height: 12px;
  margin-top: 10px;
  border-radius: 999px;
}

.portfolio-preview-lines span:nth-child(1) {
  width: 82%;
}

.portfolio-preview-lines span:nth-child(2) {
  width: 58%;
}

.portfolio-preview-lines span:nth-child(3) {
  width: 74%;
}

.portfolio-preview-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}

.portfolio-preview-grid span {
  min-height: 74px;
  border-radius: 16px;
}

.portfolio-preview-chip-row {
  grid-template-columns: repeat(2, minmax(0, max-content));
  margin-top: 18px;
}

.portfolio-preview-chip-row span {
  width: 92px;
  height: 34px;
  border-radius: 999px;
}

.portfolio-card-copy {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-top: auto;
}

.portfolio-card-copy h3 {
  font-size: 1.22rem;
  line-height: 1.15;
}

.portfolio-card-copy p {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

.portfolio-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted-strong);
  font-size: 0.92rem;
  white-space: nowrap;
}

.portfolio-link::after {
  content: "";
  width: 18px;
  height: 1px;
  background: linear-gradient(90deg, rgba(139, 92, 246, 0.9), rgba(34, 211, 238, 0.9));
}

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

.cta-panel {
  position: relative;
  overflow: hidden;
  padding: 40px;
  border: 1px solid rgba(139, 92, 246, 0.18);
  border-radius: 32px;
  background:
    radial-gradient(circle at top right, rgba(34, 211, 238, 0.12), transparent 28%),
    radial-gradient(circle at bottom left, rgba(139, 92, 246, 0.16), transparent 32%),
    linear-gradient(180deg, rgba(30, 41, 59, 0.94), rgba(15, 23, 42, 0.9));
  box-shadow:
    0 30px 80px rgba(2, 6, 23, 0.34),
    0 0 40px rgba(139, 92, 246, 0.08);
  backdrop-filter: blur(18px);
  text-align: center;
}

.cta-panel::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, rgba(139, 92, 246, 0.38), rgba(34, 211, 238, 0.28), transparent);
}

.cta-copy {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
}

.cta-copy h2 {
  margin-top: 20px;
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 0.96;
}

.cta-actions {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.cta-button-secondary {
  background: rgba(15, 23, 42, 0.58);
}

.cta-note {
  position: relative;
  z-index: 1;
  margin: 18px auto 0;
  max-width: 520px;
  color: var(--muted-strong);
  font-size: 0.98rem;
  line-height: 1.65;
}

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

.contact-shell {
  position: relative;
}

.contact-shell::before {
  content: "";
  position: absolute;
  top: 10%;
  right: 4%;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(34, 211, 238, 0.1), transparent 72%);
  filter: blur(12px);
  pointer-events: none;
}

.contact-intro {
  max-width: 760px;
}

.contact-intro h2 {
  margin-top: 20px;
  font-size: clamp(2rem, 4.8vw, 3.3rem);
  line-height: 0.96;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 22px;
  margin-top: 34px;
}

.contact-form,
.contact-info {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(17, 24, 39, 0.88), rgba(15, 23, 42, 0.8));
  box-shadow: 0 20px 48px rgba(2, 6, 23, 0.24);
  backdrop-filter: blur(14px);
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 24px;
}

.field {
  display: grid;
  gap: 8px;
}

.field span,
.contact-info-label {
  color: var(--muted-strong);
  font-size: 0.92rem;
}

.field-full {
  grid-column: 1 / -1;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 16px;
  background: rgba(15, 23, 42, 0.58);
  color: var(--text);
  padding: 15px 16px;
  outline: none;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease;
}

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

.field select {
  appearance: none;
}

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

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: rgba(34, 211, 238, 0.3);
  box-shadow: 0 0 0 4px rgba(34, 211, 238, 0.08);
  background: rgba(15, 23, 42, 0.72);
}

.contact-form-actions {
  display: grid;
  gap: 14px;
  align-items: start;
}

.contact-form-actions .button {
  justify-self: start;
}

.contact-form-actions .button[disabled] {
  opacity: 0.62;
  cursor: not-allowed;
  filter: saturate(0.76);
}

.consent-check {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
  padding: 16px 18px;
  border: 1px solid rgba(148, 163, 184, 0.14);
  border-radius: 20px;
  background: rgba(15, 23, 42, 0.42);
}

.consent-check input {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  accent-color: #22d3ee;
}

.consent-check span {
  color: var(--muted-strong);
  font-size: 0.92rem;
  line-height: 1.6;
}

.swipe-captcha {
  display: grid;
  gap: 10px;
}

.swipe-captcha-track {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 72px;
  padding: 8px;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(17, 24, 39, 0.92), rgba(15, 23, 42, 0.82));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 14px 32px rgba(2, 6, 23, 0.18);
  user-select: none;
  touch-action: pan-y;
}

.swipe-captcha-fill {
  position: absolute;
  inset: 0 auto 0 0;
  width: 64px;
  border-radius: 24px;
  background:
    linear-gradient(90deg, rgba(139, 92, 246, 0.3), rgba(34, 211, 238, 0.26));
  box-shadow: 0 0 28px rgba(34, 211, 238, 0.12);
  transition: width 120ms ease;
}

.swipe-captcha-thumb {
  position: absolute;
  top: 8px;
  left: 8px;
  z-index: 2;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(139, 92, 246, 0.28);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(139, 92, 246, 0.9), rgba(34, 211, 238, 0.9));
  box-shadow:
    inset 0 1px 1px rgba(255, 255, 255, 0.28),
    0 12px 28px rgba(34, 211, 238, 0.16);
  color: var(--text);
  cursor: grab;
  transition:
    transform 120ms ease,
    box-shadow 120ms ease,
    left 140ms ease;
}

.swipe-captcha-thumb:active {
  cursor: grabbing;
}

.swipe-captcha-thumb span {
  font-size: 1.65rem;
  line-height: 1;
  transform: translateX(1px);
}

.swipe-captcha-label {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 0 72px;
  text-align: center;
  color: var(--muted-strong);
  font-size: 0.98rem;
  line-height: 1.45;
}

.swipe-captcha.is-dragging .swipe-captcha-thumb {
  transform: scale(1.02);
  box-shadow:
    inset 0 1px 1px rgba(255, 255, 255, 0.28),
    0 16px 32px rgba(34, 211, 238, 0.22);
}

.swipe-captcha.is-verified .swipe-captcha-track {
  border-color: rgba(34, 211, 238, 0.34);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 18px 36px rgba(34, 211, 238, 0.12);
}

.swipe-captcha.is-verified .swipe-captcha-fill {
  width: 100% !important;
  background:
    linear-gradient(90deg, rgba(34, 211, 238, 0.28), rgba(16, 185, 129, 0.22));
}

.swipe-captcha.is-verified .swipe-captcha-thumb {
  cursor: default;
  background:
    linear-gradient(135deg, rgba(34, 211, 238, 0.92), rgba(16, 185, 129, 0.9));
}

.swipe-captcha.is-verified .swipe-captcha-label {
  color: var(--text);
}

.contact-status {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.contact-info {
  display: grid;
  gap: 14px;
  padding: 24px;
  align-content: start;
}

.contact-info-card {
  display: grid;
  gap: 8px;
  padding: 18px;
  border: 1px solid rgba(148, 163, 184, 0.12);
  border-radius: 20px;
  background: rgba(15, 23, 42, 0.46);
}

.contact-info-card a {
  font-size: 1rem;
  color: var(--text);
}

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

.faq-shell {
  position: relative;
}

.faq-shell::before {
  content: "";
  position: absolute;
  top: 8%;
  left: 6%;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.1), transparent 72%);
  filter: blur(12px);
  pointer-events: none;
}

.faq-intro {
  max-width: 760px;
}

.faq-intro h2 {
  margin-top: 20px;
  font-size: clamp(2rem, 4.8vw, 3.2rem);
  line-height: 0.96;
}

.faq-list {
  display: grid;
  gap: 14px;
  margin-top: 34px;
}

.faq-item {
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(17, 24, 39, 0.88), rgba(15, 23, 42, 0.8));
  box-shadow: 0 18px 42px rgba(2, 6, 23, 0.22);
  backdrop-filter: blur(12px);
  overflow: clip;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.faq-item:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow:
    0 22px 46px rgba(2, 6, 23, 0.28),
    0 0 20px rgba(34, 211, 238, 0.04);
}

.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 24px;
  border: 0;
  background: transparent;
  color: var(--text);
  text-align: left;
  cursor: pointer;
}

.faq-trigger span:first-child {
  font-family: var(--font-display);
  font-size: 1.12rem;
  line-height: 1.18;
}

.faq-trigger:focus-visible {
  outline: none;
  box-shadow: inset 0 0 0 1px rgba(34, 211, 238, 0.28);
}

.faq-icon {
  position: relative;
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(139, 92, 246, 0.92), rgba(34, 211, 238, 0.92));
  transition: transform 180ms ease, opacity 180ms ease;
}

.faq-icon::after {
  transform: rotate(90deg);
}

.faq-trigger[aria-expanded="true"] .faq-icon::after {
  transform: rotate(0deg);
  opacity: 0;
}

.faq-panel {
  padding: 0 24px 22px;
  border-top: 1px solid rgba(148, 163, 184, 0.1);
}

.faq-panel p {
  max-width: 72ch;
  margin: 14px 0 0;
  color: var(--muted-strong);
  font-size: 0.98rem;
  line-height: 1.7;
}

.site-footer {
  background: #0b1220;
  border-top: 1px solid rgba(148, 163, 184, 0.1);
}

.scroll-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 30;
  width: 54px;
  height: 54px;
  border: 1px solid rgba(148, 163, 184, 0.14);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(30, 41, 59, 0.92), rgba(15, 23, 42, 0.88));
  color: var(--text);
  box-shadow:
    0 18px 38px rgba(2, 6, 23, 0.26),
    0 0 20px rgba(34, 211, 238, 0.06);
  backdrop-filter: blur(14px);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition:
    opacity 180ms ease,
    transform 180ms ease,
    visibility 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.scroll-top span {
  font-family: var(--font-display);
  font-size: 0.94rem;
  letter-spacing: -0.03em;
}

.scroll-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top:hover {
  border-color: rgba(34, 211, 238, 0.26);
  box-shadow:
    0 20px 42px rgba(2, 6, 23, 0.3),
    0 0 24px rgba(34, 211, 238, 0.1);
}

.footer-shell {
  padding: 36px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) repeat(3, minmax(160px, 1fr));
  gap: 28px;
}

.footer-brand {
  max-width: 360px;
}

.footer-brand p {
  margin-top: 16px;
  color: var(--muted-strong);
  font-size: 0.96rem;
  line-height: 1.7;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-column h3 {
  font-size: 1rem;
  margin-bottom: 6px;
}

.footer-column a,
.footer-legal a {
  color: var(--muted);
  transition: color 180ms ease;
}

.footer-column a:hover,
.footer-legal a:hover {
  color: var(--text);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 26px;
  padding-top: 18px;
  border-top: 1px solid rgba(148, 163, 184, 0.1);
}

.footer-bottom p {
  color: var(--muted);
  font-size: 0.92rem;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

@keyframes float-card {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(-6deg);
  }
  50% {
    transform: translate3d(0, -12px, 0) rotate(-4deg);
  }
}

@keyframes pulse-glow {
  0%,
  100% {
    opacity: 0.72;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.04);
  }
}

@media (max-width: 1100px) {
  .hero-grid {
    gap: 28px;
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-copy {
    padding: 42px 0 0;
  }

  .hero-visual {
    min-height: 560px;
  }

  .dashboard-shell {
    left: 6%;
    width: min(100%, 580px);
  }

  .trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .trust-metrics {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-grid::before {
    display: none;
  }

  .portfolio-rail {
    grid-auto-columns: minmax(300px, 340px);
  }

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

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .shell {
    width: min(calc(100% - 24px), var(--container));
  }

  .site-header {
    padding-top: 14px;
  }

  .nav {
    border-radius: 24px;
  }

  .nav-links,
  .lang-switcher {
    display: none;
  }

  .menu-toggle,
  .mobile-menu {
    display: flex;
  }

  .mobile-menu {
    display: block;
  }

  .scroll-top {
    right: 16px;
    bottom: 16px;
  }

  .hero {
    padding: 14px 0 56px;
  }

  .trust-section {
    padding: 6px 0 64px;
  }

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

  .process-section {
    padding: 0 0 80px;
  }

  .portfolio-section {
    padding: 0 0 84px;
  }

  .cta-section {
    padding: 0 0 92px;
  }

  .contact-section {
    padding: 0 0 96px;
  }

  .faq-section {
    padding: 0 0 96px;
  }

  .footer-grid {
    gap: 24px;
  }

  .portfolio-shell::after {
    height: calc(100% - 102px);
    background:
      linear-gradient(90deg, rgba(15, 23, 42, 0.98) 0, rgba(15, 23, 42, 0) 24px),
      linear-gradient(270deg, rgba(15, 23, 42, 0.98) 0, rgba(15, 23, 42, 0) 24px);
  }

  h1 {
    max-width: none;
  }

  .hero-visual {
    min-height: 500px;
  }

  .dashboard-shell {
    top: 12%;
    left: 4%;
    right: 4%;
    width: auto;
    transform: none;
    animation: none;
  }

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

  .chart-card {
    min-height: 260px;
  }

  .floating-card-primary {
    top: 4%;
    right: 2%;
    width: 210px;
  }

  .floating-card-secondary {
    right: 4%;
    bottom: 4%;
    width: 220px;
  }

  .floating-card-tertiary {
    left: 2%;
    bottom: 14%;
    width: 200px;
  }
}

@media (max-width: 640px) {
  .brand {
    font-size: 17px;
  }

  .nav-links a {
    padding: 8px 12px;
    font-size: 0.95rem;
  }

  .hero-copy {
    padding-top: 28px;
  }

  .trust-panel {
    margin-top: 28px;
    padding: 16px;
    border-radius: 24px;
  }

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

  .services-grid {
    grid-template-columns: 1fr;
    margin-top: 28px;
  }

  .process-grid {
    grid-template-columns: 1fr;
    margin-top: 28px;
  }

  .portfolio-rail {
    grid-auto-columns: 85vw;
    gap: 14px;
    margin-top: 28px;
    padding: 0 15vw 10px 6px;
  }

  .cta-panel {
    padding: 28px 20px;
    border-radius: 24px;
  }

  .contact-form,
  .contact-info {
    padding: 20px;
    border-radius: 24px;
  }

  .scroll-top {
    width: 50px;
    height: 50px;
    border-radius: 16px;
  }

  .scroll-progress {
    height: 3px;
  }

  .cta-actions {
    flex-direction: column;
  }

  .cta-actions .button {
    width: 100%;
  }

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

  .contact-form-actions .button {
    width: 100%;
    justify-self: stretch;
  }

  .faq-trigger {
    padding: 18px 18px 18px 20px;
  }

  .faq-panel {
    padding: 0 20px 18px;
  }

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

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

  .portfolio-card {
    min-height: 320px;
  }

  .trust-ambient-card {
    display: none;
  }

  .portfolio-shell::after {
    background:
      linear-gradient(90deg, rgba(15, 23, 42, 1) 0, rgba(15, 23, 42, 0) 18px),
      linear-gradient(270deg, rgba(15, 23, 42, 1) 0, rgba(15, 23, 42, 0) 18px);
  }

  .trust-card,
  .trust-metric,
  .service-card,
  .process-card {
    min-height: auto;
  }

  .lead {
    line-height: 1.64;
  }

  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .trust-list {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 460px;
  }

  .chart-meta {
    flex-direction: column;
  }

  .floating-card-primary,
  .floating-card-secondary,
  .floating-card-tertiary {
    position: static;
    width: auto;
    margin-top: 14px;
    animation: none;
  }

  .visual-stage {
    position: relative;
    display: grid;
    gap: 14px;
  }

  .light-streak,
  .light-orb {
    display: none;
  }

.dashboard-shell {
  position: relative;
  inset: auto;
}
}

.cookie-banner-visible {
  padding-bottom: 160px;
}

.cookie-banner-visible .scroll-top {
  bottom: 188px;
}

.cookie-banner {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 1200;
  width: min(520px, calc(100vw - 32px));
  display: grid;
  gap: 18px;
  padding: 22px;
  border: 1px solid rgba(148, 163, 184, 0.24);
  border-radius: 24px;
  background: rgba(15, 23, 42, 0.96);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.35);
  backdrop-filter: blur(12px);
}

.cookie-banner-copy {
  display: grid;
  gap: 8px;
}

.cookie-banner-copy strong {
  color: #f8fafc;
  font-size: 1rem;
}

.cookie-banner-copy p {
  margin: 0;
  color: rgba(226, 232, 240, 0.88);
  font-size: 0.95rem;
  line-height: 1.6;
}

.cookie-banner-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-banner-link {
  color: #f8fafc;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.cookie-banner-button {
  width: auto;
}

@media (max-width: 640px) {
  .cookie-banner-visible {
    padding-bottom: 220px;
  }

  .cookie-banner-visible .scroll-top {
    bottom: 236px;
  }

  .cookie-banner {
    right: 16px;
    left: 16px;
    bottom: 16px;
    width: auto;
  }

  .cookie-banner-actions {
    justify-content: stretch;
  }

  .cookie-banner-link,
  .cookie-banner-button {
    width: 100%;
    text-align: center;
  }
}
