:root {
  --bg: #ffffff;
  --text: #260047;
  --muted: #5f4778;
  --soft: #fbf8ff;
  --soft-2: #f5edff;
  --primary: #8a00ff;
  --primary-2: #ef28d8;
  --accent: #ff7a59;
  --teal: #62bfca;
  --border: rgba(38, 0, 71, 0.12);
  --shadow: 0 18px 36px rgba(47, 16, 74, 0.1);
  --radius-xs: 10px;
  --radius-sm: 14px;
  --radius-md: 18px;
  --radius-lg: 22px;
  --radius-pill: 999px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
  scroll-behavior: smooth;
}

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

.container {
  width: min(1150px, 92vw);
  margin: 0 auto;
}

.section {
  padding: 82px 0;
}

.section-head {
  margin-bottom: 30px;
}

.section-head h2,
h1 {
  margin: 0;
  color: var(--text);
  font-family: Manrope, Inter, sans-serif;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(2.4rem, 5.4vw, 5rem);
  line-height: 0.98;
  max-width: 920px;
}

.section-head h2 {
  font-size: clamp(2rem, 3.8vw, 3.35rem);
  line-height: 1.12;
  font-weight: 800;
}

.section-head p,
.hero-subheadline {
  color: var(--muted);
  font-size: clamp(1rem, 1.8vw, 1.18rem);
  line-height: 1.55;
}

.section-head p {
  max-width: 690px;
}

.section-head-center {
  text-align: center;
}

.section-head-center p,
.section-head-center h2 {
  margin-left: auto;
  margin-right: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid rgba(38, 0, 71, 0.1);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98), rgba(251, 244, 255, 0.95)),
    rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  box-shadow: 0 14px 34px rgba(38, 0, 71, 0.08);
}

.nav-wrap {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: transform 0.28s ease, filter 0.28s ease;
}

.brand:hover {
  transform: translateY(-2px) scale(1.02);
  filter: drop-shadow(0 10px 18px rgba(138, 0, 255, 0.18));
}

.brand-logo {
  height: 70px;
  width: auto;
  display: block;
  object-fit: contain;
}


.main-nav {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
  border: 1px solid rgba(138, 0, 255, 0.16);
  border-radius: var(--radius-pill);
  padding: 8px;
  background: linear-gradient(140deg, rgba(255, 255, 255, 0.96), rgba(246, 234, 255, 0.88));
  box-shadow: 0 12px 26px rgba(38, 0, 71, 0.1);
}

.main-nav a {
  position: relative;
  isolation: isolate;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-pill);
  padding: 0 16px;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 700;
  transition: color 0.25s ease, transform 0.25s ease;
}

.main-nav a::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  background: linear-gradient(120deg, rgba(138, 0, 255, 0.22), rgba(239, 40, 216, 0.24));
  transform: scale(0.84);
  opacity: 0;
  transition: transform 0.24s ease, opacity 0.24s ease;
}

.main-nav a:hover {
  color: var(--text);
  transform: translateY(-1px);
}

.main-nav a:hover::before {
  opacity: 0.9;
  transform: scale(1);
}

.main-nav a.is-active {
  color: #2a014d;
  animation: navActivePulse 0.42s ease;
}

.main-nav a.is-active::before {
  opacity: 1;
  transform: scale(1);
  background: linear-gradient(120deg, rgba(138, 0, 255, 0.28), rgba(239, 40, 216, 0.3));
}

.header-lottie {
  width: 70px;
  height: 54px;
  overflow: hidden;
  border: 1px solid rgba(138, 0, 255, 0.12);
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: 0 14px 26px rgba(38, 0, 71, 0.1);
}

.header-lottie iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}

@keyframes navActivePulse {
  0% {
    transform: translateY(0) scale(0.96);
  }

  65% {
    transform: translateY(-1px) scale(1.04);
  }

  100% {
    transform: translateY(0) scale(1);
  }
}

.menu-btn {
  display: none;
  background: transparent;
  border: 1px solid rgba(138, 0, 255, 0.2);
  border-radius: var(--radius-sm);
  cursor: pointer;
  padding: 9px 10px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.menu-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 18px rgba(138, 0, 255, 0.16);
}

.menu-btn span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 4px 0;
  background: var(--text);
}

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 24%, rgba(139, 0, 255, 0.28), transparent 35%),
    radial-gradient(circle at 72% 66%, rgba(98, 191, 202, 0.2), transparent 36%),
    linear-gradient(258deg, #2e0252 0%, #ffffff 66%);
  padding-top: 92px;
}

.hero-background {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.hero-bg-flow {
  position: absolute;
  opacity: 0.11;
  filter: saturate(1.1);
  will-change: transform;
}

.hero-bg-flow-a {
  width: clamp(420px, 48vw, 660px);
  top: 12%;
  right: -14%;
  animation: heroDriftA 28s linear infinite;
}

.hero-bg-flow-b {
  width: min(160px, 25vw);
  top: 5%;
  left: 3%;
  animation: heroDriftB 24s ease-in-out infinite;
}

@media (min-width: 1600px) {
  .hero-bg-flow-a {
    width: clamp(560px, 42vw, 760px);
    right: -10%;
  }

  .hero-bg-flow-b {
    width: min(190px, 16vw);
    top: 6%;
    left: 4.5%;
  }
}

@media (max-width: 1399px) {
  .hero-bg-flow-a {
    width: clamp(380px, 50vw, 600px);
    right: -18%;
  }

  .hero-bg-flow-b {
    width: min(150px, 24vw);
    top: 6%;
    left: 2%;
  }
}

@media (max-width: 1199px) {
  .hero-bg-flow-a {
    width: clamp(340px, 54vw, 520px);
    right: -24%;
  }

  .hero-bg-flow-b {
    width: min(130px, 22vw);
    top: 4%;
    left: 1.5%;
  }
}

.hero-glow {
  position: absolute;
  border-radius: var(--radius-pill);
  filter: blur(2px);
}

.hero-glow-1 {
  width: clamp(180px, 20vw, 300px);
  aspect-ratio: 1;
  top: 18%;
  right: 22%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0));
  animation: heroGlowPulse 6.4s ease-in-out infinite;
}

.hero-glow-2 {
  width: clamp(220px, 28vw, 360px);
  aspect-ratio: 1;
  bottom: -16%;
  right: -4%;
  background: radial-gradient(circle, rgba(239, 40, 216, 0.2), rgba(239, 40, 216, 0));
  animation: heroGlowPulse 8.2s ease-in-out infinite reverse;
}

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

.eyebrow,
.section-kicker {
  margin: 0 0 16px;
  color: #b32aff;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: none;
}

.hero-subheadline {
  max-width: 720px;
  margin: 22px 0 0;
  color: rgba(38, 0, 71, 0.72);
}

.cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.btn {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: var(--radius-xs);
  padding: 0 22px;
  font-weight: 750;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 24px rgba(138, 0, 255, 0.16);
}

.btn-primary {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(120deg, var(--primary), var(--primary-2));
  box-shadow: 0 16px 28px rgba(138, 0, 255, 0.3);
}

.btn-secondary {
  color: var(--text);
  background: #fff;
}

.btn-small {
  min-height: 40px;
  padding: 0 16px;
}

.audience-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.audience-list span {
  border: 1px solid rgba(138, 0, 255, 0.16);
  border-radius: var(--radius-pill);
  padding: 8px 12px;
  color: #4d276a;
  background: #fff;
  font-size: 0.88rem;
}

.platform-card {
  min-height: 430px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(138, 0, 255, 0.2);
  border-radius: var(--radius-lg);
  padding: 24px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.96) 0%, rgba(248, 239, 255, 0.95) 100%);
  backdrop-filter: blur(8px);
  box-shadow: 0 20px 36px rgba(38, 0, 71, 0.16);
  animation: heroCardFloat 6.8s ease-in-out infinite;
}

.lottie-frame,
.section-lottie,
.solutions-lottie-strip,
.success-lottie {
  position: relative;
  overflow: hidden;
}

.lottie-frame iframe,
.section-lottie iframe,
.solutions-lottie-strip iframe,
.success-lottie iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}

.lottie-frame-hero {
  height: 190px;
  margin: -6px -4px 12px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(138, 0, 255, 0.1), rgba(98, 191, 202, 0.14));
}

.platform-label {
  margin: 0 0 8px;
  color: #b32aff;
  font-size: 0.82rem;
  font-weight: 700;
}

.platform-card h3 {
  margin: 0;
  font: 800 1.55rem/1.18 Manrope, Inter, sans-serif;
}

.platform-card p {
  color: var(--muted);
  line-height: 1.5;
}

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

.orbit-node {
  min-height: 78px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(138, 0, 255, 0.14);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.95);
  color: var(--text);
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.orbit-node:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 20px rgba(38, 0, 71, 0.1);
}

@keyframes heroDriftA {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  50% {
    transform: translate3d(-54px, 18px, 0) scale(1.03);
  }

  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes heroDriftB {
  0% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }

  50% {
    transform: translate3d(26px, -16px, 0) rotate(1.8deg);
  }

  100% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
}

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

  50% {
    opacity: 0.95;
    transform: scale(1.06);
  }
}

@keyframes heroCardFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }
}

.capabilities {
  background: #fff;
}

.section-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
  gap: 34px;
  align-items: center;
  margin-bottom: 34px;
}

.section-intro-grid .section-head {
  margin-bottom: 0;
}

.section-lottie {
  height: 260px;
  border: 1px solid rgba(138, 0, 255, 0.12);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 20% 18%, rgba(98, 191, 202, 0.2), transparent 32%),
    linear-gradient(145deg, #fff 0%, #fbf5ff 100%);
  box-shadow: 0 16px 30px rgba(38, 0, 71, 0.06);
}

.capabilities .section-head h2 {
  max-width: 720px;
}

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

.capability-card {
  min-height: 278px;
  padding: 30px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, #fff 0%, #fbf5ff 100%);
  box-shadow: 0 10px 24px rgba(38, 0, 71, 0.04);
}

.capability-icon {
  width: 52px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  margin-bottom: 30px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, #ff4ab5, #8a00ff);
  color: #fff;
  font-weight: 900;
  font-size: 1.35rem;
}

.capability-card h3 {
  max-width: 280px;
  margin: 0 0 10px;
  font-size: 1.45rem;
  line-height: 1.18;
  font-weight: 600;
}

.capability-card p {
  margin: 0;
  color: #756087;
  line-height: 1.42;
}

.capabilities-cta {
  display: flex;
  justify-content: center;
  margin-top: 48px;
}

.solutions-section {
  overflow: hidden;
  background: linear-gradient(145deg, #fff 0%, #fbf5ff 100%);
}

.solutions-section .section-head h2 {
  max-width: 650px;
}

.solutions-lottie-strip {
  width: min(520px, 92vw);
  height: 190px;
  margin: -6px auto 28px;
  border-radius: var(--radius-lg);
}

.solutions-tabs-wrap {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  display: grid;
  grid-template-columns: repeat(7, minmax(130px, 1fr));
  gap: 18px;
  padding: 12px max(4vw, calc((100vw - 1150px) / 2));
  border-top: 1px solid rgba(38, 0, 71, 0.06);
  border-bottom: 1px solid rgba(38, 0, 71, 0.06);
  background: #fff;
  box-shadow: 0 16px 22px rgba(38, 0, 71, 0.06);
  overflow-x: auto;
}

.solutions-tab {
  height: 44px;
  border: 1px solid transparent;
  border-radius: var(--radius-xs);
  background: transparent;
  color: var(--text);
  font: 700 1rem/1 Inter, sans-serif;
  cursor: pointer;
}

.solutions-tab.active {
  border-color: #d54fff;
  background: #f2dbff;
  box-shadow: inset 0 0 0 1px rgba(213, 79, 255, 0.45);
}

.solutions-panel {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 42px;
  align-items: center;
  margin-top: 64px;
}

.solutions-media {
  min-width: 0;
}

.solution-photo {
  position: relative;
  height: 315px;
  overflow: hidden;
  border-radius: var(--radius-xs);
  background: linear-gradient(135deg, #f3e2d8 0%, #f7efe8 42%, #d8d5d2 100%);
}



.solution-photo iframe {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.solution-photo-lottie {
  border: 1px solid rgba(138, 0, 255, 0.12);
  background: linear-gradient(135deg, #fff 0%, #f8efff 100%);
}



.solutions-flow {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 14px;
  margin-top: -26px;
  position: relative;
  z-index: 2;
}

.flow-step {
  display: grid;
  justify-items: center;
  gap: 8px;
}

.flow-icon {
  width: 78px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 4px solid #fff;
  border-radius: var(--radius-pill);
  background: #9404fb;;
  color: #fff;
  font-size: 1.8rem;
  font-weight: 900;
  box-shadow: 0 10px 18px rgba(38, 0, 71, 0.18);
}

.flow-step:nth-child(3) .flow-icon {
  background: #df21de;
}

.flow-step small {
  max-width: 150px;
  color: #37234d;
  text-align: center;
  font-size: 0.72rem;
}

.flow-connector {
  margin-top: 24px;
  color: #f19aed;
  font-size: 1.8rem;
  letter-spacing: 5px;
}

.solutions-copy h3 {
  margin: 0 0 20px;
  font: 800 2.15rem/1.1 Manrope, Inter, sans-serif;
}

.solutions-copy p {
  margin: 0 0 34px;
  color: var(--muted);
  font-size: 1.15rem;
  line-height: 1.55;
}

.integrations-showcase {
  background: #fff;
}

.integrations-showcase .section-head h2 {
  max-width: 650px;
}

.integrations-showcase .section-head p {
  max-width: 760px;
}

.apps-grid {
  position: relative;
  overflow: hidden;
  margin-top: 58px;
}

.apps-track {
  width: max-content;
  display: flex;
  align-items: stretch;
  gap: 38px;
  animation: appsMarquee 24s linear infinite;
}

.app-card {
  flex: 0 0 136px;
  min-height: 100px;
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 10px;
  border: 1px solid rgba(38, 0, 71, 0.1);
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, #fff, #fbf6ff);
}

.app-icon {
  width: 40px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: var(--radius-pill);
  background: linear-gradient(135deg, #62bfca, #5f73ff);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 900;
  overflow: hidden;
}

.app-icon.has-logo {
  background: #fff;
  border: 1px solid rgba(38, 0, 71, 0.14);
}

.app-logo {
  width: 22px;
  height: 22px;
  object-fit: contain;
  display: block;
}

.app-fallback {
  line-height: 1;
}

.app-icon.has-logo .app-fallback {
  display: none;
}

.app-icon.logo-missing {
  background: linear-gradient(135deg, #62bfca, #5f73ff);
  border: 0;
}

.app-icon.logo-missing .app-logo {
  display: none;
}

.app-icon.logo-missing .app-fallback {
  display: block;
}

.app-name {
  max-width: 96px;
  color: #6d5480;
  font-size: 0.78rem;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@keyframes appsMarquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 19px));
  }
}

.success-stories {
  background: #260047;
  color: #fff;
}

.success-stories .section-head h2 {
  color: #fff;
}

.success-stories .section-head p {
  max-width: 630px;
  color: #e7d9f4;
}

.success-lottie {
  width: min(430px, 88vw);
  height: 170px;
  margin: -12px auto 32px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.06);
}

.success-kicker:empty {
  display: none;
}

.success-card {
  min-height: 420px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-lg);
  background: #4b236b;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.success-card-media {
  min-height: 202px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin: 8px;
  border-radius: var(--radius-sm);
  background: linear-gradient(120deg, #8c00ff, #f227d9);
}

.success-card-media-2 {
  background: linear-gradient(120deg, #2a064c, #7e00de);
}

.story-logo,
.story-person,
.story-company {
  display: grid;
  place-items: center;
  border: 4px solid rgba(255, 255, 255, 0.86);
  border-radius: var(--radius-pill);
  background: #fff;
  color: var(--text);
  font-weight: 900;
}

.story-logo {
  width: 64px;
  color: #fff;
  background: #7a00ff;
  font-size: 2rem;
}

.story-person {
  width: 86px;
  aspect-ratio: 1;
  background: linear-gradient(180deg, #f0b38c 0 47%, #fff 48% 100%);
}

.story-company {
  width: 58px;
  aspect-ratio: 1;
  font-size: 0.72rem;
}

.story-dots {
  color: #f2a6ed;
  font-size: 1.5rem;
  letter-spacing: 3px;
}

.success-card-body {
  padding: 18px 30px 30px;
}

.success-meta {
  margin: 0 0 14px;
  color: #d5c5e3;
  font-weight: 700;
}

.success-card h3 {
  margin: 0;
  color: #fff;
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  line-height: 1.16;
}

.services-section {
  overflow: hidden;
  background:
    linear-gradient(180deg, #fff 0%, #fbf8ff 52%, #fff 100%);
}

.services-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 390px);
  gap: 34px;
  align-items: center;
  margin-bottom: 38px;
}

.services-hero .section-head {
  margin-bottom: 0;
}

.services-hero .section-head h2 {
  max-width: 710px;
}

.services-hero .section-head p:not(.section-kicker) {
  max-width: 690px;
}

.services-lottie {
  height: 245px;
  overflow: hidden;
  border: 1px solid rgba(138, 0, 255, 0.12);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 18% 20%, rgba(98, 191, 202, 0.18), transparent 30%),
    linear-gradient(145deg, #fff 0%, #f8efff 100%);
  box-shadow: 0 18px 34px rgba(38, 0, 71, 0.08);
}

.services-lottie iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}

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

.service-card {
  position: relative;
  z-index: 1;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-height: 280px;
  padding: 24px;
  border: 1px solid rgba(38, 0, 71, 0.1);
  border-radius: var(--radius-md);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(251, 246, 255, 0.96)),
    radial-gradient(circle at 96% 8%, rgba(239, 40, 216, 0.12), transparent 34%);
  box-shadow: 0 14px 30px rgba(38, 0, 71, 0.06);
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 24px;
  right: 24px;
  height: 3px;
  z-index: -1;
  border-radius: 0 0 var(--radius-pill) var(--radius-pill);
  background: linear-gradient(90deg, var(--primary), var(--teal), var(--primary-2));
  transform: scaleX(0.34);
  transform-origin: left;
  transition: transform 0.28s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(138, 0, 255, 0.22);
  box-shadow: 0 22px 42px rgba(38, 0, 71, 0.12);
}

.service-card:hover::before {
  transform: scaleX(1);
}

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

.service-card__number {
  color: rgba(38, 0, 71, 0.34);
  font: 800 0.88rem/1 Manrope, Inter, sans-serif;
}

.service-card__status {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(138, 0, 255, 0.16);
  border-radius: var(--radius-pill);
  padding: 0 11px;
  color: #6d2198;
  background: #fbf3ff;
  font-size: 0.74rem;
  font-weight: 800;
}

.service-card__title {
  margin: 0;
  color: var(--text);
  font: 800 1.42rem/1.15 Manrope, Inter, sans-serif;
  letter-spacing: 0;
}

.service-card__title-container {
  display: grid;
  gap: 10px;
}

.service-card__paragraph {
  margin: 0;
  color: #6c557d;
  line-height: 1.48;
  font-size: 0.94rem;
}

.service-card__button {
  width: fit-content;
  margin-top: auto;
}

.site-footer {
  overflow: hidden;
  padding: 64px 0 24px;
  border-top: 1px solid rgba(38, 0, 71, 0.08);
  background:
    radial-gradient(circle at 12% 18%, rgba(98, 191, 202, 0.16), transparent 26%),
    linear-gradient(180deg, #fff 0%, #fbf8ff 100%);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(150px, 0.7fr) minmax(210px, 0.8fr) minmax(230px, 0.85fr);
  gap: 34px;
  align-items: center;
}

.footer-brand-block p {
  max-width: 360px;
  margin: 18px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.footer-links-block h4,
.footer-contact-block h4 {
  margin: 0 0 16px;
  font: 800 1rem/1 Manrope, Inter, sans-serif;
}

.footer-links,
.footer-contact-block,
.footer-socials {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.footer-links a,
.footer-contact-block a:not(.btn),
.footer-socials a {
  color: var(--muted);
  font-weight: 600;
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer-links a:hover,
.footer-contact-block a:not(.btn):hover,
.footer-socials a:hover {
  color: var(--primary);
  transform: translateX(3px);
}

.footer-socials {
  flex-direction: row;
  flex-wrap: wrap;
  margin-top: 20px;
  gap: 10px;
}

.footer-socials a {
  border: 1px solid rgba(138, 0, 255, 0.14);
  border-radius: var(--radius-pill);
  padding: 8px 12px;
  background: #fff;
  font-size: 0.82rem;
}

.footer-contact-btn {
  width: fit-content;
  min-height: 42px;
  margin-top: 6px;
}

.footer-lottie {
  height: 190px;
  overflow: hidden;
  border: 1px solid rgba(138, 0, 255, 0.12);
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, #fff 0%, #f8efff 100%);
  box-shadow: 0 16px 30px rgba(38, 0, 71, 0.06);
}

.footer-lottie iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  margin-top: 34px;
  padding-top: 20px;
  border-top: 1px solid rgba(38, 0, 71, 0.08);
}

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

.back-to-top {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 60;
  width: 54px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: var(--radius-pill);
  background: linear-gradient(120deg, var(--primary), var(--primary-2));
  box-shadow: 0 16px 30px rgba(138, 0, 255, 0.25);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px) scale(0.92);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.back-to-top span {
  width: 15px;
  aspect-ratio: 1;
  border-top: 3px solid #fff;
  border-left: 3px solid #fff;
  transform: rotate(45deg);
  animation: topArrow 1.35s ease-in-out infinite;
}

@keyframes topArrow {
  0%,
  100% {
    transform: translateY(4px) rotate(45deg);
  }

  50% {
    transform: translateY(-3px) rotate(45deg);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .hero-grid,
  .solutions-panel,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 74px;
  }

  .hero-content {
    text-align: center;
  }

  .hero-subheadline,
  .hero-content h1 {
    margin-left: auto;
    margin-right: auto;
  }

  .cta-group,
  .audience-list {
    justify-content: center;
  }

  .hero-bg-flow-a {
    width: clamp(300px, 72vw, 520px);
    right: -30%;
  }

  .hero-bg-flow-b {
    width: min(110px, 18vw);
    top: 3%;
    left: 1%;
  }

  .platform-card {
    min-height: auto;
  }

  .section-intro-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .services-hero {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .section-intro-grid .section-head p,
  .section-intro-grid .section-head h2,
  .services-hero .section-head p,
  .services-hero .section-head h2 {
    margin-left: auto;
    margin-right: auto;
  }

  .section-lottie,
  .services-lottie {
    width: min(390px, 100%);
    margin: 0 auto;
  }

  .capabilities-grid,
  .success-grid {
    grid-template-columns: 1fr;
  }

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

  .apps-grid {
    overflow-x: auto;
    padding-bottom: 6px;
  }

  .apps-track {
    gap: 14px;
    animation-duration: 18s;
  }

  .app-card {
    flex-basis: 124px;
  }

  .menu-btn {
    display: inline-block;
    order: 3;
  }

  .main-nav {
    position: absolute;
    top: 82px;
    right: 4vw;
    width: min(320px, 92vw);
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 16px;
    background: #fff;
    box-shadow: var(--shadow);
  }

  .header-lottie {
    margin-left: auto;
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav a {
    width: 100%;
    min-height: 44px;
    justify-content: flex-start;
    padding: 0 14px;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 58px 0;
  }

  .hero {
    padding-top: 64px;
  }

  .hero-bg-flow-a {
    width: 150vw;
    right: -52%;
    top: 16%;
    opacity: 0.09;
  }


  .hero-glow-1 {
    top: 10%;
    right: 10%;
  }

  .hero-glow-2 {
    right: -24%;
  }

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

  .lottie-frame-hero {
    height: 160px;
  }

  .section-lottie,
  .solutions-lottie-strip,
  .success-lottie,
  .services-lottie {
    height: 150px;
  }

  .service-card {
    min-height: auto;
    padding: 20px;
  }

  .footer-lottie {
    height: 150px;
  }

  .footer-bottom {
    justify-content: center;
    text-align: center;
  }

  .solutions-tabs-wrap {
    grid-template-columns: repeat(7, 132px);
  }

  .solution-photo {
    height: 250px;
  }

  .header-lottie {
    width: 56px;
    height: 46px;
  }

  .brand-logo {
    height: 44px;
  }

  .brand-footer .brand-logo {
    height: 40px;
  }

  .story-dots {
    display: none;
  }

  .success-card-media {
    gap: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-bg-flow,
  .hero-glow,
  .platform-card {
    animation: none;
  }

  .apps-track {
    animation: none;
  }
}
