:root {
  /* סכמת צבעים חדשה - יותר צבעונית ומודרנית */
  --primary: #4f46e5;     /* סגול-כחול עשיר */
  --primary-light: #818cf8; /* גרסה בהירה של הצבע הראשי */
  --secondary: #f97316;   /* כתום חם ובולט */
  --accent: #10b981;      /* ירוק טורקיז */
  --accent-light: #6ee7b7; /* ירוק בהיר */
  --success: #22c55e;     /* ירוק בהיר */
  --warning: #eab308;     /* צהוב */
  --error: #ef4444;       /* אדום */
  
  /* צבעי ניטרלי מודרניים */
  --dark: #1e293b;
  --gray-dark: #334155;
  --gray-medium: #94a3b8;
  --gray-light: #e2e8f0;
  --light: #f8fafc;
  --white: #ffffff;
  
  /* גרדיאנטים מודרניים */
  --gradient-primary: linear-gradient(135deg, var(--primary) 0%, #818cf8 100%);
  --gradient-secondary: linear-gradient(135deg, var(--secondary) 0%, #fb923c 100%);
  --gradient-accent: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
  --gradient-dark: linear-gradient(135deg, var(--dark) 0%, #475569 100%);

  /* צללים משודרגים */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1), 0 2px 4px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.05);
  --shadow-inner: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06);
  --shadow-colored: 0 10px 15px -3px var(--primary-light), 0 4px 6px -4px var(--primary-light);
  
  /* פונטים משופרים */
  --font-base: 'Heebo', sans-serif;
  --font-heading: 'Heebo', sans-serif;
}

/* עיצובים בסיסיים משודרגים */
body {
  font-family: var(--font-base);
  background-color: var(--light);
  color: var(--dark);
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
}

h1 {
  font-size: 3.5rem;
  font-weight: 900;
  letter-spacing: -0.02em;
}

h2 {
  font-size: 2.5rem;
  letter-spacing: -0.01em;
}

/* עיצובים מודרניים לרכיבים */

/* כפתורים מודרניים */
.primary-button, .secondary-button {
  border-radius: 12px;
  font-weight: 700;
  padding: 0.875rem 2rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: var(--shadow-md);
}

.primary-button {
  background: var(--gradient-primary);
  color: white;
  border: none;
}

.primary-button:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.primary-button::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.1);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.5s ease;
}

.primary-button:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.secondary-button {
  background-color: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.secondary-button:hover {
  background-color: rgba(79, 70, 229, 0.1);
  transform: translateY(-2px);
}

/* כרטיסים מודרניים */
.card {
  background-color: var(--white);
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

/* מעברים הדרגתיים */
.section-transition {
  position: relative;
  padding: 8rem 0;
  overflow: hidden;
}

.section-transition::before, 
.section-transition::after {
  content: "";
  position: absolute;
  width: 200%;
  height: 200%;
  top: -50%;
  left: -50%;
  z-index: -1;
  background: var(--gradient-primary);
  transform: rotate(-3deg);
  transform-origin: center;
}

/* אלמנטים ויזואליים */
.visual-element {
  position: relative;
  width: 100%;
  height: 400px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

/* עיצוב לאלמנטים גרפיים מודרניים */
.graphic-container {
  position: relative;
  width: 100%;
  height: 400px;
  border-radius: 24px;
  overflow: hidden;
  background: var(--gradient-primary);
  display: flex;
  justify-content: center;
  align-items: center;
}

.graphic-gradient {
  position: absolute;
  width: 100%;
  height: 100%;
  mix-blend-mode: soft-light;
  opacity: 0.8;
  background: radial-gradient(circle, rgba(255,255,255,0.8) 0%, rgba(255,255,255,0) 70%);
}

.graphic-circles {
  position: absolute;
  width: 100%;
  height: 100%;
}

.circle {
  position: absolute;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
}

.circle-1 {
  width: 300px;
  height: 300px;
  top: -100px;
  left: -100px;
  background: radial-gradient(circle, var(--primary-light) 0%, rgba(255,255,255,0) 70%);
}

.circle-2 {
  width: 200px;
  height: 200px;
  bottom: -50px;
  right: 20px;
  background: radial-gradient(circle, var(--secondary) 0%, rgba(255,255,255,0) 70%);
  opacity: 0.5;
}

.circle-3 {
  width: 150px;
  height: 150px;
  top: 50px;
  right: 30%;
  background: radial-gradient(circle, var(--accent) 0%, rgba(255,255,255,0) 70%);
  opacity: 0.7;
}

/* אנימציות */
@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
  100% { transform: translateY(0px); }
}

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

@keyframes wave {
  0% { transform: translateX(0); }
  50% { transform: translateX(-25%); }
  100% { transform: translateX(0); }
}

.float {
  animation: float 6s ease-in-out infinite;
}

.pulse {
  animation: pulse 3s ease-in-out infinite;
}

/* עיצוב הירו מודרני */
.hero-modern {
  position: relative;
  padding: 8rem 0 6rem;
  background-color: var(--light);
  overflow: hidden;
}

.hero-modern.enhanced {
  background: linear-gradient(135deg, rgba(79, 70, 229, 0.08) 0%, rgba(16, 185, 129, 0.08) 100%);
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(79, 70, 229, 0.1) 0%, rgba(16, 185, 129, 0.1) 100%);
  z-index: -1;
}

.hero-background.enhanced {
  background: url('../images/dots-pattern.png'), linear-gradient(135deg, rgba(79, 70, 229, 0.05) 0%, rgba(16, 185, 129, 0.05) 100%);
  background-size: 30px 30px, cover;
  opacity: 0.8;
}

.hero-shapes {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  overflow: hidden;
}

.hero-shape {
  position: absolute;
  border-radius: 50%;
}

.shape-1 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--primary-light) 0%, rgba(129, 140, 248, 0) 70%);
  top: -200px;
  right: -100px;
  opacity: 0.5;
}

.shape-2 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, var(--secondary) 0%, rgba(249, 115, 22, 0) 70%);
  bottom: -100px;
  left: 15%;
  opacity: 0.4;
}

.shape-3 {
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, var(--accent-light) 0%, rgba(110, 231, 183, 0) 70%);
  top: 20%;
  left: -50px;
  opacity: 0.6;
}

.hero-content-modern {
  position: relative;
  display: flex;
  align-items: center;
  gap: 4rem;
  z-index: 1;
}

.hero-description {
  font-size: 1.2rem;
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 550px;
}

.hero-description strong {
  color: var(--primary);
}

/* Price Tag */
.price-tag {
  display: inline-block;
  position: relative;
  background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
  border-radius: 50px;
  padding: 0.5rem 1.5rem;
  color: white;
  margin: 1rem 0 2rem;
  box-shadow: 0 10px 15px -3px rgba(249, 115, 22, 0.3);
}

.price-tag::before {
  content: '';
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  background: inherit;
  border-radius: inherit;
  filter: blur(10px);
  opacity: 0.7;
  z-index: -1;
}

.price-tag-content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.old-price {
  text-decoration: line-through;
  opacity: 0.7;
  font-size: 1.1rem;
}

.current-price {
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
}

.price-description {
  font-size: 0.9rem;
  opacity: 0.9;
}

/* Trust Indicators */
.trust-indicators {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background-color: rgba(255, 255, 255, 0.2);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  backdrop-filter: blur(5px);
  font-size: 0.9rem;
}

.trust-item i {
  color: var(--accent);
}

.trust-item a {
  color: inherit;
  text-decoration: underline;
}

/* Wave Divider */
.wave-divider {
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  line-height: 0;
  z-index: 2;
}

.wave-divider svg {
  display: block;
  width: 100%;
  height: auto;
}

.wave-divider-bottom {
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  line-height: 0;
  z-index: 2;
}

.wave-divider-bottom svg {
  display: block;
  width: 100%;
  height: auto;
}

/* Visual Mockup */
.visual-wrapper {
  position: relative;
  padding: 2rem;
}

.device-mockup {
  position: relative;
  background: linear-gradient(135deg, #2d3748 0%, #1a202c 100%);
  border-radius: 40px;
  padding: 15px;
  box-shadow: 
    0 25px 50px -12px rgba(0, 0, 0, 0.25),
    0 0 0 2px rgba(255, 255, 255, 0.1) inset;
  max-width: 350px;
  margin: 0 auto;
  overflow: hidden;
}

.device-screen {
  background-color: #f8fafc;
  border-radius: 30px;
  overflow: hidden;
  position: relative;
}

.screen-content {
  height: 500px;
  position: relative;
}

.mockup-header {
  height: 60px;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 15px;
}

.mockup-header::before {
  content: '';
  width: 30%;
  height: 20px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 4px;
}

.mockup-header::after {
  content: '';
  display: flex;
  gap: 10px;
}

.mockup-hero {
  height: 200px;
  background: linear-gradient(135deg, rgba(79, 70, 229, 0.1) 0%, rgba(16, 185, 129, 0.1) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.mockup-hero::before {
  content: '';
  position: absolute;
  width: 60%;
  height: 30px;
  background: rgba(79, 70, 229, 0.7);
  border-radius: 8px;
  top: 30%;
  right: 10%;
}

.mockup-hero::after {
  content: '';
  position: absolute;
  width: 40%;
  height: 40px;
  background: var(--primary);
  border-radius: 8px;
  bottom: 30%;
  right: 10%;
}

.mockup-features {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.mockup-feature {
  height: 70px;
  background: #e2e8f0;
  border-radius: 12px;
  position: relative;
}

.mockup-feature::before {
  content: '';
  position: absolute;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--accent-light);
  right: 15px;
  top: 15px;
}

.mockup-feature::after {
  content: '';
  position: absolute;
  width: 60%;
  height: 15px;
  background: #cbd5e1;
  border-radius: 4px;
  right: 70px;
  top: 18px;
}

.device-notch {
  position: absolute;
  width: 40%;
  height: 25px;
  background: #000;
  border-radius: 0 0 15px 15px;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.device-buttons {
  position: absolute;
  width: 5px;
  height: 60px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  right: -2px;
  top: 100px;
}

.device-buttons::before {
  content: '';
  position: absolute;
  width: 5px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  left: 0;
  top: 80px;
}

.device-reflection {
  position: absolute;
  width: 80%;
  height: 40%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 100%);
  border-radius: 40% 60% 70% 30% / 30% 30% 70% 70%;
  top: 5%;
  left: 10%;
  transform: rotate(-15deg);
  pointer-events: none;
}

.visual-decoration {
  position: absolute;
}

/* Floating Dots */
.floating-dots {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(rgba(79, 70, 229, 0.3) 1px, transparent 1px), radial-gradient(rgba(16, 185, 129, 0.2) 1px, transparent 1px);
  background-size: 50px 50px;
  background-position: 0 0, 25px 25px;
  animation: floatingDots 15s linear infinite alternate;
}

@keyframes floatingDots {
  0% {
    background-position: 0 0, 25px 25px;
  }
  100% {
    background-position: 50px 50px, 75px 75px;
  }
}

/* אייקונים מודרניים */
.modern-icon-container {
  position: relative;
  display: inline-block;
  width: 80px;
  height: 80px;
  border-radius: 24px;
  overflow: hidden;
  background: var(--gradient-primary);
  box-shadow: var(--shadow-md);
}

.modern-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 2rem;
}

/* רשימות מודרניות */
.modern-list {
  list-style: none;
  padding: 0;
}

.modern-list li {
  position: relative;
  padding-right: 2rem;
  margin-bottom: 1rem;
}

.modern-list li:before {
  content: '';
  position: absolute;
  width: 1.25rem;
  height: 1.25rem;
  right: 0;
  top: 0.25rem;
  background-color: var(--accent-light);
  border-radius: 50%;
}

.modern-list li:after {
  content: '✓';
  position: absolute;
  right: 0.29rem;
  top: 0.15rem;
  color: var(--white);
  font-size: 0.75rem;
  font-weight: bold;
}

/* תפריט מודרני */
.main-header-modern {
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
  border-radius: 0 0 20px 20px;
}

/* אדפטציות לגדלי מסך */
@media (max-width: 992px) {
  h1 {
    font-size: 2.75rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  .hero-content-modern {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 2.25rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  .feature-card-modern {
    padding: 1.5rem;
  }
}

@media (max-width: 576px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
}

/* אלמנטים שימושיים נוספים */
.blob-animation {
  position: absolute;
  border-radius: 48% 52% 68% 32% / 42% 28% 72% 58%;
  background: linear-gradient(45deg, var(--primary-light) 0%, var(--accent-light) 100%);
  opacity: 0.15;
  transform-origin: center;
  animation: blob-movement 20s linear infinite alternate;
}

@keyframes blob-movement {
  0% { border-radius: 48% 52% 68% 32% / 42% 28% 72% 58%; }
  25% { border-radius: 58% 42% 52% 48% / 32% 68% 32% 68%; }
  50% { border-radius: 32% 68% 38% 62% / 72% 28% 52% 48%; }
  75% { border-radius: 42% 58% 72% 28% / 38% 62% 38% 62%; }
  100% { border-radius: 48% 52% 68% 32% / 42% 28% 72% 58%; }
}

/* כותרות דינמיות */
.heading-highlight {
  position: relative;
  display: inline-block;
}

.heading-highlight::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 0.3em;
  bottom: 0.1em;
  left: 0;
  background: var(--gradient-accent);
  opacity: 0.3;
  z-index: -1;
  border-radius: 3px;
}

/* Enhanced Visual Elements for Home Page */
.decoration-item {
  position: absolute;
  width: 45px;
  height: 45px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: var(--shadow-md);
  color: var(--primary);
  z-index: 20;
  animation: decorationFloat 5s ease-in-out infinite alternate;
}

@keyframes decorationFloat {
  0% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-10px) rotate(5deg); }
  100% { transform: translateY(0) rotate(0deg); }
}

/* Enhanced Badge */
.badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: linear-gradient(135deg, var(--primary) 20%, var(--secondary) 80%);
  color: white;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.875rem;
  box-shadow: 0 6px 15px -3px rgba(79, 70, 229, 0.5);
  margin-bottom: 1rem;
  position: relative;
  overflow: hidden;
}

.badge::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(transparent, rgba(255, 255, 255, 0.3), transparent);
  transform: rotate(30deg);
  animation: badgeShine 3s linear infinite;
}

@keyframes badgeShine {
  from { transform: translateX(-100%) rotate(30deg); }
  to { transform: translateX(100%) rotate(30deg); }
}

/* Super Highlight Effect */
.super-highlight {
  position: relative;
  color: var(--primary);
  font-weight: 900;
}

.super-highlight::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 40%;
  bottom: 0;
  left: 0;
  background: linear-gradient(to bottom, rgba(79, 70, 229, 0.12), rgba(16, 185, 129, 0.12));
  z-index: -1;
  border-radius: 3px;
  transform: skewX(-5deg) skewY(1deg);
}

/* Feature Cards Enhanced */
.features-grid-enhanced {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.feature-card-enhanced {
  background: white;
  border-radius: 24px;
  padding: 2rem;
  box-shadow: var(--shadow-lg);
  transition: all 0.3s ease;
  border: 1px solid rgba(226, 232, 240, 0.6);
  position: relative;
  overflow: hidden;
  transform: translateY(50px);
  opacity: 0;
}

.feature-card-enhanced.animated {
  transform: translateY(0);
  opacity: 1;
}

.feature-card-enhanced::after {
  content: '';
  position: absolute;
  width: 150%;
  height: 150%;
  top: -90%;
  right: -125%;
  background: linear-gradient(180deg, rgba(79, 70, 229, 0.03) 0%, rgba(16, 185, 129, 0.03) 100%);
  border-radius: 50%;
  z-index: 0;
}

.feature-card-enhanced:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 30px -10px rgba(0, 0, 0, 0.1);
}

.feature-icon-enhanced {
  width: 70px;
  height: 70px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: white;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  background-size: 200% 200%;
  animation: gradientShift 5s ease infinite;
}

.gradient-primary {
  background: var(--gradient-primary);
}

.gradient-secondary {
  background: var(--gradient-secondary);
}

.gradient-accent {
  background: var(--gradient-accent);
}

.gradient-dark {
  background: var(--gradient-dark);
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Unique Approach Section */
.section-mini-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 1rem;
}

.section-icon {
  width: 60px;
  height: 60px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: white;
  background: var(--gradient-primary);
  margin-bottom: 1.5rem;
  box-shadow: 0 10px 15px -3px rgba(79, 70, 229, 0.3);
}

.section-icon-large {
  width: 90px;
  height: 90px;
  border-radius: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: white;
  background: var(--gradient-primary);
  margin-bottom: 2rem;
  box-shadow: 0 15px 25px -5px rgba(79, 70, 229, 0.4);
  position: relative;
  z-index: 1;
}

.section-icon-large::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 28px;
  background: inherit;
  filter: blur(15px);
  opacity: 0.5;
  z-index: -1;
}

.primary-color {
  background: var(--gradient-primary);
}

.secondary-color {
  background: var(--gradient-secondary);
}

.accent-color {
  background: var(--gradient-accent);
}

/* Approach Grid */
.approach-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  margin-top: 4rem;
}

.approach-item {
  background: white;
  border-radius: 24px;
  padding: 2rem;
  box-shadow: var(--shadow-lg);
  position: relative;
  transition: all 0.3s ease;
  border: 1px solid rgba(226, 232, 240, 0.6);
  transform: translateY(50px);
  opacity: 0;
}

.approach-item.animated {
  transform: translateY(0);
  opacity: 1;
}

.approach-item:hover {
  transform: translateY(-10px);
}

.approach-number {
  position: absolute;
  top: -25px;
  right: 20px;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-primary);
  color: white;
  border-radius: 16px;
  font-size: 1.5rem;
  font-weight: 700;
  box-shadow: 0 8px 15px -3px rgba(79, 70, 229, 0.4);
}

.approach-content h3 {
  color: var(--primary);
  margin-bottom: 1rem;
}

/* Services Showcase */
.services-showcase {
  display: flex;
  flex-wrap: wrap;
  gap: 4rem;
  margin-top: 3rem;
  align-items: center;
}

.service-showcase-visual {
  flex: 1;
  flex-basis: 400px;
  transform: translateY(50px);
  opacity: 0;
}

.service-showcase-visual.animated {
  transform: translateY(0);
  opacity: 1;
}

.service-showcase-content {
  flex: 1;
  flex-basis: 400px;
  transform: translateY(50px);
  opacity: 0;
}

.service-showcase-content.animated {
  transform: translateY(0);
  opacity: 1;
}

.showcase-image-container {
  position: relative;
  min-height: 400px;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.showcase-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-primary);
  z-index: 1;
}

.showcase-floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}

.floating-element {
  position: absolute;
  background-color: white;
  padding: 1rem;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  animation: floatElement 6s ease-in-out infinite alternate;
}

.floating-element i {
  color: var(--primary);
  font-size: 1.5rem;
}

@keyframes floatElement {
  0% { transform: translateY(0); }
  100% { transform: translateY(-15px); }
}

/* Value Props */
.value-prop {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
  align-items: flex-start;
}

.value-prop-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  border-radius: 18px;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  flex-shrink: 0;
}

.value-prop-content h3 {
  margin-bottom: 0.5rem;
}

/* Pricing Card */
.pricing-container {
  max-width: 800px;
  margin: 0 auto;
  transform: translateY(50px);
  opacity: 0;
  transition: all 0.6s ease;
}

.pricing-container.animated {
  transform: translateY(0);
  opacity: 1;
}

.pricing-card {
  background: white;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(226, 232, 240, 0.8);
}

.pricing-header {
  padding: 2.5rem 2rem;
  background: linear-gradient(135deg, rgba(79, 70, 229, 0.05) 0%, rgba(16, 185, 129, 0.05) 100%);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
  text-align: center;
}

.pricing-header h3 {
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
  color: var(--primary);
}

.price-badge {
  position: relative;
  display: inline-block;
}

.price-info {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.regular-price {
  font-size: 1.25rem;
  color: var(--gray-medium);
  text-decoration: line-through;
}

.sale-price {
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--primary);
}

.discount-tag {
  position: absolute;
  top: -15px;
  right: -25px;
  background: var(--secondary);
  color: white;
  font-weight: 700;
  padding: 0.3rem 0.75rem;
  border-radius: 20px;
  font-size: 0.875rem;
  transform: rotate(15deg);
  box-shadow: 0 4px 6px rgba(249, 115, 22, 0.3);
}

.pricing-features {
  padding: 2.5rem 2rem;
}

.pricing-feature-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.pricing-feature-item i {
  color: var(--success);
  font-size: 1.25rem;
  flex-shrink: 0;
}

.pricing-feature-item.highlight {
  margin-top: 2rem;
  padding: 1rem;
  background: rgba(16, 185, 129, 0.1);
  border-radius: 12px;
}

.pricing-feature-item.highlight i {
  color: var(--accent);
}

.pricing-cta {
  padding: 0 2rem 2.5rem;
}

.pricing-note {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-top: 3rem;
  background: white;
  padding: 2rem;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(226, 232, 240, 0.8);
  transform: translateY(50px);
  opacity: 0;
  transition: all 0.6s ease;
}

.pricing-note.animated {
  transform: translateY(0);
  opacity: 1;
}

.note-icon {
  font-size: 2rem;
  color: var(--primary);
  flex-shrink: 0;
}

.note-content h4 {
  margin-bottom: 0.5rem;
  color: var(--primary);
}

/* Process Timeline */
.process-timeline {
  position: relative;
  margin: 4rem 0;
}

.timeline-track {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  background: linear-gradient(to bottom, var(--primary) 0%, var(--accent) 100%);
}

.timeline-item {
  display: flex;
  margin-bottom: 5rem;
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.5s ease;
}

.timeline-item.animated {
  opacity: 1;
  transform: translateY(0);
}

.timeline-item:nth-child(odd) {
  padding-right: 50%;
  justify-content: flex-start;
}

.timeline-item:nth-child(even) {
  padding-left: 50%;
  justify-content: flex-end;
}

.timeline-icon {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  z-index: 1;
  box-shadow: 0 0 0 6px white, 0 10px 20px rgba(0, 0, 0, 0.1);
}

.timeline-content {
  background: white;
  padding: 2rem;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(226, 232, 240, 0.8);
  max-width: 90%;
}

.timeline-number {
  position: absolute;
  top: -15px;
  right: 15px;
  background: var(--secondary);
  color: white;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  box-shadow: 0 5px 10px rgba(249, 115, 22, 0.3);
}

.process-note {
  max-width: 800px;
  margin: 3rem auto 0;
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.5s ease;
}

.process-note.animated {
  opacity: 1;
  transform: translateY(0);
}

.process-satisfaction-guarantee {
  display: flex;
  align-items: center;
  gap: 2rem;
  background: white;
  padding: 2rem;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  border-left: 5px solid var(--primary);
}

.guarantee-icon {
  font-size: 2.5rem;
  color: var(--primary);
  flex-shrink: 0;
}

.guarantee-content h4 {
  margin-bottom: 0.5rem;
  color: var(--primary);
}

/* Enhanced Special Offer */
.special-offer.enhanced-offer {
  background: var(--gradient-primary);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.large-blob {
  background: linear-gradient(45deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
}

.secondary-blob {
  background: linear-gradient(45deg, rgba(249, 115, 22, 0.2) 0%, rgba(249, 115, 22, 0.1) 100%);
}

.sparkles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 10% 10%, rgba(255, 255, 255, 0.3) 0.5px, transparent 1px),
    radial-gradient(circle at 90% 30%, rgba(255, 255, 255, 0.3) 0.5px, transparent 1px),
    radial-gradient(circle at 20% 60%, rgba(255, 255, 255, 0.3) 0.5px, transparent 1px),
    radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.3) 0.5px, transparent 1px);
  background-size: 100px 100px;
  animation: sparkleShift 10s linear infinite;
}

@keyframes sparkleShift {
  0% { background-position: 0 0, 0 0, 0 0, 0 0; }
  100% { background-position: 100px 100px, 100px 100px, 100px 100px, 100px 100px; }
}

.offer-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  color: white;
  position: relative;
  z-index: 1;
}

.offer-badge {
  display: inline-block;
  background: var(--white);
  color: var(--primary);
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-weight: 700;
  margin-bottom: 2rem;
  position: relative;
}

.offer-badge.shimmer {
  overflow: hidden;
}

.offer-badge.shimmer::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    to right,
    transparent 0%,
    rgba(255, 255, 255, 0.5) 50%,
    transparent 100%
  );
  transform: rotate(30deg);
  animation: shimmerEffect 2s infinite;
}

@keyframes shimmerEffect {
  from { transform: translateX(-100%) rotate(30deg); }
  to { transform: translateX(100%) rotate(30deg); }
}

.offer-title {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.offer-highlight {
  background: rgba(255, 255, 255, 0.2);
  padding: 2rem;
  border-radius: 20px;
  margin-bottom: 2rem;
  backdrop-filter: blur(5px);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.discount-amount {
  font-size: 5rem;
  font-weight: 900;
  color: var(--white);
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  line-height: 1;
}

.discount-text {
  font-size: 1.5rem;
  font-weight: 700;
}

.offer-description {
  font-size: 1.125rem;
  margin-bottom: 2.5rem;
}

.price-comparison {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin-bottom: 2rem;
}

.price-comparison-item {
  text-align: center;
}

.price-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.price-value {
  font-size: 2.5rem;
  font-weight: 900;
}

.price-value.crossed {
  text-decoration: line-through;
  color: rgba(255, 255, 255, 0.7);
}

.price-arrow {
  font-size: 2rem;
  color: rgba(255, 255, 255, 0.7);
}

.price-comparison-item.highlighted {
  background: rgba(255, 255, 255, 0.2);
  padding: 1rem 2rem;
  border-radius: 16px;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  transform: scale(1.1);
}

.countdown-container {
  margin: 2.5rem 0;
}

.countdown-timer.enhanced {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
}

.countdown-timer.enhanced .countdown-item {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 16px;
  padding: 1.5rem;
  min-width: 100px;
  text-align: center;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5px);
  position: relative;
  overflow: hidden;
}

.countdown-timer.enhanced .countdown-item::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.5), transparent);
}

.countdown-timer.enhanced .countdown-item::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.5), transparent);
}

.countdown-timer.enhanced .countdown-number {
  font-size: 3rem;
  font-weight: 900;
  display: block;
  line-height: 1;
  color: white;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.countdown-timer.enhanced .countdown-label {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.offer-benefits {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.offer-benefit {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.2);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  backdrop-filter: blur(5px);
}

.offer-benefit i {
  color: var(--white);
}

/* Enhanced Testimonials */
.enhanced-testimonials {
  padding: 5rem 0;
  position: relative;
  background: var(--white);
}

.testimonials-slider-container {
  max-width: 800px;
  margin: 3rem auto 0;
  position: relative;
}

.testimonials-slider {
  position: relative;
  min-height: 400px;
}

.testimonial-item {
  transition: all 0.5s ease;
}

.testimonial-card {
  background: white;
  border-radius: 24px;
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(226, 232, 240, 0.8);
  position: relative;
}

.testimonial-rating {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1.5rem;
  color: #eab308;
}

.testimonial-quote-icon {
  position: absolute;
  top: -15px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 10px 15px -3px rgba(79, 70, 229, 0.3);
}

.testimonial-text {
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.author-avatar {
  width: 60px;
  height: 60px;
  border-radius: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  font-weight: 700;
}

.gradient-primary {
  background: var(--gradient-primary);
}

.gradient-secondary {
  background: var(--gradient-secondary);
}

.gradient-accent {
  background: var(--gradient-accent);
}

.author-info h4 {
  margin: 0 0 0.25rem;
}

.author-info p {
  margin: 0;
  color: var(--gray-medium);
}

.testimonial-result {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: linear-gradient(135deg, rgba(79, 70, 229, 0.05) 0%, rgba(16, 185, 129, 0.05) 100%);
  padding: 1rem 1.5rem;
  border-radius: 12px;
}

.result-icon {
  width: 40px;
  height: 40px;
  background: var(--gradient-primary);
  color: white;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.result-text {
  display: flex;
  flex-direction: column;
}

.result-number {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary);
}

.result-label {
  font-size: 0.875rem;
  color: var(--gray-dark);
}

.testimonial-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
}

.testimonial-controls.enhanced {
  position: relative;
  z-index: 10;
}

.testimonial-prev, .testimonial-next {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  color: var(--primary);
  font-size: 1.2rem;
  border: 1px solid rgba(226, 232, 240, 0.8);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: all 0.3s ease;
}

.testimonial-prev:hover, .testimonial-next:hover {
  background: var(--primary);
  color: white;
}

.testimonial-indicators {
  display: flex;
  gap: 0.5rem;
}

.testimonial-indicator {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(79, 70, 229, 0.2);
  cursor: pointer;
  transition: all 0.3s ease;
}

.testimonial-indicator.active {
  width: 25px;
  border-radius: 10px;
  background: var(--primary);
}

/* Glow Effect */
.glow {
  position: relative;
}

.glow::after {
  content: "";
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  background: inherit;
  border-radius: inherit;
  filter: blur(20px);
  opacity: 0.5;
  z-index: -1;
  transition: all 0.3s ease;
}

.glow:hover::after {
  opacity: 0.7;
}

/* Enhanced Contact Section */
.enhanced-contact {
  background: var(--light);
}

.contact-flex.enhanced {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
}

.contact-info, .contact-form-container {
  flex: 1;
  min-width: 300px;
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.6s ease;
}

.contact-info.animated, .contact-form-container.animated {
  opacity: 1;
  transform: translateY(0);
}

.contact-card {
  background: white;
  border-radius: 24px;
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(226, 232, 240, 0.8);
  height: 100%;
}

.contact-intro {
  margin-bottom: 2rem;
  font-size: 1.125rem;
}

.contact-details.enhanced {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
}

.contact-details.enhanced li {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.contact-icon {
  width: 50px;
  height: 50px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: white;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.contact-detail {
  display: flex;
  flex-direction: column;
}

.contact-detail strong {
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.contact-detail a {
  color: var(--primary);
  font-weight: 500;
  text-decoration: none;
}

.trust-badges.enhanced {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(16, 185, 129, 0.1);
  padding: 0.75rem 1rem;
  border-radius: 12px;
}

.trust-badge i {
  color: var(--accent);
  font-size: 1.1rem;
}

.contact-form.enhanced {
  background: white;
  border-radius: 24px;
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(226, 232, 240, 0.8);
}

.contact-form.enhanced h3 {
  text-align: center;
  margin-bottom: 2rem;
}

.contact-form.enhanced h3 span {
  color: var(--primary);
  font-weight: 900;
}

.input-with-icon {
  position: relative;
}

.input-with-icon i {
  position: absolute;
  top: 50%;
  right: 1rem;
  transform: translateY(-50%);
  color: var(--gray-medium);
}

.input-with-icon.textarea i {
  top: 1.1rem;
}

.input-with-icon input, .input-with-icon textarea {
  padding-right: 2.75rem;
}

.form-disclaimer {
  text-align: center;
  margin-top: 1rem;
  font-size: 0.875rem;
  color: var(--gray-medium);
}

/* Enhanced Footer */
.main-footer.enhanced {
  position: relative;
  background: var(--gradient-dark);
}

.footer-social.enhanced {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.footer-social.enhanced a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.footer-social.enhanced a:hover {
  background: var(--primary);
  transform: translateY(-3px);
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .process-timeline {
    padding-left: 3rem;
  }
  
  .timeline-track {
    left: 30px;
  }
  
  .timeline-item:nth-child(odd),
  .timeline-item:nth-child(even) {
    padding: 0;
    justify-content: flex-start;
    padding-left: 5rem;
  }
  
  .timeline-icon {
    left: 30px;
  }
  
  .section-icon-large {
    margin-bottom: 1rem;
  }
}

@media (max-width: 768px) {
  .hero-content-modern {
    flex-direction: column;
  }
  
  .hero-text {
    text-align: center;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .trust-indicators {
    justify-content: center;
  }
  
  .approach-grid {
    gap: 3rem;
  }
  
  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }
  
  .services-showcase {
    gap: 3rem;
  }
  
  .price-comparison {
    flex-direction: column;
    gap: 1rem;
  }
  
  .price-arrow {
    transform: rotate(90deg);
  }
  
  .price-comparison-item.highlighted {
    transform: none;
  }
  
  .offer-highlight {
    padding: 1.5rem;
  }
  
  .discount-amount {
    font-size: 4rem;
  }
}

@media (max-width: 576px) {
  .hero-description {
    font-size: 1rem;
  }
  
  .feature-card-enhanced {
    padding: 1.5rem;
  }
  
  .approach-item {
    padding: 1.5rem;
  }
  
  .timeline-content {
    padding: 1.5rem;
  }
  
  .pricing-header, .pricing-features, .pricing-cta {
    padding: 1.5rem;
  }
  
  .contact-card, .contact-form.enhanced {
    padding: 1.5rem;
  }
  
  .offer-title {
    font-size: 2.5rem;
  }
  
  .offer-highlight {
    padding: 1rem;
  }
  
  .discount-amount {
    font-size: 3rem;
  }
  
  .countdown-timer.enhanced .countdown-item {
    padding: 1rem;
    min-width: 70px;
  }
  
  .countdown-timer.enhanced .countdown-number {
    font-size: 2rem;
  }
}
