:root {
  --bg: #070a15;
  --bg-2: #0b1020;
  --bg-3: #0f1530;
  --surface: rgba(255, 255, 255, 0.04);
  --surface-2: rgba(255, 255, 255, 0.07);
  --border: rgba(255, 255, 255, 0.1);
  --border-strong: rgba(255, 255, 255, 0.18);
  --text: #f4f6ff;
  --muted: #9aa4bd;
  --muted-2: #6b7590;
  --primary: #7c5cff;
  --primary-soft: rgba(124, 92, 255, 0.16);
  --secondary: #ff4d8f;
  --secondary-soft: rgba(255, 77, 143, 0.14);
  --grad: linear-gradient(120deg, #7c5cff 0%, #b44dff 45%, #ff4d8f 100%);
  --grad-2: linear-gradient(120deg, #5ee7ff 0%, #7c5cff 60%);
  --success: #3ddc97;
  --radius: 20px;
  --radius-sm: 14px;
  --shadow-lg: 0 24px 60px rgba(0, 0, 0, 0.45);
  --shadow-glow: 0 0 60px rgba(124, 92, 255, 0.35);
  --font-head: 'Space Grotesk', 'Inter', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
  --header-h: 76px;
  --container: 1180px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

ul, ol {
  list-style: none;
}

.icon {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: none;
}
svg.icon:has(> use[href="#i-whatsapp"]) {
  fill: currentColor;
  stroke: none;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
  background: var(--primary);
  color: #fff;
  padding: 10px 16px;
  border-radius: 0 0 10px 0;
  font-weight: 600;
}
.skip-link:focus {
  left: 0;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.page-glow {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(60% 45% at 15% -5%, rgba(124, 92, 255, 0.16), transparent 60%),
    radial-gradient(50% 40% at 90% 12%, rgba(255, 77, 143, 0.1), transparent 60%);
}

/* ============ Header ============ */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: background 0.35s ease, border-color 0.35s ease, backdrop-filter 0.35s ease;
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
  background: rgba(7, 10, 21, 0.78);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-color: var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--grad);
  color: #fff;
  box-shadow: 0 6px 20px rgba(124, 92, 255, 0.45);
  transition: transform 0.3s ease;
}
.brand:hover .brand-mark {
  transform: rotate(-8deg) scale(1.06);
}
.brand-mark .icon {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: none;
}
.brand-text {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.18rem;
  letter-spacing: -0.02em;
}
.brand-accent {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-list {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-list a {
  font-size: 0.94rem;
  font-weight: 500;
  color: var(--muted);
  position: relative;
  padding: 6px 2px;
  transition: color 0.25s ease;
}
.nav-list a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--grad);
  transition: width 0.28s ease;
}
.nav-list a:hover,
.nav-list a:focus-visible {
  color: var(--text);
}
.nav-list a:hover::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
}
.nav-toggle .icon-close {
  display: none;
}

/* ============ Buttons ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.98rem;
  line-height: 1.2;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}
.btn:active {
  transform: scale(0.97);
}
.btn[disabled] {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none !important;
  box-shadow: none !important;
}
.btn .icon {
  width: 18px;
  height: 18px;
  transition: transform 0.25s ease;
}
.btn:hover .icon {
  transform: translateX(3px);
}

.btn-primary {
  background: var(--grad);
  background-size: 160% 160%;
  color: #fff;
  box-shadow: 0 10px 30px rgba(124, 92, 255, 0.4);
  border: none;
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.35) 50%, transparent 70%);
  transform: translateX(-120%);
  transition: transform 0.7s ease;
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 44px rgba(255, 77, 143, 0.45);
  background-position: 100% 50%;
}
.btn-primary:hover::before {
  transform: translateX(120%);
}

.btn-ghost {
  background: var(--surface);
  color: var(--text);
  border: 1px solid var(--border-strong);
}
.btn-ghost:hover {
  transform: translateY(-3px);
  background: var(--surface-2);
  border-color: rgba(124, 92, 255, 0.55);
  box-shadow: 0 10px 30px rgba(124, 92, 255, 0.2);
}

.btn-lg {
  padding: 17px 32px;
  font-size: 1.02rem;
}
.btn-sm {
  padding: 10px 18px;
  font-size: 0.9rem;
}
.btn-block {
  width: 100%;
}

/* ============ Hero ============ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: calc(var(--header-h) + 40px) 0 40px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: radial-gradient(75% 70% at 50% 35%, #000 20%, transparent 80%);
  mask-image: radial-gradient(75% 70% at 50% 35%, #000 20%, transparent 80%);
}
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.55;
  animation: orbFloat 14s ease-in-out infinite;
}
.orb-1 {
  width: 480px;
  height: 480px;
  left: -140px;
  top: 8%;
  background: radial-gradient(circle, rgba(124, 92, 255, 0.55), transparent 70%);
}
.orb-2 {
  width: 420px;
  height: 420px;
  right: -120px;
  top: 30%;
  background: radial-gradient(circle, rgba(255, 77, 143, 0.4), transparent 70%);
  animation-delay: -5s;
}
.orb-3 {
  width: 300px;
  height: 300px;
  left: 40%;
  bottom: -80px;
  background: radial-gradient(circle, rgba(94, 231, 255, 0.3), transparent 70%);
  animation-delay: -9s;
}
@keyframes orbFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-34px) scale(1.06); }
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  background: var(--surface);
  border: 1px solid var(--border-strong);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}
.pill-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 0 rgba(61, 220, 151, 0.6);
  animation: pulseDot 2s infinite;
}
@keyframes pulseDot {
  0% { box-shadow: 0 0 0 0 rgba(61, 220, 151, 0.55); }
  70% { box-shadow: 0 0 0 9px rgba(61, 220, 151, 0); }
  100% { box-shadow: 0 0 0 0 rgba(61, 220, 151, 0); }
}

.hero-title {
  font-family: var(--font-head);
  font-size: clamp(2.5rem, 6vw, 4.3rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
}
.grad-text {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.grad-text-2 {
  background: var(--grad-2);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.hero-sub {
  font-size: clamp(1.02rem, 1.6vw, 1.22rem);
  color: var(--muted);
  max-width: 540px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 4px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 500;
}
.hero-trust li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.hero-trust .icon {
  width: 16px;
  height: 16px;
  color: var(--success);
  stroke-width: 3;
}

/* Hero visual */
.hero-visual {
  position: relative;
}
.visual-card {
  position: relative;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.03));
  border: 1px solid var(--border-strong);
  border-radius: 24px;
  padding: 18px;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-lg);
  transform: rotateY(-4deg) rotateX(2deg);
  transition: transform 0.6s ease;
}
.hero-visual:hover .visual-card {
  transform: rotateY(0deg) rotateX(0deg);
}
.visual-card-head {
  display: flex;
  align-items: center;
  gap: 7px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}
.vc-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.vc-dot-1 { background: #ff5f57; }
.vc-dot-2 { background: #febc2e; }
.vc-dot-3 { background: #28c840; }
.vc-title {
  margin-left: 8px;
  font-size: 0.8rem;
  color: var(--muted);
  font-weight: 600;
}
.visual-card-body {
  padding-top: 16px;
}
.vc-metrics {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
}
.vc-metric {
  flex: 1;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.vc-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted-2);
  font-weight: 600;
}
.vc-metric strong {
  font-family: var(--font-head);
  font-size: 1.5rem;
  line-height: 1.1;
}
.vc-trend {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.72rem;
  font-weight: 600;
}
.vc-trend .icon {
  width: 13px;
  height: 13px;
  stroke-width: 2.5;
}
.vc-trend.up {
  color: var(--success);
}
.vc-chart {
  width: 100%;
  height: 110px;
  border-radius: 12px;
}
.vc-chart-line {
  stroke: var(--primary);
  stroke-width: 3;
  stroke-linecap: round;
  filter: drop-shadow(0 0 8px rgba(124, 92, 255, 0.6));
}
.vc-chart-fill {
  opacity: 0.9;
}

.float-chip {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: rgba(13, 18, 35, 0.85);
  border: 1px solid var(--border-strong);
  border-radius: 16px;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-lg);
  animation: chipFloat 5s ease-in-out infinite;
}
.float-chip .icon {
  width: 22px;
  height: 22px;
  color: var(--primary);
}
.float-chip strong {
  display: block;
  font-family: var(--font-head);
  font-size: 0.95rem;
  line-height: 1.15;
}
.float-chip span {
  display: block;
  font-size: 0.72rem;
  color: var(--muted);
}
.chip-1 {
  top: -22px;
  right: 6%;
}
.chip-2 {
  bottom: 16%;
  left: -30px;
  animation-delay: -1.5s;
}
.chip-3 {
  bottom: -24px;
  right: 12%;
  animation-delay: -3s;
}
.chip-avatars {
  display: flex;
}
.chip-avatars span {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-size: 0.72rem;
  font-weight: 700;
  color: #fff;
  border: 2px solid var(--bg-2);
  margin-left: -7px;
}
.chip-avatars span:first-child {
  margin-left: 0;
}
.chip-avatars span:nth-child(1) { background: var(--grad); }
.chip-avatars span:nth-child(2) { background: linear-gradient(135deg, #22c1c3, #5ee7ff); }
.chip-avatars span:nth-child(3) { background: linear-gradient(135deg, #f7971e, #ffd200); }

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

.hero-wave {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 90px;
  background: radial-gradient(120% 120% at 50% 0%, var(--bg-2) 0%, transparent 70%);
  opacity: 0.8;
  pointer-events: none;
}

/* ============ Marquee ============ */
.marquee {
  position: relative;
  overflow: hidden;
  padding: 20px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-2);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 34s linear infinite;
}
.marquee:hover .marquee-track {
  animation-play-state: paused;
}
.marquee-group {
  display: flex;
  align-items: center;
  gap: 40px;
  padding-right: 40px;
}
.marquee-group span {
  font-family: var(--font-head);
  font-size: 1.06rem;
  font-weight: 600;
  color: var(--muted);
  white-space: nowrap;
  transition: color 0.25s ease;
}
.marquee-group:hover span {
  color: var(--text);
}
.marquee-group i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--grad);
  flex: none;
  opacity: 0.8;
}
@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* ============ Sections ============ */
.section {
  padding: 100px 0;
  position: relative;
}

.section-head {
  max-width: 760px;
  margin: 0 auto 56px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.section-head .eyebrow {
  align-self: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
  background: var(--primary-soft);
  border: 1px solid rgba(124, 92, 255, 0.3);
  border-radius: 999px;
  padding: 7px 16px;
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.9rem, 4.2vw, 3rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.02em;
}
.section-sub {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto;
}

/* ============ Services ============ */
.services {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 26px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 0.35s ease, border-color 0.35s ease, background 0.35s ease, box-shadow 0.35s ease;
  transform-style: preserve-3d;
  will-change: transform;
}
.card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(140deg, rgba(124, 92, 255, 0.6), transparent 40%, rgba(255, 77, 143, 0.5));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}
.card:hover {
  transform: translateY(-8px);
  background: var(--surface-2);
  border-color: transparent;
  box-shadow: var(--shadow-lg);
}
.card:hover::before {
  opacity: 1;
}

.card-icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: var(--primary-soft);
  border: 1px solid rgba(124, 92, 255, 0.32);
  color: var(--primary);
  transition: background 0.35s ease, color 0.35s ease, transform 0.35s ease;
}
.card:hover .card-icon {
  background: var(--grad);
  color: #fff;
  transform: scale(1.08) rotate(-4deg);
}
.card-icon .icon {
  width: 26px;
  height: 26px;
}

.service-card h3 {
  font-family: var(--font-head);
  font-size: 1.22rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.25;
}
.service-card p {
  color: var(--muted);
  font-size: 0.94rem;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
}
.tag-list li {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 5px 12px;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--text);
  margin-top: 4px;
  transition: color 0.25s ease;
}
.card-link .icon {
  width: 17px;
  height: 17px;
  color: var(--primary);
  transition: transform 0.25s ease;
}
.card-link:hover {
  color: var(--primary);
}
.card-link:hover .icon {
  transform: translate(3px, -3px);
}
.link-btn {
  text-align: left;
  width: fit-content;
  padding: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.service-card-career {
  background:
    radial-gradient(120% 120% at 100% 0%, rgba(255, 77, 143, 0.12), transparent 55%),
    var(--surface);
}

.section-cta {
  margin-top: 48px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.section-cta p {
  color: var(--muted);
  font-size: 1.02rem;
  font-weight: 500;
}

/* ============ Process ============ */
.process {
  background: var(--bg-2);
}
.process-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  counter-reset: step;
}
.process-step {
  position: relative;
}
.step-num {
  position: absolute;
  top: -14px;
  right: 6px;
  font-family: var(--font-head);
  font-size: 4rem;
  font-weight: 700;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.14);
  pointer-events: none;
  z-index: 0;
}
.step-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  height: 100%;
  transition: transform 0.35s ease, border-color 0.35s ease, background 0.35s ease;
}
.step-card:hover {
  transform: translateY(-6px);
  border-color: rgba(124, 92, 255, 0.45);
  background: var(--surface-2);
}
.step-card .card-icon {
  width: 46px;
  height: 46px;
}
.step-card .card-icon .icon {
  width: 22px;
  height: 22px;
}
.step-card h3 {
  font-family: var(--font-head);
  font-size: 1.1rem;
}
.step-card p {
  color: var(--muted);
  font-size: 0.9rem;
}

/* ============ Stats ============ */
.stats-panel {
  background:
    radial-gradient(120% 140% at 0% 0%, rgba(124, 92, 255, 0.14), transparent 55%),
    radial-gradient(120% 140% at 100% 100%, rgba(255, 77, 143, 0.1), transparent 55%),
    var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: 28px;
  padding: 56px 48px;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 40px;
  align-items: center;
}
.stats-panel .section-head {
  margin: 0;
  text-align: left;
  align-items: flex-start;
}
.stats-panel .section-title {
  font-size: clamp(1.6rem, 3vw, 2.3rem);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.stat {
  text-align: center;
  padding: 10px 8px;
}
.stat-value {
  display: block;
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  line-height: 1.1;
}
.stat-label {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 500;
}

/* ============ Testimonials ============ */
.testimonials {
  background: var(--bg-2);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.testimonial {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.testimonial:hover {
  transform: translateY(-6px);
  border-color: rgba(124, 92, 255, 0.4);
  box-shadow: var(--shadow-lg);
}
.t-stars {
  display: flex;
  gap: 4px;
  color: #ffc53d;
}
.t-stars .icon {
  width: 17px;
  height: 17px;
  fill: currentColor;
  stroke: none;
}
.testimonial blockquote {
  font-size: 1.02rem;
  color: var(--text);
  line-height: 1.6;
}
.testimonial figcaption {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}
.avatar {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-family: var(--font-head);
  font-weight: 700;
  color: #fff;
  flex: none;
}
.avatar-1 { background: linear-gradient(135deg, #7c5cff, #b44dff); }
.avatar-2 { background: linear-gradient(135deg, #ff4d8f, #ff7a5c); }
.avatar-3 { background: linear-gradient(135deg, #22c1c3, #5ee7ff); }
.avatar-4 { background: linear-gradient(135deg, #f7971e, #ffd200); }
.testimonial figcaption strong {
  display: block;
  font-size: 0.95rem;
}
.testimonial figcaption span:last-child {
  display: block;
  font-size: 0.82rem;
  color: var(--muted);
}

/* ============ FAQ ============ */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color 0.3s ease, background 0.3s ease;
}
.faq-item[open] {
  border-color: rgba(124, 92, 255, 0.5);
  background: var(--surface-2);
}
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  cursor: pointer;
  font-weight: 600;
  font-size: 1.02rem;
  list-style: none;
  user-select: none;
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item summary .icon {
  color: var(--primary);
  transition: transform 0.35s ease;
}
.faq-item[open] summary .icon {
  transform: rotate(180deg);
}
.faq-item p {
  padding: 0 24px 22px;
  color: var(--muted);
  font-size: 0.95rem;
  max-width: 92%;
}

/* ============ Contact ============ */
.contact {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
}
.contact-panel {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: 28px;
  padding: 52px 48px;
  position: relative;
  overflow: hidden;
}
.contact-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(50% 60% at 0% 0%, rgba(124, 92, 255, 0.16), transparent 60%),
    radial-gradient(50% 60% at 100% 100%, rgba(255, 77, 143, 0.12), transparent 60%);
  pointer-events: none;
}
.contact-info,
.contact-form {
  position: relative;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-info .section-title {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
}
.contact-info > p {
  color: var(--muted);
  max-width: 460px;
}
.contact-channels {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 10px;
}
.channel {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 18px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}
.channel:hover {
  transform: translateX(6px);
  border-color: rgba(124, 92, 255, 0.5);
  background: var(--surface-2);
}
.channel-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  background: var(--primary-soft);
  color: var(--primary);
  border: 1px solid rgba(124, 92, 255, 0.3);
  flex: none;
}
.channel-icon .icon {
  width: 23px;
  height: 23px;
}
.channel strong {
  display: block;
  font-size: 0.98rem;
}
.channel span {
  display: block;
  font-size: 0.82rem;
  color: var(--muted);
}
.channel-arrow {
  margin-left: auto;
  color: var(--muted-2);
  transition: color 0.25s ease, transform 0.25s ease;
}
.channel:hover .channel-arrow {
  color: var(--primary);
  transform: translate(2px, -2px);
}

.contact-form {
  background: var(--bg);
  border: 1px solid var(--border-strong);
  border-radius: 22px;
  padding: 32px 30px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: var(--shadow-lg);
}
.contact-form h3 {
  font-family: var(--font-head);
  font-size: 1.3rem;
  margin-bottom: 4px;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.field span {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--muted);
}
.field input,
.field select,
.field textarea {
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--text);
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: 12px;
  padding: 13px 16px;
  width: 100%;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  resize: vertical;
}
.field input::placeholder,
.field textarea::placeholder {
  color: var(--muted-2);
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: var(--surface-2);
  box-shadow: 0 0 0 4px rgba(124, 92, 255, 0.18);
}
.field select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%239aa4bd' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
}
.field select option {
  background: var(--bg);
  color: var(--text);
}
.form-note {
  font-size: 0.78rem;
  color: var(--muted-2);
  text-align: center;
}

/* ============ Final CTA ============ */
.cta-final {
  padding: 40px 0 110px;
  position: relative;
}
.cta-final-inner {
  text-align: center;
  background:
    radial-gradient(70% 120% at 50% 0%, rgba(124, 92, 255, 0.22), transparent 60%),
    radial-gradient(60% 120% at 50% 120%, rgba(255, 77, 143, 0.16), transparent 60%),
    var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: 28px;
  padding: 70px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  overflow: hidden;
  position: relative;
}
.cta-final-inner .section-title {
  max-width: 640px;
}
.cta-final-inner p {
  color: var(--muted);
  font-size: 1.05rem;
}

/* ============ Footer ============ */
.site-footer {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding: 70px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 44px;
  border-bottom: 1px solid var(--border);
}
.footer-brand p {
  color: var(--muted);
  font-size: 0.92rem;
  margin: 18px 0 20px;
  max-width: 340px;
}
.social-row {
  display: flex;
  gap: 10px;
}
.social-row a {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  border: 1px solid var(--border-strong);
  background: var(--surface);
  color: var(--muted);
  transition: transform 0.25s ease, color 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}
.social-row a:hover {
  transform: translateY(-4px);
  color: #fff;
  background: var(--grad);
  border-color: transparent;
}
.footer-col h4 {
  font-family: var(--font-head);
  font-size: 0.98rem;
  margin-bottom: 18px;
  letter-spacing: -0.01em;
}
.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-col a {
  color: var(--muted);
  font-size: 0.9rem;
  transition: color 0.25s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.footer-col a:hover {
  color: var(--text);
}
.footer-contact a .icon {
  width: 17px;
  height: 17px;
  color: var(--primary);
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  padding-top: 26px;
  color: var(--muted-2);
  font-size: 0.85rem;
}
.footer-made {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  font-weight: 600;
}

/* ============ Floating WhatsApp ============ */
.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 90;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #22c15e;
  color: #fff;
  box-shadow: 0 10px 30px rgba(34, 193, 94, 0.45);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: floatWobble 3s ease-in-out infinite;
}
.whatsapp-float .icon {
  width: 30px;
  height: 30px;
  stroke: none;
  fill: currentColor;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 14px 40px rgba(34, 193, 94, 0.6);
}
@keyframes floatWobble {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ============ Modals ============ */
.modal {
  position: fixed;
  inset: 0;
  z-index: 150;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal[hidden] {
  display: none;
}
.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 6, 12, 0.72);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  animation: fadeIn 0.3s ease;
}
.modal-panel {
  position: relative;
  width: 100%;
  max-width: 560px;
  max-height: calc(100vh - 40px);
  overflow-y: auto;
  background: var(--bg-2);
  border: 1px solid var(--border-strong);
  border-radius: 24px;
  padding: 30px;
  box-shadow: var(--shadow-lg);
  animation: modalIn 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes modalIn {
  from { opacity: 0; transform: translateY(26px) scale(0.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid var(--border-strong);
  background: var(--surface);
  color: var(--muted);
  transition: color 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}
.modal-close:hover {
  color: #fff;
  transform: rotate(90deg);
  border-color: var(--secondary);
}

body.modal-open {
  overflow: hidden;
}

/* ============ Quiz ============ */
.quiz-head {
  margin-bottom: 24px;
}
.quiz-progress {
  height: 7px;
  border-radius: 999px;
  background: var(--surface);
  overflow: hidden;
  margin-bottom: 12px;
}
.quiz-progress-fill {
  display: block;
  height: 100%;
  width: 0;
  border-radius: 999px;
  background: var(--grad);
  transition: width 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: 0 0 14px rgba(124, 92, 255, 0.6);
}
.quiz-step-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.quiz-stage {
  min-height: 300px;
}
.quiz-question {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin-bottom: 22px;
}
.quiz-question small {
  display: block;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--muted);
  margin-top: 6px;
}
.quiz-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.quiz-option {
  display: flex;
  align-items: center;
  gap: 14px;
  text-align: left;
  padding: 16px 18px;
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: 14px;
  font-size: 0.98rem;
  font-weight: 500;
  color: var(--text);
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}
.quiz-option .opt-dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid var(--border-strong);
  flex: none;
  transition: border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}
.quiz-option .opt-icon {
  margin-left: auto;
  color: var(--muted-2);
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 0.25s ease, transform 0.25s ease, color 0.25s ease;
}
.quiz-option .opt-icon .icon {
  width: 18px;
  height: 18px;
}
.quiz-option:hover {
  transform: translateX(5px);
  border-color: rgba(124, 92, 255, 0.6);
  background: var(--surface-2);
}
.quiz-option.selected {
  border-color: var(--primary);
  background: var(--primary-soft);
}
.quiz-option.selected .opt-dot {
  border-color: var(--primary);
  background: var(--primary);
  box-shadow: 0 0 0 4px rgba(124, 92, 255, 0.25);
}
.quiz-option.selected .opt-icon {
  opacity: 1;
  transform: translateX(0);
  color: var(--primary);
}

.quiz-nav {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}
.quiz-back {
  padding: 10px 18px;
  font-size: 0.9rem;
}
.quiz-back .icon {
  transform: rotate(90deg);
}
.quiz-continue {
  width: 100%;
}
.quiz-back:hover .icon {
  transform: rotate(90deg) translateY(2px);
}
.quiz-nav-hint {
  font-size: 0.82rem;
  color: var(--muted-2);
  margin-left: auto;
  text-align: right;
}

.quiz-stage-anim {
  animation: stageIn 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
@keyframes stageIn {
  from { opacity: 0; transform: translateX(24px); }
  to { opacity: 1; transform: translateX(0); }
}
.quiz-stage-anim.back {
  animation-name: stageInBack;
}
@keyframes stageInBack {
  from { opacity: 0; transform: translateX(-24px); }
  to { opacity: 1; transform: translateX(0); }
}

/* Quiz result */
.quiz-result {
  text-align: center;
  padding: 8px 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.result-badge {
  width: 74px;
  height: 74px;
  margin: 0 auto;
  display: grid;
  place-items: center;
  border-radius: 22px;
  background: var(--grad);
  color: #fff;
  box-shadow: var(--shadow-glow);
}
.result-badge .icon {
  width: 36px;
  height: 36px;
  stroke-width: 2.2;
}
.quiz-result h3 {
  font-family: var(--font-head);
  font-size: 1.55rem;
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.quiz-result .result-desc {
  color: var(--muted);
  font-size: 0.98rem;
  max-width: 440px;
  margin: 0 auto;
}
.result-card {
  background: var(--surface);
  border: 1px solid rgba(124, 92, 255, 0.4);
  border-radius: 16px;
  padding: 20px;
  text-align: left;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.result-card .card-icon {
  width: 48px;
  height: 48px;
  flex: none;
}
.result-card .card-icon .icon {
  width: 23px;
  height: 23px;
}
.result-card strong {
  display: block;
  font-family: var(--font-head);
  font-size: 1.08rem;
  margin-bottom: 4px;
}
.result-card p {
  color: var(--muted);
  font-size: 0.88rem;
}
.result-cta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}
.btn-whatsapp {
  background: #22c15e;
  color: #fff;
  box-shadow: 0 10px 30px rgba(34, 193, 94, 0.4);
  width: 100%;
}
.btn-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(34, 193, 94, 0.55);
}
.result-restart {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: color 0.25s ease;
}
.result-restart:hover {
  color: var(--text);
}

/* ============ Careers modal ============ */
.careers-modal .modal-panel {
  max-width: 620px;
}
.careers-inner {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.careers-head {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding-top: 8px;
}
.careers-emoji {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  background: var(--grad);
  color: #fff;
  box-shadow: var(--shadow-glow);
}
.careers-emoji .icon {
  width: 30px;
  height: 30px;
}
.careers-head h3 {
  font-family: var(--font-head);
  font-size: 1.5rem;
}
.careers-head p {
  color: var(--muted);
  font-size: 0.95rem;
  max-width: 460px;
}
.careers-roles {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.role-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--border-strong);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--muted);
  transition: transform 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}
.role-chip:hover {
  transform: translateY(-3px);
  color: var(--text);
  border-color: rgba(124, 92, 255, 0.5);
}
.role-chip .icon {
  width: 15px;
  height: 15px;
  color: var(--primary);
}
.careers-form {
  box-shadow: none;
  background: var(--surface);
}

/* ============ Reveal animations ============ */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--delay, 0s);
  will-change: opacity, transform;
}
[data-reveal].is-in {
  opacity: 1;
  transform: none;
}

/* ============ Focus visible ============ */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
  border-radius: 6px;
}

/* ============ Reduced motion ============ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

/* ============ Responsive ============ */
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 64px;
  }
  .hero-visual {
    max-width: 560px;
    margin: 0 auto;
    width: 100%;
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .process-list {
    grid-template-columns: repeat(2, 1fr);
  }
  .stats-panel {
    grid-template-columns: 1fr;
  }
  .contact-panel {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  :root {
    --header-h: 68px;
  }
  .section {
    padding: 72px 0;
  }
  .site-nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
    padding: 24px;
    background: rgba(7, 10, 21, 0.97);
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    transform: translateY(-120%);
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    z-index: 99;
  }
  .site-nav.is-open {
    transform: translateY(0);
  }
  .nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
  }
  .nav-list a {
    display: block;
    padding: 12px 8px;
    font-size: 1.05rem;
  }
  .nav-cta {
    justify-content: center;
  }
  .nav-toggle {
    display: flex;
  }
  body.nav-open .icon-open {
    display: none;
  }
  body.nav-open .icon-close {
    display: block;
  }

  .hero {
    min-height: auto;
    padding-top: calc(var(--header-h) + 32px);
  }
  .hero-title {
    font-size: clamp(2.1rem, 9.5vw, 2.9rem);
  }
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-actions .btn {
    width: 100%;
  }
  .chip-2 {
    left: -8px;
  }
  .chip-3 {
    right: 4px;
  }
  .float-chip {
    padding: 10px 13px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }
  .process-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .stats-panel {
    padding: 40px 24px;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .contact-panel {
    padding: 36px 22px;
  }
  .cta-final-inner {
    padding: 54px 22px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer-bottom {
    justify-content: center;
    text-align: center;
  }
  .whatsapp-float {
    width: 52px;
    height: 52px;
    right: 16px;
    bottom: 16px;
  }
  .modal-panel {
    padding: 24px 20px;
  }
  .quiz-question {
    font-size: 1.28rem;
  }
}

@media (max-width: 420px) {
  .hero-trust {
    gap: 8px 14px;
    font-size: 0.82rem;
  }
  .brand-text {
    font-size: 1.05rem;
  }
  .vc-metric strong {
    font-size: 1.25rem;
  }
  .stats-grid {
    gap: 12px;
  }
}
