/* ============================================================
   MY CLASSY WEB STORE — Global Design System
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* ── Design Tokens ───────────────────────────────────────── */
:root {
  --bg: #0A0118;
  --bg-alt: #0E0224;
  --surface: rgba(255, 255, 255, 0.05);
  --surface-2: rgba(255, 255, 255, 0.08);
  --border: rgba(255, 255, 255, 0.1);
  --border-hover: rgba(255, 255, 255, 0.2);
  --primary: #5B6AF8;
  --primary-dark: #4455e8;
  --primary-glow: rgba(91, 106, 248, 0.25);
  --accent: #00D4FF;
  --accent-glow: rgba(0, 212, 255, 0.2);

  /* Vibrant Glass Palette */
  --vibrant-pink: #FF3BFF;
  --vibrant-purple: #7000FF;
  --vibrant-orange: #FF8A00;
  --vibrant-blue: #0075FF;

  --text: #E8ECF4;
  --text-muted: #8A93B2;
  --text-faint: #4A537A;
  --success: #22D3A0;
  --radius: 16px;
  --radius-lg: 24px;
  --radius-xl: 36px;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.5);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.6);
  --transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --font: 'Inter', sans-serif;
}

/* ── Reset & Base ────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ── Scroll Progress ─────────────────────────────────────── */
.scroll-progress-wrap {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  z-index: 9999;
  background: rgba(255, 255, 255, 0.03);
}

.scroll-progress-bar {
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--primary), var(--vibrant-pink));
  box-shadow: 0 0 10px rgba(91, 106, 248, 0.4);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

ul {
  list-style: none;
}

button {
  border: none;
  cursor: pointer;
  font-family: var(--font);
}

input,
textarea,
select {
  font-family: var(--font);
}

/* ── Utility ─────────────────────────────────────────────── */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(0, 212, 255, 0.08);
  border: 1px solid rgba(0, 212, 255, 0.2);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 16px;
}

.section-title span {
  color: var(--primary);
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 580px;
}

.section-header {
  margin-bottom: 64px;
}

.section-header.centered {
  text-align: center;
}

.section-header.centered .section-subtitle {
  margin: 0 auto;
}

section {
  padding: 110px 0;
  position: relative;
  overflow: hidden;
}

.gradient-text {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Glass Background Blobs ──────────────────────────────── */
.glass-blobs {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}

.blob-goo {
  width: 100%;
  height: 100%;
  filter: url(#liquid-goo);
  position: relative;
}

.blob {
  position: absolute;
  border-radius: 50% 40% 60% 50% / 50% 60% 40% 50%;
  filter: blur(10px);
  opacity: 1;
  animation: blob-float 40s infinite alternate ease-in-out;
  mix-blend-mode: screen;
  transform-origin: center;
  /* Hyper-Realistic 3D Liquid Thickness */
  box-shadow:
    inset -25px -25px 80px rgba(0, 0, 0, 0.7),
    inset 25px 25px 80px rgba(255, 255, 255, 0.5),
    inset 0 0 50px rgba(255, 255, 255, 0.25);
}

.blob-1 {
  width: 280px;
  height: 280px;
  background: radial-gradient(circle at 30% 30%, var(--vibrant-purple) 0%, var(--vibrant-pink) 50%, transparent 100%);
  top: -40px;
  right: -20px;
  border-radius: 40% 60% 70% 30% / 50% 60% 40% 50%;
  animation-duration: 40s;
}

.blob-2 {
  width: 240px;
  height: 260px;
  background: radial-gradient(circle at 70% 30%, var(--vibrant-pink) 0%, var(--vibrant-blue) 50%, transparent 100%);
  bottom: -30px;
  left: -15px;
  border-radius: 60% 40% 50% 50% / 40% 50% 60% 50%;
  animation-delay: -6s;
  animation-duration: 50s;
}

.blob-3 {
  width: 200px;
  height: 200px;
  background: radial-gradient(circle at 40% 40%, var(--vibrant-orange) 0%, var(--vibrant-pink) 50%, transparent 100%);
  top: 35%;
  left: 25%;
  border-radius: 50% 50% 30% 70% / 60% 40% 70% 40%;
  animation-delay: -3s;
  animation-duration: 60s;
}

.blob-small {
  width: 75px;
  height: 75px;
  filter: blur(20px);
  opacity: 0.6;
}

.blob-4 {
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, var(--vibrant-blue), transparent 70%);
  animation-duration: 25s;
}

.blob-5 {
  width: 190px;
  height: 190px;
  background: radial-gradient(circle, var(--vibrant-pink), transparent 70%);
  animation-delay: -8s;
  animation-duration: 30s;
}

.blob-6 {
  width: 160px;
  height: 160px;
  background: radial-gradient(circle, var(--vibrant-purple), transparent 70%);
  animation-delay: -4s;
}

/* Elastic Satellite Droplets */
.blob-sub {
  position: absolute;
  filter: blur(8px);
  opacity: 0.9;
  mix-blend-mode: plus-lighter;
  transform-origin: center;
  box-shadow:
    inset -8px -8px 25px rgba(0, 0, 0, 0.5),
    inset 8px 8px 25px rgba(255, 255, 255, 0.3);
}

.blob-1-s1 {
  width: 120px;
  height: 120px;
  background: radial-gradient(circle at 30% 30%, var(--vibrant-purple), transparent 80%);
  top: 10%;
  right: 15%;
  animation: blob-drift-1 35s infinite ease-in-out;
}

.blob-1-s2 {
  width: 80px;
  height: 80px;
  background: radial-gradient(circle at 30% 30%, var(--vibrant-pink), transparent 80%);
  top: 50%;
  right: 40%;
  animation: blob-drift-2 45s infinite ease-in-out;
}

.blob-2-s1 {
  width: 100px;
  height: 100px;
  background: radial-gradient(circle at 70% 30%, var(--vibrant-blue), transparent 80%);
  bottom: 20%;
  left: 25%;
  animation: blob-drift-3 40s infinite ease-in-out;
}

.blob-3-s1 {
  width: 90px;
  height: 90px;
  background: radial-gradient(circle at 40% 40%, var(--vibrant-orange), transparent 80%);
  top: 40%;
  left: 35%;
  animation: blob-drift-1 55s infinite ease-in-out;
}

/* High-definition liquid shine */
.blob::after,
.blob-sub::after {
  content: '';
  position: absolute;
  top: 15%;
  left: 15%;
  width: 45%;
  height: 45%;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.7) 0%, transparent 80%);
  filter: blur(10px);
  border-radius: 50%;
  transform: rotate(-25deg);
  opacity: 0.8;
}

.blob::before {
  content: '';
  position: absolute;
  inset: 10px;
  border-radius: inherit;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.25), transparent 60%);
  filter: blur(4px);
}

@keyframes blob-float {
  0% {
    transform: translate(0, 0) scale(1) rotate(0deg);
    border-radius: 40% 60% 65% 35% / 45% 55% 45% 55%;
  }

  25% {
    transform: translate(120px, -150px) scale(1.4) skew(12deg, 6deg) rotate(45deg);
    border-radius: 35% 65% 75% 25% / 50% 35% 65% 50%;
  }

  50% {
    transform: translate(-80px, 120px) scale(0.8) skew(-8deg, -12deg) rotate(-30deg);
    border-radius: 60% 40% 30% 70% / 40% 65% 35% 60%;
  }

  75% {
    transform: translate(60px, 60px) scale(1.1) rotate(15deg);
    border-radius: 45% 55% 70% 30% / 55% 45% 65% 35%;
  }

  100% {
    transform: translate(0, 0) scale(1) rotate(360deg);
    border-radius: 40% 60% 65% 35% / 45% 55% 45% 55%;
  }
}

@keyframes blob-drift-1 {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
    border-radius: 50%;
  }

  40% {
    transform: translate(220px, -180px) scale(1.7) skew(18deg);
    border-radius: 30% 70% 40% 60%;
  }

  70% {
    transform: translate(-120px, 70px) scale(0.6) skew(-12deg);
    border-radius: 70% 30% 60% 40%;
  }
}

@keyframes blob-drift-2 {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
    border-radius: 50%;
  }

  35% {
    transform: translate(-280px, -100px) scale(1.5) skew(-18deg);
    border-radius: 60% 40% 70% 30%;
  }

  65% {
    transform: translate(180px, 200px) scale(0.7) skew(12deg);
    border-radius: 30% 70% 30% 70%;
  }
}

@keyframes blob-drift-3 {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
    border-radius: 50%;
  }

  50% {
    transform: translate(200px, 250px) scale(2.0) skew(25deg);
    border-radius: 40% 60% 30% 70%;
  }
}

/* ── Ions (Lucide) ───────────────────────────────────────── */
.lucide {
  width: 1.25em;
  height: 1.25em;
  stroke-width: 2px;
  vertical-align: middle;
  display: inline-block;
}

.nav-logo-icon.lucide {
  width: 24px;
  height: 24px;
  color: var(--primary);
  stroke-width: 2.5px;
}

.badge-icon.lucide {
  width: 14px;
  height: 14px;
  margin-right: 6px;
  color: var(--accent);
}

.stat-icon.lucide {
  width: 28px;
  height: 28px;
  color: var(--primary);
  margin-bottom: 12px;
}

.service-icon .lucide {
  width: 32px;
  height: 32px;
  color: var(--primary);
}

.why-feature-icon .lucide {
  width: 24px;
  height: 24px;
  color: var(--accent);
}

.process-num .lucide {
  width: 24px;
  height: 24px;
  color: var(--primary);
  margin-bottom: 8px;
}

.price-feature-check .lucide {
  width: 16px;
  height: 16px;
  color: var(--success);
}

.btn .lucide {
  width: 1.1em;
  height: 1.1em;
  margin-left: 8px;
  transition: transform var(--transition);
}

.btn:hover .lucide {
  transform: translateX(4px);
}

/* ── Scroll Reveal ───────────────────────────────────────── */
.scroll-reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.scroll-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.scroll-reveal.delay-1 {
  transition-delay: 0.1s;
}

.scroll-reveal.delay-2 {
  transition-delay: 0.2s;
}

.scroll-reveal.delay-3 {
  transition-delay: 0.3s;
}

.scroll-reveal.delay-4 {
  transition-delay: 0.4s;
}

.scroll-reveal.delay-5 {
  transition-delay: 0.5s;
}

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--vibrant-purple) 0%, var(--vibrant-pink) 100%);
  color: #fff;
  box-shadow: 0 0 0 0 rgba(112, 0, 255, 0.4);
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 15px 40px rgba(112, 0, 255, 0.4);
  background: linear-gradient(135deg, #8200FF 0%, #FF4BFF 100%);
}

.btn-primary:active {
  transform: translateY(-1px);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
  color: #fff;
  transform: translateY(-2px);
}

.btn-lg {
  padding: 17px 36px;
  font-size: 1rem;
  border-radius: 16px;
}

/* ── Navigation ──────────────────────────────────────────── */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: var(--transition);
  padding: 20px 0;
}

#navbar.scrolled {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 14px 0;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  overflow: visible;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--text);
  flex-shrink: 0;
  white-space: nowrap;
}

.nav-logo-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  flex-shrink: 0;
}

.nav-links a {
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text);
  background: var(--surface);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  padding: 6px;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}

/* ── Hero ────────────────────────────────────────────────── */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 0 100px;
  position: relative;
  overflow: hidden;
}

/* Hero entrance — CSS-only, no JS dependency */
.hero-reveal {
  opacity: 0;
  animation: hero-fade-in 0.9s ease both;
}

@keyframes hero-fade-in {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-reveal.delay-1 {
  animation-delay: 0.2s;
}

.hero-reveal.delay-2 {
  animation-delay: 0.4s;
}

.hero-reveal.delay-3 {
  animation-delay: 0.6s;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 80% 60% at 60% 40%, rgba(91, 106, 248, 0.12) 0%, transparent 70%),
    radial-gradient(ellipse 50% 40% at 20% 80%, rgba(0, 212, 255, 0.07) 0%, transparent 60%);
}

.hero-grid-dots {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    radial-gradient(circle, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 40px 40px;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 212, 255, 0.3);
  padding: 7px 16px;
  border-radius: 100px;
  margin-bottom: 28px;
}

.hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(0.8);
  }
}

.hero-title {
  font-size: clamp(2.5rem, 5.5vw, 4rem);
  font-weight: 900;
  line-height: 1.08;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-visual {
  position: relative;
}

.hero-img-wrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow:
    inset 0 1px 1px rgba(255, 255, 255, 0.2),
    0 20px 60px rgba(0, 0, 0, 0.5);
  position: relative;
}

.hero-img-wrap img {
  width: 100%;
  border-radius: var(--radius-xl);
}

.hero-img-glow {
  position: absolute;
  inset: -2px;
  border-radius: calc(var(--radius-xl) + 2px);
  background: linear-gradient(135deg, rgba(91, 106, 248, 0.3), rgba(0, 212, 255, 0.15));
  z-index: -1;
  filter: blur(20px);
}

.hero-float-card {
  position: absolute;
  background: rgba(15, 19, 32, 0.9);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-hover);
  border-radius: 14px;
  padding: 14px 18px;
  box-shadow: var(--shadow-md);
}

.hero-float-card-1 {
  bottom: -20px;
  left: -30px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-float-card-2 {
  top: -20px;
  right: -20px;
}

.float-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  background: var(--primary-glow);
}

.float-label {
  font-size: 0.7rem;
  color: var(--text-muted);
}

.float-value {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
}

/* ── Stats ───────────────────────────────────────────────── */
#stats {
  padding: 60px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-alt);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.stat-item {
  text-align: center;
  padding: 40px 24px;
  border-right: 1px solid var(--border);
  position: relative;
}

.stat-item:last-child {
  border-right: none;
}

.stat-number {
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 10px;
  background: linear-gradient(135deg, var(--text) 0%, var(--text-muted) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-suffix {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* ── Services ────────────────────────────────────────────── */
#services {
  background: var(--bg);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.service-card {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(40px) saturate(240%);
  -webkit-backdrop-filter: blur(40px) saturate(240%);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  cursor: default;
  /* Premium liquid thickness */
  box-shadow:
    inset 0 1px 1.5px rgba(255, 255, 255, 0.25),
    0 15px 45px rgba(0, 0, 0, 0.45);
}

.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent);
  pointer-events: none;
  z-index: 0;
}

.service-card:hover {
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-10px) scale(1.02);
  background: rgba(255, 255, 255, 0.08);
  box-shadow:
    inset 0 1px 1px rgba(255, 255, 255, 0.3),
    0 25px 50px rgba(0, 0, 0, 0.5),
    0 0 20px rgba(91, 106, 248, 0.2);
}

.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 22px;
  background: var(--primary-glow);
  border: 1px solid rgba(91, 106, 248, 0.2);
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background: rgba(91, 106, 248, 0.2);
  box-shadow: 0 0 20px var(--primary-glow);
}

.service-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text);
}

.service-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.service-card .service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--primary);
  opacity: 0;
  transform: translateX(-6px);
  transition: var(--transition);
}

.service-card:hover .service-link {
  opacity: 1;
  transform: translateX(0);
}

/* ── Why Choose Us ───────────────────────────────────────── */
#why {
  background: var(--bg-alt);
}

.why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.why-visual {
  position: relative;
  border-radius: var(--radius-xl);
}

.why-mockup {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(50px) saturate(250%);
  -webkit-backdrop-filter: blur(50px) saturate(250%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-xl);
  padding: 32px;
  box-shadow:
    inset 0 1px 2px rgba(255, 255, 255, 0.35),
    var(--shadow-lg);
  position: relative;
}

.why-mockup-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
}

.why-mockup-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.why-mockup-dot:nth-child(1) {
  background: #FF5F57;
}

.why-mockup-dot:nth-child(2) {
  background: #FFBD2E;
}

.why-mockup-dot:nth-child(3) {
  background: #28C840;
}

.why-metric-row {
  display: flex;
  gap: 14px;
  margin-bottom: 14px;
}

.why-metric {
  flex: 1;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 18px;
  text-align: center;
}

.why-metric-val {
  font-size: 1.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.why-metric-lbl {
  font-size: 0.7rem;
  color: var(--text-muted);
  margin-top: 4px;
}

.why-progress-row {
  display: flex;
  flex-direction: column;
  gap: 14px;
}



.why-progress-label {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.why-progress-bar {
  height: 6px;
  background: var(--border);
  border-radius: 100px;
  overflow: hidden;
}

.why-progress-fill {
  height: 100%;
  border-radius: 100px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1);
  width: 0;
}

.why-progress-fill.animated {
  width: var(--target-width);
}

.why-features {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.why-feature {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 24px;
  background: rgba(20, 24, 41, 0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius);
  transition: var(--transition);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.05);
}

.why-feature:hover {
  border-color: rgba(91, 106, 248, 0.3);
  background: rgba(20, 24, 41, 0.6);
  transform: translateX(8px);
  box-shadow:
    inset 0 1px 1px rgba(255, 255, 255, 0.1),
    0 12px 24px rgba(0, 0, 0, 0.3);
}

.why-feature-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border-radius: 12px;
  background: var(--primary-glow);
  border: 1px solid rgba(91, 106, 248, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.why-feature h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.why-feature p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ── Process ─────────────────────────────────────────────── */
#process {
  background: var(--bg);
}

.process-steps {
  display: flex;
  gap: 0;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 40px;
  right: 40px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border) 10%, var(--border) 90%, transparent);
  z-index: 0;
}

.process-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 16px;
  position: relative;
  z-index: 1;
}

.process-num {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(20, 24, 41, 0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 24px;
  position: relative;
  transition: var(--transition);
  box-shadow:
    inset 0 1px 2px rgba(255, 255, 255, 0.2),
    0 8px 16px rgba(0, 0, 0, 0.4);
}

.process-step:hover .process-num {
  transform: scale(1.1);
  border-color: var(--primary);
  background: rgba(91, 106, 248, 0.15);
  box-shadow:
    inset 0 1px 2px rgba(255, 255, 255, 0.3),
    0 0 24px var(--primary-glow);
}

.process-step-label {
  position: absolute;
  top: -10px;
  right: -8px;
  width: 26px;
  height: 26px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 800;
  color: white;
}

.process-step h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.process-step p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ── Pricing ─────────────────────────────────────────────── */
#pricing {
  background: var(--bg-alt);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.price-card {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(40px) saturate(240%);
  -webkit-backdrop-filter: blur(40px) saturate(240%);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-xl);
  padding: 40px 36px;
  position: relative;
  transition: var(--transition);
  box-shadow:
    inset 0 1px 1.5px rgba(255, 255, 255, 0.25),
    0 20px 50px rgba(0, 0, 0, 0.5);
}

.price-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow:
    inset 0 1px 2px rgba(255, 255, 255, 0.45),
    0 35px 85px rgba(0, 0, 0, 0.75);
}

.price-card.popular {
  border-color: var(--primary);
  background: rgba(91, 106, 248, 0.18);
  backdrop-filter: blur(50px) saturate(260%);
  -webkit-backdrop-filter: blur(50px) saturate(260%);
  box-shadow:
    inset 0 0 0 2px var(--primary),
    inset 0 1px 4px rgba(255, 255, 255, 0.5),
    0 45px 110px rgba(91, 106, 248, 0.5);
  transform: scale(1.05);
}

.price-card.popular:hover {
  transform: scale(1.05) translateY(-10px);
  background: rgba(91, 106, 248, 0.28);
}

.price-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--primary), #7C5FFF);
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 5px 18px;
  border-radius: 100px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.price-tier {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}

.price-name {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.price-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.price-amount {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 6px;
}

.price-currency {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-muted);
}

.price-value {
  font-size: 3rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--text), var(--text-muted));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.price-period {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.price-divider {
  height: 1px;
  background: var(--border);
  margin: 28px 0;
}

.price-features {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-bottom: 32px;
}

.price-feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.price-feature-check {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(34, 211, 160, 0.15);
  border: 1px solid rgba(34, 211, 160, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  color: var(--success);
  margin-top: 1px;
}

.price-indicator {
  position: absolute;
  bottom: 24px;
  right: 28px;
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--text-faint);
  letter-spacing: 0.05em;
  opacity: 0.5;
}

.price-card.popular .price-indicator {
  color: rgba(255, 255, 255, 0.3);
  opacity: 0.8;
}

#testimonials {
  background: var(--bg);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(40px) saturate(240%);
  -webkit-backdrop-filter: blur(40px) saturate(240%);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  position: relative;
  transition: var(--transition);
  box-shadow:
    inset 0 1px 1.5px rgba(255, 255, 255, 0.25),
    0 15px 45px rgba(0, 0, 0, 0.45);
}

.testimonial-card:hover {
  border-color: rgba(255, 255, 255, 0.35);
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.08);
  box-shadow:
    inset 0 1px 2px rgba(255, 255, 255, 0.45),
    0 25px 55px rgba(0, 0, 0, 0.55);
}

.testimonial-quote {
  font-size: 2.5rem;
  line-height: 1;
  color: var(--primary);
  margin-bottom: 20px;
  opacity: 0.6;
}

.testimonial-text {
  font-size: 0.925rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 28px;
  font-style: italic;
}

.testimonial-rating {
  display: flex;
  gap: 4px;
  margin-bottom: 24px;
}

.star {
  color: #FFB800;
  font-size: 0.85rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  border-top: 1px solid var(--border);
  padding-top: 24px;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
}

.testimonial-name {
  font-size: 0.9rem;
  font-weight: 700;
}

.testimonial-role {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ── Contact ─────────────────────────────────────────────── */
#contact {
  background: var(--bg-alt);
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.contact-info-title {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.contact-info-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px) saturate(140%);
  -webkit-backdrop-filter: blur(10px) saturate(140%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 16px 20px;
  transition: var(--transition);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.1);
}

.contact-detail:hover {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
}

.contact-detail-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  background: var(--primary-glow);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.contact-detail-label {
  font-size: 0.72rem;
  color: var(--text-muted);
}

.contact-detail-value {
  font-size: 0.9rem;
  font-weight: 600;
}

.contact-form-wrap {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(32px) saturate(180%);
  -webkit-backdrop-filter: blur(32px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-xl);
  padding: 44px 40px;
  box-shadow:
    inset 0 1px 2px rgba(255, 255, 255, 0.2),
    var(--shadow-lg);
}

.form-title {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.form-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 32px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 18px;
}

.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 13px 16px;
  color: var(--text);
  font-size: 0.9rem;
  transition: var(--transition);
  outline: none;
  width: 100%;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-faint);
}

.form-group select option {
  background: var(--bg);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-glow);
}

.form-group textarea {
  resize: vertical;
  min-height: 130px;
  line-height: 1.6;
}

.form-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}

.form-success.show {
  display: block;
}

.success-icon {
  font-size: 3rem;
  margin-bottom: 16px;
  animation: bounce-in 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

@keyframes bounce-in {
  0% {
    transform: scale(0);
  }

  100% {
    transform: scale(1);
  }
}

/* ── Footer ──────────────────────────────────────────────── */
#footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 80px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 64px;
}

.footer-brand p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 16px 0 24px;
  max-width: 300px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 40px;
  height: 40px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: var(--transition);
  color: var(--text-muted);
}

.social-link:hover {
  background: var(--primary-glow);
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
}

.footer-col h5 {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 0.875rem;
  color: var(--text-muted);
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--primary);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-copy {
  font-size: 0.825rem;
  color: var(--text-faint);
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  font-size: 0.825rem;
  color: var(--text-faint);
  transition: var(--transition);
}

.footer-bottom-links a:hover {
  color: var(--text-muted);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(7, 9, 15, 0.97);
  backdrop-filter: blur(20px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

@media (max-width: 1100px) {

  .nav-links,
  .nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }


  .mobile-menu.open {
    display: flex;
  }

  .mobile-menu a {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-muted);
    transition: var(--transition);
  }

  .mobile-menu a:hover {
    color: var(--text);
  }

  .mobile-close {
    position: absolute;
    top: 24px;
    right: 24px;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text);
    cursor: pointer;
  }
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 1100px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 900px) {
  section {
    padding: 80px 0;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero-visual {
    display: none;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-item {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

  .stat-item:nth-child(odd) {
    border-right: 1px solid var(--border);
  }

  .stat-item:nth-last-child(-n+2) {
    border-bottom: none;
  }

  .why-inner {
    grid-template-columns: 1fr;
  }

  .why-visual {
    display: none;
  }

  .process-steps {
    flex-direction: column;
    gap: 32px;
  }

  .process-steps::before {
    display: none;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .price-card.popular {
    transform: none;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .contact-inner {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .container {
    padding: 0 16px;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .stat-item {
    border-right: none !important;
    border-bottom: 1px solid var(--border) !important;
  }

  .stat-item:last-child {
    border-bottom: none !important;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .contact-form-wrap {
    padding: 28px 20px;
  }

  /* Reduce size and spread blobs on mobile to prevent clumping */
  .blob-goo {
    transform: scale(0.4);
    transform-origin: center;
  }

  .blob-1 {
    top: -5% !important;
    right: -5% !important;
  }

  .blob-2 {
    bottom: -5% !important;
    left: -5% !important;
  }

  .blob-3 {
    top: 45% !important;
    left: -2% !important;
  }

  .blob-4 {
    left: 10% !important;
    top: 15% !important;
  }

  .blob-5 {
    right: 10% !important;
    top: 70% !important;
  }

  .blob-6 {
    left: 35% !important;
    bottom: 10% !important;
  }
}

/* ── Animations ──────────────────────────────────────────── */
@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes glow-pulse {

  0%,
  100% {
    box-shadow: 0 0 20px var(--primary-glow);
  }

  50% {
    box-shadow: 0 0 40px var(--primary-glow), 0 0 80px rgba(91, 106, 248, 0.1);
  }
}

/*  Scroll Reveal System  */
.reveal-ready {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-ready.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-ready:nth-child(2) {
  transition-delay: 0.12s;
}

.reveal-ready:nth-child(3) {
  transition-delay: 0.24s;
}

.reveal-ready:nth-child(4) {
  transition-delay: 0.36s;
}

.reveal-ready:nth-child(5) {
  transition-delay: 0.48s;
}

.reveal-ready:nth-child(6) {
  transition-delay: 0.60s;
}

.reveal-ready:nth-child(7) {
  transition-delay: 0.72s;
}

.reveal-ready:nth-child(8) {
  transition-delay: 0.84s;
}

.btn-primary,
.btn-ghost {
  will-change: transform;
}