* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #000;
  color: #e0e6ed;
  font-family: "Inter", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  overflow-x: hidden;
  line-height: 1.6;
}

/* Top promotional bar styles - Updated to match page color scheme */
.promo-bar {
  background: linear-gradient(135deg, #49b675, #66d689);
  color: white;
  text-align: center;
  padding: 12px 20px;
  font-weight: 600;
  font-size: 14px;
  position: relative;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(73, 182, 117, 0.3);
  animation: pulse-glow 2s infinite alternate;
}

@keyframes pulse-glow {
  0% {
    box-shadow: 0 2px 10px rgba(73, 182, 117, 0.3);
  }
  100% {
    box-shadow: 0 2px 20px rgba(73, 182, 117, 0.5);
  }
}

.promo-bar-content {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  max-width: 1200px;
  margin: 0 auto;
}

.promo-text {
  display: flex;
  align-items: center;
  gap: 8px;
}

.promo-highlight {
  background: rgba(255, 255, 255, 0.2);
  padding: 4px 8px;
  border-radius: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  animation: bounce 1.5s infinite;
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-3px);
  }
  60% {
    transform: translateY(-2px);
  }
}

.promo-icon {
  font-size: 16px;
  animation: rotate 2s linear infinite;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* Marquee scrolling text bar - Updated to match page colors */
.marquee-bar {
  background: linear-gradient(45deg, #1a1a1a, #2d2d2d);
  color: #e0e6ed;
  padding: 8px 0;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  border-top: 2px solid #49b675;
  border-bottom: 2px solid #49b675;
}

.marquee-content {
  display: inline-block;
  padding-left: 100%;
  animation: marquee 30s linear infinite;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.5px;
}

@keyframes marquee {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-100%, 0, 0);
  }
}

.marquee-item {
  display: inline-block;
  margin-right: 50px;
  color: #49b675;
}

.marquee-separator {
  color: #666;
  margin: 0 10px;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  background: #000;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  padding: 2rem;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    circle at center,
    rgba(73, 182, 117, 0.1) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.logo {
  width: 150px;
  margin-bottom: 2rem;
}

.hero-content {
  z-index: 2;
}

.hero h2 {
  font-size: clamp(1.2rem, 4vw, 1.8rem);
  margin-bottom: 1rem;
  color: #49b675;
  text-transform: uppercase;
  letter-spacing: 2px;
  opacity: 0;
  animation: slideUp 1s ease-out 0.3s forwards;
}

.hero h1 {
  font-size: clamp(3rem, 8vw, 5rem);
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #49b675, #66d689, #49b675);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 3s ease-in-out infinite,
    slideUp 1s ease-out 0.6s forwards;
  opacity: 0;
  font-weight: 800;
}

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

@keyframes slideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero h2,
.hero h1 {
  transform: translateY(30px);
}

.hero p {
  font-size: clamp(1rem, 3vw, 1.4rem);
  margin-bottom: 2rem;
  opacity: 0;
  animation: slideUp 1s ease-out 0.9s forwards;
  transform: translateY(30px);
}

.register-btn {
  padding: 16px 40px;
  font-size: 18px;
  background: linear-gradient(135deg, #49b675, #3a9d5f);
  border: none;
  color: white;
  border-radius: 50px;
  cursor: pointer;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  opacity: 0;
  animation: slideUp 1s ease-out 1.2s forwards,
    pop 1.5s infinite alternate;
  transform: translateY(30px);
  box-shadow: 0 10px 30px rgba(73, 182, 117, 0.3);
}

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

.register-btn::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;
}

.register-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(73, 182, 117, 0.4);
}

.register-btn:hover::before {
  left: 100%;
}

.register-btn:active {
  transform: translateY(-1px);
}

.countdown {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3rem;
  max-width: 600px;
  opacity: 0;
  animation: slideUp 1s ease-out 1.5s forwards;
  transform: translateY(30px);
}

.countdown-item {
  text-align: center;
  background: rgba(73, 182, 117, 0.1);
  border: 1px solid rgba(73, 182, 117, 0.3);
  border-radius: 15px;
  padding: 1.5rem 1rem;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.countdown-item:hover {
  transform: translateY(-5px);
  background: rgba(73, 182, 117, 0.15);
  border-color: rgba(73, 182, 117, 0.5);
}

.countdown-item span {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: bold;
  display: block;
  color: #49b675;
  margin-bottom: 0.5rem;
}

.countdown-item label {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #a0a0a0;
}

/* Common Section Styles */
.section {
  padding: 5rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.section-intro {
  font-size: 1.2rem;
  text-align: center;
  margin-bottom: 3rem;
  color: #d0d0d0;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* About Webinar Section */
.about-webinar-section {
  background: #fff;
  color: #333;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 5rem 0;
}

.about-webinar-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.about-webinar-container h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: #49b675;
  text-align: center;
}

.webinar-overview {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  align-items: center;
}

.overview-lead {
  font-size: 1.3rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  color: #666;
  font-weight: 500;
}

.overview-highlights {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.highlight-icon {
  font-size: 2rem;
  background: linear-gradient(135deg, #49b675, #66d689);
  width: 60px;
  height: 60px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.highlight-text h3 {
  color: #49b675;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.highlight-text p {
  color: #666;
  line-height: 1.5;
}

.overview-stats {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.stat-card {
  background: linear-gradient(135deg, #49b675, #3a9d5f);
  color: white;
  padding: 2rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(73, 182, 117, 0.2);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: bold;
  display: block;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1rem;
  opacity: 0.9;
}

/* Who Should Attend Section */
.who-should-attend-section {
  background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
  color: #e0e6ed;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 5rem 0;
}

.who-should-attend-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.who-should-attend-container h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #49b675;
  text-align: center;
}

.attendee-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.attendee-card {
  background: rgba(73, 182, 117, 0.1);
  border: 1px solid rgba(73, 182, 117, 0.3);
  border-radius: 20px;
  padding: 2rem;
  transition: all 0.3s ease;
}

.attendee-card:hover {
  transform: translateY(-10px);
  background: rgba(73, 182, 117, 0.15);
  box-shadow: 0 20px 40px rgba(73, 182, 117, 0.2);
}

.attendee-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}

.attendee-card h3 {
  color: #49b675;
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.attendee-card ul {
  list-style: none;
  padding: 0;
}

.attendee-card li {
  padding: 0.4rem 0;
  position: relative;
  padding-left: 1.5rem;
  color: #d0d0d0;
}

.attendee-card li:before {
  content: "▸";
  position: absolute;
  left: 0;
  color: #49b675;
  font-weight: bold;
}

.ideal-participant {
  background: rgba(73, 182, 117, 0.1);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  margin-top: 3rem;
}

.ideal-participant h3 {
  color: #49b675;
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
}

.participant-checklist {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  max-width: 800px;
  margin: 0 auto;
}

.checklist-item {
  background: rgba(73, 182, 117, 0.1);
  padding: 1rem;
  border-radius: 10px;
  color: #d0d0d0;
  font-weight: 500;
}

/* What You Will Gain Section */
.what-you-gain-section {
  background: #fff;
  color: #333;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 5rem 0;
}

.what-you-gain-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.what-you-gain-container h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #49b675;
  text-align: center;
}

.gains-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 3rem;
  margin: 3rem 0;
}

.gain-category {
  background: #f8f9fa;
  border-radius: 20px;
  padding: 2.5rem 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.gain-category:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(73, 182, 117, 0.15);
}

.gain-category h3 {
  color: #49b675;
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

.gain-items {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.gain-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.gain-icon {
  font-size: 1.5rem;
  background: linear-gradient(135deg, #49b675, #66d689);
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.gain-content h4 {
  color: #333;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.gain-content p {
  color: #666;
  line-height: 1.5;
  font-size: 0.95rem;
}

.transformation-promise {
  background: linear-gradient(135deg, #49b675, #3a9d5f);
  color: white;
  border-radius: 20px;
  padding: 3rem;
  text-align: center;
  margin-top: 3rem;
}

.transformation-promise h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.transformation-promise p {
  font-size: 1.1rem;
  line-height: 1.6;
  opacity: 0.95;
}

/* Handovers & Bonus Section */
.handovers-bonus-section {
  background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
  color: #e0e6ed;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 5rem 0;
}

.handovers-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.handovers-container h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #49b675;
  text-align: center;
}

.handovers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.handover-card {
  background: rgba(73, 182, 117, 0.1);
  border: 1px solid rgba(73, 182, 117, 0.3);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  position: relative;
  transition: all 0.3s ease;
}

.handover-card:hover {
  transform: translateY(-10px);
  background: rgba(73, 182, 117, 0.15);
  box-shadow: 0 20px 40px rgba(73, 182, 117, 0.2);
}

.handover-card.featured {
  border: 2px solid #49b675;
  background: rgba(73, 182, 117, 0.15);
}

.handover-card.bonus {
  border: 2px solid #f39c12;
  background: rgba(243, 156, 18, 0.1);
}

.handover-badge {
  position: absolute;
  top: -10px;
  right: 20px;
  background: linear-gradient(135deg, #49b675, #3a9d5f);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.handover-card.bonus .handover-badge {
  background: linear-gradient(135deg, #f39c12, #e67e22);
}

.handover-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}

.handover-card h3 {
  color: #49b675;
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.handover-value {
  color: #f39c12;
  font-weight: bold;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.handover-card ul {
  list-style: none;
  padding: 0;
}

.handover-card li {
  padding: 0.4rem 0;
  color: #d0d0d0;
  font-size: 0.95rem;
}

.total-value {
  background: linear-gradient(135deg, #49b675, #3a9d5f);
  color: white;
  border-radius: 20px;
  padding: 3rem;
  text-align: center;
  margin-top: 3rem;
}

.total-value h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.total-value p {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  opacity: 0.95;
}

.value-highlight {
  background: rgba(255, 255, 255, 0.1);
  padding: 1rem;
  border-radius: 10px;
  font-style: italic;
}

/* Certificate Section */
.certificate-section {
  background: #fff;
  color: #333;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 5rem 0;
}

.certificate-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.certificate-container h2 {
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #49b675;
  text-align: center;
}

.certificate-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.certificate-mockup {
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
  border: 3px solid #49b675;
  border-radius: 20px;
  padding: 3rem 2rem;
  text-align: center;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  position: relative;
}

.certificate-mockup::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  bottom: 10px;
  border: 2px solid #49b675;
  border-radius: 15px;
  pointer-events: none;
}

.certificate-header {
  margin-bottom: 2rem;
}

.certificate-logo {
  font-size: 3rem;
  color: #49b675;
  margin-bottom: 1rem;
}

.certificate-mockup h3 {
  color: #49b675;
  font-size: 1.5rem;
  margin-bottom: 2rem;
}

.certificate-name {
  color: #333;
  font-size: 1.8rem;
  font-weight: bold;
  margin: 1rem 0;
  border-bottom: 2px solid #49b675;
  padding-bottom: 0.5rem;
}

.certificate-course {
  color: #49b675;
  font-size: 1.3rem;
  font-weight: 600;
  margin: 1.5rem 0;
}

.certificate-details {
  display: flex;
  justify-content: space-between;
  margin-top: 2rem;
}

.certificate-date,
.certificate-signature {
  color: #666;
  font-size: 0.9rem;
}

.certificate-info h3 {
  color: #49b675;
  font-size: 1.5rem;
  margin-bottom: 2rem;
}

.certificate-benefits {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.certificate-benefit {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.benefit-icon {
  font-size: 1.5rem;
  background: linear-gradient(135deg, #49b675, #66d689);
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.benefit-text h4 {
  color: #333;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.benefit-text p {
  color: #666;
  line-height: 1.5;
  font-size: 0.95rem;
}

.certificate-requirement {
  background: #f8f9fa;
  border-radius: 15px;
  padding: 2rem;
  border-left: 5px solid #49b675;
}

.requirement-box h4 {
  color: #49b675;
  margin-bottom: 1rem;
}

.requirement-box ul {
  list-style: none;
  padding: 0;
  margin-bottom: 1rem;
}

.requirement-box li {
  padding: 0.3rem 0;
  color: #666;
}

/* Testimonials Section */
.testimonials-section {
  background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
  color: #e0e6ed;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 5rem 0;
}

.testimonials-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.testimonials-container h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #49b675;
  text-align: center;
}

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

.testimonial-card {
  background: rgba(73, 182, 117, 0.1);
  border: 1px solid rgba(73, 182, 117, 0.3);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-10px);
  background: rgba(73, 182, 117, 0.15);
  box-shadow: 0 20px 40px rgba(73, 182, 117, 0.2);
}

.testimonial-card.featured {
  border: 2px solid #49b675;
  background: rgba(73, 182, 117, 0.15);
}

.testimonial-rating {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.testimonial-text {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  color: #d0d0d0;
  font-style: italic;
}

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

.author-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #49b675, #3a9d5f);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.author-info h4 {
  color: #49b675;
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
}

.author-info p {
  color: #a0a0a0;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.author-outcome {
  background: rgba(73, 182, 117, 0.2);
  color: #49b675;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.testimonials-stats {
  margin: 4rem 0 3rem 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.stat-item {
  text-align: center;
  background: rgba(73, 182, 117, 0.1);
  border-radius: 15px;
  padding: 2rem 1rem;
}

.stat-item .stat-number {
  font-size: 2.5rem;
  font-weight: bold;
  color: #49b675;
  display: block;
  margin-bottom: 0.5rem;
}

.stat-item .stat-label {
  color: #d0d0d0;
  font-size: 0.9rem;
}

.testimonial-cta {
  text-align: center;
  background: rgba(73, 182, 117, 0.1);
  border-radius: 20px;
  padding: 3rem;
}

.testimonial-cta h3 {
  color: #49b675;
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.testimonial-cta p {
  color: #d0d0d0;
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

/* Footer */
.footer {
  background: #000;
  color: #e0e6ed;
  border-top: 1px solid rgba(73, 182, 117, 0.2);
  padding: 4rem 0 2rem 0;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.footer-main {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-section h4 {
  color: #49b675;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.footer-description {
  color: #a0a0a0;
  line-height: 1.6;
  margin: 1.5rem 0;
}

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

.social-link {
  color: #a0a0a0;
  text-decoration: none;
  padding: 0.5rem;
  border-radius: 5px;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.social-link:hover {
  color: #49b675;
  background: rgba(73, 182, 117, 0.1);
}

.footer-links {
  list-style: none;
  padding: 0;
}

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

.footer-links a {
  color: #a0a0a0;
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 0.9rem;
}

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

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: #a0a0a0;
  font-size: 0.9rem;
}

.contact-icon {
  font-size: 1.1rem;
}

.footer-bottom {
  border-top: 1px solid rgba(73, 182, 117, 0.2);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  color: #a0a0a0;
  font-size: 0.9rem;
  margin: 0;
}

.footer-certifications {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer-certifications span {
  color: #49b675;
  font-size: 0.8rem;
  background: rgba(73, 182, 117, 0.1);
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
  border: 1px solid rgba(73, 182, 117, 0.3);
}

/* Floating Bar */
.floating-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #49b675, #3a9d5f);
  color: white;
  padding: 1rem 0;
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  transform: translateY(100%);
  transition: transform 0.3s ease;
  opacity: 0;
  visibility: hidden;
}

.floating-bar.visible {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.floating-bar-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.floating-bar-text {
  flex: 1;
}

.floating-bar-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background: #ff4444;
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 68, 68, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(255, 68, 68, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 68, 68, 0);
  }
}

.floating-bar-subtitle {
  font-size: 0.9rem;
  opacity: 0.9;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.floating-countdown {
  color: #ffeb3b;
  font-weight: 600;
}

.floating-bar .register-btn {
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid white;
  color: white;
  padding: 0.8rem 1.5rem;
  font-size: 0.9rem;
  backdrop-filter: blur(10px);
}

.floating-bar .register-btn:hover {
  background: white;
  color: #49b675;
  transform: translateY(-2px);
}

/* Expert Popup */
.expert-popup {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: linear-gradient(135deg, #49b675, #3a9d5f);
  color: white;
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(73, 182, 117, 0.3);
  max-width: 300px;
  z-index: 1001;
  transform: translateX(400px);
  transition: transform 0.5s ease;
  opacity: 0;
  visibility: hidden;
}

.expert-popup.visible {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}

.close-btn:hover {
  background: rgba(255, 255, 255, 0.2);
}

.expert-popup h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  margin-right: 20px;
}

.expert-popup p {
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

.connect-btn {
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid white;
  color: white;
  padding: 0.8rem 1.5rem;
  border-radius: 25px;
  cursor: pointer;
  font-weight: 600;
  width: 100%;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.connect-btn:hover {
  background: white;
  color: #49b675;
  transform: translateY(-2px);
}

/* Fade-in Animation */
.fade-in {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
  .webinar-overview,
  .certificate-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  
  .floating-bar-content {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 3rem 1rem;
  }
  
  .countdown {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  
  .attendee-grid,
  .gains-grid,
  .handovers-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-main {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .expert-popup {
    bottom: 1rem;
    right: 1rem;
    left: 1rem;
    max-width: none;
  }
  
  .floating-bar-content {
    padding: 0 1rem;
  }

  .promo-bar {
    padding: 10px 15px;
    font-size: 12px;
  }
  
  .promo-bar-content {
    flex-direction: column;
    gap: 5px;
  }
  
  .promo-text {
    flex-wrap: wrap;
    justify-content: center;
  }

  .marquee-content {
    font-size: 11px;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 1rem;
  }
  
  .countdown {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .countdown-item {
    padding: 1rem;
  }
  
  .countdown-item span {
    font-size: 1.5rem;
  }
  
  .register-btn {
    padding: 14px 30px;
    font-size: 16px;
  }
  
  .section-intro {
    font-size: 1rem;
  }
  
  .about-webinar-container h2,
  .who-should-attend-container h2,
  .what-you-gain-container h2,
  .handovers-container h2,
  .certificate-container h2,
  .testimonials-container h2 {
    font-size: 2rem;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
  }
  
  .overview-highlights,
  .gain-items,
  .certificate-benefits {
    gap: 1rem;
  }
  
  .highlight-item,
  .gain-item,
  .certificate-benefit {
    flex-direction: column;
    text-align: center;
  }
  
  .highlight-icon,
  .gain-icon,
  .benefit-icon {
    align-self: center;
  }
}

/* Print Styles */
@media print {
  .floating-bar,
  .expert-popup,
  .register-btn {
    display: none !important;
  }
  
  * {
    background: white !important;
    color: black !important;
    box-shadow: none !important;
  }
  
  .hero {
    page-break-after: always;
  }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
  .register-btn,
  .connect-btn,
  .floating-bar .register-btn {
    border: 3px solid;
  }
  
  .attendee-card,
  .testimonial-card,
  .handover-card {
    border: 2px solid;
  }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  .pulse-dot {
    animation: none;
  }
  
  .register-btn {
    animation: none;
  }
}

/* Ripple Effect for Buttons */
.register-btn,
.connect-btn {
  position: relative;
  overflow: hidden;
}

.ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: scale(0);
  animation: ripple-animation 0.6s linear;
  pointer-events: none;
}

@keyframes ripple-animation {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

/* Force Popup Visibility for Testing (remove in production) */
.expert-popup.force-visible {
  transform: translateX(0) !important;
  opacity: 1 !important;
  visibility: visible !important;
}

.floating-bar.force-visible {
  transform: translateY(0) !important;
  opacity: 1 !important;
  visibility: visible !important;
}