/* NEW DESIGN SYSTEM - Exact Implementation */
:root {
  /* Typography Specs */
  --font-size-heading: clamp(48px, 6vw, 72px);
  --font-size-body: 18px;
  --font-size-testimonial: 13px;
  --font-size-cta: 16px;
  --line-height: 1.6;

  /* Colors */
  --color-primary: #000000;
  --color-bg: #FFFFFF;
  --color-text: #1a1a1a;
  --color-accent: #E64100; /* Orange darker */
  --color-accent-hover: #BF360C;
  --color-accent-rgb: 230, 65, 0; /* RGB values for rgba usage */

  /* Spacing */
  --section-padding: 120px;
  --grid-gap: 40px;
  --button-padding: 8px 16px;

  /* Fonts */
  --font-display: 'Manrope', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Transitions */
  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 300ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);

  /* Border Radius */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 12px;
  --radius-xl: 20px;
  --radius-full: 9999px;
}

/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: #ffffff;
  color: var(--color-text);
  line-height: var(--line-height);
  font-size: var(--font-size-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
}

/* Unified Premium Background Gradient */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse 1200px 800px at 15% 5%,
      rgba(245, 245, 245, 0.6) 0%,
      rgba(250, 250, 250, 0.3) 40%,
      transparent 70%
    ),
    radial-gradient(ellipse 900px 1200px at 85% 35%,
      rgba(248, 248, 248, 0.5) 0%,
      rgba(252, 252, 252, 0.2) 50%,
      transparent 75%
    ),
    radial-gradient(ellipse 1400px 900px at 10% 85%,
      rgba(246, 246, 246, 0.55) 0%,
      rgba(250, 250, 250, 0.25) 45%,
      transparent 72%
    ),
    radial-gradient(ellipse 1600px 600px at 50% 50%,
      rgba(252, 252, 252, 0.4) 0%,
      rgba(255, 255, 255, 0.1) 35%,
      transparent 65%
    ),
    radial-gradient(ellipse 800px 1000px at 90% 95%,
      rgba(247, 247, 247, 0.45) 0%,
      rgba(251, 251, 251, 0.2) 48%,
      transparent 70%
    ),
    radial-gradient(ellipse 1000px 500px at 50% 2%,
      rgba(249, 249, 249, 0.5) 0%,
      rgba(253, 253, 253, 0.2) 42%,
      transparent 68%
    ),
    #ffffff;
  will-change: transform;
}

/* Premium Glass Texture */
body::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  background:
    linear-gradient(rgba(248, 250, 252, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(248, 250, 252, 0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.4;
}

/* Container */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Typography - Enhanced Bold Headers */
h1, h2, h3, .hero-title, .section-title, .cta-title {
  font-family: var(--font-display);
  font-size: var(--font-size-heading);
  font-weight: 600;
  line-height: 1.1;
  color: var(--color-primary);
  letter-spacing: -0.02em;
}

h2, .section-title {
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 800;
  line-height: 1.1;
}

h3 {
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 700;
  line-height: 1.15;
}

p, .hero-description, .section-description {
  font-size: var(--font-size-body);
  line-height: var(--line-height);
  color: var(--color-text);
}

/* Testimonials specific typography */
.testimonial-content-simple p, .testimonial-text {
  font-size: var(--font-size-testimonial) !important;
  font-weight: 500;
  line-height: 1.2;
}

/* Ultra Premium Compact Relief Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 6px 12px;
  border-radius: var(--radius-lg);
  font-weight: 500;
  font-size: 11px;
  text-transform: none;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: all var(--transition-base);
  cursor: pointer;
  position: relative;
  border: 1px solid transparent;
  box-shadow:
    0 1px 3px rgba(0, 0, 0, 0.05),
    0 1px 2px rgba(0, 0, 0, 0.02);
}

/* Premium double border relief effect */
.btn::before {
  content: '';
  position: absolute;
  inset: 1px;
  border-radius: calc(var(--radius-lg) - 1px);
  border: 1px solid rgba(var(--color-accent-rgb), 0.4);
  pointer-events: none;
  z-index: 1;
  box-shadow:
    inset 0 0.5px 0 rgba(255, 152, 0, 0.3),
    inset 0 -0.5px 0 rgba(229, 57, 53, 0.2);
}

/* Subtle inner highlight for premium depth */
.btn::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.6) 50%,
    transparent 100%);
  pointer-events: none;
  z-index: 2;
  border-radius: 1px;
}

.btn-primary {
  background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
  color: white !important;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15), 0 1px 3px rgba(0, 0, 0, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  font-weight: 500;
  letter-spacing: -0.4px;
  padding: 6px 12px;
  font-size: 11px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.btn-primary::before {
  display: none;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
  color: white !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2), 0 2px 6px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.15);
}

.btn-secondary {
  background: transparent;
  color: #E64100;
  border: 1px solid #E64100;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 1px 2px rgba(230, 65, 0, 0.08);
  font-weight: 500;
  letter-spacing: -0.2px;
}

.btn-secondary::before {
  display: none;
}

.btn-secondary:hover {
  background: rgba(230, 65, 0, 0.05);
  color: #E64100;
  border-color: #E64100;
  transform: translateY(-1px);
  box-shadow: 0 2px 4px rgba(230, 65, 0, 0.15), 0 4px 12px rgba(230, 65, 0, 0.08);
}

.btn-secondary:hover::before {
  display: none;
}

.btn-secondary:hover::after {
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(var(--color-accent-rgb), 0.3) 50%,
    transparent 100%);
}

/* Premium Sticky Glass Navigation */
.nav {
  position: fixed;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
  padding: 0 8px;
  box-shadow:
    0 8px 40px rgba(0, 0, 0, 0.08),
    0 4px 20px rgba(0, 0, 0, 0.04),
    0 2px 8px rgba(0, 0, 0, 0.02),
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 -1px 0 rgba(0, 0, 0, 0.03) inset;
  max-width: 1400px;
  width: calc(100% - 48px);
}

/* Light gray inner border for subtle layered effect */
.nav::before {
  content: '';
  position: absolute;
  inset: 2px;
  border-radius: calc(var(--radius-lg) - 2px);
  border: 1px solid rgba(0, 0, 0, 0.03);
  pointer-events: none;
  z-index: -1;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.5) inset;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 32px;
  height: 60px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--color-primary);
  font-weight: 600;
  font-size: 20px;
  letter-spacing: -0.02em;
}

.nav-logo img {
  width: 32px;
  height: 32px;
}

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

.nav-link {
  color: var(--color-text);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all var(--transition-fast);
  padding: 10px 16px;
  border-radius: var(--radius-md);
  position: relative;
}

.nav-link:hover {
  color: var(--color-accent);
  background: rgba(var(--color-accent-rgb), 0.08);
  transform: translateY(-1px);
}

.nav-cta {
  background: var(--color-accent);
  color: var(--color-bg);
  padding: 12px 24px;
  border-radius: var(--radius-md);
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all var(--transition-base);
  margin-left: 16px;
}

.nav-cta:hover {
  background: var(--color-accent-hover);
  transform: scale(1.02);
}

/* Navigation Actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.language-toggle {
  background: none;
  border: none;
  color: var(--color-accent);
  cursor: pointer;
  padding: 8px;
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
  display: flex;
  align-items: center;
  justify-content: center;
}

.language-toggle:hover {
  background: rgba(var(--color-accent-rgb), 0.1);
  transform: scale(1.1);
}

.nav-cta-btn {
  background: var(--color-accent);
  color: white !important;
  text-decoration: none;
  padding: 8px 16px;
  border-radius: var(--radius-md);
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all var(--transition-fast);
  box-shadow: 0 2px 8px rgba(var(--color-accent-rgb), 0.2);
}

.nav-cta-btn:hover {
  background: var(--color-accent-hover);
  color: white !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(var(--color-accent-rgb), 0.3);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: var(--section-padding) 0;
  background: transparent;
}

.hero-content {
  text-align: left;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}


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

/* Hero badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, #f8f8f8, #f2f2f2);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 10px;
  padding: 8px 14px;
  margin-bottom: 28px;
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06), 0 4px 12px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
}

.hero-badge:hover {
  transform: translateY(-1px);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08), 0 8px 16px rgba(0, 0, 0, 0.06);
  border-color: rgba(0, 0, 0, 0.12);
}

.badge-icon {
  font-size: 12px;
  color: #666;
  line-height: 1;
}

.badge-text {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 500;
  color: #333;
  letter-spacing: 0.1px;
}

.badge-highlight {
  font-weight: 700;
  color: #000;
}

/* Hero title container with handwritten CTA */
.hero-title-container {
  position: relative;
  margin-bottom: 16px;
  max-width: 800px;
  margin-left: 0;
  margin-right: auto;
  text-align: left;
}

.hero-title {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: linear-gradient(135deg,
    var(--color-primary) 0%,
    var(--color-primary) 60%,
    #8B2500 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

/* Handwritten CTA styling */
.hero-handwritten-cta {
  position: absolute;
  top: 180px;
  right: -200px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transform: rotate(-18deg);
  animation: gentle-bounce 3s ease-in-out infinite;
  z-index: 10;
}

.hero-cta-handwritten {
  font-family: 'Kalam', 'Comic Sans MS', cursive;
  font-size: 22px;
  font-weight: 700;
  color: var(--color-accent);
  margin: 0;
  text-shadow: 0 2px 4px rgba(var(--color-accent-rgb), 0.3);
  transform: rotate(12deg);
  white-space: nowrap;
}

/* Left side handwritten CTA styling */
.hero-handwritten-cta-left {
  position: absolute;
  top: 60px;
  left: -250px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transform: rotate(15deg);
  animation: gentle-bounce-left 3.5s ease-in-out infinite;
  z-index: 10;
}

.hero-cta-handwritten-left {
  font-family: 'Kalam', 'Comic Sans MS', cursive;
  font-size: 20px;
  font-weight: 700;
  color: var(--color-accent);
  margin: 0;
  text-shadow: 0 2px 4px rgba(var(--color-accent-rgb), 0.3);
  transform: rotate(-8deg);
  white-space: nowrap;
}


@keyframes gentle-bounce {
  0%, 100% {
    transform: rotate(-18deg) translateY(0px);
  }
  50% {
    transform: rotate(-18deg) translateY(-4px);
  }
}

/* Features handwritten text */
.features-handwritten-cta {
  position: absolute;
  top: 160px;
  right: -180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  pointer-events: none;
  z-index: 2;
}

.features-cta-handwritten {
  font-family: 'Kalam', 'Comic Sans MS', cursive;
  font-size: 18px;
  font-weight: 700;
  color: var(--color-accent);
  margin: 0;
  text-shadow: 0 2px 4px rgba(var(--color-accent-rgb), 0.3);
  transform: rotate(8deg);
  white-space: nowrap;
  animation: gentle-bounce-features 2.5s ease-in-out infinite;
}

@keyframes gentle-bounce-features {
  0%, 100% {
    transform: rotate(8deg) translateY(0px);
  }
  50% {
    transform: rotate(8deg) translateY(-3px);
  }
}

@keyframes gentle-bounce-left {
  0%, 100% {
    transform: rotate(15deg) translateY(0px);
  }
  50% {
    transform: rotate(15deg) translateY(-3px);
  }
}


.hero-title-line1 {
  display: block;
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.1;
}

.hero-title-line2 {
  display: block;
  font-size: clamp(16px, 2vw, 21px);
  line-height: 1.5;
  margin-top: 16px;
  font-weight: 300;
  opacity: 1;
  color: #666;
  background: none;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: #666;
  background-clip: unset;
  font-family: 'Outfit', sans-serif;
}

.hero-line {
  display: block;
  margin: 2px 0;
  line-height: 1.05;
}

.word-carousel {
  position: relative;
  display: inline-block;
  width: 280px;
  text-align: center;
  height: 1.2em;
  vertical-align: baseline;
}

.word-carousel .word {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  transition: all 0.6s ease;
  color: var(--color-accent);
  font-weight: 700;
  white-space: nowrap;
}

.word-carousel .word.active {
  opacity: 1;
}

.hero-description {
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: 0;
  margin-right: auto;
  text-align: left;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 24px;
}

.hero-tag-pill {
  display: inline-block;
  padding: 6px 14px;
  background: linear-gradient(135deg,
    rgba(255, 255, 255, 0.95) 0%,
    rgba(255, 255, 255, 0.85) 100%);
  border: 1px solid rgba(230, 65, 0, 0.3);
  border-radius: 6px;
  font-size: 12px;
  font-weight: 500;
  color: #666;
  transition: all 0.3s ease;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
}

.hero-tag-pill:hover {
  background: linear-gradient(135deg,
    rgba(230, 65, 0, 0.05) 0%,
    rgba(230, 65, 0, 0.08) 100%);
  border-color: rgba(230, 65, 0, 0.5);
  color: #E64100;
  box-shadow: 0 2px 8px rgba(230, 65, 0, 0.15);
  transform: translateY(-1px);
}

.hero-cta-text {
  font-size: 20px;
  font-weight: 600;
  color: var(--color-accent);
  margin-bottom: 32px;
  text-align: center;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

/* Hero Trust Badge */
.hero-trust-badge {
  text-align: left;
  margin: 24px 0 32px 0;
  display: flex;
  align-items: center;
  gap: 16px;
}

.trust-text-animated {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 0;
}

.trust-number-group {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: #000;
  letter-spacing: -0.5px;
}

.trust-description {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 400;
  color: #666;
  letter-spacing: -0.2px;
}

/* Trust Companies Icons */
.trust-companies {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.company-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #f8fafc;
  border: 1px solid var(--color-accent);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: all 0.3s ease;
  position: relative;
  margin-left: -14px;
  z-index: 1;
}

.company-icon:nth-child(1) { z-index: 6; }
.company-icon:nth-child(2) { z-index: 5; }
.company-icon:nth-child(3) { z-index: 4; }
.company-icon:nth-child(4) { z-index: 3; }
.company-icon:nth-child(5) { z-index: 2; }
.company-icon:nth-child(6) { z-index: 1; }

.company-icon:first-child {
  margin-left: 0;
}

.company-icon:hover {
  transform: scale(1.15) translateY(-2px);
  border-color: var(--color-accent);
  z-index: 10;
  box-shadow: 0 4px 16px rgba(var(--color-accent-rgb), 0.3);
}

.company-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

/* Company specific styles - simple version without circles */
.company-icon-simple {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: linear-gradient(135deg, #f5f5f5, #e8e8e8);
  border: 1px solid rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}

.company-icon-simple:hover {
  transform: translateY(-1px);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
}

.company-icon-simple span {
  color: #333;
  font-weight: 600;
  font-size: 13px;
  font-family: var(--font-display);
}

/* Keep old styles for backwards compatibility */
.company-icon.google {
  background: #4285F4;
  border-color: #4285F4;
}

.company-icon.apple {
  background: #000000;
  border-color: #000000;
}

.company-icon.microsoft {
  background: #00BCF2;
  border-color: #00BCF2;
}

.company-icon.netflix {
  background: #E50914;
  border-color: #E50914;
}

.company-icon.uber {
  background: #000000;
  border-color: #000000;
}

.company-icon.spotify {
  background: #1DB954;
  border-color: #1DB954;
}

.company-icon span {
  color: white;
  font-weight: 700;
  font-size: 16px;
  font-family: var(--font-display);
}

/* Hero Projects Showcase */
.hero-projects {
  margin-top: 32px;
  overflow: hidden;
  position: relative;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  padding: 0;
}

.projects-scroll {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 20px 0;
}

.projects-track {
  display: flex;
  gap: 24px;
  animation: scroll-projects 60s linear infinite; /* Slowed down from 20s to 60s for comfortable viewing */
  width: max-content;
}

/* Removed pause on hover - continuous scrolling for better mobile UX */

.project-card {
  flex-shrink: 0;
  background: transparent;
  border-radius: 12px;
  overflow: visible;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 12px;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.08));
}

/* Desktop Format - Landscape */
.project-card.desktop-format {
  width: auto;
}

.project-card.desktop-format .project-image {
  width: auto;
  height: 600px;
}

/* Mobile Format - Portrait */
.project-card.mobile-format {
  width: auto;
}

.project-card.mobile-format .project-image {
  width: auto;
  height: 600px;
}

.project-card:hover {
  transform: translateY(-4px);
}

.project-image {
  background: transparent;
  overflow: hidden;
  position: relative;
  border-radius: 20px;
  box-shadow: none;
  border: none;
  display: inline-block;
  line-height: 0;
}

.project-card:hover .project-image {
  box-shadow: none;
}

.project-image img {
  width: auto;
  height: 600px;
  max-height: 600px;
  object-fit: cover;
  object-position: 48% 52%;
  transition: transform 0.3s ease;
  display: block;
  border-radius: 20px;
}

.project-card:hover .project-image img {
  transform: scale(1);
}

/* Extra rounded for specific mobile images */
.project-image.extra-rounded {
  border-radius: 28px;
}

.project-image.extra-rounded img {
  border-radius: 28px;
}

.project-footer {
  padding: 12px 16px;
  display: none;
  align-items: center;
  gap: 10px;
  background: transparent;
  border-top: none;
}

.project-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  background: linear-gradient(135deg, rgba(248, 248, 248, 0.5), rgba(242, 242, 242, 0.5));
  border: 1px solid rgba(0, 0, 0, 0.04);
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #888;
  transition: all 0.3s ease;
}

.project-icon svg {
  width: 11px;
  height: 11px;
  opacity: 0.4;
}

.project-card:hover .project-icon {
  background: linear-gradient(135deg, rgba(248, 248, 248, 0.7), rgba(242, 242, 242, 0.7));
  color: #555;
  border-color: rgba(0, 0, 0, 0.08);
}

.project-card:hover .project-icon svg {
  opacity: 0.6;
}

.project-btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 3px;
  padding: 4px 6px;
  background: linear-gradient(135deg, rgba(248, 248, 248, 0.5), rgba(242, 242, 242, 0.5));
  color: #888;
  border: 1px solid rgba(0, 0, 0, 0.04);
  border-radius: 5px;
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.01);
  max-width: fit-content;
}

.project-btn:hover {
  background: linear-gradient(135deg, rgba(242, 242, 242, 0.7), rgba(236, 236, 236, 0.7));
  border-color: rgba(0, 0, 0, 0.08);
  transform: translateX(2px);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
  color: #555;
}

.project-btn span {
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: inherit;
}

.project-btn svg {
  flex-shrink: 0;
  width: 11px;
  height: 11px;
  opacity: 0.3;
  transition: transform 0.3s ease;
  stroke: currentColor;
}

.project-btn:hover svg {
  opacity: 0.5;
}

.project-btn:hover svg {
  transform: translateX(3px);
  opacity: 0.8;
}

.project-label {
  padding: 16px 20px;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 500;
  color: #333;
  background: #fff;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

@keyframes scroll-projects {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Mobile optimizations for hero carousel */
@media (max-width: 768px) {
  .projects-track {
    animation: scroll-projects 45s linear infinite !important; /* Slowed down from 15s to 45s on mobile */
    gap: 16px !important; /* Smaller gap on mobile */
  }
}

@media (max-width: 480px) {
  .projects-track {
    animation: scroll-projects 40s linear infinite !important; /* Slowed down from 12s to 40s on small screens */
    gap: 12px !important;
  }

  .project-card {
    transform: scale(0.95); /* Slightly smaller cards on very small screens */
  }
}

/* Responsive adjustments for hero section */
@media (max-width: 1024px) {
  .hero-handwritten-cta {
    right: -150px;
    top: 70px;
  }

  .hero-handwritten-cta-left {
    left: -200px;
    top: 70px;
  }

  .hero-cta-handwritten {
    font-size: 18px;
  }

  .hero-cta-handwritten-left {
    font-size: 16px;
  }

  .features-handwritten-cta {
    right: -140px;
    top: 140px;
  }

  .features-cta-handwritten {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .hero-title-container {
    overflow: visible;
  }

  .hero-handwritten-cta {
    position: static;
    margin: 20px auto 0;
    transform: rotate(-8deg);
    align-items: center;
  }

  .hero-handwritten-cta-left {
    display: none; /* Hide on mobile for cleaner layout */
  }

  .features-handwritten-cta {
    position: static;
    margin: 15px auto 0;
    transform: rotate(8deg);
    align-items: center;
  }

  .features-cta-handwritten {
    font-size: 14px;
  }

  @keyframes gentle-bounce {
    0%, 100% {
      transform: rotate(-8deg) translateY(0px);
    }
    50% {
      transform: rotate(-8deg) translateY(-3px);
    }
  }

  .hero-cta-handwritten {
    font-size: 16px;
  }

  .trust-companies {
    max-width: 320px;
  }

  .company-icon {
    width: 34px;
    height: 34px;
    margin-left: -10px;
  }

  .company-icon:first-child {
    margin-left: 0;
  }

  .company-icon span {
    font-size: 13px;
  }

  .hero-video-placeholder {
    height: 300px;
    max-width: 90%;
    border-radius: var(--radius-md);
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 32px;
  }

  .hero-actions .btn {
    width: auto;
    max-width: 280px;
    justify-content: flex-start;
  }

  /* Align "Lancer votre projet" button to left on mobile */
  div[style*="text-align: center"] {
    text-align: left !important;
  }

  /* Reduce carousel project images size on mobile */
  .project-card.desktop-format .project-image,
  .project-card.mobile-format .project-image {
    height: 350px !important;
  }

  .project-image img {
    height: 350px !important;
    max-height: 350px !important;
  }

  .project-image.extra-rounded img {
    height: 350px !important;
    max-height: 350px !important;
  }

  /* Reduce AWS badge size and bring closer to title on mobile */
  .hero-badge {
    padding: 5px 10px !important;
    gap: 4px !important;
    margin-bottom: 12px !important;
    border-radius: 8px !important;
  }

  .badge-icon {
    font-size: 10px !important;
  }

  .badge-text {
    font-size: 9px !important;
  }

  /* Reduce hero tag pills size on mobile */
  .hero-tag-pill {
    padding: 4px 10px !important;
    font-size: 10px !important;
    border-radius: 5px !important;
  }

  /* Reduce testimonials avatar and author info size on mobile */
  .testimonial-avatar {
    width: 32px !important;
    height: 32px !important;
  }

  .author-name {
    font-size: 11px !important;
  }

  .author-title {
    font-size: 10px !important;
  }

  .testimonial-author {
    font-size: 10px !important;
  }
}

/* Premium Glass Sections */
section {
  padding: var(--section-padding) 0;
  background: transparent;
  position: relative;
  z-index: 2;
}

.section-alt {
  background: transparent;
  position: relative;
}

/* Section alt overlay removed to show main background */

.features-header, .testimonials-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  font-size: 14px;
  color: var(--color-text);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
}

.section-title {
  margin-bottom: 24px;
}

.section-description {
  max-width: 600px;
  margin: 0 auto 20px auto;
  color: var(--color-text);
  opacity: 0.8;
}

/* Grids */
.bento-grid, .features-grid, .stats-grid, .blog-grid {
  display: grid;
  gap: var(--grid-gap);
  margin-top: 80px;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 80px;
  position: relative;
}

/* Level Indicators */
.level-indicator {
  position: absolute;
  top: 8px;
  left: 8px;
  width: 24px;
  height: 24px;
  background: var(--color-accent);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  font-family: var(--font-display);
  z-index: 2;
  box-shadow: 0 2px 8px rgba(var(--color-accent-rgb), 0.3);
}

/* Step Guide Styling */
.step-guide {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
}

.step-progression {
  background: var(--color-accent) !important;
  background: #E64100 !important;
  color: white !important;
  padding: 8px 16px;
  border-radius: var(--radius-md);
  font-size: 14px;
  font-weight: 600;
  font-family: var(--font-display);
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(230, 65, 0, 0.3) !important;
}

/* Services Container & Level Sections */
.services-container {
  max-width: 1200px;
  margin: 20px auto 0;
}

.level-section {
  margin-bottom: 2px;
  padding: 0 4px; /* Extra space for shadows */
}

.level-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 4px;
  padding-left: 8px;
}

.level-number {
  width: 40px;
  height: 40px;
  background: var(--color-accent);
  color: white;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  font-family: var(--font-display);
  box-shadow: 0 4px 12px rgba(var(--color-accent-rgb), 0.3);
}

.level-title {
  font-size: 24px;
  font-weight: 700;
  font-family: var(--font-display);
  color: var(--color-heading);
  margin: 0;
}

/* Orange Separators */
.level-separator {
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
  margin: 1px 0;
  border-radius: 2px;
  position: relative;
}


/* Carousel System */
.level-carousel {
  position: relative;
}

.carousel-container {
  position: relative;
  border-radius: var(--radius-lg);
  padding: 0 60px; /* Space for navigation buttons */
}

/* Default state: no carousel, cards wrap naturally */
.carousel-track {
  display: flex;
  gap: 16px;
  padding: 16px 4px;
  flex-wrap: wrap;
  justify-content: flex-start;
}

/* Active carousel state: single row with overflow hidden */
.carousel-container.carousel-active {
  overflow: hidden;
}

.carousel-container.carousel-active .carousel-track {
  flex-wrap: nowrap;
  transition: transform 0.3s ease;
  padding: 20px 4px;
}

.carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(var(--color-accent-rgb), 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-base);
  z-index: 10;
  opacity: 0;
  pointer-events: none;
}

.carousel-nav:hover {
  background: rgba(var(--color-accent-rgb), 0.1);
  border-color: var(--color-accent);
  transform: translateY(-50%) scale(1.1);
}

.carousel-nav.visible {
  opacity: 1;
  pointer-events: auto;
}

.carousel-prev {
  left: 10px;
}

.carousel-next {
  right: 10px;
}

.carousel-nav i {
  width: 20px;
  height: 20px;
  color: var(--color-accent);
}

/* Cards in Carousel */
.carousel-track .bento-card {
  flex: 1 1 180px;
  min-width: 180px;
  max-width: 220px;
  margin: 0;
  box-sizing: border-box;
  will-change: transform;
  backface-visibility: hidden;
}


.carousel-track .bento-card.bento-large {
  flex: 1 1 200px;
  min-width: 200px;
  max-width: 240px;
  box-sizing: border-box;
  will-change: transform;
  backface-visibility: hidden;
}

/* Cards in active carousel mode - fixed width for scrolling */
.carousel-container.carousel-active .carousel-track .bento-card {
  flex: 0 0 auto;
  min-width: 180px;
  max-width: none;
}

.carousel-container.carousel-active .carousel-track .bento-card.bento-large {
  flex: 0 0 auto;
  min-width: 200px;
  max-width: none;
}

/* Specific sizing for level 3 cards (add-ons) */
[data-level="3"] .bento-card {
  flex: 1 1 0 !important;
  min-width: 0 !important;
  max-width: none !important;
  min-height: 180px !important;
  height: auto !important;
  margin: 4px 8px !important; /* Better spacing */
  border-radius: var(--radius-lg) !important;
  box-shadow:
    0 6px 24px rgba(0, 0, 0, 0.06),
    0 3px 12px rgba(0, 0, 0, 0.04),
    0 1px 4px rgba(0, 0, 0, 0.02),
    0 1px 0 rgba(255, 255, 255, 0.5) inset,
    0 -1px 0 rgba(0, 0, 0, 0.05) inset !important;
  /* Removed aspect-ratio to allow natural height based on content */
}

/* Text alignment for level 3 cards */
[data-level="3"] .bento-card {
  text-align: left !important;
}

[data-level="3"] .feature-description {
  text-align: left !important;
}

[data-level="3"] .feature-content {
  text-align: left !important;
}

/* Responsive Design for Level System */
@media (max-width: 768px) {
  .services-container {
    margin-top: 60px;
  }

  .carousel-container {
    padding: 0 50px; /* Reduced padding for tablet */
  }

  .level-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    text-align: center;
  }

  .level-number {
    width: 32px;
    height: 32px;
    font-size: 16px;
  }

  .level-title {
    font-size: 20px;
  }

  .level-section {
    margin-bottom: 4px;
  }

  .carousel-track .bento-card {
    min-width: 160px;
  }

  .carousel-track .bento-card.bento-large {
    min-width: 180px;
  }

  /* Level 3 cards responsive - tablet */
  [data-level="3"] .bento-card {
    min-width: 200px !important;
    max-width: 240px !important;
    min-height: 120px !important;
    aspect-ratio: 2/1.2 !important;
  }

  .carousel-nav {
    width: 36px;
    height: 36px;
  }

  .carousel-nav i {
    width: 18px;
    height: 18px;
  }
}

@media (max-width: 480px) {
  .level-header {
    padding-left: 0;
  }

  .carousel-container {
    padding: 0 40px; /* Further reduced padding for mobile */
  }

  .carousel-track .bento-card {
    min-width: 140px;
  }

  .carousel-track .bento-card.bento-large {
    min-width: 160px;
  }

  /* Level 3 cards responsive - mobile */
  [data-level="3"] .bento-card {
    min-width: 180px !important;
    max-width: 200px !important;
    min-height: 100px !important;
    aspect-ratio: 2/1.2 !important;
  }

  .carousel-prev {
    left: 8px;
  }

  .carousel-next {
    right: 8px;
  }
}

.step-description {
  color: var(--color-accent) !important;
  color: #E64100 !important;
  font-weight: 600;
  font-size: 16px;
  text-align: center;
  margin-top: 4px;
}

.features-grid, .blog-grid {
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.stats-grid {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

/* Premium Glass Cards */
.bento-card, .feature-card {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-lg);
  padding: 20px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.08),
    0 4px 16px rgba(0, 0, 0, 0.04),
    0 2px 8px rgba(0, 0, 0, 0.02),
    0 1px 0 rgba(255, 255, 255, 0.5) inset,
    0 -1px 0 rgba(0, 0, 0, 0.05) inset;
  transform: translateY(0);
}

.bento-card::before, .feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
  opacity: 0.6;
}

.bento-card:hover:not(.selectable-card) {
  transform: translateY(-4px);
  border-color: rgba(var(--color-accent-rgb), 0.3);
  background: rgba(255, 255, 255, 0.85);
  box-shadow:
    0 12px 40px rgba(var(--color-accent-rgb), 0.08),
    0 4px 16px rgba(0, 0, 0, 0.04),
    0 1px 0 rgba(255, 255, 255, 0.7) inset;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Désactiver les animations de transform pour les cartes sélectionnables */
.selectable-card {
  transform: none !important;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease !important;
}

/* Specific sizing for level 1 cards - fill width equally */
[data-level="1"] .selectable-card {
  flex: 1 1 0 !important;
  min-width: 0 !important;
  max-width: none !important;
  width: auto !important;
}

.selectable-card:hover {
  transform: none !important;
  border-color: rgba(var(--color-accent-rgb), 0.3) !important;
  background: rgba(255, 255, 255, 0.9) !important;
  box-shadow:
    0 4px 16px rgba(var(--color-accent-rgb), 0.06),
    0 2px 8px rgba(0, 0, 0, 0.04),
    0 1px 0 rgba(255, 255, 255, 0.7) inset !important;
}

/* État sélectionné plus visible */
.selectable-card.selected {
  transform: none !important;
  border: 2px solid var(--color-accent) !important;
  background: rgba(var(--color-accent-rgb), 0.05) !important;
}

.selectable-card.selected:hover {
  transform: none !important;
  background: rgba(var(--color-accent-rgb), 0.08) !important;
}

/* Override bento-card hover for selectable cards */
.bento-card.selectable-card {
  transform: none !important;
  will-change: auto !important;
  backface-visibility: visible !important;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease !important;
}
.bento-card.selectable-card:hover {
  transform: none !important;
  border-color: rgba(var(--color-accent-rgb), 0.3) !important;
  background: rgba(255, 255, 255, 0.9) !important;
  box-shadow:
    0 4px 16px rgba(var(--color-accent-rgb), 0.06),
    0 2px 8px rgba(0, 0, 0, 0.04),
    0 1px 0 rgba(255, 255, 255, 0.7) inset !important;
}

/* CRITICAL FIX: Prevent jumping cards for Platform Type while keeping icon animations */
[data-level="1"] .carousel-track {
  transform: none !important;
  transition: none !important;
}

[data-level="1"] .bento-card {
  transform: none !important;
  transition: box-shadow 0.3s ease, border-color 0.3s ease, background 0.3s ease !important;
  animation: none !important;
}

[data-level="1"] .bento-card:hover {
  transform: none !important;
  transition: box-shadow 0.3s ease, border-color 0.3s ease, background 0.3s ease !important;
  animation: none !important;
}

/* Allow icon animations for Platform Type cards */
[data-level="1"] .monitor-check-icon-animated,
[data-level="1"] .smartphone-charging-icon-animated,
[data-level="1"] .earth-icon-animated,
[data-level="1"] .feature-icon svg {
  animation: inherit !important;
  transition: inherit !important;
  transform: inherit !important;
}

[data-level="1"] .monitor-checkmark {
  animation: checkmarkDraw 2s ease-in-out infinite !important;
}

[data-level="1"] .charging-bolt {
  animation: chargingBolt 2s ease-in-out infinite !important;
}

[data-level="1"] .earth-circle {
  animation: drawCircle 3s ease-in-out infinite !important;
}

[data-level="1"] .earth-path-1 {
  animation: drawPath1 3s ease-in-out infinite !important;
  animation-delay: 0.5s !important;
}

[data-level="1"] .earth-path-2 {
  animation: drawPath2 3s ease-in-out infinite !important;
  animation-delay: 1s !important;
}

[data-level="1"] .earth-path-3 {
  animation: drawPath3 3s ease-in-out infinite !important;
  animation-delay: 1.5s !important;
}

.feature-card:hover {
  transform: scale(1.02) translateY(-2px);
  border-color: rgba(var(--color-accent-rgb), 0.3);
  background: rgba(255, 255, 255, 0.85);
  box-shadow:
    0 20px 60px rgba(var(--color-accent-rgb), 0.08),
    0 8px 32px rgba(0, 0, 0, 0.04),
    0 1px 0 rgba(255, 255, 255, 0.7) inset;
}

.bento-card.selected {
  background: rgba(var(--color-accent-rgb), 0.1);
  border: 2px solid var(--color-accent);
  transform: translateY(-4px);
  box-shadow:
    0 12px 40px rgba(var(--color-accent-rgb), 0.25),
    0 4px 16px rgba(0, 0, 0, 0.1),
    0 1px 0 rgba(255, 255, 255, 0.8) inset;
}

/* Override selected state for selectable cards to prevent transform */
.bento-card.selectable-card.selected {
  transform: none !important;
  will-change: auto !important;
  backface-visibility: visible !important;
  background: rgba(var(--color-accent-rgb), 0.05) !important;
  border: 2px solid var(--color-accent) !important;
  box-shadow:
    0 4px 16px rgba(var(--color-accent-rgb), 0.06),
    0 2px 8px rgba(0, 0, 0, 0.04),
    0 1px 0 rgba(255, 255, 255, 0.7) inset !important;
}

.bento-card.selected .feature-icon {
  background: transparent;
  color: var(--color-accent);
}

.bento-card.selected .feature-title {
  color: var(--color-accent);
}


/* Estimation Panel - Sticky Right Popup */
.estimation-panel {
  position: fixed;
  top: 50%;
  right: 24px;
  transform: translateY(-50%);
  width: 300px;
  max-height: 70vh;
  overflow-y: auto;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid rgba(var(--color-accent-rgb), 0.15);
  border-radius: 16px;
  padding: 20px;
  transition: all var(--transition-base);
  z-index: 1000;
  box-shadow:
    0 16px 48px rgba(0, 0, 0, 0.08),
    0 8px 24px rgba(0, 0, 0, 0.04),
    0 4px 12px rgba(0, 0, 0, 0.02),
    0 1px 0 rgba(255, 255, 255, 0.9) inset;
}

.estimation-panel-close {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.04);
  border: none;
  border-radius: 6px;
  cursor: pointer;
  color: rgba(0, 0, 0, 0.5);
  font-size: 14px;
  transition: all var(--transition-base);
}

.estimation-panel-close:hover {
  background: rgba(0, 0, 0, 0.08);
  color: rgba(0, 0, 0, 0.7);
}

.estimation-content h3 {
  color: var(--color-primary);
  font-size: 18px;
  font-weight: 600;
  font-family: var(--font-display);
  margin-bottom: 16px;
  text-align: left;
  letter-spacing: -0.01em;
}

.selected-services {
  margin-bottom: 20px;
}

.selected-services p {
  font-weight: 500;
  font-size: 13px;
  color: rgba(0, 0, 0, 0.6);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.selected-services ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.selected-services li {
  background: rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 8px;
  padding: 8px 12px;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  font-weight: 400;
  font-size: 13px;
  color: var(--color-primary);
  transition: all var(--transition-fast);
}

.selected-services li:hover {
  background: rgba(0, 0, 0, 0.05);
  border-color: rgba(0, 0, 0, 0.1);
}


.estimation-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 16px;
}

.estimation-actions .btn {
  width: 100%;
  font-size: 11px;
  font-weight: 500;
  padding: 6px 12px;
  justify-content: flex-start;
}

.estimation-actions .btn-secondary {
  background: rgba(0, 0, 0, 0.04);
  color: rgba(0, 0, 0, 0.7);
  border: 1px solid rgba(0, 0, 0, 0.08);
  font-size: 10px;
  padding: 5px 10px;
}

/* Handwritten Selection Message */
.selection-hint {
  position: absolute;
  left: -180px;
  top: 50%;
  transform: translateY(-50%) rotate(-8deg);
  width: 160px;
  z-index: 10;
}

.selection-hint-text {
  font-family: 'Caveat', cursive;
  font-size: 18px;
  color: var(--color-accent);
  font-weight: 600;
  text-shadow: 2px 2px 4px rgba(var(--color-accent-rgb), 0.3);
  line-height: 1.3;
  margin-bottom: 8px;
}

.selection-hint-arrow {
  color: var(--color-accent);
  font-size: 24px;
  margin-left: 20px;
  animation: gentle-bounce 2s ease-in-out infinite;
}

@media (max-width: 768px) {
  .estimation-panel {
    right: 16px;
    width: 280px;
    padding: 16px;
  }

  .estimation-actions {
    flex-direction: column;
    gap: 8px;
  }

  .estimation-actions .btn {
    width: 100%;
    font-size: 11px;
    padding: 6px 12px;
    justify-content: flex-start;
  }

  .estimation-actions .btn-secondary {
    font-size: 10px;
    padding: 5px 10px;
  }

  .selection-hint {
    display: none;
  }

  /* FAQ Mobile Styles */
  .faq-question {
    padding: 24px 20px;
    font-size: 18px;
    gap: 16px;
    line-height: 1.4;
  }

  .faq-answer {
    padding: 0 20px;
  }

  .faq-answer.active {
    padding: 0 20px 24px;
  }

  .faq-answer p {
    font-size: 16px;
    margin-bottom: 20px;
  }

  .faq-answer li {
    font-size: 16px;
    margin-bottom: 14px;
    padding-left: 18px;
  }
}

@media (max-width: 1200px) {
  .selection-hint {
    left: -160px;
    width: 140px;
  }

  .selection-hint-text {
    font-size: 16px;
  }
}

/* Responsive Design for Bento Grid */
@media (max-width: 1024px) {
  .bento-grid {
    grid-template-columns: repeat(3, 1fr);
    max-width: 900px;
  }
}

@media (max-width: 768px) {
  .bento-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 100%;
    gap: 12px;
  }

  .bento-card {
    padding: 16px;
  }

  .level-indicator {
    width: 20px;
    height: 20px;
    font-size: 10px;
    top: 6px;
    left: 6px;
  }

  .feature-title {
    font-size: 14px;
  }

  .feature-description {
    font-size: 11px;
    line-height: 1.3;
  }
}

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

.bento-card.bento-large {
  grid-column: span 2;
  grid-row: span 2;
}

.bento-card.bento-medium {
  grid-column: span 2;
}

.bento-card.bento-wide {
  grid-column: span 2;
}

.feature-content {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.feature-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  color: var(--color-accent);
  background: transparent;
  transition: all var(--transition-base);
  overflow: visible; /* Permet aux animations de dépasser */
  position: relative;
}

.feature-icon i {
  width: 18px;
  height: 18px;
}

.feature-title, .process-title {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--color-primary);
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.feature-description, .process-description {
  color: var(--color-text);
  opacity: 0.7;
  line-height: 1.3;
  flex: 1;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.01em;
}

/* Process Section */
.process-bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, minmax(250px, auto));
  gap: 0;
  margin-top: 80px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(12px) saturate(140%);
  -webkit-backdrop-filter: blur(12px) saturate(140%);
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.02),
    0 1px 0 rgba(255, 255, 255, 0.7) inset;
}



/* Package Cards Styles - Bento Layout */
.packages-bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, minmax(320px, auto));
  gap: 24px;
  margin-top: 80px;
}

.package-card {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(16px) saturate(150%);
  -webkit-backdrop-filter: blur(16px) saturate(150%);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 32px;
  transition: all var(--transition-base);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 280px;
  box-shadow:
    0 16px 40px rgba(0, 0, 0, 0.1),
    0 8px 16px rgba(0, 0, 0, 0.05),
    0 1px 0 rgba(255, 255, 255, 0.7) inset;
}

.package-card:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-8px);
  box-shadow:
    0 24px 48px rgba(0, 0, 0, 0.15),
    0 12px 24px rgba(var(--color-accent-rgb), 0.08),
    0 1px 0 rgba(255, 255, 255, 0.8) inset;
}

.package-card.package-popular {
  border: 2px solid var(--color-accent);
  position: relative;
}

.package-card-large {
  grid-column: span 2;
  grid-row: span 2;
}

.package-card.package-popular::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(135deg, var(--color-accent), #FF8A65);
  border-radius: var(--radius-lg);
  z-index: -1;
  animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
  from { opacity: 0.3; }
  to { opacity: 0.6; }
}

.package-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: linear-gradient(135deg, var(--color-accent), #FF8A65);
  color: white;
  padding: 6px 12px;
  border-radius: var(--radius-full);
  font-size: 11px;
  font-weight: 600;
  white-space: nowrap;
}

.package-header {
  margin-bottom: 24px;
}

.package-title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 12px;
  line-height: 1.2;
}

.package-subtitle {
  font-size: 16px;
  color: var(--color-accent);
  font-weight: 700;
  opacity: 1;
  line-height: 1.4;
  margin-bottom: 20px;
}

.package-features {
  flex: 1;
}

.package-features p {
  font-size: 15px;
  line-height: 1.5;
  margin-bottom: 10px;
  color: var(--color-text);
  position: relative;
  padding-left: 4px;
}

.feature-mini-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.feature-mini-card {
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  font-size: 14px;
  line-height: 1.3;
  color: var(--color-text);
  transition: all var(--transition-base);
  display: flex;
  align-items: center;
  min-height: 45px;
}

.feature-mini-card:hover {
  background: rgba(255, 255, 255, 0.8);
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

/* Animated Stars for Selected Services & Support Cards Only */
[data-level="3"] .bento-card {
  position: relative;
  overflow: visible;
}

.bento-card.selected::before,
.bento-card.selected::after {
  content: "✦";
  position: absolute;
  color: var(--color-accent);
  opacity: 1;
  pointer-events: none;
  z-index: 10;
  animation: starFloatVisible 4s linear infinite;
}

/* Star 1 - Top area above card */
.bento-card.selected::before {
  top: -15px;
  right: 20%;
  font-size: 16px;
}

/* Star 2 - Bottom area below card */
.bento-card.selected::after {
  bottom: -15px;
  left: 30%;
  font-size: 18px;
}

/* Star 3 - Odd cards: top left area */
.bento-card.selected:nth-child(odd)::before {
  top: -12px;
  left: 15%;
  right: auto;
  font-size: 14px;
}

/* Star 4 - Odd cards: top right area */
.bento-card.selected:nth-child(odd)::after {
  top: -18px;
  right: 15%;
  bottom: auto;
  left: auto;
  font-size: 17px;
}

/* Star 5 - Every 3rd card: bottom left area */
.bento-card.selected:nth-child(3n)::before {
  bottom: -12px;
  left: 20%;
  top: auto;
  right: auto;
  font-size: 15px;
}

/* Star 6 - Every 3rd card: bottom right area */
.bento-card.selected:nth-child(3n)::after {
  bottom: -15px;
  right: 25%;
  top: auto;
  left: auto;
  font-size: 16px;
}

/* Star 7 - Even cards: top center area */
.bento-card.selected:nth-child(even):not(:nth-child(3n))::before {
  top: -18px;
  left: 40%;
  right: auto;
  font-size: 13px;
}

/* Star 8 - Even cards: bottom area */
.bento-card.selected:nth-child(even):not(:nth-child(3n))::after {
  bottom: -14px;
  left: 50%;
  top: auto;
  right: auto;
  font-size: 19px;
}

@keyframes starFloatVisible {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* Troisième étoile sur l'icône pour chaque carte sélectionnée */
.bento-card.selected .feature-icon::after {
  content: "✦";
  position: absolute;
  top: -12px;
  right: -12px;
  color: var(--color-accent);
  font-size: 12px;
  opacity: 1;
  pointer-events: none;
  z-index: 10;
  animation: starFloatVisible 4s linear infinite;
}


.package-number {
  position: absolute;
  top: 16px;
  right: 16px;
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 900;
  line-height: 1;
  color: var(--color-accent);
  opacity: 0.3;
  transform: rotate(12deg);
  user-select: none;
  z-index: 1;
}

.package-plus {
  font-size: 80px;
  top: 8px;
  right: 20px;
  transform: rotate(0deg);
}

/* Addon Cards Styles */
.addon-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 20px;
}

.addon-card {
  background: rgba(255, 255, 255, 0.6);
  border-radius: var(--radius-md);
  padding: 16px;
  text-align: center;
  transition: all var(--transition-base);
  border: 1px solid rgba(255, 255, 255, 0.3);
  min-height: 120px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.addon-card:hover {
  background: rgba(255, 255, 255, 0.8);
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.addon-icon {
  font-size: 24px;
  margin-bottom: 8px;
  display: block;
}

.addon-card h4 {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 4px;
  line-height: 1.2;
}

.addon-card p {
  font-size: 12px;
  color: var(--color-text);
  opacity: 0.8;
  line-height: 1.3;
  margin: 0;
}

/* Stats */
.stat-card {
  text-align: center;
  padding: 32px;
}

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 8px;
  display: block;
}

.stat-label {
  font-size: var(--font-size-body);
  color: var(--color-text);
  opacity: 0.8;
}

/* Premium Glass Testimonials */
.testimonials-section {
  padding: var(--section-padding) 0;
  overflow: visible;
  background: transparent;
  min-height: 400px;
}

.testimonials-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
  padding: 80px 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.testimonials-container::before,
.testimonials-container::after {
  content: '';
  position: absolute;
  top: 40px;
  bottom: 40px;
  width: 20px;
  z-index: 5;
  pointer-events: none;
}

.testimonials-container::before {
  left: 0;
  background: linear-gradient(to right, rgba(255, 255, 255, 0.5), transparent);
}

.testimonials-container::after {
  right: 0;
  background: linear-gradient(to left, rgba(255, 255, 255, 0.5), transparent);
}

.testimonials-row {
  width: 100%;
  overflow: hidden;
}

.testimonials-row[data-direction="right"] .testimonials-track {
  animation: scroll-testimonials-right 15s linear infinite;
}

.testimonials-row[data-direction="left"] .testimonials-track {
  animation: scroll-testimonials-left 15s linear infinite;
}

.testimonials-track {
  display: flex;
  gap: 30px;
  padding: 0;
  width: max-content;
}

@keyframes scroll-testimonials-right {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes scroll-testimonials-left {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}

.testimonial-card-simple {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 20px;
  padding: 15px;
  margin: 20px 0 30px 0;
  transition: all var(--transition-base);
  box-shadow:
    0 8px 25px rgba(0, 0, 0, 0.08),
    0 3px 12px rgba(0, 0, 0, 0.04),
    0 1px 0 rgba(255, 255, 255, 0.6) inset;
  flex-shrink: 0;
  width: 420px;
  min-height: 160px;
  height: auto;
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.testimonial-card-simple::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
}

.testimonial-card-simple:hover {
  transform: none;
  border-color: rgba(var(--color-accent-rgb), 0.3);
  background: rgba(255, 255, 255, 0.9);
  box-shadow:
    0 8px 25px rgba(0, 0, 0, 0.08),
    0 3px 12px rgba(0, 0, 0, 0.04),
    0 1px 0 rgba(255, 255, 255, 0.6) inset;
}

.testimonial-content-simple {
  text-align: left;
  padding: 15px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  overflow: visible;
}

.testimonial-content-simple p {
  margin-bottom: 8px;
  font-style: italic;
  font-size: 14px;
  line-height: 1.4;
  flex: 1;
}

.testimonial-avatar {
  position: absolute;
  top: -2px;
  left: -18px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.1);
  z-index: 10;
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-author {
  color: var(--color-accent);
  font-weight: 600;
  font-size: 12px;
  margin-top: auto;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* New Premium Testimonials Section */
.testimonials-section-new {
  padding: 0;
  background: transparent;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.testimonials-header-new {
  text-align: center;
  margin-bottom: 60px;
  padding-top: 40px;
}

.testimonials-header-new .section-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: -0.02em;
}

.testimonials-scroll-container {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  overflow: hidden;
  position: relative;
  padding: 40px 0;
  flex: 1;
  display: flex;
  align-items: center;
}

.testimonials-scroll-container::before,
.testimonials-scroll-container::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 30px;
  z-index: 2;
  pointer-events: none;
}

.testimonials-scroll-container::before {
  left: 0;
  background: linear-gradient(to right,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 0.98) 10%,
    rgba(255, 255, 255, 0.95) 20%,
    rgba(255, 255, 255, 0.9) 30%,
    rgba(255, 255, 255, 0.82) 40%,
    rgba(255, 255, 255, 0.7) 50%,
    rgba(255, 255, 255, 0.55) 60%,
    rgba(255, 255, 255, 0.4) 70%,
    rgba(255, 255, 255, 0.25) 80%,
    rgba(255, 255, 255, 0.12) 90%,
    rgba(255, 255, 255, 0.05) 95%,
    rgba(255, 255, 255, 0) 100%
  );
}

.testimonials-scroll-container::after {
  right: 0;
  background: linear-gradient(to left,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 0.98) 10%,
    rgba(255, 255, 255, 0.95) 20%,
    rgba(255, 255, 255, 0.9) 30%,
    rgba(255, 255, 255, 0.82) 40%,
    rgba(255, 255, 255, 0.7) 50%,
    rgba(255, 255, 255, 0.55) 60%,
    rgba(255, 255, 255, 0.4) 70%,
    rgba(255, 255, 255, 0.25) 80%,
    rgba(255, 255, 255, 0.12) 90%,
    rgba(255, 255, 255, 0.05) 95%,
    rgba(255, 255, 255, 0) 100%
  );
}

.testimonials-scroll-track {
  display: flex;
  gap: 24px;
  animation: scroll-testimonials-horizontal 40s linear infinite;
  width: max-content;
}

/* Removed hover pause - carousel continues on hover
.testimonials-scroll-track:hover {
  animation-play-state: paused;
} */

@keyframes scroll-testimonials-horizontal {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.testimonial-card-premium {
  flex-shrink: 0;
  width: 480px;
  background: white;
  border-radius: 24px;
  padding: 40px 40px 32px 40px; /* Reduced bottom padding for better balance */
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.testimonial-card-premium:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.testimonial-text {
  font-size: 11px;
  line-height: 1.55;
  color: #1a1a1a;
  font-weight: 400;
}

.testimonial-footer {
  display: flex;
  align-items: center;
  margin-top: auto;
  padding-top: 24px; /* Space from content above */
  /* Remove side padding from card padding, add here */
  margin-left: -8px; /* Compensate for card padding */
  margin-right: -8px; /* Compensate for card padding */
  padding-left: 8px; /* Small border on left */
  padding-right: 8px; /* Small border on right */
}

.testimonial-avatar {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  overflow: hidden;
  background: #f0f0f0;
  position: relative;
  margin-right: 12px; /* Space between avatar and text */
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-author-info {
  flex: 0 0 auto; /* Don't grow, take only needed space */
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-right: 16px; /* Space before logo */
}

.author-name {
  font-size: 14px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 2px;
  line-height: 1.4;
}

.author-title {
  font-size: 13px;
  color: #666;
  font-weight: 400;
  line-height: 1.4;
}

.testimonial-card-premium .company-logo {
  flex-shrink: 0;
  opacity: 0.7;
  transition: opacity 0.3s ease;
  margin-left: auto; /* Push to the right */
  display: flex;
  align-items: center;
}

.testimonial-card-premium .company-logo img {
  height: 24px;
  width: auto;
  max-width: 90px;
  object-fit: contain;
}

.testimonial-card-premium:hover .company-logo {
  opacity: 1;
}

@media (max-width: 1024px) {
  .testimonials-container::before,
  .testimonials-container::after {
    display: none;
  }
}

@media (max-width: 768px) {
  .testimonials-section-new {
    padding: 80px 0;
  }

  .testimonials-header-new {
    margin-bottom: 60px;
  }

  .testimonials-container::before,
  .testimonials-container::after {
    display: none;
  }

  .testimonial-card-premium {
    width: 360px;
    padding: 32px;
  }

  .testimonial-text {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .testimonial-card-premium {
    width: 300px;
    padding: 24px;
  }

  .testimonial-footer {
    padding-top: 16px;
  }

  .testimonial-avatar {
    width: 32px;
    height: 32px;
    margin-left: 10px; /* Push away from left edge */
    margin-right: 10px; /* Space between avatar and name */
  }

  .author-name {
    font-size: 12px;
  }

  .author-title {
    font-size: 11px;
  }

  .testimonial-card-premium .company-logo,
  .testimonial-footer .company-logo,
  .testimonials-section-new .company-logo {
    display: none !important; /* Force hide logos on mobile */
    visibility: hidden !important;
    width: 0 !important;
    height: 0 !important;
    opacity: 0 !important;
    overflow: hidden !important;
  }
}

/* Small screens - below 420px */
@media (max-width: 420px) {
  .testimonial-card-premium {
    width: 280px;
    padding: 20px;
  }

  .testimonial-footer {
    padding-top: 15px;
  }

  .testimonial-avatar {
    width: 30px;
    height: 30px;
    margin-left: 8px;
    margin-right: 8px;
  }

  .testimonial-card-premium .company-logo {
    display: none;
  }
}

/* Very small screens - below 375px */
@media (max-width: 375px) {
  .testimonial-card-premium {
    width: 260px;
    padding: 18px;
  }

  .testimonial-footer {
    padding-top: 14px;
  }

  .testimonial-avatar {
    width: 28px;
    height: 28px;
    margin-left: 6px;
    margin-right: 8px;
  }

  .author-name {
    font-size: 11px;
  }

  .author-title {
    font-size: 10px;
  }

  .testimonial-card-premium .company-logo {
    display: none;
  }

  .testimonial-text {
    font-size: 13px;
  }
}

/* Explore Work Section */
.explore-work-section {
  padding: 120px 0;
  background: transparent;
  overflow: hidden;
}

.explore-work-header {
  text-align: center;
  margin-bottom: 80px;
}

.btn-view-work {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: #000;
  color: #fff;
  border-radius: 50px;
  text-decoration: none;
  font-size: 11px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-view-work:hover {
  background: #333;
  gap: 12px;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 80px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.work-card {
  display: flex;
  flex-direction: column;
  gap: 48px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 24px;
  padding: 40px 36px;
  min-height: 320px;
  position: relative;
  transition: all 0.3s ease;
  overflow: hidden;
}

.work-card:hover {
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12), 0 8px 24px rgba(0, 0, 0, 0.06);
  transform: translateY(-6px);
  border-color: rgba(0, 0, 0, 0.12);
}

/* Wrapper pour card avec bouton */
.work-card-wrapper {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Bouton sous les cards */
.work-card-button {
  width: auto;
  align-self: flex-start;
  margin-top: 10px;
  padding: 8px 14px;
  background: transparent;
  border: 1px solid rgba(255, 107, 53, 0.25);
  border-radius: 6px;
  color: #FF6B35;
  font-size: 11px;
  font-weight: 500;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.work-card-button:hover {
  background: rgba(255, 107, 53, 0.06);
  border-color: rgba(255, 107, 53, 0.4);
  transform: translateY(-1px);
}

.work-card-button svg {
  width: 10px;
  height: 10px;
  transition: transform 0.2s ease;
}

.work-card-button:hover svg {
  transform: translate(1px, -1px);
}

.work-card-image-wrapper {
  position: absolute;
  bottom: -20px;
  right: -30px;
  width: 70%;
  max-width: 320px;
  perspective: 1000px;
  overflow: visible;
  z-index: 1;
}

.work-card-image-tilt {
  position: relative;
  width: 100%;
  padding-bottom: 70%;
  transform-style: preserve-3d;
  transition: transform 0.4s ease;
}

.work-card:hover .work-card-image-tilt {
  transform: rotateY(-3deg) rotateX(3deg) translateY(-6px);
}

.work-card-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 14px;
  box-shadow:
    0 24px 48px rgba(0, 0, 0, 0.14),
    0 12px 24px rgba(0, 0, 0, 0.1),
    0 2px 8px rgba(0, 0, 0, 0.06);
  transition: all 0.4s ease;
  transform: rotateY(-4deg) rotateX(2deg);
  transform-origin: center;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.work-card:hover .work-card-image {
  box-shadow:
    0 32px 64px rgba(0, 0, 0, 0.18),
    0 16px 32px rgba(0, 0, 0, 0.12),
    0 4px 12px rgba(0, 0, 0, 0.08);
  transform: rotateY(-5deg) rotateX(3deg) scale(1.02);
}

.work-card-info {
  display: flex;
  align-items: flex-start;
  flex-direction: row;
  gap: 18px;
  position: relative;
  z-index: 2;
}

.work-card-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  background: #000;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.work-card-icon img {
  width: 30px;
  height: 30px;
  filter: brightness(0) invert(1);
  object-fit: contain;
}

.work-card-icon svg {
  width: 24px;
  height: 24px;
}

.work-card-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
  justify-content: flex-start;
}

.work-card-title {
  font-size: 26px;
  font-weight: 600;
  color: #000;
  margin: 0;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.work-card-description {
  font-size: 15px;
  color: #666;
  margin: 0;
  max-width: 85%;
  line-height: 1.5;
  font-weight: 400;
}

@media (max-width: 1200px) {
  .work-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
  }
}

@media (max-width: 768px) {
  .explore-work-section {
    padding: 80px 0;
  }

  .explore-work-header {
    margin-bottom: 60px;
  }

  .work-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 0 20px;
  }

  .work-card-info {
    max-width: 100%;
  }

  .gemmy-card .work-card-image-wrapper:nth-child(2) {
    max-width: 260px !important;
  }

  .work-card-image {
    transform: rotateY(-3deg) rotateX(2deg);
  }
}

/* Premium Glass CTA Section */
.cta {
  padding: var(--section-padding) 0;
  background: transparent;
  position: relative;
}

/* CTA overlay removed to show main background */

.cta-container {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-lg);
  padding: 80px 60px;
  text-align: center;
  position: relative;
  box-shadow:
    0 20px 60px rgba(var(--color-accent-rgb), 0.05),
    0 8px 32px rgba(0, 0, 0, 0.03),
    0 1px 0 rgba(255, 255, 255, 0.8) inset,
    0 -1px 0 rgba(0, 0, 0, 0.02) inset;
}

.cta-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.9), transparent);
}

.cta-title {
  margin-bottom: 24px;
}

.cta-description {
  margin-bottom: 48px;
  opacity: 0.8;
}

/* Portfolio */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 80px;
  margin-bottom: 60px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 1024px) {
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 600px;
    gap: 18px;
  }
}

@media (max-width: 768px) {
  .portfolio-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    gap: 16px;
    margin-top: 60px;
  }
}

  .testimonials-track {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 1fr);
  }
}

@media (max-width: 480px) {
  .portfolio-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    gap: 16px;
    margin-top: 40px;
  }

  .testimonials-track {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(6, 1fr);
  }
}

.portfolio-card {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-base);
  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.08),
    0 4px 16px rgba(0, 0, 0, 0.04),
    0 1px 0 rgba(255, 255, 255, 0.5) inset;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.portfolio-card:hover {
  transform: scale(1.02);
  border-color: rgba(var(--color-accent-rgb), 0.3);
  background: rgba(255, 255, 255, 0.85);
  box-shadow:
    0 24px 80px rgba(var(--color-accent-rgb), 0.12),
    0 16px 48px rgba(0, 0, 0, 0.08),
    0 8px 24px rgba(0, 0, 0, 0.06),
    0 1px 0 rgba(255, 255, 255, 0.7) inset;
}

.portfolio-image-wrapper {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.portfolio-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all var(--transition-slow);
}

.portfolio-card:hover .portfolio-image {
  transform: scale(1.05);
}

.portfolio-content {
  padding: 16px;
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: space-between;
}

.portfolio-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--color-primary);
}

.portfolio-description {
  color: var(--color-text);
  opacity: 0.8;
  line-height: 1.4;
  margin-bottom: 12px;
  font-size: 14px;
}

.portfolio-metrics {
  display: flex;
  gap: 8px;
  margin-bottom: 0;
  flex-wrap: wrap;
}

.metric-item {
  background: rgba(230, 65, 0, 0.1);
  color: #E64100;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  border: 1px solid rgba(230, 65, 0, 0.2);
}

/* Blog Cards */
.blog-card-link {
  text-decoration: none !important;
  color: inherit;
  display: block;
}

.blog-card-link:hover {
  text-decoration: none !important;
  color: inherit;
}

.blog-card {
  position: relative;
  overflow: hidden;
  background: #ffffff !important;
  border: 1px solid rgba(0, 0, 0, 0.06) !important;
  border-radius: 16px !important;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.blog-card:hover {
  transform: translateY(-8px) !important;
  box-shadow: 0 20px 40px rgba(230, 65, 0, 0.08), 0 10px 20px rgba(0, 0, 0, 0.04) !important;
  border-color: rgba(230, 65, 0, 0.15) !important;
}

.blog-card .feature-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(230, 65, 0, 0.08) 0%, rgba(255, 107, 53, 0.08) 100%);
  border-radius: 12px;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.blog-card:hover .feature-icon {
  background: linear-gradient(135deg, rgba(230, 65, 0, 0.12) 0%, rgba(255, 107, 53, 0.12) 100%);
  transform: scale(1.05);
}

.blog-card .feature-icon i {
  color: #E64100;
}

.blog-card .feature-title {
  color: #1a1a1a !important;
  margin-bottom: 12px;
  text-decoration: none !important;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
}

.blog-card .feature-description {
  color: #666 !important;
  opacity: 1;
  text-decoration: none !important;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.simple-read-more {
  color: #E64100;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.blog-card:hover .simple-read-more {
  gap: 8px;
  color: #BF360C;
}

.blog-date {
  position: absolute;
  bottom: 0;
  right: 0;
  font-size: 11px;
  color: #999;
  font-weight: 500;
}

/* Stats Section - Premium Agency Stats */
.stats-section {
  padding: 40px 0;
  background: transparent;
  position: relative;
  overflow: visible;
}

.stats-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
}

.stats-wrapper {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 24px;
}

.stat-item {
  flex: 1;
  background: white;
  border-radius: 14px;
  padding: 24px;
  text-align: left;
  position: relative;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08),
              0 2px 8px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  overflow: hidden;
}

.stat-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12),
              0 4px 12px rgba(255, 107, 53, 0.08);
  border-color: rgba(255, 107, 53, 0.15);
}

.stat-number {
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 700;
  background: linear-gradient(135deg, #FF6B35 0%, #FF8F65 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
  font-family: var(--font-display);
  letter-spacing: -0.5px;
}

.stat-label {
  color: #666;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: 0.01em;
}

/* Use Cases Styles */
.use-case-item {
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: flex;
  flex-direction: column;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.use-case-icon {
  width: 24px;
  height: 24px;
  position: absolute;
  top: 16px;
  right: 16px;
  opacity: 0.8;
  transition: all 0.3s ease;
}

.use-case-item:hover .use-case-icon {
  transform: rotate(-10deg) scale(1.1);
  opacity: 1;
}

.use-case-content {
  padding-top: 8px;
}

.use-case-title {
  font-size: 18px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 8px;
  letter-spacing: -0.5px;
  line-height: 1.2;
}

.use-case-subtitle {
  font-size: 13px;
  font-weight: 400;
  color: #666;
  line-height: 1.5;
  letter-spacing: 0.01em;
}

/* Hover effect for use cases */
.use-case-item:hover .use-case-title {
  background: linear-gradient(135deg, #FF6B35 0%, #E64100 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}



/* Responsive Stats */
@media (max-width: 768px) {
  .stats-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .stat-item {
    padding: 24px 16px;
    border-radius: 16px;
  }

  .stat-number {
    font-size: 28px;
  }
}

@media (max-width: 480px) {
  .stats-section {
    padding: 32px 0;
  }

  .stats-container {
    padding: 0 20px;
  }

  .stats-wrapper {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .stat-item {
    padding: 20px 16px;
  }

  .stat-number {
    font-size: 24px;
  }

  .stat-label {
    font-size: 12px;
  }
}

/* Footer Premium - Detached from bottom */
.footer-premium {
  padding: 0 0 30px 0;
  background: transparent;
  margin-top: 50px;
  position: relative;
  z-index: 10;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.footer-content {
  background: #ffffff;
  border-radius: 24px;
  padding: 24px 32px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(26, 26, 26, 0.08);
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(26, 26, 26, 0.08);
  margin-bottom: 16px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-tagline {
  font-size: 12px;
  color: #666;
  margin: 0;
  max-width: 400px;
  line-height: 1.5;
}

.footer-cta-section {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
}

.footer-cta-title {
  font-size: 16px;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0;
}

.footer-cta-text {
  font-size: 12px;
  color: #666;
  margin: 0;
  line-height: 1.5;
}

.footer-whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
  color: #ffffff;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  font-size: 11px;
  letter-spacing: -0.4px;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
  cursor: pointer;
  margin-top: 4px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15), 0 1px 3px rgba(0, 0, 0, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.footer-whatsapp-btn:hover {
  background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2), 0 2px 6px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.15);
}

.footer-links-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(26, 26, 26, 0.08);
  margin-bottom: 16px;
}

.footer-links-column {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links-heading {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #999;
  margin: 0;
}

.footer-links-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-link {
  color: #1a1a1a;
  text-decoration: none;
  font-size: 11px;
  transition: all 0.2s ease;
  font-weight: 400;
}

.footer-link:hover {
  color: #E64100;
  padding-left: 4px;
}

.footer-bottom-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.footer-copyright {
  font-size: 10px;
  color: #999;
  margin: 0;
}

.footer-contact-email a {
  color: #666;
  text-decoration: none;
  font-size: 10px;
  transition: all 0.2s ease;
}

.footer-contact-email a:hover {
  color: #E64100;
}

/* Footer Responsive */
@media (max-width: 968px) {
  .footer-main {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .footer-content {
    padding: 40px 30px;
  }
}

@media (max-width: 640px) {
  .footer-premium {
    margin-top: 80px;
    padding-bottom: 40px;
  }

  .footer-container {
    padding: 0 20px;
  }

  .footer-content {
    padding: 32px 24px;
    border-radius: 20px;
  }

  .footer-links-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .footer-whatsapp-btn {
    width: 100%;
    justify-content: center;
  }
}

/* Animations on Scroll */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.8s ease-out forwards;
}

/* Stats Counter Animation */
.stat-number {
  counter-reset: num var(--num);
  animation: countUp 2s ease-out forwards;
}

@keyframes countUp {
  from {
    --num: 0;
  }
  to {
    --num: var(--target);
  }
}

/* FAQ Styles */
.faq-container {
  max-width: 900px;
  margin: 0 auto;
  padding-top: 40px;
}

.faq-item {
  background: white;
  border: 1px solid #f5f5f5;
  border-bottom: 1px solid #f5f5f5;
  border-radius: 16px;
  margin-bottom: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: none !important;
}

.faq-item:hover {
  border-color: rgba(230, 65, 0, 0.2);
}

.faq-question {
  width: 100%;
  padding: 24px 28px;
  background: transparent;
  border: none;
  color: #1a1a1a;
  font-size: 17px;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  transition: all 0.3s ease;
  line-height: 1.5;
}

.faq-question:hover {
  color: var(--color-accent);
}

.faq-question.active {
  color: var(--color-accent);
}

.faq-question.active i {
  transform: rotate(180deg);
  color: var(--color-accent);
}

.faq-question i {
  transition: transform 0.3s ease;
  color: #999;
  flex-shrink: 0;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  padding: 0 28px;
  opacity: 0;
}

.faq-answer.active {
  max-height: 1000px;
  padding: 0 28px 24px;
  opacity: 1;
}

.faq-answer p {
  margin-bottom: 16px;
  line-height: 1.7;
  color: #666;
  font-size: 16px;
  font-weight: 400;
}

.faq-answer p:last-child {
  margin-bottom: 0;
}

.faq-answer strong {
  color: #1a1a1a;
  font-weight: 600;
}

.faq-answer a {
  color: var(--color-accent);
  text-decoration: none;
  font-weight: 500;
  transition: opacity 0.2s ease;
}

.faq-answer a:hover {
  opacity: 0.8;
}

.faq-answer ul {
  margin: 16px 0;
  padding-left: 0;
  list-style: none;
}

.faq-answer li {
  margin-bottom: 12px;
  padding-left: 24px;
  position: relative;
  font-size: 16px;
  line-height: 1.7;
  color: #666;
}

.faq-answer li::before {
  content: "•";
  color: var(--color-accent);
  position: absolute;
  left: 8px;
  font-weight: bold;
  font-size: 16px;
}

.faq-answer li strong {
  color: #1a1a1a;
  font-weight: 600;
}

.faq-answer li:last-child {
  margin-bottom: 0;
}

/* Pricing Section Styles */
.pricing-section {
  padding: 120px 0;
  background: transparent;
}

.pricing-header {
  margin-bottom: 60px;
}

.pricing-cards-container {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  padding: 0 20px;
}

.pricing-card {
  border-radius: 20px;
  padding: 36px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

/* Reflet dégradé pour les cards */
.pricing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 150px;
  pointer-events: none;
  z-index: 1;
}

.pricing-card > * {
  position: relative;
  z-index: 2;
}

.pricing-card-light {
  background: white;
  border: 1px solid #e5e5e5;
}

.pricing-card-light::before {
  background: linear-gradient(180deg,
    rgba(255, 255, 255, 0.8) 0%,
    rgba(255, 255, 255, 0.5) 30%,
    transparent 100%
  );
}

.pricing-card-dark {
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  color: white;
}

.pricing-card-dark::before {
  background: linear-gradient(180deg,
    rgba(255, 255, 255, 0.08) 0%,
    rgba(255, 255, 255, 0.04) 50%,
    transparent 100%
  );
}

.pricing-card-header {
  margin-bottom: 20px;
}

/* New Header Structure with Badges */
.pricing-header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.pricing-header-badges {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-shrink: 0;
}

.header-badge {
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.badge-discount {
  background: linear-gradient(135deg, #ff6b6b, #ff5252);
  color: white;
  box-shadow: 0 2px 8px rgba(255, 107, 107, 0.25);
}

/* Premium Offer Badge - Simplified and smaller */
.premium-offer-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 10px;
  background: linear-gradient(135deg, #FF6B35 0%, #E64100 100%);
  border-radius: 8px;
  position: relative;
  box-shadow: 0 2px 8px rgba(255, 107, 53, 0.2);
  transition: all 0.2s ease;
}

.premium-offer-badge::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.premium-offer-badge:hover::before {
  opacity: 1;
}

.offer-text {
  font-size: 10px;
  font-weight: 600;
  color: white;
  letter-spacing: 0.2px;
  opacity: 0.95;
}

.offer-discount {
  font-size: 12px;
  font-weight: 700;
  color: white;
  padding: 2px 5px;
  background: rgba(0, 0, 0, 0.25);
  border-radius: 4px;
  letter-spacing: -0.3px;
}

.offer-glow {
  display: none;
}

.premium-offer-badge:hover {
  transform: translateY(-1px) scale(1.02);
  box-shadow: 0 3px 12px rgba(255, 107, 53, 0.3);
}

/* Dans la card dark, le badge s'intègre bien */
.pricing-card-dark .premium-offer-badge {
  background: linear-gradient(135deg, #FF6B35 0%, #E64100 100%);
}

.badge-urgency {
  background: white;
  color: #FF6B35;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(255, 107, 53, 0.15);
}

/* Badge limitation projets */
.premium-limit-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 10px;
  background: rgba(230, 65, 0, 0.08);
  border: 1px solid rgba(230, 65, 0, 0.2);
  border-radius: 6px;
  transition: all 0.2s ease;
}

.premium-limit-badge:hover {
  background: rgba(230, 65, 0, 0.12);
  border-color: rgba(230, 65, 0, 0.3);
}

.premium-limit-badge span {
  color: #E64100;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.pricing-card-dark .premium-limit-badge {
  background: rgba(255, 107, 53, 0.1);
  border-color: rgba(255, 107, 53, 0.25);
}

.pricing-card-dark .premium-limit-badge span {
  color: #FF6B35;
}

/* Animated border for urgency badge */
.badge-urgency::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  padding: 2px;
  background: linear-gradient(90deg,
    #FF6B35 0%,
    #E64100 25%,
    #FF6B35 50%,
    #E64100 75%,
    #FF6B35 100%
  );
  background-size: 200% 100%;
  animation: borderMove 3s linear infinite;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.pricing-icon {
  width: 40px;
  height: 40px;
  background: rgba(230, 65, 0, 0.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-right: 12px;
}

.pricing-icon i {
  color: white !important;
}

.pricing-card-title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 6px;
  color: #1a1a1a;
}

.pricing-card-dark .pricing-card-title {
  color: white;
}

.pricing-card-subtitle {
  font-size: 14px;
  color: #666;
  font-weight: 400;
}

.pricing-card-dark .pricing-card-subtitle {
  color: #999;
}

.pricing-card-description {
  font-size: 15px;
  line-height: 1.6;
  color: #666;
  margin-bottom: 28px;
}

.pricing-card-dark .pricing-card-description {
  color: #ccc;
}

.pricing-tags {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.pricing-tag {
  display: inline-block;
  padding: 4px 10px;
  background: rgba(255, 107, 53, 0.1);
  border: 1px solid rgba(255, 107, 53, 0.3);
  border-radius: 6px;
  font-size: 11px;
  font-weight: 500;
  color: #FF6B35;
  transition: all 0.2s ease;
}

.pricing-tag-savings {
  background: linear-gradient(135deg, #FF6B35 0%, #E64100 100%);
  color: white;
  border: none;
  font-weight: 600;
  animation: flash 3s ease-in-out infinite;
}

@keyframes flash {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.8; }
}

.pricing-card-dark .pricing-tag {
  background: rgba(255, 107, 53, 0.15);
  border-color: rgba(255, 107, 53, 0.4);
  color: #FF8A50;
}

.pricing-tag:hover {
  background: rgba(255, 107, 53, 0.2);
  border-color: rgba(255, 107, 53, 0.5);
  transform: translateY(-1px);
}

.pricing-price {
  margin-bottom: 12px;
}

.price-amount {
  font-size: 48px;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1;
}

.price-amount-gradient {
  background: linear-gradient(135deg, #E64100 0%, #FF6B35 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pricing-card-dark .price-amount {
  color: white;
}

.price-period {
  font-size: 16px;
  color: #666;
  margin-left: 6px;
}

.price-period-gradient {
  background: linear-gradient(135deg, #E64100 0%, #FF6B35 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pricing-card-dark .price-period {
  color: #999;
}

.pricing-notice {
  font-size: 13px;
  color: #999;
  margin-bottom: 28px;
}

/* Dark card badge styles */
.pricing-card-dark .badge-urgency {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  color: #FF8F65;
}

.pricing-card-dark .badge-discount {
  background: linear-gradient(135deg, #ff8c8c, #ff7272);
}

@keyframes borderMove {
  0% { background-position: 0% 0%; }
  100% { background-position: 200% 0%; }
}

/* Original Price (Barré) */
.price-original {
  font-size: 20px;
  font-weight: 500;
  color: #888;
  text-decoration: line-through;
  opacity: 0.8;
  display: block;
  margin-bottom: 8px;
}

.pricing-card-dark .price-original {
  color: #777;
  opacity: 0.9;
}

.pricing-cta {
  display: inline-block;
  text-align: center;
  padding: 9px 22px;
  border-radius: 7px;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  margin-top: 24px;
  margin-bottom: 0;
  transition: all 0.3s ease;
  letter-spacing: -0.2px;
}

.pricing-cta-light {
  background: transparent;
  border: 1.5px solid;
  border-image: linear-gradient(135deg, #E64100 0%, #BF360C 100%) 1;
  color: #E64100;
  position: relative;
  overflow: hidden;
}

.pricing-cta-light::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #E64100 0%, #BF360C 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.pricing-cta-light:hover {
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(230, 65, 0, 0.3), 0 2px 4px rgba(230, 65, 0, 0.15);
}

.pricing-cta-light:hover::before {
  opacity: 1;
}

.pricing-cta-dark {
  background: linear-gradient(135deg, #E64100 0%, #BF360C 100%);
  border: none;
  color: white;
  position: relative;
  overflow: hidden;
}

.pricing-cta-dark::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #BF360C 0%, #E64100 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.pricing-cta-dark:hover {
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(230, 65, 0, 0.4), 0 4px 8px rgba(230, 65, 0, 0.2);
}

.pricing-cta-dark:hover::before {
  opacity: 1;
}

/* Premium CTA Button */
.pricing-cta-premium {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(135deg, #FF6B35 0%, #E64100 100%);
  border: none;
  color: white;
  padding: 12px 18px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  margin-top: 24px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 3px 12px rgba(230, 65, 0, 0.25),
              0 1px 3px rgba(0, 0, 0, 0.1),
              inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.pricing-cta-premium::before {
  content: '';
  position: absolute;
  top: 0;
  left: -150%;
  width: 150%;
  height: 100%;
  background: linear-gradient(90deg,
    transparent 0%,
    transparent 20%,
    rgba(255, 255, 255, 0.25) 50%,
    transparent 80%,
    transparent 100%
  );
  transition: left 0.7s ease;
}

.pricing-cta-premium:hover::before {
  left: 100%;
}

.pricing-cta-premium::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.pricing-cta-premium:hover::after {
  width: 300px;
  height: 300px;
}

.pricing-cta-premium:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 25px rgba(230, 65, 0, 0.4),
              0 3px 8px rgba(0, 0, 0, 0.15),
              inset 0 1px 0 rgba(255, 255, 255, 0.15);
  background: linear-gradient(135deg, #FF7945 0%, #E64100 100%);
}

.cta-text {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.2px;
  z-index: 1;
}

.cta-badge {
  background: rgba(255, 255, 255, 0.2);
  padding: 5px 10px;
  border-radius: 6px;
  font-size: 10px;
  font-weight: 600;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  z-index: 1;
  letter-spacing: 0.2px;
}

.pricing-cta-premium:active {
  transform: translateY(0) scale(0.98);
}

/* Fallback for browsers that don't support border-image */
@supports not (border-image: linear-gradient(135deg, #E64100 0%, #BF360C 100%) 1) {
  .pricing-cta-light,
  .pricing-cta-dark {
    border: 1.5px solid #E64100;
  }
}

/* Buttons in pricing cards - ensure they match hero buttons */
.pricing-card .btn-primary,
.pricing-card .btn-secondary {
  width: 100%;
  justify-content: flex-start;
  margin-top: 24px;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  font-size: 11px;
}

.pricing-card .btn-primary .whatsapp-icon-animated,
.pricing-card .btn-secondary .arrow-icon-animated {
  display: flex;
  align-items: center;
  justify-content: center;
}

.pricing-card .btn-primary .whatsapp-icon-animated svg,
.pricing-card .btn-secondary .arrow-icon-animated svg {
  width: 18px;
  height: 18px;
}

.pricing-features {
  flex: 1;
}

.features-title {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 16px;
  color: #1a1a1a;
}

.pricing-card-dark .features-title {
  color: white;
}

.features-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.features-list li {
  padding-left: 24px;
  margin-bottom: 10px;
  position: relative;
  font-size: 14px;
  line-height: 1.5;
  color: #666;
}

.pricing-card-dark .features-list li {
  color: #ccc;
}

.features-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #666;
  font-weight: normal;
  font-size: 16px;
}

.features-list li:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .pricing-cards-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .pricing-card {
    padding: 28px;
  }

  .price-amount {
    font-size: 40px;
  }
}

/* Process Cards Styles */
.process-cards-container {
  display: flex;
  flex-direction: column;
  gap: 0px;
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 0;
  position: relative;
}

.process-thread {
  position: absolute;
  left: 50%;
  top: 0;
  width: 1px;
  background: var(--color-accent);
  border-radius: 1px;
  transform: translateX(-50%);
  z-index: 1;
  height: 0;
  transition: height 0.6s ease-out;
}

.process-thread::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 8px;
  height: 8px;
  background: var(--color-accent);
  border-radius: 50%;
  z-index: 2;
}

.process-thread::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 8px;
  height: 8px;
  background: var(--color-accent);
  border-radius: 50%;
  z-index: 2;
  opacity: 0;
  transition: opacity 0.3s ease-out;
  box-shadow: 0 0 10px var(--color-accent);
}

.process-thread.active::after {
  opacity: 1;
}

/* Bullet orange qui voyage le long du fil */
.process-bullet {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 8px;
  height: 8px;
  background: var(--color-accent);
  border-radius: 50%;
  z-index: 4;
  box-shadow: 0 0 12px var(--color-accent);
  transition: top 0.1s linear;
  opacity: 0;
}

.process-bullet.active {
  opacity: 1;
}

.process-card-row {
  display: flex;
  align-items: center;
  gap: 20px !important;
  position: relative;
  margin-bottom: -120px;
}

.process-card-row:last-child {
  margin-bottom: 0;
}

.process-card-row::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 16px;
  height: 16px;
  background: rgba(var(--color-accent-rgb), 0.2);
  border-radius: 50%;
  z-index: 3;
  transition: all 0.4s ease-out;
}

.process-card-row.active::after {
  background: var(--color-accent);
  box-shadow: 0 0 20px var(--color-accent), 0 0 40px rgba(var(--color-accent-rgb), 0.5);
  transform: translate(-50%, -50%) scale(1.3);
}

.process-card-row:nth-child(even) {
  flex-direction: row-reverse;
}

.process-card-spacer {
  width: 10px !important;
  flex-shrink: 0 !important;
  background: red !important;
}

.process-card {
  opacity: 0;
  visibility: hidden;
  transform: translateY(30px) scale(0.95);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  width: 350px;
  min-height: 280px;
  height: 280px;
  position: relative;
  z-index: 2;
}

.process-card-side {
  width: 340px;
  min-height: 380px;
  height: auto;
  margin-left: auto;
  margin-right: 60px;
}

.process-card-row-side {
  justify-content: flex-end;
  padding-right: 20px;
}

.process-card-row-side::after {
  right: 30%;
  left: auto;
}

.process-card.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  animation: cardFadeIn 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes cardFadeIn {
  0% {
    opacity: 0;
    visibility: visible;
    transform: translateY(30px) scale(0.95);
  }
  70% {
    opacity: 0.9;
    transform: translateY(-2px) scale(1.01);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.step-details {
  margin-top: 16px;
  padding: 16px;
  background: rgba(var(--color-accent-rgb), 0.05);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--color-accent);
}

.step-details ul {
  margin: 8px 0 0 0;
  padding-left: 16px;
  list-style: none;
}

.step-details li {
  margin-bottom: 6px;
  position: relative;
  padding-left: 16px;
  font-size: 13px;
  line-height: 1.4;
  color: var(--color-text);
}

.step-details li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--color-accent);
  font-weight: bold;
}

.process-card {
  animation-delay: var(--delay, 0ms);
}

.process-card[data-delay="0"] { --delay: 0ms; }
.process-card[data-delay="300"] { --delay: 300ms; }
.process-card[data-delay="600"] { --delay: 600ms; }
.process-card[data-delay="900"] { --delay: 900ms; }
.process-card[data-delay="1200"] { --delay: 1200ms; }
.process-card[data-delay="1500"] { --delay: 1500ms; }

/* Design amélioré pour le header avec meilleure hiérarchie visuelle */
.process-card-header {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}

.step-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.step-number {
  background: linear-gradient(135deg, var(--color-accent), #ff7b3d);
  color: white;
  font-size: 16px;
  font-weight: 800;
  padding: 8px 12px;
  border-radius: 10px;
  min-width: 44px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(var(--color-accent-rgb), 0.3);
  letter-spacing: -0.5px;
}

.step-icon {
  color: var(--color-accent);
  width: 26px;
  height: 26px;
  stroke-width: 2.2;
  opacity: 0.9;
}

.step-info {
  flex: 1;
  text-align: left;
  padding-left: 0;
}

.step-title {
  font-size: 32px;
  font-weight: 700;
  color: var(--color-primary);
  margin: 0 0 4px 0;
  line-height: 1.2;
  letter-spacing: -0.5px;
  text-align: left;
}

.step-subtitle {
  font-size: 18px;
  color: var(--color-text);
  opacity: 0.75;
  margin: 0 0 16px 0;
  line-height: 1.4;
  font-weight: 500;
  text-align: left;
}

.step-duration {
  display: inline-block;
  background: rgba(var(--color-accent-rgb), 0.1);
  color: var(--color-accent);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 20px;
  border: 1px solid rgba(var(--color-accent-rgb), 0.2);
  letter-spacing: 0.2px;
}

/* Animation d'icônes premium */
.step-icon-animation {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 40px;
  height: 40px;
}

.icon-morph {
  position: relative;
  width: 100%;
  height: 100%;
}

.morph-from,
.morph-to {
  position: absolute;
  top: 0;
  left: 0;
  width: 24px;
  height: 24px;
  color: var(--color-accent);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.morph-to {
  opacity: 0;
  transform: scale(0.5) rotate(-90deg);
}

.process-card.visible .morph-from {
  opacity: 0;
  transform: scale(0.5) rotate(90deg);
}

.process-card.visible .morph-to {
  opacity: 1;
  transform: scale(1) rotate(0deg);
  transition-delay: 0.4s;
}

/* Animation spécifiques */
.phone-to-document .morph-from {
  transform-origin: center;
}

.phone-to-document .morph-to {
  transform-origin: center;
}

/* Contenu amélioré avec meilleure lisibilité */
.step-description {
  flex: 1;
  margin-bottom: 20px;
  margin-top: 20px;
}

.step-description p {
  font-size: 18px;
  line-height: 1.8;
  color: var(--color-text);
  margin: 0 0 16px 0;
  opacity: 0.85;
  font-weight: 400;
  letter-spacing: 0.1px;
}

/* Animation Earth Icon */
.earth-icon-animated {
  width: 18px;
  height: 18px;
  display: inline-block;
  position: relative;
}

.earth-icon-animated svg {
  width: 100%;
  height: 100%;
}

.earth-circle {
  stroke-dasharray: 63;
  stroke-dashoffset: 63;
  stroke-width: 2.4;
  animation: drawCircle 3s ease-in-out infinite;
}

.earth-path-1 {
  stroke-dasharray: 20;
  stroke-dashoffset: 20;
  stroke-width: 2.4;
  animation: drawPath1 3s ease-in-out infinite;
  animation-delay: 0.5s;
  opacity: 0;
}

.earth-path-2 {
  stroke-dasharray: 40;
  stroke-dashoffset: 40;
  stroke-width: 2.4;
  animation: drawPath2 3s ease-in-out infinite;
  animation-delay: 1s;
  opacity: 0;
}

.earth-path-3 {
  stroke-dasharray: 30;
  stroke-dashoffset: 30;
  stroke-width: 2.4;
  animation: drawPath3 3s ease-in-out infinite;
  animation-delay: 1.5s;
  opacity: 0;
}

@keyframes drawCircle {
  0% {
    stroke-dashoffset: 63;
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  50% {
    stroke-dashoffset: 0;
    opacity: 1;
  }
  100% {
    stroke-dashoffset: 0;
    opacity: 1;
  }
}

@keyframes drawPath1 {
  0% {
    stroke-dashoffset: 20;
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  50% {
    stroke-dashoffset: 0;
    opacity: 1;
  }
  100% {
    stroke-dashoffset: 0;
    opacity: 1;
  }
}

@keyframes drawPath2 {
  0% {
    stroke-dashoffset: 40;
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  50% {
    stroke-dashoffset: 0;
    opacity: 1;
  }
  100% {
    stroke-dashoffset: 0;
    opacity: 1;
  }
}

@keyframes drawPath3 {
  0% {
    stroke-dashoffset: 30;
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  50% {
    stroke-dashoffset: 0;
    opacity: 1;
  }
  100% {
    stroke-dashoffset: 0;
    opacity: 1;
  }
}

/* Animation hover pour redéclencher avec plus d'effet */
.language-toggle:hover .earth-circle {
  animation: drawCircle 2s ease-in-out infinite;
  stroke-width: 2.4;
}

.language-toggle:hover .earth-path-1 {
  animation: drawPath1 2s ease-in-out infinite;
  animation-delay: 0.3s;
  stroke-width: 2.4;
}

.language-toggle:hover .earth-path-2 {
  animation: drawPath2 2s ease-in-out infinite;
  animation-delay: 0.6s;
  stroke-width: 2.4;
}

.language-toggle:hover .earth-path-3 {
  animation: drawPath3 2s ease-in-out infinite;
  animation-delay: 0.9s;
  stroke-width: 2.4;
}

/* Animation Calendar Icon - Infinite animations */
.calendar-icon-animated,
.calendar-hero-icon-animated {
  width: 16px;
  height: 16px;
  display: inline-block;
  position: relative;
}

.calendar-icon-animated svg,
.calendar-hero-icon-animated svg {
  width: 100%;
  height: 100%;
}

/* Calendar animations - Infinite loops */
.calendar-top-line1 {
  stroke-width: 2.4;
  stroke-dasharray: 4;
  stroke-dashoffset: 4;
  animation: calendarLine1 3s ease-in-out infinite;
}

.calendar-top-line2 {
  stroke-width: 2.4;
  stroke-dasharray: 4;
  stroke-dashoffset: 4;
  animation: calendarLine2 3s ease-in-out infinite;
  animation-delay: 0.3s;
}

.calendar-body {
  stroke-width: 2.4;
  animation: calendarBody 3s ease-in-out infinite;
  animation-delay: 0.6s;
}

.calendar-divider {
  stroke-width: 2.4;
  stroke-dasharray: 18;
  stroke-dashoffset: 18;
  animation: calendarDivider 3s ease-in-out infinite;
  animation-delay: 0.9s;
}

.calendar-check-infinite {
  stroke-dasharray: 10;
  stroke-dashoffset: 10;
  stroke-width: 2.4;
  animation: calendarCheck 3s ease-in-out infinite;
  animation-delay: 1.2s;
}

@keyframes calendarLine1 {
  0% {
    stroke-dashoffset: 4;
    opacity: 0;
  }
  25% {
    opacity: 1;
  }
  50% {
    stroke-dashoffset: 0;
    opacity: 1;
  }
  100% {
    stroke-dashoffset: 0;
    opacity: 1;
  }
}

@keyframes calendarLine2 {
  0% {
    stroke-dashoffset: 4;
    opacity: 0;
  }
  25% {
    opacity: 1;
  }
  50% {
    stroke-dashoffset: 0;
    opacity: 1;
  }
  100% {
    stroke-dashoffset: 0;
    opacity: 1;
  }
}

@keyframes calendarBody {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  25% {
    opacity: 1;
  }
  50% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes calendarDivider {
  0% {
    stroke-dashoffset: 18;
    opacity: 0;
  }
  25% {
    opacity: 1;
  }
  50% {
    stroke-dashoffset: 0;
    opacity: 1;
  }
  100% {
    stroke-dashoffset: 0;
    opacity: 1;
  }
}

@keyframes calendarCheck {
  0% {
    stroke-dashoffset: 10;
    opacity: 0;
  }
  25% {
    opacity: 1;
  }
  50% {
    stroke-dashoffset: 0;
    opacity: 1;
  }
  75% {
    stroke-dashoffset: 0;
    opacity: 1;
  }
  100% {
    stroke-dashoffset: -10;
    opacity: 0;
  }
}

/* Amélioration de la visibilité au hover */
.nav-cta-btn {
  transition: all 0.3s ease;
}

.nav-cta-btn:hover {
  background: var(--color-accent-hover);
  color: white !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(var(--color-accent-rgb), 0.3);
}

.nav-cta-btn:hover svg {
  color: white;
}

.language-toggle {
  transition: all 0.3s ease;
}

.language-toggle:hover {
  background: rgba(var(--color-accent-rgb), 0.1);
  border-radius: var(--radius-md);
  transform: translateY(-1px);
}

.language-toggle:hover svg {
  color: var(--color-accent);
}

/* Animation Arrow Icon */
.arrow-icon-animated {
  width: 16px;
  height: 16px;
  display: inline-block;
  position: relative;
}

.arrow-icon-animated svg {
  width: 100%;
  height: 100%;
}

.arrow-line {
  stroke-width: 2.4;
  stroke-dasharray: 9;
  stroke-dashoffset: 9;
  animation: arrowLineAnimation 2s ease-in-out infinite;
}

.arrow-head {
  stroke-width: 2.4;
  animation: arrowHeadAnimation 2s ease-in-out infinite;
  animation-delay: 0.3s;
}

@keyframes arrowLineAnimation {
  0% {
    stroke-dashoffset: 9;
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  60% {
    stroke-dashoffset: 0;
    opacity: 1;
  }
  100% {
    stroke-dashoffset: -9;
    opacity: 0;
  }
}

@keyframes arrowHeadAnimation {
  0% {
    transform: translateX(0) scale(1);
    opacity: 0.7;
  }
  50% {
    transform: translateX(2px) scale(1.1);
    opacity: 1;
  }
  100% {
    transform: translateX(0) scale(1);
    opacity: 0.7;
  }
}

/* Fallback pour navigateurs sans support d'animation de path */
@supports not (d: path('M5 12h14')) {
  .btn:hover .arrow-line {
    animation: arrowLineFallback 1s ease-in-out infinite;
  }

  .btn:hover .arrow-head {
    animation: arrowHeadFallback 1s ease-in-out infinite;
  }

  @keyframes arrowLineFallback {
    0%, 100% {
      transform: translateX(0);
    }
    50% {
      transform: translateX(2px);
    }
  }

  @keyframes arrowHeadFallback {
    0%, 100% {
      transform: translateX(0);
    }
    50% {
      transform: translateX(-1px);
    }
  }
}

/* Animations pour icônes principales de la landing page */

/* Smartphone Icon Animation */
.smartphone-icon-animated {
  display: inline-block;
}

.smartphone-body {
  animation: smartphoneFloat 2s ease-in-out infinite;
  transform-origin: center;
}

.smartphone-line {
  animation: smartphoneBlink 1.5s ease-in-out infinite;
}

@keyframes smartphoneFloat {
  0%, 100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-2px) scale(1.02);
  }
}

@keyframes smartphoneBlink {
  0%, 50%, 100% {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0.3;
  }
}

/* Monitor Icon Animation */
.monitor-icon-animated {
  display: inline-block;
}

.monitor-screen {
  animation: monitorGlow 3s ease-in-out infinite;
  transform-origin: center;
}

.monitor-base {
  animation: monitorFloat 2s ease-in-out infinite;
}

@keyframes monitorGlow {
  0%, 100% {
    fill: transparent;
    opacity: 1;
  }
  50% {
    fill: rgba(230, 65, 0, 0.1);
    opacity: 0.8;
  }
}

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

/* Heart Icon Animation */
.heart-icon-animated {
  display: inline-block;
}

.heart-shape {
  animation: heartBeat 1.5s ease-in-out infinite;
  transform-origin: center;
}

@keyframes heartBeat {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

/* Code Icon Animation */
.code-icon-animated {
  display: inline-block;
}

.code-brackets {
  animation: codeType 2s ease-in-out infinite;
}

@keyframes codeType {
  0%, 100% {
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dashoffset: 5;
  }
}

/* Rocket Icon Animation */
.rocket-icon-animated {
  display: inline-block;
}

.rocket-body {
  animation: rocketLaunch 2.5s ease-in-out infinite;
  transform-origin: center bottom;
}

@keyframes rocketLaunch {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-3px) rotate(2deg);
  }
}

/* Phone Icon Animation */
.phone-icon-animated {
  display: inline-block;
}

.phone-body {
  animation: phoneRing 1.8s ease-in-out infinite;
  transform-origin: center;
}

@keyframes phoneRing {
  0%, 100% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(5deg);
  }
  75% {
    transform: rotate(-5deg);
  }
}

/* Users Icon Animation */
.users-icon-animated {
  display: inline-block;
}

.users-group {
  animation: usersWave 2.2s ease-in-out infinite;
  transform-origin: center;
}

@keyframes usersWave {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

/* Store Icon Animation */
.store-icon-animated {
  display: inline-block;
}

.store-building {
  animation: storeFloat 2.8s ease-in-out infinite;
}

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

/* Shopping Cart Animation */
.cart-icon-animated {
  display: inline-block;
}

.cart-body {
  animation: cartRoll 1.8s ease-in-out infinite;
  transform-origin: bottom;
}

@keyframes cartRoll {
  0%, 100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(1px);
  }
}

/* Settings/Gear Animation */
.settings-icon-animated {
  display: inline-block;
}

.settings-gear {
  animation: gearRotate 3s linear infinite;
  transform-origin: center;
}

@keyframes gearRotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Mail Icon Animation */
.mail-icon-animated {
  display: inline-block;
}

.mail-envelope {
  animation: mailBounce 2.5s ease-in-out infinite;
}

@keyframes mailBounce {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-2px) rotate(1deg);
  }
}

/* Search Icon Animation */
.search-icon-animated {
  display: inline-block;
}

.search-glass {
  animation: searchScan 2s ease-in-out infinite;
  transform-origin: center;
}

@keyframes searchScan {
  0%, 100% {
    transform: scale(1) rotate(0deg);
  }
  50% {
    transform: scale(1.1) rotate(10deg);
  }
}

/* Video Icon Animation */
.video-icon-animated {
  display: inline-block;
}

.video-play {
  animation: videoPlay 1.5s ease-in-out infinite;
}

@keyframes videoPlay {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(0.9);
    opacity: 0.8;
  }
}

/* Wrench/Tool Animation */
.wrench-icon-animated {
  display: inline-block;
}

.wrench-tool {
  animation: wrenchTurn 2.3s ease-in-out infinite;
  transform-origin: bottom right;
}

@keyframes wrenchTurn {
  0%, 100% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(15deg);
  }
}

/* Brain Icon Animation */
.brain-icon-animated {
  display: inline-block;
}

.brain-shape {
  animation: brainThink 1.8s ease-in-out infinite;
}

@keyframes brainThink {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.03);
  }
}

/* Link Icon Animation */
.link-icon-animated {
  display: inline-block;
}

.link-chain {
  animation: linkConnect 2s ease-in-out infinite;
}

@keyframes linkConnect {
  0%, 100% {
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dashoffset: 5;
  }
}

/* Global hover enhancement for all animated icons */
.feature-icon:hover .smartphone-body,
.feature-icon:hover .monitor-screen,
.feature-icon:hover .heart-shape,
.feature-icon:hover .code-brackets,
.feature-icon:hover .rocket-body,
.feature-icon:hover .phone-body,
.feature-icon:hover .users-group,
.feature-icon:hover .store-building,
.feature-icon:hover .cart-body,
.feature-icon:hover .settings-gear,
.feature-icon:hover .mail-envelope,
.feature-icon:hover .search-glass,
.feature-icon:hover .video-play,
.feature-icon:hover .wrench-tool,
.feature-icon:hover .brain-shape,
.feature-icon:hover .link-chain {
  animation-duration: 0.6s;
  stroke-width: 2.4;
}

/* Système d'icônes animées intégré - inspiré de icons.pqoqubbw.dev */

/* Heart Icon Advanced Animation */
.heart-advanced {
  animation: heartAdvanced 2s ease-in-out infinite;
  transform-origin: center;
}

@keyframes heartAdvanced {
  0%, 100% {
    transform: scale(1);
    fill: transparent;
  }
  30% {
    transform: scale(1.1);
    fill: rgba(230, 65, 0, 0.2);
  }
  60% {
    transform: scale(0.95);
    fill: transparent;
  }
}

/* Lock Icon Animation */
.lock-icon-animated {
  display: inline-block;
}

.lock-body {
  animation: lockShake 2.5s ease-in-out infinite;
}

.lock-shackle {
  animation: lockOpen 2.5s ease-in-out infinite;
  transform-origin: left center;
}

@keyframes lockShake {
  0%, 100% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-1px);
  }
  75% {
    transform: translateX(1px);
  }
}

@keyframes lockOpen {
  0%, 60%, 100% {
    transform: rotate(0deg);
  }
  80% {
    transform: rotate(-10deg);
  }
}

/* Activity/Pulse Icon */
.activity-icon-animated {
  display: inline-block;
}

.activity-line {
  animation: activityPulse 1.5s ease-in-out infinite;
  stroke-dasharray: 20;
  stroke-dashoffset: 0;
}

@keyframes activityPulse {
  0%, 100% {
    stroke-dashoffset: 0;
    opacity: 1;
  }
  50% {
    stroke-dashoffset: 10;
    opacity: 0.7;
  }
}

/* Plus Icon Animation */
.plus-icon-animated {
  display: inline-block;
}

.plus-horizontal,
.plus-vertical {
  animation: plusPulse 1.8s ease-in-out infinite;
  transform-origin: center;
}

.plus-vertical {
  animation-delay: 0.2s;
}

@keyframes plusPulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.8;
  }
}

/* Droplet Icon Animation */
.droplet-icon-animated {
  display: inline-block;
}

.droplet-shape {
  animation: dropletFall 2.2s ease-in-out infinite;
  transform-origin: bottom;
}

@keyframes dropletFall {
  0%, 100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-3px) scale(1.05);
  }
}

/* Thermometer Icon Animation */
.thermometer-icon-animated {
  display: inline-block;
}

.thermometer-mercury {
  animation: thermometerRise 3s ease-in-out infinite;
  transform-origin: bottom;
}

@keyframes thermometerRise {
  0%, 100% {
    transform: scaleY(0.7);
    fill: #3b82f6;
  }
  50% {
    transform: scaleY(1);
    fill: #ef4444;
  }
}

/* Snowflake Icon Animation */
.snowflake-icon-animated {
  display: inline-block;
}

.snowflake-shape {
  animation: snowflakeRotate 4s linear infinite;
  transform-origin: center;
}

@keyframes snowflakeRotate {
  0% {
    transform: rotate(0deg) scale(1);
  }
  50% {
    transform: rotate(180deg) scale(1.1);
  }
  100% {
    transform: rotate(360deg) scale(1);
  }
}

/* Folders Icon Animation */
.folders-icon-animated {
  display: inline-block;
}

.folder-back {
  animation: folderSlide 2.5s ease-in-out infinite;
  transform-origin: left;
}

.folder-front {
  animation: folderSlide 2.5s ease-in-out infinite;
  animation-delay: 0.3s;
  transform-origin: left;
}

@keyframes folderSlide {
  0%, 100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(2px);
  }
}

/* NFC Icon Animation */
.nfc-icon-animated {
  display: inline-block;
}

.nfc-waves {
  animation: nfcPulse 1.5s ease-in-out infinite;
  transform-origin: center;
}

@keyframes nfcPulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.6;
  }
}

/* Smile Icon Animation */
.smile-icon-animated {
  display: inline-block;
}

.smile-face {
  animation: smileHappy 2s ease-in-out infinite;
  transform-origin: center;
}

@keyframes smileHappy {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

/* Forcer overflow visible sur tous les conteneurs d'icônes */
.bento-card,
.feature-content,
.step-badge,
.feature-item {
  overflow: visible !important;
}

/* Global animation control - inherit from parent state */
[data-animated="true"] .heart-advanced,
[data-animated="true"] .lock-body,
[data-animated="true"] .activity-line,
[data-animated="true"] .plus-horizontal,
[data-animated="true"] .droplet-shape,
[data-animated="true"] .thermometer-mercury,
[data-animated="true"] .snowflake-shape,
[data-animated="true"] .folder-back,
[data-animated="true"] .nfc-waves,
[data-animated="true"] .smile-face {
  animation-play-state: running;
}

/* Enhanced hover states for all new animations */
.feature-icon:hover .heart-advanced,
.feature-icon:hover .lock-body,
.feature-icon:hover .activity-line,
.feature-icon:hover .plus-horizontal,
.feature-icon:hover .droplet-shape,
.feature-icon:hover .thermometer-mercury,
.feature-icon:hover .snowflake-shape,
.feature-icon:hover .folder-back,
.feature-icon:hover .nfc-waves,
.feature-icon:hover .smile-face {
  animation-duration: 0.8s;
}

.process-card-inner {
  background: white;
  border-radius: 40px;
  box-shadow:
    0 8px 24px rgba(0, 0, 0, 0.04),
    0 2px 8px rgba(0, 0, 0, 0.02);
  overflow: hidden;
  transition: all var(--transition-base);
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 30px 30px 48px 30px;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.process-card-inner:hover {
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.08),
    0 8px 16px rgba(0, 0, 0, 0.06);
  transform: translateY(-4px);
}

.process-card-featured {
  width: 400px;
  margin: 0 auto;
}

.process-card-featured .process-card-inner {
  background: linear-gradient(135deg, rgba(var(--color-accent-rgb), 0.02), rgba(var(--color-accent-rgb), 0.05));
  border: 2px solid rgba(var(--color-accent-rgb), 0.1);
}

.process-card-header {
  padding: 32px 36px 24px 20px;
  text-align: left;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.step-badge {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 16px;
}

.step-number {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--color-accent), var(--color-accent-hover));
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  font-family: var(--font-display);
  box-shadow: 0 8px 24px rgba(var(--color-accent-rgb), 0.3);
  margin-right: 16px;
}

.step-icon {
  width: 24px;
  height: 24px;
  color: var(--color-accent);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(1.1); }
  100% { opacity: 1; transform: scale(1); }
}

.step-phone-icon {
  animation: ring 2s infinite;
}

@keyframes ring {
  0%, 100% { transform: rotate(0deg); }
  10%, 30% { transform: rotate(-10deg); }
  20% { transform: rotate(10deg); }
}

.step-rocket-icon {
  animation: launch 3s infinite;
}

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

.step-info {
  text-align: left;
}

.step-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-text);
  font-family: var(--font-display);
  margin: 0 0 4px 0;
}

.step-subtitle {
  font-size: 14px;
  color: var(--color-accent);
  font-weight: 500;
  margin: 0 0 8px 0;
}

.step-duration {
  background: rgba(var(--color-accent-rgb), 0.1);
  color: var(--color-accent);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
  display: inline-block;
}

.process-card-content {
  padding: 20px 36px 20px 20px;
}

.step-description {
  margin-bottom: 16px;
  text-align: left;
}

.step-description p {
  font-size: 14px;
  line-height: 1.5;
  color: var(--color-text);
  margin: 0;
  opacity: 0.8;
  text-align: left;
}

.step-features {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  background: rgba(var(--color-accent-rgb), 0.05);
  border-radius: 8px;
  border-left: 3px solid rgba(var(--color-accent-rgb), 0.3);
  transition: all var(--transition-base);
}

.feature-item:hover {
  background: rgba(var(--color-accent-rgb), 0.08);
  border-left-color: var(--color-accent);
  transform: translateX(2px);
}

.feature-icon {
  width: 18px;
  height: 18px;
  color: var(--color-accent);
  flex-shrink: 0;
  stroke-width: 2.2;
}

.feature-item span {
  font-size: 14px;
  color: var(--color-text);
  font-weight: 600;
  opacity: 0.9;
  letter-spacing: 0.1px;
}

.development-phases {
  margin: 24px 0;
  display: grid;
  gap: 16px;
}

.phase-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  background: rgba(var(--color-accent-rgb), 0.05);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--color-accent);
}

.phase-icon {
  font-size: 24px;
  flex-shrink: 0;
}

.phase-content h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--color-text);
  font-family: var(--font-display);
  margin: 0 0 4px 0;
}

.phase-content p {
  font-size: 14px;
  color: var(--color-text);
  margin: 0;
  opacity: 0.7;
}

.slack-communication {
  margin: 24px 0;
  padding: 20px;
  background: linear-gradient(135deg, rgba(var(--color-accent-rgb), 0.08), rgba(var(--color-accent-rgb), 0.12));
  border-radius: var(--radius-md);
  border: 1px solid rgba(var(--color-accent-rgb), 0.2);
}

.slack-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.slack-icon {
  width: 20px;
  height: 20px;
  color: var(--color-accent);
}

.slack-header span {
  font-size: 16px;
  font-weight: 600;
  color: var(--color-accent);
  font-family: var(--font-display);
}

.slack-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 8px;
}

.slack-features span {
  font-size: 14px;
  color: var(--color-text);
  font-weight: 500;
}

.post-launch-options {
  display: grid;
  gap: 16px;
  margin: 24px 0;
}

.option-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: white;
  border-radius: var(--radius-md);
  border: 2px solid rgba(var(--color-accent-rgb), 0.1);
  transition: all var(--transition-base);
}

.option-card:hover {
  border-color: rgba(var(--color-accent-rgb), 0.3);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(var(--color-accent-rgb), 0.1);
}

.option-icon {
  font-size: 32px;
  flex-shrink: 0;
}

.option-content h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--color-text);
  font-family: var(--font-display);
  margin: 0 0 4px 0;
}

.option-content p {
  font-size: 14px;
  color: var(--color-text);
  margin: 0;
  opacity: 0.7;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .process-cards-container {
    gap: 40px;
    padding: 20px 0;
  }

  .process-thread {
    left: 30px;
    transform: none;
  }

  .process-card-row {
    flex-direction: column !important;
    gap: 0;
    align-items: flex-start;
    padding-left: 60px;
  }

  .process-card-spacer {
    display: none;
  }

  .process-card {
    width: 340px;
    min-height: 380px;
  }

  .process-card-featured {
    width: 360px;
    margin: 0;
  }

  .process-card-header {
    padding: 24px 28px 20px 16px;
    text-align: left;
  }

  .step-badge {
    justify-content: flex-start;
  }

  .process-card-content {
    padding: 16px 28px 16px 16px;
  }

  .slack-features {
    grid-template-columns: 1fr;
  }

  .phase-item {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .bento-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }

  .bento-card.bento-large,
  .bento-card.bento-medium,
  .bento-card.bento-wide {
    grid-column: span 2;
  }

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

  .process-card-large {
    grid-column: span 2;
    grid-row: span 1;
  }

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

  /* Package Cards Responsive */
  .packages-bento {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, minmax(240px, auto));
    gap: 20px;
  }

  .package-card-large {
    grid-column: span 2;
    grid-row: span 1;
  }

  .addon-cards-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }

  .addon-card {
    min-height: 100px;
    padding: 12px;
  }
  .feature-mini-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .feature-mini-card {
    padding: 10px 12px;
    font-size: 13px;
    min-height: 40px;
  }

  .addon-icon {
    font-size: 20px;
    margin-bottom: 6px;
  }

  .addon-card h4 {
    font-size: 13px;
  }

  .addon-card p {
    font-size: 11px;
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 80px;
    --grid-gap: 24px;
    --button-padding: 16px 32px;
  }

  .container {
    padding: 0 16px;
  }

  .nav {
    top: 16px;
    width: calc(100% - 32px);
  }

  .nav-container {
    padding: 10px 20px;
    height: 52px;
  }

  .bento-grid,
  .features-grid,
  .blog-grid,
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .process-bento {
    grid-template-columns: 1fr;
  }

  .process-card,
  .process-card-large,
  .process-card-wide {
    grid-column: span 1;
    border-right: none;
  }

  /* Package Cards Mobile */
  .packages-bento {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(5, minmax(200px, auto));
    gap: 16px;
  }

  .package-card {
    padding: 24px;
    min-height: 200px;
  }

  .package-card-large {
    grid-column: span 1;
    grid-row: span 1;
  }

  .addon-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .addon-card {
    min-height: 80px;
    padding: 10px;
  }
  .feature-mini-cards {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .feature-mini-card {
    padding: 8px 12px;
    font-size: 12px;
    min-height: 35px;
  }

  .addon-icon {
    font-size: 18px;
    margin-bottom: 4px;
  }

  .addon-card h4 {
    font-size: 12px;
  }

  .addon-card p {
    font-size: 10px;
  }

  .package-number {
    font-size: 48px;
    top: 12px;
    right: 12px;
  }

  .package-plus {
    font-size: 60px;
    top: 6px;
    right: 16px;
  }

  .package-title {
    font-size: 20px;
  }

  .package-subtitle {
    font-size: 14px;
  }

  .package-features p {
    font-size: 14px;
    margin-bottom: 8px;
  }

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

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .btn {
    width: auto;
    justify-content: flex-start;
  }

  .cta-container {
    padding: 48px 32px;
  }
}

/* Mobile Menu */
.mobile-menu-toggle {
  display: none;
  background: transparent;
  border: none;
  color: var(--color-primary);
  cursor: pointer;
  padding: 8px;
  border-radius: var(--radius-lg);
  transition: all var(--transition-fast);
}

.mobile-menu-toggle:hover {
  background: rgba(26, 26, 26, 0.05);
}

@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }

  .nav-actions {
    display: none;
  }

  .nav-menu.active {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-lg);
    margin-top: 8px;
    flex-direction: column;
    gap: 4px;
    padding: 16px;
    box-shadow:
      0 8px 32px rgba(0, 0, 0, 0.04),
      0 1px 0 rgba(255, 255, 255, 0.7) inset;
  }

  .mobile-menu-toggle {
    display: block;
  }
}

/* Text Gradient */
.text-gradient {
  color: var(--color-accent);
}

/* Utility Classes */
.glass {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(26, 26, 26, 0.1);
}

/* Companies Scrolling Banner */
.companies-banner {
  padding: 20px 0 10px 0;
  background: transparent;
  overflow: hidden;
  margin-top: -80px;
}

.companies-banner-title {
  text-align: center;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: #666;
  margin-bottom: 35px;
  text-transform: lowercase;
}

.companies-scrolling {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 100%;
  margin: 0;
  display: block !important; /* Force display on all devices */
  visibility: visible !important;
  padding: 0;
}

.companies-scrolling::before,
.companies-scrolling::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 5;
  pointer-events: none;
}

.companies-scrolling::before {
  left: 0;
  background: linear-gradient(to right, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.4), transparent);
}

.companies-scrolling::after {
  right: 0;
  background: linear-gradient(to left, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.4), transparent);
}

.companies-track {
  display: flex;
  align-items: center;
  animation: scroll-left 120s linear infinite; /* Slowed down from 70s to 120s */
  width: max-content;
  gap: 80px;
}

.company-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  height: 35px;
  min-width: 110px;
  opacity: 1; /* Changed from 0.7 to 1 for full visibility */
  filter: none;
  -webkit-font-smoothing: antialiased;
  font-weight: 400;
  flex-shrink: 0;
}

.company-logo-img {
  width: auto; /* Changed from fixed 40px to auto */
  height: 24px; /* Reduced height for better proportion */
  max-height: 24px;
  max-width: 80px; /* Allow logos to be wider */
  min-width: 30px; /* Reduced minimum width */
  min-height: 20px;
  object-fit: contain;
  flex-shrink: 0;
  display: inline-block; /* Changed from block to inline-block */
  visibility: visible;
  opacity: 1; /* Changed from 0.7 to 1 for full visibility */
}

.company-logo img {
  width: auto; /* Changed from 40px to auto for proper aspect ratio */
  height: 24px; /* Reasonable height for logos */
  max-height: 30px;
  max-width: 100px; /* Allow wider logos */
  min-width: auto; /* Remove min constraint */
  min-height: auto; /* Remove min constraint */
  object-fit: contain;
  display: inline-block; /* Changed to inline-block */
  visibility: visible;
  opacity: 1; /* Changed from 0.7 to 1 for full visibility */
}

.company-text {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 14px;
  color: #666;
  white-space: nowrap;
  letter-spacing: 0.02em;
  opacity: 0.7;
}

/* Styles différents pour chaque marque - design moderne */
.company-text[data-brand="cocoon"] {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: -0.2px;
}

.company-text[data-brand="handytab"] {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.company-text[data-brand="drhue"] {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 15px;
  letter-spacing: 0.5px;
}

.company-text[data-brand="flameup"] {
  font-family: -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 900;
  font-size: 13px;
  letter-spacing: 0.1px;
  text-transform: uppercase;
}

.company-text[data-brand="vitacure"] {
  font-family: -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 200;
  font-size: 14px;
  letter-spacing: 0.8px;
}

.company-text[data-brand="gemmy"] {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: -0.3px;
}

.company-text[data-brand="sponsorup"] {
  font-family: -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.2px;
}

.company-text[data-brand="cocoluna"] {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.5px;
}

.company-text[data-brand="baely"] {
  font-family: -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 300;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.company-text[data-brand="noska"] {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 14px;
  letter-spacing: -0.1px;
}

.company-text[data-brand="lapepite"] {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.3px;
}

.company-text[data-brand="lescreateurs"] {
  font-family: -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 300;
  font-size: 14px;
  letter-spacing: 0.4px;
}

.company-text[data-brand="goodmorning"] {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.2px;
}

.company-text[data-brand="lodger"] {
  font-family: -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: -0.2px;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Mobile specific styles for companies scrolling - ensure always visible */
@media (max-width: 768px) {
  .companies-scrolling {
    display: block !important;
    visibility: visible !important;
    margin: 30px 0 40px 0 !important;
  }

  .companies-track {
    display: flex !important;
    visibility: visible !important;
    animation: scroll-left 90s linear infinite !important; /* Slowed down from 50s to 90s */
    gap: 40px !important; /* Smaller gap on mobile */
  }

  .company-logo {
    min-width: 80px !important; /* Smaller logos on mobile */
    height: 30px !important;
    display: flex !important;
    visibility: visible !important;
  }

  .company-logo-img {
    height: 20px !important; /* Smaller images on mobile */
    width: auto !important;
  }

  .company-text {
    font-size: 12px !important; /* Smaller text on mobile */
  }
}

/* Even smaller screens */
@media (max-width: 480px) {
  .companies-scrolling {
    display: block !important;
    visibility: visible !important;
    margin: 25px 0 35px 0 !important;
  }

  .companies-track {
    animation: scroll-left 80s linear infinite !important; /* Slowed down from 40s to 80s */
    gap: 30px !important;
  }

  .company-logo {
    min-width: 70px !important;
    height: 25px !important;
  }

  .company-logo-img {
    /* CRITICAL FIX: Add width: auto to make SVGs visible */
    width: auto !important;
    height: 18px !important;
    max-width: 70px !important;
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
  }

  .company-text {
    font-size: 11px !important;
  }
}

/* CRITICAL FIX: Force SVG logos to display on all devices */
.company-logo-img {
  display: inline-block !important;
  visibility: visible !important;
  opacity: 1 !important;
  object-fit: contain !important;
  -webkit-appearance: none !important;
  filter: none !important;
  -webkit-filter: none !important;
}

/* Specific SVG handling with forced dimensions */
.company-logo-img[src$=".svg"] {
  display: inline-block !important;
  visibility: visible !important;
  opacity: 1 !important;
  width: auto !important;
  height: 24px !important;
  min-width: 40px !important;
  max-height: 24px !important;
  object-fit: contain !important;
  vertical-align: middle !important;
}

/* iOS Safari specific fixes for SVGs */
@supports (-webkit-touch-callout: none) {
  .company-logo-img {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }

  .company-logo-img[src$=".svg"] {
    width: 60px !important;
    height: auto !important;
    max-height: 30px !important;
  }
}

/* Additional iOS fix for mobile */
@media (max-width: 480px) {
  @supports (-webkit-touch-callout: none) {
    .company-logo-img {
      width: auto !important;
      height: 20px !important;
      max-width: 60px !important;
      -webkit-transform: translateZ(0);
      transform: translateZ(0);
    }
  }
}

/* Ensure PNG (Gemmy) also displays correctly */
.company-logo-img[src$=".png"] {
  display: inline-block !important;
  visibility: visible !important;
  opacity: 1 !important;
  height: 24px !important;
  width: auto !important;
  object-fit: contain !important;
}

/* Styles cleaned - debug mode removed */

/* Pause animation on hover */
.companies-banner:hover .companies-track {
  animation-play-state: paused;
}

/* Hover effect on logos */
.company-logo:hover {
  opacity: 1;
}

.company-logo:hover .company-logo-img,
.company-logo:hover img {
  opacity: 1;
}

.company-logo:hover .company-text {
  opacity: 1;
}

@media (max-width: 1024px) {
  .companies-banner {
    padding: 8px 0;
  }

  .companies-scrolling {
    overflow: hidden !important;
    overflow-x: hidden !important;
    display: block !important;
    width: 100% !important;
    padding: 20px 0 !important;
    visibility: visible !important;
  }

  .companies-track {
    gap: 60px !important;
    animation: scroll-left 30s linear infinite !important;
    display: flex !important;
    will-change: transform !important;
    width: max-content !important;
    min-width: 300vw !important;
  }

  .company-logo {
    min-width: 140px !important;
    height: 50px !important;
    gap: 10px !important;
    display: flex !important;
    align-items: center !important;
    opacity: 1 !important;
    filter: none !important;
    flex-shrink: 0 !important;
    visibility: visible !important;
  }

  .company-logo-img {
    width: 45px !important;
    height: 45px !important;
    max-height: 45px !important;
    max-width: 45px !important;
    min-width: 45px !important;
    min-height: 45px !important;
    display: block !important;
    filter: none !important;
    visibility: visible !important;
    object-fit: contain !important;
    flex-shrink: 0 !important;
  }

  .company-logo img {
    width: auto !important; /* Changed from 45px to auto */
    height: 22px !important; /* Smaller for mobile */
    max-height: 25px !important;
    max-width: 80px !important; /* Allow wider logos */
    min-width: auto !important;
    min-height: auto !important;
    display: inline-block !important;
    filter: none !important;
    visibility: visible !important;
    object-fit: contain !important;
    flex-shrink: 0 !important;
  }

  /* Force SVG elements to scale properly */
  .company-logo svg {
    width: auto !important; /* Changed from 45px to auto */
    height: 22px !important; /* Match image height */
    display: inline-block !important;
    visibility: visible !important;
  }

  /* CRITICAL FIX: Target IMG tags with SVG sources specifically */
  .company-logo-img[src$=".svg"],
  .company-logo img[src$=".svg"] {
    width: 45px !important;
    height: 45px !important;
    max-width: 45px !important;
    max-height: 45px !important;
    min-width: 45px !important;
    min-height: 45px !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    object-fit: contain !important;
    object-position: center !important;
    flex-shrink: 0 !important;
  }

  .company-text {
    font-size: 14px !important;
    display: block !important;
    opacity: 1 !important;
    color: #000 !important;
    white-space: nowrap !important;
    visibility: visible !important;
  }
}

/* Extra small screens - ensure logos are visible on smallest devices */
@media (max-width: 480px) {
  .companies-scrolling {
    overflow: hidden !important;
    overflow-x: hidden !important;
    display: block !important;
    width: 100% !important;
    padding: 20px 0 !important;
    visibility: visible !important;
  }

  .companies-track {
    gap: 40px !important;
    animation: scroll-left 30s linear infinite !important;
    display: flex !important;
    will-change: transform !important;
    width: max-content !important;
    min-width: 400vw !important;
  }

  .company-logo {
    min-width: 120px !important;
    height: 50px !important;
    gap: 8px !important;
    display: flex !important;
    align-items: center !important;
    opacity: 1 !important;
    filter: none !important;
    flex-shrink: 0 !important;
    visibility: visible !important;
  }

  .company-logo-img {
    width: 40px !important;
    height: 40px !important;
    max-height: 40px !important;
    max-width: 40px !important;
    min-width: 40px !important;
    min-height: 40px !important;
    display: block !important;
    filter: none !important;
    visibility: visible !important;
    object-fit: contain !important;
    flex-shrink: 0 !important;
  }

  .company-logo img {
    width: 40px !important;
    height: 40px !important;
    max-height: 40px !important;
    max-width: 40px !important;
    min-width: 40px !important;
    min-height: 40px !important;
    display: block !important;
    filter: none !important;
    visibility: visible !important;
    object-fit: contain !important;
    flex-shrink: 0 !important;
  }

  .company-logo-img[src$=".svg"],
  .company-logo img[src$=".svg"] {
    width: 40px !important;
    height: 40px !important;
    max-width: 40px !important;
    max-height: 40px !important;
    min-width: 40px !important;
    min-height: 40px !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    object-fit: contain !important;
    object-position: center !important;
    flex-shrink: 0 !important;
  }

  .company-text {
    font-size: 13px !important;
    display: block !important;
    opacity: 1 !important;
    color: #000 !important;
    white-space: nowrap !important;
    visibility: visible !important;
  }
}

/* Monitor Check Icon Animation - Exact replica from icons.pqoqubbw.dev */
.monitor-check-icon-animated .monitor-checkmark {
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
  stroke-width: 2.4;
  animation: drawCheckmark 2s ease-in-out infinite;
}

@keyframes drawCheckmark {
  0% {
    stroke-dashoffset: 100;
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  60% {
    stroke-dashoffset: 0;
    opacity: 1;
  }
  90% {
    stroke-dashoffset: 0;
    opacity: 1;
  }
  100% {
    stroke-dashoffset: -100;
    opacity: 0;
  }
}

/* Smartphone Charging Icon Animation - Exact replica from icons.pqoqubbw.dev */
.smartphone-charging-icon-animated .charging-bolt {
  stroke-width: 2.4;
  animation: chargingPulse 1.5s ease-in-out infinite;
}

@keyframes chargingPulse {
  0% {
    opacity: 0.3;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0.3;
  }
}

/* Activity Icon Animation - Exact replica from icons.pqoqubbw.dev */
.activity-icon-animated .activity-square {
  stroke-width: 2.4;
  animation: activitySquare 3s ease-in-out infinite;
}

.activity-icon-animated .activity-path {
  stroke-width: 2.4;
  stroke-dasharray: 30;
  stroke-dashoffset: 30;
  animation: activityPath 3s ease-in-out infinite;
}

@keyframes activitySquare {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.05);
    opacity: 0.8;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes activityPath {
  0% {
    stroke-dashoffset: 30;
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  60% {
    stroke-dashoffset: 0;
    opacity: 1;
  }
  100% {
    stroke-dashoffset: -30;
    opacity: 0;
  }
}

/* Heart Icon Animation - Exact replica from icons.pqoqubbw.dev */
.heart-icon-animated .heart-path {
  stroke-width: 2.4;
  animation: heartBeat 2s ease-in-out infinite;
  transform-origin: center;
}

@keyframes heartBeat {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  20% {
    transform: scale(1.1);
    opacity: 0.8;
  }
  40% {
    transform: scale(1);
    opacity: 1;
  }
  60% {
    transform: scale(1.05);
    opacity: 0.9;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

/* Store Icon Animation - Complex path-based animation */
.store-icon-animated .store-roof {
  stroke-width: 2.4;
  stroke-dasharray: 25;
  stroke-dashoffset: 25;
  animation: storeRoof 2.5s ease-in-out infinite;
}

.store-icon-animated .store-front {
  stroke-width: 2.4;
  stroke-dasharray: 20;
  stroke-dashoffset: 20;
  animation: storeFront 2.5s ease-in-out infinite;
  animation-delay: 0.3s;
}

.store-icon-animated .store-base {
  stroke-width: 2.4;
  animation: storeBase 2.5s ease-in-out infinite;
  animation-delay: 0.6s;
}

.store-icon-animated .store-door {
  stroke-width: 2.4;
  stroke-dasharray: 10;
  stroke-dashoffset: 10;
  animation: storeDoor 2.5s ease-in-out infinite;
  animation-delay: 0.9s;
}

@keyframes storeRoof {
  0% {
    stroke-dashoffset: 25;
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  60% {
    stroke-dashoffset: 0;
    opacity: 1;
  }
  100% {
    stroke-dashoffset: 0;
    opacity: 1;
  }
}

@keyframes storeFront {
  0% {
    stroke-dashoffset: 20;
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  60% {
    stroke-dashoffset: 0;
    opacity: 1;
  }
  100% {
    stroke-dashoffset: 0;
    opacity: 1;
  }
}

@keyframes storeBase {
  0% {
    transform: scaleY(0);
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  60% {
    transform: scaleY(1);
    opacity: 1;
  }
  100% {
    transform: scaleY(1);
    opacity: 1;
  }
}

@keyframes storeDoor {
  0% {
    stroke-dashoffset: 10;
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  60% {
    stroke-dashoffset: 0;
    opacity: 1;
  }
  100% {
    stroke-dashoffset: 0;
    opacity: 1;
  }
}

/* Users Icon Animation - Complex path-based animation */
.users-icon-animated .users-group:nth-child(1) {
  stroke-width: 2.4;
  stroke-dasharray: 20;
  stroke-dashoffset: 20;
  animation: usersPath1 3s ease-in-out infinite;
}

.users-icon-animated .users-group:nth-child(2) {
  stroke-width: 2.4;
  animation: usersCircle1 3s ease-in-out infinite;
  animation-delay: 0.5s;
}

.users-icon-animated .users-group:nth-child(3) {
  stroke-width: 2.4;
  stroke-dasharray: 15;
  stroke-dashoffset: 15;
  animation: usersPath2 3s ease-in-out infinite;
  animation-delay: 1s;
}

.users-icon-animated .users-group:nth-child(4) {
  stroke-width: 2.4;
  animation: usersCircle2 3s ease-in-out infinite;
  animation-delay: 1.5s;
}

@keyframes usersPath1 {
  0% {
    stroke-dashoffset: 20;
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  60% {
    stroke-dashoffset: 0;
    opacity: 1;
  }
  100% {
    stroke-dashoffset: 0;
    opacity: 1;
  }
}

@keyframes usersCircle1 {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  60% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes usersPath2 {
  0% {
    stroke-dashoffset: 15;
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  60% {
    stroke-dashoffset: 0;
    opacity: 1;
  }
  100% {
    stroke-dashoffset: 0;
    opacity: 1;
  }
}

@keyframes usersCircle2 {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  60% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

/* Cart Icon Animation - Complex path-based animation */
.cart-icon-animated .cart-body:nth-child(1) {
  stroke-width: 2.4;
  animation: cartWheel1 2s ease-in-out infinite;
}

.cart-icon-animated .cart-body:nth-child(2) {
  stroke-width: 2.4;
  animation: cartWheel2 2s ease-in-out infinite;
  animation-delay: 0.2s;
}

.cart-icon-animated .cart-body:nth-child(3) {
  stroke-width: 2.4;
  stroke-dasharray: 35;
  stroke-dashoffset: 35;
  animation: cartMain 2s ease-in-out infinite;
  animation-delay: 0.4s;
}

@keyframes cartWheel1 {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.8;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes cartWheel2 {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.8;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes cartMain {
  0% {
    stroke-dashoffset: 35;
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  70% {
    stroke-dashoffset: 0;
    opacity: 1;
  }
  100% {
    stroke-dashoffset: 0;
    opacity: 1;
  }
}

/* Trust Text Animation */
.trust-text-animated {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
}

.trust-plus {
  display: inline-block;
  animation: trustPlusFloat 4s ease-in-out infinite;
  font-weight: 700;
  color: var(--color-accent);
}

.trust-number {
  display: inline-block;
  animation: trustNumberPulse 3s ease-in-out infinite;
  font-weight: 700;
  color: var(--color-accent);
}

.trust-description {
  display: inline-block;
  animation: trustDescriptionGlow 5s ease-in-out infinite;
}

@keyframes trustPlusFloat {
  0% {
    transform: translateY(0px) rotate(0deg);
  }
  25% {
    transform: translateY(-3px) rotate(5deg);
  }
  50% {
    transform: translateY(0px) rotate(0deg);
  }
  75% {
    transform: translateY(-2px) rotate(-3deg);
  }
  100% {
    transform: translateY(0px) rotate(0deg);
  }
}

@keyframes trustNumberPulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.05);
    opacity: 0.9;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes trustDescriptionGlow {
  0% {
    opacity: 0.8;
    text-shadow: 0 0 0px transparent;
  }
  50% {
    opacity: 1;
    text-shadow: 0 0 8px rgba(var(--color-accent-rgb), 0.3);
  }
  100% {
    opacity: 0.8;
    text-shadow: 0 0 0px transparent;
  }
}

/* Standardize all Lucide icons stroke thickness */
[data-lucide] {
  stroke-width: 2.4 !important;
}

.feature-icon [data-lucide] {
  stroke-width: 2.4 !important;
}

.step-icon[data-lucide] {
  stroke-width: 2.4 !important;
}

/* Force stroke thickness on ALL icons everywhere */
svg {
  stroke-width: 2.4 !important;
}

svg * {
  stroke-width: 2.4 !important;
}

/* Specific overrides for different icon types */
i[data-lucide] {
  stroke-width: 2.4 !important;
}

.bento-card i[data-lucide] {
  stroke-width: 2.4 !important;
}

.process-card i[data-lucide] {
  stroke-width: 2.4 !important;
}

.step-icon {
  stroke-width: 2.4 !important;
}

.feature-icon {
  stroke-width: 2.4 !important;
}

/* Override any inline styles */
[stroke-width]:not([stroke-width="2.4"]) {
  stroke-width: 2.4 !important;
}

/* Updated icon animations with 1 second pause */

/* Monitor Check Icon - with pause */
@keyframes drawCheckmarkPause {
  0% {
    stroke-dashoffset: 100;
    opacity: 0;
  }
  15% {
    opacity: 1;
  }
  30% {
    stroke-dashoffset: 0;
    opacity: 1;
  }
  45% {
    stroke-dashoffset: 0;
    opacity: 1;
  }
  50% {
    stroke-dashoffset: -100;
    opacity: 0;
  }
  50%, 100% {
    stroke-dashoffset: -100;
    opacity: 0;
  }
}

/* Smartphone Charging Icon - with pause */
@keyframes chargingPulsePause {
  0% {
    opacity: 0.3;
  }
  25% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
  50%, 100% {
    opacity: 0.3;
  }
}

/* Activity Icon - with pause */
@keyframes activitySquarePause {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  25% {
    transform: scale(1.05);
    opacity: 0.8;
  }
  50% {
    transform: scale(1);
    opacity: 1;
  }
  50%, 100% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes activityPathPause {
  0% {
    stroke-dashoffset: 30;
    opacity: 0;
  }
  15% {
    opacity: 1;
  }
  30% {
    stroke-dashoffset: 0;
    opacity: 1;
  }
  45% {
    stroke-dashoffset: -30;
    opacity: 0;
  }
  45%, 100% {
    stroke-dashoffset: -30;
    opacity: 0;
  }
}

/* Heart Icon - with pause */
@keyframes heartBeatPause {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  10% {
    transform: scale(1.1);
    opacity: 0.8;
  }
  20% {
    transform: scale(1);
    opacity: 1;
  }
  30% {
    transform: scale(1.05);
    opacity: 0.9;
  }
  40% {
    transform: scale(1);
    opacity: 1;
  }
  40%, 100% {
    transform: scale(1);
    opacity: 1;
  }
}

/* Calendar animations - with pause */
@keyframes calendarCheckPause {
  0% {
    stroke-dashoffset: 10;
    opacity: 0;
  }
  15% {
    opacity: 1;
  }
  30% {
    stroke-dashoffset: 0;
    opacity: 1;
  }
  45% {
    stroke-dashoffset: 0;
    opacity: 1;
  }
  50% {
    stroke-dashoffset: -10;
    opacity: 0;
  }
  50%, 100% {
    stroke-dashoffset: -10;
    opacity: 0;
  }
}

/* Arrow animations - with pause */
@keyframes arrowLineAnimationPause {
  0% {
    stroke-dashoffset: 9;
    opacity: 0;
  }
  15% {
    opacity: 1;
  }
  30% {
    stroke-dashoffset: 0;
    opacity: 1;
  }
  45% {
    stroke-dashoffset: -9;
    opacity: 0;
  }
  45%, 100% {
    stroke-dashoffset: -9;
    opacity: 0;
  }
}

@keyframes arrowHeadAnimationPause {
  0% {
    transform: translateX(0) scale(1);
    opacity: 0.7;
  }
  25% {
    transform: translateX(2px) scale(1.1);
    opacity: 1;
  }
  50% {
    transform: translateX(0) scale(1);
    opacity: 0.7;
  }
  50%, 100% {
    transform: translateX(0) scale(1);
    opacity: 0.7;
  }
}


/* Apply paused animations to icon classes */
.monitor-check-icon-animated .monitor-checkmark {
  animation: drawCheckmarkPause 4s ease-in-out infinite !important;
}

.smartphone-charging-icon-animated .charging-bolt {
  animation: chargingPulsePause 3s ease-in-out infinite !important;
}

.activity-icon-animated .activity-square {
  animation: activitySquarePause 4s ease-in-out infinite !important;
}

.activity-icon-animated .activity-path {
  animation: activityPathPause 4s ease-in-out infinite !important;
}

.heart-icon-animated .heart-path {
  animation: heartBeatPause 4s ease-in-out infinite !important;
}

.calendar-check-infinite {
  animation: calendarCheckPause 4s ease-in-out infinite !important;
}

.arrow-line {
  animation: arrowLineAnimationPause 3s ease-in-out infinite !important;
}

.arrow-head {
  animation: arrowHeadAnimationPause 3s ease-in-out infinite !important;
}


/* Updated trust text animation - +250 together and bigger */
.trust-number-group {
  display: inline-block;
  animation: trustNumberGroupFloat 4s ease-in-out infinite;
  font-weight: 700;
  font-size: 1.4em; /* Bigger size */
  color: var(--color-accent);
}

.trust-description {
  display: inline-block;
  animation: trustDescriptionGlow 5s ease-in-out infinite !important;
  margin-left: 8px;
}

@keyframes trustNumberGroupFloat {
  0% {
    transform: translateY(0px) scale(1);
  }
  25% {
    transform: translateY(-4px) scale(1.02);
  }
  50% {
    transform: translateY(0px) scale(1);
  }
  75% {
    transform: translateY(-2px) scale(1.01);
  }
  100% {
    transform: translateY(0px) scale(1);
  }
}


/* Layers Icon Animation */
.layers-icon-animated .layer-1 {
  stroke-width: 2.4;
  stroke-dasharray: 30;
  stroke-dashoffset: 30;
  animation: layerDraw1 4s ease-in-out infinite;
}

.layers-icon-animated .layer-2 {
  stroke-width: 2.4;
  stroke-dasharray: 25;
  stroke-dashoffset: 25;
  animation: layerDraw2 4s ease-in-out infinite;
  animation-delay: 0.5s;
}

.layers-icon-animated .layer-3 {
  stroke-width: 2.4;
  stroke-dasharray: 25;
  stroke-dashoffset: 25;
  animation: layerDraw3 4s ease-in-out infinite;
  animation-delay: 1s;
}

@keyframes layerDraw1 {
  0% {
    stroke-dashoffset: 30;
    opacity: 0;
  }
  15% {
    opacity: 1;
  }
  30% {
    stroke-dashoffset: 0;
    opacity: 1;
  }
  50% {
    stroke-dashoffset: 0;
    opacity: 1;
  }
  50%, 100% {
    stroke-dashoffset: 0;
    opacity: 1;
  }
}

@keyframes layerDraw2 {
  0% {
    stroke-dashoffset: 25;
    opacity: 0;
  }
  15% {
    opacity: 1;
  }
  30% {
    stroke-dashoffset: 0;
    opacity: 1;
  }
  50% {
    stroke-dashoffset: 0;
    opacity: 1;
  }
  50%, 100% {
    stroke-dashoffset: 0;
    opacity: 1;
  }
}

@keyframes layerDraw3 {
  0% {
    stroke-dashoffset: 25;
    opacity: 0;
  }
  15% {
    opacity: 1;
  }
  30% {
    stroke-dashoffset: 0;
    opacity: 1;
  }
  50% {
    stroke-dashoffset: 0;
    opacity: 1;
  }
  50%, 100% {
    stroke-dashoffset: 0;
    opacity: 1;
  }
}

/* Remove invisible limits for all animated icons */
.feature-icon,
.step-icon,
.earth-icon-animated,
.calendar-icon-animated,
.calendar-hero-icon-animated,
.monitor-check-icon-animated,
.smartphone-charging-icon-animated,
.activity-icon-animated,
.heart-icon-animated,
.store-icon-animated,
.users-icon-animated,
.cart-icon-animated,
.layers-icon-animated,
.arrow-icon-animated {
  overflow: visible !important;
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

.feature-icon svg,
.step-icon svg,
.earth-icon-animated svg,
.calendar-icon-animated svg,
.calendar-hero-icon-animated svg,
.monitor-check-icon-animated svg,
.smartphone-charging-icon-animated svg,
.activity-icon-animated svg,
.heart-icon-animated svg,
.store-icon-animated svg,
.users-icon-animated svg,
.cart-icon-animated svg,
.layers-icon-animated svg,
.arrow-icon-animated svg {
  overflow: visible !important;
  background: transparent !important;
}

/* Fix star boundaries - prevent cutting off stars */
.bento-card {
  overflow: visible !important;
  position: relative;
}

.bento-card.selected {
  overflow: visible !important;
}

.feature-content {
  overflow: visible !important;
}

.feature-icon {
  overflow: visible !important;
  position: relative;
}

/* Add padding to level sections to accommodate stars */
.level-section {
  padding-top: 25px !important;
  padding-bottom: 25px !important;
}

.carousel-container {
  overflow: visible !important;
  padding: 20px 0 !important;
}

.carousel-track {
  overflow: visible !important;
  padding: 15px 0 !important;
}

/* Ensure stars have enough space above and below */
.bento-card.selected::before {
  top: -20px !important; /* More space above */
}

.bento-card.selected::after {
  bottom: -20px !important; /* More space below */
}

/* Add extra space to containers that might clip stars */
.services-container {
  overflow: visible !important;
  padding: 20px 0 !important;
}

.level-carousel {
  overflow: visible !important;
  padding: 4px 0 !important;
}

/* Ensure parent containers don't clip */
.features {
  overflow: visible !important;
}

.features .container {
  overflow: visible !important;
}

/* Premium icon standardization and animations */
.feature-icon {
  width: 36px !important;
  height: 36px !important;
  margin-bottom: 8px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: transparent !important;
  overflow: visible !important;
}

.feature-icon svg,
.feature-icon div svg {
  width: 20px !important;
  height: 20px !important;
  stroke-width: 2.4 !important;
}

/* Premium Earth Icon Animation - Exact replica from your code */
.earth-icon-premium .earth-circle {
  stroke-width: 2.4;
  stroke-dasharray: 63;
  stroke-dashoffset: 63;
  animation: earthCircleDraw 4s ease-in-out infinite;
  animation-delay: 0.1s;
}

.earth-icon-premium .earth-path-1 {
  stroke-width: 2.4;
  stroke-dasharray: 15;
  stroke-dashoffset: 15;
  animation: earthPathDraw1 4s ease-in-out infinite;
  animation-delay: 0.6s;
}

.earth-icon-premium .earth-path-2 {
  stroke-width: 2.4;
  stroke-dasharray: 25;
  stroke-dashoffset: 25;
  animation: earthPathDraw2 4s ease-in-out infinite;
  animation-delay: 0.6s;
}

/* Layout Icon Animation - Landing Page */
.layout-icon-animated .layout-frame {
  stroke-width: 2.4;
  stroke-dasharray: 72;
  stroke-dashoffset: 72;
  animation: layoutFrameDraw 4s ease-in-out infinite;
  animation-delay: 0.2s;
}

.layout-icon-animated .layout-divider {
  stroke-width: 2.4;
  stroke-dasharray: 18;
  stroke-dashoffset: 18;
  animation: layoutDividerDraw 4s ease-in-out infinite;
  animation-delay: 0.8s;
}

.layout-icon-animated .layout-content {
  stroke-width: 2.4;
  stroke-dasharray: 12;
  stroke-dashoffset: 12;
  animation: layoutContentDraw 4s ease-in-out infinite;
  animation-delay: 1.2s;
}

@keyframes layoutFrameDraw {
  0% {
    stroke-dashoffset: 72;
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  100% {
    stroke-dashoffset: 0;
    opacity: 1;
  }
}

@keyframes layoutDividerDraw {
  0% {
    stroke-dashoffset: 18;
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  100% {
    stroke-dashoffset: 0;
    opacity: 1;
  }
}

@keyframes layoutContentDraw {
  0% {
    stroke-dashoffset: 12;
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
  100% {
    stroke-dashoffset: 0;
    opacity: 1;
  }
}

/* Blocks Icon Animation - Pure movement animation */
.blocks-icon-animated .blocks-base {
  stroke-width: 2.4;
}

.blocks-icon-animated .blocks-moving {
  stroke-width: 2.4;
  animation: blocksMoving 2s ease-in-out infinite;
}

@keyframes blocksMoving {
  0% {
    transform: translateX(0px) translateY(0px);
  }
  50% {
    transform: translateX(-4px) translateY(4px);
  }
  100% {
    transform: translateX(0px) translateY(0px);
  }
}

/* Clap Icon Animation - Pure rotation animation */
.clap-icon-animated .clap-outer-group {
  transform-origin: 4px 20px;
  animation: clapOuterRotate 2s ease-in-out infinite;
}

.clap-icon-animated .clap-inner-group {
  transform-origin: 3px 11px;
  animation: clapInnerRotate 2s ease-in-out infinite;
}

.clap-icon-animated .clap-board,
.clap-icon-animated .clap-line1,
.clap-icon-animated .clap-line2,
.clap-icon-animated .clap-base {
  stroke-width: 2.4;
}

@keyframes clapOuterRotate {
  0% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(-10deg);
  }
  75% {
    transform: rotate(-10deg);
  }
  100% {
    transform: rotate(0deg);
  }
}

@keyframes clapInnerRotate {
  0% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(-10deg);
  }
  50% {
    transform: rotate(16deg);
  }
  100% {
    transform: rotate(0deg);
  }
}

.earth-icon-premium .earth-path-3 {
  stroke-width: 2.4;
  stroke-dasharray: 20;
  stroke-dashoffset: 20;
  animation: earthPathDraw3 4s ease-in-out infinite;
  animation-delay: 0.6s;
}

@keyframes earthCircleDraw {
  0% {
    stroke-dashoffset: 63;
    opacity: 0;
  }
  15% {
    opacity: 1;
  }
  30% {
    stroke-dashoffset: 0;
    opacity: 1;
  }
  100% {
    stroke-dashoffset: 0;
    opacity: 1;
  }
}

@keyframes earthPathDraw1 {
  0% {
    stroke-dashoffset: 15;
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  40% {
    stroke-dashoffset: 0;
    opacity: 1;
  }
  100% {
    stroke-dashoffset: 0;
    opacity: 1;
  }
}

@keyframes earthPathDraw2 {
  0% {
    stroke-dashoffset: 25;
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  40% {
    stroke-dashoffset: 0;
    opacity: 1;
  }
  100% {
    stroke-dashoffset: 0;
    opacity: 1;
  }
}

@keyframes earthPathDraw3 {
  0% {
    stroke-dashoffset: 20;
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  40% {
    stroke-dashoffset: 0;
    opacity: 1;
  }
  100% {
    stroke-dashoffset: 0;
    opacity: 1;
  }
}

/* Improved Layers Animation - more premium */
.layers-icon-animated .layer-1 {
  stroke-width: 2.4;
  stroke-dasharray: 35;
  stroke-dashoffset: 35;
  animation: layerDrawPremium1 4s ease-in-out infinite;
}

.layers-icon-animated .layer-2 {
  stroke-width: 2.4;
  stroke-dasharray: 25;
  stroke-dashoffset: 25;
  animation: layerDrawPremium2 4s ease-in-out infinite;
  animation-delay: 0.4s;
}

.layers-icon-animated .layer-3 {
  stroke-width: 2.4;
  stroke-dasharray: 25;
  stroke-dashoffset: 25;
  animation: layerDrawPremium3 4s ease-in-out infinite;
  animation-delay: 0.8s;
}

@keyframes layerDrawPremium1 {
  0% {
    stroke-dashoffset: 35;
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  40% {
    stroke-dashoffset: 0;
    opacity: 1;
  }
  100% {
    stroke-dashoffset: 0;
    opacity: 1;
  }
}

@keyframes layerDrawPremium2 {
  0% {
    stroke-dashoffset: 25;
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  40% {
    stroke-dashoffset: 0;
    opacity: 1;
  }
  100% {
    stroke-dashoffset: 0;
    opacity: 1;
  }
}

@keyframes layerDrawPremium3 {
  0% {
    stroke-dashoffset: 25;
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  40% {
    stroke-dashoffset: 0;
    opacity: 1;
  }
  100% {
    stroke-dashoffset: 0;
    opacity: 1;
  }
}

/* Process Grid Layout */
.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.process-card.modern-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 32px;
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    transition-delay: calc(var(--delay, 0ms));
}

.process-card.modern-card.animate-in {
    transform: translateY(0);
    opacity: 1;
}

.process-card.modern-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.process-card.modern-card .process-step {
    display: inline-block;
    background: linear-gradient(135deg, #FF6B35, #FF8E53);
    color: white;
    font-size: 14px;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 20px;
    margin-bottom: 20px;
    font-family: var(--font-display);
}

.process-card.modern-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: white;
    margin-bottom: 12px;
    font-family: var(--font-display);
    line-height: 1.3;
}

.process-card.modern-card p {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    font-family: var(--font-sans);
}

.process-card.modern-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.5), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.process-card.modern-card:hover::before {
    opacity: 1;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .process-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 20px;
    }

    .process-card.modern-card {
        padding: 24px;
    }

    .process-card.modern-card h3 {
        font-size: 18px;
    }
}

/* Step number corner styles */
.step-number-corner {
  position: absolute;
  top: 16px;
  right: 16px;
  background: linear-gradient(135deg, #FF6B35 0%, #E64100 100%) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  filter: brightness(1.2) contrast(1.1) !important;
  width: auto;
  height: auto;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 56px;
  font-weight: 900;
  z-index: 10;
  box-shadow: none;
  opacity: 1 !important;
}

/* Step icon corner styles */
.step-icon-corner {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(var(--color-accent-rgb), 0.1);
  color: var(--color-accent);
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

/* Align text left in process cards */
.process-card-header {
  text-align: left !important;
}

.process-card-content {
  text-align: left !important;
  margin-top: 80px;
}

.step-info {
  text-align: left !important;
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 5;
}

.step-title {
  text-align: left !important;
}

.step-subtitle {
  text-align: left !important;
}

.step-duration {
  text-align: left !important;
}

.step-description {
  text-align: left !important;
}

.step-description p {
  text-align: left !important;
  margin-left: 0 !important;
  padding-left: 0 !important;
}

.process-card p {
  text-align: left !important;
}

/* Force process cards descriptions to be completely left-aligned */
.process-card .step-description,
.process-card .step-description p {
  text-align: left !important;
  margin-left: 0 !important;
  padding-left: 0 !important;
  position: relative;
  left: 0 !important;
}

.process-card .process-card-content {
  text-align: left !important;
  padding-left: 20px !important;
}

/* Increased border-radius for Platform Type, App Type, and Extra Services carousel cards */
[data-level="1"] .bento-card,
[data-level="2"] .bento-card,
[data-level="3"] .bento-card {
  border-radius: 32px !important;
}


/* ===================================
   Process Visual Elements Styles
   =================================== */

/* Process Visual Container - Base */
.process-visual-container {
  position: relative;
  width: 100%;
  margin-top: 24px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

/* Process Visual Image */
.process-visual-image {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

/* Dashboard View Styles */
.dashboard-view {
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.05), rgba(230, 65, 0, 0.05));
  backdrop-filter: blur(10px);
  padding: 24px;
  min-height: 280px;
}

.dashboard-header {
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.dashboard-title {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
}

.dashboard-tasks {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.task-item {
  display: flex;
  gap: 16px;
  padding: 20px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.3s ease;
}

.task-item:hover {
  background: rgba(0, 0, 0, 0.4);
  border-color: rgba(0, 212, 255, 0.3);
  transform: translateY(-2px);
}

.task-icon {
  flex-shrink: 0;
  display: flex;
  align-items: flex-start;
  padding-top: 4px;
}

.task-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.task-name {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  line-height: 1.4;
}

.task-meta {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.5;
}

.task-progress {
  margin-top: 8px;
}

.progress-bar {
  width: 100%;
  height: 8px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 6px;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #00D4FF, #00A8CC);
  border-radius: 4px;
  transition: width 1s ease-out;
  box-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

.progress-label {
  font-size: 12px;
  font-weight: 600;
  color: #00D4FF;
  letter-spacing: 0.02em;
}

.task-add {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  border: 1px dashed rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.task-add:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.7);
}

/* Tech Stack Styles */
.tech-stack {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.2));
  padding: 32px;
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tech-logo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  width: 100%;
  max-width: 500px;
}

.tech-logo {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.tech-logo:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(0, 212, 255, 0.4);
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 12px 40px rgba(0, 212, 255, 0.2);
}

.tech-logo svg text {
  transition: fill 0.3s ease;
}

.tech-logo:hover svg text {
  fill: #00D4FF;
}

/* Collaboration Panel Styles */
.collaboration-panel {
  background: linear-gradient(135deg, rgba(230, 65, 0, 0.1), rgba(230, 65, 0, 0.05));
  padding: 40px;
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.collaboration-button {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: rgba(0, 0, 0, 0.4);
  border: 2px solid #E64100;
  border-radius: 12px;
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 16px rgba(230, 65, 0, 0.3);
}

.collaboration-button:hover {
  background: rgba(230, 65, 0, 0.2);
  border-color: #ff7b3d;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(230, 65, 0, 0.5);
}

.collaboration-button svg {
  flex-shrink: 0;
}

/* Update step-number-corner to support text labels */
.step-number-corner {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--color-accent);
  color: white;
  min-width: 80px;
  height: 32px;
  padding: 0 16px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  z-index: 10;
  box-shadow: 0 4px 12px rgba(230, 65, 0, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .tech-logo-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .dashboard-view {
    padding: 16px;
  }
  
  .task-item {
    padding: 16px;
  }
  
  .collaboration-panel {
    padding: 24px;
  }
  
  .process-visual-container {
    padding: 16px;
  }
}

/* Animation for process visual elements */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.process-visual-container {
  animation: fadeInUp 0.6s ease-out forwards;
  animation-delay: 0.3s;
  opacity: 0;
}

.process-card.visible .process-visual-container {
  animation-play-state: running;
}

/* ===================================
   Simple Process Cards - New Format
   =================================== */

.step-info {
  text-align: left !important;
  position: absolute !important;
  padding: 0 !important;
  width: auto !important;
  top: 30px !important;
  left: 30px !important;
  max-width: 60% !important;
}

.step-number-corner {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, #FFD4B3 0%, #FF9D6B 35%, #E64100 70%, #B52D00 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  font-size: 72px;
  font-weight: 800;
  line-height: 1;
  z-index: 1;
  opacity: 0.45;
  letter-spacing: -0.05em;
  box-shadow: none;
  width: auto;
  height: auto;
  min-width: auto;
  padding: 0;
  border-radius: 0;
}

.step-title {
  font-size: 22px !important;
  font-weight: 600 !important;
  color: #000000 !important;
  background: none !important;
  -webkit-text-fill-color: #000000 !important;
  margin: 0 0 6px 0 !important;
  padding-left: 0 !important;
  line-height: 1.3 !important;
  letter-spacing: -0.02em !important;
  text-align: left !important;
}

.step-subtitle {
  font-size: 13px !important;
  background: linear-gradient(135deg, #FF8A50 0%, #E64100 100%) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  margin: 0 0 12px 0 !important;
  padding-left: 0 !important;
  line-height: 1.4 !important;
  font-weight: 500 !important;
  text-align: left !important;
}

.step-description {
  font-size: 13px !important;
  color: #666666 !important;
  line-height: 1.6 !important;
  margin: 0 !important;
  padding-left: 0 !important;
  font-weight: 400 !important;
  text-align: left !important;
  max-width: 280px !important;
}

.process-card-inner {
  background: white;
  border: 1px solid #e5e5e5;
  border-radius: 16px;
  padding: 32px;
  position: relative;
  min-height: 200px;
}

/* Remove visual containers */
.process-card-content,
.process-visual-container {
  display: none;
}

/* Adjust spacing */
.process-cards-container {
  padding: 40px 0;
}

@media (max-width: 768px) {
  .step-number-corner {
    font-size: 56px;
    top: 16px;
    right: 16px;
  }

  .step-title {
    font-size: 24px;
  }

  .step-subtitle {
    font-size: 14px;
  }

  .step-description {
    font-size: 14px;
  }

  .process-card-inner {
    padding: 24px;
    min-height: 160px;
  }

  .process-card-row::after {
    display: none !important;
  }

  .process-card-row.active::after {
    display: none !important;
  }

  .process-bullet {
    display: none !important;
  }

  .process-bullet.active {
    display: none !important;
  }
}

/* Work Card Modal Popup */
.work-card-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.work-card-modal.active {
  opacity: 1;
  pointer-events: all;
}

.work-card-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.work-card-modal-content {
  position: relative;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 24px;
  padding: 48px 40px;
  max-width: 500px;
  width: 90%;
  box-shadow:
    0 32px 80px rgba(0, 0, 0, 0.15),
    0 16px 40px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.3);
  z-index: 1;
  animation: modalSlideIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes modalSlideIn {
  0% {
    transform: translateY(40px) scale(0.95);
    opacity: 0;
  }
  100% {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}

.work-card-modal-content p {
  margin: 0;
  font-size: 18px;
  line-height: 1.6;
  color: #1a1a1a;
  text-align: center;
  font-weight: 400;
}

.work-card-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: transparent;
  border: none;
  font-size: 32px;
  color: #999;
  cursor: pointer;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.2s ease;
  line-height: 1;
  padding: 0;
}

.work-card-modal-close:hover {
  background: rgba(0, 0, 0, 0.05);
  color: #1a1a1a;
  transform: rotate(90deg);
}

.work-card {
  cursor: pointer;
  transition: all 0.3s ease;
}

.work-card:hover {
  cursor: pointer;
}

/* Mobile Hero Actions - 3 buttons side by side */
@media (max-width: 768px) {
  .hero-actions {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    gap: 8px !important;
    justify-content: space-between !important;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .hero-actions .btn {
    flex: 1 1 30% !important;
    min-width: 0 !important;
    padding: 10px 8px !important;
    font-size: 13px !important;
    white-space: nowrap;
    text-align: center;
  }

  .hero-actions .btn span {
    font-size: 12px !important;
  }

  .hero-actions .btn svg,
  .hero-actions .btn .whatsapp-icon-animated,
  .hero-actions .btn .arrow-icon-animated {
    display: none !important; /* Hide icons on mobile for more space */
  }
}

@media (max-width: 480px) {
  .hero-actions {
    gap: 6px !important;
  }

  .hero-actions .btn {
    padding: 8px 6px !important;
    font-size: 11px !important;
  }

  .hero-actions .btn span {
    font-size: 11px !important;
  }
}

