:root {
  --bg-page: #eef4fb;
  --bg-soft: #e8f0fa;
  --bg-surface: #ffffff;
  --bg-dark: #07111d;
  --bg-dark-2: #0c1728;
  --ink-strong: #0d1725;
  --ink-body: #33445b;
  --ink-soft: #607086;
  --white: #ffffff;
  --line: rgba(12, 23, 40, 0.08);
  --line-strong: rgba(12, 23, 40, 0.14);
  --line-dark: rgba(255, 255, 255, 0.12);
  --blue: #2f7cff;
  --blue-deep: #1f63f0;
  --blue-rich: #1550d8;
  --cyan: #5dd8eb;
  --cyan-soft: #dff8ff;
  --red: #ff3b30;
  --logo-blue: #2f7cff;
  --logo-red: #ff3b30;
  --highlight: #edf5ff;
  --shadow-sm: 0 12px 30px rgba(15, 31, 54, 0.08);
  --shadow-lg: 0 28px 70px rgba(10, 24, 43, 0.12);
  --shadow-dark: 0 32px 90px rgba(1, 9, 20, 0.4);
  --radius-xs: 12px;
  --radius-sm: 18px;
  --radius-md: 24px;
  --radius-lg: 32px;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --section-space: clamp(4.75rem, 8vw, 7.25rem);
  --step--1: 0.92rem;
  --step-0: 1rem;
  --step-1: clamp(1.1rem, 0.7vw + 0.95rem, 1.24rem);
  --step-2: clamp(1.28rem, 1vw + 1rem, 1.68rem);
  --step-3: clamp(1.95rem, 2vw + 1.15rem, 3rem);
  --step-4: clamp(3rem, 4vw + 1.3rem, 5.15rem);
  --transition: 220ms ease;
  --container: 1200px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  position: relative;
  margin: 0;
  min-width: 320px;
  color: var(--ink-strong);
  background:
    radial-gradient(circle at 14% 16%, rgba(47, 124, 255, 0.22), transparent 22%),
    radial-gradient(circle at 86% 18%, rgba(93, 216, 235, 0.16), transparent 18%),
    linear-gradient(160deg, #07111d 0%, #0a1628 42%, #102040 100%);
  font-family: "Manrope", "Segoe UI", sans-serif;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  isolation: isolate;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

button {
  cursor: pointer;
}

button,
a,
input,
select,
textarea {
  transition:
    background-color var(--transition),
    border-color var(--transition),
    color var(--transition),
    transform var(--transition),
    box-shadow var(--transition),
    opacity var(--transition);
}

:focus-visible {
  outline: 2px solid rgba(47, 124, 255, 0.75);
  outline-offset: 3px;
}

.page-noise {
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image:
    radial-gradient(circle at center, rgba(47, 124, 255, 0.12), transparent 24%),
    radial-gradient(circle at center, rgba(93, 216, 235, 0.1), transparent 18%),
    radial-gradient(circle at center, rgba(255, 255, 255, 0.045), transparent 28%);
  background-repeat: no-repeat;
  background-size: 48vw 48vw, 42vw 42vw, 62vw 62vw;
  background-position: 6% 4%, 92% 12%, 50% 70%;
  animation: canvas-drift 22s ease-in-out infinite alternate;
  pointer-events: none;
}

.page-noise-water {
  position: absolute;
  inset: 0;
  z-index: 3;
  width: 100%;
  height: 100%;
  display: block;
  opacity: 0.96;
  pointer-events: none;
}

.page-noise::before,
.page-noise::after {
  content: "";
  position: absolute;
  inset: 0;
}

.page-noise::before {
  z-index: 0;
  inset: -16%;
  background:
    radial-gradient(circle at 16% 16%, rgba(47, 124, 255, 0.22), transparent 22%),
    radial-gradient(circle at 82% 18%, rgba(93, 216, 235, 0.18), transparent 18%),
    radial-gradient(circle at 46% 72%, rgba(47, 124, 255, 0.12), transparent 24%);
  filter: blur(34px);
  opacity: 0.94;
  animation: aurora-drift 16s ease-in-out infinite alternate;
}

.page-noise::after {
  z-index: 1;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.042) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.042) 1px, transparent 1px);
  background-size: 84px 84px;
  opacity: 0.32;
  animation: grid-drift 26s linear infinite, grid-fade 10s ease-in-out infinite alternate;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding-top: 16px;
}

section[id] {
  scroll-margin-top: 112px;
}

.header-shell {
  position: relative;
  display: flex;
  align-items: center;
  gap: 18px;
  overflow: hidden;
  padding: 14px 18px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 22px;
  background: rgba(7, 17, 29, 0.72);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 48px rgba(1, 9, 20, 0.18);
}

.header-shell::before,
.header-shell::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.header-shell::before {
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0));
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask-composite: exclude;
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  padding: 1px;
  opacity: 0.55;
}

.header-shell::after {
  left: 28px;
  right: 28px;
  bottom: -1px;
  height: 24px;
  border-radius: 999px;
  background: radial-gradient(circle at center, rgba(120, 182, 255, 0.32), rgba(120, 182, 255, 0));
  filter: blur(10px);
  opacity: 0.75;
}

.site-header.is-scrolled .header-shell {
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(7, 17, 29, 0.88);
}

.site-header.is-scrolled .site-nav {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
}

.brand {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding-right: 18px;
  flex-shrink: 0;
}

.brand::after {
  content: "";
  position: absolute;
  top: 6px;
  right: 0;
  bottom: 6px;
  width: 1px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0));
}

.brand-mark {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    radial-gradient(circle at 24% 22%, rgba(47, 124, 255, 0.24), transparent 48%),
    radial-gradient(circle at 78% 76%, rgba(255, 59, 48, 0.16), transparent 52%),
    rgba(255, 255, 255, 0.04);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.brand-mark::before {
  content: "W";
  position: relative;
  z-index: 1;
  font-family: "Space Grotesk", "Manrope", sans-serif;
  font-size: 1.56rem;
  font-weight: 700;
  letter-spacing: -0.12em;
  line-height: 1;
  transform: translateX(-1px);
  background: linear-gradient(90deg, var(--logo-blue) 0%, var(--logo-blue) 49%, var(--logo-red) 51%, var(--logo-red) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.brand-mark::after {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.brand-mark span {
  display: none;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand-copy strong {
  color: var(--white);
  font-family: "Space Grotesk", sans-serif;
  font-size: 1rem;
  font-weight: 700;
}

.brand-copy small {
  color: rgba(238, 246, 255, 0.68);
  font-size: 0.7rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: auto;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 10px 28px rgba(2, 11, 24, 0.14);
}

.site-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  color: rgba(238, 246, 255, 0.74);
  font-weight: 700;
  overflow: hidden;
}

.site-nav a::before,
.site-nav a::after {
  content: "";
  position: absolute;
  inset: auto;
  pointer-events: none;
}

.site-nav a::before {
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  opacity: 0;
  transform: scale(0.94);
  transition:
    opacity var(--transition),
    transform var(--transition);
}

.site-nav a::after {
  left: 14px;
  right: 14px;
  bottom: 7px;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), #79c8ff);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--transition);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--white);
}

.site-nav a:hover::before,
.site-nav a:focus-visible::before {
  opacity: 1;
  transform: scale(1);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.header-cta {
  margin-left: 10px;
  min-height: 50px;
  padding-inline: 24px;
  box-shadow:
    0 16px 34px rgba(47, 124, 255, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  width: 52px;
  height: 52px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: var(--white);
}

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

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

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: -0.01em;
}

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

.button-primary {
  color: var(--white);
  background: linear-gradient(180deg, #3c8cff 0%, var(--blue) 48%, var(--blue-rich) 100%);
  box-shadow:
    0 16px 32px rgba(47, 124, 255, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.button-secondary {
  color: var(--blue-rich);
  background: rgba(237, 245, 255, 0.92);
  border-color: rgba(47, 124, 255, 0.16);
  box-shadow:
    0 10px 24px rgba(47, 124, 255, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.84);
}

.hero .button-secondary {
  color: var(--white);
  background: rgba(36, 100, 228, 0.16);
  border-color: rgba(120, 182, 255, 0.28);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(5rem, 9vw, 8.5rem) 0 clamp(4.25rem, 8vw, 6.5rem);
  color: var(--white);
  background: transparent;
}

.hero::before {
  content: none;
}

.hero::after {
  content: none;
}

.hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(400px, 0.94fr);
  gap: 36px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 16px;
  color: rgba(204, 229, 255, 0.92);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: linear-gradient(90deg, rgba(93, 216, 235, 0.9), rgba(47, 124, 255, 0.28));
  box-shadow: 0 0 14px rgba(93, 216, 235, 0.16);
}

h1,
h2,
h3 {
  margin: 0;
  letter-spacing: -0.038em;
  line-height: 1.04;
  font-family: "Space Grotesk", "Manrope", sans-serif;
  text-wrap: balance;
}

h1 {
  max-width: 14ch;
  font-size: var(--step-4);
}

.hero-title {
  max-width: 11.2ch;
  display: block;
  position: relative;
  margin-top: 4px;
  font-size: clamp(2.45rem, 3vw + 1.45rem, 4.4rem);
  letter-spacing: -0.048em;
  line-height: 0.99;
  background: linear-gradient(180deg, #ffffff 0%, #eef6ff 62%, #d3e9ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 14px 34px rgba(7, 17, 29, 0.18);
  text-wrap: balance;
}

.hero-title::after {
  content: "";
  display: block;
  width: 88px;
  height: 3px;
  margin-top: 22px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(120, 182, 255, 0.96), rgba(93, 216, 235, 0.92));
  box-shadow: 0 0 24px rgba(93, 216, 235, 0.18);
  animation: title-bar-breathe 6s ease-in-out infinite;
}

h2 {
  font-size: var(--step-3);
}

h3 {
  font-size: var(--step-2);
}

p {
  margin: 0;
}

.hero-copy {
  max-width: 620px;
}

.hero-text {
  max-width: 51ch;
  margin-top: 22px;
  color: rgba(238, 246, 255, 0.82);
  font-size: clamp(1rem, 0.36vw + 0.98rem, 1.12rem);
  font-weight: 500;
  line-height: 1.82;
  text-wrap: pretty;
}

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

.hero-stage {
  position: relative;
  min-height: 620px;
  isolation: isolate;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(34px);
  animation: orb-float 18s ease-in-out infinite alternate;
}

.hero-orb-a {
  top: 26px;
  right: 8px;
  width: 220px;
  height: 220px;
  background: rgba(47, 124, 255, 0.24);
}

.hero-orb-b {
  left: 10px;
  bottom: 50px;
  width: 260px;
  height: 260px;
  background: rgba(93, 216, 235, 0.16);
}

.hero-grid {
  position: absolute;
  inset: 0;
  border-radius: 32px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.9), transparent 95%);
  opacity: 0.28;
  animation: hero-grid-breathe 14s ease-in-out infinite;
}

.stage-window,
.stage-note {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: var(--shadow-dark);
  backdrop-filter: blur(14px);
}

.stage-window {
  position: absolute;
  inset: 72px 34px 66px 36px;
  padding: 18px;
  border-radius: 30px;
  overflow: hidden;
  transform: perspective(1400px) rotateY(-10deg) rotateX(8deg);
  animation: stage-window-float 9s ease-in-out infinite;
}

.stage-window::before,
.stage-window::after,
.stage-hero-panel::before,
.stage-hero-panel::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.stage-window::before {
  inset: -26% auto -26% -24%;
  width: 42%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(125, 205, 255, 0.18), rgba(255, 255, 255, 0));
  transform: rotate(16deg);
  filter: blur(2px);
  opacity: 0.6;
  animation: stage-window-sheen 8s ease-in-out infinite;
}

.stage-window::after {
  left: 18px;
  right: 18px;
  top: -16%;
  height: 26%;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(120, 182, 255, 0.26), rgba(120, 182, 255, 0));
  filter: blur(12px);
  animation: stage-scan 7.5s ease-in-out infinite;
}

.stage-topbar {
  display: flex;
  gap: 8px;
  margin-bottom: 18px;
}

.stage-topbar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  animation: dot-pulse 4.8s ease-in-out infinite;
}

.stage-topbar span:nth-child(1) { background: rgba(120, 182, 255, 0.94); }
.stage-topbar span:nth-child(2) { background: rgba(47, 124, 255, 0.95); }
.stage-topbar span:nth-child(3) { background: rgba(93, 216, 235, 0.95); }
.stage-topbar span:nth-child(2) { animation-delay: 0.18s; }
.stage-topbar span:nth-child(3) { animation-delay: 0.36s; }

.stage-body {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr);
  gap: 16px;
}

.stage-sidebar,
.stage-card-grid {
  display: grid;
  gap: 12px;
}

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

.stage-pill,
.stage-card,
.stage-hero-panel {
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.07);
}

.stage-pill {
  height: 16px;
  transform-origin: left center;
  animation: stage-pill-pulse 5.4s ease-in-out infinite;
}

.stage-pill-active {
  background: linear-gradient(90deg, rgba(47, 124, 255, 0.94), rgba(93, 216, 235, 0.82));
}

.stage-pill:nth-child(2) { animation-delay: 0.28s; }
.stage-pill:nth-child(3) { animation-delay: 0.56s; }
.stage-pill:nth-child(4) { animation-delay: 0.84s; }

.stage-main {
  display: grid;
  gap: 14px;
}

.stage-hero-panel {
  position: relative;
  min-height: 198px;
  padding: 18px;
  overflow: hidden;
  background:
    radial-gradient(circle at 84% 18%, rgba(47, 124, 255, 0.18), transparent 28%),
    rgba(255, 255, 255, 0.06);
}

.stage-panel-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

.stage-panel-copy {
  display: grid;
  gap: 12px;
  min-width: 0;
  flex: 1;
}

.stage-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(232, 243, 255, 0.72);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.stage-kicker::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(93, 216, 235, 0.96), rgba(47, 124, 255, 0.92));
  box-shadow: 0 0 16px rgba(93, 216, 235, 0.34);
  animation: dot-pulse 2.8s ease-in-out infinite;
}

.stage-signal {
  position: relative;
  display: grid;
  gap: 4px;
  min-width: 126px;
  padding: 12px 14px 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 16px;
  background:
    linear-gradient(145deg, rgba(47, 124, 255, 0.12), rgba(93, 216, 235, 0.04)),
    rgba(255, 255, 255, 0.05);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
  animation: stage-card-float 7.2s ease-in-out infinite;
}

.stage-signal strong {
  color: var(--white);
  font-size: 0.82rem;
  line-height: 1.15;
}

.stage-signal small {
  color: rgba(232, 243, 255, 0.68);
  font-size: 0.72rem;
}

.stage-signal-dot {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(93, 216, 235, 0.96);
  box-shadow: 0 0 14px rgba(93, 216, 235, 0.46);
  animation: dot-pulse 2.4s ease-in-out infinite;
}

.stage-hero-panel::before {
  inset: auto 12% 16% auto;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(93, 216, 235, 0.18), rgba(93, 216, 235, 0));
  filter: blur(12px);
  animation: panel-glow-orbit 10s ease-in-out infinite;
}

.stage-hero-panel::after {
  left: -18%;
  right: -18%;
  top: 58%;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(120, 182, 255, 0.34), rgba(255, 255, 255, 0));
  box-shadow: 0 0 18px rgba(120, 182, 255, 0.12);
  animation: data-sweep 6.8s ease-in-out infinite;
}

.stage-line {
  display: block;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  transform-origin: left center;
  animation: line-breathe 5.5s ease-in-out infinite;
}

.stage-line + .stage-line {
  margin-top: 10px;
}

.stage-line:nth-child(2) {
  animation-delay: 0.4s;
}

.stage-line:nth-child(3) {
  animation-delay: 0.8s;
}

.stage-line-strong {
  width: 74%;
}

.stage-line-medium {
  width: 56%;
}

.stage-line-short {
  width: 38%;
}

.stage-chart-shell {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.stage-chart {
  position: relative;
  display: grid;
  grid-auto-flow: column;
  align-items: end;
  gap: 12px;
  height: 132px;
  padding: 16px 12px 14px;
  margin-top: 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    rgba(7, 17, 29, 0.18);
  overflow: hidden;
}

.stage-chart::before {
  content: "";
  position: absolute;
  inset: 16px 12px;
  border-radius: 14px;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 100% 24px, 54px 100%;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.55), transparent 100%);
  opacity: 0.42;
  pointer-events: none;
}

.stage-chart-bar {
  position: relative;
  z-index: 1;
  border-radius: 12px 12px 4px 4px;
  background: linear-gradient(180deg, rgba(47, 124, 255, 0.56), rgba(93, 216, 235, 0.16));
}

.stage-chart-bar:nth-of-type(1) { height: 38%; }
.stage-chart-bar:nth-of-type(2) { height: 70%; }
.stage-chart-bar:nth-of-type(3) { height: 54%; }
.stage-chart-bar:nth-of-type(4) { height: 84%; }
.stage-chart-bar:nth-of-type(5) { height: 62%; }

.stage-chart-bar {
  animation: chart-breathe 4.8s ease-in-out infinite;
}

.stage-chart-bar:nth-of-type(2) { animation-delay: 0.24s; }
.stage-chart-bar:nth-of-type(3) { animation-delay: 0.48s; }
.stage-chart-bar:nth-of-type(4) { animation-delay: 0.72s; }
.stage-chart-bar:nth-of-type(5) { animation-delay: 0.96s; }

.stage-chart-line {
  position: absolute;
  inset: 12px 10px 18px;
  width: calc(100% - 20px);
  height: calc(100% - 30px);
  z-index: 2;
  overflow: visible;
  pointer-events: none;
}

.stage-chart-path {
  fill: none;
  stroke: url(#stageLineGradient);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 10px rgba(93, 216, 235, 0.18));
  stroke-dasharray: 360;
  stroke-dashoffset: 360;
  animation: chart-line-draw 7.8s ease-in-out infinite;
}

.stage-chart-area {
  fill: url(#stageAreaGradient);
  opacity: 0.34;
  transform-origin: center bottom;
  animation: chart-area-breathe 6.2s ease-in-out infinite;
}

.stage-chart-point {
  position: absolute;
  z-index: 3;
  width: 10px;
  height: 10px;
  margin: -5px 0 0 -5px;
  border-radius: 50%;
  background: rgba(233, 248, 255, 0.96);
  box-shadow:
    0 0 0 5px rgba(93, 216, 235, 0.1),
    0 0 16px rgba(93, 216, 235, 0.24);
  animation: dot-pulse 2.8s ease-in-out infinite;
}

.stage-chart-point-1 {
  left: 30%;
  top: 51%;
}

.stage-chart-point-2 {
  left: 56%;
  top: 28%;
  animation-delay: 0.35s;
}

.stage-chart-point-3 {
  left: 72%;
  top: 30%;
  animation-delay: 0.7s;
}

.stage-chart-point-4 {
  left: 92%;
  top: 9%;
  animation-delay: 1.05s;
}

.stage-chart-axis {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  color: rgba(232, 243, 255, 0.6);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.stage-stat-chip {
  display: grid;
  gap: 4px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.045);
}

.stage-stat-chip strong {
  color: var(--white);
  font-size: 0.76rem;
  line-height: 1.15;
}

.stage-stat-chip span {
  color: rgba(232, 243, 255, 0.62);
  font-size: 0.68rem;
  line-height: 1.3;
}

.stage-card {
  position: relative;
  display: grid;
  gap: 10px;
  min-height: 92px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
  animation: stage-card-float 6.6s ease-in-out infinite;
}

.stage-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0));
  opacity: 0.7;
  pointer-events: none;
}

.stage-card-accent {
  background:
    linear-gradient(135deg, rgba(47, 124, 255, 0.2), rgba(93, 216, 235, 0.14)),
    rgba(255, 255, 255, 0.06);
}

.stage-card-wide {
  grid-column: 1 / -1;
  min-height: 112px;
}

.stage-card-grid .stage-card:nth-child(2) {
  animation-delay: 0.36s;
}

.stage-card-grid .stage-card:nth-child(3) {
  animation-delay: 0.72s;
}

.stage-card-kicker,
.stage-card strong,
.stage-card-progress,
.stage-mini-bars,
.stage-flow-track,
.stage-flow-line {
  position: relative;
  z-index: 1;
}

.stage-card-kicker {
  color: rgba(232, 243, 255, 0.64);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.stage-card strong {
  color: var(--white);
  font-size: 0.82rem;
  line-height: 1.25;
}

.stage-card-progress {
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.stage-card-progress span {
  display: block;
  width: 62%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(93, 216, 235, 0.92), rgba(47, 124, 255, 0.94));
  animation: stage-progress-shift 5.8s ease-in-out infinite;
}

.stage-mini-bars {
  display: grid;
  grid-auto-flow: column;
  align-items: end;
  gap: 6px;
  height: 42px;
}

.stage-mini-bars span {
  border-radius: 999px 999px 4px 4px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(93, 216, 235, 0.36));
  animation: chart-breathe 4.6s ease-in-out infinite;
}

.stage-mini-bars span:nth-child(1) {
  height: 38%;
}

.stage-mini-bars span:nth-child(2) {
  height: 76%;
  animation-delay: 0.24s;
}

.stage-mini-bars span:nth-child(3) {
  height: 54%;
  animation-delay: 0.48s;
}

.stage-mini-bars span:nth-child(4) {
  height: 88%;
  animation-delay: 0.72s;
}

.stage-flow-track {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.stage-flow-track span {
  padding: 8px 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(232, 243, 255, 0.72);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-align: center;
}

.stage-flow-line {
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.stage-flow-line span {
  display: block;
  width: 46%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(93, 216, 235, 0.9), rgba(47, 124, 255, 0.96));
  box-shadow: 0 0 16px rgba(93, 216, 235, 0.24);
  animation: stage-flow-run 6.8s ease-in-out infinite;
}

.stage-orbit {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.stage-note {
  position: absolute;
  display: grid;
  gap: 4px;
  min-width: 190px;
  max-width: 240px;
  padding: 16px 18px;
  border-radius: 18px;
  overflow: hidden;
}

.stage-note::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: linear-gradient(180deg, rgba(120, 182, 255, 0.92), rgba(93, 216, 235, 0.58));
  opacity: 0.9;
}

.stage-note::after {
  content: "";
  position: absolute;
  inset: -20% auto auto 54%;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(93, 216, 235, 0.16), rgba(93, 216, 235, 0));
  filter: blur(10px);
}

.stage-note-a {
  right: -12px;
  bottom: 24px;
  animation: orbit-card-a 7.8s ease-in-out infinite;
}

.stage-note-b {
  left: -28px;
  top: 114px;
  animation: orbit-card-b 8.6s ease-in-out infinite;
}

.stage-note-c {
  left: 24px;
  bottom: 34px;
  animation: orbit-card-c 8.2s ease-in-out infinite;
}

.stage-note-d {
  right: 18px;
  top: 96px;
  animation: orbit-card-d 7.4s ease-in-out infinite;
}

.stage-note strong {
  position: relative;
  z-index: 1;
  display: block;
  margin-bottom: 8px;
  color: var(--white);
  font-size: 0.88rem;
  letter-spacing: -0.01em;
}

.stage-note span {
  position: relative;
  z-index: 1;
  color: rgba(238, 246, 255, 0.72);
  font-size: 0.82rem;
}

.section {
  padding: var(--section-space) 0;
}

.section-soft {
  background: transparent;
}

.section-dark {
  color: var(--white);
  background: transparent;
}

.section-heading {
  display: grid;
  gap: 10px;
  max-width: 760px;
  margin-bottom: 36px;
}

.section-heading h2 {
  color: var(--white);
  max-width: 13ch;
  line-height: 1.06;
}

.section-heading p:last-child {
  max-width: 58ch;
  color: rgba(238, 246, 255, 0.76);
  font-size: clamp(1rem, 0.3vw + 0.96rem, 1.08rem);
  line-height: 1.76;
  text-wrap: pretty;
}

.section-heading-on-dark h2,
.section-heading-on-dark p:last-child {
  color: var(--white);
}

.section-heading-on-dark p:last-child {
  color: rgba(238, 246, 255, 0.76);
}

.section-heading-split {
  max-width: none;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  align-items: end;
  gap: 24px;
}

.section-heading-copy {
  max-width: 760px;
}

.section-heading-split .section-heading-copy h2 {
  max-width: 15ch;
}

.section-stage {
  position: relative;
  min-height: 188px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(160deg, rgba(10, 21, 37, 0.92), rgba(15, 32, 54, 0.92)),
    rgba(255, 255, 255, 0.02);
  box-shadow:
    0 24px 54px rgba(2, 10, 22, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.section-stage::before,
.section-stage::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.section-stage::before {
  inset: 0;
  background:
    radial-gradient(circle at 18% 18%, rgba(47, 124, 255, 0.16), transparent 20%),
    radial-gradient(circle at 84% 24%, rgba(93, 216, 235, 0.14), transparent 22%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0));
}

.section-stage::after {
  inset: 16px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.7), transparent 92%);
}

.section-stage span {
  position: absolute;
  display: block;
}

.intro-section {
  position: relative;
}

#sluzby > .container {
  width: min(1380px, calc(100% - 32px));
}

.trust-shell {
  position: relative;
  overflow: hidden;
  padding: clamp(1.7rem, 3vw, 2.5rem);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: calc(var(--radius-lg) + 2px);
  background:
    linear-gradient(180deg, rgba(22, 36, 58, 0.84), rgba(15, 28, 46, 0.76));
  box-shadow:
    0 28px 72px rgba(1, 9, 20, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(16px);
}

.trust-shell::before,
.trust-shell::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.trust-shell::before {
  inset: 0;
  background:
    radial-gradient(circle at 10% 18%, rgba(47, 124, 255, 0.22), transparent 22%),
    radial-gradient(circle at 88% 20%, rgba(93, 216, 235, 0.16), transparent 20%),
    radial-gradient(circle at 82% 86%, rgba(47, 124, 255, 0.12), transparent 22%);
  opacity: 1;
}

.trust-shell::after {
  inset: 18px;
  border-radius: calc(var(--radius-lg) - 8px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.038) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.038) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.55), transparent 84%);
  opacity: 0.54;
}

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

.trust-bubbles span {
  position: absolute;
  bottom: -12%;
  border-radius: 50%;
  border: 1px solid rgba(214, 236, 255, 0.22);
  background:
    radial-gradient(circle at 32% 28%, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.08) 42%, rgba(93, 216, 235, 0.12) 68%, rgba(93, 216, 235, 0) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    0 0 26px rgba(93, 216, 235, 0.12);
  opacity: 0;
  filter: blur(0.2px);
  mix-blend-mode: screen;
  animation: trust-bubble-rise 18s linear infinite;
}

.trust-bubbles span:nth-child(1) {
  left: 8%;
  width: 24px;
  height: 24px;
  animation-delay: -3.6s;
  animation-duration: 15s;
}

.trust-bubbles span:nth-child(2) {
  left: 22%;
  width: 16px;
  height: 16px;
  animation-delay: -9.4s;
  animation-duration: 19s;
}

.trust-bubbles span:nth-child(3) {
  left: 44%;
  width: 28px;
  height: 28px;
  animation-delay: -6.2s;
  animation-duration: 17s;
}

.trust-bubbles span:nth-child(4) {
  left: 62%;
  width: 18px;
  height: 18px;
  animation-delay: -11.8s;
  animation-duration: 20s;
}

.trust-bubbles span:nth-child(5) {
  left: 78%;
  width: 26px;
  height: 26px;
  animation-delay: -7.8s;
  animation-duration: 16.5s;
}

.trust-bubbles span:nth-child(6) {
  left: 90%;
  width: 14px;
  height: 14px;
  animation-delay: -13.2s;
  animation-duration: 18.5s;
}

.trust-bubbles span:nth-child(7) {
  left: 15%;
  width: 12px;
  height: 12px;
  animation-delay: -5.4s;
  animation-duration: 14.5s;
}

.trust-bubbles span:nth-child(8) {
  left: 35%;
  width: 20px;
  height: 20px;
  animation-delay: -10.6s;
  animation-duration: 21s;
}

.trust-bubbles span:nth-child(9) {
  left: 56%;
  width: 15px;
  height: 15px;
  animation-delay: -2.8s;
  animation-duration: 16s;
}

.trust-bubbles span:nth-child(10) {
  left: 72%;
  width: 22px;
  height: 22px;
  animation-delay: -14.4s;
  animation-duration: 19.5s;
}

.trust-heading,
.trust-grid {
  position: relative;
  z-index: 1;
}

.trust-heading {
  max-width: 920px;
  margin-bottom: 24px;
}

.trust-heading .eyebrow {
  color: rgba(214, 233, 255, 0.92);
}

.service-heading .eyebrow,
.contact-panel .eyebrow {
  color: var(--blue-deep);
}

.trust-heading h2,
.service-heading h2 {
  color: var(--ink-strong);
}

.trust-heading h2 {
  color: var(--white);
  max-width: 20ch;
  line-height: 1.08;
}

.trust-heading p:last-child,
.service-heading p:last-child {
  color: var(--ink-body);
}

.trust-heading p:last-child {
  color: rgba(232, 243, 255, 0.72);
}

.service-heading h2,
.service-heading p:last-child {
  color: var(--white);
}

.service-heading p:last-child {
  color: rgba(232, 243, 255, 0.8);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 24px;
  align-items: start;
}

.trust-card,
.service-card,
.process-card,
.case-card,
.pricing-card,
.faq-item,
.contact-panel,
.contact-info-card,
.cta-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--bg-surface);
  box-shadow: var(--shadow-sm);
}

.service-card li + li,
.brief-list li + li,
.pricing-card li + li,
.footer-links li + li {
  margin-top: 10px;
}

.trust-grid,
.services-grid,
.pricing-grid,
.footer-grid {
  display: grid;
  gap: 18px;
}

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

.trust-card,
.contact-info-card {
  padding: 24px;
}

.trust-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 236px;
  padding: 28px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.05)),
    rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow:
    0 22px 48px rgba(1, 9, 20, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  transition:
    transform 260ms ease,
    box-shadow 260ms ease,
    border-color 260ms ease,
    background 260ms ease;
}

.trust-card::before,
.trust-card::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.trust-card::before {
  left: 26px;
  right: 26px;
  top: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(47, 124, 255, 0.94), rgba(93, 216, 235, 0.84));
}

.trust-card::after {
  inset: auto -8% -26% auto;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(93, 216, 235, 0.16), rgba(93, 216, 235, 0));
  filter: blur(6px);
}

.trust-card:hover {
  transform: translateY(-5px);
  box-shadow:
    0 28px 56px rgba(1, 9, 20, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.trust-icon {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  margin-bottom: 20px;
  border-radius: 20px;
  background:
    linear-gradient(135deg, rgba(47, 124, 255, 0.16), rgba(93, 216, 235, 0.1)),
    rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.09);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 14px 28px rgba(1, 9, 20, 0.18);
  overflow: hidden;
}

.trust-icon::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0));
  opacity: 1;
}

.trust-card-structure .trust-icon {
  background:
    linear-gradient(135deg, rgba(47, 124, 255, 0.2), rgba(120, 182, 255, 0.08)),
    rgba(255, 255, 255, 0.03);
}

.trust-card-impression .trust-icon {
  background:
    linear-gradient(135deg, rgba(18, 38, 68, 0.22), rgba(93, 216, 235, 0.14)),
    rgba(255, 255, 255, 0.03);
}

.trust-card-foundation .trust-icon {
  background:
    linear-gradient(135deg, rgba(47, 124, 255, 0.14), rgba(93, 216, 235, 0.2)),
    rgba(255, 255, 255, 0.03);
}

.trust-icon svg {
  position: relative;
  z-index: 1;
  width: 30px;
  height: 30px;
  fill: none;
  stroke: rgba(239, 247, 255, 0.94);
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.trust-card-structure {
  background:
    linear-gradient(180deg, rgba(19, 37, 62, 0.36), rgba(255, 255, 255, 0.02)),
    rgba(255, 255, 255, 0.02);
}

.trust-card-impression {
  background:
    linear-gradient(180deg, rgba(18, 31, 54, 0.32), rgba(255, 255, 255, 0.02)),
    rgba(255, 255, 255, 0.02);
}

.trust-card-foundation {
  background:
    linear-gradient(180deg, rgba(16, 36, 60, 0.32), rgba(255, 255, 255, 0.02)),
    rgba(255, 255, 255, 0.02);
}

.trust-card p,
.service-card p,
.process-card p,
.case-body p,
.pricing-card p,
.faq-panel p,
.contact-copy p,
.contact-info-card p,
.contact-panel p,
.site-footer p,
.footer-links li,
.footer-links a {
  color: var(--ink-body);
  line-height: 1.72;
  text-wrap: pretty;
}

.trust-card h3 {
  color: var(--white);
}

.trust-card p {
  color: rgba(232, 243, 255, 0.74);
}


.service-shell {
  position: relative;
  overflow: hidden;
  padding: clamp(2.25rem, 3.6vw, 3.55rem);
  border: 1px solid rgba(147, 198, 255, 0.18);
  border-radius: 38px;
  background:
    radial-gradient(circle at 10% 0%, rgba(47, 124, 255, 0.16), transparent 24%),
    radial-gradient(circle at 88% 8%, rgba(93, 216, 235, 0.14), transparent 22%),
    linear-gradient(180deg, rgba(11, 20, 34, 0.78), rgba(10, 19, 31, 0.62));
  box-shadow:
    0 36px 92px rgba(2, 10, 22, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}

.service-shell::before,
.service-shell::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.service-shell::before {
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.01)),
    linear-gradient(120deg, rgba(255, 255, 255, 0.04), transparent 42%);
}

.service-shell::after {
  inset: 18px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.024) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.024) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.74), transparent 90%);
  opacity: 0.42;
}

.service-heading,
.services-grid {
  position: relative;
  z-index: 1;
}

.service-heading {
  position: relative;
  max-width: 1120px;
  margin-bottom: 42px;
  padding-bottom: 28px;
}

.service-heading::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(147, 198, 255, 0.22), rgba(147, 198, 255, 0.08), transparent 88%);
}

.service-heading .eyebrow {
  color: rgba(214, 233, 255, 0.88);
}

.service-heading h2 {
  max-width: none;
  font-size: clamp(2rem, 1.05vw + 1.84rem, 3.05rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.service-heading p:last-child {
  max-width: 54ch;
  color: rgba(232, 243, 255, 0.74);
}

.services-grid {
  align-items: stretch;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 28px;
}

.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 428px;
  padding: 34px 34px 30px;
  overflow: hidden;
  background:
    linear-gradient(162deg, rgba(9, 22, 38, 0.96) 0%, rgba(12, 27, 46, 0.96) 62%, rgba(18, 42, 69, 0.96) 100%);
  border: 1px solid rgba(120, 182, 255, 0.16);
  box-shadow:
    0 30px 72px rgba(3, 12, 24, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transition:
    transform 260ms ease,
    box-shadow 260ms ease,
    border-color 260ms ease,
    background 260ms ease;
}

.service-card::before,
.service-card::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.service-card::before {
  left: 30px;
  right: auto;
  top: 0;
  height: 3px;
  width: 76px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(47, 124, 255, 0.94), rgba(93, 216, 235, 0.84));
}

.service-card::after {
  inset: auto -10% -28% auto;
  width: 210px;
  height: 210px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(93, 216, 235, 0.12), rgba(93, 216, 235, 0));
  filter: blur(8px);
}

.service-card-featured,
.service-card-ecommerce,
.service-card-admin,
.service-card-redesign,
.service-card-seo,
.service-card-care {
  grid-column: span 6;
  min-height: 430px;
}

.service-card-featured {
  background:
    linear-gradient(160deg, rgba(8, 22, 38, 0.98) 0%, rgba(11, 30, 51, 0.98) 64%, rgba(21, 60, 98, 0.96) 100%);
}

.service-card-ecommerce {
  background:
    linear-gradient(160deg, rgba(8, 20, 34, 0.98) 0%, rgba(12, 28, 43, 0.98) 60%, rgba(13, 52, 78, 0.94) 100%);
}

.service-card-admin {
  background:
    linear-gradient(160deg, rgba(10, 21, 35, 0.98) 0%, rgba(15, 29, 46, 0.98) 60%, rgba(23, 42, 63, 0.96) 100%);
}

.service-card-redesign {
  background:
    linear-gradient(160deg, rgba(10, 20, 34, 0.98) 0%, rgba(13, 31, 47, 0.98) 58%, rgba(19, 53, 78, 0.96) 100%);
}

.service-card-seo {
  background:
    linear-gradient(160deg, rgba(8, 21, 36, 0.98) 0%, rgba(12, 29, 47, 0.98) 58%, rgba(17, 62, 92, 0.96) 100%);
}

.service-card-care {
  background:
    linear-gradient(160deg, rgba(9, 21, 35, 0.98) 0%, rgba(12, 28, 44, 0.98) 60%, rgba(16, 47, 72, 0.96) 100%);
}

.service-card-featured .service-card-visual,
.service-card-ecommerce .service-card-visual,
.service-card-admin .service-card-visual,
.service-card-redesign .service-card-visual,
.service-card-seo .service-card-visual,
.service-card-care .service-card-visual {
  min-height: 214px;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 36px 86px rgba(3, 12, 24, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  border-color: rgba(147, 198, 255, 0.24);
}

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

.service-card-visual {
  position: relative;
  z-index: 1;
  min-height: 118px;
  width: min(100%, 312px);
  align-self: flex-end;
  margin: 24px 0 0;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    rgba(255, 255, 255, 0.03);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 18px 34px rgba(1, 9, 20, 0.22);
  overflow: hidden;
  margin-top: auto;
}

.service-card-visual::before,
.service-card-visual::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.service-card-visual::before {
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0)),
    linear-gradient(90deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0));
}

.service-card-visual::after {
  inset: auto -12% -38% auto;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(93, 216, 235, 0.14), rgba(93, 216, 235, 0));
}

.service-card h3 {
  color: var(--white);
  margin-bottom: 14px;
  font-size: clamp(1.3rem, 0.34vw + 1.18rem, 1.58rem);
  letter-spacing: -0.03em;
}

.service-card p {
  color: rgba(233, 243, 255, 0.76);
  max-width: 39ch;
}

.service-card ul {
  color: rgba(233, 243, 255, 0.72);
  gap: 9px;
  max-width: 28ch;
}

.service-card li::before {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(93, 216, 235, 0.78));
}

.service-visual-ecommerce {
  min-height: 142px;
  background:
    radial-gradient(circle at 82% 18%, rgba(93, 216, 235, 0.18), transparent 22%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.14) 0 26%, transparent 26%) 18px 18px / 92px 10px no-repeat,
    linear-gradient(90deg, rgba(255, 255, 255, 0.1) 0 48%, transparent 48%) 18px 36px / 110px 8px no-repeat,
    linear-gradient(180deg, rgba(93, 216, 235, 0.24), rgba(47, 124, 255, 0.06)) 18px 64px / 58px 60px no-repeat,
    linear-gradient(180deg, rgba(93, 216, 235, 0.36), rgba(47, 124, 255, 0.08)) 84px 52px / 58px 72px no-repeat,
    linear-gradient(180deg, rgba(93, 216, 235, 0.2), rgba(47, 124, 255, 0.05)) 150px 76px / 58px 48px no-repeat,
    linear-gradient(90deg, rgba(255, 255, 255, 0.1) 0 18%, transparent 18%) 18px 132px / 148px 8px no-repeat,
    linear-gradient(90deg, rgba(47, 124, 255, 0.18) 0 62%, transparent 62%) 174px 24px / 36px 92px no-repeat,
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    rgba(255, 255, 255, 0.03);
}

.service-visual-admin {
  background:
    radial-gradient(circle at 82% 18%, rgba(93, 216, 235, 0.16), transparent 22%),
    linear-gradient(180deg, rgba(8, 17, 29, 0.96), rgba(13, 27, 45, 0.92)),
    rgba(255, 255, 255, 0.03);
}

.service-visual-redesign {
  background:
    radial-gradient(circle at 78% 18%, rgba(93, 216, 235, 0.18), transparent 22%),
    radial-gradient(circle at 18% 84%, rgba(47, 124, 255, 0.12), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    rgba(255, 255, 255, 0.03);
}

.service-visual-redesign::before {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0)),
    linear-gradient(90deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.022) 1px, transparent 1px);
  background-size:
    auto,
    42px 100%,
    100% 24px;
}

.service-visual-redesign::after {
  inset: 18px calc(50% - 18px) 18px calc(50% - 18px);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(120, 182, 255, 0.18), rgba(93, 216, 235, 0.04));
  opacity: 0.72;
}

.service-visual-seo {
  background:
    radial-gradient(circle at 82% 18%, rgba(93, 216, 235, 0.18), transparent 22%),
    radial-gradient(circle at 18% 84%, rgba(47, 124, 255, 0.12), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    rgba(255, 255, 255, 0.03);
}

.service-visual-seo::before {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0)),
    linear-gradient(90deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.024) 1px, transparent 1px);
  background-size:
    auto,
    42px 100%,
    100% 24px;
}

.service-visual-care {
  background:
    radial-gradient(circle at 82% 18%, rgba(93, 216, 235, 0.18), transparent 22%),
    radial-gradient(circle at 14% 84%, rgba(47, 124, 255, 0.12), transparent 24%),
    linear-gradient(180deg, rgba(10, 20, 34, 0.98), rgba(15, 30, 48, 0.94)),
    rgba(255, 255, 255, 0.03);
}

.service-visual-care::before {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0)),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.022) 1px, transparent 1px);
  background-size:
    auto,
    44px 100%,
    100% 24px;
}

.service-visual-care::after {
  inset: auto -10% -32% auto;
  width: 168px;
  height: 168px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(93, 216, 235, 0.16), rgba(93, 216, 235, 0));
}

.service-card-featured .service-card-visual {
  min-height: 214px;
}

.service-card-web .service-card-visual {
  height: auto;
}

.service-card-visual {
  background:
    radial-gradient(circle at 82% 18%, rgba(93, 216, 235, 0.14), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    rgba(255, 255, 255, 0.03);
}

.service-card-visual span {
  position: absolute;
  display: block;
}

.service-visual-web .svc-code-text,
.service-visual-ecommerce .svc-shop-button,
.service-visual-admin .svc-admin-button,
.service-visual-care .svc-care-save,
.service-visual-care .svc-care-admin-label {
  border-radius: 999px;
}

.service-visual-web {
  min-height: 170px;
  background:
    radial-gradient(circle at 84% 18%, rgba(93, 216, 235, 0.16), transparent 22%),
    linear-gradient(180deg, rgba(7, 15, 26, 0.98), rgba(12, 24, 40, 0.94)),
    rgba(255, 255, 255, 0.03);
}

.service-visual-web::before {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0)),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size:
    auto,
    44px 100%,
    100% 24px;
}

.service-visual-web::after {
  content: none;
}

.service-visual-web .svc-code-dot {
  top: 28px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.28);
}

.service-visual-web .svc-code-dot-a { left: 34px; }
.service-visual-web .svc-code-dot-b { left: 48px; }
.service-visual-web .svc-code-dot-c { left: 62px; }

.service-visual-web .svc-code-label {
  left: 88px;
  top: 22px;
  color: rgba(214, 229, 248, 0.6);
  font-family: "JetBrains Mono", "IBM Plex Mono", monospace;
  font-size: 0.68rem;
  letter-spacing: 0.06em;
}

.service-visual-web .svc-code-text {
  left: 34px;
  color: rgba(227, 239, 255, 0.86);
  font-family: "JetBrains Mono", "IBM Plex Mono", monospace;
  font-size: 0.78rem;
  line-height: 1.28;
  white-space: nowrap;
  overflow: hidden;
  width: 0;
  opacity: 0.92;
  text-shadow: 0 0 12px rgba(93, 216, 235, 0.04);
  animation: code-line-type 6.2s steps(28, end) infinite both;
}

.service-visual-web .svc-code-text-a {
  top: 58px;
  --type-width: 214px;
}

.service-visual-web .svc-code-text-b {
  top: 84px;
  --type-width: 238px;
  color: rgba(110, 209, 230, 0.92);
  animation-delay: 0.2s;
}

.service-visual-web .svc-code-text-c {
  top: 110px;
  --type-width: 250px;
  color: rgba(143, 186, 255, 0.94);
  animation-delay: 0.4s;
}

.service-visual-web .svc-code-text-d {
  top: 136px;
  --type-width: 154px;
  animation-delay: 0.6s;
}

.service-visual-web .svc-code-cursor {
  left: 190px;
  top: 135px;
  width: 2px;
  height: 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 0 12px rgba(93, 216, 235, 0.16);
  animation:
    code-cursor-track 6.2s steps(14, end) infinite,
    code-cursor-blink 1.2s steps(1, end) infinite;
}

.service-visual-web .svc-code-status {
  left: 34px;
  bottom: 20px;
  color: rgba(214, 229, 248, 0.56);
  font-family: "JetBrains Mono", "IBM Plex Mono", monospace;
  font-size: 0.64rem;
  letter-spacing: 0.06em;
  animation: line-breathe 5.2s ease-in-out infinite;
}

.service-visual-ecommerce {
  min-height: 154px;
  background:
    radial-gradient(circle at 82% 18%, rgba(93, 216, 235, 0.16), transparent 22%),
    linear-gradient(180deg, rgba(8, 17, 29, 0.96), rgba(13, 27, 45, 0.92)),
    rgba(255, 255, 255, 0.03);
}

.service-visual-ecommerce::before {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0)),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.022) 1px, transparent 1px);
  background-size:
    auto,
    44px 100%,
    100% 26px;
}

.service-visual-ecommerce .svc-shop-product {
  left: 22px;
  top: 24px;
  width: 74px;
  height: 74px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at 36% 30%, rgba(255, 255, 255, 0.2), transparent 22%),
    linear-gradient(180deg, rgba(93, 216, 235, 0.3), rgba(47, 124, 255, 0.1)),
    rgba(255, 255, 255, 0.03);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 12px 24px rgba(1, 9, 20, 0.18);
  animation: stage-card-float 6.4s ease-in-out infinite;
}

.service-visual-ecommerce .svc-shop-title,
.service-visual-ecommerce .svc-shop-price,
.service-visual-ecommerce .svc-shop-cart-label {
  color: rgba(233, 243, 255, 0.88);
  font-family: "JetBrains Mono", "IBM Plex Mono", monospace;
  letter-spacing: 0.03em;
}

.service-visual-ecommerce .svc-shop-title {
  left: 112px;
  top: 34px;
  font-size: 0.72rem;
}

.service-visual-ecommerce .svc-shop-price {
  left: 112px;
  top: 58px;
  color: rgba(93, 216, 235, 0.96);
  font-size: 0.8rem;
}

.service-visual-ecommerce .svc-shop-option {
  left: 112px;
  top: 86px;
  width: 84px;
  height: 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.service-visual-ecommerce .svc-shop-option::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 3px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(93, 216, 235, 0.82));
  box-shadow: 0 0 12px rgba(93, 216, 235, 0.18);
  animation: dot-pulse 2.8s ease-in-out infinite;
}

.service-visual-ecommerce .svc-shop-button {
  left: 22px;
  bottom: 20px;
  width: 112px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(244, 250, 255, 0.96);
  font-family: "JetBrains Mono", "IBM Plex Mono", monospace;
  font-size: 0.63rem;
  letter-spacing: 0.05em;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(93, 216, 235, 0.94), rgba(47, 124, 255, 0.94));
  box-shadow:
    0 0 16px rgba(93, 216, 235, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
  animation: shop-button-press 5.8s ease-in-out infinite;
}

.service-visual-ecommerce .svc-shop-cart {
  right: 22px;
  top: 24px;
  width: 78px;
  height: 92px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    rgba(255, 255, 255, 0.03);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 12px 24px rgba(1, 9, 20, 0.16);
}

.service-visual-ecommerce .svc-shop-cart::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 18px;
  width: 42px;
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
}

.service-visual-ecommerce .svc-shop-cart::after {
  content: "";
  position: absolute;
  left: 18px;
  top: 34px;
  width: 30px;
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.09);
}

.service-visual-ecommerce .svc-shop-check {
  right: 42px;
  top: 64px;
  width: 16px;
  height: 10px;
  border-left: 2px solid rgba(93, 216, 235, 0.96);
  border-bottom: 2px solid rgba(93, 216, 235, 0.96);
  transform: rotate(-45deg) scale(0.72);
  transform-origin: center;
  filter: drop-shadow(0 0 10px rgba(93, 216, 235, 0.18));
  animation: shop-check-confirm 5.8s ease-in-out infinite;
}

.service-visual-ecommerce .svc-shop-cart-label {
  right: 20px;
  bottom: 20px;
  color: rgba(214, 229, 248, 0.6);
  font-size: 0.62rem;
  animation: line-breathe 5.2s ease-in-out infinite;
}

.service-visual-admin {
  min-height: 148px;
  background:
    radial-gradient(circle at 82% 18%, rgba(93, 216, 235, 0.16), transparent 22%),
    linear-gradient(180deg, rgba(8, 17, 29, 0.96), rgba(13, 27, 45, 0.92)),
    rgba(255, 255, 255, 0.03);
}

.service-visual-admin::before {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0)),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.022) 1px, transparent 1px);
  background-size:
    auto,
    44px 100%,
    100% 24px;
}

.service-visual-admin .svc-admin-photo {
  left: 20px;
  top: 20px;
  width: 76px;
  height: 84px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    rgba(255, 255, 255, 0.03);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 12px 22px rgba(1, 9, 20, 0.16);
  animation: stage-card-float 6.4s ease-in-out infinite;
}

.service-visual-admin .svc-admin-photo::before {
  content: "";
  position: absolute;
  left: 14px;
  bottom: 16px;
  width: 48px;
  height: 24px;
  border-radius: 14px 14px 10px 10px;
  background: linear-gradient(135deg, rgba(93, 216, 235, 0.48), rgba(47, 124, 255, 0.14));
  clip-path: polygon(0 100%, 28% 42%, 52% 72%, 72% 28%, 100% 100%);
}

.service-visual-admin .svc-admin-photo::after {
  content: "";
  position: absolute;
  right: 16px;
  top: 16px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(93, 216, 235, 0.82));
  box-shadow: 0 0 12px rgba(93, 216, 235, 0.18);
}

.service-visual-admin .svc-admin-title,
.service-visual-admin .svc-admin-status {
  color: rgba(233, 243, 255, 0.88);
  font-family: "JetBrains Mono", "IBM Plex Mono", monospace;
  letter-spacing: 0.04em;
}

.service-visual-admin .svc-admin-title {
  left: 112px;
  top: 28px;
  font-size: 0.72rem;
}

.service-visual-admin .svc-admin-button {
  left: 112px;
  top: 54px;
  width: 108px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(244, 250, 255, 0.96);
  font-family: "JetBrains Mono", "IBM Plex Mono", monospace;
  font-size: 0.62rem;
  letter-spacing: 0.05em;
  background: linear-gradient(90deg, rgba(93, 216, 235, 0.94), rgba(47, 124, 255, 0.94));
  box-shadow:
    0 0 16px rgba(93, 216, 235, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
  animation: shop-button-press 5.8s ease-in-out infinite;
}

.service-visual-admin .svc-admin-track {
  left: 112px;
  right: 20px;
  top: 96px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.service-visual-admin .svc-admin-fill {
  left: 112px;
  top: 96px;
  width: 48%;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(93, 216, 235, 0.92), rgba(47, 124, 255, 0.94));
  box-shadow: 0 0 14px rgba(93, 216, 235, 0.16);
  animation: service-progress-fill 5.6s ease-in-out infinite;
}

.service-visual-admin .svc-admin-check {
  left: 114px;
  bottom: 24px;
  width: 16px;
  height: 10px;
  border-left: 2px solid rgba(93, 216, 235, 0.96);
  border-bottom: 2px solid rgba(93, 216, 235, 0.96);
  transform: rotate(-45deg) scale(0.72);
  transform-origin: center;
  filter: drop-shadow(0 0 10px rgba(93, 216, 235, 0.18));
  animation: shop-check-confirm 5.8s ease-in-out infinite;
}

.service-visual-admin .svc-admin-status {
  left: 138px;
  bottom: 18px;
  color: rgba(214, 229, 248, 0.62);
  font-size: 0.62rem;
  animation: line-breathe 5.2s ease-in-out infinite;
}

.service-visual-redesign .svc-pane {
  top: 18px;
  bottom: 18px;
  width: calc(50% - 10px);
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 14px 28px rgba(1, 9, 20, 0.16);
  overflow: hidden;
}

.service-visual-redesign .svc-pane-before {
  left: 18px;
  background:
    linear-gradient(180deg, rgba(15, 29, 48, 0.92), rgba(20, 36, 58, 0.92)),
    linear-gradient(90deg, rgba(255, 255, 255, 0.12) 0 58%, transparent 58%) 12px 14px / 54px 7px no-repeat,
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0 42%, transparent 42%) 12px 28px / 68px 6px no-repeat,
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)) 12px 48px / calc(100% - 24px) 30px no-repeat,
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015)) 12px 86px / calc(100% - 24px) 18px no-repeat,
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015)) 12px 112px / 44px 14px no-repeat,
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015)) 62px 112px / calc(100% - 74px) 14px no-repeat;
  filter: saturate(0.82);
  animation: redesign-pane-before 7.2s ease-in-out infinite;
}

.service-visual-redesign .svc-pane-after {
  right: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04)),
    linear-gradient(90deg, rgba(255, 255, 255, 0.16) 0 62%, transparent 62%) 14px 14px / 72px 8px no-repeat,
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0 44%, transparent 44%) 14px 30px / 88px 6px no-repeat,
    linear-gradient(180deg, rgba(93, 216, 235, 0.22), rgba(47, 124, 255, 0.06)) 14px 50px / calc(100% - 28px) 38px no-repeat,
    linear-gradient(180deg, rgba(93, 216, 235, 0.14), rgba(47, 124, 255, 0.05)) 14px 96px / 52px 18px no-repeat,
    linear-gradient(180deg, rgba(93, 216, 235, 0.14), rgba(47, 124, 255, 0.05)) 74px 96px / calc(100% - 88px) 18px no-repeat,
    linear-gradient(90deg, rgba(93, 216, 235, 0.92), rgba(47, 124, 255, 0.92)) 14px 124px / 92px 8px no-repeat,
    rgba(255, 255, 255, 0.04);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 0 22px rgba(93, 216, 235, 0.1);
  animation: redesign-pane-after 7.2s ease-in-out infinite;
}

.service-visual-redesign .svc-pane-after::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 0%, rgba(255, 255, 255, 0.14) 48%, transparent 68%);
  transform: translateX(-120%);
  animation: redesign-sheen 6.8s ease-in-out infinite;
}

.service-visual-redesign .svc-pane-line {
  right: 30px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  box-shadow: 0 0 10px rgba(93, 216, 235, 0.1);
  animation: line-breathe 5.8s ease-in-out infinite;
}

.service-visual-redesign .svc-pane-line-a {
  top: 44px;
  width: 82px;
}

.service-visual-redesign .svc-pane-line-b {
  top: 60px;
  width: 102px;
  animation-delay: 0.28s;
}

.service-visual-redesign .svc-pane-line-c {
  top: 76px;
  width: 66px;
  animation-delay: 0.56s;
}

.service-visual-redesign .svc-redesign-divider {
  top: 18px;
  bottom: 18px;
  left: calc(50% - 1px);
  width: 4px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(93, 216, 235, 0.68));
  box-shadow: 0 0 18px rgba(93, 216, 235, 0.18);
  animation: service-divider-shift 6.8s ease-in-out infinite;
}

.service-visual-redesign .svc-redesign-divider::before {
  content: "";
  position: absolute;
  left: 50%;
  top: calc(50% - 14px);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04)),
    rgba(11, 22, 38, 0.86);
  box-shadow:
    0 0 18px rgba(93, 216, 235, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transform: translateX(-50%);
  animation: redesign-handle-shift 6.8s ease-in-out infinite;
}

.service-visual-redesign .svc-redesign-divider::after {
  content: "";
  position: absolute;
  left: 50%;
  top: calc(50% - 1px);
  width: 10px;
  height: 2px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  transform: translateX(-50%);
}

.service-visual-seo .svc-seo-bar {
  bottom: 18px;
  width: 24px;
  border-radius: 12px 12px 4px 4px;
  background: linear-gradient(180deg, rgba(93, 216, 235, 0.84), rgba(47, 124, 255, 0.16));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 0 14px rgba(93, 216, 235, 0.1);
  animation: chart-breathe 4.8s ease-in-out infinite;
}

.service-visual-seo .svc-seo-bar-a {
  left: 24px;
  height: 28px;
}

.service-visual-seo .svc-seo-bar-b {
  left: 58px;
  height: 46px;
  animation-delay: 0.2s;
}

.service-visual-seo .svc-seo-bar-c {
  left: 92px;
  height: 68px;
  animation-delay: 0.4s;
}

.service-visual-seo .svc-seo-bar-d {
  left: 126px;
  height: 98px;
  animation-delay: 0.6s;
}

.service-visual-seo .svc-seo-segment {
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(93, 216, 235, 0.9), rgba(255, 255, 255, 0.88));
  box-shadow: 0 0 12px rgba(93, 216, 235, 0.16);
  transform-origin: left center;
  animation: service-seo-line 6s ease-in-out infinite;
}

.service-visual-seo .svc-seo-segment-a {
  left: 34px;
  top: 108px;
  width: 38px;
  transform: rotate(-18deg);
}

.service-visual-seo .svc-seo-segment-b {
  left: 68px;
  top: 88px;
  width: 42px;
  transform: rotate(-26deg);
  animation-delay: 0.24s;
}

.service-visual-seo .svc-seo-segment-c {
  left: 104px;
  top: 62px;
  width: 52px;
  transform: rotate(-30deg);
  animation-delay: 0.48s;
}

.service-visual-seo .svc-seo-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(243, 249, 255, 0.94);
  box-shadow: 0 0 0 4px rgba(93, 216, 235, 0.1), 0 0 16px rgba(93, 216, 235, 0.18);
  animation: dot-pulse 3s ease-in-out infinite;
}

.service-visual-seo .svc-seo-dot-a {
  left: 30px;
  top: 110px;
}

.service-visual-seo .svc-seo-dot-b {
  left: 66px;
  top: 90px;
  animation-delay: 0.25s;
}

.service-visual-seo .svc-seo-dot-c {
  left: 102px;
  top: 68px;
  animation-delay: 0.5s;
}

.service-visual-seo .svc-seo-dot-d {
  left: 150px;
  top: 36px;
  animation-delay: 0.75s;
}

.service-visual-seo .svc-seo-target {
  right: 22px;
  top: 22px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    radial-gradient(circle at center, rgba(93, 216, 235, 0.24), rgba(93, 216, 235, 0.04) 44%, rgba(93, 216, 235, 0) 68%);
  box-shadow:
    0 0 22px rgba(93, 216, 235, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  animation: seo-target-pulse 5.8s ease-in-out infinite;
}

.service-visual-seo .svc-seo-target::before,
.service-visual-seo .svc-seo-target::after {
  content: "";
  position: absolute;
  border-radius: 50%;
}

.service-visual-seo .svc-seo-target::before {
  inset: 10px;
  border: 1px solid rgba(93, 216, 235, 0.42);
}

.service-visual-seo .svc-seo-target::after {
  inset: 20px;
  background: rgba(245, 250, 255, 0.96);
  box-shadow: 0 0 14px rgba(93, 216, 235, 0.18);
}

.service-visual-seo .svc-seo-goal {
  right: 18px;
  bottom: 18px;
  color: rgba(214, 229, 248, 0.66);
  font-family: "JetBrains Mono", "IBM Plex Mono", monospace;
  font-size: 0.62rem;
  letter-spacing: 0.05em;
  animation: line-breathe 5.4s ease-in-out infinite;
}

.service-visual-care .svc-care-avatar {
  left: 20px;
  top: 20px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.03)),
    rgba(255, 255, 255, 0.04);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 10px 22px rgba(1, 9, 20, 0.18);
  animation: stage-card-float 6.6s ease-in-out infinite;
}

.service-visual-care .svc-care-avatar::before,
.service-visual-care .svc-care-avatar::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(180deg, rgba(242, 248, 255, 0.96), rgba(93, 216, 235, 0.72));
}

.service-visual-care .svc-care-avatar::before {
  top: 9px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
}

.service-visual-care .svc-care-avatar::after {
  bottom: 8px;
  width: 22px;
  height: 12px;
  border-radius: 14px 14px 9px 9px;
}

.service-visual-care .svc-care-admin-label,
.service-visual-care .svc-care-entry-title,
.service-visual-care .svc-care-status {
  color: rgba(233, 243, 255, 0.88);
  font-family: "JetBrains Mono", "IBM Plex Mono", monospace;
  letter-spacing: 0.04em;
}

.service-visual-care .svc-care-admin-label {
  left: 74px;
  top: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 58px;
  height: 22px;
  padding: 0 10px;
  color: rgba(244, 250, 255, 0.96);
  font-size: 0.58rem;
  text-transform: uppercase;
  background: linear-gradient(90deg, rgba(93, 216, 235, 0.28), rgba(47, 124, 255, 0.24));
  border: 1px solid rgba(147, 198, 255, 0.24);
  box-shadow: 0 0 14px rgba(93, 216, 235, 0.1);
}

.service-visual-care .svc-care-entry-title {
  left: 74px;
  top: 56px;
  font-size: 0.72rem;
  animation: line-breathe 5.4s ease-in-out infinite;
}

.service-visual-care .svc-care-editor {
  left: 20px;
  right: 20px;
  top: 88px;
  bottom: 52px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    rgba(255, 255, 255, 0.04);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 14px 28px rgba(1, 9, 20, 0.18);
}

.service-visual-care .svc-care-editor::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0)),
    linear-gradient(90deg, rgba(255, 255, 255, 0.026) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size:
    auto,
    28px 100%,
    100% 18px;
  opacity: 0.72;
}

.service-visual-care .svc-care-editor-line {
  left: 40px;
  height: 7px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(93, 216, 235, 0.92), rgba(255, 255, 255, 0.86));
  box-shadow: 0 0 14px rgba(93, 216, 235, 0.12);
  transform-origin: left center;
  animation: care-editor-typing 5.8s ease-in-out infinite;
}

.service-visual-care .svc-care-editor-line-a {
  top: 114px;
  width: 132px;
}

.service-visual-care .svc-care-editor-line-b {
  top: 136px;
  width: 168px;
  animation-delay: 0.22s;
}

.service-visual-care .svc-care-editor-line-c {
  top: 158px;
  width: 102px;
  animation-delay: 0.44s;
}

.service-visual-care .svc-care-save {
  right: 20px;
  bottom: 18px;
  width: 84px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(244, 250, 255, 0.96);
  font-family: "JetBrains Mono", "IBM Plex Mono", monospace;
  font-size: 0.62rem;
  letter-spacing: 0.05em;
  background: linear-gradient(90deg, rgba(93, 216, 235, 0.94), rgba(47, 124, 255, 0.94));
  box-shadow:
    0 0 16px rgba(93, 216, 235, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
  animation: shop-button-press 5.8s ease-in-out infinite;
}

.service-visual-care .svc-care-check {
  left: 24px;
  bottom: 26px;
  width: 16px;
  height: 10px;
  border-left: 2px solid rgba(93, 216, 235, 0.96);
  border-bottom: 2px solid rgba(93, 216, 235, 0.96);
  transform: rotate(-45deg) scale(0.72);
  transform-origin: center;
  filter: drop-shadow(0 0 10px rgba(93, 216, 235, 0.18));
  animation: shop-check-confirm 5.8s ease-in-out infinite;
}

.service-visual-care .svc-care-status {
  left: 48px;
  bottom: 20px;
  color: rgba(214, 229, 248, 0.64);
  font-size: 0.62rem;
  animation: line-breathe 5.2s ease-in-out infinite;
}

.service-card h3,
.trust-card h3,
.process-card h3,
.case-card h3,
.pricing-card h3,
.contact-info-card h3,
.contact-panel h3,
.site-footer h3 {
  margin-bottom: 10px;
  line-height: 1.08;
}

.service-card ul,
.pricing-card ul,
.brief-list,
.footer-links {
  padding-left: 18px;
}

.service-card ul,
.pricing-card ul {
  margin: 16px 0 0;
  color: rgba(233, 243, 255, 0.72);
  line-height: 1.66;
}

.service-card ul {
  display: grid;
  gap: 10px;
  padding-left: 0;
  list-style: none;
}

.service-card li {
  position: relative;
  padding-left: 18px;
}

.service-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(93, 216, 235, 0.78));
  box-shadow: 0 0 12px rgba(93, 216, 235, 0.18);
}

.process-shell {
  position: relative;
  overflow: hidden;
  padding: clamp(2.3rem, 3.8vw, 3.6rem);
  border: 1px solid rgba(147, 198, 255, 0.18);
  border-radius: 40px;
  background:
    radial-gradient(circle at 10% 8%, rgba(47, 124, 255, 0.14), transparent 24%),
    radial-gradient(circle at 86% 10%, rgba(93, 216, 235, 0.14), transparent 22%),
    linear-gradient(180deg, rgba(10, 18, 30, 0.72), rgba(9, 16, 27, 0.5));
  box-shadow:
    0 36px 94px rgba(2, 10, 22, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(20px);
}

.process-shell::before,
.process-shell::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.process-shell::before {
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.01)),
    linear-gradient(120deg, rgba(255, 255, 255, 0.04), transparent 42%);
}

.process-shell::after {
  inset: 18px;
  border-radius: 32px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.024) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.024) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.72), transparent 92%);
  opacity: 0.4;
}

.process-heading,
.process-grid {
  position: relative;
  z-index: 1;
}

.process-heading {
  max-width: 1100px;
  margin-bottom: 40px;
  padding-bottom: 30px;
}

.process-heading::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(147, 198, 255, 0.2), rgba(147, 198, 255, 0.08), transparent 88%);
}

.process-heading h2 {
  max-width: 16ch;
  font-size: clamp(2.2rem, 1.05vw + 1.92rem, 3.4rem);
  letter-spacing: -0.045em;
}

.process-heading p:last-child {
  max-width: 60ch;
  color: rgba(238, 246, 255, 0.74);
}

.process-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 24px;
  padding: 72px 0 0;
  margin: 0;
  list-style: none;
}

.process-grid::before {
  content: "";
  position: absolute;
  left: 52px;
  right: 52px;
  top: 24px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.1), rgba(93, 216, 235, 0.26), rgba(255, 255, 255, 0.1));
  box-shadow: 0 0 18px rgba(93, 216, 235, 0.08);
  opacity: 0.92;
}

.process-card {
  position: relative;
  z-index: 1;
  min-height: 268px;
  padding: 34px 24px 24px;
  color: var(--white);
  background:
    linear-gradient(165deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
    rgba(255, 255, 255, 0.022);
  border-color: rgba(147, 198, 255, 0.16);
  box-shadow:
    0 20px 48px rgba(2, 10, 22, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.07);
  overflow: hidden;
  transition:
    transform 260ms ease,
    border-color 260ms ease,
    box-shadow 260ms ease,
    background 260ms ease;
}

.process-card:nth-child(2),
.process-card:nth-child(4) {
  margin-top: 34px;
}

.process-card:nth-child(3) {
  margin-top: 16px;
}

.process-card::before,
.process-card::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.process-card::before {
  left: 28px;
  top: -56px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(243, 249, 255, 0.96);
  box-shadow:
    0 0 0 6px rgba(93, 216, 235, 0.08),
    0 0 20px rgba(93, 216, 235, 0.18);
}

.process-card::after {
  left: 35px;
  top: -40px;
  width: 2px;
  height: 54px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(93, 216, 235, 0.66), rgba(93, 216, 235, 0.06));
}

.process-card:hover {
  transform: translateY(-5px);
  border-color: rgba(147, 198, 255, 0.22);
  box-shadow:
    0 24px 52px rgba(2, 10, 22, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.process-card-step {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 58px;
  height: 30px;
  padding: 0 14px;
  margin-bottom: 16px;
  border-radius: 999px;
  border: 1px solid rgba(147, 198, 255, 0.18);
  background: linear-gradient(135deg, rgba(47, 124, 255, 0.24), rgba(93, 216, 235, 0.18));
  color: var(--white);
  font-family: "JetBrains Mono", "IBM Plex Mono", monospace;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  font-weight: 700;
}

.process-card-phase,
.process-card h3,
.process-card > p:last-child {
  position: relative;
  z-index: 1;
}

.process-card-phase {
  margin: 0 0 10px;
  color: rgba(214, 229, 248, 0.62);
  font-family: "JetBrains Mono", "IBM Plex Mono", monospace;
  font-size: 0.64rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.process-card h3 {
  margin-bottom: 12px;
  font-size: clamp(1.22rem, 0.26vw + 1.1rem, 1.4rem);
  letter-spacing: -0.03em;
}

.process-card > p:last-child {
  color: rgba(238, 246, 255, 0.78);
  max-width: none;
}

.portfolio-stage {
  min-height: 196px;
}

.portfolio-stage-window {
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.03)),
    rgba(255, 255, 255, 0.03);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 18px 34px rgba(1, 9, 20, 0.18);
  animation: stage-card-float 7.2s ease-in-out infinite;
}

.portfolio-stage-window-a {
  left: 36px;
  top: 34px;
  width: 132px;
  height: 94px;
}

.portfolio-stage-window-b {
  right: 38px;
  top: 24px;
  width: 104px;
  height: 74px;
  animation-delay: 0.26s;
}

.portfolio-stage-window-c {
  right: 70px;
  bottom: 30px;
  width: 154px;
  height: 76px;
  animation-delay: 0.52s;
}

.portfolio-stage-line {
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  animation: line-breathe 5.8s ease-in-out infinite;
}

.portfolio-stage-line-a {
  left: 56px;
  top: 56px;
  width: 82px;
}

.portfolio-stage-line-b {
  right: 56px;
  top: 46px;
  width: 60px;
  animation-delay: 0.22s;
}

.portfolio-stage-line-c {
  right: 100px;
  bottom: 58px;
  width: 92px;
  animation-delay: 0.44s;
}

.portfolio-stage-glow {
  left: 122px;
  bottom: 40px;
  width: 86px;
  height: 86px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(93, 216, 235, 0.34), rgba(93, 216, 235, 0));
  filter: blur(6px);
  animation: trust-orb-drift 7.4s ease-in-out infinite;
}

.portfolio-shell {
  position: relative;
  overflow: hidden;
  padding: clamp(2.3rem, 3.8vw, 3.6rem);
  border: 1px solid rgba(147, 198, 255, 0.18);
  border-radius: 40px;
  background:
    radial-gradient(circle at 10% 8%, rgba(47, 124, 255, 0.14), transparent 24%),
    radial-gradient(circle at 86% 10%, rgba(93, 216, 235, 0.14), transparent 22%),
    linear-gradient(180deg, rgba(10, 18, 30, 0.72), rgba(9, 16, 27, 0.5));
  box-shadow:
    0 36px 94px rgba(2, 10, 22, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(20px);
}

.portfolio-shell::before,
.portfolio-shell::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.portfolio-shell::before {
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.01)),
    linear-gradient(120deg, rgba(255, 255, 255, 0.04), transparent 42%);
}

.portfolio-shell::after {
  inset: 18px;
  border-radius: 32px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.024) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.024) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.72), transparent 92%);
  opacity: 0.4;
}

.portfolio-heading,
.portfolio-intro,
.portfolio-grid,
.portfolio-cta {
  position: relative;
  z-index: 1;
}

.portfolio-heading {
  max-width: 1100px;
  margin-bottom: 40px;
  padding-bottom: 30px;
}

.portfolio-heading::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(147, 198, 255, 0.2), rgba(147, 198, 255, 0.08), transparent 88%);
}

.portfolio-heading .eyebrow {
  color: rgba(214, 233, 255, 0.88);
}

.portfolio-heading h2 {
  max-width: 16ch;
  font-size: clamp(2.2rem, 1.05vw + 1.92rem, 3.4rem);
  letter-spacing: -0.045em;
}

.portfolio-heading p:last-child {
  max-width: 60ch;
  color: rgba(238, 246, 255, 0.74);
}

.portfolio-intro {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.04fr);
  gap: 24px;
  margin-bottom: 24px;
  padding: 26px;
  border: 1px solid rgba(147, 198, 255, 0.14);
  border-radius: 30px;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.024)),
    rgba(255, 255, 255, 0.02);
  box-shadow:
    0 20px 48px rgba(2, 10, 22, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.07);
  overflow: hidden;
}

.portfolio-intro::before,
.portfolio-intro::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.portfolio-intro::before {
  inset: 0;
  background:
    radial-gradient(circle at 10% 18%, rgba(47, 124, 255, 0.18), transparent 20%),
    radial-gradient(circle at 88% 22%, rgba(93, 216, 235, 0.12), transparent 20%);
}

.portfolio-intro::after {
  inset: 16px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.032) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.032) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.62), transparent 90%);
  opacity: 0.56;
}

.portfolio-intro-copy,
.portfolio-promise-grid {
  position: relative;
  z-index: 1;
}

.portfolio-intro-copy {
  display: grid;
  gap: 12px;
  align-content: start;
}

.portfolio-intro-label {
  margin: 0;
  color: rgba(214, 229, 248, 0.62);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.portfolio-intro-copy h3,
.portfolio-cta-copy h3 {
  margin: 0;
  color: var(--white);
  font-size: clamp(1.42rem, 0.72vw + 1.14rem, 2rem);
  line-height: 1.1;
  letter-spacing: -0.035em;
}

.portfolio-intro-copy h3 {
  max-width: 23ch;
}

.portfolio-intro-copy p:last-child,
.portfolio-cta-copy p:last-child {
  margin: 0;
  color: rgba(238, 246, 255, 0.84);
  font-size: 1rem;
  line-height: 1.74;
  text-wrap: pretty;
}

.portfolio-promise-grid {
  display: grid;
  gap: 12px;
  align-content: start;
}

.portfolio-promise {
  display: grid;
  gap: 8px;
  min-height: 92px;
  padding: 18px;
  border: 1px solid rgba(147, 198, 255, 0.14);
  border-radius: 22px;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.024)),
    rgba(255, 255, 255, 0.018);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.portfolio-promise strong {
  color: var(--white);
  font-size: 0.96rem;
  line-height: 1.32;
}

.portfolio-promise span {
  color: rgba(238, 246, 255, 0.86);
  font-size: 0.92rem;
  line-height: 1.62;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.case-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: 100%;
  padding: 24px;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(165deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.028)),
    rgba(255, 255, 255, 0.02);
  border-color: rgba(147, 198, 255, 0.16);
  box-shadow:
    0 20px 48px rgba(2, 10, 22, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.07);
  transition:
    transform 260ms ease,
    box-shadow 260ms ease,
    border-color 260ms ease;
}

.case-card::before {
  content: "";
  position: absolute;
  left: 24px;
  right: 24px;
  top: 0;
  height: 1px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(47, 124, 255, 0.94), rgba(93, 216, 235, 0.84));
  pointer-events: none;
}

.case-card::after {
  content: "";
  position: absolute;
  right: -8%;
  bottom: -18%;
  width: 128px;
  height: 128px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(93, 216, 235, 0.14), rgba(93, 216, 235, 0));
  filter: blur(6px);
  pointer-events: none;
}

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

.case-card:hover {
  transform: translateY(-4px);
  border-color: rgba(147, 198, 255, 0.22);
  box-shadow:
    0 24px 52px rgba(2, 10, 22, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.case-card-head {
  display: grid;
  gap: 12px;
}

.case-card-head h3 {
  margin: 0;
  max-width: none;
  color: var(--white);
  font-size: clamp(1.32rem, 0.48vw + 1.14rem, 1.7rem);
  letter-spacing: -0.03em;
  line-height: 1.08;
}

.case-card-head p,
.case-summary,
.case-fit,
.case-list-title {
  margin: 0;
}

.case-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.case-outcome {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid rgba(147, 198, 255, 0.16);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(214, 233, 255, 0.9);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.case-visual {
  position: relative;
  min-height: 214px;
  padding: 22px;
  background:
    linear-gradient(160deg, #0d1727, #16243a);
  overflow: hidden;
}

.case-visual::before,
.case-visual::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.case-visual::before {
  inset: 0;
  background:
    radial-gradient(circle at 82% 18%, rgba(93, 216, 235, 0.14), transparent 22%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0));
}

.case-visual::after {
  inset: 18px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.024) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.024) 1px, transparent 1px);
  background-size: 38px 38px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.62), transparent 92%);
}

.case-visual span {
  position: relative;
  display: block;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.02)),
    rgba(255, 255, 255, 0.03);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.case-visual span::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 0%, rgba(255, 255, 255, 0.12) 48%, transparent 68%);
  transform: translateX(-120%);
  animation: section-sheen 6.8s ease-in-out infinite;
}

.case-visual-corporate {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 14px;
}

.case-visual-corporate span:first-child {
  min-height: 174px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.03)),
    linear-gradient(90deg, rgba(255, 255, 255, 0.14) 0 46%, transparent 46%) 18px 18px / 106px 10px no-repeat,
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0 34%, transparent 34%) 18px 36px / 88px 8px no-repeat,
    linear-gradient(180deg, rgba(93, 216, 235, 0.34), rgba(47, 124, 255, 0.12)) 18px 80px / 34px 66px no-repeat,
    linear-gradient(180deg, rgba(93, 216, 235, 0.54), rgba(47, 124, 255, 0.18)) 62px 58px / 34px 88px no-repeat,
    linear-gradient(180deg, rgba(93, 216, 235, 0.26), rgba(47, 124, 255, 0.08)) 106px 96px / 34px 50px no-repeat,
    rgba(255, 255, 255, 0.03);
  animation: stage-card-float 7.2s ease-in-out infinite;
}

.case-visual-corporate span:nth-child(2),
.case-visual-corporate span:nth-child(3),
.case-visual-corporate span:nth-child(4) {
  min-height: 52px;
  animation: stage-card-float 6.4s ease-in-out infinite;
}

.case-visual-corporate span:nth-child(4) {
  grid-column: 2;
  min-height: 92px;
  animation-delay: 0.3s;
}

.case-visual-corporate span:nth-child(2) {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.14) 0 58%, transparent 58%) 14px 14px / 54px 8px no-repeat,
    linear-gradient(90deg, rgba(93, 216, 235, 0.88), rgba(47, 124, 255, 0.9)) 14px 30px / 72px 8px no-repeat,
    rgba(255, 255, 255, 0.03);
}

.case-visual-corporate span:nth-child(3) {
  background:
    linear-gradient(180deg, rgba(93, 216, 235, 0.24), rgba(47, 124, 255, 0.08)) 14px 16px / 22px 28px no-repeat,
    linear-gradient(180deg, rgba(93, 216, 235, 0.38), rgba(47, 124, 255, 0.12)) 42px 8px / 22px 36px no-repeat,
    linear-gradient(180deg, rgba(93, 216, 235, 0.22), rgba(47, 124, 255, 0.07)) 70px 22px / 22px 22px no-repeat,
    rgba(255, 255, 255, 0.03);
  animation-delay: 0.16s;
}

.case-visual-corporate span:nth-child(4) {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.14) 0 62%, transparent 62%) 16px 18px / 80px 8px no-repeat,
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0 42%, transparent 42%) 16px 34px / 64px 6px no-repeat,
    linear-gradient(90deg, rgba(93, 216, 235, 0.92), rgba(255, 255, 255, 0.84)) 18px 62px / 86px 3px no-repeat,
    rgba(255, 255, 255, 0.03);
}

.case-visual-local,
.case-visual-personal,
.case-visual-redesign {
  display: grid;
  gap: 14px;
}

.case-visual-local span:first-child,
.case-visual-personal span:first-child,
.case-visual-redesign span:first-child {
  min-height: 120px;
  animation: stage-card-float 7s ease-in-out infinite;
}

.case-visual-local span:nth-child(2),
.case-visual-local span:nth-child(3),
.case-visual-personal span:nth-child(2),
.case-visual-personal span:nth-child(3),
.case-visual-redesign span:nth-child(2),
.case-visual-redesign span:nth-child(3) {
  min-height: 64px;
  animation: stage-card-float 6.2s ease-in-out infinite;
}

.case-visual-local span:first-child {
  background:
    radial-gradient(circle at 28% 46%, rgba(93, 216, 235, 0.82) 0 5%, transparent 5.5%),
    radial-gradient(circle at 68% 34%, rgba(47, 124, 255, 0.72) 0 5%, transparent 5.5%),
    linear-gradient(135deg, transparent 38%, rgba(93, 216, 235, 0.62) 39%, rgba(93, 216, 235, 0.62) 41%, transparent 42%) 0 0 / 100% 100% no-repeat,
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    rgba(255, 255, 255, 0.03);
}

.case-visual-local span:nth-child(2) {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.14) 0 56%, transparent 56%) 16px 18px / 72px 8px no-repeat,
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0 42%, transparent 42%) 16px 34px / 54px 6px no-repeat,
    rgba(255, 255, 255, 0.03);
}

.case-visual-local span:nth-child(3) {
  background:
    linear-gradient(90deg, rgba(93, 216, 235, 0.92), rgba(47, 124, 255, 0.92)) 16px 28px / 92px 8px no-repeat,
    rgba(255, 255, 255, 0.03);
  animation-delay: 0.28s;
}

.case-visual-shop {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.case-visual-shop span {
  min-height: 86px;
  animation: stage-card-float 6.6s ease-in-out infinite;
}

.case-visual-shop span:nth-child(1) {
  background:
    linear-gradient(180deg, rgba(93, 216, 235, 0.22), rgba(47, 124, 255, 0.08)) 16px 14px / calc(100% - 32px) 42px no-repeat,
    linear-gradient(90deg, rgba(255, 255, 255, 0.14) 0 54%, transparent 54%) 16px 64px / 60px 8px no-repeat,
    rgba(255, 255, 255, 0.03);
}

.case-visual-shop span:nth-child(2) {
  background:
    linear-gradient(180deg, rgba(93, 216, 235, 0.14), rgba(47, 124, 255, 0.06)) 18px 16px / 38px 30px no-repeat,
    linear-gradient(180deg, rgba(93, 216, 235, 0.34), rgba(47, 124, 255, 0.1)) 62px 8px / 38px 38px no-repeat,
    rgba(255, 255, 255, 0.03);
  animation-delay: 0.14s;
}

.case-visual-shop span:nth-child(3) {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.14) 0 48%, transparent 48%) 16px 20px / 68px 8px no-repeat,
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0 38%, transparent 38%) 16px 36px / 54px 6px no-repeat,
    rgba(255, 255, 255, 0.03);
  animation-delay: 0.28s;
}

.case-visual-shop span:nth-child(4) {
  background:
    linear-gradient(90deg, rgba(93, 216, 235, 0.92), rgba(47, 124, 255, 0.92)) 16px 40px / 86px 8px no-repeat,
    rgba(255, 255, 255, 0.03);
  animation-delay: 0.42s;
}

.case-visual-redesign span:first-child {
  background:
    linear-gradient(180deg, rgba(12, 23, 40, 0.86), rgba(18, 34, 56, 0.9)) 14px 16px / calc(50% - 20px) calc(100% - 32px) no-repeat,
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04)) calc(50% + 6px) 16px / calc(50% - 20px) calc(100% - 32px) no-repeat,
    linear-gradient(180deg, rgba(120, 182, 255, 0.46), rgba(93, 216, 235, 0.16)) calc(50% - 2px) 20px / 4px calc(100% - 40px) no-repeat,
    rgba(255, 255, 255, 0.03);
}

.case-visual-redesign span:nth-child(2) {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.14) 0 58%, transparent 58%) 16px 22px / 72px 8px no-repeat,
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0 38%, transparent 38%) 16px 38px / 58px 6px no-repeat,
    rgba(255, 255, 255, 0.03);
}

.case-visual-redesign span:nth-child(3) {
  background:
    linear-gradient(90deg, rgba(93, 216, 235, 0.92), rgba(47, 124, 255, 0.92)) 16px 28px / 96px 8px no-repeat,
    rgba(255, 255, 255, 0.03);
  animation-delay: 0.28s;
}

.case-content {
  display: grid;
  gap: 12px;
}

.case-summary {
  color: rgba(232, 243, 255, 0.76);
  font-size: 0.98rem;
  line-height: 1.72;
  text-wrap: pretty;
}

.case-list-title {
  color: rgba(214, 229, 248, 0.62);
  font-family: "JetBrains Mono", "IBM Plex Mono", monospace;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.case-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.case-list li {
  position: relative;
  padding-left: 18px;
  color: rgba(232, 243, 255, 0.74);
  font-size: 0.95rem;
  line-height: 1.62;
}

.case-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.82em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(93, 216, 235, 0.94), rgba(47, 124, 255, 0.92));
  box-shadow: 0 0 0 4px rgba(93, 216, 235, 0.08);
  transform: translateY(-50%);
}

.case-footer {
  display: grid;
  gap: 14px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid rgba(147, 198, 255, 0.12);
}

.case-fit {
  color: rgba(232, 243, 255, 0.74);
  font-size: 0.92rem;
  line-height: 1.64;
}

.case-fit strong {
  color: var(--white);
}

.case-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.case-tags span {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border: 1px solid rgba(147, 198, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: rgba(238, 246, 255, 0.84);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.portfolio-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 24px;
  padding: 28px;
  border: 1px solid rgba(147, 198, 255, 0.16);
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(47, 124, 255, 0.12), rgba(93, 216, 235, 0.08)),
    rgba(255, 255, 255, 0.026);
  box-shadow:
    0 22px 50px rgba(2, 10, 22, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.portfolio-cta-copy {
  display: grid;
  gap: 10px;
  max-width: 720px;
}

.case-label,
.pricing-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  color: var(--blue);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.case-label::before,
.pricing-tag::before {
  content: "";
  width: 22px;
  height: 1px;
  background: linear-gradient(90deg, rgba(47, 124, 255, 0.92), rgba(93, 216, 235, 0.48));
}

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

.pricing-card {
  display: flex;
  flex-direction: column;
  padding: 24px;
  overflow: hidden;
}

.pricing-card-featured {
  position: relative;
  border-color: rgba(47, 124, 255, 0.18);
  box-shadow: var(--shadow-lg);
}

.pricing-card-featured::before {
  content: "Odporúčaný";
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(47, 124, 255, 0.1);
  color: var(--blue-deep);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.pricing-note {
  margin: 12px 0 16px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.pricing-stage {
  min-height: 192px;
}

.pricing-stage-column {
  bottom: 26px;
  width: 54px;
  border-radius: 18px 18px 8px 8px;
  background: linear-gradient(180deg, rgba(93, 216, 235, 0.6), rgba(47, 124, 255, 0.14));
  animation: chart-breathe 5.6s ease-in-out infinite;
}

.pricing-stage-column-a {
  left: 58px;
  height: 78px;
}

.pricing-stage-column-b {
  left: calc(50% - 27px);
  height: 112px;
  animation-delay: 0.24s;
}

.pricing-stage-column-c {
  right: 58px;
  height: 92px;
  animation-delay: 0.48s;
}

.pricing-stage-cap {
  width: 70px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  animation: line-breathe 5.8s ease-in-out infinite;
}

.pricing-stage-cap-a {
  left: 50px;
  top: 42px;
}

.pricing-stage-cap-b {
  left: calc(50% - 35px);
  top: 26px;
  animation-delay: 0.24s;
}

.pricing-stage-cap-c {
  right: 50px;
  top: 34px;
  animation-delay: 0.48s;
}

.pricing-stage-beam {
  left: 40px;
  bottom: 20px;
  width: 88px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(93, 216, 235, 0.94), rgba(255, 255, 255, 0.84));
  box-shadow: 0 0 16px rgba(93, 216, 235, 0.18);
  animation: pricing-beam-shift 6.8s ease-in-out infinite;
}

.pricing-visual {
  position: relative;
  min-height: 118px;
  margin: 4px 0 18px;
  border-radius: 20px;
  border: 1px solid rgba(47, 124, 255, 0.1);
  background:
    linear-gradient(180deg, rgba(47, 124, 255, 0.05), rgba(93, 216, 235, 0.04)),
    rgba(248, 252, 255, 0.84);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 16px 32px rgba(8, 21, 39, 0.08);
  overflow: hidden;
}

.pricing-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 82% 18%, rgba(93, 216, 235, 0.16), transparent 22%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0));
}

.pricing-visual span {
  position: absolute;
  display: block;
}

.pricing-visual-pane {
  border-radius: 14px;
  border: 1px solid rgba(47, 124, 255, 0.1);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.66), rgba(255, 255, 255, 0.28)),
    rgba(255, 255, 255, 0.24);
  animation: stage-card-float 6.8s ease-in-out infinite;
}

.pricing-visual-line,
.pricing-visual-track,
.pricing-visual-flow,
.pricing-visual-route {
  border-radius: 999px;
}

.pricing-visual-start .pricing-visual-pane-a {
  left: 20px;
  top: 20px;
  width: 72px;
  height: 70px;
}

.pricing-visual-start .pricing-visual-pane-b {
  left: 102px;
  top: 34px;
  width: 94px;
  height: 42px;
  animation-delay: 0.28s;
}

.pricing-visual-start .pricing-visual-line-a {
  left: 28px;
  bottom: 24px;
  width: 72px;
  height: 8px;
  background: rgba(12, 24, 44, 0.1);
  animation: line-breathe 5.2s ease-in-out infinite;
}

.pricing-visual-start .pricing-visual-line-b {
  left: 110px;
  bottom: 24px;
  width: 88px;
  height: 8px;
  background: linear-gradient(90deg, rgba(93, 216, 235, 0.92), rgba(47, 124, 255, 0.9));
  box-shadow: 0 0 14px rgba(93, 216, 235, 0.16);
  animation: service-progress-fill 5.8s ease-in-out infinite;
}

.pricing-visual-business .pricing-visual-pane-a,
.pricing-visual-business .pricing-visual-pane-b,
.pricing-visual-business .pricing-visual-pane-c {
  top: 22px;
  width: 46px;
  bottom: 32px;
}

.pricing-visual-business .pricing-visual-pane-a {
  left: 26px;
}

.pricing-visual-business .pricing-visual-pane-b {
  left: 86px;
  bottom: 18px;
  animation-delay: 0.2s;
}

.pricing-visual-business .pricing-visual-pane-c {
  left: 146px;
  bottom: 42px;
  animation-delay: 0.4s;
}

.pricing-visual-business .pricing-visual-track {
  left: 24px;
  right: 24px;
  bottom: 18px;
  height: 8px;
  background: rgba(12, 24, 44, 0.08);
}

.pricing-visual-business .pricing-visual-flow {
  left: 24px;
  bottom: 18px;
  width: 40%;
  height: 8px;
  background: linear-gradient(90deg, rgba(93, 216, 235, 0.92), rgba(47, 124, 255, 0.92));
  box-shadow: 0 0 14px rgba(93, 216, 235, 0.16);
  animation: service-progress-fill 5.4s ease-in-out infinite;
}

.pricing-visual-premium .pricing-visual-node {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(244, 250, 255, 0.96);
  box-shadow:
    0 0 0 8px rgba(93, 216, 235, 0.08),
    0 0 18px rgba(93, 216, 235, 0.18);
  animation: dot-pulse 3s ease-in-out infinite;
}

.pricing-visual-premium .pricing-visual-node-a {
  left: 32px;
  top: 46px;
}

.pricing-visual-premium .pricing-visual-node-b {
  left: 104px;
  top: 26px;
  animation-delay: 0.24s;
}

.pricing-visual-premium .pricing-visual-node-c {
  left: 176px;
  top: 60px;
  animation-delay: 0.48s;
}

.pricing-visual-premium .pricing-visual-route {
  height: 3px;
  background: linear-gradient(90deg, rgba(93, 216, 235, 0.9), rgba(47, 124, 255, 0.9));
  box-shadow: 0 0 12px rgba(93, 216, 235, 0.14);
  transform-origin: left center;
  animation: service-seo-line 6s ease-in-out infinite;
}

.pricing-visual-premium .pricing-visual-route-a {
  left: 50px;
  top: 54px;
  width: 62px;
  transform: rotate(-16deg);
}

.pricing-visual-premium .pricing-visual-route-b {
  left: 124px;
  top: 52px;
  width: 70px;
  transform: rotate(18deg);
  animation-delay: 0.28s;
}

.pricing-card .button {
  margin-top: auto;
}

.section-cta {
  padding-top: 46px;
}

.cta-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 34px;
  background:
    linear-gradient(135deg, rgba(47, 124, 255, 0.08), rgba(93, 216, 235, 0.08)),
    var(--bg-surface);
}

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

.faq-stage {
  min-height: 188px;
}

.faq-stage-card {
  left: 42px;
  right: 42px;
  height: 36px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.03)),
    rgba(255, 255, 255, 0.03);
  animation: stage-card-float 6.6s ease-in-out infinite;
}

.faq-stage-card-a {
  top: 34px;
}

.faq-stage-card-b {
  top: 78px;
  left: 58px;
  right: 58px;
  animation-delay: 0.24s;
}

.faq-stage-card-c {
  top: 122px;
  left: 74px;
  right: 74px;
  animation-delay: 0.48s;
}

.faq-stage-line {
  left: 64px;
  height: 7px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  animation: line-breathe 5.8s ease-in-out infinite;
}

.faq-stage-line-a {
  top: 48px;
  width: 124px;
}

.faq-stage-line-b {
  top: 92px;
  width: 96px;
  animation-delay: 0.22s;
}

.faq-stage-line-c {
  top: 136px;
  width: 86px;
  animation-delay: 0.44s;
}

.faq-stage-dot {
  right: 60px;
  top: 80px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(245, 250, 255, 0.96);
  box-shadow:
    0 0 0 8px rgba(93, 216, 235, 0.08),
    0 0 18px rgba(93, 216, 235, 0.18);
  animation: dot-pulse 3.1s ease-in-out infinite;
}

.faq-item {
  overflow: hidden;
}

.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 24px;
  border: 0;
  background: transparent;
  color: var(--ink-strong);
  text-align: left;
  font-weight: 700;
  font-size: 1.01rem;
  letter-spacing: -0.02em;
  line-height: 1.38;
}

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

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 2px;
  border-radius: 999px;
  background: var(--ink-strong);
  transform: translate(-50%, -50%);
}

.faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-trigger[aria-expanded="true"] .faq-icon::after {
  opacity: 0;
}

.faq-panel {
  padding: 0 24px 22px;
}

.contact-section {
  padding-bottom: calc(var(--section-space) + 10px);
}

.contact-section .contact-copy h2,
.contact-section .contact-copy > p:last-of-type,
.contact-section .contact-copy p:not(.eyebrow) {
  color: rgba(238, 246, 255, 0.82);
}

.contact-section .contact-copy h2 {
  color: var(--white);
  max-width: 11ch;
}

.contact-copy > p:last-of-type {
  margin-top: 18px;
  max-width: 56ch;
}

.contact-stage {
  position: relative;
  min-height: 162px;
  margin-top: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  background:
    linear-gradient(160deg, rgba(10, 21, 37, 0.9), rgba(15, 32, 54, 0.9)),
    rgba(255, 255, 255, 0.02);
  box-shadow:
    0 20px 48px rgba(2, 10, 22, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  overflow: hidden;
}

.contact-stage::before,
.contact-stage::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.contact-stage::before {
  inset: 0;
  background:
    radial-gradient(circle at 84% 18%, rgba(93, 216, 235, 0.14), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0));
}

.contact-stage::after {
  inset: 16px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.022) 1px, transparent 1px);
  background-size: 34px 34px;
}

.contact-stage span {
  position: absolute;
  display: block;
}

.contact-stage-card {
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.03)),
    rgba(255, 255, 255, 0.03);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  animation: stage-card-float 6.8s ease-in-out infinite;
}

.contact-stage-card-a {
  left: 24px;
  top: 24px;
  width: 102px;
  height: 52px;
}

.contact-stage-card-b {
  left: 154px;
  top: 52px;
  width: 116px;
  height: 42px;
  animation-delay: 0.24s;
}

.contact-stage-card-c {
  right: 26px;
  top: 24px;
  width: 96px;
  height: 56px;
  animation-delay: 0.48s;
}

.contact-stage-route {
  left: 62px;
  right: 52px;
  bottom: 36px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.14), rgba(93, 216, 235, 0.34), rgba(255, 255, 255, 0.12));
}

.contact-stage-pulse {
  left: 54px;
  bottom: 28px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(245, 250, 255, 0.96);
  box-shadow:
    0 0 0 7px rgba(93, 216, 235, 0.08),
    0 0 18px rgba(93, 216, 235, 0.18);
  animation: process-route-travel 6.6s ease-in-out infinite;
}

.contact-info-grid {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.contact-info-card a {
  color: var(--blue-deep);
  font-weight: 700;
}

.contact-panel {
  padding: 28px;
}

.brief-list {
  margin: 18px 0 0;
  color: var(--ink-body);
  line-height: 1.72;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.copy-status {
  min-height: 24px;
  margin-top: 14px;
  color: var(--ink-soft);
  font-size: var(--step--1);
  font-weight: 700;
}

.copy-status.is-success {
  color: var(--blue-deep);
}

.copy-status.is-error {
  color: #bc332c;
}

.site-footer {
  padding: 34px 0 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(7, 17, 29, 0.46);
  backdrop-filter: blur(12px);
}

@keyframes aurora-drift {
  0% {
    transform: translate3d(-4%, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(6%, -6%, 0) scale(1.06);
  }
  100% {
    transform: translate3d(-3%, 7%, 0) scale(0.97);
  }
}

@keyframes grid-drift {
  0% {
    background-position: 0 0, 0 0;
  }
  100% {
    background-position: 120px 120px, 120px 120px;
  }
}

@keyframes canvas-drift {
  0% {
    background-position: 6% 4%, 92% 12%, 50% 70%;
  }
  35% {
    background-position: 16% 10%, 80% 18%, 42% 60%;
  }
  70% {
    background-position: 10% 20%, 88% 6%, 58% 78%;
  }
  100% {
    background-position: 14% 14%, 84% 14%, 54% 66%;
  }
}

@keyframes grid-fade {
  0% {
    opacity: 0.22;
  }
  50% {
    opacity: 0.36;
  }
  100% {
    opacity: 0.24;
  }
}

@keyframes orb-float {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(2%, -4%, 0) scale(1.06);
  }
  100% {
    transform: translate3d(-3%, 2%, 0) scale(0.98);
  }
}

@keyframes hero-grid-breathe {
  0% {
    opacity: 0.24;
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    opacity: 0.34;
    transform: translate3d(0, -6px, 0) scale(1.01);
  }
  100% {
    opacity: 0.26;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes stage-window-float {
  0% {
    transform: perspective(1400px) rotateY(-10deg) rotateX(8deg) translate3d(0, 0, 0);
  }
  50% {
    transform: perspective(1400px) rotateY(-8deg) rotateX(7deg) translate3d(-4px, -8px, 0);
  }
  100% {
    transform: perspective(1400px) rotateY(-10deg) rotateX(8deg) translate3d(0, 0, 0);
  }
}

@keyframes stage-window-sheen {
  0% {
    transform: translateX(-12%) rotate(16deg);
    opacity: 0;
  }
  20% {
    opacity: 0.38;
  }
  52% {
    transform: translateX(176%) rotate(16deg);
    opacity: 0.42;
  }
  100% {
    transform: translateX(176%) rotate(16deg);
    opacity: 0;
  }
}

@keyframes stage-scan {
  0% {
    transform: translateY(-120%);
    opacity: 0;
  }
  18% {
    opacity: 0.44;
  }
  56% {
    transform: translateY(380%);
    opacity: 0.3;
  }
  100% {
    transform: translateY(380%);
    opacity: 0;
  }
}

@keyframes dot-pulse {
  0% {
    opacity: 0.8;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.16);
  }
  100% {
    opacity: 0.82;
    transform: scale(1);
  }
}

@keyframes stage-pill-pulse {
  0% {
    opacity: 0.66;
    transform: scaleX(0.94);
  }
  50% {
    opacity: 1;
    transform: scaleX(1);
  }
  100% {
    opacity: 0.72;
    transform: scaleX(0.96);
  }
}

@keyframes panel-glow-orbit {
  0% {
    transform: translate3d(0, 0, 0) scale(0.94);
    opacity: 0.3;
  }
  50% {
    transform: translate3d(-14px, -10px, 0) scale(1.06);
    opacity: 0.58;
  }
  100% {
    transform: translate3d(0, 0, 0) scale(0.96);
    opacity: 0.34;
  }
}

@keyframes data-sweep {
  0% {
    transform: translateX(-22%);
    opacity: 0.14;
  }
  50% {
    transform: translateX(14%);
    opacity: 0.52;
  }
  100% {
    transform: translateX(34%);
    opacity: 0.16;
  }
}

@keyframes stage-card-float {
  0% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, -5px, 0);
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}

@keyframes stage-note-float {
  0% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, -6px, 0);
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}

@keyframes orbit-card-a {
  0% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
  35% {
    transform: translate3d(-10px, -10px, 0) rotate(-1deg);
  }
  70% {
    transform: translate3d(4px, -18px, 0) rotate(1deg);
  }
  100% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
}

@keyframes orbit-card-b {
  0% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
  30% {
    transform: translate3d(10px, -12px, 0) rotate(1deg);
  }
  70% {
    transform: translate3d(20px, 6px, 0) rotate(-1deg);
  }
  100% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
}

@keyframes orbit-card-c {
  0% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
  32% {
    transform: translate3d(-12px, -10px, 0) rotate(-1deg);
  }
  72% {
    transform: translate3d(8px, -20px, 0) rotate(1deg);
  }
  100% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
}

@keyframes orbit-card-d {
  0% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
  34% {
    transform: translate3d(10px, 10px, 0) rotate(1deg);
  }
  70% {
    transform: translate3d(-6px, 22px, 0) rotate(-1deg);
  }
  100% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
}

@keyframes title-bar-breathe {
  0% {
    transform: scaleX(0.94);
    opacity: 0.78;
  }
  50% {
    transform: scaleX(1);
    opacity: 1;
  }
  100% {
    transform: scaleX(0.96);
    opacity: 0.86;
  }
}

@keyframes line-breathe {
  0% {
    opacity: 0.62;
    transform: scaleX(0.96);
  }
  50% {
    opacity: 1;
    transform: scaleX(1);
  }
  100% {
    opacity: 0.72;
    transform: scaleX(0.97);
  }
}

@keyframes care-editor-typing {
  0% {
    opacity: 0.34;
    transform: scaleX(0.32);
  }
  18% {
    opacity: 0.62;
    transform: scaleX(0.58);
  }
  42% {
    opacity: 1;
    transform: scaleX(1);
  }
  72% {
    opacity: 0.88;
    transform: scaleX(0.76);
  }
  100% {
    opacity: 0.42;
    transform: scaleX(0.36);
  }
}

@keyframes chart-breathe {
  0% {
    opacity: 0.82;
    transform: translateY(0);
  }
  50% {
    opacity: 1;
    transform: translateY(-3px);
  }
  100% {
    opacity: 0.88;
    transform: translateY(0);
  }
}

@keyframes chart-line-draw {
  0% {
    stroke-dashoffset: 360;
    opacity: 0.78;
  }
  30% {
    stroke-dashoffset: 0;
    opacity: 1;
  }
  70% {
    stroke-dashoffset: 0;
    opacity: 0.96;
  }
  100% {
    stroke-dashoffset: -42;
    opacity: 0.84;
  }
}

@keyframes chart-area-breathe {
  0% {
    opacity: 0.24;
    transform: scaleY(0.96);
  }
  50% {
    opacity: 0.38;
    transform: scaleY(1.02);
  }
  100% {
    opacity: 0.28;
    transform: scaleY(0.98);
  }
}

@keyframes stage-progress-shift {
  0% {
    width: 54%;
    opacity: 0.88;
  }
  50% {
    width: 72%;
    opacity: 1;
  }
  100% {
    width: 60%;
    opacity: 0.92;
  }
}

@keyframes stage-flow-run {
  0% {
    width: 34%;
    transform: translateX(0);
  }
  50% {
    width: 64%;
    transform: translateX(16%);
  }
  100% {
    width: 42%;
    transform: translateX(6%);
  }
}

@keyframes service-progress-fill {
  0% {
    width: 28%;
    opacity: 0.84;
  }
  50% {
    width: 72%;
    opacity: 1;
  }
  100% {
    width: 44%;
    opacity: 0.9;
  }
}

@keyframes service-admin-highlight {
  0% {
    top: 44px;
    opacity: 0.34;
  }
  35% {
    top: 76px;
    opacity: 0.56;
  }
  68% {
    top: 104px;
    opacity: 0.42;
  }
  100% {
    top: 44px;
    opacity: 0.34;
  }
}

@keyframes service-divider-shift {
  0% {
    left: calc(50% - 1px);
    opacity: 0.82;
  }
  50% {
    left: calc(50% + 7px);
    opacity: 1;
  }
  100% {
    left: calc(50% - 3px);
    opacity: 0.86;
  }
}

@keyframes redesign-pane-before {
  0% {
    transform: translate3d(0, 0, 0) scale(0.992);
    opacity: 0.78;
  }
  50% {
    transform: translate3d(-2px, 1px, 0) scale(1);
    opacity: 0.9;
  }
  100% {
    transform: translate3d(0, 0, 0) scale(0.994);
    opacity: 0.82;
  }
}

@keyframes redesign-pane-after {
  0% {
    transform: translate3d(0, 0, 0) scale(0.996);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.08),
      0 0 18px rgba(93, 216, 235, 0.08);
  }
  50% {
    transform: translate3d(0, -2px, 0) scale(1.01);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.08),
      0 0 26px rgba(93, 216, 235, 0.14);
  }
  100% {
    transform: translate3d(0, 0, 0) scale(0.998);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.08),
      0 0 20px rgba(93, 216, 235, 0.1);
  }
}

@keyframes redesign-sheen {
  0% {
    transform: translateX(-120%);
    opacity: 0;
  }
  24% {
    opacity: 0.72;
  }
  58% {
    transform: translateX(120%);
    opacity: 0.24;
  }
  100% {
    transform: translateX(120%);
    opacity: 0;
  }
}

@keyframes redesign-handle-shift {
  0% {
    top: calc(50% - 14px);
    opacity: 0.84;
  }
  50% {
    top: calc(50% - 10px);
    opacity: 1;
  }
  100% {
    top: calc(50% - 16px);
    opacity: 0.88;
  }
}

@keyframes seo-target-pulse {
  0% {
    transform: scale(0.96);
    box-shadow:
      0 0 18px rgba(93, 216, 235, 0.12),
      inset 0 1px 0 rgba(255, 255, 255, 0.08);
  }
  50% {
    transform: scale(1.04);
    box-shadow:
      0 0 28px rgba(93, 216, 235, 0.2),
      inset 0 1px 0 rgba(255, 255, 255, 0.1);
  }
  100% {
    transform: scale(0.98);
    box-shadow:
      0 0 22px rgba(93, 216, 235, 0.14),
      inset 0 1px 0 rgba(255, 255, 255, 0.08);
  }
}

@keyframes service-seo-line {
  0% {
    opacity: 0.72;
    filter: brightness(0.92);
  }
  50% {
    opacity: 1;
    filter: brightness(1.06);
  }
  100% {
    opacity: 0.82;
    filter: brightness(0.96);
  }
}

@keyframes code-tag-pulse {
  0% {
    opacity: 0.78;
    transform: scaleX(0.92);
  }
  50% {
    opacity: 1;
    transform: scaleX(1);
  }
  100% {
    opacity: 0.84;
    transform: scaleX(0.95);
  }
}

@keyframes code-line-type {
  0% {
    width: 0;
    opacity: 0.32;
  }
  12% {
    width: 0;
    opacity: 0.52;
  }
  52% {
    width: var(--type-width);
    opacity: 1;
  }
  100% {
    width: var(--type-width);
    opacity: 0.84;
  }
}

@keyframes code-cursor-blink {
  0%, 46% {
    opacity: 1;
  }
  47%, 100% {
    opacity: 0.18;
  }
}

@keyframes code-cursor-track {
  0% {
    left: 112px;
  }
  18% {
    left: 146px;
  }
  42% {
    left: 204px;
  }
  68% {
    left: 250px;
  }
  100% {
    left: 190px;
  }
}

@keyframes shop-button-press {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
    box-shadow:
      0 0 16px rgba(93, 216, 235, 0.16),
      inset 0 1px 0 rgba(255, 255, 255, 0.14);
  }
  36% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  46% {
    transform: translate3d(0, 1px, 0) scale(0.97);
    box-shadow:
      0 0 10px rgba(93, 216, 235, 0.12),
      inset 0 1px 0 rgba(255, 255, 255, 0.12);
  }
  58% {
    transform: translate3d(0, 0, 0) scale(1);
    box-shadow:
      0 0 18px rgba(93, 216, 235, 0.2),
      inset 0 1px 0 rgba(255, 255, 255, 0.14);
  }
  100% {
    transform: translate3d(0, 0, 0) scale(1);
    box-shadow:
      0 0 16px rgba(93, 216, 235, 0.16),
      inset 0 1px 0 rgba(255, 255, 255, 0.14);
  }
}

@keyframes shop-check-confirm {
  0% {
    opacity: 0.28;
    transform: rotate(-45deg) scale(0.72);
  }
  42% {
    opacity: 0.28;
    transform: rotate(-45deg) scale(0.72);
  }
  56% {
    opacity: 1;
    transform: rotate(-45deg) scale(1.08);
  }
  72% {
    opacity: 0.94;
    transform: rotate(-45deg) scale(0.96);
  }
  100% {
    opacity: 0.78;
    transform: rotate(-45deg) scale(1);
  }
}

@keyframes process-route-travel {
  0% {
    transform: translate3d(0, 0, 0) scale(0.9);
    opacity: 0.82;
  }
  50% {
    transform: translate3d(132px, 0, 0) scale(1.08);
    opacity: 1;
  }
  100% {
    transform: translate3d(264px, 0, 0) scale(0.92);
    opacity: 0.86;
  }
}

@keyframes pricing-beam-shift {
  0% {
    transform: translate3d(0, 0, 0) scaleX(0.88);
    opacity: 0.84;
  }
  50% {
    transform: translate3d(94px, 0, 0) scaleX(1.08);
    opacity: 1;
  }
  100% {
    transform: translate3d(188px, 0, 0) scaleX(0.9);
    opacity: 0.86;
  }
}

@keyframes section-sheen {
  0% {
    transform: translateX(-120%);
    opacity: 0;
  }
  20% {
    opacity: 0.8;
  }
  58% {
    transform: translateX(120%);
    opacity: 0.32;
  }
  100% {
    transform: translateX(120%);
    opacity: 0;
  }
}

@keyframes trust-bubble-rise {
  0% {
    bottom: -12%;
    transform: translate3d(0, 0, 0) scale(0.84);
    opacity: 0;
  }
  14% {
    opacity: 0.18;
  }
  48% {
    bottom: 34%;
    transform: translate3d(10px, -18px, 0) scale(1);
    opacity: 0.3;
  }
  78% {
    bottom: 72%;
    transform: translate3d(-8px, -30px, 0) scale(1.08);
    opacity: 0.16;
  }
  100% {
    bottom: 104%;
    transform: translate3d(6px, -42px, 0) scale(1.12);
    opacity: 0;
  }
}

@keyframes trust-shell-aurora {
  0% {
    transform: translate3d(-2%, 0, 0) scale(1);
    opacity: 0.88;
  }
  50% {
    transform: translate3d(3%, -3%, 0) scale(1.04);
    opacity: 1;
  }
  100% {
    transform: translate3d(-1%, 4%, 0) scale(0.98);
    opacity: 0.9;
  }
}

@keyframes trust-grid-slide {
  0% {
    background-position: 0 0, 0 0;
  }
  100% {
    background-position: 64px 64px, 64px 64px;
  }
}

@keyframes trust-grid-breathe {
  0% {
    opacity: 0.42;
  }
  50% {
    opacity: 0.58;
  }
  100% {
    opacity: 0.46;
  }
}

@keyframes trust-card-breathe {
  0% {
    border-color: rgba(255, 255, 255, 0.08);
    box-shadow:
      0 22px 48px rgba(1, 9, 20, 0.16),
      inset 0 1px 0 rgba(255, 255, 255, 0.05);
  }
  50% {
    border-color: rgba(120, 182, 255, 0.16);
    box-shadow:
      0 28px 58px rgba(1, 9, 20, 0.2),
      inset 0 1px 0 rgba(255, 255, 255, 0.07);
  }
  100% {
    border-color: rgba(255, 255, 255, 0.09);
    box-shadow:
      0 24px 50px rgba(1, 9, 20, 0.18),
      inset 0 1px 0 rgba(255, 255, 255, 0.05);
  }
}

@keyframes trust-accent-slide {
  0% {
    background-position: 0% 50%;
    opacity: 0.84;
  }
  50% {
    background-position: 100% 50%;
    opacity: 1;
  }
  100% {
    background-position: 18% 50%;
    opacity: 0.88;
  }
}

@keyframes trust-orb-drift {
  0% {
    transform: translate3d(0, 0, 0) scale(0.96);
    opacity: 0.42;
  }
  50% {
    transform: translate3d(-10px, -12px, 0) scale(1.06);
    opacity: 0.64;
  }
  100% {
    transform: translate3d(6px, 4px, 0) scale(0.98);
    opacity: 0.48;
  }
}

@keyframes trust-icon-float {
  0% {
    transform: translate3d(0, 0, 0);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.08),
      0 14px 28px rgba(1, 9, 20, 0.18);
  }
  50% {
    transform: translate3d(0, -4px, 0);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.1),
      0 18px 34px rgba(1, 9, 20, 0.22);
  }
  100% {
    transform: translate3d(0, 0, 0);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.08),
      0 14px 28px rgba(1, 9, 20, 0.18);
  }
}

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

.footer-brand-link {
  margin-bottom: 14px;
}

.footer-links {
  margin: 0;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--white);
}

.footer-bottom {
  padding-top: 24px;
  margin-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer p,
.site-footer .footer-links li,
.site-footer .footer-links a {
  color: rgba(238, 246, 255, 0.74);
}

.footer-brand p {
  max-width: 32ch;
}

.site-footer h3 {
  color: var(--white);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 700ms ease,
    transform 700ms ease;
}

.reveal-delay-1 { transition-delay: 80ms; }
.reveal-delay-2 { transition-delay: 150ms; }
.reveal-delay-3 { transition-delay: 220ms; }
.reveal-delay-4 { transition-delay: 280ms; }
.reveal-delay-5 { transition-delay: 340ms; }

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

.legal-page {
  color: var(--ink-strong);
  background: linear-gradient(180deg, #f8fbff 0%, var(--bg-page) 100%);
}

.legal-page .site-header {
  position: static;
}

.legal-main {
  padding: 48px 0 84px;
}

.legal-shell {
  max-width: 860px;
  margin: 0 auto;
}

.legal-card {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--bg-surface);
  box-shadow: var(--shadow-sm);
}

.legal-card h1 {
  font-size: clamp(2.2rem, 5vw, 3.9rem);
}

.legal-card h2 {
  margin-top: 28px;
  margin-bottom: 12px;
  font-size: clamp(1.35rem, 2vw, 1.8rem);
}

.legal-card p,
.legal-card ul {
  color: var(--ink-body);
}

.legal-card ul {
  padding-left: 18px;
  margin: 0;
}

@media (max-width: 1180px) {
  .hero-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .section-heading-split {
    grid-template-columns: 1fr;
  }

  .section-heading-split .section-heading-copy {
    max-width: 100%;
  }

  .portfolio-heading h2,
  .process-heading h2 {
    max-width: 100%;
  }

  .portfolio-intro {
    grid-template-columns: 1fr;
  }

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

  .portfolio-cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .section-stage,
  .contact-stage {
    max-width: 420px;
  }

  .trust-heading {
    max-width: 100%;
  }

  .service-heading {
    max-width: 100%;
  }

  .service-heading::after {
    right: 10%;
  }

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

  .service-card-featured,
  .service-card-ecommerce {
    grid-column: span 3;
  }

  .service-card-featured .service-card-visual {
    min-height: 214px;
    margin: auto 0 0;
  }

  .service-card-web .service-card-visual {
    height: auto;
  }

  .service-card-admin,
  .service-card-redesign,
  .service-card-seo,
  .service-card-care {
    grid-column: span 3;
  }

  .process-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    padding-top: 10px;
  }

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

  .process-card:nth-child(2),
  .process-card:nth-child(3),
  .process-card:nth-child(4) {
    margin-top: 0;
  }

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

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

@media (max-width: 980px) {
  .header-shell {
    overflow: visible;
  }

  .site-nav,
  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .site-header.menu-open .site-nav {
    position: absolute;
    top: calc(100% + 12px);
    left: 16px;
    right: 16px;
    z-index: 20;
    display: grid;
    gap: 14px;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    background: rgba(7, 17, 29, 0.96);
    box-shadow: 0 24px 60px rgba(1, 9, 20, 0.28);
  }

  .site-header.menu-open .site-nav a::after {
    bottom: -4px;
  }

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

  .stage-window {
    animation: none;
    transform: none;
  }

  .stage-note-b,
  .stage-note-c {
    display: none;
  }

  .stage-note-a {
    right: 8px;
    bottom: 12px;
  }

  .stage-note-d {
    right: 20px;
    top: 88px;
  }

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

  .portfolio-cta {
    align-items: stretch;
  }

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

  .process-heading h2 {
    max-width: 100%;
  }
}

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

  .section,
  .hero {
    padding: 72px 0;
  }

  .header-shell {
    padding: 12px 14px;
  }

  .hero-actions,
  .contact-actions,
  .cta-panel {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .button,
  .contact-actions .button {
    width: 100%;
  }

  .hero-stage {
    min-height: 520px;
  }

  .stage-window {
    inset: 86px 18px 68px 18px;
    padding: 14px;
  }

  .stage-body {
    grid-template-columns: 1fr;
  }

  .stage-sidebar {
    grid-auto-flow: column;
    grid-auto-columns: 1fr;
  }

  .stage-panel-top {
    flex-direction: column;
  }

  .stage-signal {
    min-width: 0;
    width: 100%;
  }

  .stage-card-grid,
  .stage-panel-stats,
  .stage-flow-track {
    grid-template-columns: 1fr;
  }

  .stage-chart {
    height: 124px;
  }

  .stage-chart-axis {
    font-size: 0.64rem;
    letter-spacing: 0.05em;
  }

  .stage-note {
    min-width: 0;
    max-width: 188px;
    padding: 13px 14px 13px 16px;
  }

  .stage-note-a {
    right: 14px;
    bottom: 12px;
  }

  .stage-note-d {
    top: 74px;
    right: 14px;
  }

  .stage-note strong {
    font-size: 0.8rem;
  }

  .stage-note span {
    font-size: 0.76rem;
  }

  .trust-grid,
  .services-grid,
  .process-grid,
  .pricing-grid,
  .footer-grid,
  .portfolio-grid {
    grid-template-columns: 1fr;
  }

  .section-stage,
  .contact-stage {
    max-width: none;
  }

  .section-stage {
    min-height: 172px;
  }

  .portfolio-intro,
  .case-card,
  .portfolio-cta {
    padding: 20px;
  }

  .portfolio-shell {
    padding: 1.2rem;
  }

  .portfolio-intro-copy h3,
  .portfolio-cta-copy h3 {
    max-width: none;
  }

  .case-visual-shop {
    grid-template-columns: 1fr;
  }

  .case-visual {
    min-height: 200px;
  }

  .portfolio-heading {
    margin-bottom: 30px;
    padding-bottom: 22px;
  }

  .portfolio-cta,
  .cta-panel {
    flex-direction: column;
    align-items: stretch;
  }

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

  .trust-shell {
    padding: 1.2rem;
  }

  .service-shell {
    padding: 1.2rem;
  }

  .process-shell {
    padding: 1.2rem;
  }

  .service-heading {
    padding-bottom: 24px;
    margin-bottom: 30px;
  }

  .process-heading {
    padding-bottom: 22px;
    margin-bottom: 24px;
  }

  .trust-card {
    min-height: 0;
    padding: 24px;
  }

  .service-card,
  .service-card-featured,
  .service-card-ecommerce,
  .service-card-admin,
  .service-card-redesign,
  .service-card-seo,
  .service-card-care {
    grid-column: span 1;
    min-height: 0;
    padding: 24px;
  }

  .service-card-visual {
    min-height: 150px;
    margin: auto 0 0;
    width: 100%;
    align-self: stretch;
  }

  .service-card-featured .service-card-visual {
    min-height: 150px;
  }

  .process-card {
    min-height: 0;
    padding: 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

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

  .page-noise-water {
    display: none;
  }
}
