@import url("https://fonts.cdnfonts.com/css/satoshi");
@import url(https://fonts.googleapis.com/css2?family=Inter:wght@400;600&display=swap);
:root {
  --container-max: 1400px;
  --gutter: 24px;
  --bp-laptop: 1300px;
  --bp-tablet: 1024px;
  --bp-mobile: 768px;
  --nav-height: 72px;
  --cimsor: "Satoshi", sans-serif;
  --torzs: "Inter", sans-serif;
}
::selection {
  background-color: #6a00f4;
  color: #fff;
}
::-webkit-scrollbar {
  width: 5px;
}
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px #fafaff;
  border-radius: 5px;
}
::-webkit-scrollbar-thumb {
  background: #7474dc;
  border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
  background: #fafaff;
}
.constrain {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  width: 100%;
  box-sizing: border-box;
}
.about-container,
.blog-container,
.case-studies-container,
.references-container,
.stepper-container,
.timeline-container,
.why-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.constrain .blog-grid,
.constrain .case-studies-grid,
.constrain .services-grid {
  width: 100%;
}
.eyebrow,
h1 {
  font-family: var(--cimsor);
  font-weight: 700;
  letter-spacing: -0.02em;
}
h2 {
  font-family: var(--cimsor);
}
.logo-link,
h3 {
  color: #fafaff;
  font-family: var(--torzs);
  font-size: 2.5rem;
  font-weight: 900;
  letter-spacing: 0.01em;
  margin-top: 0;
  line-height: 1.1;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.18);
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: var(--torzs);
  font-size: 16px;
  background-color: #111;
  color: #e7e7e7;
  min-height: 100vh;
  line-height: 1.5;
  padding-top: 0;
  transition: padding-top 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
body,
html {
  margin: 0;
  padding: 0;
  height: 100%;
  overflow-x: hidden;
}
html {
  scroll-behavior: smooth;
}
canvas {
  display: block;
}
#particles-js {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 0;
  background: 0 0;
}
header {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem clamp(1rem, 5vw, 5rem);
  position: relative;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 100;
  overflow: visible;
}
.logo-link {
  position: absolute;
  left: clamp(1rem, 3vw, 2rem);
  top: 50%;
  transform: translateY(-50%);
  display: inline-flex;
  align-items: center;
  z-index: 110;
}
img.logo {
  height: clamp(48px, 8vw, 60px);
  width: auto;
  display: block;
}
nav {
  display: flex;
  align-items: center;
  gap: 0;
  border: 2px solid rgba(255, 255, 255, 0.12);
  border-radius: 55px;
  padding: 0.5rem 1rem;
  background: rgba(238, 238, 238, 0.03);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    padding 0.2s ease,
    transform 0.28s ease,
    opacity 0.2s ease;
  max-width: var(--container-max);
  margin: 0 auto;
  justify-content: center;
  z-index: 1000;
  position: sticky;
  top: 12px;
}
@media (min-width: 1025px) {
  nav.nav-fixed {
    position: fixed !important;
    top: 12px;
    left: 50%;
    transform: translateX(-50%) translateY(0);
    width: auto;
    max-width: var(--container-max);
    z-index: 1200;
    background: rgba(17, 17, 17, 0.85);
    border-radius: 55px;
    padding: 0.45rem 1rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.45);
    transition: all 0.2s ease;
  }
  .nav-hidden {
    opacity: 0;
    pointer-events: none;
  }
  nav.nav-hidden {
    transform: translateY(-120%);
  }
  nav.nav-fixed.nav-hidden {
    transform: translateX(-50%) translateY(-120%);
  }
}
.navtag {
  text-decoration: none;
  color: #fff;
  padding: 0.7rem clamp(0.75rem, 1.5vw, 1.2rem);
  font-size: clamp(0.85rem, 1.2vw, 1rem);
  font-weight: 600;
  letter-spacing: 0.06em;
  border-radius: 999px;
  transition:
    background-color 0.2s ease,
    color 0.2s ease;
  border: 2px solid transparent;
  white-space: nowrap;
}
.navtag:hover {
  background-color: rgba(116, 116, 220, 0.5);
  border-color: rgba(116, 116, 220, 0.5);
}
.tag-box {
  position: absolute;
  right: clamp(2rem, 5vw, 5rem);
  top: 50%;
  transform: translateY(-50%);
  width: clamp(14rem, 20vw, 18rem);
  height: 3rem;
  border-radius: 50px;
  background: linear-gradient(
    90deg,
    #7474dc,
    #a78bfa,
    #7474dc,
    #a78bfa,
    #7474dc
  );
  background-size: 300%;
  animation: animationGradient 5s ease infinite;
  box-shadow: 0 0 20px rgba(116, 116, 220, 0.5);
  font-weight: 600;
  transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: visible;
}
@keyframes animationGradient {
  0% {
    background-position: 0 center;
  }
  50% {
    background-position: 100% center;
  }
  100% {
    background-position: 0 center;
  }
}
.tag-box button.tag {
  position: absolute;
  inset: 3px 3px 3px 3px;
  background-color: #111;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease;
  font-size: clamp(0.85rem, 1.2vw, 1rem);
  font-weight: 600;
  letter-spacing: 0.06em;
  white-space: nowrap;
  padding: 0 1rem;
  cursor: pointer;
  border: none;
  color: #fff;
}
.tag-box button.tag:hover {
  background-color: rgba(83, 0, 160, 0.3);
  color: #fff;
}
.hamburger-toggle {
  display: none;
}
.hamburger-button {
  display: none;
  position: absolute;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  cursor: pointer;
  z-index: 10000;
  pointer-events: auto;
}
#hamburger-wrap {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.575);
  transition-delay: 0.2s;
  pointer-events: none;
}
#hamburger-wrap svg {
  position: absolute;
  width: 60px;
  transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.575);
  transition-delay: 0.2s;
  margin-left: 0;
}
#hamburger-wrap svg:first-of-type {
  transform: translateY(3px);
}
#hamburger-wrap svg:nth-of-type(2) {
  transform: translateY(-3px) scaleY(-1);
}
#hamburger-wrap svg:nth-of-type(2) path {
  transition:
    stroke-dasharray 0.4s ease-in-out,
    stroke-dashoffset 0.4s ease-in-out,
    stroke 0.4s ease-in-out;
  transition-delay: 0.1s, 0.1s, 0.1s;
}
#hamburger-wrap svg:nth-of-type(3) {
  transform: translateY(8px);
}
#hamburger-wrap svg:nth-of-type(3) path {
  transition:
    stroke-dasharray 0.25s ease-in-out,
    stroke-dashoffset 0.25s ease-in-out,
    stroke 0.25s ease-in-out;
  transition-delay: 0.15s, 0.15s, 0.15s;
}
#hamburger-wrap svg path {
  stroke: #7474dc;
  stroke-width: 40px;
  fill: none;
  stroke-linecap: round;
  stroke-dasharray: 4400px;
  stroke-dashoffset: 4200px;
  transition:
    stroke-dasharray 0.5s ease-in-out,
    stroke-dashoffset 0.5s ease-in-out,
    stroke 0.5s ease-in-out;
}
.hamburger-toggle:checked ~ .hamburger-button #hamburger-wrap {
  transform: scaleX(0.9);
}
.hamburger-toggle:checked ~ .hamburger-button #hamburger-wrap svg {
  transition-delay: 0s;
}
.hamburger-toggle:checked
  ~ .hamburger-button
  #hamburger-wrap
  svg:first-of-type {
  transform: translateY(0);
}
.hamburger-toggle:checked
  ~ .hamburger-button
  #hamburger-wrap
  svg:first-of-type
  path {
  transition-delay: 0.2s, 0.2s, 0.2s;
}
.hamburger-toggle:checked
  ~ .hamburger-button
  #hamburger-wrap
  svg:nth-of-type(2) {
  transform: translateY(0) scaleY(-1);
}
.hamburger-toggle:checked
  ~ .hamburger-button
  #hamburger-wrap
  svg:nth-of-type(2)
  path {
  transition-delay: 0.2s, 0.2s, 0.2s;
}
.hamburger-toggle:checked
  ~ .hamburger-button
  #hamburger-wrap
  svg:nth-of-type(3)
  path {
  stroke-dasharray: 10000px;
  stroke-dashoffset: 10000px;
  transition-delay: 0.3s, 0.3s, 0.3s;
}
.hamburger-toggle:checked ~ .hamburger-button #hamburger-wrap svg path {
  stroke-dasharray: 5000px;
  stroke-dashoffset: -4150px;
  stroke: #6a00f4;
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: radial-gradient(
    circle at center,
    rgba(34, 34, 34, 0.98) 0,
    rgba(17, 17, 17, 0.98) 100%
  );
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.hamburger-toggle:checked ~ .mobile-menu {
  opacity: 1;
  pointer-events: auto;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 3vh, 1.5rem);
  align-items: center;
  padding: clamp(1.5rem, 4vh, 2rem);
  max-width: 420px;
  width: 90%;
  max-height: 85vh;
  overflow-y: auto;
}
.mobile-navtag {
  text-decoration: none;
  color: #fff;
  font-size: clamp(1.25rem, 3.5vw, 1.5rem);
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: clamp(0.75rem, 2vh, 1rem) clamp(1.5rem, 4vw, 2rem);
  border-radius: 16px;
  transition: all 0.3s ease;
  text-align: center;
  width: 100%;
  display: block;
}
.mobile-navtag:hover {
  background: rgba(116, 116, 220, 0.3);
  transform: translateX(10px);
}
.mobile-dropdown {
  width: 100%;
}
.mobile-dropdown-toggle {
  cursor: pointer;
}
.mobile-dropdown-menu {
  display: none;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 0.5rem;
  padding-left: 1rem;
}
.mobile-dropdown.active .mobile-dropdown-menu {
  display: flex;
}
.mobile-dropdown-menu a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  padding: 0.8rem 1.5rem;
  transition: all 0.3s ease;
  border-radius: 16px;
}
#all-sr {
  color: #a78bfa;
}
.mobile-dropdown-menu a:hover {
  color: #fff;
  background: rgba(116, 116, 220, 0.2);
  transform: translateX(8px);
  border-radius: 4px;
}
.mobile-cta-btn {
  margin-top: 1rem;
  padding: clamp(0.85rem, 2vh, 1rem) clamp(1.75rem, 4vw, 2.5rem);
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  background: linear-gradient(
    90deg,
    rgba(116, 116, 220, 0.8) 0,
    rgba(106, 0, 244, 0.8) 100%
  );
  color: #fff;
  box-shadow: 0 8px 24px rgba(106, 0, 244, 0.35);
  width: 100%;
  max-width: 300px;
  border: 0;
}
.mobile-cta-btn:hover {
  background: linear-gradient(90deg, #7474dc 0, #6a00f4 100%);
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(106, 0, 244, 0.5);
}
.dropdown-container {
  position: relative;
  display: inline-block;
}
.dropdown-toggle {
  cursor: pointer;
}
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: -1rem;
  background: rgba(26, 26, 26, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1000;
  margin-top: 0;
  padding: 0;
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.2);
}
.dropdown-container:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-menu a {
  display: block;
  padding: 0.8rem 1.5rem;
  color: #a7a7a7;
  text-decoration: none;
  font-size: 0.95rem;
  letter-spacing: 0.05rem;
  transition: all 0.2s ease;
  border: none;
  text-transform: none;
}
.dropdown-menu a:first-child {
  border-radius: 14px 14px 0 0;
}
.dropdown-menu a:last-child {
  border-radius: 0 0 14px 14px;
}
.dropdown-menu a:hover {
  background-color: rgba(116, 116, 220, 0.5);
  color: #fff;
  padding-left: 2rem;
}
.container {
  width: 100%;
  height: 90%;
  display: flex;
  align-items: center;
  justify-content: left;
}
main {
  display: flex;
  align-items: baseline;
  justify-content: left;
  min-height: calc(100vh - var(--nav-height, 72px));
  padding: clamp(3rem, 8vh, 5.5rem) clamp(1.5rem, 5vw, 3.5rem);
  position: relative;
}
main::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 150vh;
  background: radial-gradient(
    circle at center,
    rgba(0, 0, 0, 0) 0,
    rgba(0, 0, 0, 0.25) 100%
  );
  pointer-events: none;
  z-index: 1;
}
.content {
  max-width: 960px;
  width: 100%;
  z-index: 10;
  padding: 0 clamp(1rem, 4vw, 2.5rem);
  color: #fafaff;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  align-items: flex-start;
  text-align: left;
  position: relative;
}
.content p {
  margin: 0;
  color: rgba(255, 255, 255, 0.85);
}
.content h1 {
  font-size: clamp(2.1rem, 5vw, 3.8rem);
  letter-spacing: -0.018em;
  line-height: 1.06;
  color: #fff;
  margin: 0 auto;
  display: block;
  text-align: left;
  font-weight: 800;
  text-transform: uppercase;
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: anywhere;
  word-break: break-word;
  hyphens: auto;
  text-wrap: balance;
}
.h1-line {
  display: inline-block;
  text-align: left;
  max-width: 100%;
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: break-word;
  hyphens: auto;
}
.hero-subtitle {
  color: rgba(250, 250, 255, 0.65);
}
@media (min-width: 769px) {
  .content h1 .h1-line:first-child {
    display: block;
    margin-bottom: 0.2rem;
  }
  .content h1 .h1-line:nth-child(2),
  .content h1 .h1-line:nth-child(3) {
    display: inline-block;
    white-space: normal;
  }
  .content h1 .h1-line:nth-child(2)::after {
    content: " ";
  }
}
@media (max-width: 768px) {
  .content h1 {
    font-size: clamp(1.95rem, 9.4vw, 3rem);
    line-height: 1.1;
    letter-spacing: -0.014em;
  }

  .content h1 .h1-line {
    display: block;
    white-space: normal;
    overflow-wrap: anywhere;
    word-break: break-word;
    text-wrap: balance;
  }
}
.content p.description {
  font-size: clamp(1rem, 2.5vw, 1.35rem);
  font-weight: 400;
  line-height: 1.55;
  margin-bottom: 0.5rem;
  max-width: 56ch;
}
.content .eyebrow {
  margin-bottom: 0.5rem;
  margin-top: 0;
  font-size: clamp(0.72rem, 1.2vw, 0.9rem);
  letter-spacing: 0.35em;
  color: rgba(255, 255, 255, 0.7);
}
.buttons {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: center;
  margin-top: 1.25rem;
  flex-wrap: wrap;
}
.btn-get-started {
  text-decoration: none;
  padding: 0.9rem 2.3rem;
  border-radius: 999px;
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  transition: all 0.2s ease;
  color: #fff;
  background: linear-gradient(90deg, #7474dc 0, #6a00f4 100%);
  box-shadow: 0 8px 24px rgba(106, 0, 244, 0.25);
  border: none;
  white-space: nowrap;
}
.btn-get-started:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(106, 0, 244, 0.28);
}
.btn-signin-main {
  text-decoration: none;
  background: 0 0;
  color: #dcdcff;
  padding: 0.85rem 1.9rem;
  border-radius: 999px;
  font-size: clamp(0.95rem, 1.4vw, 1.05rem);
  font-weight: 600;
  letter-spacing: 0.06em;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition:
    background-color 0.2s ease,
    transform 0.2s ease;
  white-space: nowrap;
}
.btn-signin-main:hover {
  background-color: rgba(255, 255, 255, 0.03);
  transform: translateY(-2px);
}
.btn-secondary {
  text-decoration: none;
  background: 0 0;
  color: #dcdcff;
  padding: 0.9rem 1.8rem;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: all 0.3s ease;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.btn-secondary:hover {
  background: rgba(116, 116, 220, 0.08);
  border-color: rgba(116, 116, 220, 0.25);
  color: #fafaff;
}
.contact-info-section {
  width: 100%;
  padding: 5% 5% 2% 5% !important;
}
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}
.contact-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 1.75rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}
.contact-card h3 {
  margin: 0.3rem 0 0.6rem 0;
  font-size: 1.4rem;
}
.contact-card a {
  color: #fafaff;
  text-decoration: none;
}
.contact-form-section {
  width: 100%;
}
.contact-form-container {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: clamp(2rem, 6vw, 3rem);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  align-items: start;
}
.contact-form-copy p {
  color: rgba(250, 250, 255, 0.7);
  line-height: 1.7;
}
.contact-divider {
  text-align: center;
}
.divider-label {
  font-size: 0.95rem;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin: 0;
}
.calendar-section {
  background: linear-gradient(135deg, #1a1a24 0, #0d0d10 100%);
}
.calendar-container {
  text-align: center;
}
.calendar-container p {
  color: rgba(250, 250, 255, 0.85);
  max-width: 720px;
  margin: 0 auto 2rem;
}
.calendar-embed {
  margin-top: 2rem;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  background: #fff;
  padding: 0.5rem;
}
.calendar-embed iframe {
  display: block;
  width: 100%;
  height: 600px;
  border: 0;
  border-radius: 20px;
}
.spline-bg {
  position: fixed;
  inset: 0;
  top: 0;
  right: 0;
  width: 100vw;
  height: 100vh;
  z-index: 0;
  transform: translateZ(0);
}
[class*="-section"] {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  background: #111;
  max-width: 100%;
  z-index: 1;
}
[class*="-section"] > div {
  position: relative;
  z-index: 2;
}
.eyebrow {
  font-size: 0.85rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 0.75rem;
  display: inline-block;
}
.about-section {
  position: relative;
}

.lite-badge{
  z-index: -9999999 !important;
}

.reviews-right .reviews-cta h2,
.reviews-right h2 {
  color: #111 !important;
}
.reviews-cta h2 {
  font-family: var(--cimsor);
  font-weight: 800;
  letter-spacing: -0.02em;
}
.about-section,
.reviews-section {
  background: linear-gradient(180deg, #0f0f12 0, #0d0d10 100%);
  position: relative;
  isolation: isolate;
}
.about-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at top right,
    rgba(106, 0, 244, 0.12),
    transparent 65%
  );
  z-index: 1;
}
.about-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  align-items: center;
}
.about-content p {
  color: rgba(255, 255, 255, 0.82);
}
.about-list {
  list-style: none;
  margin: 2rem 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.about-list li {
  position: relative;
  padding-left: 1.8rem;
  color: #fff;
}
.about-list li::before {
  content: ">";
  position: absolute;
  left: 0;
  color: #b380ff;
  font-size: 1.4rem;
  line-height: 1;
  font-weight: 900;
}
.about-metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.2rem;
}
.metric-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  padding: 1.5rem;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}
.metric-card:hover {
  border-color: rgba(179, 128, 255, 0.6);
  transform: translateY(-6px);
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.metric-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.6);
}
.metric-value {
  font-size: 2.4rem;
  font-weight: 700;
  margin: 0.4rem 0;
  color: #fff;
}
.metric-card small {
  color: rgba(255, 255, 255, 0.65);
}
.references-section {
  position: relative;
  background: #0e0813;
  overflow: hidden;
}
@keyframes spotMove {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.95;
  }
  25% {
    transform: translate3d(38px, -22px, 0) scale(1.06);
    opacity: 0.92;
  }
  50% {
    transform: translate3d(78px, 12px, 0) scale(0.98);
    opacity: 0.9;
  }
  75% {
    transform: translate3d(36px, 32px, 0) scale(1.03);
    opacity: 0.93;
  }
  100% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.95;
  }
}
.references-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.references-head {
  text-align: left;
  margin-bottom: 2rem;
}
.references-head h2 {
  margin-bottom: 1rem;
}
.references-head p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}
.references-filter {
  display: flex;
  gap: 1rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}
.filter-btn {
  padding: 0.75rem 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: var(--torzs);
}
.filter-btn:hover {
  background: rgba(116, 116, 220, 0.15);
  border-color: rgba(116, 116, 220, 0.4);
  color: #fafaff;
  transform: translateY(-2px);
}
.filter-btn.active {
  background: linear-gradient(135deg, #7474dc, #a78bfa);
  border-color: #7474dc;
  color: #fff;
  box-shadow: 0 4px 15px rgba(116, 116, 220, 0.3);
}
.references-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  padding-top: 4%;
}
.reference-card {
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  border-radius: 0.75rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.reference-card.hidden {
  display: none;
}
.reference-card:hover {
  transform: translateY(-5px);
  box-shadow:
    0 20px 25px -5px rgba(116, 116, 220, 0.15),
    0 10px 10px -5px rgba(116, 116, 220, 0.1);
  border-color: #7474dc;
}
.reference-card-image {
  height: 12rem;
  background: #333;
  position: relative;
  overflow: hidden;
}
.reference-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, #1a1a1a, transparent);
  z-index: 10;
}
.reference-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
  transition: all 0.5s ease;
}
.reference-card:hover .reference-card-image img {
  transform: scale(1.05);
  opacity: 1;
}
.reference-status {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 20;
  padding: 0.5rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 9999px;
  backdrop-filter: blur(10px);
}
.status-blue {
  background: rgba(59, 130, 246, 0.2);
  color: #60a5fa;
  border: 1px solid rgba(59, 130, 246, 0.3);
}
.status-yellow {
  background: rgba(234, 179, 8, 0.2);
  color: #fbbf24;
  border: 1px solid rgba(234, 179, 8, 0.3);
}
.status-green {
  background: rgba(34, 197, 94, 0.2);
  color: #4ade80;
  border: 1px solid rgba(34, 197, 94, 0.3);
}
.reference-card-content {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.reference-card-content h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fafaff;
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}
.reference-card:hover .reference-card-content h3 {
  color: #7474dc;
}
.reference-card-content p {
  color: #a0a0a0;
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
  flex-grow: 1;
  line-height: 1.6;
}
.reference-card-footer {
  margin-top: auto;
}
.reference-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.75rem;
  color: #6b7280;
  margin-bottom: 1rem;
}
.reference-meta span {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.reference-meta i {
  font-size: 0.75rem;
}
.reference-btn {
  display: block;
  width: 100%;
  text-align: center;
  padding: 0.75rem 1rem;
  background: 0 0;
  border: 1px solid #7474dc;
  color: #7474dc;
  font-weight: 600;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
  text-decoration: none;
}
.reference-btn:hover {
  background: #7474dc;
  color: #fff;
  box-shadow: 0 0 15px rgba(116, 116, 220, 0.5);
}
.blog-section {
  background: #0f0f13;
  position: relative;
}
.about-section {
  background-color: #0f0f12;
  isolation: isolate;
}
.services-section {
  background-color: #0e0b13;
  border-top: 0;
}
.references-section::before {
  background: radial-gradient(
    circle,
    rgba(138, 92, 255, 0.45),
    transparent 65%
  );
}
.stepper-section {
  background-color: transparent;
}
.reviews-section {
  background-color: #0d0d10;
}
.case-studies-section {
  background-color: #111;
}
.timeline-section {
  background-color: #0e0e11;
}
.why-section {
  background-color: #0b0b0f;
}
.blog-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.blog-title {
  font-family: var(--torzs);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 2.5rem;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 1024px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
}
.blog-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-height: 320px;
  transition: all 0.3s ease;
  text-decoration: none;
}
.blog-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: #7474dc;
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(116, 116, 220, 0.2);
}
.blog-card-thumb {
  display: none;
}
.blog-card-body {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 1;
}
.blog-card-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}
.blog-tag {
  padding: 0.35rem 1rem;
  border-radius: 999px;
  background: rgba(116, 116, 220, 0.2);
  color: #a78bfa;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.75rem;
  font-weight: 700;
}
.blog-date {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}
.blog-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
  margin: 0.5rem 0 1rem;
}
.blog-excerpt {
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.6;
  font-size: 1rem;
  margin: 0;
  flex: 1;
}
.text-link {
  color: #a78bfa;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  margin-top: auto;
  display: inline-block;
  transition: all 0.2s ease;
}
.text-link:hover {
  color: #c9b3ff;
  transform: translateX(4px);
}
.service-cta-section,
.service-deliverables,
.service-detail,
.service-hero,
.service-stats {
  width: 100%;
}
.service-hero {
  position: relative;
  padding: 8rem 0 4rem;
  min-height: 70vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.service-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: #111;
}
.service-hero-inner {
  position: relative;
  z-index: 2;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  align-items: center;
}
.service-hero-copy p {
  color: rgba(255, 255, 255, 0.82);
  max-width: 540px;
}
.service-hero-badges {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin: 1.5rem 0;
}
.service-badge {
  padding: 0.4rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
}
.service-hero-aside {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
}
.service-hero-aside ul {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.service-hero-aside li {
  display: flex;
  gap: 0.8rem;
  align-items: center;
  color: rgba(255, 255, 255, 0.85);
}
.service-hero-aside li::before {
  content: "✓";
  color: #b380ff;
  font-weight: 600;
}
.card {
  width: 100%;
  max-width: 380px;
  min-height: 450px;
  background: rgba(117, 116, 220, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 2px solid rgba(117, 116, 220, 0.3);
  border-radius: 20px;
  padding: clamp(1.5rem, 3vw, 2rem);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow:
    0 8px 32px 0 rgba(117, 116, 220, 0.2),
    inset 0 0 20px rgba(250, 250, 255, 0.05);
  transition: all 0.3s ease;
  color: #fafaff;
}
.card:hover {
  background: rgba(117, 116, 220, 0.15);
  border-color: rgba(117, 116, 220, 0.5);
  box-shadow:
    0 12px 48px 0 rgba(117, 116, 220, 0.3),
    inset 0 0 20px rgba(250, 250, 255, 0.1);
  transform: translateY(-5px);
}
.card-header {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.card-icon {
  width: 50px;
  height: 50px;
  background: rgba(117, 116, 220, 0.3);
  border: 2px solid rgba(117, 116, 220, 0.6);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}
.card-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #fafaff;
  margin: 0;
}
.card-description {
  font-size: 0.9rem;
  color: rgba(250, 250, 255, 0.7);
  line-height: 1.6;
  margin: 0;
}
.card-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.card-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.8rem;
  background: rgba(117, 116, 220, 0.08);
  border-radius: 10px;
  transition: all 0.3s ease;
}
.card-item:hover {
  background: rgba(117, 116, 220, 0.15);
  transform: translateX(5px);
}
.card-item-icon {
  width: 32px;
  height: 32px;
  background: rgba(117, 116, 220, 0.4);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #cae769;
  font-weight: 700;
}
.card-item-text {
  font-size: 0.85rem;
  color: rgba(250, 250, 255, 0.8);
}
.card-footer {
  display: flex;
  gap: 0.8rem;
}
.card-btn {
  flex: 1;
  padding: 0.8rem 1rem;
  border: 2px solid rgba(117, 116, 220, 0.4);
  background: rgba(117, 116, 220, 0.15);
  color: #fafaff;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  text-decoration: none;
  width: 100%;
  max-height: 20%;
}
.card-btn:hover {
  background: rgba(117, 116, 220, 0.3);
  border-color: rgba(117, 116, 220, 0.6);
  box-shadow: 0 0 20px rgba(117, 116, 220, 0.3);
}
.card-btn.primary {
  background: rgba(117, 116, 220, 0.4);
  border-color: rgba(117, 116, 220, 0.6);
  color: #fafaff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}
.card-btn.primary:hover {
  background: rgba(117, 116, 220, 0.6);
  color: #fafaff;
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.22);
}
.services-showcase {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(4rem, 10vh, 6rem) 0;
  background-color: #0f0f12;
  background-image:
    radial-gradient(
      circle at 18% -22%,
      rgba(116, 116, 220, 0.08) 0,
      transparent 40%
    ),
    radial-gradient(
      circle at 80% -6%,
      rgba(167, 139, 250, 0.06) 0,
      transparent 44%
    );
  border-top: 1px solid rgba(255, 255, 255, 0.035);
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}
.services-showcase::before {
  content: "";
  position: absolute;
  inset: -40% -45% -10% -45%;
  background:
    radial-gradient(
      circle at 28% 30%,
      rgba(167, 139, 250, 0.12) 0,
      transparent 56%
    ),
    radial-gradient(
      circle at 70% 70%,
      rgba(116, 116, 220, 0.1) 0,
      transparent 60%
    ),
    radial-gradient(
      circle at 52% 118%,
      rgba(231, 206, 255, 0.06) 0,
      transparent 66%
    );
  opacity: 0.16;
  pointer-events: none;
  z-index: 0;
  filter: blur(1px);
  animation: servicesBackdropDrift 20s ease-in-out infinite alternate;
  transform: translate3d(0, 0, 0) scale(1.05);
}
.services-showcase::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(
      ellipse at center,
      rgba(0, 0, 0, 0) 0,
      rgba(0, 0, 0, 0.08) 56%,
      rgba(0, 0, 0, 0.18) 100%
    ),
    linear-gradient(180deg, rgba(0, 0, 0, 0.14), rgba(0, 0, 0, 0.18));
}
@keyframes servicesBackdropDrift {
  0% {
    transform: translate3d(-1%, -1%, 0) scale(1.05);
    opacity: 0.22;
  }
  50% {
    transform: translate3d(1.4%, 0.8%, 0) scale(1.07);
    opacity: 0.26;
  }
  100% {
    transform: translate3d(-1.2%, 1.6%, 0) scale(1.06);
    opacity: 0.22;
  }
}
.services-showcase > .services-wrapper {
  position: relative;
  z-index: 2;
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
  align-items: stretch;
}
.services-intro,
.services-showcase-intro {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: clamp(3rem, 6vh, 4rem) var(--gutter);
  margin: 0;
  max-width: 100%;
  position: relative;
  z-index: 2;
}
.services-intro > div:first-child {
  flex: 1;
  text-align: left;
}
.services-intro .eyebrow {
  margin: 0 0 1rem 0;
}
.services-intro h2 {
  margin-bottom: 0;
  max-width: none;
}
.services-intro-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
  white-space: nowrap;
  flex-shrink: 0;
}
.about-content h2,
.services-intro h2,
.services-showcase-intro h2 {
  font-family: var(--cimsor);
  font-size: clamp(2.2rem, 4.8vw, 3.4rem);
  line-height: 1.15;
  margin-bottom: 1.2rem;
  color: #fafaff;
  max-width: 100%;
  letter-spacing: -0.02em;
}
.services-showcase-lead {
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.05rem;
  line-height: 1.7;
}
.services-showcase-stack {
  width: 100%;
  max-width: 100%;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-top: 2rem;
  position: relative;
  z-index: 2;
  background: 0 0;
}
.services-tabs-wrapper {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  z-index: 2;
  background: rgba(16, 16, 26, 0.55);
  border: 1px solid rgba(167, 139, 250, 0.18);
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(12px);
}
.services-tabs {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: flex-start;
  align-items: stretch;
  align-content: stretch;
  background: 0 0;
  padding: 0.9rem;
  margin: 0;
  position: relative;
  overflow: visible;
}
.services-tabs::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  pointer-events: none;
  z-index: 0;
}
.services-tab {
  flex: 1 1 220px;
  min-width: 220px;
  padding: 1rem 1.4rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.8rem;
  position: relative;
  margin: 0;
  z-index: 1;
  white-space: normal;
  text-align: left;
  min-height: 50px;
}
.services-tab:hover {
  background: rgba(116, 116, 220, 0.08);
  border-color: rgba(116, 116, 220, 0.25);
  color: #fafaff;
}
.services-tab.active {
  background: rgba(116, 116, 220, 0.15);
  border-color: rgba(167, 139, 250, 0.4);
  color: #fafaff;
  z-index: 2;
  box-shadow: inset 0 0 0 1px rgba(167, 139, 250, 0.4);
}
.tab-icon {
  font-size: 1.3rem;
}
.tab-label {
  letter-spacing: 0.3px;
}
.services-tab-panel {
  display: none;
  animation: fadeInPanel 0.4s ease-out;
}
.services-tab-panel.active {
  display: block;
  padding: 0;
}
@keyframes fadeInPanel {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.service-card {
  background: 0 0;
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: clamp(2rem, 5vw, 3rem);
  backdrop-filter: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  margin: 0;
}
.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 100% 0,
      rgba(116, 116, 220, 0.1),
      transparent 50%
    ),
    radial-gradient(
      circle at 0 100%,
      rgba(167, 139, 250, 0.08),
      transparent 50%
    );
  pointer-events: none;
  z-index: 0;
}
.service-card:hover {
  border-color: rgba(116, 116, 220, 0.4);
  background: rgba(22, 22, 38, 0.7);
  box-shadow: 0 20px 60px rgba(116, 116, 220, 0.12);
  transform: translateY(-4px);
}
.service-card-header {
  position: relative;
  z-index: 1;
  margin-bottom: 2rem;
}
.service-card-header h3 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: #fafaff;
  margin-bottom: 0.6rem;
  line-height: 1.2;
}
.service-card-subtitle {
  color: rgba(167, 139, 250, 0.9);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
}
.service-card-content {
  position: relative;
  z-index: 1;
  margin-bottom: 2.5rem;
}
.service-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}
.service-features li {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
  line-height: 1.6;
  padding-left: 1.8rem;
  position: relative;
}
.service-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #7474dc;
  font-weight: 700;
  font-size: 1.1rem;
}
.service-card-footer {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.service-link {
  flex: 1;
  min-width: 160px;
  padding: 0.85rem 1.4rem;
  border-radius: 12px;
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  text-align: center;
  border: 1.5px solid rgba(116, 116, 220, 0.5);
  background: rgba(116, 116, 220, 0.08);
  color: rgba(116, 116, 220, 0.95);
  cursor: pointer;
  transition: all 0.3s ease;
}
.service-link:hover {
  background: rgba(116, 116, 220, 0.15);
  border-color: #7474dc;
  color: #fafaff;
}
.service-link.primary {
  background: linear-gradient(135deg, #7474dc, #a78bfa);
  border-color: #7474dc;
  color: #fafaff;
}
.service-link.primary:hover {
  background: linear-gradient(135deg, #8a8ae8, #b5a1ff);
  box-shadow: 0 12px 32px rgba(116, 116, 220, 0.3);
}
.service-link.secondary {
  background: 0 0;
}
.service-link.secondary:hover {
  background: rgba(116, 116, 220, 0.12);
}
.services-scroll-deco {
  position: absolute;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  left: 100%;
  top: 0;
  transform: translate(-50%, -50%);
  background: radial-gradient(
    circle at 40% 40%,
    #a78bfa 0,
    #7474dc 55%,
    rgba(116, 116, 220, 0) 70%
  );
  box-shadow:
    0 0 18px rgba(167, 139, 250, 0.45),
    0 0 36px rgba(116, 116, 220, 0.2);
  opacity: 0;
  transition: opacity 160ms ease;
  will-change: transform, left, top, opacity;
}
@media (prefers-reduced-motion: reduce) {
  .services-scroll-deco {
    display: none;
  }
}
.service-slice {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}
.service-slice--reverse {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
}
.service-slice--reverse .service-slice-media {
  order: 2;
}
.service-slice--reverse .service-slice-content {
  order: 1;
}
.service-slice-media {
  position: relative;
}
.service-mockup {
  position: relative;
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
}
.service-mockup-frame {
  position: relative;
  border-radius: 28px;
  padding: clamp(1.6rem, 4vw, 2.2rem);
  background: rgba(12, 12, 18, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(12px);
  min-height: clamp(320px, 45vh, 380px);
  z-index: 1;
}
.service-mockup-glow {
  position: absolute;
  inset: -6% -8%;
  background:
    radial-gradient(
      circle at 50% 20%,
      rgba(167, 139, 250, 0.22),
      transparent 46%
    ),
    radial-gradient(
      circle at 20% 80%,
      rgba(125, 211, 252, 0.16),
      transparent 52%
    );
  filter: blur(6px);
  z-index: 0;
}
.service-mockup--web .service-mockup-glow {
  background:
    radial-gradient(
      circle at 40% 15%,
      rgba(167, 139, 250, 0.25),
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 75%,
      rgba(125, 211, 252, 0.16),
      transparent 58%
    );
}
.service-mockup--social .service-mockup-glow {
  background:
    radial-gradient(
      circle at 70% 20%,
      rgba(125, 211, 252, 0.28),
      transparent 50%
    ),
    radial-gradient(
      circle at 30% 80%,
      rgba(116, 116, 220, 0.2),
      transparent 58%
    );
}
.service-mockup--content .service-mockup-glow {
  background:
    radial-gradient(
      circle at 45% 20%,
      rgba(116, 116, 220, 0.28),
      transparent 50%
    ),
    radial-gradient(
      circle at 30% 80%,
      rgba(247, 168, 255, 0.16),
      transparent 58%
    );
}
.service-media-image {
  position: relative;
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
  background: rgba(12, 12, 18, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(12px);
}
.service-media-image--web {
  min-height: clamp(320px, 45vh, 380px);
  padding: 16px;
}
.service-media-image--web img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}
.service-media-image--content,
.service-media-image--social {
  min-height: clamp(320px, 45vh, 380px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(1.6rem, 4vw, 2.2rem);
}
.service-media-image svg {
  width: 100%;
  height: 100%;
  max-width: 100%;
}
.service-media-image::before {
  content: "";
  position: absolute;
  inset: -6% -8%;
  background:
    radial-gradient(
      circle at 50% 20%,
      rgba(167, 139, 250, 0.22),
      transparent 46%
    ),
    radial-gradient(
      circle at 20% 80%,
      rgba(125, 211, 252, 0.16),
      transparent 52%
    );
  filter: blur(6px);
  z-index: -1;
  pointer-events: none;
}
.service-media-image--web::before {
  background:
    radial-gradient(
      circle at 40% 15%,
      rgba(167, 139, 250, 0.25),
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 75%,
      rgba(125, 211, 252, 0.16),
      transparent 58%
    );
}
.service-media-image--social::before {
  background:
    radial-gradient(
      circle at 70% 20%,
      rgba(125, 211, 252, 0.28),
      transparent 50%
    ),
    radial-gradient(
      circle at 30% 80%,
      rgba(116, 116, 220, 0.2),
      transparent 58%
    );
}
.service-media-image--content::before {
  background:
    radial-gradient(
      circle at 45% 20%,
      rgba(116, 116, 220, 0.28),
      transparent 50%
    ),
    radial-gradient(
      circle at 30% 80%,
      rgba(247, 168, 255, 0.16),
      transparent 58%
    );
}
.mockup-sidebar {
  border-radius: 18px;
  background: linear-gradient(
    135deg,
    rgba(167, 139, 250, 0.3),
    rgba(116, 116, 220, 0.25)
  );
  min-height: 200px;
}
.mockup-main {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.mockup-block {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  height: 12px;
  width: 70%;
}
.mockup-block.long {
  width: 100%;
}
.mockup-cta-row {
  display: flex;
  gap: 0.6rem;
  margin-top: 0.8rem;
}
.mockup-cta-row span {
  flex: 1;
  height: 32px;
  border-radius: 999px;
  background: linear-gradient(135deg, #7474dc, #a78bfa);
  opacity: 0.65;
}
.service-slice-content h3 {
  font-size: clamp(2rem, 4.2vw, 2.8rem);
  margin-bottom: 1rem;
  color: #fafaff;
}
.service-slice-text {
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.75;
  margin-bottom: 1.8rem;
}
.service-accordion {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.service-accordion-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.service-accordion-toggle {
  width: 100%;
  background: 0 0;
  border: none;
  color: #fafaff;
  font-size: 1.05rem;
  font-weight: 600;
  padding: 1.1rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: color 0.2s ease;
}
.service-accordion-toggle:hover {
  color: #fff;
}
.service-accordion-icon {
  width: 1.8rem;
  height: 1.8rem;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  transition:
    transform 0.25s ease,
    background 0.25s ease;
}
.service-accordion-icon::before {
  content: "+";
  line-height: 1;
}
.service-accordion-toggle[aria-expanded="true"] .service-accordion-icon {
  background: rgba(167, 139, 250, 0.25);
  border-color: rgba(167, 139, 250, 0.45);
}
.service-accordion-toggle[aria-expanded="true"]
  .service-accordion-icon::before {
  content: "−";
}
.service-accordion-panel {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition:
    max-height 0.35s ease,
    opacity 0.35s ease;
}
.service-accordion-panel p {
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.65;
  padding: 0 0 1.4rem;
  font-size: 0.98rem;
}
.service-accordion-item.is-open .service-accordion-panel {
  max-height: 320px;
  opacity: 1;
}
.service-slice-cta {
  margin-top: 1.6rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.service-cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 2.5rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  border: 1px solid transparent;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
}
.service-cta-button.primary {
  background: #fafaff;
  color: #0b0b11;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}
.service-cta-button.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.45);
}
.service-cta-button.secondary {
  background: 0 0;
  color: #fafaff;
  border-color: rgba(255, 255, 255, 0.25);
}
.service-cta-button.secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}
@media (max-width: 1024px) {
  .service-slice {
    grid-template-columns: 1fr;
  }
  .service-slice--reverse {
    grid-template-columns: 1fr;
  }
  .service-slice-content,
  .service-slice-media {
    order: initial !important;
  }
  .service-slice-media {
    max-width: 480px;
    margin: 0 auto;
  }
}
@media (max-width: 768px) {
  .services-showcase {
    padding: 2.5rem 0;
  }
  .services-intro {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
    padding: 2rem var(--gutter);
  }
  .services-intro > div:first-child {
    width: 100%;
  }
  .services-intro-actions {
    width: 100%;
    flex-direction: column;
    white-space: normal;
    flex-shrink: unset;
  }
  .services-intro-actions .btn-secondary {
    width: 100%;
  }
  .services-showcase-stack {
    padding: 1rem;
  }
  .services-tabs-wrapper {
    border-radius: 20px;
    padding: 0;
  }
  .services-tabs {
    gap: 0.6rem;
    padding: 0.6rem;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
  .services-tab {
    padding: 0.55rem 0.75rem;
    font-size: 0.75rem;
    min-height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
    min-width: 0;
    flex: 1 1 calc(50% - 0.3rem);
    max-width: calc(50% - 0.3rem);
    border-radius: 12px;
  }
  .tab-icon {
    font-size: 0.9rem;
    margin: 0 0.25rem 0 0;
  }
  .tab-label {
    display: inline;
    font-size: 0.75rem;
  }
  .services-tab.active .tab-label {
    display: inline;
  }
  .services-tab:nth-child(5) {
    flex: 1 1 100%;
    max-width: 100%;
  }
  .service-card {
    padding: 1.25rem;
    border-radius: 14px;
  }
  .service-card-header {
    margin-bottom: 1rem;
  }
  .service-card-header h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    line-height: 1.25;
  }
  .service-card-subtitle {
    font-size: 0.95rem;
    line-height: 1.5;
  }
  .service-card-content {
    margin-bottom: 1.5rem;
  }
  .service-features li {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 0.5rem;
  }
}
@media (max-width: 502px) {
  .services-tabs {
    gap: 0.6rem;
    padding: 0.6rem;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
  .services-tab {
    padding: 0.5rem 0.65rem;
    font-size: 0.65rem;
    min-height: 32px;
    min-width: 0;
    max-width: calc(50% - 0.25rem);
    border-radius: 12px;
  }
  .tab-icon {
    font-size: 0.8rem;
    margin: 0 0.2rem 0 0;
  }
  .tab-label {
    font-size: 0.65rem;
  }
  .services-tab:nth-child(5) {
    flex: 1 1 100%;
    max-width: 100%;
  }
  .service-card-footer {
    flex-direction: column;
    gap: 0.75rem;
  }
  .service-link {
    min-width: auto;
    flex: 1;
    padding: 0.9rem 1.5rem;
    text-align: center;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .service-slice {
    gap: 2.5rem;
  }
  .service-mockup-frame {
    min-height: 260px;
    padding: 1.4rem;
  }
  .mockup-layout {
    grid-template-columns: 1fr;
  }
  .mockup-sidebar {
    display: none;
  }
  .mockup-main {
    gap: 0.7rem;
  }
  .mockup-block {
    width: 100%;
  }
  .mockup-cta-row span {
    height: 28px;
  }
  .service-slice-content h3 {
    font-size: 1.8rem;
  }
  .service-slice-cta {
    flex-direction: column;
    align-items: stretch;
  }
  .service-cta-button {
    width: 100%;
  }
}
.services-section {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8rem 0;
  width: 100%;
  min-height: 100vh;
  background-color: transparent;
  position: relative;
  overflow: hidden;
  margin: 0;
}
.services-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #111;
  z-index: 1;
}
.services-container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  position: relative;
  z-index: 2;
}
.services-title {
  font-size: 3rem;
  font-weight: 700;
  color: #fafaff;
  text-align: center;
  margin-bottom: 3rem;
  letter-spacing: 0.05em;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.services-grid .card {
  max-width: none;
  height: auto;
}
.services-grid .card-title {
  font-size: 1.3rem;
}
.services-grid .card-description {
  font-size: 0.85rem;
}
.why-section {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background: linear-gradient(180deg, #0f0f13 0, #0b0b0f 50%, #09090c 100%);
  color: #fafaff;
}
.why-container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.why-title {
  font-size: 3rem;
  font-weight: 700;
  color: #fafaff !important;
  text-align: center;
  margin-bottom: 3rem;
  letter-spacing: 0.05em;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.why-card {
  width: 100%;
  max-width: 350px;
  background: rgba(255, 255, 255, 0.08);
  border: 1.5px solid rgba(116, 116, 220, 0.25);
  border-radius: 16px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: flex-start;
  box-shadow: 0 8px 32px rgba(116, 116, 220, 0.1);
  transition: all 0.3s ease;
  color: #fafaff;
  margin: 0 auto;
  backdrop-filter: blur(10px);
}
.why-card:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(116, 116, 220, 0.4);
  box-shadow: 0 12px 40px rgba(116, 116, 220, 0.2);
  transform: translateY(-5px);
}
.why-card-icon {
  font-size: 2.5rem;
  display: block;
  color: #a78bfa;
}
.why-card-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #a78bfa;
  margin: 0;
}
.why-card-description {
  font-size: 0.95rem;
  color: rgba(250, 250, 255, 0.7);
  line-height: 1.7;
  margin: 0;
}
.timeline-section {
  width: 100%;
  min-height: 100vh;
  background-color: #111;
  padding: 5rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.timeline-container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.timeline-title {
  font-size: 3rem;
  font-weight: 700;
  color: #fafaff;
  text-align: center;
  margin-bottom: 4rem;
  letter-spacing: 0.05em;
}
.timeline {
  position: relative;
  padding: 0;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(116, 116, 220, 0.3) 0,
    rgba(116, 116, 220, 0.8) 50%,
    rgba(116, 116, 220, 0.3) 100%
  );
}
.timeline-item {
  margin-bottom: 3rem;
  position: relative;
}
.timeline-item.left {
  margin-left: 0;
  margin-right: 50%;
  padding-right: 3rem;
  text-align: right;
}
.timeline-item.right {
  margin-left: 50%;
  margin-right: 0;
  padding-left: 3rem;
  text-align: left;
}
.timeline-item::before {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  background: #7474dc;
  border: 3px solid #111;
  border-radius: 50%;
  top: 0;
  box-shadow: 0 0 0 3px rgba(116, 116, 220, 0.4);
}
.timeline-item.left::before {
  right: -35px;
}
.timeline-item.right::before {
  left: -35px;
}
.timeline-content {
  background: rgba(116, 116, 220, 0.05);
  border: 2px solid rgba(116, 116, 220, 0.2);
  border-radius: 15px;
  padding: 2rem;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}
.timeline-content:hover {
  background: rgba(116, 116, 220, 0.1);
  border-color: rgba(116, 116, 220, 0.4);
  box-shadow: 0 8px 32px rgba(116, 116, 220, 0.15);
  transform: translateY(-3px);
}
.timeline-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #7474dc;
  margin-bottom: 0.5rem;
  display: inline-block;
}
.timeline-subtitle {
  font-size: 1.5rem;
  font-weight: 600;
  color: #fafaff;
  margin: 0.5rem 0;
}
.timeline-text {
  font-size: 0.95rem;
  color: rgba(250, 250, 255, 0.7);
  line-height: 1.7;
  margin: 0;
}
.stepper-section {
  width: 100%;
  min-height: 80vh;
  background-color: rgba(17, 17, 17, 0.55) !important;
  padding: 5rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.stepper-section {
  position: relative;
  isolation: isolate;
  -webkit-backdrop-filter: blur(6px) saturate(1.05);
  backdrop-filter: blur(6px) saturate(1.05);
}
.stepper-container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.stepper-title {
  font-family: var(--torzs);
  font-size: 3rem;
  font-weight: 800;
  color: #fafaff;
  text-align: center;
  margin-bottom: 4rem;
  letter-spacing: -0.02em;
}
.stepper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0;
  flex-wrap: wrap;
}
.stepper-item {
  flex: 1;
  min-width: 200px;
  text-align: center;
  padding: 2rem 1.5rem;
  position: relative;
}
.stepper-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #7474dc 0, rgba(116, 116, 220, 0.8) 100%);
  color: #fafaff;
  font-size: 1.8rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  box-shadow: 0 8px 24px rgba(116, 116, 220, 0.3);
  transition: all 0.3s ease;
}
.stepper-item:hover .stepper-number {
  transform: scale(1.1);
  box-shadow: 0 12px 36px rgba(116, 116, 220, 0.4);
}
.stepper-label {
  font-size: 1.2rem;
  font-weight: 600;
  color: #7474dc;
  margin-bottom: 0.5rem;
}
.stepper-description {
  font-size: 0.9rem;
  color: rgba(250, 250, 255, 0.65);
  line-height: 1.6;
  margin: 0;
}
.stepper-line {
  flex: 0.5;
  height: 4px;
  background: linear-gradient(
    90deg,
    rgba(116, 116, 220, 0.8) 0,
    rgba(116, 116, 220, 0.3) 100%
  );
  border-radius: 2px;
  margin: 0 -0.5rem;
}
.case-studies-section {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background-color: #111;
  position: relative;
  overflow: hidden;
  padding: 5rem 0;
}
.case-studies-container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.case-studies-title {
  font-size: 3rem;
  font-weight: 700;
  color: #fafaff;
  text-align: center;
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
}
.case-studies-subtitle {
  font-size: 1.1rem;
  color: rgba(250, 250, 255, 0.6);
  text-align: center;
  margin-bottom: 3rem;
  font-weight: 300;
}
.case-studies-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.case-card {
  background: rgba(116, 116, 220, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 2px solid rgba(116, 116, 220, 0.2);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  color: #fafaff;
}
.case-card:hover {
  background: rgba(116, 116, 220, 0.12);
  border-color: rgba(116, 116, 220, 0.4);
  box-shadow: 0 12px 48px rgba(116, 116, 220, 0.2);
  transform: translateY(-8px);
}
.case-card-header {
  background: linear-gradient(
    135deg,
    rgba(116, 116, 220, 0.15) 0,
    rgba(116, 116, 220, 0.05) 100%
  );
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid rgba(116, 116, 220, 0.2);
}
.case-icon {
  font-size: 2.5rem;
}
.case-card-body {
  padding: 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.case-card-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: #fafaff;
  margin: 0;
}
.case-card-category {
  font-size: 0.85rem;
  color: #7474dc;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0;
}
.case-card-description {
  font-size: 0.95rem;
  color: rgba(250, 250, 255, 0.7);
  line-height: 1.6;
  margin: 0.5rem 0 1rem 0;
}
.case-card-result {
  background: rgba(116, 116, 220, 0.1);
  border: 1px solid rgba(116, 116, 220, 0.2);
  border-radius: 10px;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.result-label {
  font-size: 0.8rem;
  color: rgba(250, 250, 255, 0.5);
  font-weight: 500;
}
.result-value {
  font-size: 1.3rem;
  font-weight: 700;
  color: #7474dc;
}
.case-card-footer {
  padding: 1.5rem 2rem;
  border-top: 1px solid rgba(116, 116, 220, 0.15);
}
.case-btn {
  color: #7474dc;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  display: inline-block;
}
.case-btn:hover {
  color: #fafaff;
  transform: translateX(5px);
}
.site-footer {
  width: 100%;
  background: #000;
  background-image: none;
  position: relative;
  isolation: isolate;
  padding: 4rem 0 2rem;
  color: #fafaff;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  z-index: 100;
}
.footer-container {
  width: 100%;
  max-width: calc(var(--container-max) + 240px);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: minmax(280px, 1.2fr) minmax(0, 2.2fr);
  gap: 4rem;
  align-items: start;
}
.footer-brand p {
  color: rgba(250, 250, 255, 0.7);
  line-height: 1.7;
  margin: 1rem 0;
}
.footer-logo {
  width: 60px;
  height: auto;
  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.35));
}
.footer-socials {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-socials a {
  color: #fafaff;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
  transition:
    color 0.2s ease,
    border-color 0.2s ease;
}
.footer-socials a:hover {
  color: #a889ff;
  border-color: #a889ff;
}
.footer-columns {
  display: grid;
  grid-template-columns: repeat(4, minmax(160px, 1fr));
  gap: 2.25rem 2.5rem;
  align-items: start;
}
.footer-cta-row {
  grid-column: 1/-1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 0.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}
.footer-cta-text {
  font-size: 1.15rem;
  color: rgba(250, 250, 255, 0.8);
}
.footer-cta-arrow {
  font-size: 1.6rem;
  color: #a889ff;
  display: inline-flex;
  align-items: center;
  line-height: 1;
}
.footer-cta-row {
  grid-column: 2;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-top: 0.25rem;
}
.footer-column h3 {
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
  color: #a889ff;
}
.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.footer-column a {
  text-decoration: none;
  color: rgba(250, 250, 255, 0.75);
  transition: color 0.2s ease;
}
.footer-column a:hover {
  color: #fff;
}
.footer-cta {
  padding: 0.9rem 2.3rem;
  border-radius: 999px;
  border: none;
  background: linear-gradient(90deg, #7474dc 0, #6a00f4 100%);
  color: #fff;
  font-weight: 700;
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  letter-spacing: 0.06em;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(106, 0, 244, 0.25);
  transition: all 0.2s ease;
}
.footer-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(106, 0, 244, 0.28);
}
.footer-bottom {
  margin-top: 3rem;
  padding: 1.5rem var(--gutter) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}
@media (min-width: 0px) {
  .about-container,
  .blog-container,
  .case-studies-container,
  .deliverables-grid,
  .process-grid,
  .references-container,
  .service-detail-grid,
  .service-hero-inner,
  .service-stats-grid,
  .services-container,
  .stepper-container,
  .timeline-container,
  .why-container {
    max-width: var(--container-max) !important;
    padding: 0 var(--gutter) !important;
    margin: 0 auto !important;
  }
}
.section-image {
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  padding: 4.5rem 0 4.5rem 0;
}
.section-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(116, 66, 167, 0.38);
  z-index: 1;
}
.section-image > * {
  position: relative;
  z-index: 2;
}
.reviews-section {
  padding: clamp(3.5rem, 8vh, 5rem) 0;
  background: #bebebe;
  color: #111;
}
.reviews-container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 3vw, 2rem);
  align-items: center;
  padding: 0 var(--gutter);
}
.reviews-left {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.review-badge {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: #111;
}
.review-logo {
  display: inline-block;
  padding: 0.35rem 0.7rem;
  border-radius: 8px;
  font-weight: 700;
  background: rgba(127, 66, 167, 0.08);
  color: #7f42a7;
  border: 1px solid rgba(127, 66, 167, 0.09);
}
.review-stars {
  color: #ffd54a;
  font-size: 1.1rem;
}
.review-count {
  font-size: 0.9rem;
  color: rgba(17, 17, 17, 0.7);
}
.review-card {
  position: relative;
  background: linear-gradient(
    180deg,
    rgba(16, 16, 18, 0.98),
    rgba(14, 14, 16, 0.95)
  );
  color: #fafaff;
  padding: 1.6rem 1.8rem;
  border-radius: 16px;
  box-shadow:
    0 18px 48px rgba(17, 17, 17, 0.32),
    inset 0 -2px 8px rgba(255, 255, 255, 0.02);
  max-width: 640px;
  border: 1px solid rgba(127, 66, 167, 0.12);
  overflow: visible;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}
.review-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 26px 70px rgba(17, 17, 17, 0.38),
    inset 0 -2px 12px rgba(255, 255, 255, 0.02);
}
.review-card::before {
  content: "";
  position: absolute;
  left: 0.6rem;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 60%;
  border-radius: 6px;
  background: linear-gradient(
    180deg,
    rgba(123, 83, 255, 0.9),
    rgba(93, 224, 255, 0.6)
  );
  box-shadow: 0 8px 24px rgba(123, 83, 255, 0.12);
  z-index: 0;
}
.review-card .review-author {
  position: relative;
  z-index: 2;
}
.review-card .review-text {
  position: relative;
  z-index: 2;
}
.review-card .quote-deco {
  position: absolute;
  right: 1rem;
  top: -8px;
  font-size: 5.2rem;
  line-height: 1;
  color: rgba(255, 255, 255, 0.06);
  z-index: 0;
  pointer-events: none;
}
.review-author {
  font-weight: 700;
  margin-bottom: 0.4rem;
}
.review-text {
  font-size: 0.95rem;
  line-height: 1.4;
}
.reviews-right {
  display: flex;
  justify-content: flex-end;
}
.reviews-cta {
  width: 100%;
  max-width: 520px;
}
.reviews-cta.card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.96),
    rgba(250, 250, 250, 0.9)
  );
  color: #0f0f12;
  border-radius: 16px;
  padding: 2rem;
  border: 1px solid rgba(127, 66, 167, 0.1);
  box-shadow:
    0 10px 30px rgba(17, 17, 17, 0.06),
    inset 0 -2px 8px rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(8px) saturate(1.05);
  -webkit-backdrop-filter: blur(8px) saturate(1.05);
  max-width: 520px;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease;
}
.reviews-cta.card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 6px;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  background: linear-gradient(90deg, #7f42a7, #6a00f4);
}
.reviews-cta.card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 20px 60px rgba(17, 17, 17, 0.12),
    inset 0 -2px 12px rgba(255, 255, 255, 0.6);
}
.reviews-cta h2 {
  margin-top: 0.4rem;
  color: #0f0f12;
}
.reviews-cta p {
  color: rgba(17, 17, 17, 0.72);
}
.reviews-cta .card-btn,
.reviews-cta .offer-submit,
.reviews-cta button {
  margin-top: 0.25rem;
}
.reviews-cta p + .card-btn,
.reviews-cta p + button {
  margin-top: 0.8rem;
}
#reviews-cta-btn,
.reviews-cta.card .card-btn.primary {
  padding: 0.95rem 1.6rem;
  font-size: 1.08rem;
  border-radius: 12px;
  font-weight: 800;
  letter-spacing: 0.02em;
  box-shadow: 0 14px 36px rgba(99, 0, 197, 0.14);
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    background 0.18s ease;
  background: linear-gradient(90deg, #5b4bd0 0, #7f42a7 100%);
}
#reviews-cta-btn:hover,
.reviews-cta.card .card-btn.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 48px rgba(99, 0, 197, 0.18);
  background: linear-gradient(90deg, #17141a 0, #3b2f5a 100%);
}
.stepper-line:last-child {
  display: none;
}
.case-studies-section {
  padding: 5rem 0;
}
.case-studies-container {
  padding: 0 var(--gutter);
}
.case-studies-title {
  font-size: 2rem;
  margin-bottom: 1rem;
}
.case-studies-grid {
  grid-template-columns: 1fr;
  gap: 1rem;
}
.case-card {
  max-width: none;
}
.offer-modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.offer-modal.active {
  display: flex;
}
@media (min-width: 1440px) {
  :root {
    --container-max: 1200px;
    --gutter: 32px;
  }
  header {
    padding: 1.2rem 6rem;
  }
  img.logo {
    height: 72px;
  }
  nav {
    max-width: var(--container-max);
  }
  .content {
    max-width: var(--container-max);
    padding: 0 24px;
  }
  .content p.description {
    font-size: 1.25rem;
  }
  .buttons {
    gap: 1.35rem;
  }
  .btn-get-started {
    padding: 1rem 2.6rem;
    font-size: 1.08rem;
  }
  .about-container {
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
  }
  .about-metrics {
    grid-template-columns: repeat(3, 1fr);
  }
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.2rem;
  }
  .case-studies-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .blog-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .references-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .reference-card-content {
    padding: 2rem;
  }
  .stepper {
    gap: 1rem;
  }
  .stepper-number {
    width: 80px;
    height: 80px;
    font-size: 2.2rem;
  }
  .reviews-cta.card {
    max-width: 540px;
    padding: 2.4rem;
  }
  .review-card {
    max-width: 720px;
  }
  .footer-container {
    max-width: calc(var(--container-max) + 280px);
    padding: 0 32px;
    grid-template-columns: minmax(300px, 1.2fr) minmax(0, 2.3fr);
  }
  .footer-columns {
    grid-template-columns: repeat(4, minmax(180px, 1fr));
    gap: 2.75rem;
  }
  .footer-bottom {
    padding: 2rem var(--gutter) 0;
  }
  .tag-box {
    display: block;
    position: absolute;
    right: 2rem;
  }
  .tag {
    padding: 0.65rem 1.4rem;
  }
}
@media (max-width: 1024px) {
  #main-nav {
    display: none !important;
  }
  .hamburger-button {
    display: block;
  }
  .tag-box {
    display: none !important;
  }
  header {
    padding: 3rem clamp(1rem, 3vw, 2rem);
  }
  .logo-link {
    left: clamp(1rem, 2vw, 1.5rem);
  }
}
@media (min-width: 1025px) and (max-width: 1200px) {
  :root {
    --container-max: 1100px;
    --gutter: 28px;
  }
  header {
    padding: 3rem clamp(1rem, 3vw, 1.5rem);
    justify-content: space-between;
    gap: 0.5rem;
  }
  img.logo {
    height: clamp(54px, 6vw, 60px);
  }
  .logo-link {
    left: clamp(1rem, 2.5vw, 1.5rem);
  }
  nav {
    padding: 0.3rem 0.6rem;
    gap: 0.1rem;
    max-width: fit-content;
    margin: 0 auto;
    flex-shrink: 1;
  }
  .navtag {
    padding: 0.5rem 0.65rem;
    font-size: 0.82rem;
  }
  .tag-box {
    right: clamp(1rem, 2.5vw, 1.5rem);
    width: 9.5rem;
    height: 2.5rem;
    flex-shrink: 0;
  }
  .tag-box button.tag {
    font-size: 0.85rem;
    padding: 0 0.6rem;
  }
  .dropdown-menu {
    min-width: 170px;
  }
  .dropdown-menu a {
    padding: 0.6rem 0.9rem;
    font-size: 0.85rem;
  }
  .content {
    padding: 0 clamp(1rem, 2vw, 1.5rem);
  }
  .content p.description {
    font-size: 1.05rem;
  }
  .buttons {
    gap: 1rem;
  }
}
@media (min-width: 1201px) and (max-width: 1440px) {
  :root {
    --container-max: 1100px;
    --gutter: 28px;
  }
  header {
    padding: 3rem clamp(2rem, 4vw, 3rem);
  }
  img.logo {
    height: clamp(56px, 7vw, 64px);
  }
  .logo-link {
    left: clamp(1.5rem, 3vw, 2rem);
  }
  nav {
    padding: 0.4rem 0.8rem;
    gap: 0.25rem;
    max-width: fit-content;
    margin: 0 auto;
  }
  .navtag {
    padding: 0.6rem 0.85rem;
    font-size: 0.88rem;
  }
  .tag-box {
    right: clamp(1.5rem, 3vw, 2rem);
    width: clamp(10rem, 12vw, 12rem);
    height: 2.75rem;
  }
  .tag-box button.tag {
    font-size: 0.9rem;
    padding: 0 0.75rem;
  }
  .dropdown-menu {
    min-width: 180px;
  }
  .dropdown-menu a {
    padding: 0.65rem 1rem;
    font-size: 0.9rem;
  }
  .content {
    padding: 0 clamp(1.25rem, 2.5vw, 2rem);
  }
  .content p.description {
    font-size: 1.15rem;
  }
  .buttons {
    gap: 1.1rem;
  }
}
@media (min-width: 1441px) {
  .about-metrics {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  .metric-card {
    padding: 1.75rem;
  }
}
@media (min-width: 1025px) and (max-width: 1440px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.8rem;
  }
  .case-studies-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-container {
    grid-template-columns: repeat(2, minmax(320px, 1fr));
  }
  .about-metrics {
    grid-template-columns: repeat(2, 1fr);
  }
  .references-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .reference-card-content {
    padding: 1.5rem;
  }
  .reviews-container {
    grid-template-columns: 1fr 420px;
    align-items: start;
  }
  .reviews-cta.card {
    max-width: 420px;
  }
  .stepper {
    flex-wrap: wrap;
  }
  .stepper-item {
    padding: 1.6rem 1rem;
  }
  .footer-container {
    grid-template-columns: minmax(260px, 1.15fr) minmax(0, 1.85fr);
    gap: 2.5rem;
  }
  .footer-columns {
    grid-template-columns: repeat(2, minmax(240px, 1fr));
    gap: 1.75rem 2rem;
  }
  .footer-cta-row {
    grid-column: 1/-1;
    justify-content: space-between;
  }
  .footer-bottom {
    flex-direction: row;
    gap: 1rem;
  }
  .footer-legal {
    flex-wrap: wrap;
  }
  .footer-logo {
    width: 100px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  :root {
    --container-max: 920px;
    --gutter: 20px;
  }
  header {
    padding: 3rem 1rem;
  }
  img.logo {
    height: 50px;
  }
  nav {
    padding: 0.4rem 0.6rem;
    font-size: 0.95rem;
    top: 8px;
  }
  .logo-link {
    left: 1rem;
  }
  .content {
    padding: 1.5rem 0 2rem;
  }
  .content p.description {
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
  }
  .content .eyebrow {
    font-size: 0.8rem;
  }
  .buttons {
    gap: 0.9rem;
    flex-wrap: wrap;
  }
  .btn-get-started,
  .btn-signin-main {
    padding: 0.85rem 1.9rem;
    font-size: 0.95rem;
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  .case-studies-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  .about-section {
    padding: 4rem 0;
  }
  .about-container {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .about-content h2 {
    font-size: 2.5rem;
  }
  .about-content p {
    font-size: 1.05rem;
    line-height: 1.7;
  }
  .about-metrics {
    grid-template-columns: repeat(3, minmax(140px, 1fr));
    gap: 1.25rem;
  }
  .metric-card {
    padding: 1.5rem;
  }
  .service-hero-inner {
    grid-template-columns: 1fr;
  }
  .service-hero-aside {
    order: initial;
  }
  .references-container {
    padding: 0 var(--gutter);
  }
  .carousel-track {
    grid-template-columns: 1fr;
  }
  .reviews-container {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  .reviews-right {
    justify-content: center;
  }
  .reviews-cta.card {
    margin: 0 auto;
  }
  .stepper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
  .stepper-item {
    padding: 1.5rem 1.25rem;
  }
  .stepper-line {
    display: none;
  }
  .stepper-number {
    width: 64px;
    height: 64px;
  }
  .timeline-section {
    padding: 4rem 0;
  }
  .timeline::before {
    left: 20px;
  }
  .timeline-item,
  .timeline-item.left,
  .timeline-item.right {
    margin: 0;
    padding: 0 0 0 72px;
    text-align: left;
  }
  .timeline-item.left::before,
  .timeline-item.right::before,
  .timeline-item::before {
    left: 20px;
    right: auto;
  }
  .footer-container {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  .footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .footer-socials {
    justify-content: center;
  }
  .footer-columns {
    grid-template-columns: repeat(2, minmax(220px, 1fr));
    gap: 1.5rem 2rem;
    justify-content: center;
    align-items: start;
    max-width: 900px;
    margin: 0 auto;
    text-align: initial;
  }
  .footer-columns .footer-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }
  .footer-column h3 {
    font-size: 1rem;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 0.75rem;
    padding-top: 1.25rem;
  }
  .footer-legal {
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
  }
  .footer-logo {
    width: 90px;
  }
  .footer-cta-row {
    grid-column: 1/-1;
    justify-content: center;
  }
  nav {
    max-width: 680px;
    margin: 0 auto;
  }
  nav a {
    padding: 0.65rem 1rem;
    font-size: 0.95rem;
    white-space: nowrap;
  }
  .navtag {
    font-size: 0.95rem;
  }
  .logo-link {
    left: clamp(1rem, 2vw, 1.2rem);
  }
  .offer-modal-content {
    max-width: 720px;
    padding: 1.6rem;
  }
}
@media (max-width: 768px) {
  :root {
    --container-max: 640px;
    --gutter: 16px;
  }
  header {
    padding: 3rem 1rem;
  }
  .logo-link {
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
  }
  img.logo {
    height: 42px;
  }
  nav {
    display: flex;
    gap: 0.25rem;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding: 0.2rem 0.4rem;
  }
  nav a {
    padding: 0.7rem 1rem;
    font-size: 1rem;
  }
  .tag-box {
    display: none;
  }
  main {
    min-height: auto;
    padding: clamp(2.5rem, 6vh, 4rem) var(--gutter);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .content {
    padding: 1.25rem 0.75rem 1.5rem;
    max-width: 100%;
    gap: 1rem;
  }
  .content p.description {
    font-size: clamp(0.95rem, 3.5vw, 1.05rem);
    line-height: 1.55;
    margin-bottom: 1.25rem;
    max-width: 100%;
  }
  .content .eyebrow {
    font-size: 0.7rem;
    margin-bottom: 0.45rem;
    letter-spacing: 0.28em;
  }
  .buttons {
    flex-direction: column;
    gap: 0.9rem;
    margin-top: 1.1rem;
    width: 100%;
  }
  .btn-get-started,
  .btn-signin-main {
    width: 100%;
    padding: 0.85rem 1.25rem;
    font-size: 0.95rem;
    text-align: center;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 24px;
  }
  .blog-grid,
  .case-studies-grid,
  .deliverables-grid,
  .services-grid,
  .why-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  .services-section {
    padding: 3.5rem 0;
  }
  .services-container {
    padding: 0 var(--gutter);
  }
  .services-title {
    font-size: 2rem;
    margin-bottom: 2rem;
  }
  .card {
    padding: 1.5rem;
    border-radius: 16px;
  }
  .card-title {
    font-size: 1.25rem;
  }
  .card-description {
    font-size: 0.95rem;
    line-height: 1.5;
  }
  .card-icon {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
  }
  .service-hero {
    padding: 5rem 0 2.5rem;
  }
  .service-hero-badges {
    flex-direction: column;
  }
  .service-hero-aside {
    padding: 1.5rem;
  }
  .service-cta-box {
    padding: 2rem;
  }
  .about-section {
    padding: 3.5rem 0;
  }
  .about-container {
    padding: 0 var(--gutter);
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .about-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
  .about-content p {
    font-size: 1rem;
    line-height: 1.65;
    margin-bottom: 1.25rem;
  }
  .about-list {
    padding-left: 1.25rem;
    gap: 0.75rem;
  }
  .about-list li {
    font-size: 0.95rem;
    line-height: 1.6;
  }
  .about-metrics {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  .metric-card {
    padding: 1.5rem;
  }
  .metric-value {
    font-size: 2.2rem;
  }
  .metric-label {
    font-size: 0.95rem;
  }
  .references-section {
    padding: 3.5rem 0;
  }
  .references-container {
    padding: 0 var(--gutter);
  }
  .references-head {
    margin-bottom: 2rem;
  }
  .references-head h2 {
    font-size: 2rem;
    margin-bottom: 0.75rem;
  }
  .references-head p {
    font-size: 1rem;
    line-height: 1.6;
  }
  .references-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .reference-card-image {
    height: 10rem;
  }
  .reference-card-content {
    padding: 1.25rem;
  }
  .reference-card-content h3 {
    font-size: 1.15rem;
  }
  .reference-card-content p {
    font-size: 0.875rem;
  }
  .stepper-section {
    padding: 3.5rem 0;
  }
  .stepper-container {
    padding: 0 var(--gutter);
  }
  .stepper-title {
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
  }
  .stepper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  .stepper-item {
    padding: 1.75rem 1.5rem;
  }
  .stepper-number {
    width: 60px;
    height: 60px;
    font-size: 1.75rem;
    margin-bottom: 1rem;
  }
  .stepper-label {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
  }
  .stepper-description {
    font-size: 0.95rem;
    line-height: 1.6;
  }
  .stepper-line {
    display: none;
  }
  .reviews-section {
    padding: 3.5rem 0;
  }
  .reviews-container {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 0 var(--gutter);
  }
  .reviews-left,
  .reviews-right {
    width: 100%;
  }
  .review-badge {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1.25rem;
    margin-bottom: 1rem;
  }
  .review-logo {
    font-size: 1.25rem;
  }
  .review-stars {
    font-size: 1.1rem;
  }
  .review-count {
    font-size: 0.85rem;
  }
  .review-card {
    width: 100%;
    padding: 1.5rem;
    border-radius: 12px;
  }
  .review-author {
    font-size: 1rem;
    margin-bottom: 0.75rem;
  }
  .review-text {
    font-size: 0.95rem;
    line-height: 1.65;
  }
  .reviews-cta.card {
    width: 100%;
    max-width: 100%;
    padding: 1.75rem;
    border-radius: 16px;
  }
  .reviews-cta h2 {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
  }
  .reviews-cta p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.25rem;
  }
  #reviews-cta-btn {
    width: 100%;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    max-height: 15%;
  }
  .blog-section {
    padding: 3.5rem 0;
  }
  .blog-container {
    padding: 0 var(--gutter);
  }
  .blog-title {
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
  }
  .blog-card {
    padding: 1.5rem;
    border-radius: 16px;
  }
  .blog-card h3 {
    font-size: 1.2rem;
    margin: 0.75rem 0 0.5rem;
    line-height: 1.3;
  }
  .blog-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
  }
  .blog-card-head {
    margin-bottom: 0.75rem;
    gap: 0.75rem;
  }
  .blog-tag {
    font-size: 0.75rem;
    padding: 0.35rem 0.75rem;
  }
  .blog-date {
    font-size: 0.8rem;
  }
  .blog-link {
    font-size: 0.95rem;
  }
  .site-footer {
    padding: 3rem 0 1.5rem;
  }
  .footer-container {
    grid-template-columns: 1fr;
    padding: 0 var(--gutter);
    gap: 2.5rem;
    text-align: center;
  }
  .footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    order: 1;
  }
  .footer-logo {
    width: 90px;
    height: auto;
  }
  .footer-brand p {
    font-size: 0.95rem;
    max-width: 100%;
    line-height: 1.6;
  }
  .footer-socials {
    justify-content: center;
    gap: 1.5rem;
    margin-top: 0;
    width: 100%;
  }
  .footer-socials a {
    font-size: 0.95rem;
    padding: 0.5rem 1rem;
  }
  .footer-columns {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    text-align: center;
    order: 2;
    justify-content: center;
    align-items: start;
    max-width: 900px;
    margin: 0 auto;
  }
  .footer-column:first-child,
  .footer-column:nth-child(2),
  .footer-column:nth-child(3),
  .footer-column:nth-child(4) {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-column h3 {
    font-size: 1rem;
    margin-bottom: 1rem;
    font-weight: 600;
    text-align: left;
    width: 100%;
  }
  .footer-column ul {
    gap: 0.65rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }
  .footer-column li {
    list-style: none;
    text-align: left;
    width: 100%;
  }
  .footer-column a {
    font-size: 0.95rem;
    padding: 0.35rem 0;
    display: inline-block;
    text-align: left;
  }
  .footer-cta {
    width: 100%;
    max-width: 100%;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    margin-top: 2rem;
  }
  .footer-cta-row {
    grid-column: 1/-1;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 0;
    flex-direction: column;
    padding-top: 1rem;
  }
  .footer-cta-text {
    text-align: center;
  }
  .footer-cta-arrow {
    display: none;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
  .footer-bottom p {
    font-size: 0.9rem;
  }
  .offer-modal-content {
    width: calc(100% - 32px);
    max-width: 640px;
    max-height: calc(100vh - 40px);
    margin: 20px auto;
    padding: 1.5rem 1rem;
    border-radius: 16px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .offer-modal-close {
    top: 0.75rem;
    right: 1rem;
    font-size: 2rem;
  }
  .offer-form {
    gap: 0.85rem;
  }
  .offer-form label {
    font-size: 0.95rem;
  }
  .offer-form input,
  .offer-form textarea {
    font-size: 1rem;
    padding: 0.95rem;
    border-radius: 10px;
  }
  .offer-form button {
    font-size: 1rem;
    padding: 1rem 1.5rem;
  }
  .offer-submit {
    margin-top: 0.75rem;
  }
  .carousel-btn {
    width: 56px;
    height: 56px;
  }
  .card-btn {
    padding: 0.95rem 1rem;
  }
  .card,
  .case-card,
  .review-card {
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.18);
  }
  .timeline-section {
    padding: 3rem 0;
  }
  .timeline::before {
    left: 12px;
  }
  .timeline-item,
  .timeline-item.left,
  .timeline-item.right {
    margin: 0;
    padding: 0 0 0 56px;
    text-align: left;
  }
  .timeline-item.left::before,
  .timeline-item.right::before,
  .timeline-item::before {
    left: 12px;
    right: auto;
  }
}
@media (max-width: 420px) {
  .footer-socials {
    gap: 0.75rem;
  }
  .footer-socials a {
    font-size: 0.8rem;
    padding: 0.35rem 0.65rem;
  }
  .footer-column ul {
    gap: 0.4rem;
  }
  .footer-column a {
    font-size: 0.85rem;
    padding: 0.25rem 0;
  }
}
.offer-modal-bg {
  position: absolute;
  width: 100vw;
  height: 100vh;
  left: 0;
  top: 0;
  background: rgba(30, 30, 40, 0.45);
  backdrop-filter: blur(7px) saturate(1.2);
  -webkit-backdrop-filter: blur(7px) saturate(1.2);
  z-index: 0;
}
.offer-modal-content {
  position: relative;
  z-index: 1;
  min-width: 30%;
  max-width: 95vw;
  max-height: 90vh;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  box-shadow: 0 8px 48px 0 rgba(99, 0, 197, 0.18);
  padding: 2.5rem 2rem 2rem 2rem;
  backdrop-filter: blur(18px) saturate(1.5);
  -webkit-backdrop-filter: blur(18px) saturate(1.5);
  border: 1.5px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 1rem;
}
.offer-modal-close {
  position: absolute;
  top: 1.1rem;
  right: 1.3rem;
  background: 0 0;
  border: none;
  color: #fff;
  font-size: 2.2rem;
  cursor: pointer;
  z-index: 2;
  opacity: 0.7;
  transition: opacity 0.2s;
}
.offer-modal-close:hover {
  opacity: 1;
}
.offer-form {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.offer-form label {
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 0.2rem;
}
.offer-form input,
.offer-form select,
.offer-form textarea {
  border: none;
  border-radius: 8px;
  padding: 0.7rem 1rem;
  font-size: 1rem;
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  margin-bottom: 0.5rem;
  outline: 0;
  box-shadow: 0 2px 8px 0 rgba(99, 0, 197, 0.08);
  transition: background 0.2s;
}
.offer-form input:focus,
.offer-form textarea:focus {
  background: rgba(255, 255, 255, 0.28);
}
.offer-form select {
  padding: 0.6rem 0.8rem;
}
.service-dropdown {
  position: relative;
  width: 100%;
}
.service-dropdown-toggle {
  width: 100%;
  text-align: left;
  padding: 0.7rem 1rem;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: none;
  box-shadow: 0 2px 8px 0 rgba(99, 0, 197, 0.06);
  cursor: pointer;
}
.service-options {
  position: absolute;
  right: 0;
  left: 0;
  top: calc(100% + 8px);
  background: rgba(17, 17, 17, 0.96);
  border-radius: 10px;
  padding: 0.6rem;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.5);
  max-height: 220px;
  overflow: auto;
  display: none;
  z-index: 2100;
}
.service-option {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.45rem 0.6rem;
  cursor: pointer;
  color: #e7e7e7;
}
.service-option input[type="checkbox"] {
  width: 18px;
  height: 18px;
}
.service-option:hover {
  background: rgba(255, 255, 255, 0.02);
}
.service-dropdown.open .service-options {
  display: block;
}
.service-other-input {
  margin-top: 0.5rem;
  width: calc(100% - 1.2rem);
  border-radius: 8px;
  padding: 0.6rem 0.8rem;
}
@media (max-width: 480px) {
  .content {
    padding: 1rem 0.5rem 1.25rem;
  }
  .content p.description {
    font-size: clamp(0.9rem, 4vw, 1rem);
    margin-bottom: 1rem;
    line-height: 1.5;
  }
  .content .eyebrow {
    font-size: 0.62rem;
    margin-bottom: 0.4rem;
    letter-spacing: 0.24em;
  }
  .btn-get-started,
  .btn-signin-main {
    padding: 0.85rem 1.2rem;
    font-size: 0.9rem;
    min-height: 44px;
  }
  .buttons {
    gap: 0.85rem;
    margin-top: 0.9rem;
  }
  .services-title {
    font-size: 1.75rem;
  }
  .card {
    padding: 1.25rem;
  }
  .card-title {
    font-size: 1.15rem;
  }
  .about-content h2 {
    font-size: 1.75rem;
  }
  .references-head h2 {
    font-size: 1.75rem;
  }
  .stepper-title {
    font-size: 1.75rem;
  }
  .blog-title {
    font-size: 1.75rem;
  }
  .reviews-cta h2 {
    font-size: 1.5rem;
  }
  .footer-brand p {
    font-size: 0.9rem;
  }
  .metric-value {
    font-size: 2rem;
  }
}
@media (max-width: 768px) and (orientation: landscape) {
  main {
    min-height: auto;
  }
  .content {
    padding: 1.5rem 0.5rem 1.25rem;
  }
  .content p.description {
    font-size: clamp(0.95rem, 3vw, 1.05rem);
    margin-bottom: 0.9rem;
  }
  .buttons {
    margin-top: 0.9rem;
    gap: 0.7rem;
  }
  [class*="-section"] {
    padding: 2.5rem 0;
  }
  .blog-section,
  .references-section,
  .services-section {
    padding: 2.5rem 0;
  }
  header {
    padding: 0.5rem 1rem;
  }
  img.logo {
    height: 42px;
  }
}
@media (max-width: 600px) {
  .service-options {
    max-height: 180px;
  }
}
.offer-submit {
  margin-top: 0.5rem;
  padding: 0.8rem 2.2rem;
  border-radius: 50px;
  border: none;
  background: linear-gradient(90deg, #7f42a7, #6600c5, #5300a0);
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
  cursor: pointer;
  box-shadow: 0 2px 12px 0 rgba(99, 0, 197, 0.18);
  transition:
    background 0.2s,
    box-shadow 0.2s;
}
.offer-submit:hover {
  background: linear-gradient(90deg, #6600c5, #7f42a7, #5300a0);
  box-shadow: 0 4px 24px 0 rgba(99, 0, 197, 0.28);
}
@media (max-width: 600px) {
  .offer-modal-content {
    min-width: 0;
    padding: 1.2rem 0.5rem 1.2rem 0.5rem;
  }
}
.reviews-section {
  background: #fafaff !important;
  color: #111 !important;
  position: relative;
  overflow: hidden;
}
.reviews-section::after,
.reviews-section::before {
  display: none !important;
}
#particles-reviews {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}
.reviews-container {
  position: relative;
  z-index: 2;
}
body {
  animation: pageIn 0.5s ease-in-out;
}
body.page-transitioning {
  animation: pageOut 0.4s ease-in-out forwards;
}
@keyframes pageOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@media (min-width: 1024px) {
  .services-tabs {
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .services-tab {
    flex: 0 0 calc(25% - 0.85rem);
    max-width: calc(25% - 0.85rem);
    min-width: 0;
  }
  .services-tab:nth-child(5) {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
@keyframes pageIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.tab-icon i {
  color: #7474dc;
}
@media (max-width: 768px) {
  .container {
    height: 80%;
    min-height: 80vh;
  }
  main {
    min-height: calc(100vh - var(--nav-height, 72px));
    padding: 2rem 1rem;
    display: flex;
    align-items: center;
  }
  .content {
    gap: 0.875rem;
    padding: 0 0.5rem;
    max-width: 100%;
  }
  .content .eyebrow {
    font-size: 0.65rem;
    margin-bottom: 0.5rem;
    letter-spacing: 0.2em;
  }
  .content h1 .h1-line {
    display: block;
  }
  .content p.description {
    font-size: 0.9rem;
    line-height: 1.5;
    max-width: 100%;
    margin-bottom: 0.5rem;
  }
  .content p.description br {
    display: none;
  }
  .buttons {
    flex-direction: column;
    gap: 0.625rem;
    width: 100%;
    margin-top: 1.25rem;
  }
  .btn-get-started,
  .btn-signin-main {
    width: 100%;
    text-align: center;
    justify-content: center;
    padding: 0.9rem 1.25rem;
    font-size: 0.95rem;
  }
}
@media (max-width: 480px) {
  main {
    padding: 1.5rem 0.875rem;
  }
  .content {
    gap: 0.75rem;
    padding: 0 0.25rem;
  }
  .content .eyebrow {
    font-size: 0.6rem;
  }
  .buttons {
    margin-top: 1rem;
    gap: 0.5rem;
  }
  .btn-get-started,
  .btn-signin-main {
    padding: 0.85rem 1rem;
    font-size: 0.9rem;
  }
}
@media (max-width: 380px) {
  main {
    padding: 1.25rem 0.75rem;
  }
  .content h1 {
    font-size: clamp(2rem, 7.5vw, 2.8rem);
    line-height: 1.18;
    margin-bottom: 0.6rem;
  }
  .content p.description{
    font-size: 1rem;
  }
  .btn-get-started,
  .btn-signin-main {
    padding: 0.8rem 0.875rem;
    font-size: 0.875rem;
  }
}
.services-overview-section {
  background-color: #111;
  padding: 5rem 0;
  position: relative;
  width: 100%;
}
.services-overview-container {
  max-width: 100%;
  margin: 0 auto !important;
  padding: 0 2rem;
  padding: 0 var(--gutter) !important;
  width: 100%;
  max-width: var(--container-max) !important;
}
.services-overview-head {
  text-align: left;
  margin-bottom: 3rem;
}
.services-overview-head .eyebrow {
  margin: 0 0 0.5rem 0;
}
.services-overview-head h2 {
  margin: 0 0 1rem 0;
  font-size: 2.5rem;
}
.services-overview-head p {
  margin: 0;
  font-size: 1.125rem;
  color: #b8b8b8;
  max-width: 700px;
}
.services-overview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}
.service-overview-card {
  position: relative;
  background: rgba(25, 25, 35, 0.8);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(116, 116, 220, 0.2);
  border-radius: 16px;
  padding: 2.5rem;
  overflow: hidden;
  transition:
    transform 0.3s ease,
    border-color 0.3s ease;
}
.service-overview-card:hover {
  transform: translateY(-4px);
  border-color: rgba(116, 116, 220, 0.5);
}
.service-card-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, transparent 0, transparent 100%);
  transition: background 0.6s ease;
  z-index: 1;
  pointer-events: none;
}
.service-overview-card:hover .service-card-bg {
  background: linear-gradient(135deg, #fff 0, #fafaff 100%);
}
.service-card-inner {
  position: relative;
  z-index: 2;
  transition: color 0.3s ease;
}
.service-overview-card:hover .service-card-inner h3,
.service-overview-card:hover .service-card-inner li,
.service-overview-card:hover .service-card-inner p {
  color: #111;
}
.service-overview-card:hover .service-card-link {
  color: #7474dc;
}
.service-card-icon {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  display: block;
  transition: transform 0.3s ease;
}
.service-overview-card:hover .service-card-icon {
  transform: scale(1.1);
}
.icon-purple {
  color: #a78bfa;
}
.icon-pink {
  color: #f472b6;
}
.icon-orange {
  color: #fb923c;
}
.icon-blue {
  color: #60a5fa;
}
.icon-green {
  color: #4ade80;
}
.icon-red {
  color: #f87171;
}
.service-card-inner h3 {
  font-family: var(--cimsor);
  font-size: 1.5rem;
  margin: 0 0 0.75rem 0;
  color: #e7e7e7;
  transition: color 0.3s ease;
}
.service-card-inner > p {
  font-size: 0.95rem;
  color: #b8b8b8;
  margin: 0 0 1.5rem 0;
  line-height: 1.6;
  transition: color 0.3s ease;
}
.service-card-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
}
.service-card-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: #d4d4d4;
  margin-bottom: 0.75rem;
  transition: color 0.3s ease;
}
.service-card-features li:last-child {
  margin-bottom: 0;
}
.service-card-features i {
  font-size: 0.875rem;
  color: #7474dc;
  margin-top: 0.2rem;
  flex-shrink: 0;
}
.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #a78bfa;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition:
    color 0.3s ease,
    gap 0.3s ease;
}
.service-card-link:hover {
  gap: 0.75rem;
}
@media (max-width: 768px) {
  .services-overview-grid {
    grid-template-columns: 1fr;
  }
  .services-overview-head h2 {
    font-size: 2rem;
  }
  .service-overview-card {
    padding: 2rem;
  }
  .service-card-icon {
    font-size: 3rem;
  }
}
@media (max-width: 480px) {
  .services-overview-head h2 {
    font-size: 1.75rem;
  }
  .service-card-inner h3 {
    font-size: 1.25rem;
  }
}
.grecaptcha-badge {
  visibility: hidden;
}
