:root {
  --bg: #f5f5f7;
  --bg-strong: #eef2f7;
  --surface: rgba(255, 255, 255, 0.84);
  --surface-strong: rgba(255, 255, 255, 0.94);
  --text: #1d1d1f;
  --text-dim: #6e6e73;
  --primary: #029496;
  --primary-soft: rgba(2, 148, 150, 0.12);
  --border: rgba(29, 29, 31, 0.1);
  --border-strong: rgba(2, 148, 150, 0.2);
  --shadow: 0 18px 40px rgba(29, 29, 31, 0.08);
  --radius: 22px;
  --container: min(1180px, 92vw);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Sora", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 0%, rgba(2, 148, 150, 0.14), transparent 32%),
    radial-gradient(circle at 88% 8%, rgba(209, 209, 214, 0.65), transparent 28%),
    linear-gradient(180deg, #fbfbfd 0%, #f4f5f8 56%, #eef1f6 100%);
  min-height: 100vh;
  line-height: 1.6;
  overflow-x: hidden;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: -20%;
  pointer-events: none;
  z-index: 0;
}

body::before {
  background:
    radial-gradient(circle at 24% 26%, rgba(2, 148, 150, 0.08), transparent 24%),
    radial-gradient(circle at 72% 18%, rgba(209, 209, 214, 0.54), transparent 22%),
    radial-gradient(circle at 60% 76%, rgba(230, 233, 239, 0.8), transparent 28%);
  filter: blur(4px);
}

body::after {
  background-image:
    radial-gradient(circle, rgba(29, 29, 31, 0.08) 1px, transparent 1px),
    radial-gradient(circle, rgba(2, 148, 150, 0.08) 1px, transparent 1px);
  background-size: 180px 180px, 260px 260px;
  background-position: 0 0, 80px 50px;
  opacity: 0.14;
}

.grid-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(110, 110, 115, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(110, 110, 115, 0.05) 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: 0.18;
  mask-image: radial-gradient(circle at 50% 18%, #000 28%, transparent 76%);
  z-index: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

h1, h2, h3, h4 {
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

h1 {
  font-size: clamp(2.4rem, 5vw, 4.5rem);
}

h2 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  margin-bottom: 12px;
}

h3 {
  font-size: 1.2rem;
}

p {
  color: var(--text-dim);
  font-size: 0.98rem;
}

ul {
  padding-left: 1.1rem;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

section {
  position: relative;
  z-index: 1;
  padding: 84px 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 36px;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.kicker::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--primary);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  font-weight: 600;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, #029496, #029496);
  box-shadow: 0 14px 28px rgba(2, 148, 150, 0.2);
}

.btn-outline {
  border-color: var(--border);
  background: rgba(255, 255, 255, 0.82);
  color: var(--text);
}

.btn-outline:hover {
  border-color: var(--border-strong);
  box-shadow: 0 10px 20px rgba(29, 29, 31, 0.08);
}

header {
  position: sticky;
  top: 0;
  z-index: 30;
  padding: 14px 0;
  background: linear-gradient(to bottom, rgba(245, 245, 247, 0.9), rgba(245, 245, 247, 0.7));
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(29, 29, 31, 0.08);
}

.nav-wrap {
  width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 12px 28px rgba(29, 29, 31, 0.08);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
}

.logo-image {
  max-height: 40px;
  width: auto;
  object-fit: contain;
}

.logo-text {
  display: inline-flex;
  align-items: center;
}

.logo-mark {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #029496;
  box-shadow: 0 0 0 6px rgba(2, 148, 150, 0.12);
}

nav ul {
  display: flex;
  align-items: center;
  gap: 20px;
  list-style: none;
  padding-left: 0;
}


.nav-link {
  color: var(--text);
  font-size: 0.94rem;
  transition: color 0.2s ease;
}

.nav-item {
  position: relative;
  list-style: none;
}

.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  border: 0;
  background: transparent;
  font: inherit;
  cursor: pointer;
}

.nav-caret {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  transition: transform 0.2s ease;
}

.nav-dropdown.open .nav-caret {
  transform: rotate(180deg);
}

.nav-submenu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  display: none;
  min-width: 240px;
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 16px 34px rgba(29, 29, 31, 0.14);
  backdrop-filter: blur(14px);
  list-style: none;
  transform: translateX(-50%);
  z-index: 40;
}

.nav-dropdown.open .nav-submenu,
.nav-dropdown:focus-within .nav-submenu {
  display: grid;
  gap: 8px;
}

.nav-sublink {
  display: block;
  padding: 10px 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.78);
}

.nav-sublink:hover,
.nav-sublink.active {
  background: var(--primary-soft);
}

.nav-link:hover,
.nav-link.active,
.nav-dropdown-toggle.active {
  color: var(--primary);
}

.menu-toggle {
  display: none;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.84);
  border-radius: 10px;
  padding: 9px 12px;
  color: var(--text);
  cursor: pointer;
  font-family: inherit;
  font-size: 0.82rem;
  text-transform: uppercase;
}

.page-hero {
  padding-top: 80px;
  padding-bottom: 44px;
}

.page-hero::before {
  content: "";
  position: absolute;
  top: 36px;
  left: 50%;
  width: min(1120px, 94vw);
  height: 500px;
  background:
    radial-gradient(circle at 18% 22%, rgba(2, 148, 150, 0.24), transparent 28%),
    radial-gradient(circle at 82% 18%, rgba(209, 209, 214, 0.32), transparent 30%),
    radial-gradient(circle at 50% 100%, rgba(2, 148, 150, 0.14), transparent 36%);
  transform: translateX(-50%);
  filter: blur(26px);
  opacity: 0.95;
  z-index: 0;
}

.page-hero .hero-shell {
  position: relative;
  z-index: 1;
  --hero-tilt-x: 0deg;
  --hero-tilt-y: 0deg;
  --hero-glow-x: 82%;
  --hero-glow-y: 22%;
  --hero-accent: rgba(95, 232, 231, 0.94);
  min-height: 430px;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(260px, 0.82fr);
  gap: 34px;
  align-items: center;
  padding: 58px;
  border-radius: 34px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    radial-gradient(circle at 12% 18%, rgba(2, 148, 150, 0.24), transparent 30%),
    radial-gradient(circle at 82% 14%, rgba(255, 255, 255, 0.08), transparent 24%),
    linear-gradient(160deg, #1d1d1f 0%, #2a2c31 46%, #1f2126 100%);
  box-shadow: 0 28px 54px rgba(18, 20, 24, 0.24);
  overflow: hidden;
  transform: perspective(1600px) rotateX(var(--hero-tilt-y)) rotateY(var(--hero-tilt-x));
  transform-style: preserve-3d;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  will-change: transform;
  animation: heroShellFloat 12s ease-in-out infinite;
}

.page-hero .hero-shell::before,
.page-hero .hero-shell::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.page-hero .hero-shell::before {
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: linear-gradient(135deg, rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0.2));
  opacity: 0.24;
  animation: heroGridShift 18s linear infinite;
}

.page-hero .hero-shell::after {
  width: 420px;
  height: 420px;
  right: -120px;
  bottom: -170px;
  border-radius: 50%;
  background:
    radial-gradient(circle at var(--hero-glow-x) var(--hero-glow-y), rgba(95, 232, 231, 0.38) 0%, rgba(2, 148, 150, 0.16) 32%, rgba(2, 148, 150, 0) 72%);
  filter: blur(8px);
  animation: heroGlowPulse 9s ease-in-out infinite;
}

.page-hero .hero-copy {
  display: grid;
  align-content: center;
  gap: 16px;
  max-width: 620px;
}

.page-hero .hero-copy,
.page-hero .hero-copy h1,
.page-hero .hero-copy p {
  color: #f8fafc;
}

.page-hero .hero-copy h1 {
  max-width: 12ch;
}

.page-hero .hero-copy p {
  max-width: 560px;
  color: rgba(248, 250, 252, 0.84);
  font-size: 1.03rem;
  line-height: 1.75;
  text-wrap: pretty;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.hero-panel {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  justify-self: end;
  width: min(100%, 332px);
  min-height: 318px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.96), rgba(236, 242, 250, 0.86));
  backdrop-filter: blur(12px);
  padding: 28px;
  color: var(--text);
  box-shadow: 0 26px 44px rgba(7, 11, 20, 0.2);
  transform: translateZ(22px);
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 120px;
  background: linear-gradient(180deg, rgba(2, 148, 150, 0.16), rgba(2, 148, 150, 0));
  pointer-events: none;
}

.hero-panel h3 {
  margin-bottom: 12px;
  color: #101113;
}

.hero-panel p,
.hero-panel li {
  color: #545861;
}

.hero-panel ul {
  display: grid;
  gap: 12px;
  list-style: none;
  padding: 0;
}

.hero-panel li {
  position: relative;
  padding: 13px 14px;
  padding-left: 38px;
  border-radius: 16px;
  border: 1px solid rgba(29, 29, 31, 0.08);
  background: rgba(255, 255, 255, 0.78);
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease, background 0.28s ease;
}

.hero-panel li::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 50%;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(2, 148, 150, 0.34);
  box-shadow: 0 0 0 8px rgba(2, 148, 150, 0.08);
  transform: translateY(-50%);
}

.hero-panel li.is-live {
  border-color: rgba(2, 148, 150, 0.32);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 16px 26px rgba(2, 148, 150, 0.14);
  transform: translateX(6px);
}

.hero-panel li.is-live::before {
  background: rgba(2, 148, 150, 0.94);
}

.page-hero .hero-copy,
.page-hero .hero-panel {
  position: relative;
  z-index: 2;
}

.hero-motion {
  position: absolute;
  top: 20px;
  right: 18px;
  bottom: 20px;
  width: min(38vw, 446px);
  pointer-events: none;
  z-index: 1;
  filter: drop-shadow(0 22px 38px rgba(0, 0, 0, 0.22));
}

.hero-motion span,
.hero-motion::before,
.hero-motion::after {
  position: absolute;
  display: block;
  content: "";
}

.hero-motion-website .hero-browser-grid,
.hero-motion-website .hero-browser-banner,
.hero-motion-website .hero-card,
.hero-motion-website .hero-device,
.hero-motion-website .hero-badge,
.hero-motion-ai .hero-core,
.hero-motion-ai .hero-node,
.hero-motion-ai .hero-link,
.hero-motion-ai .hero-pill,
.hero-motion-ai .hero-flow-card,
.hero-motion-support .hero-shield,
.hero-motion-support .hero-ring,
.hero-motion-support .hero-dot,
.hero-motion-support .hero-bar,
.hero-motion-support .hero-console,
.hero-motion-support .hero-ticket {
  transition:
    transform 0.8s cubic-bezier(.22, 1, .36, 1),
    opacity 0.8s cubic-bezier(.22, 1, .36, 1),
    filter 0.8s cubic-bezier(.22, 1, .36, 1),
    box-shadow 0.8s cubic-bezier(.22, 1, .36, 1),
    border-color 0.8s cubic-bezier(.22, 1, .36, 1),
    background 0.8s cubic-bezier(.22, 1, .36, 1);
}

.hero-motion-website .hero-browser {
  inset: 54px 42px 78px 42px;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1) 0 54px, transparent 54px),
    linear-gradient(135deg, rgba(7, 18, 25, 0.9), rgba(9, 40, 46, 0.78));
  animation: heroFloatLarge 7.2s ease-in-out infinite;
  overflow: hidden;
}

.hero-motion-website .hero-browser::before {
  position: absolute;
  inset: 18px auto auto 18px;
  width: 58px;
  height: 12px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 6px 6px, rgba(255, 255, 255, 0.82) 0 4px, transparent 4.5px),
    radial-gradient(circle at 28px 6px, rgba(255, 255, 255, 0.34) 0 4px, transparent 4.5px),
    radial-gradient(circle at 50px 6px, rgba(255, 255, 255, 0.22) 0 4px, transparent 4.5px);
  content: "";
}

.hero-motion-website .hero-browser-grid {
  inset: 130px 52px 82px 78px;
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(2, 148, 150, 0.2), rgba(2, 148, 150, 0) 24%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0 32%, transparent 32% 38%, rgba(255, 255, 255, 0.06) 38% 100%),
    repeating-linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0 10px, transparent 10px 28px);
  opacity: 0.88;
}

.hero-motion-website .hero-browser-banner {
  top: 84px;
  left: 62px;
  width: 214px;
  height: 54px;
  border-radius: 18px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.92) 0 28%, transparent 28%),
    linear-gradient(135deg, rgba(2, 148, 150, 0.16), rgba(2, 148, 150, 0.34));
  box-shadow: 0 14px 24px rgba(2, 148, 150, 0.12);
  animation: heroCardPulse 4.6s ease-in-out infinite;
}

.hero-motion-website .hero-card {
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.16) 0 18px, transparent 18px),
    linear-gradient(135deg, rgba(4, 39, 42, 0.84), rgba(10, 82, 84, 0.7));
  backdrop-filter: blur(10px);
}

.hero-motion-website .hero-card-a {
  top: 28px;
  right: 0;
  width: 144px;
  height: 96px;
  animation: heroFloatCard 6s ease-in-out infinite;
}

.hero-motion-website .hero-card-b {
  left: 12px;
  bottom: 28px;
  width: 126px;
  height: 84px;
  animation: heroFloatCard 7.2s ease-in-out infinite reverse;
}

.hero-motion-website .hero-device {
  position: absolute;
  right: 26px;
  bottom: 30px;
  width: 122px;
  padding: 12px 10px 14px;
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(10, 20, 26, 0.96), rgba(22, 34, 42, 0.94));
  box-shadow: 0 20px 34px rgba(0, 0, 0, 0.28);
  animation: heroFloatCard 7.8s ease-in-out infinite;
}

.hero-motion-website .hero-device-notch {
  display: block;
  width: 42px;
  height: 6px;
  margin: 0 auto 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
}

.hero-motion-website .hero-device-screen {
  display: grid;
  gap: 10px;
  min-height: 180px;
  padding: 16px 12px;
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(2, 148, 150, 0.22), rgba(2, 148, 150, 0.04) 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(241, 245, 247, 0.96));
}

.hero-motion-website .hero-device-block {
  display: block;
  border-radius: 16px;
  background: rgba(2, 148, 150, 0.16);
}

.hero-motion-website .hero-device-block-hero {
  min-height: 64px;
}

.hero-motion-website .hero-device-line {
  display: block;
  height: 10px;
  border-radius: 999px;
  background: rgba(16, 20, 24, 0.08);
}

.hero-motion-website .hero-device-line-short {
  width: 70%;
}

.hero-motion-website .hero-badge {
  position: absolute;
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(10, 22, 26, 0.82);
  color: #f4fbfb;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  backdrop-filter: blur(10px);
  box-shadow: 0 14px 24px rgba(0, 0, 0, 0.22);
}

.hero-motion-website .hero-badge-speed {
  left: 20px;
  top: 140px;
  animation: heroBadgeShift 5.8s ease-in-out infinite;
}

.hero-motion-website .hero-badge-responsive {
  right: 110px;
  bottom: 22px;
  animation: heroBadgeShift 6.8s ease-in-out infinite reverse;
}

.hero-motion-website .hero-scan {
  top: 136px;
  left: 96px;
  width: 180px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(118, 255, 244, 0.95), transparent);
  box-shadow: 0 0 18px rgba(118, 255, 244, 0.58);
  animation: heroSweep 4.4s ease-in-out infinite;
}

.hero-motion-website.is-stage-build .hero-browser-grid {
  transform: translate3d(-4px, 0, 0) scaleY(0.94);
  opacity: 0.68;
}

.hero-motion-website.is-stage-build .hero-scan {
  opacity: 1;
}

.hero-motion-website.is-stage-build .hero-card-a {
  opacity: 0.86;
  filter: saturate(0.88);
}

.hero-motion-website.is-stage-build .hero-card-b {
  opacity: 0.72;
}

.hero-motion-website.is-stage-preview .hero-browser-banner {
  box-shadow: 0 18px 34px rgba(2, 148, 150, 0.22);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.96) 0 32%, transparent 32%),
    linear-gradient(135deg, rgba(2, 148, 150, 0.18), rgba(126, 247, 229, 0.42));
}

.hero-motion-website.is-stage-preview .hero-device {
  box-shadow: 0 28px 38px rgba(0, 0, 0, 0.34);
  filter: saturate(1.08);
}

.hero-motion-website.is-stage-preview .hero-badge-responsive {
  background: rgba(10, 24, 28, 0.92);
  border-color: rgba(126, 247, 229, 0.24);
}

.hero-motion-website.is-stage-launch .hero-browser {
  box-shadow: 0 0 0 1px rgba(126, 247, 229, 0.18), 0 26px 42px rgba(0, 0, 0, 0.24);
}

.hero-motion-website.is-stage-launch .hero-browser-grid {
  transform: translate3d(10px, 0, 0);
  opacity: 1;
}

.hero-motion-website.is-stage-launch .hero-badge-speed {
  box-shadow: 0 18px 28px rgba(9, 23, 26, 0.3);
  border-color: rgba(126, 247, 229, 0.24);
}

.hero-motion-website.is-stage-launch .hero-card-a {
  opacity: 1;
  filter: saturate(1.16);
}

.hero-motion-ai .hero-core {
  top: 48%;
  left: 54%;
  width: 128px;
  height: 128px;
  border-radius: 30px;
  border: 1px solid rgba(126, 247, 229, 0.26);
  background:
    radial-gradient(circle at 50% 50%, rgba(126, 247, 229, 0.28), transparent 54%),
    linear-gradient(135deg, rgba(5, 38, 40, 0.92), rgba(6, 74, 76, 0.72));
  transform: translate(-50%, -50%) rotate(45deg);
  box-shadow: 0 0 34px rgba(35, 187, 174, 0.22);
  animation: heroPulseCore 5.2s ease-in-out infinite;
}

.hero-motion-ai .hero-flow-grid {
  inset: 52px 24px 34px 38px;
  border-radius: 28px;
  background-image:
    radial-gradient(circle, rgba(126, 247, 229, 0.16) 1px, transparent 1px),
    linear-gradient(rgba(126, 247, 229, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(126, 247, 229, 0.06) 1px, transparent 1px);
  background-size: 26px 26px, 52px 52px, 52px 52px;
  opacity: 0.46;
}

.hero-motion-ai .hero-core::before,
.hero-motion-ai .hero-core::after {
  position: absolute;
  inset: 22px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  content: "";
}

.hero-motion-ai .hero-node {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #a8fff6;
  box-shadow: 0 0 0 10px rgba(168, 255, 246, 0.08), 0 0 22px rgba(168, 255, 246, 0.56);
  animation: heroPulseDot 3.6s ease-in-out infinite;
}

.hero-motion-ai .hero-node-a {
  top: 24%;
  left: 18%;
}

.hero-motion-ai .hero-node-b {
  top: 26%;
  right: 14%;
  animation-delay: 0.8s;
}

.hero-motion-ai .hero-node-c {
  bottom: 18%;
  left: 22%;
  animation-delay: 1.5s;
}

.hero-motion-ai .hero-link {
  height: 2px;
  transform-origin: left center;
  background: linear-gradient(90deg, rgba(126, 247, 229, 0), rgba(126, 247, 229, 0.88), rgba(126, 247, 229, 0));
  opacity: 0.72;
  animation: heroFlow 3.6s linear infinite;
}

.hero-motion-ai .hero-link-a {
  top: 33%;
  left: 20%;
  width: 154px;
  transform: rotate(17deg);
}

.hero-motion-ai .hero-link-b {
  top: 38%;
  left: 52%;
  width: 124px;
  transform: rotate(-28deg);
  animation-delay: 0.9s;
}

.hero-motion-ai .hero-link-c {
  bottom: 28%;
  left: 28%;
  width: 138px;
  transform: rotate(-14deg);
  animation-delay: 1.6s;
}

.hero-motion-ai .hero-pill {
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.16) 0 26%, transparent 26% 32%, rgba(255, 255, 255, 0.08) 32% 100%),
    linear-gradient(135deg, rgba(4, 29, 30, 0.92), rgba(5, 56, 57, 0.74));
  backdrop-filter: blur(12px);
}

.hero-motion-ai .hero-pill-a {
  top: 14%;
  right: 2%;
  width: 132px;
  height: 42px;
  animation: heroFloatCard 5.8s ease-in-out infinite;
}

.hero-motion-ai .hero-pill-b {
  bottom: 12%;
  right: 10%;
  width: 116px;
  height: 40px;
  animation: heroFloatCard 7.2s ease-in-out infinite reverse;
}

.hero-motion-ai .hero-flow-card {
  position: absolute;
  display: grid;
  gap: 4px;
  min-width: 138px;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(8, 24, 26, 0.78);
  color: #eef8f8;
  backdrop-filter: blur(12px);
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.2);
}

.hero-motion-ai .hero-flow-card strong {
  font-size: 0.8rem;
  font-weight: 700;
}

.hero-motion-ai .hero-flow-card span {
  position: static;
  display: block;
  color: rgba(238, 248, 248, 0.74);
  font-size: 0.72rem;
  line-height: 1.45;
}

.hero-motion-ai .hero-flow-card-a {
  left: 8px;
  top: 104px;
  animation: heroFloatCard 6.2s ease-in-out infinite;
}

.hero-motion-ai .hero-flow-card-b {
  right: 4px;
  bottom: 44px;
  animation: heroFloatCard 7.4s ease-in-out infinite reverse;
}

.hero-motion-ai.is-flow-intake .hero-core {
  box-shadow: 0 0 24px rgba(35, 187, 174, 0.18);
}

.hero-motion-ai.is-flow-intake .hero-link-a,
.hero-motion-ai.is-flow-intake .hero-node-a,
.hero-motion-ai.is-flow-intake .hero-pill-a,
.hero-motion-ai.is-flow-intake .hero-flow-card-a {
  opacity: 1;
  filter: brightness(1.18);
}

.hero-motion-ai.is-flow-intake .hero-link-b,
.hero-motion-ai.is-flow-intake .hero-link-c,
.hero-motion-ai.is-flow-intake .hero-flow-card-b {
  opacity: 0.34;
}

.hero-motion-ai.is-flow-routing .hero-core {
  box-shadow: 0 0 42px rgba(35, 187, 174, 0.28);
  border-color: rgba(126, 247, 229, 0.38);
}

.hero-motion-ai.is-flow-routing .hero-link-b,
.hero-motion-ai.is-flow-routing .hero-link-c,
.hero-motion-ai.is-flow-routing .hero-node-b,
.hero-motion-ai.is-flow-routing .hero-node-c,
.hero-motion-ai.is-flow-routing .hero-pill-b {
  opacity: 1;
  filter: brightness(1.16);
}

.hero-motion-ai.is-flow-routing .hero-flow-card-a {
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.24);
}

.hero-motion-ai.is-flow-routing .hero-flow-card-b {
  opacity: 1;
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.24);
}

.hero-motion-ai.is-flow-complete .hero-core {
  background:
    radial-gradient(circle at 50% 50%, rgba(126, 247, 229, 0.34), transparent 56%),
    linear-gradient(135deg, rgba(5, 44, 46, 0.96), rgba(7, 92, 94, 0.84));
  box-shadow: 0 0 54px rgba(35, 187, 174, 0.34);
}

.hero-motion-ai.is-flow-complete .hero-link,
.hero-motion-ai.is-flow-complete .hero-node,
.hero-motion-ai.is-flow-complete .hero-pill,
.hero-motion-ai.is-flow-complete .hero-flow-card {
  opacity: 1;
  filter: brightness(1.12);
}

.hero-motion-ai.is-flow-complete .hero-flow-card-a {
  box-shadow: 0 20px 34px rgba(5, 32, 34, 0.28);
}

.hero-motion-ai.is-flow-complete .hero-flow-card-b {
  box-shadow: 0 20px 34px rgba(5, 32, 34, 0.28);
}

.hero-motion-support .hero-shield {
  top: 48%;
  left: 42%;
  width: 166px;
  height: 186px;
  transform: translate(-50%, -50%);
  clip-path: polygon(50% 0%, 86% 14%, 86% 56%, 50% 100%, 14% 56%, 14% 14%);
  border: 1px solid rgba(141, 241, 232, 0.18);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), transparent 38%),
    linear-gradient(135deg, rgba(4, 22, 28, 0.96), rgba(4, 63, 69, 0.74));
  box-shadow: 0 0 40px rgba(2, 148, 150, 0.16);
  animation: heroFloatLarge 7s ease-in-out infinite;
}

.hero-motion-support .hero-shield::before {
  position: absolute;
  inset: 24px;
  clip-path: polygon(50% 0%, 84% 16%, 84% 56%, 50% 100%, 16% 56%, 16% 16%);
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: linear-gradient(180deg, rgba(126, 247, 229, 0.14), transparent 58%);
  content: "";
}

.hero-motion-support .hero-ring {
  border-radius: 50%;
  border: 1px solid rgba(126, 247, 229, 0.2);
  animation: heroOrbitRing 9.4s linear infinite;
}

.hero-motion-support .hero-ring-a {
  inset: 54px 138px 72px 24px;
}

.hero-motion-support .hero-ring-b {
  inset: 82px 168px 98px 54px;
  animation-direction: reverse;
  animation-duration: 7.4s;
}

.hero-motion-support .hero-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #9ef6ee;
  box-shadow: 0 0 0 8px rgba(158, 246, 238, 0.08), 0 0 22px rgba(158, 246, 238, 0.4);
  animation: heroOrbitDot 6.2s ease-in-out infinite;
}

.hero-motion-support .hero-dot-a {
  top: 70px;
  left: 204px;
}

.hero-motion-support .hero-dot-b {
  bottom: 82px;
  left: 184px;
  animation-direction: reverse;
}

.hero-motion-support .hero-dot-c {
  top: 58%;
  left: 14px;
  animation-duration: 7.2s;
}

.hero-motion-support .hero-bar {
  height: 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.22) 0 22%, rgba(126, 247, 229, 0.46) 22% 66%, rgba(255, 255, 255, 0.08) 66% 100%),
    linear-gradient(135deg, rgba(4, 32, 36, 0.92), rgba(5, 56, 58, 0.8));
  animation: heroSweepBar 4.2s ease-in-out infinite;
}

.hero-motion-support .hero-bar-a {
  top: 20%;
  right: 24px;
  width: 144px;
}

.hero-motion-support .hero-bar-b {
  bottom: 16%;
  right: 44px;
  width: 116px;
  animation-direction: reverse;
  animation-duration: 5.2s;
}

.hero-motion-support .hero-console {
  position: absolute;
  top: 118px;
  right: 8px;
  width: 174px;
  display: grid;
  gap: 12px;
  padding: 16px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(8, 24, 26, 0.76);
  backdrop-filter: blur(12px);
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.22);
}

.hero-motion-support .hero-console-row {
  display: grid;
  gap: 8px;
}

.hero-motion-support .hero-console-row span {
  position: static;
  display: block;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
}

.hero-motion-support .hero-console-row span:first-child {
  width: 88%;
}

.hero-motion-support .hero-console-row span:nth-child(2) {
  width: 72%;
}

.hero-motion-support .hero-console-row span:last-child {
  width: 56%;
}

.hero-motion-support .hero-console-row-live span {
  background: linear-gradient(90deg, rgba(126, 247, 229, 0.22), rgba(126, 247, 229, 0.82));
  animation: heroCardPulse 3.8s ease-in-out infinite;
}

.hero-motion-support .hero-ticket {
  position: absolute;
  right: 24px;
  bottom: 26px;
  display: grid;
  gap: 4px;
  min-width: 154px;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 28px rgba(0, 0, 0, 0.16);
  animation: heroBadgeShift 6.4s ease-in-out infinite;
}

.hero-motion-support .hero-ticket strong {
  color: #182127;
  font-size: 0.86rem;
  font-weight: 700;
}

.hero-motion-support .hero-ticket span {
  position: static;
  display: block;
  color: #60717c;
  font-size: 0.72rem;
  line-height: 1.4;
}

.hero-motion-support.is-state-monitor .hero-console,
.hero-motion-support.is-state-monitor .hero-bar-a {
  filter: brightness(1.06);
}

.hero-motion-support.is-state-monitor .hero-ticket {
  opacity: 0.8;
}

.hero-motion-support.is-state-response .hero-shield {
  box-shadow: 0 0 54px rgba(2, 148, 150, 0.26);
}

.hero-motion-support.is-state-response .hero-ring-a,
.hero-motion-support.is-state-response .hero-ring-b,
.hero-motion-support.is-state-response .hero-dot {
  opacity: 1;
  filter: brightness(1.18);
}

.hero-motion-support.is-state-response .hero-bar-a {
  filter: brightness(1.22);
}

.hero-motion-support.is-state-response .hero-ticket {
  box-shadow: 0 24px 36px rgba(0, 0, 0, 0.18);
  border-color: rgba(2, 148, 150, 0.18);
}

.hero-motion-support.is-state-stable .hero-shield {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), transparent 38%),
    linear-gradient(135deg, rgba(4, 28, 32, 0.98), rgba(5, 88, 94, 0.82));
  box-shadow: 0 0 62px rgba(2, 148, 150, 0.28);
}

.hero-motion-support.is-state-stable .hero-bar {
  filter: brightness(1.18);
}

.hero-motion-support.is-state-stable .hero-console {
  transform: translate3d(-4px, -6px, 0);
}

.hero-motion-support.is-state-stable .hero-ticket {
  background: rgba(241, 255, 252, 0.96);
  border-color: rgba(2, 148, 150, 0.24);
}

body[data-page="website-development"] .page-hero .hero-shell {
  --hero-glow-x: 76%;
  --hero-glow-y: 24%;
}

body[data-page="ai-automation"] .page-hero .hero-shell {
  --hero-glow-x: 64%;
  --hero-glow-y: 46%;
}

body[data-page="it-support"] .page-hero .hero-shell {
  --hero-glow-x: 70%;
  --hero-glow-y: 40%;
}

.cards-2,
.cards-3,
.stats-grid,
.footer-grid,
.contact-grid,
.list-grid {
  display: grid;
  gap: 18px;
}

.cards-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.cards-3,
.stats-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.footer-grid {
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
}

.contact-grid {
  grid-template-columns: 0.9fr 1.1fr;
  align-items: start;
}

.card,
.contact-panel,
.legal-panel,
.stat-card {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.card,
.contact-panel,
.legal-panel {
  padding: 26px;
}

.stat-card {
  padding: 22px;
}

.stat-card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--primary);
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.7rem;
}

.media-card {
  overflow: hidden;
}

.media-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 16px;
  margin-bottom: 18px;
}

.pricing-range {
  margin-bottom: 12px;
}

.pricing-range strong {
  display: inline-block;
  color: var(--primary);
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.35rem;
  line-height: 1.2;
}

.pricing-description {
  margin-bottom: 18px;
}

.eyebrow-list,
.check-list,
.service-points,
.legal-list {
  display: grid;
  gap: 12px;
  list-style: none;
  padding: 0;
}

.eyebrow-list li,
.check-list li,
.service-points li,
.legal-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.68);
  color: var(--text-dim);
}

.eyebrow-list li::before,
.check-list li::before,
.service-points li::before,
.legal-list li::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-top: 0.45rem;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 0 5px rgba(2, 148, 150, 0.12);
  flex-shrink: 0;
}

.service-page-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.service-page-card {
  position: relative;
  overflow: hidden;
}

.service-page-card::before {
  content: "";
  position: absolute;
  inset: auto -24% -30% 40%;
  height: 180px;
  background: radial-gradient(circle, rgba(2, 148, 150, 0.18) 0%, rgba(2, 148, 150, 0) 68%);
  opacity: 0.8;
  pointer-events: none;
}

@keyframes heroFloatLarge {
  0%, 100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, -12px, 0);
  }
}

@keyframes heroFloatCard {
  0%, 100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, -10px, 0);
  }
}

@keyframes heroSweep {
  0%, 100% {
    transform: translateX(-16px);
    opacity: 0.28;
  }
  50% {
    transform: translateX(68px);
    opacity: 1;
  }
}

@keyframes heroPulseCore {
  0%, 100% {
    transform: translate(-50%, -50%) rotate(45deg) scale(1);
  }
  50% {
    transform: translate(-50%, -50%) rotate(45deg) scale(1.05);
  }
}

@keyframes heroPulseDot {
  0%, 100% {
    transform: scale(1);
    opacity: 0.72;
  }
  50% {
    transform: scale(1.16);
    opacity: 1;
  }
}

@keyframes heroFlow {
  0% {
    opacity: 0.24;
    filter: brightness(0.88);
  }
  50% {
    opacity: 1;
    filter: brightness(1.22);
  }
  100% {
    opacity: 0.24;
    filter: brightness(0.88);
  }
}

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

@keyframes heroOrbitDot {
  0%, 100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(8px, -10px, 0);
  }
}

@keyframes heroSweepBar {
  0%, 100% {
    transform: scaleX(0.95);
    opacity: 0.7;
  }
  50% {
    transform: scaleX(1.05);
    opacity: 1;
  }
}

@keyframes heroCardPulse {
  0%, 100% {
    transform: translate3d(0, 0, 0) scale(1);
    box-shadow: 0 14px 24px rgba(2, 148, 150, 0.12);
  }
  50% {
    transform: translate3d(0, -4px, 0) scale(1.02);
    box-shadow: 0 18px 30px rgba(2, 148, 150, 0.2);
  }
}

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

.service-page-card > * {
  position: relative;
  z-index: 1;
}

.service-page-card .icon {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  border: 1px solid var(--border-strong);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(231, 240, 252, 0.88));
  color: var(--primary);
  box-shadow: 0 14px 22px rgba(2, 148, 150, 0.12);
}

.split-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.9fr);
  gap: 20px;
  align-items: start;
}

.note {
  color: var(--text-dim);
  font-size: 0.9rem;
}

form {
  display: grid;
  gap: 12px;
}

input,
textarea,
select {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid rgba(29, 29, 31, 0.14);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--text);
  font: inherit;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

input:focus,
textarea:focus,
select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(2, 148, 150, 0.12);
}

textarea {
  min-height: 160px;
  resize: vertical;
}

.contact-methods {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.contact-method {
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.72);
}

.contact-method h3 {
  margin-bottom: 6px;
}

.legal-panel h2,
.legal-panel h3 {
  margin-bottom: 10px;
}

.legal-panel p + p,
.legal-panel ul,
.legal-panel ol {
  margin-top: 12px;
}

footer {
  position: relative;
  z-index: 1;
  padding: 58px 0 28px;
  border-top: 1px solid var(--border);
  background: rgba(238, 240, 243, 0.86);
}

.footer-grid {
  margin-bottom: 24px;
}

.footer-col h4 {
  margin-bottom: 12px;
}

.footer-col a,
.footer-col p {
  display: block;
  margin-bottom: 8px;
  color: var(--text-dim);
  font-size: 0.92rem;
}

.footer-address-item {
  margin-bottom: 14px;
}

.footer-address-label {
  display: block;
  margin-bottom: 6px;
  color: var(--text);
  font-size: 0.92rem;
}

.footer-address-text {
  white-space: pre-line;
}

.footer-col a:hover {
  color: var(--primary);
}

.footer-contact-col h4 {
  margin-bottom: 18px;
  color: var(--text);
}

.footer-contact-list,
.footer-contact-socials {
  display: grid;
  gap: 10px;
}

.footer-contact-col .footer-contact-item {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  margin-bottom: 0;
  color: var(--text-dim);
  text-decoration: none;
}

.footer-contact-col .footer-contact-item:hover {
  color: var(--primary);
}

.footer-contact-icon,
.footer-contact-col .social-icon-box {
  width: 38px;
  height: 38px;
  box-sizing: border-box;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(47, 128, 237, 0.04);
  border: 1px solid rgba(47, 128, 237, 0.16);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.68);
  color: #2f80ed;
}

.footer-contact-icon i {
  font-size: 1rem;
  line-height: 1;
}

.footer-contact-col .social-icon-box {
  overflow: hidden;
  padding: 8px;
}

.footer-contact-col .social-icon-img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  display: block;
}

.footer-contact-col .social-icon-fallback {
  font-size: 0.82rem;
  font-weight: 700;
  color: #2f80ed;
}

.footer-contact-text,
.footer-contact-col .social-name {
  color: var(--text-dim);
  font-size: 0.92rem;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 0;
  white-space: nowrap;
  display: inline-block;
  justify-self: start;
  align-self: center;
  margin: 0;
}

.footer-copyright-row {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}

.footer-copyright-row .copyright {
  margin: 0;
  padding: 0;
  border-top: 0;
  color: var(--text-dim);
  font-size: 0.92rem;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

body[data-page="services"] .service-page-card,
body[data-page="website-development"] .card,
body[data-page="ai-automation"] .card,
body[data-page="it-support"] .card,
body[data-page="website-development"] .stat-card,
body[data-page="ai-automation"] .stat-card,
body[data-page="it-support"] .stat-card {
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

body[data-page="services"] .service-page-card:hover,
body[data-page="website-development"] .card:hover,
body[data-page="ai-automation"] .card:hover,
body[data-page="it-support"] .card:hover,
body[data-page="website-development"] .stat-card:hover,
body[data-page="ai-automation"] .stat-card:hover,
body[data-page="it-support"] .stat-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-strong);
  box-shadow: 0 24px 38px rgba(23, 33, 38, 0.14);
}

@keyframes heroShellFloat {
  0%, 100% {
    box-shadow: 0 28px 54px rgba(18, 20, 24, 0.24);
  }
  50% {
    box-shadow: 0 34px 62px rgba(18, 20, 24, 0.28);
  }
}

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

@keyframes heroGridShift {
  0% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(18px, 10px, 0);
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}

@media (max-width: 1060px) {
  .menu-toggle {
    display: inline-flex;
  }

  nav {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    padding: 14px;
    border-radius: 16px;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 12px 24px rgba(29, 29, 31, 0.12);
  }

  nav.open {
    display: block;
  }

  nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .nav-item,
  .nav-dropdown-toggle {
    width: 100%;
  }

  .nav-dropdown-toggle {
    justify-content: space-between;
  }

  .nav-submenu {
    position: static;
    min-width: 100%;
    margin-top: 8px;
    padding: 10px;
    transform: none;
    box-shadow: none;
  }

  .nav-wrap {
    position: relative;
  }

  .page-hero .hero-shell,
  .split-band,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-motion {
    top: 18px;
    right: 14px;
    width: min(52vw, 320px);
    opacity: 0.76;
  }

  .hero-motion-website .hero-device {
    right: 12px;
    bottom: 18px;
    width: 106px;
  }

  .hero-motion-ai .hero-flow-card {
    min-width: 124px;
    padding: 12px 14px;
  }

  .hero-motion-support .hero-console {
    width: 152px;
    top: 108px;
  }

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

@media (max-width: 760px) {
  section {
    padding: 64px 0;
  }

  .page-hero::before {
    width: calc(100vw - 28px);
    left: 14px;
    transform: none;
    top: 24px;
  }

  .page-hero .hero-shell {
    padding: 42px 24px;
    min-height: auto;
  }

  .hero-motion {
    top: 18px;
    right: 14px;
    bottom: auto;
    width: min(42vw, 210px);
    height: 170px;
    opacity: 0.48;
  }

  .hero-panel {
    width: 100%;
    min-height: auto;
  }

  .hero-motion-website .hero-card-b,
  .hero-motion-website .hero-badge-responsive,
  .hero-motion-ai .hero-flow-card-b,
  .hero-motion-support .hero-console-row:last-child {
    display: none;
  }

  .hero-motion-website .hero-browser {
    inset: 32px 18px 40px 18px;
  }

  .hero-motion-website .hero-browser-grid {
    inset: 82px 28px 48px 38px;
  }

  .hero-motion-website .hero-browser-banner {
    top: 54px;
    left: 26px;
    width: 120px;
    height: 36px;
  }

  .hero-motion-website .hero-device {
    width: 76px;
    padding: 8px 7px 10px;
    border-radius: 20px;
  }

  .hero-motion-website .hero-device-screen {
    min-height: 112px;
    padding: 10px 8px;
    gap: 8px;
  }

  .hero-motion-website .hero-badge-speed {
    left: 8px;
    top: 88px;
    min-height: 28px;
    padding: 0 10px;
    font-size: 0.62rem;
  }

  .hero-motion-website .hero-scan {
    top: 92px;
    left: 42px;
    width: 96px;
  }

  .hero-motion-ai .hero-flow-grid {
    inset: 20px 12px 18px 18px;
  }

  .hero-motion-ai .hero-core {
    width: 78px;
    height: 78px;
  }

  .hero-motion-ai .hero-link-a {
    top: 34%;
    left: 20%;
    width: 74px;
  }

  .hero-motion-ai .hero-link-b {
    top: 42%;
    left: 54%;
    width: 56px;
  }

  .hero-motion-ai .hero-link-c {
    bottom: 28%;
    left: 34%;
    width: 66px;
  }

  .hero-motion-ai .hero-pill {
    font-size: 0.6rem;
  }

  .hero-motion-ai .hero-pill-a {
    width: 78px;
    height: 30px;
    right: 0;
  }

  .hero-motion-ai .hero-pill-b {
    width: 72px;
    height: 28px;
    right: 8px;
    bottom: 8%;
  }

  .hero-motion-ai .hero-flow-card-a {
    left: 2px;
    top: 72px;
    min-width: 88px;
    padding: 9px 10px;
  }

  .hero-motion-ai .hero-flow-card strong,
  .hero-motion-support .hero-ticket strong {
    font-size: 0.68rem;
  }

  .hero-motion-ai .hero-flow-card span,
  .hero-motion-support .hero-ticket span {
    font-size: 0.58rem;
  }

  .hero-motion-support .hero-shield {
    width: 102px;
    height: 118px;
    left: 36%;
  }

  .hero-motion-support .hero-ring-a {
    inset: 24px 74px 34px 8px;
  }

  .hero-motion-support .hero-ring-b {
    inset: 40px 96px 52px 22px;
  }

  .hero-motion-support .hero-dot-a {
    top: 38px;
    left: 100px;
  }

  .hero-motion-support .hero-dot-b {
    bottom: 34px;
    left: 92px;
  }

  .hero-motion-support .hero-dot-c {
    left: 2px;
  }

  .hero-motion-support .hero-bar-a {
    top: 18%;
    right: 2px;
    width: 74px;
  }

  .hero-motion-support .hero-bar-b {
    bottom: 14%;
    right: 12px;
    width: 62px;
  }

  .hero-motion-support .hero-console {
    top: 56px;
    right: 0;
    width: 96px;
    gap: 8px;
    padding: 10px;
  }

  .hero-motion-support .hero-console-row span {
    height: 5px;
  }

  .hero-motion-support .hero-ticket {
    right: 8px;
    bottom: 10px;
    min-width: 96px;
    padding: 10px 11px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .cards-2,
  .cards-3,
  .stats-grid,
  .service-page-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-hero .hero-shell,
  .page-hero .hero-shell::before,
  .page-hero .hero-shell::after {
    animation: none !important;
    transition: none !important;
    transform: none !important;
  }

  .hero-panel li,
  body[data-page="services"] .service-page-card,
  body[data-page="website-development"] .card,
  body[data-page="ai-automation"] .card,
  body[data-page="it-support"] .card,
  body[data-page="website-development"] .stat-card,
  body[data-page="ai-automation"] .stat-card,
  body[data-page="it-support"] .stat-card {
    transition: none !important;
    transform: none !important;
  }
}


