:root{
  --turquoise:#0B8A8A; 
  --gold:#FFD700;
  --ink:#0f172a;
  --muted:#475569;
  --bg:#f8fafc;
  --card:#ffffff;
  --border-light:#e9eef3;
  --shadow-soft:0 6px 20px rgba(0,0,0,.08);
  --shadow-hover:0 12px 30px rgba(0,0,0,.12);
  --radius:16px;
  --radius-lg:20px;
  --space-section:80px;
  --space-section-mobile:50px;
}

/* אפקטי כניסה נעימים */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes slideInFromTop {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

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

/* אפקטי כניסה עם delay */
.animate-on-scroll {
  opacity: 0;
  animation: fadeInUp 0.8s ease-out forwards;
}

.animate-on-scroll.delay-1 { animation-delay: 0.1s; }
.animate-on-scroll.delay-2 { animation-delay: 0.2s; }
.animate-on-scroll.delay-3 { animation-delay: 0.3s; }
.animate-on-scroll.delay-4 { animation-delay: 0.4s; }
.animate-on-scroll.delay-5 { animation-delay: 0.5s; }

/* אפקטי כניסה מיוחדים */
.hero-title {
  animation: slideInFromTop 1s ease-out;
}

.hero-subtitle {
  animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-description {
  animation: fadeInUp 1s ease-out 0.6s both;
}

.hero-cta {
  animation: fadeInUp 1s ease-out 0.9s both;
}

.hero-video {
  animation: scaleIn 1s ease-out 0.4s both;
}

/* אפקטי hover עדינים */
.cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.benefit-card:hover {
  transform: translateY(-5px);
  transition: transform 0.3s ease;
}

.step-card:hover {
  transform: scale(1.02);
  transition: transform 0.3s ease;
}

.lesson-card:hover {
  transform: translateY(-3px);
  transition: transform 0.3s ease;
}

/* אפקטי loading עדינים */
.loading-pulse {
  animation: pulse 2s infinite;
}

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

/* אפקטי כניסה לקטגוריות שונות */
.benefit-card {
  animation: fadeInUp 0.8s ease-out both;
  transition: all 0.3s ease;
}

.benefit-card:nth-child(1) { animation-delay: 0.1s; }
.benefit-card:nth-child(2) { animation-delay: 0.2s; }
.benefit-card:nth-child(3) { animation-delay: 0.3s; }
.benefit-card:nth-child(4) { animation-delay: 0.4s; }
.benefit-card:nth-child(5) { animation-delay: 0.5s; }
.benefit-card:nth-child(6) { animation-delay: 0.6s; }

.step-card {
  animation: fadeInUp 0.8s ease-out both;
  transition: all 0.3s ease;
}

.step-card:nth-child(1) { animation-delay: 0.1s; }
.step-card:nth-child(2) { animation-delay: 0.2s; }
.step-card:nth-child(3) { animation-delay: 0.3s; }
.step-card:nth-child(4) { animation-delay: 0.4s; }

.lesson-card {
  animation: fadeInUp 0.8s ease-out both;
  transition: all 0.3s ease;
}

.lesson-card:nth-child(1) { animation-delay: 0.1s; }
.lesson-card:nth-child(2) { animation-delay: 0.2s; }
.lesson-card:nth-child(3) { animation-delay: 0.3s; }
.lesson-card:nth-child(4) { animation-delay: 0.4s; }
.lesson-card:nth-child(5) { animation-delay: 0.5s; }

.testimonial-card {
  animation: fadeInUp 0.8s ease-out both;
  transition: all 0.3s ease;
}

.testimonial-card:nth-child(1) { animation-delay: 0.1s; }
.testimonial-card:nth-child(2) { animation-delay: 0.2s; }
.testimonial-card:nth-child(3) { animation-delay: 0.3s; }

/* אפקטי כניסה לסקציות */
.benefits {
  animation: fadeInUp 1s ease-out 0.2s both;
}

.about-me {
  animation: fadeInUp 1s ease-out 0.3s both;
}

.target {
  animation: fadeInUp 1s ease-out 0.4s both;
}

.how {
  animation: fadeInUp 1s ease-out 0.5s both;
}

.curriculum {
  animation: fadeInUp 1s ease-out 0.6s both;
}

.bonuses {
  animation: fadeInUp 1s ease-out 0.7s both;
}

.testimonials {
  animation: fadeInUp 1s ease-out 0.8s both;
}

.pricing {
  animation: fadeInUp 1s ease-out 0.9s both;
}

.faq {
  animation: fadeInUp 1s ease-out 1s both;
}

.final-cta {
  animation: fadeInUp 1s ease-out 1.1s both;
}

/* אפקטי כניסה מיוחדים לאלמנטים */
.countdown-timer {
  animation: scaleIn 1s ease-out 0.5s both;
}

.about-image {
  animation: fadeInRight 1s ease-out 0.6s both;
}

.about-text {
  animation: fadeInLeft 1s ease-out 0.4s both;
}

.pricing-card {
  animation: scaleIn 1s ease-out 1s both;
}

/* אפקטי כניסה לאלמנטים נוספים */
.benefit-icon {
  animation: scaleIn 0.8s ease-out both;
  transition: all 0.3s ease;
}

.benefit-icon:nth-child(1) { animation-delay: 0.2s; }
.benefit-icon:nth-child(2) { animation-delay: 0.3s; }
.benefit-icon:nth-child(3) { animation-delay: 0.4s; }
.benefit-icon:nth-child(4) { animation-delay: 0.5s; }
.benefit-icon:nth-child(5) { animation-delay: 0.6s; }
.benefit-icon:nth-child(6) { animation-delay: 0.7s; }

.step-number {
  animation: scaleIn 0.8s ease-out both;
  transition: all 0.3s ease;
}

.step-number:nth-child(1) { animation-delay: 0.2s; }
.step-number:nth-child(2) { animation-delay: 0.3s; }
.step-number:nth-child(3) { animation-delay: 0.4s; }
.step-number:nth-child(4) { animation-delay: 0.5s; }

.lesson-badge {
  animation: fadeInUp 0.8s ease-out both;
  transition: all 0.3s ease;
}

.lesson-badge:nth-child(1) { animation-delay: 0.2s; }
.lesson-badge:nth-child(2) { animation-delay: 0.3s; }
.lesson-badge:nth-child(3) { animation-delay: 0.4s; }
.lesson-badge:nth-child(4) { animation-delay: 0.5s; }
.lesson-badge:nth-child(5) { animation-delay: 0.6s; }

.bonus-icon {
  animation: scaleIn 0.8s ease-out both;
  transition: all 0.3s ease;
}

.bonus-icon:nth-child(1) { animation-delay: 0.2s; }
.bonus-icon:nth-child(2) { animation-delay: 0.3s; }
.bonus-icon:nth-child(3) { animation-delay: 0.4s; }

/* אפקטי כניסה לכפתורים */
.cta-primary, .cta-secondary {
  animation: fadeInUp 1s ease-out both;
  transition: all 0.3s ease;
}

.cta-primary.large {
  animation: scaleIn 1s ease-out 1.1s both;
}

.cta-primary.huge {
  animation: scaleIn 1s ease-out 1.2s both;
}

/* Purchase button styling - make links look like buttons */
.cta.primary {
  background: var(--turquoise) !important;
  color: #fff !important;
  border: none !important;
  border-radius: var(--radius);
  padding: 16px 28px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(11, 138, 138, 0.3);
  text-decoration: none !important;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
}

.cta.primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.cta.primary:hover::before {
  left: 100%;
}

.cta.primary:hover {
  background: #097a7a !important;
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
  color: #fff !important;
  text-decoration: none !important;
}

.cta.primary.large {
  padding: 20px 36px;
  font-size: 1.2rem;
}

.cta.primary:active {
  transform: translateY(1px);
  animation: buttonGlow 0.3s ease;
}

.cta.primary:focus {
  outline: 2px solid var(--turquoise);
  outline-offset: 2px;
}

/* Override any link styles that might interfere */
a.cta.primary,
a.cta.primary:link,
a.cta.primary:visited {
  color: #fff !important;
  text-decoration: none !important;
  background: var(--turquoise) !important;
}

a.cta.primary:hover,
a.cta.primary:active {
  color: #fff !important;
  text-decoration: none !important;
  background: #097a7a !important;
}

/* אפקטי כניסה למונה הזמן */
.countdown-item {
  animation: scaleIn 0.8s ease-out both;
  transition: all 0.3s ease;
}

.countdown-item:nth-child(1) { animation-delay: 0.6s; }
.countdown-item:nth-child(2) { animation-delay: 0.7s; }
.countdown-item:nth-child(3) { animation-delay: 0.8s; }
.countdown-item:nth-child(4) { animation-delay: 0.9s; }

/* אפקטי כניסה לתמונת הפרופיל */
.portrait {
  animation: scaleIn 1s ease-out 0.8s both;
  transition: all 0.3s ease;
}

.portrait:hover {
  transform: scale(1.05);
}

/* אפקטי כניסה לשאלות נפוצות */
.faq-item {
  animation: fadeInUp 0.8s ease-out both;
  transition: all 0.3s ease;
}

.faq-item:nth-child(1) { animation-delay: 1.1s; }
.faq-item:nth-child(2) { animation-delay: 1.2s; }
.faq-item:nth-child(3) { animation-delay: 1.3s; }
.faq-item:nth-child(4) { animation-delay: 1.4s; }

/* אפקטי כניסה לעדויות */
.testimonial-author {
  animation: fadeInUp 0.8s ease-out both;
  transition: all 0.3s ease;
}

.testimonial-author:nth-child(1) { animation-delay: 0.4s; }
.testimonial-author:nth-child(2) { animation-delay: 0.5s; }
.testimonial-author:nth-child(3) { animation-delay: 0.6s; }

/* אפקטי כניסה ל-target cards */
.target-card {
  animation: fadeInUp 0.8s ease-out both;
  transition: all 0.3s ease;
}

.target-card:nth-child(1) { animation-delay: 0.5s; }
.target-card:nth-child(2) { animation-delay: 0.6s; }
.target-card:nth-child(3) { animation-delay: 0.7s; }
.target-card:nth-child(4) { animation-delay: 0.8s; }

.target-icon {
  animation: scaleIn 0.8s ease-out both;
  transition: all 0.3s ease;
}

.target-icon:nth-child(1) { animation-delay: 0.6s; }
.target-icon:nth-child(2) { animation-delay: 0.7s; }
.target-icon:nth-child(3) { animation-delay: 0.8s; }
.target-icon:nth-child(4) { animation-delay: 0.9s; }

/* אפקטי כניסה ל-bonus cards */
.bonus-card {
  animation: fadeInUp 0.8s ease-out both;
  transition: all 0.3s ease;
}

.bonus-card:nth-child(1) { animation-delay: 0.8s; }
.bonus-card:nth-child(2) { animation-delay: 0.9s; }
.bonus-card:nth-child(3) { animation-delay: 1s; }

/* אפקטי כניסה לסקציות נוספות */
.section-title {
  animation: fadeInUp 1s ease-out both;
  transition: all 0.3s ease;
}

.benefits .section-title { animation-delay: 0.1s; }
.about-me .section-title { animation-delay: 0.2s; }
.target .section-title { animation-delay: 0.3s; }
.how .section-title { animation-delay: 0.4s; }
.curriculum .section-title { animation-delay: 0.5s; }
.bonuses .section-title { animation-delay: 0.6s; }
.testimonials .section-title { animation-delay: 0.7s; }
.pricing .section-title { animation-delay: 0.8s; }
.faq .section-title { animation-delay: 0.9s; }
.final-cta .section-title { animation-delay: 1s; }

/* אפקטי כניסה לכפתורי CTA */
.hero-cta .cta-primary {
  animation: fadeInUp 1s ease-out 0.9s both;
}

.hero-cta .cta-secondary {
  animation: fadeInUp 1s ease-out 1s both;
}

/* אפקטי כניסה למונה הזמן */
.countdown-label {
  animation: fadeInUp 1s ease-out 0.4s both;
}

.countdown-display {
  animation: scaleIn 1s ease-out 0.5s both;
}

/* אפקטי כניסה לתמונת הפרופיל */
.portrait-container {
  animation: fadeInRight 1s ease-out 0.6s both;
}

/* אפקטי כניסה לכפתורי רכישה */
.pricing .cta-primary {
  animation: scaleIn 1s ease-out 1.1s both;
}

.final-cta .cta-primary {
  animation: scaleIn 1s ease-out 1.2s both;
}

/* אפקטי כניסה לתוכן הסקציות */
.about-content {
  animation: fadeInUp 1s ease-out 0.4s both;
}

.target-content {
  animation: fadeInUp 1s ease-out 0.6s both;
}

.target-content:nth-child(1) { animation-delay: 0.7s; }
.target-content:nth-child(2) { animation-delay: 0.8s; }
.target-content:nth-child(3) { animation-delay: 0.9s; }
.target-content:nth-child(4) { animation-delay: 1s; }

/* אפקטי כניסה לכפתורי CTA נוספים */
.cta-secondary {
  animation: fadeInUp 1s ease-out 1s both;
}

.cta-primary.large {
  animation: scaleIn 1s ease-out 1.1s both;
}

.cta-primary.huge {
  animation: scaleIn 1s ease-out 1.2s both;
}

/* אפקטי כניסה לכפתורי CTA נוספים */
.cta-secondary {
  animation: fadeInUp 1s ease-out 1s both;
}

.cta-primary.large {
  animation: scaleIn 1s ease-out 1.1s both;
}

.cta-primary.huge {
  animation: scaleIn 1s ease-out 1.2s both;
}

/* אפקטי כניסה לכפתורי CTA נוספים */
.cta-secondary {
  animation: fadeInUp 1s ease-out 1s both;
}

.cta-primary.large {
  animation: scaleIn 1s ease-out 1.1s both;
}

.cta-primary.huge {
  animation: scaleIn 1s ease-out 1.2s both;
}

/* אפקטי כניסה לכפתורי CTA נוספים */
.cta-secondary {
  animation: fadeInUp 1s ease-out 1s both;
}

.cta-primary.large {
  animation: scaleIn 1s ease-out 1.1s both;
}

.cta-primary.huge {
  animation: scaleIn 1s ease-out 1.2s both;
}

/* אפקטי כניסה לכפתורי CTA נוספים */
.cta-secondary {
  animation: fadeInUp 1s ease-out 1s both;
}

.cta-primary.large {
  animation: scaleIn 1s ease-out 1.1s both;
}

.cta-primary.huge {
  animation: scaleIn 1s ease-out 1.2s both;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0; 
  font-family:'Heebo',system-ui,-apple-system,Segoe UI,Roboto;
  background:var(--bg); 
  color:var(--ink); 
  direction:rtl;
  line-height:1.6;
}

/* Layout & Container */
.container{
  width:min(1200px,92%); 
  margin:auto;
  padding:0 20px;
}

/* Section Titles */
.section-title{
  font-size:2.1rem; 
  line-height:1.25; 
  margin:0 0 2rem 0;
  text-align:center;
  color:var(--ink);
  font-weight:700;
}

/* Section Spacing */
section{
  padding:var(--space-section) 0;
}

/* Hero Section */
.hero{
  background:linear-gradient(135deg,#e6f8f7 0%,#f8fafc 100%);
  padding:100px 0;
}

.hero-content{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
  align-items:center;
}

.hero-title{
  font-size:2.8rem;
  line-height:1.2;
  margin:0 0 1.5rem 0;
  color:var(--turquoise);
  font-weight:700;
}

.hero-subtitle{
  font-size:1.3rem;
  color:var(--muted);
  margin:0 0 1rem 0;
  font-weight:500;
}

.hero-description{
  font-size:1.1rem;
  color:#2f3a45;
  margin:0 0 2rem 0;
  line-height:1.7;
}

.hero-cta{
  display:flex;
  gap:16px;
  flex-wrap:wrap;
}

.cta-primary{
  background:var(--turquoise);
  color:#fff;
  border:none;
  border-radius:var(--radius);
  padding:16px 28px;
  font-size:1.1rem;
  font-weight:600;
  cursor:pointer;
  transition:all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(11, 138, 138, 0.3);
}

.cta-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

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

.cta-primary:hover{
  background:#097a7a;
  transform:translateY(-2px);
  box-shadow:var(--shadow-hover);
}

.cta-primary.large{
  padding:20px 36px;
  font-size:1.2rem;
}

.cta-primary.huge{
  padding:24px 48px;
  font-size:1.4rem;
}

.cta-secondary{
  background:transparent;
  color:var(--turquoise);
  border:2px solid var(--turquoise);
  border-radius:var(--radius);
  padding:16px 28px;
  font-size:1.1rem;
  font-weight:600;
  cursor:pointer;
  transition:all 0.3s ease;
  text-decoration:none;
  display:flex;
  align-items:center;
  gap:8px;
}

.cta-secondary:hover{
  background:var(--turquoise);
  color:#fff;
  transform:translateY(-3px);
  box-shadow: 0 6px 20px rgba(11, 138, 138, 0.3);
}

.cta-secondary {
  position: relative;
  overflow: hidden;
}

.cta-secondary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

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

/* Video Container */
.video-container{
  position:relative;
  padding-top:56.25%;
  border-radius:var(--radius-lg);
  overflow:hidden;
  box-shadow:var(--shadow-soft);
  background:#000;
}

/* Video Container */
.video-container{
  position:relative;
  padding-top:56.25%;
  border-radius:var(--radius-lg);
  overflow:hidden;
  box-shadow:var(--shadow-soft);
  background:#000;
}

.video-container iframe{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
}

/* Vimeo Player מותאם אישית */
.video-container iframe[src*="vimeo"] {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  filter: contrast(1.05) brightness(1.02);
}



/* Benefits Section */
.benefits-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}

.benefit-card{
  background:var(--card);
  border-radius:var(--radius);
  padding:32px 24px;
  box-shadow:var(--shadow-soft);
  border:1px solid var(--border-light);
  text-align:center;
  transition:all 0.3s ease;
}

.benefit-card:hover{
  transform:translateY(-8px);
  box-shadow:var(--shadow-hover);
  border-color: var(--turquoise);
}

.benefit-card:hover .benefit-icon {
  transform: scale(1.1) rotate(5deg);
  background: linear-gradient(135deg, var(--turquoise), #0a7a7a);
}

.benefit-card:hover .benefit-icon i {
  color: white;
}

.benefit-icon{
  width:64px;
  height:64px;
  background:linear-gradient(135deg,#e6f8f7,#d1f2f1);
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  margin:0 auto 20px;
}

.benefit-icon i{
  font-size:28px;
  color:var(--turquoise);
}

.benefit-card h3{
  margin:0 0 16px 0;
  color:var(--ink);
  font-size:1.3rem;
  font-weight:600;
}

.benefit-card p{
  margin:0;
  color:var(--muted);
  line-height:1.6;
}

/* Special Bonuses Section */
.special-bonuses {
  background: linear-gradient(135deg, #f8fdfc, #e6f8f7);
  padding: var(--space-section) 0;
}

.bonuses-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.bonus-card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 32px 24px;
  box-shadow: var(--shadow-soft);
  border: 2px solid var(--gold);
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.bonus-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--turquoise));
}

.bonus-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: var(--turquoise);
}

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

.bonus-card:hover .bonus-icon i {
  color: var(--gold);
}

.bonus-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #fff8e6, #fef3cd);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  position: relative;
  transition: all 0.3s ease;
}

.bonus-emoji {
  position: absolute;
  top: -8px;
  right: -8px;
  font-size: 18px;
  z-index: 2;
}

.bonus-icon i {
  font-size: 28px;
  color: var(--turquoise);
  transition: all 0.3s ease;
}

.bonus-card h3 {
  margin: 0 0 16px 0;
  color: var(--ink);
  font-size: 1.3rem;
  font-weight: 600;
}

.bonus-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

/* Bonuses CTA Section */
.bonuses-cta {
  background: linear-gradient(135deg, var(--gold), #e6b800);
  padding: 60px 0;
  text-align: center;
}

.bonuses-value-block {
  max-width: 800px;
  margin: 0 auto;
}

.bonuses-value-text {
  font-size: 1.4rem;
  font-weight: 600;
  color: #fff;
  margin: 0 0 30px 0;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
  line-height: 1.5;
}

.cta-bonuses {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: linear-gradient(135deg, var(--turquoise), #0a7a7a);
  color: white;
  text-decoration: none;
  padding: 20px 40px;
  border-radius: var(--radius);
  font-size: 1.3rem;
  font-weight: 600;
  box-shadow: var(--shadow-soft);
  transition: all 0.3s ease;
  border: 3px solid #fff;
  text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.cta-bonuses:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  background: linear-gradient(135deg, #0a7a7a, var(--turquoise));
  border-color: var(--gold);
}

/* About Me Section */
.about-content{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
  align-items:center;
}

.about-text .section-title{
  text-align:right;
  margin-bottom:2rem;
}

.about-description{
  font-size:1.2rem;
  line-height:1.8;
  color:var(--muted);
  margin:0;
  text-align:right;
}

.portrait-container{
  width:100%;
  max-width:400px;
  margin:0 auto;
}

.portrait{
  width:100%;
  height:auto;
  border-radius:var(--radius-lg);
  box-shadow:var(--shadow-soft);
  border:4px solid var(--card);
  transition: all 0.3s ease;
}

.portrait-container:hover .portrait {
  transform: scale(1.02);
  box-shadow: var(--shadow-hover);
  border-color: var(--turquoise);
}

/* Target Section */
.target-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:24px;
}

.target-card{
  background:var(--card);
  border-radius:var(--radius);
  padding:28px 24px;
  box-shadow:var(--shadow-soft);
  border:1px solid var(--border-light);
  display:flex;
  gap:20px;
  align-items:flex-start;
  transition:all 0.3s ease;
}

.target-card:hover{
  transform:translateY(-6px);
  box-shadow:var(--shadow-hover);
  border-color: var(--turquoise);
}

.target-card:hover .target-icon {
  transform: scale(1.1);
  background: linear-gradient(135deg, var(--turquoise), #0a7a7a);
}

.target-card:hover .target-icon i {
  color: white;
}

.target-icon{
  flex-shrink:0;
  width:48px;
  height:48px;
  background:linear-gradient(135deg,#e6f8f7,#d1f2f1);
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
}

.target-icon i{
  font-size:20px;
  color:var(--turquoise);
}

.target-content h3{
  margin:0 0 12px 0;
  color:var(--ink);
  font-size:1.2rem;
  font-weight:600;
}

.target-content p{
  margin:0;
  color:var(--muted);
  line-height:1.6;
}

/* Steps Section */
.steps-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:24px;
}

.step-card{
  background:var(--card);
  border-radius:var(--radius);
  padding:32px 24px;
  box-shadow:var(--shadow-soft);
  border:1px solid var(--border-light);
  text-align:center;
  transition:all 0.3s ease;
  position:relative;
}

.step-card:hover{
  transform:translateY(-6px);
  box-shadow:var(--shadow-hover);
  border-color: var(--turquoise);
}

.step-card:hover .step-number {
  transform: scale(1.1) rotate(5deg);
  background: linear-gradient(135deg, var(--turquoise), #0a7a7a);
}

.step-number{
  width:48px;
  height:48px;
  background:var(--turquoise);
  color:#fff;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:1.5rem;
  font-weight:700;
  margin:0 auto 20px;
}

.step-card h3{
  margin:0 0 16px 0;
  color:var(--ink);
  font-size:1.2rem;
  font-weight:600;
}

.step-card p{
  margin:0;
  color:var(--muted);
  line-height:1.6;
}

/* Lessons Section */
.lessons-grid{
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:20px;
}

.lesson-card{
  background:var(--card);
  border-radius:var(--radius);
  padding:24px 20px;
  box-shadow:var(--shadow-soft);
  border:1px solid var(--border-light);
  text-align:center;
  transition:all 0.3s ease;
}

.lesson-card:hover{
  transform:translateY(-4px);
  box-shadow:var(--shadow-hover);
  border-color: var(--turquoise);
}

.lesson-card:hover .lesson-badge {
  background: linear-gradient(135deg, var(--turquoise), #0a7a7a);
  color: white;
  transform: scale(1.05);
}

.lesson-badge{
  display:inline-block;
  background:var(--gold);
  color:#1f2937;
  font-weight:700;
  padding:6px 12px;
  border-radius:999px;
  margin-bottom:16px;
  font-size:0.9rem;
}

.lesson-card h3{
  margin:0 0 12px 0;
  color:var(--ink);
  font-size:1.1rem;
  font-weight:600;
}

.lesson-card p{
  margin:0;
  color:var(--muted);
  line-height:1.6;
  font-size:0.95rem;
}

/* Bonuses Section */
.bonuses-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}

.bonus-card{
  background:var(--card);
  border-radius:var(--radius);
  padding:32px 24px;
  box-shadow:var(--shadow-soft);
  border:1px solid var(--border-light);
  text-align:center;
  transition:all 0.3s ease;
}

.bonus-card:hover{
  transform:translateY(-6px);
  box-shadow:var(--shadow-hover);
  border-color: var(--gold);
}

.bonus-card:hover .bonus-icon {
  transform: scale(1.1) rotate(5deg);
  background: linear-gradient(135deg, var(--gold), #e6c200);
}

.bonus-card:hover .bonus-icon i {
  color: #1f2937;
}

.bonus-icon{
  width:64px;
  height:64px;
  background:linear-gradient(135deg,#fff3cd,#ffeaa7);
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  margin:0 auto 20px;
}

.bonus-icon i{
  font-size:28px;
  color:#f39c12;
}

.bonus-card h3{
  margin:0 0 16px 0;
  color:var(--ink);
  font-size:1.3rem;
  font-weight:600;
}

.bonus-card p{
  margin:0;
  color:var(--muted);
  line-height:1.6;
}

/* Pricing Section */
.pricing-card{
  background:var(--card);
  border-radius:var(--radius-lg);
  border:2px solid var(--border-light);
  padding:48px;
  box-shadow:var(--shadow-soft);
  text-align:center;
  max-width:500px;
  margin:0 auto;
  transition: all 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  border-color: var(--turquoise);
}

.pricing-card h2{
  margin:0 0 24px 0;
  color:var(--ink);
  font-size:2rem;
  font-weight:700;
}

.price{
  display:flex;
  align-items:baseline;
  justify-content:center;
  gap:8px;
  margin:0 0 24px 0;
}

.price .currency{
  color:var(--turquoise);
  font-weight:700;
  font-size:1.5rem;
}

.price .amount{
  font-size:4rem;
  font-weight:800;
  color:var(--turquoise);
}

.price .period{
  color:var(--muted);
  font-size:1.2rem;
}

.price-note{
  color:var(--muted);
  margin:0 0 32px 0;
  font-size:1.1rem;
}

.guarantee{
  margin-top:24px;
  display:flex;
  align-items:center;
  gap:12px;
  justify-content:center;
  color:var(--muted);
}

.guarantee i{
  color:var(--turquoise);
  font-size:20px;
}

.guarantee p{
  margin:0;
  font-size:0.95rem;
}

/* FAQ Section */
.faq-grid{
  max-width:800px;
  margin:0 auto;
}

.faq-item{
  background:var(--card);
  border:1px solid var(--border-light);
  border-radius:var(--radius);
  padding:20px 24px;
  margin-bottom:16px;
  box-shadow:var(--shadow-soft);
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: var(--turquoise);
  box-shadow: var(--shadow-hover);
}

.faq-item summary:hover {
  color: #0a7a7a;
}

.faq-item summary{
  cursor:pointer;
  font-weight:600;
  color:var(--turquoise);
  display:flex;
  align-items:center;
  gap:12px;
  font-size:1.1rem;
}

.faq-item summary i{
  font-size:18px;
}

.faq-item p{
  margin:16px 0 0 0;
  color:var(--muted);
  line-height:1.6;
}

/* Final CTA Section */
.final-cta{
  background:linear-gradient(135deg,#e6f8f7 0%,#f8fafc 100%);
  text-align:center;
}

.final-cta h2{
  font-size:2.5rem;
  line-height:1.2;
  margin:0 0 1.5rem 0;
  color:var(--ink);
  font-weight:700;
}

.final-cta p{
  font-size:1.2rem;
  color:var(--muted);
  margin:0 0 2.5rem 0;
  max-width:600px;
  margin-left:auto;
  margin-right:auto;
}

.final-cta .cta-primary{
  margin:0 auto;
}

/* Footer */
.footer{
  padding:40px 0;
  color:#64748b;
  text-align:center;
  background:var(--card);
  border-top:1px solid var(--border-light);
}

/* Responsive Design */
@media (max-width:980px){
  .hero-content{
    grid-template-columns:1fr;
    gap:40px;
    text-align:center;
  }
  
  .about-content{
    grid-template-columns:1fr;
    gap:40px;
    text-align:center;
  }
  
  .about-text .section-title{
    text-align:center;
  }
  
  .about-description{
    text-align:center;
  }
  
  .benefits-grid{
    grid-template-columns:repeat(2,1fr);
  }
  
  .target-grid{
    grid-template-columns:1fr;
  }
  
  .steps-grid{
    grid-template-columns:repeat(2,1fr);
  }
  
  .lessons-grid{
    grid-template-columns:repeat(3,1fr);
  }
  
  .bonuses-grid{
    grid-template-columns:repeat(2,1fr);
  }
  
  section{
    padding:var(--space-section-mobile) 0;
  }
  
  .hero{
    padding:80px 0;
  }
}

@media (max-width:560px){
  .benefits-grid,
  .steps-grid,
  .lessons-grid,
  .bonuses-grid{
    grid-template-columns:1fr;
  }
  
  .hero-title{
    font-size:2.2rem;
  }
  
  .section-title{
    font-size:1.8rem;
  }
  
  .pricing-card{
    padding:32px 24px;
  }
  
  .cta-primary,
  .cta-secondary{
    width:100%;
    justify-content:center;
  }
  
  .hero-cta{
    flex-direction:column;
  }
  
  section{
    padding:40px 0;
  }
  
  .hero{
    padding:60px 0;
  }
}

/* --- Minimal spacing & separators --- */
section{padding:56px 0}
.section-title{margin-bottom:18px}
.container > p{max-width:70ch; line-height:1.75}
hr.section-sep{
  border:0; height:1px; background:linear-gradient(90deg,transparent,#eaeef2,transparent);
  margin:40px 0;
}

/* כרטיסים: פחות עומס */
.cards, .steps, .lessons{gap:14px}
.card, .steps li, .lesson{
  box-shadow:0 6px 16px rgba(0,0,0,.05);
  border-radius:14px;
  border:1px solid #eef2f6;
  padding:16px;
}

/* טיפוגרפיה רגועה */
.hero-title{line-height:1.25}
.hero-subtitle, .hero-intro{color:#2f3a45}

/* מובייל – מרווח נשימה */
@media (max-width:560px){
  section{padding:44px 0}
  .card, .steps li, .lesson{padding:14px}
}

/* Performance Optimizations */
.hero-video iframe {
  will-change: transform;
  transform: translateZ(0);
}

/* Loading states for better UX */
.cta-primary.loading,
.cta-secondary.loading {
  position: relative;
  pointer-events: none;
}

.cta-primary.loading::after,
.cta-secondary.loading::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  margin: -10px 0 0 -10px;
  border: 2px solid transparent;
  border-top: 2px solid currentColor;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

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

/* Mobile-specific performance improvements */
@media (max-width: 768px) {
  .hero-video iframe {
    max-width: 100%;
    height: auto;
    aspect-ratio: 16/9;
  }
  
  .container {
    padding: 0 16px;
  }
  
  /* Reduce shadows on mobile for better performance */
  .benefit-card,
  .target-card,
  .step-card,
  .lesson-card,
  .bonus-card {
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  }
}

/* Print styles for better accessibility */
@media print {
  .cta-primary,
  .cta-secondary,
  .hero-video {
    display: none;
  }
  
  .hero {
    background: none;
    color: #000;
  }
  
  section {
    page-break-inside: avoid;
  }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  :root {
    --turquoise: #006666;
    --gold: #cc9900;
    --ink: #000000;
    --muted: #333333;
    --bg: #ffffff;
    --card: #f0f0f0;
    --border-light: #666666;
  }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  html {
    scroll-behavior: auto;
  }
  
  .cta-primary:hover,
  .cta-secondary:hover {
    transform: none;
  }
}

/* Testimonials Section */
.testimonials {
  background: linear-gradient(135deg, #f8fafc 0%, #e6f8f7 100%);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 3rem;
}

.testimonial-card {
  background: var(--card);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border-light);
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: var(--turquoise);
}

.testimonial-card:hover .author-avatar {
  transform: scale(1.1);
  background: linear-gradient(135deg, var(--turquoise), #0a7a7a);
}

.testimonial-content {
  margin-bottom: 20px;
}

.testimonial-content p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--ink);
  font-style: italic;
  margin: 0;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--turquoise);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
}

.author-info h4 {
  margin: 0 0 5px 0;
  color: var(--ink);
  font-weight: 600;
}

.author-info span {
  color: var(--muted);
  font-size: 0.9rem;
}

/* Mobile Responsiveness for Testimonials */
@media (max-width: 768px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .testimonial-card {
    padding: 20px;
  }
  
  /* Special Bonuses Mobile - Full Width */
  .bonuses-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 30px;
  }
  
  .bonus-card {
    padding: 24px 20px;
  }
  
  .bonus-icon {
    width: 56px;
    height: 56px;
  }
  
  .bonus-icon i {
    font-size: 24px;
  }
  
  .bonus-emoji {
    font-size: 16px;
    top: -6px;
    right: -6px;
  }
  
  /* Bonuses CTA Mobile */
  .bonuses-cta {
    padding: 40px 0;
  }
  
  .bonuses-value-block {
    padding: 0 20px;
  }
  
  .bonuses-value-text {
    font-size: 1.1rem;
    margin: 0 0 30px 0;
    line-height: 1.4;
    padding: 0;
  }
  
  .cta-bonuses {
    width: 100%;
    font-size: 1.2rem;
    padding: 20px 25px;
    margin: 0;
    box-sizing: border-box;
    text-align: center;
  }
}

/* Extra Small Mobile Devices */
@media (max-width: 480px) {
  .special-bonuses .section-title {
    font-size: 1.8rem;
    line-height: 1.3;
    padding: 0 15px;
  }
  
  .bonuses-value-text {
    font-size: 1rem;
    line-height: 1.3;
  }
  
  .cta-bonuses {
    font-size: 1.1rem;
    padding: 18px 20px;
  }
  
  .bonuses-value-block {
    padding: 0 15px;
  }
}

/* Countdown Timer */
.countdown-timer {
  background: linear-gradient(135deg, var(--turquoise) 0%, #066666 100%);
  border-radius: var(--radius);
  padding: 25px;
  margin: 2rem 0;
  text-align: center;
  color: white;
  box-shadow: var(--shadow-soft);
}

.countdown-label {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 15px;
  display: block;
}

.countdown-display {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.countdown-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 60px;
}

.countdown-number {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 5px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
  transition: all 0.3s ease;
  animation: pulse 2s infinite;
}

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

.countdown-item:hover .countdown-number {
  transform: scale(1.1);
  color: var(--gold);
}

.countdown-item .countdown-label {
  font-size: 0.9rem;
  font-weight: 500;
  margin: 0;
  opacity: 0.9;
}

/* Mobile Responsiveness for Countdown */
@media (max-width: 768px) {
  .countdown-display {
    gap: 15px;
  }
  
  .countdown-item {
    min-width: 50px;
  }
  
  .countdown-number {
    font-size: 2rem;
  }
  
  .countdown-timer {
    padding: 20px;
    margin: 1.5rem 0;
  }
}

.countdown-finished {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--gold);
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

/* Additional Hover Effects */
.benefit-icon,
.target-icon,
.step-number,
.lesson-badge,
.bonus-icon,
.author-avatar {
  transition: all 0.3s ease;
}

/* Smooth scrolling and page transitions */
html {
  scroll-behavior: smooth;
}

/* Loading animation for buttons */
@keyframes buttonGlow {
  0% { box-shadow: 0 4px 15px rgba(11, 138, 138, 0.3); }
  50% { box-shadow: 0 4px 25px rgba(11, 138, 138, 0.6); }
  100% { box-shadow: 0 4px 15px rgba(11, 138, 138, 0.3); }
}

.cta-primary:active {
  transform: translateY(1px);
  animation: buttonGlow 0.3s ease;
}

/* Card entrance animations */
.benefit-card,
.target-card,
.step-card,
.lesson-card,
.bonus-card,
.testimonial-card {
  animation: fadeInUp 0.6s ease-out;
}

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

/* Staggered animation for grid items */
.benefits-grid .benefit-card:nth-child(1) { animation-delay: 0.1s; }
.benefits-grid .benefit-card:nth-child(2) { animation-delay: 0.2s; }
.benefits-grid .benefit-card:nth-child(3) { animation-delay: 0.3s; }
.benefits-grid .benefit-card:nth-child(4) { animation-delay: 0.4s; }
.benefits-grid .benefit-card:nth-child(5) { animation-delay: 0.5s; }
.benefits-grid .benefit-card:nth-child(6) { animation-delay: 0.6s; }

.target-grid .target-card:nth-child(1) { animation-delay: 0.1s; }
.target-grid .target-card:nth-child(2) { animation-delay: 0.2s; }
.target-grid .target-card:nth-child(3) { animation-delay: 0.3s; }
.target-grid .target-card:nth-child(4) { animation-delay: 0.4s; }

.steps-grid .step-card:nth-child(1) { animation-delay: 0.1s; }
.steps-grid .step-card:nth-child(2) { animation-delay: 0.2s; }
.steps-grid .step-card:nth-child(3) { animation-delay: 0.3s; }
.steps-grid .step-card:nth-child(4) { animation-delay: 0.4s; }

.lessons-grid .lesson-card:nth-child(1) { animation-delay: 0.1s; }
.lessons-grid .lesson-card:nth-child(2) { animation-delay: 0.2s; }
.lessons-grid .lesson-card:nth-child(3) { animation-delay: 0.3s; }
.lessons-grid .lesson-card:nth-child(4) { animation-delay: 0.4s; }
.lessons-grid .lesson-card:nth-child(5) { animation-delay: 0.5s; }

.bonuses-grid .bonus-card:nth-child(1) { animation-delay: 0.1s; }
.bonuses-grid .bonus-card:nth-child(2) { animation-delay: 0.2s; }
.bonuses-grid .bonus-card:nth-child(3) { animation-delay: 0.3s; }

.testimonials-grid .testimonial-card:nth-child(1) { animation-delay: 0.1s; }
.testimonials-grid .testimonial-card:nth-child(2) { animation-delay: 0.2s; }
.testimonials-grid .testimonial-card:nth-child(3) { animation-delay: 0.3s; }

.btn-main{
  display:inline-block;
  background:#0A9A93; /* הטורקיז של המותג */
  color:#fff;
  font-weight:700;
  font-size:18px;
  padding:14px 24px;
  border-radius:12px;
  text-decoration:none !important;
  box-shadow:0 8px 18px rgba(0,0,0,.12);
  transition:transform .06s ease, box-shadow .06s ease;
}
.btn-main:hover{ transform:translateY(-1px); box-shadow:0 10px 22px rgba(0,0,0,.16); }

@media (max-width: 768px){
  /* הכרטיסיות של הבונוסים – טור אחד בנייד */
  .bonus-cards{ display:grid; grid-template-columns:1fr; gap:16px; }
  /* הכפתור – מלא רוחב וקריא */
  .btn-mobile-cta{
    display:block;
    width:100%;
    text-align:center;
    font-size:18px;
    padding:16px 22px;
    margin:18px 0 8px;
  }
}

/* בלוק עצמאי עם רקע צהוב */
section#bonus-offer.bonus-offer{
  background:#F9D54A;         /* הרקע הצהוב */
  padding:28px 16px;
  border-radius:16px;
  margin:24px 0;
}

/* תוכן ממורכז */
#bonus-offer .bonus-offer__wrap{
  max-width:760px;
  margin:0 auto;
  text-align:center;
}

/* טקסט השווי */
#bonus-offer .bonus-offer__value{
  margin:0 0 14px;
  font-weight:800;
  font-size:20px;
  line-height:1.6;
  color:#122;                 /* טקסט כהה וקריא */
}

/* ביטול תורשה של עיצובי לינק מקונטיינרים אחרים */
#bonus-offer a{ 
  text-decoration:none !important;
  color:#fff !important;
}

/* כפתור ראשי */
#bonus-offer .btn-main,
#bonus-offer .bonus-offer__cta{
  display:inline-block;
  background:#0A9A93;
  color:#fff !important;
  font-weight:800;
  font-size:18px;
  padding:14px 24px;
  border-radius:12px;
  box-shadow:0 8px 18px rgba(0,0,0,.12);
  transition:transform .06s ease, box-shadow .06s ease;
}

#bonus-offer .btn-main:hover,
#bonus-offer .bonus-offer__cta:hover{
  transform:translateY(-1px);
  box-shadow:0 10px 22px rgba(0,0,0,.16);
}

/* רספונסיבי למובייל בלבד */
@media (max-width:768px){
  #bonus-offer{ padding:22px 12px; margin:18px 0; }
  #bonus-offer .bonus-offer__value{ font-size:17px; }
  #bonus-offer .bonus-offer__cta{
    display:block;
    width:100%;
    padding:16px 22px;
    font-size:18px;
    margin-top:10px;
  }
}

.bonus-offer p {
  color:#122 !important;
  text-align:center !important;
}

.bonus-offer a {
  display:inline-block !important;
  background:#0A9A93 !important;
  color:#fff !important;
  font-weight:800 !important;
  padding:14px 24px !important;
  border-radius:12px !important;
  text-decoration:none !important;
}

@media (max-width:768px){
  .bonus-offer a {
    display:block !important;
    width:100% !important;
    text-align:center !important;
  }
}
