/* === Base Styles === */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: linear-gradient(to bottom right, #f8fafc, rgba(239, 246, 255, 0.3), rgba(250, 245, 255, 0.4));
  color: #111827;
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

::selection {
  background: #dbeafe;
  color: #1e3a8a;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .container {
    padding: 0 1.5rem;
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 2rem;
  }
}

.hidden {
  display: none !important;
}

.hidden-mobile {
  display: none;
}

@media (min-width: 768px) {
  .hidden-mobile {
    display: block;
  }
}

/* === Animated Mesh Background === */
.mesh-background {
  position: fixed;
  inset: 0;
  z-index: -10;
  overflow: hidden;
  pointer-events: none;
}

.blob {
  position: absolute;
  width: 24rem;
  height: 24rem;
  border-radius: 50%;
  mix-blend-mode: multiply;
  filter: blur(48px);
  opacity: 0.2;
  animation: blob 7s infinite;
}

.blob-purple {
  top: 0;
  left: -1rem;
  background: #c4b5fd;
}

.blob-yellow {
  top: 0;
  right: -1rem;
  background: #fde047;
  animation-delay: 2s;
}

.blob-pink {
  bottom: -2rem;
  left: 5rem;
  background: #f9a8d4;
  animation-delay: 4s;
}

.blob-blue {
  bottom: 5rem;
  right: 5rem;
  background: #93c5fd;
  animation-delay: 6s;
}

@keyframes blob {
  0% {
    transform: translate(0px, 0px) scale(1);
  }
  33% {
    transform: translate(30px, -50px) scale(1.1);
  }
  66% {
    transform: translate(-20px, 20px) scale(0.9);
  }
  100% {
    transform: translate(0px, 0px) scale(1);
  }
}

/* === Navigation === */
.nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 50;
  transition: all 0.3s ease;
  padding: 1.25rem 0;
}

.nav.scrolled {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid #f3f4f6;
  padding: 0.75rem 0;
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media (min-width: 640px) {
  .nav-container {
    padding: 0 1.5rem;
  }
}

@media (min-width: 1024px) {
  .nav-container {
    padding: 0 2rem;
  }
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: #111827;
}

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

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

.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: #4b5563;
  text-decoration: none;
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: #000;
}

.mobile-menu-btn {
  display: block;
  background: none;
  border: none;
  cursor: pointer;
  color: #111827;
}

@media (min-width: 768px) {
  .mobile-menu-btn {
    display: none;
  }
}

.mobile-menu {
  position: absolute;
  width: 100%;
  background: white;
  border-bottom: 1px solid #f3f4f6;
  padding: 1.5rem 1rem;
}

.mobile-menu a {
  display: block;
  padding: 0.75rem 0;
  font-size: 1.125rem;
  font-weight: 500;
  color: #374151;
  text-decoration: none;
}

/* === Buttons === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-primary {
  background: #000;
  color: white;
  padding: 0.625rem 1.25rem;
  border-radius: 9999px;
  font-size: 0.875rem;
}

.btn-primary:hover {
  background: #1f2937;
}

.btn-secondary {
  background: white;
  color: #000;
  border: 1px solid #e5e7eb;
}

.btn-secondary:hover {
  background: #f9fafb;
}

.btn-large {
  padding: 1rem 2rem;
  border-radius: 1rem;
  font-size: 1.125rem;
}

.btn-large:hover {
  transform: scale(1.02);
}

.btn-white {
  background: white;
  color: #2563eb;
}

.btn-white:hover {
  background: #f3f4f6;
}

.btn-full {
  width: 100%;
  margin-top: 1rem;
  padding: 1rem;
  border-radius: 0.75rem;
}

.btn-nav {
  padding: 0.625rem 1.25rem;
}

/* === Hero Section === */
.hero {
  position: relative;
  padding: 8rem 0 5rem;
  overflow: hidden;
}

@media (min-width: 768px) {
  .hero {
    padding: 12rem 0 8rem;
  }
}

.hero-bg-shapes {
  position: absolute;
  inset: 0;
  z-index: -10;
  pointer-events: none;
}

.hero-shape {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  filter: blur(48px);
  opacity: 0.5;
}

.hero-shape-right {
  top: 0;
  right: 0;
  transform: translate(25%, -25%);
  background: #eff6ff;
}

.hero-shape-left {
  bottom: 0;
  left: 0;
  transform: translate(-25%, 25%);
  background: #faf5ff;
}

.hero-content {
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  background: #f9fafb;
  border: 1px solid #f3f4f6;
  font-size: 0.875rem;
  font-weight: 600;
  color: #4b5563;
  margin-bottom: 2rem;
}

.hero-title {
  font-size: 2.75rem;
  font-weight: 800;
  letter-spacing: -0.025em;
  color: #111827;
  margin-bottom: 2rem;
  line-height: 1.1;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 4.5rem;
  }
}

.gradient-text {
  background: linear-gradient(to right, #2563eb, #9333ea);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  max-width: 42rem;
  margin: 0 auto 2.5rem;
  font-size: 1.25rem;
  color: #4b5563;
  line-height: 1.75;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
    justify-content: center;
  }
}

.hero-buttons .btn {
  width: 100%;
}

@media (min-width: 640px) {
  .hero-buttons .btn {
    width: auto;
  }
}

.btn-primary.btn-large {
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
}

/* === Trust Section === */
.trust-section {
  padding: 3rem 0;
  border-top: 1px solid #f3f4f6;
  border-bottom: 1px solid #f3f4f6;
}

.trust-label {
  text-align: center;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #9ca3af;
  margin-bottom: 2rem;
}

.trust-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  filter: grayscale(100%);
  opacity: 0.5;
}

@media (min-width: 768px) {
  .trust-logos {
    gap: 4rem;
  }
}

.trust-logos span {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1f2937;
}

/* === Services Section === */
.services-section {
  padding: 6rem 0;
  background: rgba(249, 250, 251, 0.5);
}

@media (min-width: 768px) {
  .services-section {
    padding: 8rem 0;
  }
}

.services-header {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 4rem;
}

@media (min-width: 768px) {
  .services-header {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
}

.services-header-left {
  max-width: 36rem;
}

.services-header-right {
  max-width: 28rem;
  color: #4b5563;
  padding-bottom: 0.25rem;
}

.section-label {
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #2563eb;
  margin-bottom: 1rem;
}

.section-label.purple {
  color: #9333ea;
}

.section-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: #111827;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 3rem;
  }
}

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

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* === Service Card === */
.service-card {
  position: relative;
  background: white;
  padding: 2rem;
  border-radius: 1.5rem;
  border: 1px solid #f3f4f6;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  overflow: hidden;
}

.service-card:hover {
  border-color: rgba(0, 0, 0, 0.05);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
}

.service-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  margin-bottom: 1.5rem;
  transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
  transform: scale(1.1);
}

.bg-blue {
  background: #3b82f6;
}

.bg-purple {
  background: #a855f7;
}

.bg-indigo {
  background: #6366f1;
}

.service-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 1rem;
}

.service-description {
  color: #4b5563;
  margin-bottom: 1.5rem;
  line-height: 1.75;
}

.service-features {
  list-style: none;
  margin-bottom: 2rem;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #6b7280;
  margin-bottom: 0.75rem;
}

.check-icon {
  flex-shrink: 0;
}

.service-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: #000;
  text-decoration: none;
  transition: gap 0.2s ease;
}

.service-card:hover .service-link {
  gap: 0.75rem;
}

/* === Examples/Portfolio Section === */
.examples-section {
  padding: 6rem 0;
}

@media (min-width: 768px) {
  .examples-section {
    padding: 8rem 0;
  }
}

.examples-header {
  text-align: center;
  margin-bottom: 4rem;
}

.examples-subtitle {
  max-width: 42rem;
  margin: 0 auto;
  font-size: 1.25rem;
  color: #4b5563;
}

.examples-grid {
  display: grid;
  gap: 1.5rem;
}

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

@media (min-width: 1024px) {
  .examples-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* === Project Card === */
.project-card {
  background: white;
  padding: 2rem;
  border-radius: 1rem;
  border: 1px solid #f3f4f6;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.project-card:hover {
  border-color: rgba(0, 0, 0, 0.1);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
}

.project-header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.project-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.project-card:hover .project-icon {
  transform: scale(1.1);
}

.bg-blue-light {
  background: #eff6ff;
}

.bg-purple-light {
  background: #faf5ff;
}

.project-meta {
  flex: 1;
}

.project-category {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #9ca3af;
  margin-bottom: 0.5rem;
}

.project-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #111827;
  line-height: 1.4;
}

.project-description {
  font-size: 0.875rem;
  color: #4b5563;
  margin-bottom: 1.25rem;
  line-height: 1.75;
}

.project-details {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.detail-item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: #6b7280;
}

.check-small {
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.detail-item span {
  line-height: 1.5;
}

/* === Benefits Section === */
.benefits-section {
  padding: 6rem 0;
  background: rgba(249, 250, 251, 0.5);
}

@media (min-width: 768px) {
  .benefits-section {
    padding: 8rem 0;
  }
}

.benefits-grid {
  display: grid;
  gap: 4rem;
  align-items: center;
}

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

.benefits-content .section-title {
  margin-bottom: 2rem;
}

.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.benefit-item {
  display: flex;
  gap: 1.25rem;
}

.benefit-icon {
  flex-shrink: 0;
  width: 3rem;
  height: 3rem;
  background: #faf5ff;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9333ea;
}

.benefit-text h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.5rem;
}

.benefit-text p {
  color: #4b5563;
}

/* === Benefits Visual === */
.benefits-visual {
  position: relative;
}

.visual-card {
  aspect-ratio: 1;
  background: linear-gradient(to bottom right, #2563eb, #9333ea);
  border-radius: 2rem;
  padding: 0.25rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  overflow: hidden;
}

.visual-inner {
  background: #111827;
  width: 100%;
  height: 100%;
  border-radius: 1.8rem;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.visual-lines {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.line {
  height: 0.5rem;
  background: #1f2937;
  border-radius: 9999px;
  animation: pulse 2s infinite;
}

.line-1 {
  width: 75%;
}

.line-2 {
  width: 50%;
  animation-delay: 0.25s;
}

.line-3 {
  width: 83%;
  animation-delay: 0.5s;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

.visual-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  padding-top: 2rem;
}

.grid-item {
  aspect-ratio: 1;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.visual-terminal {
  margin-top: 2rem;
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 0.75rem;
  padding: 1rem;
}

.visual-terminal p {
  font-family: 'Monaco', 'Menlo', monospace;
  font-size: 0.875rem;
  color: #60a5fa;
  line-height: 1.5;
}

/* === Stats Section === */
.stats-section {
  background: #000;
  padding: 5rem 0;
}

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

@media (min-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

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

.stat-value {
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
  .stat-value {
    font-size: 3rem;
  }
}

.stat-label {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #9ca3af;
}

/* === CTA Section === */
.cta-section {
  padding: 6rem 0;
}

@media (min-width: 768px) {
  .cta-section {
    padding: 8rem 0;
  }
}

.cta-card {
  background: linear-gradient(to bottom right, #2563eb, #4f46e5);
  border-radius: 3rem;
  padding: 3rem;
  position: relative;
  overflow: hidden;
  text-align: center;
  color: white;
}

@media (min-width: 768px) {
  .cta-card {
    padding: 6rem;
  }
}

.cta-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  opacity: 0.1;
  pointer-events: none;
}

.cta-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, transparent 0%, transparent 50%, white 50%, white 100%);
}

.cta-title {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 2rem;
  position: relative;
  z-index: 10;
}

@media (min-width: 768px) {
  .cta-title {
    font-size: 3.75rem;
  }
}

.cta-subtitle {
  font-size: 1.25rem;
  color: rgba(191, 219, 254, 1);
  margin-bottom: 3rem;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 10;
}

.cta-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  position: relative;
  z-index: 10;
}

@media (min-width: 640px) {
  .cta-actions {
    flex-direction: row;
    justify-content: center;
  }
}

.cta-contact {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact-link:hover {
  color: white;
}

/* === Footer === */
.footer {
  background: white;
  border-top: 1px solid #f3f4f6;
  padding: 6rem 0 3rem;
}

.footer-grid {
  display: grid;
  gap: 3rem;
  margin-bottom: 4rem;
}

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

.footer-brand .logo {
  display: block;
  margin-bottom: 1.5rem;
}

.footer-brand p {
  color: #6b7280;
  font-size: 1.125rem;
  max-width: 24rem;
}

.footer-links h4,
.footer-social h4 {
  font-weight: 700;
  color: #111827;
  margin-bottom: 1.5rem;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 1rem;
}

.footer-links a {
  color: #4b5563;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: #000;
}

.social-icons {
  display: flex;
  gap: 1rem;
}

.social-icon {
  width: 3rem;
  height: 3rem;
  background: #f9fafb;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4b5563;
  text-decoration: none;
  transition: all 0.2s ease;
}

.social-icon:hover {
  background: #000;
  color: white;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding-top: 3rem;
  border-top: 1px solid #f3f4f6;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.footer-bottom p {
  font-size: 0.875rem;
  color: #9ca3af;
}

.footer-legal {
  display: flex;
  gap: 2rem;
}

.footer-legal a {
  font-size: 0.875rem;
  color: #9ca3af;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-legal a:hover {
  color: #111827;
}

/* === MVP Section === */
.mvp-section {
  position: relative;
  padding: 6rem 0;
  background: linear-gradient(to bottom right, #eef2ff, #faf5ff, #fdf2f8);
  overflow: hidden;
}

@media (min-width: 768px) {
  .mvp-section {
    padding: 8rem 0;
  }
}

.mvp-blob {
  position: absolute;
  width: 24rem;
  height: 24rem;
  border-radius: 50%;
  mix-blend-mode: multiply;
  filter: blur(48px);
  opacity: 0.3;
  animation: blob 7s infinite;
}

.mvp-blob-1 {
  top: 0;
  left: 25%;
  background: #c4b5fd;
}

.mvp-blob-2 {
  bottom: 0;
  right: 25%;
  background: #a5b4fc;
  animation-delay: 2s;
}

.mvp-container {
  position: relative;
  z-index: 10;
}

.mvp-header {
  text-align: center;
  margin-bottom: 4rem;
}

.mvp-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(8px);
  border: 1px solid #e9d5ff;
  font-size: 0.875rem;
  font-weight: 600;
  color: #7c3aed;
  margin-bottom: 1.5rem;
}

.mvp-badge svg {
  color: #a855f7;
}

.mvp-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .mvp-title {
    font-size: 3.75rem;
  }
}

.mvp-gradient-text {
  background: linear-gradient(to right, #4f46e5, #9333ea, #ec4899);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.mvp-subtitle {
  max-width: 48rem;
  margin: 0 auto;
  font-size: 1.25rem;
  color: #4b5563;
  line-height: 1.75;
}

.mvp-card {
  max-width: 64rem;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.5);
}

@media (min-width: 768px) {
  .mvp-card {
    padding: 3rem;
    border-radius: 1.5rem;
  }
}

.mvp-progress-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.mvp-card-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #111827;
}

.mvp-progress-value {
  font-size: 1.875rem;
  font-weight: 700;
  background: linear-gradient(to right, #4f46e5, #9333ea);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.mvp-progress-track {
  position: relative;
  height: 1rem;
  background: #f3f4f6;
  border-radius: 9999px;
  overflow: hidden;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.06);
  margin-bottom: 2rem;
}

.mvp-progress-bar {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background: linear-gradient(to right, #6366f1, #a855f7, #ec4899);
  border-radius: 9999px;
  box-shadow: 0 4px 6px -1px rgba(99, 102, 241, 0.3);
  transition: width 0.3s ease;
}

.mvp-progress-shimmer {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 0%, rgba(255, 255, 255, 0.3) 50%, transparent 100%);
  animation: shimmer 2s infinite;
}

@keyframes shimmer {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

.mvp-steps-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .mvp-steps-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }
}

.mvp-step {
  position: relative;
  padding: 1.5rem;
  border-radius: 1rem;
  border: 2px solid #e5e7eb;
  background: #f9fafb;
  transition: all 0.5s ease;
}

.mvp-step.active {
  background: linear-gradient(to bottom right, #eef2ff, #faf5ff);
  border-color: #a78bfa;
  box-shadow: 0 10px 15px -3px rgba(139, 92, 246, 0.2);
  transform: scale(1.05);
}

.mvp-step.completed {
  background: #f0fdf4;
  border-color: #86efac;
}

.mvp-step-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.mvp-step-number {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.125rem;
  background: #e5e7eb;
  color: #4b5563;
  transition: all 0.3s ease;
}

.mvp-step.active .mvp-step-number {
  background: linear-gradient(to bottom right, #6366f1, #a855f7);
  color: white;
  box-shadow: 0 4px 6px -1px rgba(99, 102, 241, 0.4);
}

.mvp-step.completed .mvp-step-number {
  background: #22c55e;
  color: white;
}

.mvp-step-indicator {
  width: 0.75rem;
  height: 0.75rem;
  background: #a855f7;
  border-radius: 50%;
  display: none;
  animation: pulse-indicator 1.5s infinite;
}

.mvp-step.active .mvp-step-indicator {
  display: block;
}

@keyframes pulse-indicator {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
}

.mvp-step-label {
  font-size: 0.875rem;
  font-weight: 700;
  color: #4b5563;
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}

.mvp-step.active .mvp-step-label {
  color: #7c3aed;
}

.mvp-step.completed .mvp-step-label {
  color: #15803d;
}

.mvp-step-duration {
  font-size: 0.75rem;
  color: #9ca3af;
  font-weight: 500;
}

.mvp-step-mini-progress {
  height: 0.375rem;
  background: #e5e7eb;
  border-radius: 9999px;
  overflow: hidden;
  margin-top: 0.75rem;
  display: none;
}

.mvp-step.active .mvp-step-mini-progress {
  display: block;
}

.mvp-step-mini-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(to right, #6366f1, #a855f7);
  transition: width 0.1s linear;
}

.mvp-features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid #e5e7eb;
  margin-bottom: 2.5rem;
}

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

.mvp-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
}

.mvp-feature-check {
  flex-shrink: 0;
}

.mvp-feature span {
  color: #374151;
  font-weight: 500;
}

.mvp-cta {
  text-align: center;
}

.btn-gradient {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2.5rem;
  background: linear-gradient(to right, #4f46e5, #9333ea);
  color: white;
  border: none;
  border-radius: 1rem;
  font-size: 1.125rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-gradient:hover {
  box-shadow: 0 25px 50px -12px rgba(99, 102, 241, 0.4);
  transform: scale(1.05);
}

.btn-gradient svg {
  transition: transform 0.2s ease;
}

.btn-gradient:hover svg {
  transform: translateX(4px);
}

.mvp-footer-text {
  margin-top: 1rem;
  font-size: 0.875rem;
  color: #6b7280;
}

.mvp-highlight {
  font-weight: 700;
  color: #9333ea;
}

/* === Animations === */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.service-card.fade-in:nth-child(1) { transition-delay: 0s; }
.service-card.fade-in:nth-child(2) { transition-delay: 0.1s; }
.service-card.fade-in:nth-child(3) { transition-delay: 0.2s; }

.project-card.fade-in:nth-child(1) { transition-delay: 0s; }
.project-card.fade-in:nth-child(2) { transition-delay: 0.05s; }
.project-card.fade-in:nth-child(3) { transition-delay: 0.1s; }
.project-card.fade-in:nth-child(4) { transition-delay: 0.15s; }
.project-card.fade-in:nth-child(5) { transition-delay: 0.2s; }

.stat-item.fade-in:nth-child(1) { transition-delay: 0s; }
.stat-item.fade-in:nth-child(2) { transition-delay: 0.1s; }
.stat-item.fade-in:nth-child(3) { transition-delay: 0.2s; }
.stat-item.fade-in:nth-child(4) { transition-delay: 0.3s; }
