:root {
  --magenta: #C2006F;
  --magenta-light: #E8449A;
  --magenta-glow: rgba(194, 0, 111, 0.2);
  --dark: #080510;
  --dark-2: #110820;
  --surface: rgba(255, 255, 255, 0.04);
  --surface-border: rgba(255, 255, 255, 0.08);
  --white: #FFFFFF;
  --muted: #666680;
  --content-max: 1200px;
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --nav-height: 88px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--white);
  background:
    radial-gradient(circle at 20% 10%, rgba(232, 68, 154, 0.18), transparent 22%),
    radial-gradient(circle at 80% 0%, rgba(194, 0, 111, 0.16), transparent 22%),
    linear-gradient(180deg, #05030a 0%, var(--dark) 35%, var(--dark-2) 100%);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

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

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

button {
  font: inherit;
}

.container {
  width: min(calc(100% - 2rem), var(--content-max));
  margin-inline: auto;
}

.section {
  position: relative;
  padding: clamp(2rem, 4vw, 2rem) 0;
}

.eyebrow {
  margin: 0 0 1rem;
  color: rgba(245, 198, 224, 0.82);
  font-size: 0.76rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.section-head {
  max-width: 50rem;
  margin-bottom: 2rem;
}

.section-head.compact {
  max-width: 36rem;
}

.section-head h2,
.services-sticky h2,
.process-intro h2,
.cta-inner h2 {
  margin: 0;
  font-family: "Playfair Display", serif;
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 0.94;
}

.section-head h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
}

.section-head p,
.services-sticky p,
.process-intro p,
.cta-inner p {
  margin: 1rem 0 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.8;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.2rem;
  padding: 0.95rem 1.35rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  letter-spacing: -0.01em;
  transition: transform 300ms cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 220ms ease, opacity 220ms ease, border-color 220ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:active {
  transform: translateY(0);
}

.btn:focus-visible,
.nav-links a:focus-visible,
.footer-links a:focus-visible {
  outline: 2px solid var(--magenta-light);
  outline-offset: 4px;
}

.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--magenta) 0%, var(--magenta-light) 100%);
  box-shadow: 0 18px 40px var(--magenta-glow);
}

.btn-primary:hover {
  box-shadow: 0 24px 60px rgba(194, 0, 111, 0.28);
}

.btn-secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.btn-secondary:hover {
  border-color: rgba(194, 0, 111, 0.28);
  box-shadow: 0 0 0 1px rgba(194, 0, 111, 0.12), 0 16px 40px rgba(194, 0, 111, 0.14);
}

.btn-full {
  width: 100%;
}

.btn-xl {
  min-height: 3.8rem;
  padding-inline: 1.7rem;
}

.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  background: linear-gradient(180deg, rgba(8, 5, 16, 0.1), rgba(8, 5, 16, 0));
  transition: background 220ms ease, backdrop-filter 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.nav.is-scrolled {
  background: rgba(8, 5, 16, 0.76);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.26);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  min-width: 0;
}

.brand-logo {
  width: 108px;
  height: auto;
}

.brand-tagline {
  display: flex;
  flex-direction: column;
  gap: 0.08rem;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.15;
  max-width: 14rem;
  white-space: normal;
}

.brand-tagline span {
  display: block;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 1.75rem;
}

.nav-lang {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.3rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.lang-switch {
  min-width: 4.2rem;
  height: 2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0 0.7rem;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: rgba(255, 255, 255, 0.68);
  font-weight: 700;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: background 200ms ease, color 200ms ease, transform 200ms ease;
}

.lang-switch.is-active {
  color: var(--white);
  background: linear-gradient(135deg, var(--magenta), var(--magenta-light));
  box-shadow: 0 10px 24px rgba(194, 0, 111, 0.25);
}

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

.lang-flag {
  font-size: 1rem;
  line-height: 1;
}

.lang-label {
  font-size: 0.78rem;
  line-height: 1;
}

.nav-links a {
  position: relative;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
  font-weight: 600;
  transition: transform 200ms ease, opacity 200ms ease, color 200ms ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.38rem;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--magenta), var(--magenta-light));
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 220ms ease;
}

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

.nav-links a:hover::after {
  transform: scaleX(1);
}

.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: calc(var(--nav-height) + 1.25rem);
  padding-bottom: 2rem;
  overflow: clip;
}

.hero-aurora {
  position: absolute;
  inset: -10% -15% auto -15%;
  height: 95%;
  background:
    radial-gradient(circle at 20% 20%, rgba(194, 0, 111, 0.34), transparent 28%),
    radial-gradient(circle at 75% 15%, rgba(232, 68, 154, 0.34), transparent 24%),
    radial-gradient(circle at 55% 65%, rgba(255, 107, 181, 0.2), transparent 26%);
  filter: blur(60px);
  opacity: 0.9;
}

.hero-orb {
  position: absolute;
  right: 10%;
  top: 50%;
  width: min(500px, 72vw);
  aspect-ratio: 1;
  border-radius: 50%;
  background: conic-gradient(from 0deg, #C2006F, #E8449A, #FF6BB5, #FF9ECD, #C2006F, #8B0050, #C2006F);
  filter: blur(60px);
  opacity: 0.65;
  transform: translateY(-50%);
  animation: orbRotate 8s linear infinite;
  will-change: transform, filter, opacity;
}

.hero-orb-shadow {
  position: absolute;
  right: 10%;
  top: 50%;
  width: min(620px, 82vw);
  aspect-ratio: 1;
  transform: translateY(-50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(194, 0, 111, 0.2), transparent 60%);
  filter: blur(70px);
  opacity: 0.55;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 3rem;
  align-items: center;
}

.hero-copy {
  max-width: 40rem;
}

.hero-headline {
  margin: 0;
  font-family: "Playfair Display", serif;
  font-size: clamp(4rem, 9vw, 8rem);
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: -0.03em;
}

.hero-headline .line {
  display: block;
  white-space: nowrap;
}

.hero-headline .line:nth-child(1) {
  color: rgba(255, 255, 255, 0.95);
}

.hero-headline .line:nth-child(2) {
  color: rgba(255, 255, 255, 0.85);
}

.hero-headline .accent {
  background: linear-gradient(135deg, #fff 0%, #ffd1ea 40%, #ff7ec0 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-sub {
  margin: 1.35rem 0 0;
  max-width: 33rem;
  font-size: clamp(1rem, 1.2vw, 1.15rem);
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.74);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.8rem;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.8rem;
}

.hero-tags span {
  padding: 0.72rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.85rem;
}

.hero-visual {
  position: relative;
  min-height: 34rem;
}

.hero-rocket-shell {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(74%, 28rem);
  transform: translate(-50%, -50%);
  transform-origin: center center;
  z-index: 2;
  will-change: transform, opacity;
}

.hero-rocket-shell img {
  width: 100%;
  height: auto;
}

.hero-rocket-shell::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -14%;
  width: 36%;
  height: 0;
  transform: translateX(-50%);
  border-radius: 999px;
  background: linear-gradient(to bottom, rgba(255, 107, 53, 1), rgba(255, 215, 0, 0.95) 50%, transparent 100%);
  filter: blur(10px);
  opacity: 0;
}

.hero-rocket-shell.launching::after {
  height: 140%;
  opacity: 1;
  animation: flicker 0.12s infinite alternate;
}

.hero-card {
  position: absolute;
  max-width: 15rem;
  padding: 1rem 1.1rem;
  border-radius: 22px;
  background: rgba(8, 5, 16, 0.56);
  border: 1px solid rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.28);
  animation: floaty 8s ease-in-out infinite;
}

.hero-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-card strong {
  display: block;
  margin-top: 0.55rem;
  font-size: 1.05rem;
  line-height: 1.4;
}

.hero-card-a {
  top: 8%;
  right: 4%;
}

.hero-card-b {
  left: 0;
  bottom: 12%;
}

.metrics {
  padding: 1rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.metrics-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.metric-item {
  flex: 1;
  min-width: 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding: 2rem 1rem;
}

.metric-divider {
  width: 1px;
  height: 5rem;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(194, 0, 111, 0.4) 40%,
    rgba(194, 0, 111, 0.4) 60%,
    transparent
  );
  flex-shrink: 0;
}

.metric-number {
  font-family: "Playfair Display", serif;
  font-size: clamp(3.5rem, 7vw, 6.5rem);
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 1;
  background: linear-gradient(
    120deg,
    #ffffff 0%,
    #ffd5ea 35%,
    var(--magenta-light) 55%,
    #ffffff 100%
  );
  background-size: 250% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: shimmer 5s linear infinite;
}

.metric-label {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  text-align: center;
}

.services-grid {
  display: grid;
  gap: 2rem;
}

.services-sticky {
  position: relative;
}

.services-sticky h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
}

.services-list {
  display: grid;
  gap: 0;
  padding: 8vh 0 6vh;
}

.service-item {
  position: relative;
  display: grid;
  grid-template-columns: 4rem 1fr;
  gap: 1rem;
  align-items: start;
  padding: 2rem 0;
  padding-left: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  opacity: 1;
  transform: translate3d(0, 0, 0);
  will-change: transform, opacity;
  transition: padding-left 300ms ease;
}

.service-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 3px;
  height: 60%;
  border-radius: 999px;
  background: linear-gradient(to bottom, var(--magenta), var(--magenta-light));
  transform: translateY(-50%) scaleY(0);
  transform-origin: center top;
  transition: transform 300ms cubic-bezier(0.34, 1.56, 0.64, 1);
}

.service-item:hover::before {
  transform: translateY(-50%) scaleY(1);
}

.service-item:hover {
  padding-left: 2rem;
}

.service-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  background: rgba(194, 0, 111, 0.12);
  border: 1px solid rgba(194, 0, 111, 0.2);
  color: #ffd5ea;
  font-weight: 600;
  letter-spacing: 0.12em;
}

.service-item h3 {
  margin: 0;
  font-family: "Playfair Display", serif;
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

.service-item p {
  margin: 0.75rem 0 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.75;
}

.plans {
  background: linear-gradient(180deg, rgba(194, 0, 111, 0.02), rgba(255, 255, 255, 0));
}

.plan-grid {
  display: grid;
  gap: 1rem;
  perspective: 1200px;
  perspective-origin: center 60%;
}

.plan-card {
  position: relative;
  padding: 2rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--surface-border);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.2);
  transition: transform 400ms cubic-bezier(0.34, 1.56, 0.64, 1), border-color 300ms ease, box-shadow 300ms ease;
  transform-style: preserve-3d;
  backface-visibility: hidden;
  will-change: transform, opacity;
}

.plan-card:hover {
  transform: translateY(-8px);
  border-color: rgba(194, 0, 111, 0.6);
  box-shadow: 0 24px 70px rgba(194, 0, 111, 0.12);
}

.plan-card.anim-done {
  transition: transform 400ms cubic-bezier(0.34, 1.56, 0.64, 1), border-color 300ms ease, box-shadow 300ms ease;
}

.plan-card.anim-done:hover {
  transform: translateY(-10px) scale(1.01);
  border-color: rgba(194, 0, 111, 0.7);
  box-shadow: 0 30px 80px rgba(194, 0, 111, 0.18);
}

.plan-card.featured {
  border-color: rgba(194, 0, 111, 0.7);
  background: rgba(194, 0, 111, 0.08);
}

.featured-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  background: rgba(194, 0, 111, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #ffd5ea;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.plan-badge {
  margin: 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.76rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.plan-card h3 {
  margin: 0.6rem 0 0;
  font-family: "Playfair Display", serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

.plan-card ul {
  margin: 1.1rem 0 1.5rem;
  padding: 0 0 0 1rem;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.8;
}

.plan-card li + li {
  margin-top: 0.35rem;
}

.logos {
  overflow: hidden;
  padding-bottom: 1rem;
}

.marquee-wrapper {
  display: grid;
  gap: 1rem;
  overflow: hidden;
  padding: 0.85rem 0.6rem;
  border-radius: 2rem;
  background: transparent;
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  width: max-content;
  will-change: transform;
  animation: marqueeLeft 70s linear infinite;
}

.marquee-track.reverse {
  animation: marqueeRight 70s linear infinite;
}

.marquee-track.is-running {
  animation-play-state: running;
}

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

.logo-card {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: clamp(10.5rem, 15vw, 13rem);
  height: clamp(5.4rem, 7vw, 6.4rem);
  padding: 0.8rem 0.95rem;
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(247, 248, 251, 0.94));
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 12px 22px rgba(15, 23, 42, 0.08);
  overflow: hidden;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.marquee-track img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
  opacity: 1;
}

.logo-card:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 18px 28px rgba(15, 23, 42, 0.12);
}

.process {
  padding: clamp(3rem, 5vw, 5rem) 0;
}

.process-header {
  max-width: 44rem;
  margin-bottom: 2.5rem;
}

.process-header h2 {
  margin: 0;
  font-family: "Playfair Display", serif;
  font-weight: 900;
  font-size: clamp(2rem, 4vw, 3.5rem);
  letter-spacing: -0.03em;
  line-height: 0.94;
}

.process-header p {
  margin: 1rem 0 0;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.8;
}

.process-stepper {
  position: relative;
  display: grid;
  gap: 0;
  padding-left: 2.5rem;
  --process-progress: 0;
}

.process-stepper::before,
.process-stepper::after {
  content: "";
  position: absolute;
  left: 0.95rem;
  top: 0.6rem;
  bottom: 0.6rem;
  width: 2px;
  border-radius: 999px;
}

.process-stepper::before {
  background: rgba(255, 255, 255, 0.07);
}

.process-stepper::after {
  background: linear-gradient(180deg, var(--magenta) 0%, var(--magenta-light) 100%);
  transform-origin: top center;
  transform: scaleY(var(--process-progress));
  box-shadow: 0 0 24px rgba(194, 0, 111, 0.25);
}

.process-step-item {
  position: relative;
  display: grid;
  grid-template-columns: 5rem 1fr;
  gap: 1.25rem;
  align-items: start;
  padding: 2.15rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  opacity: 0.22;
  transform: translate3d(0, 18px, 0);
  filter: blur(4px);
  will-change: transform, opacity, filter;
  transition: opacity 280ms ease, filter 280ms ease, transform 280ms ease, border-color 280ms ease;
}

.process-step-item.visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  filter: blur(0);
}

.process-step-item.active {
  opacity: 1;
  border-bottom-color: rgba(194, 0, 111, 0.28);
  background: linear-gradient(90deg, rgba(194, 0, 111, 0.08), transparent 70%);
}

.process-step-item.dimmed {
  opacity: 0.28;
  filter: blur(1px);
}

.process-step-item::before {
  content: "";
  position: absolute;
  left: -2rem;
  top: 2.35rem;
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 0 0 0 rgba(194, 0, 111, 0);
  transform: scale(0.92);
  transition: transform 280ms ease, background 280ms ease, border-color 280ms ease, box-shadow 280ms ease;
}

.process-step-item.active::before {
  background: var(--magenta);
  border-color: rgba(255, 255, 255, 0);
  box-shadow: 0 0 0 8px rgba(194, 0, 111, 0.08);
  animation: processDot 2s ease-in-out infinite;
}

.step-number {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(194, 0, 111, 0.45);
  transition: color 380ms ease, -webkit-text-stroke 380ms ease, transform 280ms ease;
}

.process-step-item.active .step-number {
  color: var(--magenta);
  -webkit-text-stroke: 1px transparent;
  transform: translateY(-2px);
}

.process-step-item.dimmed .step-number {
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.1);
}

.step-content h3 {
  margin: 0;
  font-family: "Playfair Display", serif;
  font-size: clamp(1.8rem, 2.8vw, 2.4rem);
  letter-spacing: -0.03em;
  line-height: 1;
  transition: transform 300ms ease, text-shadow 300ms ease, color 300ms ease;
}

.step-content {
  transition: transform 280ms ease;
}

.step-content p {
  margin: 0.75rem 0 0;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.8;
  max-width: 36rem;
  transition: transform 300ms ease, color 300ms ease;
}

.process-step-item.active .step-content {
  transform: translateX(8px);
}

.process-step-item.active .step-content h3 {
  color: var(--white);
  text-shadow: 0 0 18px rgba(194, 0, 111, 0.16);
}

.process-step-item.dimmed .step-content h3 {
  color: rgba(255, 255, 255, 0.3);
}

.process-step-item.active .step-content p {
  color: rgba(255, 255, 255, 0.78);
}

.team {
  background:
    radial-gradient(circle at 20% 15%, rgba(232, 68, 154, 0.13), transparent 24%),
    radial-gradient(circle at 80% 0%, rgba(194, 0, 111, 0.11), transparent 22%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.01), rgba(194, 0, 111, 0.03));
  padding-top: 2rem;
}

.team-grid,
.testimonials-grid {
  display: grid;
  gap: 1rem;
}

.team-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

.team-card,
.testimonial-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 1.15rem 1.15rem 1.35rem;
  border-radius: 2.25rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(194, 0, 111, 0.11));
  border: 1px solid rgba(255, 255, 255, 0.11);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
  transition: transform 300ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.team-card-founder {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(194, 0, 111, 0.12)),
    linear-gradient(135deg, rgba(255, 174, 230, 0.08), rgba(208, 126, 255, 0.08));
}

.team-card-tech {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(80, 44, 122, 0.14)),
    linear-gradient(135deg, rgba(130, 182, 255, 0.06), rgba(238, 164, 217, 0.06));
}

.team-card:hover,
.testimonial-card:hover {
  transform: translateY(-6px);
  border-color: rgba(194, 0, 111, 0.25);
  box-shadow: 0 28px 82px rgba(0, 0, 0, 0.24);
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -0.5rem;
  right: 1rem;
  font-family: "Playfair Display", serif;
  font-size: 8rem;
  color: rgba(194, 0, 111, 0.08);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.team-visual {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1.08;
  border-radius: 2.2rem 2.2rem 42% 2.2rem;
  overflow: hidden;
  margin-bottom: 1.35rem;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.24);
}

.team-visual::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 26%;
  background: linear-gradient(180deg, transparent, rgba(8, 5, 16, 0.24));
}

.team-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  pointer-events: none;
}

.team-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transform: scale(1.02);
}

.team-visual-one {
  background: linear-gradient(135deg, #b3caff, #f4bfe6);
}

.team-visual-two {
  background: linear-gradient(135deg, #f1b0df, #dca2ff);
}

.team-visual-three {
  background: linear-gradient(135deg, #ea9cdc, #a875ff);
}

.team-visual-three img {
  object-position: center center;
  transform: scale(1.08);
}

.team-visual-one img,
.team-visual-two img {
  transform: scale(1.04);
}

.team-body h3,
.testimonial-card span {
  margin: 0;
  font-family: "Playfair Display", serif;
  letter-spacing: -0.04em;
  font-size: clamp(1.35rem, 2vw, 1.75rem);
}

.team-body {
  display: grid;
  gap: 0.18rem;
}

.team-card p,
.testimonial-card p {
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.8;
}

.team-role {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.92rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.team-badge {
  margin: 0;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.team-badge-lead {
  color: rgba(255, 223, 246, 0.92);
}

.team-badge-tech {
  color: rgba(214, 236, 255, 0.92);
}

.team-card .team-body p:last-child {
  max-width: 30ch;
}

.team-card p:last-child {
  margin-bottom: 0;
}

.asesorias-grid {
  display: grid;
  gap: 1rem;
}

.asesoria-card {
  display: flex;
  flex-direction: column;
  position: relative;
  padding: 2rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--surface-border);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.18);
  opacity: 0;
  transform: translateY(28px);
  filter: blur(4px);
  will-change: transform, opacity, filter;
  transition: transform 400ms cubic-bezier(0.34, 1.56, 0.64, 1), border-color 300ms ease, box-shadow 300ms ease;
}

.asesoria-card[data-animated="true"] {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.asesoria-card.visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.asesoria-card:hover {
  transform: translateY(-8px);
  border-color: rgba(194, 0, 111, 0.5);
  box-shadow: 0 24px 70px rgba(194, 0, 111, 0.1);
}

.asesoria-icon {
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: rgba(194, 0, 111, 0.1);
  border: 1px solid rgba(194, 0, 111, 0.2);
  color: var(--magenta-light);
  margin-bottom: 1.25rem;
}

.asesoria-icon svg {
  width: 20px;
  height: 20px;
}

.asesoria-card h3 {
  margin: 0 0 0.6rem;
  font-family: "Playfair Display", serif;
  font-size: clamp(1.3rem, 2vw, 1.7rem);
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.asesoria-card p {
  margin: 0 0 1.5rem 0;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.75;
  font-size: 0.95rem;
}

.asesoria-tag {
  display: inline-block;
  margin-top: auto;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  background: rgba(194, 0, 111, 0.08);
  border: 1px solid rgba(194, 0, 111, 0.18);
  color: rgba(245, 198, 224, 0.85);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.asesorias-cta {
  margin-top: 3rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem;
}

.asesorias-cta p {
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
}

@media (min-width: 768px) {
  .asesorias-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .asesorias-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.team-role {
  margin: 0.45rem 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.76rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.testimonial-card p {
  margin: 0;
}

.testimonial-card span {
  display: inline-block;
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.95rem;
}

.cta {
  background: radial-gradient(circle at top, rgba(232, 68, 154, 0.18), transparent 35%), linear-gradient(135deg, rgba(194, 0, 111, 0.24), rgba(255, 107, 181, 0.12));
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.cta-inner {
  max-width: 52rem;
  margin-inline: auto;
  text-align: center;
}

.cta-inner h2 {
  font-size: clamp(2.5rem, 6vw, 5rem);
}

.cta-inner .btn {
  margin-top: 1.75rem;
}

.footer {
  padding: 1rem 0 2rem;
  background: transparent;
}

.footer-inner {
  display: grid;
  gap: 1rem;
  align-items: center;
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: 0;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: none;
}

.footer-brand {
  display: grid;
  gap: 0.35rem;
}

.footer-brand img {
  width: 118px;
}

.footer-brand p,
.footer-links a,
.footer-copy {
  color: rgba(255, 255, 255, 0.68);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: flex-start;
}

.footer-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--white);
  transition: transform 300ms cubic-bezier(0.34, 1.56, 0.64, 1), border-color 220ms ease, background 220ms ease;
}

.footer-icon {
  width: 18px;
  height: 18px;
  opacity: 0.85;
  flex-shrink: 0;
}

.footer-icon-whatsapp {
  width: 18px;
  height: 18px;
}

.footer-links a:hover {
  transform: translateY(-2px);
  border-color: rgba(194, 0, 111, 0.38);
  background: rgba(194, 0, 111, 0.1);
}

.footer-copy {
  margin: 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
}

@media (min-width: 768px) {
  .footer-inner {
    grid-template-columns: auto 1fr auto;
  }

  .footer-links {
    justify-content: center;
  }
}

#whatsapp-btn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 56px;
  height: 56px;
  background: var(--magenta);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 0 var(--magenta-glow);
  animation: pulse 2s infinite;
  z-index: 1000;
}

#whatsapp-btn,
.back-to-top {
  box-shadow: 0 0 0 0 var(--magenta-glow);
}

#whatsapp-btn,
.back-to-top {
  transition: transform 300ms cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 220ms ease, opacity 220ms ease, border-color 220ms ease;
}

#whatsapp-btn:hover,
.back-to-top:hover {
  transform: translateY(-2px);
}

#whatsapp-btn svg {
  width: 28px;
  height: 28px;
  fill: var(--white);
}

.back-to-top {
  position: fixed;
  right: 2rem;
  bottom: 6.2rem;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(8, 5, 16, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  z-index: 1000;
}

.back-to-top svg {
  width: 22px;
  height: 22px;
  fill: var(--white);
}

@media (min-width: 768px) {
  .nav-links {
    display: flex;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 2rem;
  }

  .services-grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    align-items: start;
    gap: 0;
  }

  .services-sticky {
    position: sticky;
    top: 20vh;
    padding-right: 4rem;
  }

  .services-list {
    padding: 8vh 0 6vh;
  }

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

  .team-grid,
  .testimonials-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

@media (min-width: 1024px) {
  .hero-grid {
    gap: 3rem;
  }

  .process-header {
    margin-bottom: 4rem;
  }
}

@media (max-width: 767px) {
  .nav {
    height: auto;
    padding: 0.85rem 0;
  }

  .brand-logo {
    width: 92px;
  }

  .brand-tagline {
    display: none;
  }

  .nav-cta {
    padding-inline: 1rem;
    min-height: 2.9rem;
  }

  .nav-lang {
    gap: 0.2rem;
    padding: 0.2rem;
    max-width: 5.2rem;
  }

  .lang-switch {
    min-width: 2.3rem;
    height: 1.85rem;
    padding: 0 0.3rem;
    gap: 0.14rem;
  }

  .lang-flag {
    font-size: 0.82rem;
  }

  .lang-label {
    font-size: 0.68rem;
  }

  .hero {
    min-height: 100svh;
    padding-top: calc(var(--nav-height) + 2.4rem);
  }

  .hero-headline {
    font-size: clamp(3rem, 15vw, 4.9rem);
    line-height: 0.9;
  }

  .hero-orb {
    width: min(74vw, 340px);
    right: -5%;
  }

  .hero-visual {
    min-height: 26rem;
  }

  .hero-card-a {
    right: 0;
    top: 4%;
  }

  .hero-card-b {
    left: 0;
    bottom: 4%;
  }

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

  .team-card {
    padding: 1rem 1rem 1.15rem;
  }

  .team-visual {
    aspect-ratio: 1 / 1.02;
    border-radius: 1.6rem 1.6rem 38% 1.6rem;
    margin-bottom: 1rem;
  }

  .footer-inner {
    text-align: left;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.85rem;
    justify-items: start;
  }

  .footer-brand img {
    width: 104px;
  }

  .footer-links {
    justify-content: flex-start;
    gap: 0.6rem;
  }

  .footer-copy {
    justify-self: start;
    letter-spacing: 0.05em;
  }

  #whatsapp-btn {
    bottom: 1rem;
    right: 1rem;
  }

  .back-to-top {
    right: 1rem;
    bottom: 4.75rem;
  }
}

@keyframes orbRotate {
  from {
    filter: blur(60px) hue-rotate(0deg);
  }
  to {
    filter: blur(60px) hue-rotate(360deg);
  }
}

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

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

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

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(194, 0, 111, 0.4);
  }
  70% {
    box-shadow: 0 0 0 16px rgba(194, 0, 111, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(194, 0, 111, 0);
  }
}

@keyframes shimmer {
  from {
    background-position: 200% center;
  }
  to {
    background-position: -200% center;
  }
}

@keyframes flicker {
  from {
    transform: translateX(-50%) scaleX(0.85);
    opacity: 0.9;
  }
  to {
    transform: translateX(-50%) scaleX(1.18);
    opacity: 1;
  }
}

@keyframes processGlow {
  0%, 100% {
    opacity: 0.55;
    transform: scaleX(0.985);
  }
  50% {
    opacity: 1;
    transform: scaleX(1);
  }
}

@keyframes processDot {
  0%, 100% {
    transform: scale(0.92);
    box-shadow: 0 0 0 8px rgba(194, 0, 111, 0.08);
  }
  50% {
    transform: scale(1);
    box-shadow: 0 0 0 12px rgba(194, 0, 111, 0.03);
  }
}

@keyframes stepNumberPulse {
  0%, 100% {
    transform: translateY(0);
    text-shadow: 0 0 0 rgba(194, 0, 111, 0);
  }
  50% {
    transform: translateY(-2px);
    text-shadow: 0 0 18px rgba(194, 0, 111, 0.18);
  }
}
