@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap");

:root {
  --black: #020204;
  --panel: rgba(255, 255, 255, 0.075);
  --panel-strong: rgba(255, 255, 255, 0.12);
  --line: rgba(255, 255, 255, 0.15);
  --text: #f5f5f7;
  --muted: rgba(245, 245, 247, 0.68);
  --dim: rgba(245, 245, 247, 0.42);
  --purple: #8b4dff;
  --blue: #2f7cff;
  --yellow: #ffd74d;
  --radius: 8px;
  --page: min(1120px, calc(100% - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 58% -8%, rgba(132, 69, 255, 0.48), transparent 33rem),
    radial-gradient(circle at 23% 5%, rgba(54, 91, 170, 0.22), transparent 25rem),
    radial-gradient(circle at 88% 10%, rgba(255, 255, 255, 0.08), transparent 18rem),
    var(--black);
  font-family:
    "Plus Jakarta Sans",
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Arial,
    sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

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

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

h1,
h2,
h3,
p {
  margin-top: 0;
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin-bottom: 18px;
  color: var(--text);
  letter-spacing: 0;
  line-height: 1.14;
}

h1 {
  font-size: clamp(2rem, 3.35vw, 3.35rem);
  font-weight: 700;
}

h1 span,
h2 span {
  display: block;
}

h2 {
  font-size: clamp(1.85rem, 3.25vw, 3.25rem);
  font-weight: 700;
}

h3 {
  font-size: 1.16rem;
  font-weight: 700;
}

p {
  color: var(--muted);
}

.floating-nav {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1080px, calc(100% - 48px));
  min-height: 62px;
  padding: 8px 10px 8px 18px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 999px;
  background: rgba(8, 8, 12, 0.54);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(26px);
  transform: translateX(-50%);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0;
  color: var(--text);
  font-size: 0.98rem;
  font-weight: 700;
  white-space: nowrap;
}

.brand-logo-img {
  width: 164px;
  height: 44px;
  object-fit: contain;
  object-position: center;
  border-radius: 5px;
  filter: saturate(1.08) contrast(1.04);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.86rem;
  font-weight: 500;
}

.site-nav a:not(.nav-cta) {
  padding: 9px 12px;
  border-radius: 999px;
  transition: color 160ms ease, background 160ms ease;
}

.site-nav a:not(.nav-cta):hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.07);
}

.site-nav a:hover {
  color: var(--text);
}

.nav-cta {
  min-width: 132px;
  margin-left: 10px;
  padding: 11px 18px;
  color: #0d0d10 !important;
  text-align: center;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(180deg, #ffffff, #d7d8dd);
  font-weight: 600;
  box-shadow: inset 0 -5px 12px rgba(0, 0, 0, 0.12), 0 10px 30px rgba(139, 77, 255, 0.18);
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.12);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--text);
}

.hero {
  position: relative;
  min-height: 920px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 126px 0 0;
  overflow: hidden;
}

.hero.subpage {
  min-height: 620px;
}

.hero-content {
  position: relative;
  z-index: 5;
  width: var(--page);
  margin: 0 auto;
  padding-bottom: 22px;
  text-align: center;
}

.hero h1 {
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
  color: transparent;
  background: linear-gradient(180deg, #ffffff 0%, #b8b8c0 42%, #5d5d64 100%);
  -webkit-background-clip: text;
  background-clip: text;
  line-height: 1.12;
  padding-bottom: 0.14em;
}

.hero-copy {
  max-width: 720px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(0.94rem, 1vw, 1.02rem);
}

.hero-copy-block {
  max-width: 820px;
  margin: 0 auto;
}

.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  margin-bottom: 22px;
  padding: 6px 14px;
  color: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  font-size: 0.8rem;
  font-weight: 540;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 11px 20px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  font-weight: 700;
  line-height: 1.1;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

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

.button.light {
  color: #151515;
  background: linear-gradient(180deg, #ffffff, #d8d8dc);
  box-shadow: 0 0 0 7px rgba(139, 77, 255, 0.14), inset 0 -8px 16px rgba(0, 0, 0, 0.1);
}

.button.dark {
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
}

.button.full {
  width: 100%;
}

.stars,
.hero-metrics {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 34px;
  color: var(--muted);
}

.stars span {
  color: var(--yellow);
  font-size: 1.25rem;
  letter-spacing: 0.18em;
}

.stars strong {
  color: var(--muted);
  font-weight: 620;
}

.hero-metrics {
  flex-wrap: wrap;
  max-width: 850px;
  margin: 32px auto 0;
}

.hero-metrics span {
  min-height: 38px;
  padding: 9px 14px;
  color: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.055);
  font-size: 0.9rem;
  font-weight: 640;
}

.aurora {
  position: absolute;
  z-index: 1;
  border-radius: 999px;
  filter: blur(70px);
  opacity: 0.8;
}

.aurora-one {
  top: 0;
  right: 6%;
  width: 520px;
  height: 240px;
  background: rgba(139, 77, 255, 0.75);
}

.aurora-two {
  top: 10%;
  left: 9%;
  width: 330px;
  height: 180px;
  background: rgba(47, 124, 255, 0.34);
}

.grid-floor {
  position: absolute;
  right: 14%;
  bottom: 34px;
  left: 14%;
  z-index: 2;
  height: 620px;
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(180deg, transparent 0%, #000 24%, #000 64%, transparent 100%);
}

.sliding-showcase {
  position: relative;
  z-index: 4;
  width: 100%;
  margin-top: 4px;
  padding: 8px 0 50px;
  overflow: hidden;
}

.slider-copy {
  position: relative;
  z-index: 4;
  width: var(--page);
  margin: 0 auto 16px;
  text-align: center;
}

.compact-stars {
  margin-bottom: 8px;
  color: var(--yellow);
  font-size: 1.02rem;
  letter-spacing: 0.18em;
}

.slider-copy p {
  max-width: 640px;
  margin: 0 auto;
  color: rgba(245, 245, 247, 0.68);
  font-size: 0.96rem;
}

.slider-viewport {
  position: relative;
  z-index: 2;
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0%, #000 14%, #000 86%, transparent 100%);
}

.slider-track {
  display: flex;
  width: max-content;
  gap: 22px;
  padding: 26px 0 38px;
  animation: slideCards 34s linear infinite;
}

.slider-viewport:hover .slider-track {
  animation-play-state: paused;
}

.slide-card {
  flex: 0 0 250px;
  height: 235px;
  border: 0;
  border-radius: 24px;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.035), transparent 56%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.018), rgba(255, 255, 255, 0.004));
  box-shadow: 0 38px 110px rgba(0, 0, 0, 0.88);
  opacity: 0.68;
}

.text-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
}

.text-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.98rem;
  font-weight: 650;
  line-height: 1.35;
}

.slide-person {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.026);
}

.slide-person span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: #141414;
  border-radius: 50%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(217, 217, 222, 0.72));
  font-size: 0.8rem;
  font-weight: 850;
}

.slide-person strong {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.94rem;
}

.icon-card {
  display: grid;
  place-items: center;
  padding: 26px;
  text-align: center;
}

.icon-card strong {
  max-width: 170px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.98rem;
  line-height: 1.35;
}

.slide-icon {
  position: relative;
  display: grid;
  width: 78px;
  height: 78px;
  place-items: center;
  margin-bottom: 18px;
  border: 1px solid rgba(255, 255, 255, 0.032);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.022);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.02);
}

.slide-icon::before {
  display: block;
  width: 42px;
  height: 42px;
  content: "";
  border-radius: 14px;
  background: linear-gradient(135deg, var(--purple), #5725d7);
  box-shadow: 0 0 28px rgba(139, 77, 255, 0.4);
}

.check-icon::after {
  position: absolute;
  width: 17px;
  height: 9px;
  content: "";
  border-bottom: 4px solid #fff;
  border-left: 4px solid #fff;
  transform: rotate(-45deg);
}

.shield-icon::before {
  clip-path: polygon(50% 0, 88% 16%, 82% 68%, 50% 100%, 18% 68%, 12% 16%);
  background: linear-gradient(135deg, #2f7cff, #5d7cff);
}

.shield-icon::after {
  position: absolute;
  width: 14px;
  height: 14px;
  content: "";
  clip-path: polygon(50% 0, 62% 36%, 100% 38%, 69% 58%, 80% 96%, 50% 73%, 20% 96%, 31% 58%, 0 38%, 38% 36%);
  background: #fff;
}

.cloud-icon::after {
  position: absolute;
  width: 34px;
  height: 18px;
  content: "";
  border-radius: 999px;
  background: #fff;
  box-shadow: -10px 2px 0 -2px #fff, 10px 3px 0 -3px #fff;
}

.tilt-left {
  transform: rotate(-5deg);
}

.tilt-right {
  transform: rotate(5deg);
}

@keyframes slideCards {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-50% - 11px));
  }
}

.section {
  position: relative;
  width: var(--page);
  margin: 0 auto;
  padding: 88px 0;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 44px;
}

.section-heading.centered {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-heading h2 {
  color: transparent;
  background: linear-gradient(180deg, #ffffff 0%, #bdbdc5 48%, #6f6f77 100%);
  -webkit-background-clip: text;
  background-clip: text;
  line-height: 1.16;
  padding-bottom: 0.18em;
}

.section-heading p:not(.pill) {
  font-size: 1.08rem;
}

.about {
  padding-top: 96px;
}

.about-split {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(390px, 1.04fr);
  gap: clamp(50px, 8vw, 120px);
  align-items: center;
}

.about-copy h2 {
  max-width: 780px;
  margin-bottom: 20px;
  padding-bottom: 0.14em;
  color: transparent;
  background: linear-gradient(180deg, #ffffff 0%, #b8b8c0 50%, #66666d 100%);
  -webkit-background-clip: text;
  background-clip: text;
  font-size: clamp(1.85rem, 3.2vw, 3.2rem);
  font-weight: 690;
  line-height: 1.12;
}

.about-copy h2 span {
  display: block;
}

.about-copy h2 .muted-line {
  color: rgba(255, 255, 255, 0.34);
  -webkit-text-fill-color: rgba(255, 255, 255, 0.34);
}

.about-copy p:not(.pill) {
  max-width: 640px;
  margin-bottom: 40px;
  color: rgba(245, 245, 247, 0.82);
  font-size: clamp(0.9rem, 0.98vw, 0.98rem);
  line-height: 1.65;
}

.about-checks {
  display: grid;
  grid-template-columns: repeat(2, minmax(220px, 1fr));
  gap: 20px 34px;
}

.about-checks span {
  position: relative;
  min-height: 32px;
  padding-left: 40px;
  color: var(--text);
  font-size: clamp(0.9rem, 1.08vw, 1.05rem);
  font-weight: 600;
  line-height: 1.2;
}

.about-checks span::before {
  position: absolute;
  left: 0;
  top: 0;
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  content: "";
  border-radius: 7px;
  background:
    linear-gradient(135deg, transparent 41%, #fff 42% 56%, transparent 57%) center / 10px 10px no-repeat,
    linear-gradient(135deg, #9b5cff, #6428db);
  box-shadow: 0 0 32px rgba(139, 77, 255, 0.48);
  transform: rotate(-8deg);
}

.about-visual {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px;
  background:
    radial-gradient(circle at 50% 92%, rgba(139, 77, 255, 0.32), transparent 38%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.012));
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.42), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.visual-layer,
.visual-main-card {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.035);
}

.visual-layer {
  right: 8%;
  left: 8%;
  height: 168px;
  opacity: 0.74;
}

.layer-one {
  top: 92px;
  animation: layerFloatOne 5.5s ease-in-out infinite;
}

.layer-two {
  bottom: 70px;
  animation: layerFloatTwo 6s ease-in-out infinite;
}

.visual-main-card {
  inset: 118px 19% 112px;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 100%, rgba(139, 77, 255, 0.28), transparent 50%),
    rgba(255, 255, 255, 0.055);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.36), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  animation: mainCardFloat 4.8s ease-in-out infinite;
}

.growth-icon {
  position: relative;
  width: 136px;
  height: 136px;
  border-radius: 34px;
  background: linear-gradient(180deg, #802eff, #a278ee);
  box-shadow: 0 28px 70px rgba(139, 77, 255, 0.4);
}

.growth-icon::before {
  position: absolute;
  left: 32px;
  top: 66px;
  width: 64px;
  height: 32px;
  content: "";
  border-top: 13px solid #fff;
  border-right: 13px solid #fff;
  border-radius: 8px 18px 0 0;
  transform: rotate(-42deg);
}

.growth-icon::after {
  position: absolute;
  right: 31px;
  top: 49px;
  width: 34px;
  height: 34px;
  content: "";
  background: #fff;
  clip-path: polygon(100% 0, 100% 80%, 78% 80%, 78% 38%, 32% 84%, 16% 68%, 62% 22%, 20% 22%, 20% 0);
}

@keyframes layerFloatOne {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-14px);
  }
}

@keyframes layerFloatTwo {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(16px);
  }
}

@keyframes mainCardFloat {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-10px) scale(1.015);
  }
}

.pricing-grid {
  display: grid;
  gap: 16px;
}

.price-card,
.contact-card,
.service-panel,
.faq-grid details {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.105), rgba(255, 255, 255, 0.045));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}

.why-heading {
  margin-bottom: 58px;
}

.why-heading h2 {
  font-size: clamp(2.1rem, 4vw, 4rem);
  line-height: 1.12;
  padding-bottom: 0.12em;
}

.why-heading h2 span {
  display: block;
  padding-bottom: 0.12em;
}

.benefit-bento {
  display: grid;
  grid-template-columns: 1fr 1.36fr 1fr;
  grid-template-rows: 260px 300px;
  gap: 18px;
}

.bento-card {
  position: relative;
  overflow: hidden;
  padding: 30px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.045);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035), 0 28px 90px rgba(0, 0, 0, 0.34);
}

.bento-card h3 {
  margin-bottom: 18px;
  font-size: clamp(1.2rem, 1.8vw, 1.7rem);
  font-weight: 700;
  letter-spacing: 0;
}

.bento-card p {
  max-width: 520px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(0.9rem, 0.98vw, 0.98rem);
  line-height: 1.5;
  font-weight: 500;
}

.scalable-card {
  grid-row: span 2;
  min-height: 578px;
}

.team-card {
  grid-column: 2;
}

.expert-card {
  grid-column: 3;
}

.update-card {
  grid-column: 2;
}

.continuity-card {
  grid-column: 3;
}

.mini-dashboard {
  position: absolute;
  right: 32px;
  bottom: 0;
  left: 32px;
  height: 360px;
  padding: 34px 32px 24px;
  background:
    radial-gradient(circle at 50% 0%, rgba(139, 77, 255, 0.12), transparent 52%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018));
}

.mini-label {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1rem;
  font-weight: 700;
}

.badge-check {
  position: relative;
  width: 23px;
  height: 23px;
  border-radius: 8px;
  background: linear-gradient(135deg, #9b5cff, #6428db);
}

.badge-check::after {
  position: absolute;
  left: 7px;
  top: 6px;
  width: 9px;
  height: 5px;
  content: "";
  border-bottom: 3px solid #fff;
  border-left: 3px solid #fff;
  transform: rotate(-45deg);
}

.migration-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.18);
}

.migration-status span,
.migration-steps span::before,
.migration-tags em {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.74rem;
  font-weight: 700;
}

.migration-status strong {
  color: #fff;
  font-size: 1.18rem;
}

.migration-steps {
  display: grid;
  gap: 17px;
}

.migration-steps span {
  position: relative;
  display: block;
  height: 7px;
  margin-top: 20px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
}

.migration-steps span::before {
  position: absolute;
  bottom: 12px;
  left: 0;
  content: attr(data-label);
}

.migration-steps span::after {
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--progress);
  content: "";
  border-radius: inherit;
  background: linear-gradient(90deg, #8b4dff, rgba(255, 255, 255, 0.58));
}

.migration-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.migration-tags em {
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  font-style: normal;
}

.avatar-row {
  position: absolute;
  right: -34px;
  bottom: 32px;
  left: 52px;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0%, #000 12%, #000 88%, transparent 100%);
}

.avatar-track {
  display: flex;
  width: max-content;
  animation: avatarSlide 16s linear infinite;
}

.avatar-row img,
.review-avatar {
  display: grid;
  width: 76px;
  height: 76px;
  place-items: center;
  margin-left: -10px;
  color: #151515;
  border: 3px solid rgba(0, 0, 0, 0.2);
  border-radius: 50%;
  background: linear-gradient(180deg, #d9c1ef, #a98bc5);
  font-weight: 800;
}

.avatar-row img {
  display: block;
  object-fit: cover;
  flex: 0 0 auto;
}

.avatar-track:hover {
  animation-play-state: paused;
}

.expert-review {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 18px;
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.055);
}

.review-avatar {
  display: block;
  width: 62px;
  height: 62px;
  margin-left: 0;
  object-fit: cover;
  border: 2px solid rgba(166, 130, 210, 0.55);
  box-shadow: 0 0 0 5px rgba(166, 130, 210, 0.08);
}

.expert-review strong,
.expert-review small,
.expert-review em {
  display: block;
}

.expert-review strong {
  font-weight: 700;
}

.expert-review small {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.74rem;
  font-weight: 600;
}

.expert-review em {
  margin-top: 6px;
  color: var(--yellow);
  font-size: 0.78rem;
  font-style: normal;
  letter-spacing: 0.18em;
}

.update-graphic {
  position: absolute;
  right: 10%;
  bottom: -14px;
  left: 10%;
  height: 200px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 20px 20px 0 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    rgba(255, 255, 255, 0.02);
  background-size: 84px 100%;
}

.update-window {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  padding: 18px 18px 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.28);
}

.update-window strong {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.95rem;
}

.update-window small {
  display: block;
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.75rem;
}

.update-window ul {
  display: grid;
  gap: 9px;
  padding: 0;
  margin: 16px 0 0;
  list-style: none;
}

.update-window li {
  display: flex;
  align-items: center;
  gap: 9px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.78rem;
  font-weight: 650;
}

.update-window li span {
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #8b4dff;
  box-shadow: 0 0 14px rgba(139, 77, 255, 0.75);
}

.update-pill {
  position: absolute;
  top: -18px;
  display: inline-flex;
  align-items: center;
  height: 36px;
  padding: 0 14px;
  border-radius: 12px;
  color: #fff;
  background: linear-gradient(180deg, #6c76ff, #8b4dff);
  box-shadow: 0 14px 34px rgba(95, 95, 255, 0.3);
  font-size: 0.75rem;
  font-weight: 800;
}

.update-pill:first-of-type {
  left: 26%;
}

.update-pill:last-of-type {
  right: 22%;
  opacity: 0.78;
}

.continuity-panel {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 170px;
  padding: 26px 32px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
}

.continuity-score {
  display: flex;
  align-items: center;
  gap: 14px;
}

.user-ring {
  display: inline-block;
  width: 36px;
  height: 36px;
  flex: 0 0 auto;
  border: 2px solid rgba(255, 255, 255, 0.36);
  border-radius: 50%;
}

.continuity-panel strong {
  display: block;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.55rem;
  line-height: 1;
}

.continuity-panel small {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.78rem;
  font-weight: 700;
}

.continuity-metrics {
  display: grid;
  gap: 9px;
  margin-top: 22px;
}

.continuity-metrics span {
  display: grid;
  grid-template-columns: 95px 1fr;
  gap: 10px;
  align-items: center;
}

.continuity-metrics em {
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 700;
}

.continuity-metrics b {
  height: 7px;
  border-radius: 999px;
  background: linear-gradient(90deg, #8b4dff, rgba(255, 255, 255, 0.14));
}

.continuity-metrics span:nth-child(2) b {
  width: 86%;
}

.continuity-metrics span:nth-child(3) b {
  width: 62%;
}

@keyframes avatarSlide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.logo-strip {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 34px 0 74px;
  background: var(--black);
  mask-image: linear-gradient(90deg, transparent 0%, #000 12%, #000 88%, transparent 100%);
}

.logo-strip::before,
.logo-strip::after {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: 18%;
  content: "";
  pointer-events: none;
}

.logo-strip::before {
  left: 0;
  background: linear-gradient(90deg, var(--black), transparent);
}

.logo-strip::after {
  right: 0;
  background: linear-gradient(270deg, var(--black), transparent);
}

.logo-track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 86px;
  animation: avatarSlide 28s linear infinite;
  will-change: transform;
}

.brand-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.16);
  font-size: clamp(1.2rem, 2vw, 1.9rem);
  font-weight: 800;
  white-space: nowrap;
  filter: grayscale(1);
}

.brand-logo i {
  display: inline-grid;
  grid-template-columns: repeat(2, 10px);
  grid-template-rows: repeat(2, 10px);
  gap: 3px;
  width: 23px;
  height: 23px;
}

.brand-logo i::before,
.brand-logo i::after {
  content: "";
}

.microsoft i,
.m365 i {
  background:
    linear-gradient(#fff 0 0) 0 0 / 10px 10px no-repeat,
    linear-gradient(#fff 0 0) 13px 0 / 10px 10px no-repeat,
    linear-gradient(#fff 0 0) 0 13px / 10px 10px no-repeat,
    linear-gradient(#fff 0 0) 13px 13px / 10px 10px no-repeat;
  opacity: 0.45;
}

.google::before,
.gcloud::before,
.gmail::before,
.aws::before,
.cloudflare::before,
.azure::before {
  display: inline-block;
  width: 34px;
  height: 34px;
  content: "";
  opacity: 0.34;
}

.google::before {
  border: 5px solid #fff;
  border-right-color: transparent;
  border-radius: 50%;
}

.aws::before {
  border-bottom: 5px solid #fff;
  border-radius: 0 0 50% 50%;
  transform: translateY(-3px);
}

.cloudflare::before {
  border-radius: 999px;
  background: #fff;
  box-shadow: 14px 5px 0 -3px #fff, -12px 8px 0 -5px #fff;
}

.gcloud::before {
  border: 5px solid #fff;
  border-radius: 18px;
}

.gmail::before {
  border: 4px solid #fff;
  border-top: 0;
  transform: skewY(-12deg);
}

.azure::before {
  clip-path: polygon(45% 0, 78% 78%, 53% 78%, 36% 42%, 18% 100%, 0 100%, 30% 0);
  background: #fff;
}

.service-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  align-items: start;
}

.service-list article,
.service-list .service-card {
  position: relative;
  display: flex;
  min-height: 218px;
  flex-direction: column;
  align-items: flex-start;
  padding: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 22px;
  background:
    radial-gradient(circle at 24px 18px, rgba(139, 77, 255, 0.22), transparent 90px),
    rgba(255, 255, 255, 0.045);
  transition:
    border-color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.service-list .service-card::after {
  position: absolute;
  right: 18px;
  bottom: 16px;
  content: "Learn more";
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.service-panel::after {
  justify-self: end;
  content: "View";
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.service-list .service-card:hover,
.service-panel:hover {
  border-color: rgba(255, 255, 255, 0.28);
  background:
    radial-gradient(circle at 24px 18px, rgba(139, 77, 255, 0.32), transparent 96px),
    rgba(255, 255, 255, 0.075);
  transform: translateY(-2px);
}

.service-number,
.service-panel span {
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.76rem;
  font-weight: 760;
}

.service-number {
  position: absolute;
  top: 20px;
  right: 20px;
}

.service-icon {
  position: relative;
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  margin: 4px 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(139, 77, 255, 0.82), rgba(93, 63, 216, 0.52));
  box-shadow: 0 20px 46px rgba(96, 48, 190, 0.22);
}

.service-icon::before,
.service-icon::after {
  position: absolute;
  content: "";
}

.mail-icon::before {
  width: 19px;
  height: 13px;
  border: 2px solid #fff;
  border-radius: 4px;
}

.mail-icon::after {
  width: 14px;
  height: 8px;
  border-bottom: 2px solid #fff;
  border-left: 2px solid #fff;
  transform: translateY(-2px) rotate(-45deg);
}

.cloud-icon::before {
  width: 21px;
  height: 12px;
  border-radius: 999px;
  background: #fff;
  box-shadow: 9px -4px 0 -3px #fff, -8px -2px 0 -4px #fff;
}

.drive-icon::before {
  width: 19px;
  height: 15px;
  border: 2px solid #fff;
  border-radius: 5px;
}

.drive-icon::after {
  width: 16px;
  height: 2px;
  background: #fff;
}

.calendar-icon::before {
  width: 19px;
  height: 19px;
  border: 2px solid #fff;
  border-radius: 5px;
}

.calendar-icon::after {
  top: 15px;
  width: 19px;
  height: 2px;
  background: #fff;
}

.tenant-icon::before {
  width: 20px;
  height: 15px;
  border: 2px solid #fff;
  border-radius: 7px;
}

.tenant-icon::after {
  bottom: 10px;
  width: 12px;
  height: 2px;
  background: #fff;
}

.admin-icon::before {
  width: 19px;
  height: 19px;
  border: 2px solid #fff;
  border-radius: 50%;
}

.admin-icon::after {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fff;
}

.security-icon::before {
  width: 19px;
  height: 22px;
  clip-path: polygon(50% 0, 90% 16%, 84% 72%, 50% 100%, 16% 72%, 10% 16%);
  background: #fff;
}

.service-list h3 {
  min-height: 0;
  margin-bottom: 10px;
  padding-right: 22px;
  font-size: clamp(0.98rem, 1.04vw, 1.12rem);
  line-height: 1.18;
}

.service-list p {
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.82rem;
  line-height: 1.42;
}

.service-list .service-card div {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: auto;
  padding-bottom: 24px;
}

.service-list em {
  padding: 5px 7px;
  color: rgba(255, 255, 255, 0.62);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  font-size: 0.64rem;
  font-style: normal;
  font-weight: 750;
}

.service-slider-controls {
  display: none;
}

.service-slider-controls button {
  position: relative;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
  cursor: pointer;
}

.service-slider-controls button:disabled {
  opacity: 0.38;
  cursor: default;
}

.service-slider-controls button::before {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 10px;
  height: 10px;
  content: "";
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}

.service-prev::before {
  transform: translate(-35%, -50%) rotate(-135deg);
}

.service-next::before {
  transform: translate(-65%, -50%) rotate(45deg);
}

.service-slider-count {
  min-width: 52px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.86rem;
  font-weight: 800;
  text-align: center;
}

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

.pricing .section-heading h2 {
  padding-bottom: 0.24em;
}

.price-card {
  display: flex;
  flex-direction: column;
  min-height: 500px;
  padding: 26px;
}

.price-card.highlighted {
  background:
    radial-gradient(circle at 50% 0%, rgba(139, 77, 255, 0.45), transparent 55%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.06));
}

.price-card strong {
  display: block;
  margin: 18px 0 22px;
  color: var(--text);
  font-size: 3rem;
  line-height: 1;
}

.price-card ul {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.price-card li {
  position: relative;
  padding-left: 24px;
  color: var(--muted);
}

.price-card li::before {
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 7px;
  height: 7px;
  content: "";
  border-radius: 50%;
  background: var(--purple);
}

.faq {
  padding-top: clamp(62px, 8vw, 110px);
}

.faq-intro {
  display: grid;
  grid-template-columns: minmax(290px, 0.62fr) minmax(360px, 0.86fr);
  gap: clamp(30px, 4.5vw, 54px);
  align-items: center;
  width: min(100%, 1240px);
  margin: 0 auto 34px;
}

.faq-visual {
  position: relative;
  min-height: 190px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 24px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    radial-gradient(circle at 58% 42%, rgba(132, 71, 255, 0.34), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(89, 38, 155, 0.22));
  background-size: 120px 100%, auto, auto;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 34px 90px rgba(0, 0, 0, 0.38);
}

.faq-frame {
  position: absolute;
  left: 14%;
  right: 14%;
  height: 56px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  opacity: 0.72;
}

.faq-frame.top {
  top: 34px;
}

.faq-frame.bottom {
  bottom: 34px;
}

.faq-question {
  position: absolute;
  inset: 50% auto auto 50%;
  display: grid;
  width: 120px;
  height: 120px;
  place-items: center;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(98, 42, 168, 0.22));
  box-shadow: 0 26px 70px rgba(88, 35, 164, 0.35);
  font-size: 2.65rem;
  font-weight: 700;
  transform: translate(-50%, -50%);
}

.faq-question::before {
  position: absolute;
  width: 60px;
  height: 60px;
  content: "";
  z-index: -1;
  border-radius: 50%;
  background: linear-gradient(180deg, #b88cff, #6f25e8);
}

.faq-title {
  text-align: left;
}

.faq-title .pill {
  margin-bottom: 28px;
}

.faq-title h2 {
  max-width: 540px;
  margin: 0;
  color: transparent;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.28) 0%, #f4f4f5 65%, #76767b 100%);
  -webkit-background-clip: text;
  background-clip: text;
  font-size: clamp(1.9rem, 3.15vw, 3.25rem);
  font-weight: 800;
  line-height: 1.12;
  padding-bottom: 0.14em;
  letter-spacing: 0;
}

.faq-title h2 span {
  display: block;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 22px;
  width: min(100%, 1240px);
  margin: 0 auto;
}

.faq-grid details {
  overflow: hidden;
  border: 0;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.045);
  box-shadow: none;
  backdrop-filter: none;
}

.faq-grid summary {
  position: relative;
  display: flex;
  min-height: 64px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 17px 20px 17px 22px;
  color: #f8f8f9;
  font-size: clamp(0.9rem, 0.94vw, 1rem);
  font-weight: 700;
  line-height: 1.24;
  cursor: pointer;
  list-style: none;
}

.faq-grid summary::-webkit-details-marker {
  display: none;
}

.faq-grid summary::after {
  display: grid;
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  place-items: center;
  content: "+";
  color: #050505;
  border-radius: 50%;
  background: #fff;
  font-size: 1.32rem;
  font-weight: 800;
  line-height: 1;
}

.faq-grid details[open] summary::after {
  content: "-";
  padding-bottom: 5px;
}

.faq-grid p {
  margin: -3px 26px 24px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.95rem;
  line-height: 1.6;
}

.contact-card {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: 40px;
  padding: clamp(26px, 5vw, 50px);
  background:
    radial-gradient(circle at 10% 0%, rgba(139, 77, 255, 0.35), transparent 40%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.055));
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 50px;
  padding: 13px 15px;
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.28);
  font: inherit;
}

.contact-form textarea,
.contact-form .full,
.form-note {
  grid-column: 1 / -1;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 3px solid rgba(139, 77, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.38);
}

.form-note {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

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

.booking-section {
  padding-top: 28px;
}

.booking-card {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(420px, 1.08fr);
  gap: clamp(28px, 5vw, 54px);
  align-items: start;
  padding: clamp(28px, 5vw, 54px);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 28px;
  background:
    radial-gradient(circle at 8% 0%, rgba(139, 77, 255, 0.3), transparent 38%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.045));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.booking-copy h2 {
  max-width: 620px;
  margin-bottom: 18px;
  font-size: clamp(2rem, 3.35vw, 3.35rem);
  line-height: 1.14;
  padding-bottom: 0.12em;
}

.booking-copy p:not(.pill) {
  max-width: 620px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.72;
}

.booking-points {
  display: grid;
  gap: 12px;
}

.booking-points span {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  align-items: center;
  min-height: 62px;
  padding: 13px 15px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.045);
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.92rem;
  font-weight: 700;
}

.booking-points strong {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 50%;
  background: rgba(139, 77, 255, 0.18);
  color: #fff;
  font-size: 0.78rem;
}

.booking-form {
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 22px;
  background: rgba(0, 0, 0, 0.18);
}

.case-hero {
  min-height: 620px;
}

.case-study-section {
  padding-top: 36px;
}

.case-study-feature {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.42fr);
  gap: 24px;
  align-items: stretch;
  margin-bottom: 22px;
  padding: clamp(26px, 5vw, 46px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 26px;
  background:
    radial-gradient(circle at 10% 0%, rgba(139, 77, 255, 0.28), transparent 42%),
    rgba(255, 255, 255, 0.045);
}

.case-study-feature h2 {
  max-width: 900px;
  line-height: 1.12;
  padding-bottom: 0.14em;
}

.case-study-feature p:not(.pill) {
  max-width: 760px;
  margin-bottom: 0;
  line-height: 1.65;
}

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

.case-results span {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  background: rgba(0, 0, 0, 0.18);
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.88rem;
  font-weight: 700;
}

.case-results strong {
  display: block;
  margin-bottom: 5px;
  color: #fff;
  font-size: 1.8rem;
  line-height: 1;
}

.case-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.case-card {
  min-height: 300px;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  background:
    radial-gradient(circle at 0 0, rgba(139, 77, 255, 0.15), transparent 38%),
    rgba(255, 255, 255, 0.045);
}

.case-tag {
  display: inline-flex;
  margin-bottom: 28px;
  padding: 7px 11px;
  color: rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  font-size: 0.75rem;
  font-weight: 800;
}

.case-card h3 {
  max-width: 680px;
  margin-bottom: 14px;
  font-size: clamp(1.25rem, 2vw, 1.85rem);
  line-height: 1.15;
}

.case-card p {
  max-width: 680px;
  line-height: 1.6;
}

.case-card dl {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin: 28px 0 0;
}

.case-card dl div {
  padding: 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.045);
}

.case-card dt {
  color: rgba(255, 255, 255, 0.44);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.case-card dd {
  margin: 6px 0 0;
  color: #fff;
  font-size: 0.88rem;
  font-weight: 700;
}

.blog-hero,
.admin-hero {
  min-height: 300px;
  padding-top: 106px;
  padding-bottom: 18px;
}

.blog-hero .hero-content,
.admin-hero .hero-content {
  padding-bottom: 0;
}

.blog-hero h1,
.admin-hero h1 {
  max-width: 900px;
  line-height: 1.12;
  padding-bottom: 0.14em;
}

.blog-hero .grid-floor,
.admin-hero .grid-floor {
  bottom: 0;
  height: 330px;
}

.blog-section,
.admin-section,
.blog-post-shell {
  padding-top: 0;
}

.blog-hero + .blog-section {
  margin-top: -18px;
  padding-top: 0;
}

.blog-section {
  padding-bottom: 64px;
}

.blog-heading {
  max-width: 900px;
  margin-bottom: 28px;
}

.blog-feature {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.5fr);
  gap: 24px;
  align-items: stretch;
  margin-bottom: 20px;
  padding: clamp(26px, 4.5vw, 44px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px;
  background:
    radial-gradient(circle at 84% 0%, rgba(139, 77, 255, 0.28), transparent 42%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.068), rgba(255, 255, 255, 0.03));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.blog-feature h3 {
  max-width: 860px;
  margin-bottom: 16px;
  font-size: clamp(1.8rem, 3.4vw, 3.6rem);
  line-height: 1.14;
  padding-bottom: 0.14em;
}

.blog-feature p {
  max-width: 740px;
  margin-bottom: 22px;
  line-height: 1.65;
}

.blog-feature .button {
  width: fit-content;
  min-width: 230px;
  margin-top: 24px;
}

.blog-feature-panel {
  position: relative;
  display: grid;
  align-content: end;
  gap: 12px;
  min-height: 270px;
  overflow: hidden;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.018)),
    rgba(0, 0, 0, 0.18);
}

.blog-feature-panel::before {
  position: absolute;
  inset: 36px 28px auto;
  height: 94px;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  background:
    linear-gradient(90deg, rgba(139, 77, 255, 0.74) 62%, rgba(255, 255, 255, 0.12) 62%),
    rgba(255, 255, 255, 0.04);
  box-shadow: 0 24px 80px rgba(139, 77, 255, 0.22);
}

.blog-feature-panel span {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  padding: 13px 15px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.055);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.86rem;
  font-weight: 800;
}

.blog-feature-panel span::after {
  width: 42%;
  height: 8px;
  margin-top: 5px;
  content: "";
  border-radius: 999px;
  background: linear-gradient(90deg, #8b4dff, rgba(255, 255, 255, 0.5));
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.blog-card {
  display: flex;
  min-height: 320px;
  flex-direction: column;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  background:
    radial-gradient(circle at 0 0, rgba(139, 77, 255, 0.14), transparent 34%),
    rgba(255, 255, 255, 0.045);
  transition:
    border-color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.blog-card:hover,
.blog-card:focus-visible {
  border-color: rgba(255, 255, 255, 0.24);
  background:
    radial-gradient(circle at 0 0, rgba(139, 77, 255, 0.24), transparent 36%),
    rgba(255, 255, 255, 0.062);
  transform: translateY(-3px);
  outline: 0;
}

.blog-card h3 {
  margin-bottom: 14px;
  font-size: clamp(1.12rem, 1.42vw, 1.42rem);
  line-height: 1.2;
}

.blog-card p {
  margin-bottom: 22px;
  font-size: 0.94rem;
  line-height: 1.62;
}

.blog-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: auto;
  color: rgba(255, 255, 255, 0.46);
  font-size: 0.82rem;
  font-weight: 750;
}

.back-link {
  display: inline-flex;
  width: fit-content;
  margin-top: 22px;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.blog-card-action {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  min-height: 42px;
  margin-top: 22px;
  padding: 0 2px;
  color: rgba(255, 255, 255, 0.9);
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  padding-top: 18px;
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.blog-card-action::after {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  content: ">";
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.055);
  color: #fff;
  font-size: 0.92rem;
  line-height: 1;
  transition:
    background 160ms ease,
    transform 160ms ease;
}

.blog-card:hover .blog-card-action::after,
.blog-card:focus-visible .blog-card-action::after {
  background: rgba(139, 77, 255, 0.34);
  transform: translateX(3px);
}

.back-link {
  align-items: center;
  gap: 9px;
  min-height: 38px;
  margin: 0 0 24px;
  padding: 8px 14px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.055);
  color: rgba(255, 255, 255, 0.82);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transition:
    background 160ms ease,
    border-color 160ms ease,
    transform 160ms ease;
}

.back-link:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-1px);
}

.back-link span {
  width: 8px;
  height: 8px;
  border-bottom: 2px solid currentColor;
  border-left: 2px solid currentColor;
  transform: rotate(45deg);
}

.blog-post-shell {
  width: var(--page);
  margin: 0 auto;
  padding-top: 154px;
  padding-bottom: 90px;
}

.blog-post-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.34fr);
  gap: 20px;
  align-items: start;
}

.blog-post-card,
.blog-post-aside,
.blog-post-content,
.blog-post-next {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  background:
    radial-gradient(circle at 10% 0%, rgba(139, 77, 255, 0.16), transparent 44%),
    rgba(255, 255, 255, 0.045);
}

.blog-post-card {
  padding: clamp(26px, 4vw, 42px);
}

.blog-post-card h1 {
  max-width: 1280px;
  margin-bottom: 16px;
  font-size: clamp(1.85rem, 2.75vw, 2.8rem);
  line-height: 1.16;
  padding-bottom: 0.12em;
  text-wrap: balance;
}

.blog-post-excerpt {
  max-width: 780px;
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(1rem, 1.15vw, 1.12rem);
  line-height: 1.65;
}

.blog-post-aside {
  position: sticky;
  top: 112px;
  padding: 24px;
}

.blog-post-aside h2 {
  margin-bottom: 16px;
  font-size: 1.35rem;
}

.blog-post-aside ul {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0 0 24px;
  list-style: none;
}

.blog-post-aside li {
  position: relative;
  padding-left: 22px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.9rem;
  font-weight: 650;
  line-height: 1.45;
}

.blog-post-aside li::before {
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 9px;
  height: 9px;
  content: "";
  border-radius: 50%;
  background: var(--purple);
}

.blog-post-content {
  grid-column: 1;
  display: grid;
  gap: 18px;
  padding: clamp(24px, 4vw, 38px);
}

.blog-post-content p {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 1.02rem;
  line-height: 1.8;
}

.blog-post-content .article-lead {
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.12rem;
  font-weight: 650;
}

.blog-post-next {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px 24px;
  align-items: center;
  padding: 24px;
}

.blog-post-next span,
.blog-post-next strong {
  display: block;
}

.blog-post-next span {
  color: rgba(255, 255, 255, 0.46);
  font-size: 0.8rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.blog-post-next strong {
  color: #fff;
  font-size: 1.12rem;
}

.blog-post-next a {
  color: #111;
  border-radius: 999px;
  background: linear-gradient(180deg, #fff, #d9d9dd);
  padding: 13px 18px;
  font-size: 0.9rem;
  font-weight: 800;
  text-align: center;
}

.admin-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.42fr);
  gap: 22px;
  align-items: start;
}

.admin-dashboard-head {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.42fr);
  gap: 22px;
  align-items: end;
  margin-bottom: 2px;
}

.admin-dashboard-head h2 {
  max-width: 850px;
  margin-bottom: 0;
  font-size: clamp(2rem, 3.8vw, 4rem);
}

.admin-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.admin-stats span {
  min-height: 104px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.045);
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.78rem;
  font-weight: 800;
}

.admin-stats strong {
  display: block;
  margin-bottom: 8px;
  color: #fff;
  font-size: clamp(1.3rem, 2vw, 2rem);
  line-height: 1;
}

.admin-form,
.admin-list-panel {
  padding: clamp(22px, 3.6vw, 34px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 26px;
  background:
    radial-gradient(circle at 0 0, rgba(139, 77, 255, 0.16), transparent 38%),
    rgba(255, 255, 255, 0.045);
}

.admin-form {
  display: grid;
  gap: 14px;
}

.admin-form-head {
  display: flex;
  gap: 18px;
  align-items: start;
  justify-content: space-between;
  margin-bottom: 8px;
}

.admin-form h2 {
  max-width: 620px;
  margin-bottom: 0;
  font-size: clamp(1.5rem, 2.4vw, 2.35rem);
}

.admin-form label {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.86rem;
  font-weight: 800;
}

.admin-form-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.admin-form input,
.admin-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.24);
  color: #fff;
  font: inherit;
  font-size: 0.98rem;
  outline: 0;
  padding: 14px 15px;
}

.admin-form textarea {
  resize: vertical;
}

.admin-list-panel {
  position: sticky;
  top: 110px;
}

.admin-post-list {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.admin-post-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 150px;
  gap: 14px;
  align-items: center;
  padding: 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.045);
}

.admin-post-item span {
  display: block;
  margin-bottom: 6px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.74rem;
  font-weight: 850;
  text-transform: uppercase;
}

.admin-post-item strong {
  color: #fff;
  font-size: 0.98rem;
  line-height: 1.25;
}

.admin-actions {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.admin-actions button {
  flex: 1;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.74);
  cursor: pointer;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 850;
}

.admin-actions button:hover {
  color: #fff;
  background: rgba(139, 77, 255, 0.24);
}

.prefooter-cta {
  position: relative;
  width: 100%;
  padding: clamp(70px, 10vw, 128px) 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 63% 0%, rgba(132, 69, 255, 0.72), transparent 38rem),
    radial-gradient(circle at 40% 16%, rgba(58, 102, 230, 0.5), transparent 28rem),
    linear-gradient(90deg, #050506, #171823 32%, #42238a 72%, #15151a);
}

.prefooter-cta::before,
.prefooter-cta::after {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 1;
  width: 20%;
  content: "";
  pointer-events: none;
}

.prefooter-cta::before {
  left: 0;
  background: linear-gradient(90deg, var(--black), transparent);
}

.prefooter-cta::after {
  right: 0;
  background: linear-gradient(270deg, var(--black), transparent);
}

.prefooter-card {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
  width: min(1240px, calc(100% - 48px));
  margin: 0 auto;
  padding: clamp(52px, 7vw, 86px) clamp(24px, 7vw, 110px);
  border-radius: 42px;
  background: #020204;
  text-align: center;
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.46);
}

.prefooter-card h2 {
  max-width: 940px;
  margin-bottom: 20px;
  color: #fff;
  font-size: clamp(2rem, 4vw, 4.25rem);
  font-weight: 700;
  line-height: 1.14;
  padding-bottom: 0.12em;
}

.prefooter-card > p:not(.pill) {
  max-width: 680px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.46);
  font-size: clamp(0.98rem, 1.2vw, 1.1rem);
}

.prefooter-card .button {
  min-width: 270px;
  margin-bottom: 20px;
}

.prefooter-card > span {
  color: rgba(255, 255, 255, 0.52);
  font-size: 1rem;
}

.footer {
  position: relative;
  width: min(100% - 70px, 1820px);
  margin: 0 auto;
  padding: 78px 0 48px;
}

.footer-hero {
  margin-bottom: 54px;
  color: transparent;
  background: linear-gradient(180deg, #ffffff 0%, #cfcfd2 48%, #67676d 100%);
  -webkit-background-clip: text;
  background-clip: text;
  font-size: clamp(3rem, 6.8vw, 7.6rem);
  font-weight: 800;
  line-height: 1.12;
  padding-bottom: 0.12em;
  letter-spacing: 0;
  white-space: nowrap;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 150px minmax(280px, 0.34fr);
  gap: clamp(42px, 7vw, 110px);
  align-items: start;
  padding-bottom: 62px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.52);
}

.footer-brand-block {
  display: grid;
  gap: 26px;
}

.footer-brand-block .brand {
  font-size: 1.2rem;
}

.footer-brand-block .brand-logo-img {
  width: 260px;
  height: 72px;
}

.footer-brand-block h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(1.4rem, 2vw, 2rem);
  font-weight: 700;
}

.footer-brand-block p {
  max-width: 460px;
  margin: 0;
  color: rgba(255, 255, 255, 0.64);
}

.footer-links,
.footer-contact {
  display: grid;
  gap: 13px;
}

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

.sitemap-section {
  padding-top: 24px;
}

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

.sitemap-card {
  display: grid;
  gap: 12px;
  min-height: 100%;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.055);
}

.sitemap-card h2 {
  margin-bottom: 8px;
  font-size: 1.35rem;
}

.sitemap-card a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.95rem;
  line-height: 1.45;
  transition: color 160ms ease;
}

.sitemap-card a:hover {
  color: #fff;
}

.footer-links h3,
.footer-contact h3 {
  margin: 0 0 8px;
  color: #fff;
  font-size: 1.18rem;
  font-weight: 700;
}

.footer-links a,
.footer-contact a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.96rem;
  font-weight: 500;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: #fff;
}

.contact-icon {
  position: relative;
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  border: 2px solid rgba(255, 255, 255, 0.82);
}

.contact-icon.phone {
  border-width: 0 0 2px 2px;
  border-radius: 0 0 0 9px;
  transform: rotate(-45deg);
}

.contact-icon.pin {
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
}

.contact-icon.pin::after {
  position: absolute;
  inset: 5px;
  content: "";
  border: 2px solid rgba(255, 255, 255, 0.82);
  border-radius: 50%;
}

.contact-icon.mail {
  border-radius: 6px;
}

.contact-icon.mail::before {
  position: absolute;
  inset: 4px 3px auto;
  height: 9px;
  content: "";
  border-bottom: 2px solid rgba(255, 255, 255, 0.82);
  border-left: 2px solid rgba(255, 255, 255, 0.82);
  transform: rotate(-45deg);
}

.footer-bottom {
  padding-top: 58px;
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.98rem;
}

.services-page {
  display: grid;
  gap: 18px;
}

.service-panel {
  position: relative;
  display: grid;
  grid-template-columns: 80px minmax(0, 0.88fr) minmax(280px, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 30px;
  transition:
    border-color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.service-panel h2 {
  margin-bottom: 0;
  font-size: clamp(1.7rem, 3vw, 3rem);
}

.service-panel p {
  margin-bottom: 0;
}

.service-detail-hero {
  min-height: 720px;
  padding-top: 118px;
}

.service-hero-inner {
  position: relative;
  z-index: 3;
  display: block;
  width: var(--page);
  margin: 0 auto;
}

.service-hero-copy h1 {
  max-width: 980px;
  margin-right: 0;
  margin-left: 0;
  line-height: 1.12;
  padding-bottom: 0.14em;
}

.service-hero-copy .hero-copy {
  max-width: 820px;
  margin-right: 0;
  margin-left: 0;
}

.service-hero-copy .hero-actions {
  justify-content: flex-start;
}

.service-hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 760px;
  margin-top: 34px;
}

.service-hero-stats span {
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.045);
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.78rem;
  font-weight: 700;
}

.service-hero-stats strong {
  display: block;
  margin-bottom: 5px;
  color: #fff;
  font-size: 1.2rem;
}

.service-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.36fr);
  gap: 24px;
  align-items: start;
  padding-top: 34px;
}

.detail-main {
  display: grid;
  gap: 18px;
}

.detail-card,
.detail-cta,
.scope-grid article {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  background:
    radial-gradient(circle at 0 0, rgba(139, 77, 255, 0.12), transparent 42%),
    rgba(255, 255, 255, 0.045);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.detail-card {
  padding: clamp(24px, 4vw, 38px);
}

.overview-card {
  display: block;
  padding: clamp(28px, 4vw, 46px);
}

.overview-card .pill {
  margin-bottom: 24px;
}

.overview-card h2 {
  max-width: 780px;
  margin-bottom: 22px;
  font-size: clamp(2rem, 3.1vw, 3.3rem);
}

.detail-card h2,
.detail-cta h2 {
  line-height: 1.12;
  padding-bottom: 0.14em;
}

.detail-card p:not(.pill) {
  max-width: 780px;
  margin-bottom: 0;
  font-size: clamp(0.96rem, 1.08vw, 1.08rem);
  line-height: 1.72;
}

.scope-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.scope-grid article {
  min-height: 190px;
  padding: 24px;
}

.scope-grid span {
  display: block;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.38);
  font-size: 0.8rem;
  font-weight: 800;
}

.scope-grid h3 {
  margin-bottom: 10px;
}

.scope-grid p {
  margin-bottom: 0;
  font-size: 0.9rem;
}

.detail-wide {
  grid-column: auto;
}

.detail-cta {
  position: sticky;
  top: 110px;
  padding: clamp(24px, 3.2vw, 34px);
  background:
    radial-gradient(circle at 30% 0%, rgba(139, 77, 255, 0.34), transparent 58%),
    rgba(255, 255, 255, 0.062);
}

.detail-cta h2 {
  max-width: 360px;
  margin-bottom: 18px;
  font-size: clamp(1.75rem, 2.35vw, 2.45rem);
  line-height: 1.14;
}

.detail-cta p:not(.pill) {
  max-width: 360px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.94rem;
  line-height: 1.62;
}

.detail-cta-list {
  display: grid;
  gap: 10px;
  margin: 26px 0;
}

.detail-cta-list span {
  position: relative;
  padding-left: 24px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  font-weight: 700;
}

.detail-cta-list span::before {
  position: absolute;
  left: 0;
  top: 0.38em;
  width: 10px;
  height: 10px;
  content: "";
  border-radius: 50%;
  background: var(--purple);
}

.detail-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.detail-list li {
  position: relative;
  min-height: 64px;
  padding: 16px 16px 16px 46px;
  color: rgba(255, 255, 255, 0.76);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.92rem;
  font-weight: 650;
}

.detail-list li::before {
  position: absolute;
  left: 16px;
  top: 18px;
  width: 16px;
  height: 16px;
  content: "";
  border-radius: 6px;
  background: linear-gradient(135deg, #9b5cff, #6428db);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.process-grid div {
  min-height: 142px;
  padding: 20px;
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.025));
}

.process-grid span,
.process-grid strong {
  display: block;
}

.process-grid span {
  margin-bottom: 42px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.8rem;
  font-weight: 800;
}

.process-grid strong {
  color: #fff;
  font-size: 0.98rem;
}

@media (max-width: 980px) {
  .floating-nav {
    width: min(680px, calc(100% - 28px));
    border-radius: 22px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 18px;
    background: rgba(10, 10, 14, 0.96);
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.55);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 12px 14px;
  }

  .nav-cta {
    margin-top: 8px;
    margin-left: 0;
  }

  .about-split,
  .contact-card,
  .booking-card,
  .case-study-feature,
  .admin-section,
  .admin-dashboard-head,
  .blog-feature,
  .blog-post-layout,
  .service-detail-layout,
  .service-panel {
    grid-template-columns: 1fr;
  }

  .overview-card,
  .scope-grid {
    grid-template-columns: 1fr;
  }

  .detail-cta,
  .detail-wide {
    position: static;
    grid-column: auto;
    grid-row: auto;
  }

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

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

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

  .service-list {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

  .admin-list-panel {
    position: static;
  }

  .blog-post-aside {
    position: static;
  }

  .blog-feature-panel {
    min-height: 220px;
  }

  .benefit-bento {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

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

  .footer-brand-block {
    grid-column: 1 / -1;
  }

  .scalable-card,
  .team-card,
  .expert-card,
  .update-card,
  .continuity-card {
    grid-column: auto;
    grid-row: auto;
    min-height: 300px;
  }
}

@media (max-width: 700px) {
  :root {
    --page: min(100% - 28px, 1120px);
  }

  .floating-nav {
    top: 14px;
    min-height: 58px;
    width: calc(100% - 28px);
    padding: 7px 8px 7px 14px;
  }

  .brand {
    font-size: 0.94rem;
  }

  .brand-logo-img {
    width: 146px;
    height: 40px;
  }

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

  .hero {
    min-height: 940px;
    padding-top: 116px;
  }

  .hero.subpage {
    min-height: 650px;
  }

  .service-detail-hero {
    min-height: auto;
    padding-top: 118px;
    padding-bottom: 54px;
  }

  .service-hero-stats {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: clamp(2rem, 8.8vw, 2.85rem);
  }

  h2 {
    font-size: clamp(1.85rem, 8.5vw, 2.6rem);
  }

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

  .button {
    width: 100%;
  }

  .stars span {
    letter-spacing: 0.12em;
  }

  .section {
    padding: 64px 0;
  }

  .about-checks,
  .pricing-grid,
  .case-card dl,
  .blog-grid,
  .admin-form-grid,
  .faq-grid,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .blog-hero,
  .admin-hero {
    min-height: 330px;
    padding-top: 104px;
    padding-bottom: 12px;
  }

  .blog-card {
    min-height: 0;
    padding: 22px;
  }

  .blog-feature {
    padding: 22px;
    border-radius: 22px;
  }

  .blog-feature .button {
    width: 100%;
    min-width: 0;
  }

  .blog-post-shell {
    padding-top: 120px;
  }

  .blog-post-card {
    border-radius: 22px;
  }

  .blog-post-next {
    grid-template-columns: 1fr;
  }

  .blog-post-next a {
    width: 100%;
  }

  .admin-form-head {
    display: grid;
  }

  .admin-stats,
  .admin-post-item {
    grid-template-columns: 1fr;
  }

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

  .case-study-feature {
    padding: 22px;
    border-radius: 22px;
  }

  .case-results strong {
    font-size: 1.45rem;
  }

  .case-card {
    min-height: 0;
    padding: 22px;
    border-radius: 20px;
  }

  .case-tag {
    margin-bottom: 18px;
  }

  .service-list {
    display: flex;
    grid-template-columns: none;
    gap: 0;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .service-list .service-card {
    min-height: 0;
    flex: 0 0 100%;
    scroll-snap-align: start;
  }

  .service-list::-webkit-scrollbar {
    display: none;
  }

  .service-list .service-card::after {
    position: static;
    margin-top: 8px;
  }

  .service-slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 20px;
  }

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

  .benefit-bento {
    grid-template-columns: 1fr;
  }

  .faq-intro {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 28px;
  }

  .faq-visual {
    min-height: 190px;
  }

  .faq-title .pill {
    margin-bottom: 18px;
  }

  .faq-title h2 {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .faq-grid {
    gap: 16px;
  }

  .faq-grid summary {
    min-height: 68px;
    padding: 18px 18px 18px 20px;
    font-size: 0.98rem;
  }

  .faq-grid summary::after {
    width: 32px;
    height: 32px;
    font-size: 1.45rem;
  }

  .faq-grid p {
    margin: -4px 22px 24px;
  }

  .bento-card {
    min-height: 300px;
    padding: 24px;
  }

  .scalable-card {
    min-height: 460px;
  }

  .mini-dashboard {
    left: 54px;
  }

  .avatar-row img {
    width: 60px;
    height: 60px;
  }

  .about-visual {
    min-height: 390px;
  }

  .visual-main-card {
    inset: 88px 16% 76px;
  }

  .growth-icon {
    width: 108px;
    height: 108px;
    border-radius: 28px;
  }

  .contact-card {
    padding: 22px;
  }

  .booking-card,
  .booking-form {
    padding: 22px;
    border-radius: 22px;
  }

  .prefooter-cta {
    padding: 58px 0;
  }

  .prefooter-card {
    width: min(100% - 28px, 1240px);
    border-radius: 28px;
    padding: 42px 20px;
  }

  .prefooter-card .button {
    min-width: 0;
  }

  .footer {
    width: min(100% - 28px, 1820px);
    padding-top: 58px;
  }

  .footer-hero {
    margin-bottom: 38px;
    font-size: clamp(2.4rem, 12vw, 4.4rem);
    white-space: normal;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 34px;
    padding-bottom: 42px;
  }

  .footer-bottom {
    padding-top: 36px;
  }

  .service-list article {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .service-panel {
    gap: 12px;
  }

  .service-panel::after {
    justify-self: start;
  }
}
