/* ---------------------------
  Base / Reset
----------------------------*/
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 70px; }
html, body { height: 100%; }
body {
  margin: 0;
  padding-top: 60px; /* Offset for fixed header */
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  color: #f5f4f8;
  background: 
    radial-gradient(1200px 400px at 75% 20%, rgba(133,85,255,.18), transparent 60%),
    radial-gradient(900px 700px at 25% 30%, rgba(0,224,255,.10), transparent 55%),
    #07060a;
  background-attachment: fixed;
  line-height: 1.35;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ---------------------------
  Layout helpers
----------------------------*/
.container {
  width: min(1200px, calc(100% - 2rem));
  margin-inline: auto;
}

/* ---------------------------
  Top announcement
----------------------------*/
.announcement {
  background: linear-gradient(90deg, rgba(111,52,255,.25), rgba(0,224,255,.12));
  border-bottom: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(8px);
}
.announcement__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  padding: .65rem 0;
  position: relative;
  text-align: center;
  font-size: .95rem;
  color: rgba(255,255,255,.9);
}
.announcement__icon {
  width: 18px; height: 18px;
  display: inline-grid; place-items: center;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 999px;
  opacity: .9;
  flex: 0 0 auto;
}
.announcement__dismiss {
  position: absolute;
  right: 0;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .45rem .65rem;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 999px;
  background: rgba(0,0,0,.18);
  cursor: pointer;
}
.announcement__dismiss:hover { border-color: rgba(255,255,255,.28); }

/* ---------------------------
  Header / Nav
----------------------------*/
header.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(7,6,10,.55);
  border-bottom: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(14px);
  transition: background .3s ease, box-shadow .3s ease;
}
header.site-header.is-scrolled {
  background: rgba(7,6,10,.85);
  box-shadow: 0 4px 30px rgba(0,0,0,.3);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .85rem 0;
  gap: 1rem;
}

/* Desktop navbar */
.navbar {
  display: flex;
  align-items: center;
  gap: .25rem;
}
.nav-link {
  position: relative;
  padding: .5rem .85rem;
  color: rgba(255,255,255,.6);
  font-size: .9rem;
  font-weight: 500;
  border-radius: 8px;
  transition: color .2s ease, background .2s ease;
}
.nav-link:hover {
  color: rgba(255,255,255,.95);
  background: rgba(255,255,255,.06);
}
.nav-link.active {
  color: rgba(255,255,255,1);
}
.nav-link.active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 2px;
  background: linear-gradient(90deg, #8555ff, #00e0ff);
  border-radius: 2px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  min-width: 180px;
}
.brand__mark {
  width: 34px; height: 34px;
  border-radius: 10px;
  background: radial-gradient(circle at 30% 30%, #a476ff, #5b2bff 55%, #1a0c3c);
  box-shadow: 0 10px 28px rgba(98,52,255,.25);
  position: relative;
  overflow: hidden;
}
.brand__mark::after{
  content:"";
  position:absolute; inset:-40%;
  background: conic-gradient(from 180deg, rgba(0,224,255,.0), rgba(0,224,255,.45), rgba(255,255,255,.0));
  animation: spin 5s linear infinite;
}
@keyframes spin { to { transform: rotate(1turn); } }

.brand__text {
  display: grid;
  gap: .1rem;
}
.brand__name {
  font-weight: 750;
  letter-spacing: .2px;
  text-transform: lowercase;
  font-size: 1.15rem;
}
.brand__tag {
  font-size: .78rem;
  color: rgba(255,255,255,.7);
}

.nav__right {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
}

/* Language switcher */
.lang-switcher {
  display: inline-flex;
  align-items: center;
  gap: .25rem;
  padding: .5rem .75rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
}
.lang-btn {
  background: transparent;
  border: none;
  color: rgba(255,255,255,.6);
  font-size: .85rem;
  font-weight: 600;
  cursor: pointer;
  padding: .25rem .5rem;
  border-radius: 6px;
  transition: color .2s ease, background .2s ease;
  font-family: inherit;
}
.lang-btn:hover {
  color: rgba(255,255,255,.9);
  background: rgba(255,255,255,.08);
}
.lang-btn.active {
  color: rgba(255,255,255,1);
  background: rgba(133,85,255,.2);
}
.lang-separator {
  color: rgba(255,255,255,.3);
  font-size: .85rem;
}
.lang-switcher--mobile {
  justify-content: center;
  margin-bottom: .5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: .75rem 1.05rem;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  cursor: pointer;
  transition: transform .15s ease, border-color .15s ease, background .15s ease;
}
.btn:hover { transform: translateY(-1px); border-color: rgba(255,255,255,.28); background: rgba(255,255,255,.09); }
.btn--primary {
  background: rgba(255,255,255,.92);
  color: #0b0a10;
  border-color: rgba(255,255,255,.0);
  font-weight: 650;
}
.btn--primary:hover { background: #ffffff; }

.nav__menuBtn {
  display: none;
  width: 44px; height: 44px;
  padding: 0;
}

/* Mobile menu panel */
.mobile-panel {
  display: none;
  border-top: 1px solid rgba(255,255,255,.08);
  background: rgba(7,6,10,.65);
  backdrop-filter: blur(14px);
}
.mobile-panel__inner {
  padding: .9rem 0 1.1rem;
  display: grid;
  gap: .75rem;
}
.mobile-link {
  padding: .85rem 1rem;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 14px;
  background: rgba(255,255,255,.05);
  transition: background .2s ease, border-color .2s ease;
}
.mobile-link.active {
  background: rgba(133,85,255,.12);
  border-color: rgba(133,85,255,.3);
  color: rgba(255,255,255,1);
}

/* ---------------------------
  Hero
----------------------------*/
.hero {
  position: relative;
  z-index: 0; /* Creates stacking context so hero__grid z-index:-1 stays scoped here */
  padding: clamp(2.2rem, 4vw, 4.5rem) 0 3.5rem;
  overflow: hidden;
  min-height: 95vh;
  display: flex;
  align-items: center;
}

/* Particles background - fills right side as transparent circle */
.hero__particles-bg {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 55%;
  height: 120%;
  z-index: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none; /* Allow clicks to pass through container */
}
.hero__particles-bg #particles-js {
  position: absolute;
  width: 100%;
  height: 100%;
  pointer-events: auto; /* Enable pointer events on canvas container */
  /* Circular mask using radial gradient */
  -webkit-mask-image: radial-gradient(circle at center, 
    rgba(0,0,0,1) 0%,
    rgba(0,0,0,0.9) 30%,
    rgba(0,0,0,0.6) 50%,
    rgba(0,0,0,0.2) 70%,
    transparent 85%);
  mask-image: radial-gradient(circle at center, 
    rgba(0,0,0,1) 0%,
    rgba(0,0,0,0.9) 30%,
    rgba(0,0,0,0.6) 50%,
    rgba(0,0,0,0.2) 70%,
    transparent 85%);
}
/* Ensure canvas inside particles-js receives events */
.hero__particles-bg #particles-js canvas {
  pointer-events: auto;
  width: 100% !important;
  height: 100% !important;
}
/* Subtle neural glow overlay */
.hero__particles-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1; /* Changed from 1 to -1 to not block events */
  background: 
    radial-gradient(circle at 50% 50%, rgba(133,85,255,.08), transparent 40%),
    radial-gradient(circle at 40% 60%, rgba(0,224,255,.05), transparent 35%);
  pointer-events: none;
  animation: neuralPulse 8s ease-in-out infinite;
}
@keyframes neuralPulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 0.8; }
}

.hero__grid {
  position: relative;
  z-index: -1; /* Don`t update this value */
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.6rem, 3vw, 2.6rem);
  align-items: center;
  min-height: 62vh;
}

.hero__copy {
  padding: 1rem 0;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.hero__copy.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.hero__h1 {
  font-size: clamp(2.4rem, 5.4vw, 5.3rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin: 0 0 1.1rem;
  font-weight: 850;
}
.hero__p {
  margin: 0 0 1.4rem;
  max-width: 60ch;
  color: rgba(255,255,255,.82);
  font-size: clamp(1.0rem, 1.35vw, 1.12rem);
  line-height: 1.55;
  font-weight: 520;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  align-items: center;
}
.hero__meta {
  margin-top: 1.25rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  color: rgba(255,255,255,.7);
  font-size: .95rem;
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .55rem .75rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05);
}
.dot {
  width: 8px; height: 8px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 30%, #a476ff, #5b2bff 60%);
  box-shadow: 0 0 0 4px rgba(91,43,255,.18);
}


/* ---------------------------
  Responsiveness
----------------------------*/
@media (max-width: 940px) {
  .hero__grid {
    grid-template-columns: 1fr;
    min-height: unset;
  }
  .hero__particles-bg {
    top: 0;
    bottom: 0;
    z-index: -1;
    right: 50%;
    transform: translateX(50%);
    width: 100%;
    height: 100%;
    opacity: 0.5;
  }
}

@media (max-width: 960px) {
  .navbar { display: none; }
  .nav__cta { display: none; }
  .nav__menuBtn { display: inline-flex; }
}

@media (max-width: 720px) {
  .announcement__dismiss span { display: none; }
  .mobile-panel { display: none; }
  .mobile-panel[data-open="true"] { display: block; }
  .lang-switcher {
    padding: .4rem .6rem;
    gap: .2rem;
  }
  .lang-btn {
    font-size: .8rem;
    padding: .2rem .4rem;
  }
}

/* ---------------------------
  Scroll Animations
----------------------------*/
.scroll-fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.scroll-fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.scroll-fade-in-delay-1 {
  transition-delay: 0.1s;
}
.scroll-fade-in-delay-2 {
  transition-delay: 0.2s;
}
.scroll-fade-in-delay-3 {
  transition-delay: 0.3s;
}
.scroll-fade-in-delay-4 {
  transition-delay: 0.4s;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .brand__mark::after { animation: none; }
  .btn { transition: none; }
  .hero__copy {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .scroll-fade-in {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ---------------------------
  Services Section
----------------------------*/
.services {
  padding: clamp(4rem, 8vw, 7rem) 0;
  position: relative;
}
.services::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(133,85,255,.3), rgba(0,224,255,.2), transparent);
}
.services__header {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.services__label {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .5rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(133,85,255,.25);
  background: rgba(133,85,255,.08);
  font-size: .85rem;
  font-weight: 600;
  color: rgba(164,118,255,1);
  margin-bottom: 1.25rem;
  letter-spacing: .03em;
  text-transform: uppercase;
}
.services__title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 1rem;
  line-height: 1.1;
}
.services__subtitle {
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  color: rgba(255,255,255,.7);
  max-width: 55ch;
  margin: 0 auto;
  line-height: 1.6;
}

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

.service-card {
  position: relative;
  padding: 2rem;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,.08);
  background: linear-gradient(165deg, rgba(255,255,255,.04) 0%, rgba(255,255,255,.01) 100%);
  backdrop-filter: blur(12px);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
  overflow: hidden;
}
.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--card-accent, #8555ff), var(--card-accent-alt, #00e0ff));
  opacity: 0;
  transition: opacity .25s ease;
}
.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,255,255,.15);
  box-shadow: 0 20px 50px -15px rgba(0,0,0,.4);
}
.service-card:hover::before {
  opacity: 1;
}

.service-card--leads {
  --card-accent: #8555ff;
  --card-accent-alt: #a476ff;
}
.service-card--automation {
  --card-accent: #00e0ff;
  --card-accent-alt: #00b8d4;
}
.service-card--consulting {
  --card-accent: #ff6b9d;
  --card-accent-alt: #c44569;
}

.service-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, var(--card-accent, #8555ff), var(--card-accent-alt, #00e0ff));
  box-shadow: 0 8px 24px -8px var(--card-accent);
}

.service-card__title {
  font-size: 1.35rem;
  font-weight: 700;
  margin: 0 0 .75rem;
  letter-spacing: -0.01em;
}
.service-card__desc {
  font-size: .95rem;
  color: rgba(255,255,255,.7);
  line-height: 1.6;
  margin: 0 0 1.5rem;
}

.service-card__features {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: .65rem;
}
.service-card__features li {
  display: flex;
  align-items: flex-start;
  gap: .65rem;
  font-size: .9rem;
  color: rgba(255,255,255,.85);
  line-height: 1.45;
}
.service-card__features li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--card-accent, #8555ff);
  margin-top: .45rem;
  flex-shrink: 0;
  box-shadow: 0 0 8px var(--card-accent);
}

@media (max-width: 960px) {
  .services__grid {
    grid-template-columns: 1fr;
    max-width: 540px;
    margin: 0 auto;
  }
}

/* ---------------------------
  Trust / Why Us Section
----------------------------*/
.trust {
  padding: clamp(4rem, 8vw, 7rem) 0;
  position: relative;
  background: linear-gradient(180deg, rgba(133,85,255,.03) 0%, transparent 50%);
}
.trust::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.08), transparent);
}
.trust__header {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.trust__label {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .5rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(0,224,255,.2);
  background: rgba(0,224,255,.06);
  font-size: .85rem;
  font-weight: 600;
  color: rgba(0,224,255,.9);
  margin-bottom: 1.25rem;
  letter-spacing: .03em;
  text-transform: uppercase;
}
.trust__title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 1rem;
  line-height: 1.1;
}
.trust__subtitle {
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  color: rgba(255,255,255,.7);
  max-width: 55ch;
  margin: 0 auto;
  line-height: 1.6;
}

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

.stat-card {
  position: relative;
  padding: 2.5rem 2rem;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,.08);
  background: linear-gradient(165deg, rgba(255,255,255,.03) 0%, rgba(255,255,255,.01) 100%);
  text-align: center;
  transition: transform .25s ease, border-color .25s ease;
  overflow: hidden;
}
.stat-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, var(--stat-glow, rgba(133,85,255,.15)), transparent 60%);
  opacity: 0;
  transition: opacity .3s ease;
}
.stat-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,255,255,.15);
}
.stat-card:hover::before {
  opacity: 1;
}

.stat-card--experience { --stat-glow: rgba(133,85,255,.2); --stat-color: #a476ff; }
.stat-card--global { --stat-glow: rgba(0,224,255,.2); --stat-color: #00e0ff; }
.stat-card--results { --stat-glow: rgba(255,107,157,.2); --stat-color: #ff6b9d; }

.stat-card__number {
  position: relative;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  margin: 0 0 .25rem;
  background: linear-gradient(135deg, #fff 30%, var(--stat-color, #a476ff));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-card__label {
  position: relative;
  font-size: 1.1rem;
  font-weight: 700;
  color: rgba(255,255,255,.95);
  margin: 0 0 1rem;
  text-transform: lowercase;
}
.stat-card__desc {
  position: relative;
  font-size: .92rem;
  color: rgba(255,255,255,.65);
  line-height: 1.55;
  margin: 0;
  max-width: 28ch;
  margin-inline: auto;
}

@media (max-width: 960px) {
  .trust__grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }
}

/* ---------------------------
  Process / How it Works Section
----------------------------*/
.process {
  padding: clamp(4rem, 8vw, 7rem) 0;
  position: relative;
}
.process::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,224,255,.2), rgba(133,85,255,.15), transparent);
}
.process__header {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.process__title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 1rem;
  line-height: 1.1;
}
.process__subtitle {
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  color: rgba(255,255,255,.7);
  max-width: 55ch;
  margin: 0 auto;
  line-height: 1.6;
}

.process__steps {
  display: flex;
  align-items: stretch;
  gap: 0;
  max-width: 1000px;
  margin: 0 auto;
}

.step-card {
  flex: 1;
  position: relative;
  padding: 2rem 1.5rem;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,.08);
  background: linear-gradient(165deg, rgba(255,255,255,.04) 0%, rgba(255,255,255,.01) 100%);
  text-align: center;
  transition: transform .25s ease, border-color .25s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.step-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,255,255,.15);
}

.step-card__number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  font-weight: 800;
  background: linear-gradient(135deg, #8555ff, #00e0ff);
  color: #fff;
  margin-bottom: 1.25rem;
  box-shadow: 0 8px 24px -8px rgba(133,85,255,.4);
}

.step-card__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
}
.step-card__title {
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0;
  letter-spacing: -0.01em;
}
.step-card__tag {
  display: inline-block;
  padding: .3rem .7rem;
  border-radius: 999px;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .03em;
  color: rgba(0,224,255,.9);
  border: 1px solid rgba(0,224,255,.2);
  background: rgba(0,224,255,.06);
}
.step-card__desc {
  font-size: .9rem;
  color: rgba(255,255,255,.6);
  line-height: 1.55;
  margin: .5rem 0 0;
  max-width: 26ch;
}

.step-connector {
  width: 60px;
  min-width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
}
.step-connector::before {
  content: "";
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, rgba(133,85,255,.4), rgba(0,224,255,.4));
  border-radius: 2px;
}
.step-connector::after {
  content: "→";
  position: absolute;
  color: rgba(255,255,255,.3);
  font-size: .9rem;
}

@media (max-width: 768px) {
  .process__steps {
    flex-direction: column;
    gap: 0;
    max-width: 400px;
  }
  .step-connector {
    width: auto;
    height: 40px;
    min-width: unset;
  }
  .step-connector::before {
    width: 2px;
    height: 100%;
  }
  .step-connector::after {
    content: "↓";
  }
}

/* ---------------------------
  CTA Section
----------------------------*/
.cta {
  padding: clamp(4rem, 8vw, 6rem) 0;
  position: relative;
}
.cta__wrapper {
  position: relative;
  padding: clamp(3rem, 6vw, 4.5rem) clamp(2rem, 4vw, 4rem);
  border-radius: 28px;
  text-align: center;
  overflow: hidden;
  border: 1px solid rgba(133,85,255,.2);
  background: linear-gradient(165deg, rgba(133,85,255,.08) 0%, rgba(0,224,255,.04) 100%);
}
.cta__wrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse 60% 50% at 20% 20%, rgba(133,85,255,.15), transparent 50%),
    radial-gradient(ellipse 50% 40% at 80% 80%, rgba(0,224,255,.1), transparent 50%);
  pointer-events: none;
}
.cta__wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(133,85,255,.5), rgba(0,224,255,.3), transparent);
}
.cta__title {
  position: relative;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 1rem;
  line-height: 1.15;
  max-width: 22ch;
  margin-inline: auto;
}
.cta__desc {
  position: relative;
  font-size: clamp(1rem, 1.3vw, 1.12rem);
  color: rgba(255,255,255,.75);
  max-width: 50ch;
  margin: 0 auto 2rem;
  line-height: 1.6;
}
.cta__btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  padding: 1rem 2rem;
  border-radius: 999px;
  font-size: 1.05rem;
  font-weight: 700;
  background: linear-gradient(135deg, #8555ff 0%, #5b2bff 100%);
  color: #fff;
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 32px -8px rgba(133,85,255,.5);
  transition: transform .2s ease, box-shadow .2s ease;
}
.cta__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px -8px rgba(133,85,255,.6);
}
.cta__btn::after {
  content: "→";
  font-size: 1.1rem;
  transition: transform .2s ease;
}
.cta__btn:hover::after {
  transform: translateX(4px);
}

/* ---------------------------
  Service Models Section
----------------------------*/
.models {
  padding: clamp(4rem, 8vw, 7rem) 0;
  position: relative;
}
.models::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.08), transparent);
}
.models__header {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.models__label {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .5rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(255,179,71,.25);
  background: rgba(255,179,71,.08);
  font-size: .85rem;
  font-weight: 600;
  color: rgba(255,179,71,1);
  margin-bottom: 1.25rem;
  letter-spacing: .03em;
  text-transform: uppercase;
}
.models__title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 1rem;
  line-height: 1.1;
}
.models__subtitle {
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  color: rgba(255,255,255,.7);
  max-width: 55ch;
  margin: 0 auto;
  line-height: 1.6;
}

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

.model-card {
  position: relative;
  padding: 2.5rem 2rem 2rem;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,.08);
  background: linear-gradient(165deg, rgba(255,255,255,.04) 0%, rgba(255,255,255,.01) 100%);
  transition: transform .25s ease, border-color .25s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.model-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--model-accent, #8555ff), var(--model-accent-alt, #00e0ff));
}
.model-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,255,255,.15);
}

.model-card--project {
  --model-accent: #8555ff;
  --model-accent-alt: #a476ff;
}
.model-card--monthly {
  --model-accent: #00e0ff;
  --model-accent-alt: #00b8d4;
}

.model-card__badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .4rem .8rem;
  border-radius: 8px;
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  background: var(--model-accent);
  color: #fff;
  margin-bottom: 1.25rem;
  width: fit-content;
}

.model-card__title {
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0 0 .5rem;
  letter-spacing: -0.01em;
}
.model-card__desc {
  font-size: .95rem;
  color: rgba(255,255,255,.65);
  line-height: 1.5;
  margin: 0 0 1.5rem;
}

.model-card__features {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
  display: grid;
  gap: .6rem;
  flex: 1;
}
.model-card__features li {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .92rem;
  color: rgba(255,255,255,.85);
}
.model-card__features li::before {
  content: "✓";
  font-size: .7rem;
  font-weight: 700;
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  color: var(--model-accent);
  flex-shrink: 0;
}

.model-card__ideal {
  margin-top: auto;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255,255,255,.08);
  font-size: .88rem;
  color: rgba(255,255,255,.6);
}
.model-card__ideal strong {
  color: var(--model-accent);
  font-weight: 600;
}

@media (max-width: 768px) {
  .models__grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }
}

/* ---------------------------
  Footer
----------------------------*/
.site-footer {
  position: relative;
  margin-top: clamp(1rem, 2vw, 2rem);
}
.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(133,85,255,.2), rgba(0,224,255,.1), transparent);
}

.footer__bottom {
  padding: 1.5rem 0;
}
.footer__copy {
  margin: 0;
  font-size: .82rem;
  color: rgba(255,255,255,.4);
  text-align: center;
}
