/* ============================================================
   GROW BIZ BUILDERS — Premium CSS
   ============================================================ */

/* ---- RESET & TOKENS ---- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg: #04070f;
  --bg-2: #070b18;
  --surface: #0b1225;
  --surface-2: #101a30;
  --border: rgba(100, 130, 255, 0.13);
  --border-2: rgba(100, 130, 255, 0.25);

  --accent: #6366f1;
  --accent-2: #8b5cf6;
  --accent-3: #06b6d4;
  --neon: #a78bfa;
  --green: #22c55e;

  --grad-main: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #06b6d4 100%);
  --grad-alt: linear-gradient(135deg, #f472b6 0%, #fb923c 100%);
  --grad-ai: linear-gradient(135deg, #06b6d4, #6366f1);

  --text: #eef2ff;
  --text-2: #8898c8;
  --text-3: #3d4f78;

  --radius: 20px;
  --radius-sm: 10px;

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --t: 0.35s;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.65;
}

/* ---- UTILITY ---- */
h1,
h2,
h3,
h4 {
  font-family: 'Outfit', sans-serif;
  line-height: 1.15;
}

.gradient-text {
  background: var(--grad-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-text-alt {
  background: var(--grad-alt);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- CURSOR GLOW ---- */
.cursor-glow {
  position: fixed;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.06), transparent 70%);
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease;
}

/* ---- LOADER ---- */
.loader-screen {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.loader-screen.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Outfit', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  animation: pulseLogo 1s ease infinite alternate;
}

.loader-icon {
  font-size: 2.2rem;
  color: var(--accent);
}

.loader-brand {
  color: var(--text);
}

.loader-bar {
  width: 200px;
  height: 3px;
  background: var(--surface-2);
  border-radius: 10px;
  overflow: hidden;
}

.loader-fill {
  height: 100%;
  background: var(--grad-main);
  border-radius: 10px;
  animation: loaderFill 1.6s var(--ease) forwards;
}

@keyframes loaderFill {
  from {
    width: 0;
  }

  to {
    width: 100%;
  }
}

@keyframes pulseLogo {
  from {
    opacity: 0.6;
  }

  to {
    opacity: 1;
  }
}

/* ---- NAVBAR ---- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: all var(--t) var(--ease);
}

.navbar.scrolled {
  background: rgba(4, 7, 15, 0.9);
  backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
}

.nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  transition: transform var(--t) var(--spring);
}

.logo:hover {
  transform: scale(1.03);
}

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

.logo-img--footer {
  height: 44px;
}

.logo-hex {
  font-size: 22px;
  color: var(--accent);
  animation: hexSpin 8s linear infinite;
  display: inline-block;
}

@keyframes hexSpin {

  0%,
  100% {
    filter: hue-rotate(0deg);
  }

  50% {
    filter: hue-rotate(60deg);
  }
}

.logo-text {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 20px;
  color: var(--text);
}

.logo-accent {
  color: var(--accent);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-2);
  font-size: 14px;
  font-weight: 500;
  position: relative;
  transition: color var(--t);
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: var(--grad-main);
  border-radius: 2px;
  transition: width var(--t) var(--ease);
}

.nav-links a:hover {
  color: var(--text);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  background: var(--grad-main) !important;
  color: #fff !important;
  padding: 11px 24px;
  border-radius: 50px;
  box-shadow: 0 0 20px rgba(99, 102, 241, 0.35);
  transition: box-shadow var(--t), transform var(--t) var(--spring) !important;
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  box-shadow: 0 0 40px rgba(99, 102, 241, 0.6) !important;
  transform: translateY(-2px) !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-2);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ---- HERO ---- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: radial-gradient(ellipse 100% 80% at 50% 0%, rgba(99, 102, 241, 0.12), transparent 65%),
    radial-gradient(ellipse 60% 50% at 10% 100%, rgba(139, 92, 246, 0.08), transparent 60%),
    radial-gradient(ellipse 50% 40% at 90% 20%, rgba(6, 182, 212, 0.06), transparent 55%),
    var(--bg);
}

#particleCanvas {
  position: absolute;
  inset: 0;
  z-index: 1;
}

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

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
  animation: orbFloat 10s ease-in-out infinite alternate;
}

.orb-1 {
  width: 500px;
  height: 500px;
  background: rgba(99, 102, 241, 0.3);
  top: -200px;
  left: -150px;
  animation-duration: 12s;
}

.orb-2 {
  width: 400px;
  height: 400px;
  background: rgba(139, 92, 246, 0.25);
  bottom: -100px;
  right: -100px;
  animation-duration: 9s;
  animation-delay: -4s;
}

.orb-3 {
  width: 300px;
  height: 300px;
  background: rgba(6, 182, 212, 0.2);
  top: 40%;
  left: 60%;
  animation-duration: 14s;
  animation-delay: -6s;
}

@keyframes orbFloat {
  from {
    transform: translate(0, 0) scale(1);
  }

  to {
    transform: translate(40px, 30px) scale(1.1);
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 860px;
  padding: 130px 24px 80px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(99, 102, 241, 0.1);
  border: 1px solid rgba(99, 102, 241, 0.35);
  padding: 9px 22px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  color: var(--neon);
  margin-bottom: 30px;
  animation: badgePop 0.9s var(--spring) both;
}

.badge-ai-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent-3);
  box-shadow: 0 0 8px var(--accent-3);
  animation: aiPulse 2s ease infinite;
}

@keyframes aiPulse {

  0%,
  100% {
    box-shadow: 0 0 8px var(--accent-3);
    transform: scale(1);
  }

  50% {
    box-shadow: 0 0 16px var(--accent-3), 0 0 24px rgba(6, 182, 212, 0.3);
    transform: scale(1.3);
  }
}

@keyframes badgePop {
  from {
    opacity: 0;
    transform: scale(0.8) translateY(20px);
  }

  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.line-reveal {
  display: inline-block;
  animation: lineReveal 1s var(--ease) both;
}

.line-reveal.delay-1 {
  animation-delay: 0.15s;
}

@keyframes lineReveal {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-title {
  font-size: clamp(3rem, 8vw, 6.2rem);
  font-weight: 900;
  letter-spacing: -0.035em;
  margin-bottom: 24px;
  line-height: 1.1;
}

.typewriter-wrap {
  position: relative;
  display: inline-block;
}

.typewriter {
  color: transparent;
  background: var(--grad-main);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.typewriter-cursor {
  display: inline-block;
  color: var(--accent);
  margin-left: 3px;
  animation: blink 0.9s step-end infinite;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }
}

.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: var(--text-2);
  margin-bottom: 36px;
  line-height: 1.7;
  animation: fadeUp 0.9s 0.3s var(--ease) both;
}

.hero-subtitle em {
  color: var(--text);
  font-style: normal;
  font-weight: 600;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 40px;
  animation: fadeUp 0.9s 0.45s var(--ease) both;
}

.hero-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  animation: fadeUp 0.9s 0.6s var(--ease) both;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  color: var(--text-3);
  font-weight: 500;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-3);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  animation: fadeIn 2s 1.2s ease both;
}

.scroll-mouse {
  width: 22px;
  height: 36px;
  border: 2px solid var(--border-2);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}

.scroll-wheel-dot {
  width: 4px;
  height: 8px;
  background: var(--accent);
  border-radius: 3px;
  animation: scrollDown 2s ease infinite;
}

@keyframes scrollDown {

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

  80% {
    opacity: 0;
    transform: translateY(12px);
  }
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all var(--t) var(--spring);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  background: rgba(255, 255, 255, 0.12);
  transition: opacity 0.2s;
}

.btn:hover::before {
  opacity: 1;
}

.btn-primary {
  background: var(--grad-main);
  color: #fff;
  box-shadow: 0 0 28px rgba(99, 102, 241, 0.45);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 50px rgba(99, 102, 241, 0.65);
}

.btn-primary:active {
  transform: scale(0.97);
}

.btn-ghost {
  background: transparent;
  color: var(--text-2);
  border: 1px solid var(--border-2);
}

.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--text);
  background: rgba(99, 102, 241, 0.08);
  transform: translateY(-2px);
}

.btn-next {
  width: 100%;
  justify-content: center;
  background: var(--grad-main);
  color: #fff;
  padding: 15px 32px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 700;
  box-shadow: 0 0 24px rgba(99, 102, 241, 0.4);
}

.btn-next:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 44px rgba(99, 102, 241, 0.6);
}

.btn-back {
  background: transparent;
  color: var(--text-3);
  border: 1px solid var(--border);
  padding: 14px 24px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
}

.btn-back:hover {
  color: var(--text);
  border-color: var(--border-2);
}


/* ---- MARQUEE ---- */
.marquee-wrapper {
  position: relative;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-2);
  padding: 18px 0;
  overflow: hidden;
}

.marquee-gradient {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}

.marquee-gradient.left {
  left: 0;
  background: linear-gradient(to right, var(--bg-2), transparent);
}

.marquee-gradient.right {
  right: 0;
  background: linear-gradient(to left, var(--bg-2), transparent);
}

.marquee-track {
  overflow: hidden;
}

.marquee-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  white-space: nowrap;
  animation: marqueeSlide 30s linear infinite;
  will-change: transform;
}

.marquee-inner span {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.marquee-inner .sep {
  color: var(--accent);
  font-size: 9px;
}

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

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

/* ---- SECTION HEADERS ---- */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-label-pill {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  background: rgba(99, 102, 241, 0.1);
  border: 1px solid rgba(99, 102, 241, 0.25);
  padding: 7px 18px;
  border-radius: 50px;
  margin-bottom: 18px;
}

.section-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  margin-bottom: 16px;
}

.section-desc {
  color: var(--text-2);
  max-width: 560px;
  margin: 0 auto;
  font-size: 16px;
}

/* ---- SERVICES ---- */
.services {
  padding: 120px 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px 28px 48px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: transform var(--t) var(--spring), box-shadow var(--t), border-color var(--t);
}

.card-glow {
  position: absolute;
  inset: -1px;
  border-radius: 20px;
  background: var(--grad-main);
  opacity: 0;
  z-index: -1;
  transition: opacity var(--t);
}

.service-card:hover .card-glow {
  opacity: 0.12;
}

.service-card:hover {
  transform: translateY(-8px) scale(1.01);
  border-color: var(--border-2);
  box-shadow: 0 24px 60px rgba(99, 102, 241, 0.15), 0 0 0 1px rgba(99, 102, 241, 0.2);
}

.service-card.featured {
  background: linear-gradient(145deg, rgba(99, 102, 241, 0.12), rgba(139, 92, 246, 0.06));
  border-color: rgba(99, 102, 241, 0.35);
}

.featured-glow {
  opacity: 0.08 !important;
}

.featured-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--grad-main);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.service-icon-wrap {
  margin-bottom: 20px;
}

.service-icon {
  width: 58px;
  height: 58px;
  border-radius: 14px;
  background: rgba(99, 102, 241, 0.1);
  border: 1px solid rgba(99, 102, 241, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  transition: all var(--t) var(--spring);
}

.service-card:hover .service-icon {
  background: rgba(99, 102, 241, 0.22);
  box-shadow: 0 0 24px rgba(99, 102, 241, 0.35);
  transform: scale(1.1) rotate(-5deg);
}

.service-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.service-card p {
  color: var(--text-2);
  font-size: 14px;
  line-height: 1.65;
}

.card-footer {
  position: absolute;
  bottom: 24px;
  left: 28px;
  right: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.card-tag {
  font-size: 11px;
  font-weight: 600;
  color: var(--accent);
  background: rgba(99, 102, 241, 0.1);
  padding: 4px 10px;
  border-radius: 20px;
  border: 1px solid rgba(99, 102, 241, 0.2);
}

.card-arrow-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(99, 102, 241, 0.1);
  border: 1px solid rgba(99, 102, 241, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 16px;
  transition: all var(--t) var(--spring);
  opacity: 0;
  transform: translateX(-8px);
}

.service-card:hover .card-arrow-btn {
  opacity: 1;
  transform: translateX(0);
}

/* ---- AI SECTION ---- */
.ai-section {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 50%, var(--bg) 100%);
}

.ai-bg-grid {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(rgba(99, 102, 241, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(99, 102, 241, 0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%);
}

.ai-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.ai-label {
  background: rgba(6, 182, 212, 0.1);
  border-color: rgba(6, 182, 212, 0.25);
  color: var(--accent-3);
}

.section-desc.left-aligned {
  margin: 0 0 36px;
  text-align: left;
  max-width: 100%;
}

.ai-features {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.ai-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.ai-feature.visible {
  opacity: 1;
  transform: translateX(0);
}

.ai-feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(6, 182, 212, 0.1);
  border: 1px solid rgba(6, 182, 212, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.ai-feature h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 6px;
}

.ai-feature p {
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.6;
}

/* Terminal */
.ai-terminal {
  background: #08111f;
  border: 1px solid rgba(99, 102, 241, 0.3);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(99, 102, 241, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  animation: terminalFloat 6s ease-in-out infinite alternate;
}

@keyframes terminalFloat {
  from {
    transform: translateY(0) rotate(-1deg);
  }

  to {
    transform: translateY(-12px) rotate(0.5deg);
  }
}

.terminal-header {
  background: #050c19;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid rgba(99, 102, 241, 0.15);
}

.t-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.t-dot.red {
  background: #ff5f57;
}

.t-dot.yellow {
  background: #fdbc2c;
}

.t-dot.green {
  background: #28c840;
}

.terminal-title {
  margin-left: 8px;
  font-size: 12px;
  color: var(--text-3);
  font-family: monospace;
}

.terminal-body {
  padding: 20px 20px 16px;
  font-family: 'Courier New', monospace;
}

.t-line {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
  overflow: hidden;
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.4s ease;
}

.t-line.visible {
  opacity: 1;
  transform: translateX(0);
}

.t-line.success .t-prompt {
  color: var(--green);
}

.t-prompt {
  color: var(--accent);
  font-size: 14px;
  margin-top: 1px;
}

.t-text {
  font-size: 13px;
  color: var(--text-2);
}

.terminal-cursor {
  width: 8px;
  height: 16px;
  background: var(--accent);
  border-radius: 2px;
  opacity: 0;
  transition: opacity 0.3s;
  margin-top: 4px;
  animation: blink 1s step-end infinite;
}

.terminal-cursor.visible {
  opacity: 1;
}

.terminal-output {
  padding: 16px 20px;
  border-top: 1px solid rgba(99, 102, 241, 0.15);
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.output-pill {
  font-size: 12px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 50px;
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.4s var(--spring);
}

.output-pill.visible {
  opacity: 1;
  transform: scale(1);
}

.output-pill.green {
  background: rgba(34, 197, 94, 0.15);
  color: var(--green);
  border: 1px solid rgba(34, 197, 94, 0.3);
}

.output-pill.blue {
  background: rgba(6, 182, 212, 0.15);
  color: var(--accent-3);
  border: 1px solid rgba(6, 182, 212, 0.3);
}

.output-pill.purple {
  background: rgba(99, 102, 241, 0.15);
  color: var(--neon);
  border: 1px solid rgba(99, 102, 241, 0.3);
}

/* ---- WHY US ---- */
.why-us {
  padding: 120px 0;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 72px;
}

.why-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  transition: transform var(--t) var(--spring), box-shadow var(--t), border-color var(--t);
}

.why-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-2);
  box-shadow: 0 20px 50px rgba(99, 102, 241, 0.12);
}

.why-number {
  position: absolute;
  top: 20px;
  right: 20px;
  font-family: 'Outfit', sans-serif;
  font-size: 3rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.03);
  line-height: 1;
}

.why-icon {
  font-size: 2.2rem;
  margin-bottom: 16px;
  display: block;
  transition: transform 0.3s var(--spring);
}

.why-card:hover .why-icon {
  transform: scale(1.2) rotate(-5deg);
}

.why-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.why-card p {
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.65;
}

.stats-strip {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 20px;
  flex-wrap: wrap;
}

.strip-stat {
  text-align: center;
}

.strip-num {
  font-family: 'Outfit', sans-serif;
  font-size: 3rem;
  font-weight: 900;
  display: block;
  line-height: 1;
}

.strip-suffix {
  font-family: 'Outfit', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--accent);
}

.strip-label {
  font-size: 13px;
  color: var(--text-3);
  margin-top: 6px;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.strip-divider {
  width: 1px;
  height: 64px;
  background: var(--border);
}

/* ---- PROCESS ---- */
.process {
  padding: 120px 0;
}

.process-timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.timeline-line {
  position: absolute;
  left: 28px;
  top: 20px;
  bottom: 20px;
  width: 2px;
  background: var(--border);
  border-radius: 2px;
  z-index: 0;
}

.timeline-progress {
  width: 100%;
  height: 0%;
  background: var(--grad-main);
  border-radius: 2px;
  transition: height 1.5s var(--ease);
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.process-step {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  padding: 32px 0;
  position: relative;
  z-index: 1;
}

.step-bubble {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  flex-shrink: 0;
  background: var(--surface);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s var(--spring);
  position: relative;
  z-index: 2;
}

.step-bubble.active {
  background: var(--grad-main);
  border-color: transparent;
  box-shadow: 0 0 24px rgba(99, 102, 241, 0.5);
}

.step-num {
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  color: var(--text-3);
  transition: color 0.3s;
}

.step-bubble.active .step-num {
  color: #fff;
}

.step-body {
  flex: 1;
  padding-top: 10px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

.process-step:last-child .step-body {
  border-bottom: none;
}

.step-body h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.step-body p {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.65;
  margin-bottom: 12px;
}

.step-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  background: rgba(99, 102, 241, 0.1);
  border: 1px solid rgba(99, 102, 241, 0.2);
  padding: 3px 10px;
  border-radius: 50px;
}

/* ---- CONTACT ---- */
.contact {
  padding: 100px 0 120px;
  position: relative;
  overflow: hidden;
}

.contact-bg-orbs {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.c-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.2;
  animation: orbFloat 12s ease-in-out infinite alternate;
}

.c-orb-1 {
  width: 600px;
  height: 600px;
  background: rgba(99, 102, 241, 0.4);
  top: -200px;
  left: -200px;
}

.c-orb-2 {
  width: 500px;
  height: 500px;
  background: rgba(139, 92, 246, 0.3);
  bottom: -150px;
  right: -150px;
  animation-delay: -6s;
}

.contact-top {
  text-align: center;
  margin-bottom: 64px;
  position: relative;
  z-index: 1;
}

.contact-main-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  margin-bottom: 16px;
}

.contact-main-sub {
  font-size: 17px;
  color: var(--text-2);
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 60px;
  align-items: start;
  position: relative;
  z-index: 1;
}

/* Info cards */
.contact-info-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 22px 24px;
  margin-bottom: 16px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: border-color var(--t), transform var(--t) var(--spring);
}

.contact-info-card:hover {
  border-color: var(--border-2);
  transform: translateX(6px);
}

.cic-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
}

.contact-info-card h4 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 5px;
}

.contact-info-card p {
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.6;
}

.contact-social {
  margin-top: 24px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-2);
  text-decoration: none;
  transition: color var(--t);
}

.social-link:hover {
  color: var(--accent);
}

/* Multi-step form */
.contact-form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 36px;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.4);
}

.form-progress {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 32px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
}

.form-progress-step {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-3);
  transition: color 0.3s;
}

.form-progress-step span {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--surface-2);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  transition: all 0.4s var(--spring);
}

.form-progress-step.active {
  color: var(--accent);
}

.form-progress-step.active span {
  background: var(--grad-main);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 0 16px rgba(99, 102, 241, 0.4);
}

.form-progress-step.done span {
  background: var(--green);
  color: #fff;
  border-color: transparent;
}

.form-progress-line {
  flex: 1;
  height: 2px;
  background: var(--border);
  border-radius: 2px;
  position: relative;
}

.form-progress-line.active::after {
  content: '';
  position: absolute;
  inset-block: 0;
  left: 0;
  right: 0;
  background: var(--grad-main);
  border-radius: 2px;
}

.form-step {
  display: none;
}

.form-step.active {
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: stepIn 0.4s var(--ease) both;
}

@keyframes stepIn {
  from {
    opacity: 0;
    transform: translateX(20px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.step-title {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.form-step-btns {
  display: flex;
  gap: 12px;
  align-items: center;
}

.form-step-btns .btn-next {
  flex: 1;
}

/* Floating label inputs */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group.floating {
  position: relative;
}

.form-group.floating label {
  position: absolute;
  left: 16px;
  top: 14px;
  font-size: 14px;
  color: var(--text-3);
  pointer-events: none;
  transition: all 0.25s var(--ease);
  background: transparent;
  padding: 0 4px;
}

.form-group.floating input:focus~label,
.form-group.floating input:not(:placeholder-shown)~label,
.form-group.floating select:focus~label,
.form-group.floating textarea:focus~label,
.form-group.floating textarea:not(:placeholder-shown)~label {
  top: -10px;
  font-size: 11px;
  color: var(--accent);
  background: var(--surface);
  font-weight: 600;
}

.form-group.floating input,
.form-group.floating select,
.form-group.floating textarea {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: 12px;
  padding: 14px 16px;
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  outline: none;
  transition: border-color var(--t), box-shadow var(--t);
  resize: none;
  -webkit-appearance: none;
  appearance: none;
}

.form-group.floating input:focus,
.form-group.floating select:focus,
.form-group.floating textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.15);
}

.form-group.floating input.error {
  border-color: #f87171;
}

.form-group.floating select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%233d4f78' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

select option {
  background: var(--surface);
}

.form-error {
  font-size: 12px;
  color: #f87171;
  min-height: 14px;
  padding-left: 4px;
}

/* Goal chips */
.goal-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.goal-chip {
  padding: 9px 16px;
  border-radius: 50px;
  border: 1.5px solid var(--border);
  background: var(--bg);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-2);
  cursor: pointer;
  user-select: none;
  transition: all var(--t) var(--spring);
}

.goal-chip:hover {
  border-color: var(--border-2);
  color: var(--text);
  transform: scale(1.04);
}

.goal-chip.selected {
  background: rgba(99, 102, 241, 0.15);
  border-color: var(--accent);
  color: var(--accent);
  box-shadow: 0 0 14px rgba(99, 102, 241, 0.25);
}

/* Submit button */
.btn-submit {
  width: 100%;
  justify-content: center;
  background: var(--grad-main);
  color: #fff;
  padding: 17px 32px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 700;
  box-shadow: 0 0 30px rgba(99, 102, 241, 0.45);
  transition: all var(--t) var(--spring);
  border: none;
  cursor: pointer;
  flex: 1;
  position: relative;
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 50px rgba(99, 102, 241, 0.65);
}

.btn-loader {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2.5px solid rgba(255, 255, 255, 0.3);
  border-top-color: #fff;
  animation: spin 0.8s linear infinite;
  margin: 0 auto;
}

.hidden {
  display: none !important;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Success */
.form-success {
  background: var(--surface);
  border: 1px solid rgba(34, 197, 94, 0.3);
  border-radius: 24px;
  padding: 60px 40px;
  text-align: center;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.4);
  animation: successPop 0.6s var(--spring) both;
}

@keyframes successPop {
  from {
    opacity: 0;
    transform: scale(0.9);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.success-animation {
  position: relative;
  margin-bottom: 28px;
  display: flex;
  justify-content: center;
}

.success-circle {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: rgba(34, 197, 94, 0.1);
  border: 2px solid rgba(34, 197, 94, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  animation: successBounce 0.8s var(--spring) 0.2s both;
}

@keyframes successBounce {
  from {
    transform: scale(0);
  }

  to {
    transform: scale(1);
  }
}

.form-success h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 12px;
}

.form-success p {
  color: var(--text-2);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 24px;
}

.success-tags {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}

.success-tags span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--green);
  background: rgba(34, 197, 94, 0.08);
  border: 1px solid rgba(34, 197, 94, 0.2);
  padding: 8px 18px;
  border-radius: 50px;
}

/* ---- FOOTER ---- */
.footer {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  position: relative;
  padding: 0 0 36px;
}

.footer-wave {
  overflow: hidden;
  height: 60px;
  transform: rotate(180deg);
}

.footer-wave svg {
  width: 100%;
  height: 100%;
}

.footer-inner {
  display: flex;
  gap: 80px;
  padding: 40px 0 48px;
}

.footer-brand {
  flex: 1;
}

.footer-logo {
  margin-bottom: 16px;
  display: inline-flex;
}

.footer-brand p {
  color: var(--text-3);
  font-size: 14px;
  line-height: 1.7;
  max-width: 280px;
  margin-bottom: 20px;
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.social-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-3);
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  transition: all var(--t) var(--spring);
}

.social-icon:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(99, 102, 241, 0.2);
}

.footer-links {
  display: flex;
  gap: 60px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col h4 {
  font-size: 12px;
  font-weight: 700;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 4px;
}

.footer-col a {
  font-size: 14px;
  color: var(--text-3);
  text-decoration: none;
  transition: color var(--t);
}

.footer-col a:hover {
  color: var(--accent);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border);
  padding-top: 28px;
}

.footer-bottom p {
  font-size: 13px;
  color: var(--text-3);
}

.footer-made {
  font-size: 13px;
}

/* ---- ANIMATIONS ---- */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* Scroll reveal */
.stagger-reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

.stagger-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Magnetic button effect — no transform interference */
.magnetic {
  transition: all var(--t) var(--spring);
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .ai-inner {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .contact-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-inner {
    flex-direction: column;
    gap: 40px;
  }
}

@media (max-width: 768px) {

  /* Nav mobile */
  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(4, 7, 15, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    z-index: 1000;
  }

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

  .nav-links a {
    font-size: 22px;
    font-weight: 600;
  }

  .nav-cta {
    font-size: 18px !important;
    padding: 14px 32px !important;
  }

  .hamburger {
    display: flex;
    position: relative;
    z-index: 1001;
  }

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

  .why-grid {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  .timeline-line {
    left: 24px;
  }

  .process-step {
    gap: 20px;
  }

  .step-bubble {
    width: 48px;
    height: 48px;
  }

  .footer-links {
    flex-wrap: wrap;
    gap: 28px;
  }

  /* Stats strip */
  .stats-strip {
    padding: 28px 20px;
    flex-direction: column;
  }

  .strip-divider {
    width: 60px;
    height: 1px;
  }

  /* Form */
  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 24px 20px;
  }

  .hide-mobile {
    display: none;
  }
}

@media (max-width: 480px) {
  .why-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .form-step-btns {
    flex-direction: column;
  }

  .form-step-btns .btn-back {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
}