@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&display=swap');

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

@property --hero-btn-angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: true;
}

:root {
  --bg: #c4e2ff;
  --bg-deep: #94c6f8;
  --bg-elevated: #ffffff;
  --black: #050608;
  --bg-card: linear-gradient(135deg, #52c0ff 0%, #1ab0ff 42%, #0099ff 100%);
  --bg-card-flat: #1ab0ff;
  --bg-card-soft: rgba(255, 255, 255, 0.12);
  --bg-card-input: rgba(0, 30, 70, 0.22);
  --bg-overlay: rgba(196, 226, 255, 0.92);
  --border: rgba(0, 128, 255, 0.28);
  --border-card: rgba(255, 255, 255, 0.38);
  --border-hover: rgba(255, 255, 255, 0.6);
  --text: #050608;
  --text-muted: #2a3544;
  --text-on-card: #ffffff;
  --text-muted-on-card: #d8eeff;
  --cyan: #00e5ff;
  --blue: #00a8ff;
  --blue-deep: #0066ff;
  --violet: #5b6cf0;
  --on-accent: #ffffff;
  --shadow: 0 10px 32px rgba(0, 120, 220, 0.22);
  --shadow-card: 0 16px 48px rgba(0, 120, 220, 0.3);
  --glow: 0 0 48px rgba(0, 212, 255, 0.5);
  --glow-strong: 0 0 80px rgba(0, 212, 255, 0.65);
  --font-display: var(--font-body);
  --font-body: 'DM Sans', system-ui, sans-serif;
  --radius: 16px;
  --radius-lg: 24px;
  --nav-h: 72px;
}

html { scroll-behavior: smooth }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg-deep);
  overflow-x: hidden;
}

.page-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.page-bg__mesh {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 55% at 12% -8%, rgba(0, 160, 255, 0.54), transparent 52%),
    radial-gradient(ellipse 70% 48% at 92% 12%, rgba(0, 212, 255, 0.44), transparent 50%),
    radial-gradient(ellipse 65% 42% at 0% 48%, rgba(0, 128, 255, 0.38), transparent 48%),
    radial-gradient(ellipse 60% 45% at 100% 62%, rgba(91, 108, 240, 0.28), transparent 50%),
    radial-gradient(ellipse 75% 38% at 45% 105%, rgba(37, 140, 220, 0.46), transparent 55%),
    radial-gradient(ellipse 50% 35% at 68% 38%, rgba(0, 200, 255, 0.28), transparent 45%),
    linear-gradient(175deg, #7ab4f6 0%, #94c8fa 22%, #a8d8fc 48%, #b8e4ff 68%, #88b8f4 100%);
}

.page-bg__orbs {
  position: absolute;
  inset: 0;
}

.page-bg__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  animation: orbFloat 18s ease-in-out infinite;
}

.page-bg__orb--1 {
  width: 580px;
  height: 580px;
  background: rgba(0, 180, 255, 0.5);
  top: 28%;
  right: -6%;
  animation-delay: -3s;
}

.page-bg__orb--2 {
  width: 460px;
  height: 460px;
  background: rgba(0, 212, 255, 0.44);
  top: 58%;
  left: -10%;
  animation-delay: -7s;
}

.page-bg__orb--3 {
  width: 400px;
  height: 400px;
  background: rgba(0, 140, 255, 0.4);
  top: 78%;
  right: 18%;
  animation-delay: -11s;
}

.page-bg__orb--4 {
  width: 340px;
  height: 340px;
  background: rgba(0, 160, 255, 0.38);
  top: 8%;
  left: 22%;
  animation-delay: -15s;
}

.page-bg__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 102, 221, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 102, 221, 0.06) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse 95% 85% at 50% 45%, black 15%, transparent 72%);
}

main {
  position: relative;
}

::selection {
  background: rgba(0, 128, 255, 0.25);
  color: var(--text);
}

a { color: var(--blue); text-decoration: none }
a:hover { color: var(--cyan) }

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

.container {
  width: min(1200px, 90vw);
  margin-inline: auto;
}

.noise {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.028;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: rgba(5, 6, 8, 0.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: background 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.nav.is-scrolled {
  background: #000000;
  border-bottom-color: rgba(0, 229, 255, 0.22);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.45), 0 1px 0 rgba(0, 229, 255, 0.12);
}

.nav__inner {
  width: min(1200px, 90vw);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.nav__logo {
  display: flex;
  align-items: center;
  color: #ffffff;
  text-decoration: none;
}

.nav__logo:hover { text-decoration: none }

.nav__logo-img {
  display: block;
  width: min(148px, 38vw);
  height: auto;
  filter: drop-shadow(0 0 10px rgba(0, 212, 255, 0.45)) drop-shadow(0 6px 20px rgba(0, 160, 255, 0.4));
  transition: filter 0.2s ease;
}

.nav__logo:hover .nav__logo-img {
  filter: drop-shadow(0 0 16px rgba(0, 229, 255, 0.65)) drop-shadow(0 8px 24px rgba(0, 160, 255, 0.5));
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav__links a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}

.nav__links a:hover { color: var(--cyan); text-decoration: none }

.nav__cta {
  padding: 0.55rem 1.25rem;
  background: linear-gradient(135deg, #00e5ff 0%, #00a8ff 55%, #0066ff 100%);
  color: var(--on-accent) !important;
  font-weight: 600;
  font-size: 0.85rem;
  border-radius: 999px;
  box-shadow: 0 6px 24px rgba(0, 160, 255, 0.45);
  transition: transform 0.2s, box-shadow 0.2s;
}

.nav__cta:hover {
  transform: translateY(-1px);
  box-shadow: var(--glow);
  text-decoration: none;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--nav-h) + 2rem) 0 4rem;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  -webkit-mask-image: linear-gradient(
    to bottom,
    #000 0%,
    #000 72%,
    rgba(0, 0, 0, 0.88) 82%,
    rgba(0, 0, 0, 0.45) 92%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to bottom,
    #000 0%,
    #000 72%,
    rgba(0, 0, 0, 0.88) 82%,
    rgba(0, 0, 0, 0.45) 92%,
    transparent 100%
  );
}

.hero__bg::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse 90% 70% at 50% -5%, rgba(0, 180, 255, 0.68), transparent 55%),
    radial-gradient(ellipse 55% 45% at 95% 40%, rgba(0, 212, 255, 0.5), transparent),
    radial-gradient(ellipse 50% 40% at 5% 75%, rgba(0, 128, 255, 0.42), transparent);
  pointer-events: none;
}

.hero__bg-image {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: var(--hero-image, none);
  background-size: cover;
  background-position: center;
  opacity: var(--hero-image-opacity, 0);
  transition: opacity 1s;
  mix-blend-mode: multiply;
}

.hero__bg-image.is-active { opacity: var(--hero-image-opacity, 0.35) }

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

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: orbFloat 12s ease-in-out infinite;
}

.orb--1 {
  width: 500px;
  height: 500px;
  background: rgba(0, 160, 255, 0.62);
  top: -10%;
  right: -5%;
}

.orb--2 {
  width: 400px;
  height: 400px;
  background: rgba(0, 212, 255, 0.48);
  bottom: 10%;
  left: -10%;
  animation-delay: -4s;
}

.orb--3 {
  width: 300px;
  height: 300px;
  background: rgba(0, 128, 255, 0.4);
  top: 40%;
  left: 50%;
  animation-delay: -8s;
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1) }
  33% { transform: translate(30px, -20px) scale(1.05) }
  66% { transform: translate(-20px, 15px) scale(0.95) }
}

.hero__grid {
  position: absolute;
  inset: 0;
  z-index: 2;
  background-image:
    linear-gradient(rgba(0, 128, 255, 0.14) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 128, 255, 0.14) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black, transparent);
}

.hero__layout {
  position: relative;
  z-index: 2;
  width: min(1200px, 90vw);
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: left;
  max-width: 600px;
}

.hero__content::before {
  content: '';
  position: absolute;
  z-index: 0;
  top: 50%;
  left: -8%;
  width: min(680px, 78vw);
  height: min(480px, 62vh);
  transform: translateY(-50%);
  background: radial-gradient(
    ellipse 100% 100% at 42% 50%,
    rgba(255, 255, 255, 0.52) 0%,
    rgba(255, 255, 255, 0.28) 35%,
    rgba(255, 255, 255, 0.1) 55%,
    transparent 72%
  );
  filter: blur(56px);
  pointer-events: none;
}

.hero__title,
.hero__subtitle,
.hero__actions {
  position: relative;
  z-index: 1;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  border: 1px solid var(--border-card);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-on-card);
  margin-bottom: 1.5rem;
  background: var(--bg-card);
  box-shadow: var(--shadow);
  animation: fadeUp 0.8s ease backwards;
}

.hero__badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 10px var(--cyan);
  animation: pulse 2s ease infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1 }
  50% { opacity: 0.4 }
}

.hero__title {
  font-family: var(--font-body);
  font-size: clamp(2.25rem, 5.8vw, 3.75rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 1.25rem;
  animation: fadeUp 0.8s 0.1s ease backwards;
}

.hero__title-line {
  display: block;
}

.hero__title-line:first-child {
  color: var(--black);
}

.hero__title-line--accent {
  background: linear-gradient(125deg, #0066ff 0%, #00e5ff 45%, #00a8ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__subtitle {
  font-size: clamp(1rem, 2.1vw, 1.12rem);
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 0 2rem;
  line-height: 1.7;
  animation: fadeUp 0.8s 0.2s ease backwards;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: flex-start;
  animation: fadeUp 0.8s 0.3s ease backwards;
}

.btn--hero {
  position: relative;
  z-index: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  background: var(--black);
  color: #9ae8ff;
  box-shadow: none;
  --hero-btn-angle: 0deg;
  animation: heroBtnGlowSpin 4.2s linear infinite;
  transition: transform 0.2s, color 0.2s;
  text-decoration: none;
  isolation: isolate;
}

.btn--hero::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1.5px;
  background: conic-gradient(
    from var(--hero-btn-angle),
    rgba(0, 55, 100, 0.55) 0deg,
    rgba(0, 55, 100, 0.55) 268deg,
    rgba(0, 229, 255, 1) 296deg,
    rgba(0, 168, 255, 1) 308deg,
    rgba(0, 102, 255, 0.95) 320deg,
    rgba(0, 55, 100, 0.55) 360deg
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask-composite: exclude;
  filter:
    drop-shadow(0 0 3px rgba(0, 229, 255, 0.7))
    drop-shadow(0 0 8px rgba(0, 168, 255, 0.45))
    drop-shadow(0 0 16px rgba(0, 102, 255, 0.28));
  transition: filter 0.25s ease;
  pointer-events: none;
  z-index: -1;
}

@keyframes heroBtnGlowSpin {
  to { --hero-btn-angle: 360deg }
}

.btn--hero:hover {
  transform: translateY(-2px);
  color: #c8f4ff;
  text-decoration: none;
}

.btn--hero:hover::before {
  filter:
    drop-shadow(0 0 4px rgba(0, 229, 255, 0.85))
    drop-shadow(0 0 12px rgba(0, 168, 255, 0.6))
    drop-shadow(0 0 22px rgba(0, 102, 255, 0.38));
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn--primary {
  background: linear-gradient(135deg, #00e5ff 0%, #00a8ff 50%, #0066ff 100%);
  color: var(--on-accent);
  box-shadow: 0 8px 32px rgba(0, 160, 255, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.25) inset;
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--glow-strong), 0 12px 36px rgba(0, 160, 255, 0.55);
  text-decoration: none;
  color: var(--on-accent);
}

.btn--ghost {
  background: var(--bg-card);
  color: var(--text-on-card);
  border: 1px solid var(--border-card);
  box-shadow: var(--shadow);
}

.btn--ghost:hover {
  border-color: var(--border-hover);
  background: linear-gradient(155deg, #3d91c6 0%, #2a75ad 55%, #1f6596 100%);
  text-decoration: none;
  color: var(--text-on-card);
  box-shadow: var(--glow), var(--shadow);
}

.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-muted);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: fadeUp 1s 0.6s ease backwards;
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--cyan), transparent);
  animation: scrollLine 2s ease infinite;
}

@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top }
  50% { transform: scaleY(1); transform-origin: top }
  51% { transform: scaleY(1); transform-origin: bottom }
  100% { transform: scaleY(0); transform-origin: bottom }
}

.hero__visual {
  position: relative;
  min-height: 420px;
  animation: fadeUp 0.9s 0.35s ease backwards;
}

.hero-flow {
  position: relative;
  width: 100%;
  max-width: 500px;
  margin-left: auto;
  min-height: 400px;
}

.hero-flow__glow {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background:
    radial-gradient(circle at 55% 45%, rgba(0, 229, 255, 0.38), transparent 42%),
    radial-gradient(circle at 30% 70%, rgba(0, 102, 255, 0.22), transparent 50%);
  filter: blur(48px);
  animation: heroFlowGlow 6s ease-in-out infinite;
}

.hero-flow__stage {
  position: relative;
  min-height: 380px;
  border-radius: 20px;
  border: 1px solid rgba(0, 200, 255, 0.28);
  background: linear-gradient(165deg, #101218 0%, #06070a 55%, #000000 100%);
  box-shadow:
    0 28px 60px rgba(0, 0, 0, 0.48),
    0 0 60px rgba(0, 168, 255, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.hero-flow__stage::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 168, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 168, 255, 0.07) 1px, transparent 1px);
  background-size: 22px 22px;
  mask-image: radial-gradient(ellipse 90% 80% at 50% 50%, black 20%, transparent 75%);
  pointer-events: none;
  z-index: 0;
}

.hero-flow__stage::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 50px rgba(0, 168, 255, 0.08);
  pointer-events: none;
  z-index: 0;
  animation: heroFlowStagePulse 5s ease-in-out infinite;
}

.hero-flow__scene {
  position: absolute;
  inset: 0;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  z-index: 1;
}

.hero-flow__scene--before {
  z-index: 2;
  animation: heroFlowSceneBefore 12s ease-in-out infinite;
}

.hero-flow__scene--after {
  z-index: 1;
  animation: heroFlowSceneAfter 12s ease-in-out infinite;
}

.hero-flow__label {
  margin: 0 0 0.65rem;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.38);
}

.hero-flow__label--highlight {
  display: inline-block;
  align-self: flex-start;
  padding: 0.28rem 0.6rem;
  border-radius: 6px;
  background: rgba(0, 168, 255, 0.14);
  border: 1px solid rgba(0, 229, 255, 0.35);
  color: var(--cyan);
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.15);
}

.hero-flow__face {
  position: relative;
  width: 44px;
  height: 44px;
  margin: 0 auto 0.55rem;
  flex-shrink: 0;
}

.hero-flow__face-head {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.04);
}

.hero-flow__face--overwhelmed .hero-flow__face-head {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.025);
}

.hero-flow__face--happy .hero-flow__face-head {
  border-color: rgba(0, 229, 255, 0.35);
  background: rgba(0, 168, 255, 0.08);
  box-shadow: 0 0 16px rgba(0, 212, 255, 0.12);
}

.hero-flow__face-eye {
  position: absolute;
  top: 40%;
  width: 4px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.78);
}

.hero-flow__face--overwhelmed .hero-flow__face-eye {
  width: 5px;
  height: 3px;
  top: 42%;
  border-radius: 50% 50% 45% 45%;
  background: rgba(255, 255, 255, 0.65);
}

.hero-flow__face-eye--l { left: 30% }
.hero-flow__face-eye--r { right: 30% }

.hero-flow__face-sweat {
  position: absolute;
  top: 22%;
  right: 14%;
  width: 4px;
  height: 6px;
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  background: rgba(0, 168, 255, 0.45);
  opacity: 0;
  animation: heroFlowSweat 3s ease-in-out infinite;
}

.hero-flow__face-mouth {
  position: absolute;
  left: 50%;
  background: transparent;
}

.hero-flow__face-mouth--overwhelmed {
  bottom: 28%;
  width: 9px;
  height: 2px;
  border: none;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.35);
  transform: translateX(-50%);
}

.hero-flow__face-mouth--happy {
  bottom: 24%;
  width: 14px;
  height: 7px;
  border: 1.5px solid rgba(0, 229, 255, 0.65);
  border-top: none;
  border-radius: 0 0 14px 14px;
  transform: translateX(-50%);
}

.hero-flow__face--overwhelmed {
  animation: heroFlowFaceOverwhelmed 3.5s ease-in-out infinite;
}

.hero-flow__face--happy {
  animation: heroFlowFaceHappy 12s ease-in-out infinite;
}

.hero-flow__chaos {
  position: relative;
  flex: 1;
  width: 100%;
  min-height: 220px;
}

.hero-flow__chip {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0.6rem;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.32), 0 0 16px rgba(0, 120, 255, 0.08);
}

.hero-flow__chip-icon {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  flex-shrink: 0;
}

.hero-flow__chip-label {
  font-size: 0.68rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.82);
  white-space: nowrap;
}

.hero-flow__chip--excel {
  top: 6%;
  left: 4%;
  animation: heroFlowDrift1 4.5s ease-in-out infinite;
}

.hero-flow__chip--excel .hero-flow__chip-icon {
  background:
    linear-gradient(rgba(255, 255, 255, 0.2) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.2) 1px, transparent 1px),
    #217346;
  background-size: 6px 6px;
}

.hero-flow__chip--email {
  top: 10%;
  right: 4%;
  left: auto;
  animation: heroFlowDrift2 5s ease-in-out infinite;
}

.hero-flow__chip--email .hero-flow__chip-icon {
  background: linear-gradient(135deg, #ea4335, #c5221f);
  box-shadow: inset 0 -4px 0 rgba(0, 0, 0, 0.15);
}

.hero-flow__chip--chat {
  top: 44%;
  left: 8%;
  animation: heroFlowDrift3 4.8s ease-in-out infinite;
}

.hero-flow__chip--chat .hero-flow__chip-icon {
  background: #25d366;
  border-radius: 8px;
}

.hero-flow__chip--note {
  top: 38%;
  right: 6%;
  left: auto;
  animation: heroFlowDrift4 5.2s ease-in-out infinite;
}

.hero-flow__chip--note .hero-flow__chip-icon {
  background: linear-gradient(160deg, #f5d565, #e8b84a);
}

.hero-flow__chip--phone {
  bottom: 6%;
  left: 50%;
  transform: translateX(-50%);
  animation: heroFlowDrift5 4.6s ease-in-out infinite;
}

.hero-flow__chip--phone .hero-flow__chip-icon {
  background: linear-gradient(135deg, #5b8def, #3b6fd4);
}

.hero-flow__dashboard {
  position: relative;
  flex: 1;
  width: 100%;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(0, 200, 255, 0.35);
  background: linear-gradient(165deg, #161b24 0%, #0a0c10 100%);
  box-shadow:
    0 16px 40px rgba(0, 0, 0, 0.4),
    0 0 40px rgba(0, 168, 255, 0.2),
    inset 0 1px 0 rgba(0, 229, 255, 0.12);
  animation: heroFlowDashPop 12s ease-in-out infinite;
}

.hero-flow__dashboard::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--cyan), var(--blue), transparent);
  opacity: 0.85;
}

.hero-flow__dash-bar {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.55rem 0.7rem;
  background: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.hero-flow__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
}

.hero-flow__dot:nth-child(1) { background: #ff5f57 }
.hero-flow__dot:nth-child(2) { background: #febc2e }
.hero-flow__dot:nth-child(3) { background: #28c840 }

.hero-flow__dash-title {
  margin-left: 0.35rem;
  font-size: 0.68rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.78);
}

.hero-flow__dash-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.4rem;
  padding: 0.65rem 0.7rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.hero-flow__dash-stats div {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  padding: 0.4rem;
  border-radius: 8px;
  background: rgba(0, 168, 255, 0.08);
  border: 1px solid rgba(0, 229, 255, 0.14);
}

.hero-flow__dash-stats strong {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--cyan);
  line-height: 1;
  text-shadow: 0 0 14px rgba(0, 212, 255, 0.45);
}

.hero-flow__dash-stats span {
  font-size: 0.52rem;
  color: rgba(255, 255, 255, 0.45);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.hero-flow__dash-list {
  list-style: none;
  margin: 0;
  padding: 0.55rem 0.7rem 0.7rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.hero-flow__dash-list li {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.45rem;
  padding: 0.4rem 0.45rem;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.025);
  opacity: 0;
  transform: translateY(6px);
  animation: heroFlowRow 12s ease-in-out infinite;
}

.hero-flow__dash-list li:nth-child(1) { animation-delay: 0.1s }
.hero-flow__dash-list li:nth-child(2) { animation-delay: 0.25s }
.hero-flow__dash-list li:nth-child(3) { animation-delay: 0.4s }

.hero-flow__status {
  width: 7px;
  height: 7px;
  border-radius: 50%;
}

.hero-flow__status--new { background: #00e5ff; box-shadow: 0 0 8px rgba(0, 229, 255, 0.6) }
.hero-flow__status--active { background: #febc2e }
.hero-flow__status--done { background: #28c840 }

.hero-flow__row-name {
  font-size: 0.62rem;
  color: rgba(255, 255, 255, 0.78);
}

.hero-flow__row-tag {
  font-size: 0.52rem;
  font-weight: 600;
  padding: 0.15rem 0.35rem;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.06);
}

@keyframes heroFlowGlow {
  0%, 100% { opacity: 0.8; transform: scale(1) }
  50% { opacity: 1; transform: scale(1.08) }
}

@keyframes heroFlowStagePulse {
  0%, 100% { box-shadow: inset 0 0 50px rgba(0, 168, 255, 0.08) }
  50% { box-shadow: inset 0 0 70px rgba(0, 212, 255, 0.14) }
}

@keyframes heroFlowDrift1 {
  0%, 100% { transform: translate(0, 0) rotate(-5deg) }
  50% { transform: translate(6px, -10px) rotate(3deg) }
}

@keyframes heroFlowDrift2 {
  0%, 100% { transform: translate(0, 0) rotate(4deg) }
  50% { transform: translate(-8px, 8px) rotate(-2deg) }
}

@keyframes heroFlowDrift3 {
  0%, 100% { transform: translate(0, 0) rotate(-3deg) }
  50% { transform: translate(10px, 4px) rotate(5deg) }
}

@keyframes heroFlowDrift4 {
  0%, 100% { transform: translate(0, 0) rotate(6deg) }
  50% { transform: translate(-5px, -8px) rotate(-4deg) }
}

@keyframes heroFlowDrift5 {
  0%, 100% { transform: translate(-50%, 0) rotate(-2deg) }
  50% { transform: translate(calc(-50% + 7px), -6px) rotate(4deg) }
}

@keyframes heroFlowSceneBefore {
  0%, 26% { opacity: 1; visibility: visible }
  34%, 100% { opacity: 0; visibility: hidden }
}

@keyframes heroFlowSceneAfter {
  0%, 28% { opacity: 0; visibility: hidden }
  36%, 88% { opacity: 1; visibility: visible }
  100% { opacity: 0; visibility: hidden }
}

@keyframes heroFlowFaceOverwhelmed {
  0%, 100% { transform: translate(0, 0) }
  33% { transform: translate(-1px, 1px) }
  66% { transform: translate(1px, 0) }
}

@keyframes heroFlowSweat {
  0%, 40% { opacity: 0; transform: translateY(0) }
  55%, 85% { opacity: 1; transform: translateY(2px) }
  100% { opacity: 0; transform: translateY(4px) }
}

@keyframes heroFlowFaceHappy {
  0%, 34% { transform: scale(0.9) }
  40%, 84% { transform: scale(1) }
  92%, 100% { transform: scale(0.94) }
}

@keyframes heroFlowDashPop {
  0%, 32% { transform: scale(0.96); opacity: 0.6 }
  38%, 86% { transform: scale(1); opacity: 1 }
  100% { transform: scale(0.98); opacity: 0.6 }
}

@keyframes heroFlowRow {
  0%, 36% { opacity: 0; transform: translateY(6px) }
  42%, 84% { opacity: 1; transform: translateY(0) }
  94%, 100% { opacity: 0; transform: translateY(-4px) }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px) }
  to { opacity: 1; transform: translateY(0) }
}

.section {
  padding: 6rem 0;
  position: relative;
}

.section--services {
  background: none;
}

.section__label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 0.85rem;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  background: var(--black);
  box-shadow: 0 8px 24px rgba(5, 6, 8, 0.2);
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 1rem;
  line-height: 1.15;
  color: var(--black);
}

.section__desc {
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 0 3rem;
  font-size: 1.05rem;
}

.section__header--center {
  text-align: center;
}

.section__header--center .section__desc {
  margin-inline: auto;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

[data-reveal-delay="1"] { transition-delay: 0.1s }
[data-reveal-delay="2"] { transition-delay: 0.2s }
[data-reveal-delay="3"] { transition-delay: 0.3s }

.services {
  display: grid;
  grid-template-columns: minmax(220px, 320px) 1fr;
  gap: 3rem 5rem;
  align-items: start;
}

.services__intro {
  position: sticky;
  top: calc(var(--nav-h) + 2rem);
}

.services__lead {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.7;
  margin: 0;
}

.services__list {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: service;
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}

.services__item {
  --service-accent: var(--cyan);
  --service-accent-soft: rgba(0, 229, 255, 0.18);
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  padding: 1.35rem 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, #101218 0%, #08090d 52%, #000000 100%);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
  overflow: hidden;
  isolation: isolate;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease, padding 0.35s ease;
}

.services__item::before {
  content: '';
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: linear-gradient(180deg, var(--service-accent), transparent);
  opacity: 0.85;
  transition: width 0.35s ease, opacity 0.35s ease;
}

.services__item::after {
  content: '';
  position: absolute;
  top: -35%;
  right: -8%;
  width: 14rem;
  height: 14rem;
  border-radius: 50%;
  background: radial-gradient(circle, var(--service-accent-soft), transparent 68%);
  pointer-events: none;
  transition: transform 0.5s ease, opacity 0.35s ease;
}

.services__item--systems {
  --service-accent: #b8c8ff;
  --service-accent-soft: rgba(184, 200, 255, 0.16);
}

.services__item--shop {
  --service-accent: #7ef0ff;
  --service-accent-soft: rgba(126, 240, 255, 0.16);
}

.services__item--ai {
  --service-accent: #ddb8ff;
  --service-accent-soft: rgba(221, 184, 255, 0.16);
}

.services__item--laravel {
  --service-accent: #ffb8a8;
  --service-accent-soft: rgba(255, 184, 168, 0.16);
}

.services__item.is-open {
  padding: 1.5rem 1.5rem 1.75rem;
}

.services__item:hover,
.services__item.is-open {
  transform: translateY(-3px);
  border-color: rgba(0, 229, 255, 0.42);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.45), 0 0 36px rgba(0, 212, 255, 0.14);
}

.services__item:hover::before,
.services__item.is-open::before {
  width: 4px;
  opacity: 1;
}

.services__item:hover::after,
.services__item.is-open::after {
  transform: scale(1.08);
  opacity: 1;
}

.services__item:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.services__num {
  position: absolute;
  top: 0.9rem;
  left: 1.15rem;
  z-index: 2;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--service-accent);
  letter-spacing: 0.12em;
  opacity: 0.7;
  pointer-events: none;
}

.services__body {
  position: relative;
  z-index: 1;
  min-width: 0;
  padding-left: 2rem;
}

.services__trigger {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  padding: 0;
  margin: 0;
  border: none;
  background: none;
  cursor: pointer;
  text-align: left;
  font: inherit;
  color: inherit;
}

.services__trigger:hover .services__name {
  color: var(--service-accent);
}

.services__trigger-main {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  min-width: 0;
}

.services__name {
  display: block;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0;
  color: #ffffff;
  letter-spacing: -0.01em;
  transition: color 0.2s;
}

.services__chevron {
  position: relative;
  flex-shrink: 0;
  width: 2.1rem;
  height: 2.1rem;
  margin-top: 0.1rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}

.services__chevron::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--service-accent);
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M4 6l4 4 4-4' stroke='black' stroke-width='1.75' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  mask-size: 52%;
  mask-repeat: no-repeat;
  mask-position: center;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M4 6l4 4 4-4' stroke='black' stroke-width='1.75' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  -webkit-mask-size: 52%;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
}

.services__item:hover .services__chevron,
.services__item.is-open .services__chevron {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(0, 229, 255, 0.35);
}

.services__item.is-open .services__chevron {
  transform: rotate(180deg);
}

.services__summary {
  display: block;
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.95rem;
  line-height: 1.6;
  max-width: 52ch;
  font-weight: 400;
}

.services__panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s ease;
}

.services__item.is-open .services__panel {
  grid-template-rows: 1fr;
}

.services__panel-inner {
  overflow: hidden;
}

.services__panel-inner > .services__text:first-child,
.services__panel-inner > .services__includes:first-child {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}


.services__text {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.98rem;
  line-height: 1.65;
  max-width: 52ch;
}

.services__text + .services__text {
  margin-top: 0.85rem;
}

.services__text--label {
  font-size: 0.9rem;
  color: var(--text-on-card);
  opacity: 0.9;
}

.services__includes {
  margin: 0.75rem 0 0;
  padding: 0;
  list-style: none;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.95rem;
  line-height: 1.7;
  max-width: 52ch;
  display: grid;
  gap: 0.45rem;
}

.services__includes li {
  position: relative;
  margin: 0;
  padding-left: 1.35rem;
}

.services__includes li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--service-accent);
  box-shadow: 0 0 10px var(--service-accent-soft);
  transform: translateY(-50%);
}

.services__includes + .services__text {
  margin-top: 0.85rem;
}

.services__list-wrap {
  min-width: 0;
}

.services__footnote {
  margin: 0.5rem 0 0;
  padding-top: 1.25rem;
  padding-left: 4.25rem;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
  border-top: 1px solid rgba(0, 102, 221, 0.1);
}

.section--services .section__title {
  margin-bottom: 1rem;
}

.portfolio {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.project-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(160deg, #101218 0%, #08090d 52%, #000000 100%);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
  transition: transform 0.4s, box-shadow 0.4s, border-color 0.3s;
  group: project;
}

.project-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(0, 229, 255, 0.42);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.45), 0 0 36px rgba(0, 212, 255, 0.14);
}

.project-card__visual {
  aspect-ratio: 4/3;
  position: relative;
  overflow: hidden;
}

.project-card__screenshot {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.6s;
}

.project-card:hover .project-card__screenshot {
  transform: scale(1.05);
}

.project-card__visual--screenshot .project-card__visual-bg,
.project-card__visual--screenshot .project-card__visual-grid,
.project-card__visual--screenshot .project-card__visual-glow {
  display: none;
}

.project-card__visual--screenshot::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 55%, rgba(0, 0, 0, 0.72) 100%);
  pointer-events: none;
  z-index: 1;
}

.project-card__visual--screenshot .project-card__number {
  z-index: 2;
}

.project-card__visual-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0a2040, #102a50);
  transition: transform 0.6s;
}

.project-card:nth-child(2) .project-card__visual-bg {
  background: linear-gradient(135deg, #0a1830, #1a3060);
}

.project-card:nth-child(3) .project-card__visual-bg {
  background: linear-gradient(135deg, #102040, #203060);
}

.project-card:hover .project-card__visual-bg {
  transform: scale(1.08);
}

.project-card__visual-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 212, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 212, 255, 0.06) 1px, transparent 1px);
  background-size: 24px 24px;
}

.project-card__visual-glow {
  position: absolute;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--cyan);
  filter: blur(60px);
  opacity: 0.3;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.project-card__number {
  position: absolute;
  top: 1rem;
  left: 1rem;
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.06);
  line-height: 1;
}

.project-card__body {
  padding: 1.5rem;
}

.project-card__type {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--cyan);
  margin-bottom: 0.35rem;
}

.project-card__title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
  color: #ffffff;
}

.project-card__desc {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.9rem;
  margin: 0 0 1rem;
}

.project-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--blue);
}

.project-card__link svg {
  width: 16px;
  height: 16px;
  transition: transform 0.2s;
}

.project-card:hover .project-card__link svg {
  transform: translateX(4px);
}

.cta-banner {
  margin: 2rem 0;
  padding: 3rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(0, 229, 255, 0.45);
  background: linear-gradient(135deg, #00d4ff 0%, #00a8ff 38%, #0066ff 100%);
  box-shadow: var(--shadow-card), 0 0 72px rgba(0, 200, 255, 0.35);
  text-align: center;
  position: relative;
  overflow: hidden;
  color: var(--text-on-card);
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: -50%;
  background: conic-gradient(from 0deg, transparent, rgba(255, 255, 255, 0.15), transparent 30%);
  animation: rotate 8s linear infinite;
}

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

.cta-banner__inner {
  position: relative;
  z-index: 1;
}

.cta-banner h3 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  margin: 0 0 0.75rem;
  color: #ffffff;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.92);
  margin: 0 0 1.5rem;
}

.cta-banner .btn--primary {
  background: var(--black);
  color: #ffffff;
  box-shadow: 0 8px 28px rgba(5, 6, 8, 0.35);
}

.cta-banner .btn--primary:hover {
  background: #111318;
  box-shadow: 0 12px 36px rgba(5, 6, 8, 0.45), 0 0 32px rgba(0, 229, 255, 0.25);
  color: #ffffff;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
}

.contact-grid--email-only {
  grid-template-columns: minmax(0, 1fr) minmax(200px, 260px);
  max-width: none;
  align-items: center;
  gap: 3rem;
}

.contact-visual {
  position: relative;
  display: none;
  justify-content: center;
  align-items: center;
  min-height: 16rem;
  padding: 1.75rem 1.25rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(160deg, #101218 0%, #08090d 52%, #000000 100%);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35), 0 0 40px rgba(0, 212, 255, 0.08);
  overflow: hidden;
  perspective: 900px;
}

.contact-visual::before {
  content: '';
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: linear-gradient(180deg, var(--cyan), var(--blue-deep));
  opacity: 0.85;
  z-index: 0;
}

.contact-visual__glow {
  position: absolute;
  width: 10rem;
  height: 10rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.32), transparent 68%);
  filter: blur(22px);
  animation: contactGlow 6s ease-in-out infinite;
  z-index: 1;
}

.contact-visual__ring {
  position: absolute;
  width: 11.5rem;
  height: 11.5rem;
  border: 1px dashed rgba(0, 229, 255, 0.22);
  border-radius: 50%;
  animation: contactRingSpin 24s linear infinite;
  z-index: 1;
}

.contact-visual__scene {
  position: relative;
  width: 9rem;
  height: 9.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: visible;
  z-index: 2;
}

.contact-visual__mail {
  position: relative;
  width: 7.5rem;
  height: 5rem;
  animation: contactMailFloat 5s ease-in-out infinite;
}

.contact-visual__mail-shadow {
  position: absolute;
  inset: auto 12% -1rem;
  height: 0.9rem;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.55);
  filter: blur(8px);
  animation: contactMailShadow 5s ease-in-out infinite;
}

.contact-visual__mail-shell {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  perspective: 700px;
}

.contact-visual__mail-back {
  position: absolute;
  inset: 0;
  border-radius: 0.85rem;
  background: linear-gradient(180deg, #d4e8fa 0%, #bdd9f5 100%);
  border: 1px solid rgba(0, 102, 238, 0.2);
  box-shadow: 0 14px 32px rgba(26, 95, 150, 0.14);
}

.contact-visual__letter {
  position: absolute;
  left: 0.85rem;
  right: 0.85rem;
  bottom: 0.55rem;
  height: 4.75rem;
  padding: 0.75rem 0.7rem;
  border-radius: 0.55rem;
  background: linear-gradient(180deg, #ffffff 0%, #f3f9ff 100%);
  border: 1px solid rgba(0, 102, 238, 0.12);
  box-shadow: 0 6px 16px rgba(26, 95, 150, 0.1);
  z-index: 2;
  animation: contactLetterRise 5s ease-in-out infinite;
}

.contact-visual__mail-flap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 56%;
  transform-origin: top center;
  transform-style: preserve-3d;
  backface-visibility: hidden;
  z-index: 4;
  animation: contactFlapLift 5s ease-in-out infinite;
}

.contact-visual__mail-flap::before {
  content: '';
  position: absolute;
  inset: 0;
  clip-path: polygon(0 0, 50% 100%, 100% 0);
  background: linear-gradient(180deg, #e8f4fd 0%, #c8ddf5 100%);
  border: 1px solid rgba(0, 102, 238, 0.16);
  border-bottom: none;
}

.contact-visual__mail-pocket {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 58%;
  border-radius: 0 0 0.85rem 0.85rem;
  background: linear-gradient(165deg, #ffffff 0%, #e8f4fd 100%);
  border: 1px solid rgba(0, 102, 238, 0.18);
  clip-path: polygon(0 0, 50% 24%, 100% 0, 100% 100%, 0 100%);
  z-index: 3;
  box-shadow: 0 10px 24px rgba(26, 95, 150, 0.1);
}

.contact-visual__mail-lines {
  display: grid;
  gap: 0.42rem;
}

.contact-visual__mail-lines span {
  display: block;
  height: 0.32rem;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(0, 102, 238, 0.35), rgba(0, 184, 245, 0.15));
  transform-origin: left center;
  animation: contactLineWrite 3.2s ease-in-out infinite;
}

.contact-visual__mail-lines span:nth-child(1) { width: 92%; animation-delay: 0s }
.contact-visual__mail-lines span:nth-child(2) { width: 78%; animation-delay: 0.3s }
.contact-visual__mail-lines span:nth-child(3) { width: 64%; animation-delay: 0.6s }
.contact-visual__mail-lines span:nth-child(4) { width: 48%; animation-delay: 0.9s }

.contact-visual__send {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 2.75rem;
  height: 2.75rem;
  transform: translateX(-50%);
  pointer-events: none;
  z-index: 0;
}

.contact-visual__send span {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(0, 184, 245, 0.45);
  animation: contactSendPulse 3.6s ease-out infinite;
}

.contact-visual__send span:nth-child(2) { animation-delay: 1.2s }
.contact-visual__send span:nth-child(3) { animation-delay: 2.4s }

@keyframes contactGlow {
  0%, 100% { opacity: 0.55; transform: scale(0.96) }
  50% { opacity: 1; transform: scale(1.04) }
}

@keyframes contactRingSpin {
  from { transform: rotate(0deg) }
  to { transform: rotate(360deg) }
}

@keyframes contactMailFloat {
  0%, 100% { transform: translateY(0) rotate(-2deg) }
  50% { transform: translateY(-10px) rotate(2deg) }
}

@keyframes contactMailShadow {
  0%, 100% { transform: scaleX(1); opacity: 0.55 }
  50% { transform: scaleX(0.82); opacity: 0.3 }
}

@keyframes contactLetterRise {
  0%, 24%, 100% { transform: translateY(0) }
  40%, 56% { transform: translateY(-1.5rem) }
}

@keyframes contactFlapLift {
  0%, 20%, 100% {
    transform: rotateX(0deg);
    z-index: 4;
  }
  34%, 58% {
    transform: rotateX(128deg);
    z-index: 1;
  }
}

@keyframes contactLineWrite {
  0%, 12% { transform: scaleX(0); opacity: 0 }
  24%, 72% { transform: scaleX(1); opacity: 1 }
  100% { transform: scaleX(1); opacity: 0.35 }
}

@keyframes contactSendPulse {
  0% {
    opacity: 0.7;
    transform: scale(0.35);
  }
  100% {
    opacity: 0;
    transform: scale(1.35);
  }
}

@media (min-width: 901px) {
  .contact-visual {
    display: flex;
  }
}

.contact-info__email {
  margin: 1.75rem 0 0;
}

.contact-info__email a {
  display: inline-block;
  font-family: var(--font-body);
  font-size: clamp(1.05rem, 2.4vw, 1.25rem);
  font-weight: 600;
  letter-spacing: -0.01em;
  padding: 0.75rem 1.3rem;
  border-radius: 12px;
  text-decoration: none;
  border: 1px solid rgba(0, 200, 255, 0.32);
  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.22),
    0 0 40px rgba(0, 168, 255, 0.24);
  background:
    linear-gradient(125deg, #00e5ff 0%, #00a8ff 48%, #0066ff 100%),
    linear-gradient(160deg, #101218 0%, #050608 100%);
  background-clip: text, padding-box;
  -webkit-background-clip: text, padding-box;
  -webkit-text-fill-color: transparent;
  color: transparent;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.contact-info__email a:hover {
  transform: translateY(-2px);
  border-color: rgba(0, 229, 255, 0.55);
  box-shadow:
    0 14px 36px rgba(0, 0, 0, 0.28),
    0 0 56px rgba(0, 212, 255, 0.42);
  text-decoration: none;
}

.contact-stats {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.contact-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.contact-stat span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.contact-form {
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-card);
  background: var(--bg-card);
  box-shadow: var(--shadow-card);
}

.form-row {
  margin-bottom: 1.25rem;
}

.form-row label {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-muted-on-card);
  margin-bottom: 0.4rem;
  letter-spacing: 0.03em;
}

.form-row input,
.form-row textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  background: var(--bg-card-input);
  border: 1px solid var(--border-card);
  border-radius: 10px;
  color: var(--text-on-card);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-row input::placeholder,
.form-row textarea::placeholder {
  color: rgba(184, 212, 239, 0.7);
}

.form-row input:focus,
.form-row textarea:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.7);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.2);
}

.form-row textarea { min-height: 130px; resize: vertical }

.form-message {
  margin-top: 1rem;
  padding: 0.85rem;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: var(--text-on-card);
  font-size: 0.9rem;
  display: none;
}

.form-message.is-visible { display: block }

.footer {
  border-top: 2px solid var(--cyan);
  padding: 3rem 0 2rem;
  margin-top: 2rem;
  background: #000000;
  color: var(--text-on-card);
  box-shadow: 0 -24px 64px rgba(0, 212, 255, 0.12);
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.footer__brand object {
  width: 120px;
  height: auto;
  filter: brightness(0) invert(1);
  opacity: 0.92;
  flex-shrink: 0;
}

.footer__legal {
  margin: 0;
  font-size: 0.8rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.5);
}

.footer__legal p {
  margin: 0;
}

.footer__links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer__links a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
}

.footer__links a:hover {
  color: var(--cyan);
}

.footer__copy {
  width: 100%;
  text-align: center;
  padding-top: 2rem;
  margin: 0;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.45);
}

.page-hero {
  padding: calc(var(--nav-h) + 4rem) 0 3rem;
  position: relative;
  overflow: hidden;
}

.page-hero__bg {
  display: none;
}

.page-hero .container { position: relative; z-index: 1 }

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 2rem;
  transition: color 0.2s;
}

.back-link:hover { color: var(--cyan); text-decoration: none }

.page-hero__content {
  padding: 2rem 2.25rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(160deg, #101218 0%, #08090d 52%, #000000 100%);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

.page-hero h1 {
  font-family: var(--font-body);
  font-size: clamp(1.85rem, 4.5vw, 2.75rem);
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: -0.01em;
  margin: 0 0 1rem;
  color: #ffffff;
}

.page-hero__grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 3rem;
  align-items: center;
}

.page-hero__shot {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35), 0 0 36px rgba(0, 212, 255, 0.1);
}

.page-hero__shot img {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: top center;
}

.page-hero h1 .title-accent {
  display: block;
  margin-top: 0.35rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.72);
}

.page-hero__lead {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.15rem;
  margin: 0;
}

.meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.meta-item__k {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--cyan);
  margin-bottom: 0.25rem;
}

.meta-item span {
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
}

.meta-item a {
  color: var(--cyan);
}

.article { padding: 4rem 0 }

.article__block {
  margin-bottom: 3rem;
  max-width: 720px;
  padding: 2rem 2.25rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(160deg, #101218 0%, #08090d 52%, #000000 100%);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

.article__block--wide {
  max-width: none;
}

.compare-section {
  overflow-x: clip;
}

.compare-section p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.78);
}

.compare-section__intro {
  margin-bottom: 0.5rem;
}

.device-switch-bar {
  position: sticky;
  top: calc(var(--nav-h) + 0.75rem);
  z-index: 25;
  display: flex;
  align-items: center;
  padding: 0.5rem 0 1rem;
  margin-bottom: 0.25rem;
}

.device-switch {
  display: inline-flex;
  gap: 0.25rem;
  margin-top: 0;
  padding: 0.25rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: var(--black);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.28);
}

.device-switch__btn {
  appearance: none;
  border: none;
  background: transparent;
  color: rgba(255, 255, 255, 0.55);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.55rem 1.25rem;
  border-radius: 999px;
  cursor: pointer;
  transition: color 0.2s, background 0.2s, box-shadow 0.2s;
}

.device-switch__btn:hover {
  color: #ffffff;
}

.device-switch__btn.is-active {
  color: var(--cyan);
  background: rgba(0, 229, 255, 0.1);
  box-shadow: inset 0 0 0 1px rgba(0, 229, 255, 0.35);
}

.compare-section.is-mobile .compare-slider {
  max-width: min(340px, 100%);
  margin-inline: auto;
}

.compare-section.is-mobile .compare-slider__viewport {
  aspect-ratio: 9 / 19.5;
}

.compare-grid {
  display: grid;
  gap: 3.5rem;
  margin-top: 2rem;
  min-width: 0;
}

.compare-card {
  min-width: 0;
}

.compare-card__title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 1.25rem;
}

.compare-card__caption {
  margin: 1rem 0 0;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.72);
  max-width: 640px;
}

.compare-card__caption + .compare-card__caption {
  margin-top: 0.5rem;
}

.compare-slider {
  --pos: 50%;
  position: relative;
  width: 100%;
  max-width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #050608;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45), 0 0 28px rgba(0, 212, 255, 0.08);
}

.compare-slider::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(0, 212, 255, 0.08);
  z-index: 5;
}

.compare-slider__viewport {
  position: relative;
  width: 100%;
  max-width: 100%;
  aspect-ratio: 16 / 9;
  touch-action: none;
  cursor: ew-resize;
}

.compare-slider__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: top center;
  pointer-events: none;
  user-select: none;
}

.compare-slider__img--after {
  z-index: 1;
}

.compare-slider__img--before {
  z-index: 2;
  clip-path: inset(0 calc(100% - var(--pos)) 0 0);
}

.compare-slider__divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--pos);
  width: 3px;
  transform: translateX(-50%);
  background: linear-gradient(to bottom, var(--cyan), var(--blue));
  z-index: 4;
  box-shadow: 0 0 24px rgba(0, 212, 255, 0.65);
  pointer-events: none;
}

.compare-slider__handle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--black);
  border: 2px solid var(--cyan);
  color: var(--cyan);
  box-shadow: 0 0 32px rgba(0, 212, 255, 0.35);
}

.compare-slider__handle::before {
  content: '‹ ›';
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  line-height: 1;
}

.compare-slider__label {
  position: absolute;
  top: 1rem;
  z-index: 3;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  background: rgba(5, 6, 8, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(10px);
  pointer-events: none;
}

.compare-slider__label--before {
  left: 1rem;
  color: rgba(255, 255, 255, 0.65);
}

.compare-slider__label--after {
  right: 1rem;
  color: var(--cyan);
  border-color: rgba(0, 229, 255, 0.35);
}

.compare-slider__range {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  z-index: 6;
  touch-action: none;
  pointer-events: none;
  -webkit-appearance: none;
  appearance: none;
  background: transparent;
}

.compare-slider__range::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 48px;
  height: 48px;
}

.compare-slider__range::-moz-range-thumb {
  width: 48px;
  height: 48px;
  border: none;
  background: transparent;
}

.compare-slider.is-dragging .compare-slider__viewport {
  cursor: ew-resize;
}

.compare-slider.is-dragging .compare-slider__handle {
  transform: translate(-50%, -50%) scale(1.08);
  box-shadow: 0 0 48px rgba(0, 212, 255, 0.55);
}

.article__block h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 0 1rem;
  color: #ffffff;
}

.article__block p,
.article__block li {
  color: rgba(255, 255, 255, 0.78);
}

.article__block a {
  color: var(--cyan);
}

.article__block a:hover {
  color: #7df4ff;
}

.article__block ul {
  padding-left: 1.25rem;
}

.article__block li { margin-bottom: 0.5rem }

.article__h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin: 1.75rem 0 0.75rem;
  color: rgba(255, 255, 255, 0.92);
}

.timeline {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
  position: relative;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--cyan), var(--blue), transparent);
}

.timeline li {
  padding-left: 2rem;
  margin-bottom: 1.75rem;
  position: relative;
  color: rgba(255, 255, 255, 0.78);
}

.timeline li::before {
  content: '';
  position: absolute;
  left: -5px;
  top: 0.4rem;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--black);
  border: 2px solid var(--cyan);
  box-shadow: 0 0 10px rgba(0, 212, 255, 0.4);
}

.timeline strong {
  display: block;
  color: #ffffff;
  margin-bottom: 0.25rem;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.15rem;
  max-width: 720px;
}

.metric {
  padding: 1.5rem 1.25rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(160deg, #101218 0%, #08090d 52%, #000000 100%);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
  text-align: center;
}

.metric--featured {
  border-color: rgba(0, 229, 255, 0.42);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.45), 0 0 36px rgba(0, 212, 255, 0.14);
}

.metric__value {
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.08em;
  line-height: 1;
}

.metric__number {
  font-family: var(--font-display);
  font-size: 2.35rem;
  font-weight: 700;
  letter-spacing: -0.04em;
  font-variant-numeric: tabular-nums;
  color: #f4f9ff;
}

.metric__unit {
  font-family: var(--font-body);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--cyan);
  transform: translateY(-0.08em);
}

.metric__value--text .metric__number {
  font-size: 1.75rem;
  letter-spacing: -0.02em;
}

.metric--featured .metric__number {
  font-size: 2.65rem;
}

.metric__label {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 0.55rem;
  display: block;
  line-height: 1.45;
}

@media (max-width: 900px) {
  .hero__layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .hero__content {
    max-width: none;
    text-align: center;
  }

  .hero__content::before {
    display: none;
  }

  .hero__title-line--accent {
    display: inline-block;
    padding: 0.22em 0.7em 0.28em;
    margin-top: 0.3em;
    border-radius: 999px;
    border: 2px solid transparent;
    transform: rotate(-1deg);
    box-shadow:
      0 0 28px rgba(0, 212, 255, 0.32),
      0 8px 24px rgba(0, 0, 0, 0.35),
      inset 0 1px 0 rgba(255, 255, 255, 0.1);
    background:
      linear-gradient(125deg, #0066ff 0%, #00e5ff 45%, #00a8ff 100%),
      linear-gradient(155deg, #12141c 0%, #08090d 48%, #000000 100%),
      linear-gradient(135deg, #00e5ff 0%, #0066ff 50%, #00a8ff 100%);
    background-clip: text, padding-box, border-box;
    -webkit-background-clip: text, padding-box, border-box;
    -webkit-text-fill-color: transparent;
    animation: accentPillGlow 3.2s ease-in-out infinite;
  }

  @keyframes accentPillGlow {
    0%, 100% {
      box-shadow:
        0 0 22px rgba(0, 212, 255, 0.28),
        0 8px 24px rgba(0, 0, 0, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    }
    50% {
      box-shadow:
        0 0 36px rgba(0, 212, 255, 0.48),
        0 8px 28px rgba(0, 0, 0, 0.38),
        inset 0 1px 0 rgba(255, 255, 255, 0.14);
    }
  }

  .hero__subtitle {
    margin-inline: auto;
  }

  .hero__actions {
    justify-content: center;
  }

  .btn--hero {
    font-size: 0.88rem;
    padding: 0.85rem 1.35rem;
  }

  .hero__visual {
    min-height: 340px;
  }

  .hero-flow {
    max-width: 440px;
    margin-inline: auto;
  }

  .services {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .services__intro {
    position: static;
    text-align: center;
  }

  .services__lead,
  .services__footnote {
    margin-inline: auto;
  }

  .services__footnote {
    padding-left: 0;
    text-align: center;
  }

  .section__label,
  .section__title,
  .section__desc {
    text-align: center;
  }

  .section__desc {
    margin-inline: auto;
  }

  #kontakt .contact-grid > div:first-child {
    text-align: center;
  }

  .contact-info__email {
    display: flex;
    justify-content: center;
  }

  .portfolio { grid-template-columns: 1fr }
  .contact-grid { grid-template-columns: 1fr; gap: 2rem }
  .contact-grid--email-only {
    max-width: 28rem;
    margin-inline: auto;
    justify-items: center;
  }

  .contact-visual {
    display: flex;
    width: 100%;
    max-width: 260px;
    margin-inline: auto;
  }

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

  .page-hero__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .page-hero__content {
    text-align: center;
  }

  .page-hero h1 .title-accent {
    margin-inline: auto;
  }

  .meta-row {
    justify-content: center;
  }

  .back-link {
    display: block;
    width: fit-content;
    margin-inline: auto;
  }

  .compare-slider__viewport {
    min-height: 0;
    height: auto;
  }

  .compare-slider__handle {
    width: 56px;
    height: 56px;
  }

  .compare-slider__label {
    top: 0.75rem;
    font-size: 0.65rem;
    padding: 0.35rem 0.65rem;
  }

  .compare-slider__label--before { left: 0.75rem }
  .compare-slider__label--after { right: 0.75rem }

  .device-switch-bar {
    top: calc(var(--nav-h) + 0.5rem);
    padding: 0.35rem 0 0.75rem;
  }

  .device-switch__btn {
    padding: 0.5rem 1rem;
    font-size: 0.72rem;
  }
}

@media (max-width: 768px) {
  .article__block {
    padding: 1.35rem 1rem;
  }

  .compare-grid {
    gap: 2.5rem;
  }
  .nav__logo-img {
    width: min(118px, 34vw);
  }

  .nav__cta {
    padding: 0.5rem 0.9rem;
    font-size: 0.78rem;
  }

  .contact-stats { flex-direction: column; gap: 1rem }
  .footer__inner { flex-direction: column; text-align: center }
  .footer__brand { flex-direction: column; gap: 1rem }
  .footer__links { flex-wrap: wrap; justify-content: center }

  .services__item {
    padding: 1.15rem 1.15rem 1.25rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }

  .services__panel {
    transition: none;
  }

  .services__item:hover,
  .services__item.is-open {
    transform: none;
  }

  .page-bg__orb {
    animation: none;
  }

  .hero-flow__stage {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    min-height: auto;
  }

  .hero-flow__scene--before,
  .hero-flow__scene--after {
    position: relative;
    inset: auto;
    opacity: 1;
    visibility: visible;
    animation: none;
  }

  .hero-flow__dashboard,
  .hero-flow__dash-list li,
  .hero-flow__face--happy {
    opacity: 1;
    transform: none;
    animation: none;
  }

  .hero-flow__chip {
    animation: none;
  }
}
