@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

/* ============================================
   COLOR SYSTEM
   ============================================ */
:root {
  /* Background Colors - Navy Blue Theme */
  --bg-primary: rgb(13, 24, 53);
  --bg-secondary: rgb(20, 35, 65);
  --bg-tertiary: rgb(28, 45, 80);
  
  /* Text Hierarchy */
  --text-primary: rgb(255, 255, 255);
  --text-secondary: rgb(218, 218, 218);
  --text-muted: rgb(161, 161, 170);
  
  /* Border System */
  --border-primary: rgba(255, 255, 255, 0.15);
  --border-subtle: rgba(255, 255, 255, 0.08);
  
  /* Primary CTA - Bright Blue */
  --accent-primary: rgb(0, 123, 255);
  --accent-hover: rgb(0, 105, 230);
  --accent-pressed: rgb(0, 90, 200);
  --accent-bg: rgba(0, 123, 255, 0.1);
  
  /* Orange Accent for Headlines */
  --accent-orange: rgb(247, 147, 30);
  --accent-orange-hover: rgb(230, 130, 20);
}

/* ============================================
   GLOBAL STYLES
   ============================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
}

.page-wrapper {
  min-height: 100vh;
  padding-bottom: 180px; /* space for floating bar on mobile */
}

/* ============================================
   CONTAINER SYSTEM
   ============================================ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

@media (max-width: 768px) {
  .container {
    padding: 0 16px;
  }
}

/* ============================================
   HEADER - COMPACT
   ============================================ */
.page-header {
  background: var(--bg-primary);
  padding: 12px 0;
  border-bottom: 1px solid var(--border-subtle);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(10px);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, rgb(0, 150, 255), rgb(0, 90, 200));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}

.brand-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: 0.3px;
}

/* ============================================
   BUTTON COMPONENTS
   ============================================ */
.btn-primary {
  background: var(--accent-primary);
  color: var(--bg-primary);
  border: none;
  border-radius: 12px;
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  min-height: 52px;
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
}

.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 123, 255, 0.4);
}

.btn-primary:active {
  transform: translateY(0);
  background: var(--accent-pressed);
}

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

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

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
  padding: 60px 0 40px;
  background: linear-gradient(180deg, rgb(2, 6, 23), rgb(12, 17, 43), rgb(2, 6, 23));
  position: relative;
  overflow: hidden;
}

.gradient-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(37, 99, 235, 0.15), transparent 50%),
              radial-gradient(circle at 80% 50%, rgba(37, 99, 235, 0.1), transparent 50%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-left {
  padding-top: 0;
}

/* LIVE Badge */
.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 8px 16px;
  border-radius: 50px;
  margin-bottom: 20px;
}

.live-dot {
  width: 8px;
  height: 8px;
  background: rgb(239, 68, 68);
  border-radius: 50%;
  animation: pulse-red 2s ease-in-out infinite;
}

@keyframes pulse-red {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(239, 68, 68, 0);
  }
}

.live-text {
  font-size: 12px;
  font-weight: 700;
  color: rgb(239, 68, 68);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.live-subtitle {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}

/* Headlines */
.hero-headline {
  font-size: 44px;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.headline-white {
  color: white;
}

.headline-gradient {
  background: linear-gradient(135deg, rgb(251, 146, 60), rgb(251, 191, 36));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subheadline {
  font-size: 17px;
  color: rgb(209, 213, 219);
  line-height: 1.5;
  margin-bottom: 20px;
  max-width: 600px;
}

/* Checkmarks */
.benefits-checkmarks {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.checkmark-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.check-icon {
  width: 28px;
  height: 28px;
  background: rgba(34, 197, 94, 0.2);
  border: 1px solid rgba(34, 197, 94, 0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgb(34, 197, 94);
  flex-shrink: 0;
}

.checkmark-item span {
  font-size: 14px;
  color: rgb(209, 213, 219);
  font-weight: 500;
}

/* Mentor Card */
.hero-right {
  position: relative;
}

.mentor-card-hero {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  backdrop-filter: blur(20px);
  border: 1px solid rgba(59, 130, 246, 0.3);
  border-radius: 20px;
  padding: 24px;
  text-align: center;
}

.mentor-image-wrapper {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  padding: 6px;
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  box-shadow: 
    0 0 0 6px rgba(59, 130, 246, 0.15),
    0 20px 50px rgba(59, 130, 246, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.mentor-image {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  background: #0b1220;
;
}

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

.mentor-name {
  font-size: 22px;
  font-weight: 700;
  color: white;
  margin-bottom: 6px;
}

.mentor-subtitle {
  font-size: 14px;
  color: rgb(251, 146, 60);
  font-weight: 600;
  margin-bottom: 10px;
}

.mentor-achievement {
  font-size: 13px;
  color: rgb(156, 163, 175);
  font-weight: 500;
}

@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .hero-headline {
    font-size: 36px;
  }
}

@media (max-width: 640px) {
  .hero-section {
    padding: 40px 0 30px;
  }
  
  .hero-headline {
    font-size: 28px;
  }
  
  .hero-subheadline {
    font-size: 15px;
  }
  
  .mentor-image-placeholder {
    width: 120px;
    height: 120px;
  }
}

/* ============================================
   EVENT DETAILS SECTION
   ============================================ */
.event-details-section {
  padding: 40px 0;
  background: linear-gradient(180deg, rgb(2, 6, 23), rgb(12, 17, 43));
}

.section-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 32px;
}

.header-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.5), transparent);
  max-width: 150px;
}

.section-title {
  font-size: 32px;
  font-weight: 700;
  color: white;
  white-space: nowrap;
}

/* 2x2 Grid */
.details-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}

.glass-card {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(37, 99, 235, 0.05));
  backdrop-filter: blur(20px);
  border: 1px solid rgba(59, 130, 246, 0.3);
  border-radius: 16px;
  padding: 20px;
  text-align: center;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.glass-card:hover {
  transform: translateY(-6px);
  border-color: rgba(59, 130, 246, 0.6);
  box-shadow: 0 15px 40px rgba(59, 130, 246, 0.2);
}

.card-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(37, 99, 235, 0.2));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgb(96, 165, 250);
  margin: 0 auto 14px;
}

.card-title {
  font-size: 17px;
  font-weight: 700;
  color: white;
  margin-bottom: 6px;
}

.card-subtitle {
  font-size: 13px;
  color: rgb(156, 163, 175);
  font-weight: 500;
}
/* CTA Section */
.cta-section {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.btn-strategy-call {
  width: 100%;
  background: linear-gradient(135deg, rgb(37, 99, 235), rgb(59, 130, 246));
  border: none;
  border-radius: 14px;
  padding: 18px 32px;
  cursor: pointer;
  position: relative;
  overflow: hidden; /* MUST stay */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 30px rgba(37, 99, 235, 0.4);
}

.btn-content {
  position: relative;
  z-index: 2;
}

.btn-strategy-call:hover {
  transform: scale(1.03);
  box-shadow: 0 12px 40px rgba(37, 99, 235, 0.6);
}

.btn-gradient-overlay {
  position: absolute;
  inset: 0;                 /* replaces top/left/right/bottom */
  border-radius: 14px;      /* MUST match button radius */
  pointer-events: none;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.12),
    transparent
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.btn-strategy-call:hover .btn-gradient-overlay {
  opacity: 1;
}

.btn-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  position: relative;
  z-index: 1;
}

.btn-text {
  font-size: 18px;
  font-weight: 700;
  color: white;
}

.btn-icon {
  color: white;
}

/* Pricing Display */
.pricing-display {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 12px;
}

.price-old {
  font-size: 20px;
  color: rgb(156, 163, 175);
  text-decoration: line-through;
  font-weight: 600;
}

.price-new {
  font-size: 36px;
  font-weight: 800;
  color: rgb(253, 224, 71);
  animation: pulse-price 2s ease-in-out infinite;
}

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

/* Urgency Text */
.urgency-text {
  font-size: 14px;
  font-weight: 600;
  color: rgb(248, 113, 113);
  animation: blink-urgent 2s ease-in-out infinite;
}

@keyframes blink-urgent {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

@media (max-width: 768px) {
  .event-details-section {
    padding: 30px 0;
  }
  
  .details-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  
  .section-title {
    font-size: 26px;
  }
  
  .header-line {
    max-width: 80px;
  }
  
  .btn-content {
    flex-direction: column;
    gap: 10px;
  }
  
  .btn-text {
    font-size: 16px;
  }
  
  .price-new {
    font-size: 32px;
  }
}

/* ============================================
   BENEFITS SECTION
   ============================================ */
.benefits-section {
  padding: 50px 0;
  background: #0A0E27;
  position: relative;
  overflow: hidden;
}

.particles-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(2px 2px at 20% 30%, rgba(0, 217, 255, 0.3), transparent),
    radial-gradient(2px 2px at 60% 70%, rgba(255, 107, 53, 0.3), transparent),
    radial-gradient(1px 1px at 50% 50%, rgba(124, 58, 237, 0.3), transparent),
    radial-gradient(1px 1px at 80% 10%, rgba(0, 217, 255, 0.2), transparent);
  background-size: 200% 200%;
  animation: particles-float 20s ease-in-out infinite;
  pointer-events: none;
}

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

.benefits-header {
  text-align: center;
  margin-bottom: 48px;
  position: relative;
  z-index: 1;
}

.section-title-modern {
  font-size: 40px;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 16px;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.highlight-text {
  background: linear-gradient(135deg, #00D9FF, #7C3AED);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle-modern {
  font-size: 18px;
  color: #B8C5D6;
  font-weight: 500;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.5;
}

/* Benefits Grid */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 48px;
  position: relative;
  z-index: 1;
}

.benefit-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 217, 255, 0.2);
  border-radius: 20px;
  padding: 28px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  cursor: pointer;
}

.card-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(0, 217, 255, 0.1), transparent 70%);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.benefit-card:hover .card-glow {
  opacity: 1;
}

/* Card Effects */
.card-effect-1:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 60px rgba(0, 217, 255, 0.4);
  border-color: #00D9FF;
}

.card-effect-2:hover {
  animation: pulse-card 0.6s ease-in-out;
  box-shadow: 0 20px 60px rgba(255, 107, 53, 0.4);
  border-color: #FF6B35;
}

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

.card-effect-3:hover {
  animation: shake-card 0.5s ease-in-out;
  box-shadow: 0 20px 60px rgba(124, 58, 237, 0.4);
  border-color: #7C3AED;
}

@keyframes shake-card {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-8px); }
  75% { transform: translateX(8px); }
}

.card-effect-4:hover {
  transform: scale(1.05);
  box-shadow: 0 20px 60px rgba(0, 217, 255, 0.4);
  border-color: #00D9FF;
}

.benefit-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, rgba(0, 217, 255, 0.2), rgba(124, 58, 237, 0.2));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #00D9FF;
  margin-bottom: 28px;
  transition: transform 0.3s ease, background 0.3s ease;
}

.benefit-card:hover .benefit-icon {
  transform: rotate(10deg) scale(1.1);
  background: linear-gradient(135deg, rgba(0, 217, 255, 0.3), rgba(124, 58, 237, 0.3));
}

.benefit-title {
  font-size: 24px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 16px;
  line-height: 1.3;
}

.benefit-description {
  font-size: 16px;
  color: #B8C5D6;
  line-height: 1.7;
  font-weight: 400;
}

/* Trust Indicators */
.trust-indicators {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}

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

.trust-value {
  font-size: 40px;
  font-weight: 800;
  background: linear-gradient(135deg, #00D9FF, #FF6B35);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 6px;
  line-height: 1;
}

.trust-label {
  font-size: 14px;
  color: #B8C5D6;
  font-weight: 500;
}

/* CTA Button */
.benefits-cta {
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}

.btn-transformation {
  background: linear-gradient(135deg, #FF6B35, #FF8A5B);
  color: white;
  border: none;
  border-radius: 14px;
  padding: 16px 40px;
  font-size: 17px;
  font-weight: 700;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 8px 30px rgba(255, 107, 53, 0.4);
  animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% {
    box-shadow: 0 10px 40px rgba(255, 107, 53, 0.4);
  }
  50% {
    box-shadow: 0 10px 50px rgba(255, 107, 53, 0.6);
  }
}

.btn-transformation:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 50px rgba(255, 107, 53, 0.6);
}

.btn-glow {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  animation: btn-shine 3s ease-in-out infinite;
}

@keyframes btn-shine {
  0% { left: -100%; }
  50%, 100% { left: 100%; }
}

/* Scroll Indicator */
.scroll-indicator {
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.scroll-arrow {
  width: 30px;
  height: 50px;
  border: 2px solid rgba(0, 217, 255, 0.5);
  border-radius: 25px;
  position: relative;
}

.scroll-arrow::before {
  content: '';
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 6px;
  background: #00D9FF;
  border-radius: 50%;
  animation: scroll-down 2s ease-in-out infinite;
}

@keyframes scroll-down {
  0% {
    top: 8px;
    opacity: 1;
  }
  100% {
    top: 32px;
    opacity: 0;
  }
}

@media (max-width: 968px) {
  .benefits-section {
    padding: 80px 0;
  }
  
  .section-title-modern {
    font-size: 36px;
  }
  
  .section-subtitle-modern {
    font-size: 18px;
  }
  
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .trust-indicators {
    flex-wrap: wrap;
    gap: 40px;
  }
  
  .trust-value {
    font-size: 36px;
  }
}

@media (max-width: 640px) {
  .benefit-card {
    padding: 32px 24px;
  }
  
  .benefit-icon {
    width: 64px;
    height: 64px;
  }
  
  .benefit-title {
    font-size: 20px;
  }
}

/* ============================================
   SUCCESS STORIES SECTION
   ============================================ */
.success-stories-section {
  padding: 50px 0;
  background: linear-gradient(180deg, rgb(2, 6, 23), rgb(12, 17, 43));
}

.success-header {
  text-align: center;
  margin-bottom: 32px;
}

.success-title {
  font-size: 36px;
  font-weight: 800;
  color: white;
  margin-bottom: 8px;
}

.gradient-text {
  background: linear-gradient(135deg, rgb(96, 165, 250), rgb(168, 85, 247));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.success-subtitle {
  font-size: 16px;
  color: rgb(156, 163, 175);
}

/* Hero Testimonial */
.hero-testimonial {
  display: grid;
  grid-template-columns: 400px 1fr;
  align-items: center; /* 🔑 prevents vertical drop */
  gap: 32px;

  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.05),
    rgba(255, 255, 255, 0.02)
  );
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 24px;
  margin-bottom: 32px;
}

.hero-image-section {
  width: 400px;
  height: 400px;
}
.hero-image {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center; /* 🔑 aligns text with image */
}

.company-branding {
  display: flex;
  align-items: center;
  gap: 8px;
}

.company-icon {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, rgb(251, 146, 60), rgb(251, 191, 36));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.company-name {
  font-size: 13px;
  font-weight: 600;
  color: rgb(156, 163, 175);
}

.hero-quote {
  font-size: 20px;
  line-height: 1.6;
  color: white;
  font-weight: 500;
  margin: 0;
}

.author-details {
  margin-top: 8px;
}

.author-name {
  font-size: 18px;
  font-weight: 700;
  color: white;
}

.author-title {
  font-size: 14px;
  color: rgb(156, 163, 175);
}

.metrics-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(96, 165, 250, 0.5), transparent);
  margin: 8px 0;
}

.key-metrics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.metric-item {
  text-align: left;
}

.metric-value {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 4px;
}

.metric-value.blue {
  color: rgb(96, 165, 250);
}

.metric-value.purple {
  color: rgb(168, 85, 247);
}

.metric-label {
  font-size: 13px;
  color: rgb(156, 163, 175);
}

/* Testimonials Carousel */
.testimonials-carousel-container {
  overflow: hidden;        /* hides extra cards */
  width: 100%;
  position: relative;
}

.testimonials-carousel {
  display: flex;
  gap: 24px;
  width: max-content;
  will-change: transform;
  animation: scrollLeft 40s linear infinite;
}

.testimonials-carousel::-webkit-scrollbar {
  display: none;
}

.testimonial-carousel-card {
  min-width: 360px;
  max-width: 360px;
  flex-shrink: 0;

  background: linear-gradient(
    135deg,
    rgba(30, 41, 59, 0.6),
    rgba(15, 23, 42, 0.6)
  );
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 24px;
  cursor: pointer;
}


.testimonial-carousel-card:hover {
  border-color: rgba(96, 165, 250, 0.5);
  box-shadow: 0 12px 40px rgba(96, 165, 250, 0.2);
}

.stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
}

.star {
  color: #FCD34D;
}

.carousel-quote {
  font-size: 15px;
  line-height: 1.6;
  color: white;
  margin-bottom: 16px;
  min-height: 120px;
}

.carousel-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin-bottom: 16px;
}

.carousel-author {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.carousel-name {
  font-size: 15px;
  font-weight: 700;
  color: white;
}

.carousel-title {
  font-size: 13px;
  color: rgb(156, 163, 175);
}

.fade-overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  pointer-events: none;
  z-index: 1;
}

.fade-overlay.left {
  left: 0;
  background: linear-gradient(90deg, rgb(12, 17, 43), transparent);
}

.fade-overlay.right {
  right: 0;
  background: linear-gradient(270deg, rgb(12, 17, 43), transparent);
}

/* Success CTA */
.success-cta {
  text-align: center;
  margin-top: 12px;
}

.cta-question {
  font-size: 18px;
  color: white;
  font-weight: 600;
  margin-bottom: 12px;
}

.btn-success-cta {
  background: linear-gradient(135deg, rgb(59, 130, 246), rgb(147, 51, 234));
  color: white;
  border: none;
  border-radius: 12px;
  padding: 16px 40px;
  font-size: 17px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}

.btn-success-cta:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 35px rgba(59, 130, 246, 0.6);
}

@media (max-width: 1024px) {
  .hero-testimonial {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .hero-image-section {
    width: 100%;
    height: 300px;
    margin: 0 auto;
  }
  
  .key-metrics {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

@media (max-width: 640px) {
  .success-title {
    font-size: 28px;
  }
  
  .hero-quote {
    font-size: 17px;
  }
  
  .testimonial-carousel-card {
    min-width: 300px;
  }
}

/* ============================================
   HOST BIO SECTION
   ============================================ */
.host-section {
  padding: 50px 0;
  background: var(--bg-primary);
}

.host-section .section-title {
  font-size: 48px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 48px;
  letter-spacing: -0.015em;
  color: white;
}

.host-card {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 64px;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}

.host-image-container {
  width: 100%;
  height: 420px;
  border-radius: 24px;
  overflow: hidden;
  border: 2px solid var(--border-subtle);
}

.host-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.host-name {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.host-title {
  font-size: 18px;
  color: var(--accent-orange);
  margin-bottom: 24px;
  font-weight: 600;
}
.host-description {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 16px;
}

.host-description:last-of-type {
  margin-bottom: 0;
}

@media (max-width: 900px) {
  .host-section {
    padding: 60px 0;
  }
  
  .host-section .section-title {
    font-size: 32px;
  }
  
  .host-card {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .host-image-container {
    width: 200px;
    height: 200px;
    margin: 0 auto;
  }
  
  .host-content {
    text-align: center;
  }
}

/* ============================================
   BONUSES SECTION
   ============================================ */
.bonuses-section {
  padding: 50px 0;
  background: var(--bg-secondary);
}

.section-header-bonuses {
  text-align: center;
  margin-bottom: 40px;
}

.section-label {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(124, 58, 237, 0.15);
  border: 1px solid rgba(124, 58, 237, 0.3);
  border-radius: 50px;
  color: rgb(168, 85, 247);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 16px;
}

.section-title-bonuses {
  font-size: 36px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.accent-text {
  color: var(--accent-orange);
}

.section-description-bonuses {
  font-size: 16px;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

.bonuses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.bonus-card {
  background: var(--bg-primary);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  padding: 32px;
  transition: transform 0.3s ease, border-color 0.3s ease;
  display: flex;
  flex-direction: column;
}

.bonus-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent-primary);
}

.bonus-icon {
  width: 56px;
  height: 56px;
  background: var(--accent-bg);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-primary);
  margin-bottom: 20px;
}

.bonus-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.bonus-description {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 20px;
}

.bonus-pricing {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}

.original-price {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-muted);
  text-decoration: line-through;
}

.current-price {
  font-size: 22px;
  font-weight: 700;
  color: var(--accent-primary);
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .bonuses-section {
    padding: 60px 0;
  }
  
  .bonuses-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   BEFORE/AFTER SECTION
   ============================================ */
.before-after-section {
  padding: 50px 0;
  background: var(--bg-primary);
}

.transformation-header {
  text-align: center;
  margin-bottom: 48px;
}

.transformation-title {
  font-size: 42px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.transformation-description {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.before-after-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto 60px;
}

.before-card,
.after-card {
  background: var(--bg-secondary);
  border: 2px solid var(--border-subtle);
  border-radius: 20px;
  padding: 32px;
}

.ba-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 2px solid var(--border-subtle);
}

.header-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-icon-box.negative {
  background: rgba(239, 68, 68, 0.15);
  color: rgb(239, 68, 68);
}

.header-icon-box.positive {
  background: rgba(34, 197, 94, 0.15);
  color: rgb(34, 197, 94);
}

.ba-header h3 {
  font-size: 26px;
  font-weight: 700;
}

.before-header {
  color: rgb(239, 68, 68);
}

.after-header {
  color: rgb(34, 197, 94);
}

.ba-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.ba-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 15px;
  line-height: 1.7;
}

.ba-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.ba-icon.negative {
  background: rgba(239, 68, 68, 0.15);
  color: rgb(239, 68, 68);
}

.ba-icon.positive {
  background: rgba(34, 197, 94, 0.15);
  color: rgb(34, 197, 94);
}

.before-item {
  color: var(--text-muted);
}

.after-item {
  color: var(--text-secondary);
}

.item-text {
  flex: 1;
}

/* Transformation CTA */
.transformation-cta {
  text-align: center;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(147, 51, 234, 0.1));
  border: 1px solid rgba(59, 130, 246, 0.3);
  border-radius: 24px;
  padding: 48px;
  max-width: 800px;
  margin: 0 auto;
}

.cta-content-transform {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.cta-title-transform {
  font-size: 40px;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.2;
}

.cta-subtitle-transform {
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 600px;
  line-height: 1.6;
}

.cta-button-transform {
  background: linear-gradient(135deg, rgb(59, 130, 246), rgb(147, 51, 234));
  color: white;
  border: none;
  border-radius: 14px;
  padding: 18px 48px;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 10px 40px rgba(59, 130, 246, 0.4);
}

.cta-button-transform:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 15px 50px rgba(59, 130, 246, 0.6);
}

.cta-guarantee {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 500;
}

.guarantee-icon {
  font-size: 20px;
}

@media (max-width: 768px) {
  .before-after-section {
    padding: 40px 0;
  }
  
  .before-after-grid {
    grid-template-columns: 1fr;
  }
  
  .transformation-title {
    font-size: 32px;
  }
  
  .transformation-cta {
    padding: 32px 24px;
  }
  
  .cta-title-transform {
    font-size: 28px;
  }
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials-section {
  padding: 50px 0;
  background: var(--bg-secondary);
}

.testimonials-section .section-title {
  font-size: 48px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 48px;
  letter-spacing: -0.015em;
  color: white;
}

.stats-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  padding: 48px;
  background: var(--bg-primary);
  border-radius: 16px;
  margin-bottom: 64px;
  border: 1px solid var(--border-subtle);
  flex-wrap: wrap;
}

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

.stat-number {
  font-size: 56px;
  font-weight: 800;
  color: var(--accent-primary);
  margin-bottom: 8px;
  line-height: 1;
  text-shadow: 0 2px 10px rgba(0, 123, 255, 0.3);
}

.stat-label {
  font-size: 15px;
  color: var(--text-secondary);
  max-width: 200px;
  line-height: 1.4;
  font-weight: 500;
}

.stat-divider {
  width: 1px;
  height: 60px;
  background: var(--border-subtle);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

.testimonial-card {
  background: var(--bg-primary);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  padding: 32px;
  transition: transform 0.3s ease, border-color 0.3s ease;
  display: flex;
  flex-direction: column;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent-primary);
}

.quote-icon {
  color: var(--accent-primary);
  opacity: 0.3;
  margin-bottom: 16px;
}

.testimonial-quote {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 24px;
  flex-grow: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.testimonial-photo {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--accent-primary);
}

.testimonial-result {
  font-size: 14px;
  color: var(--accent-orange);
  font-weight: 600;
  padding: 8px 16px;
  background: var(--bg-secondary);
  border-radius: 8px;
  display: inline-block;
}

@media (max-width: 768px) {
  .testimonials-section {
    padding: 60px 0;
  }
  
  .testimonials-section .section-title {
    font-size: 32px;
  }
  
  .stats-banner {
    flex-direction: column;
    gap: 32px;
    padding: 32px 24px;
  }
  
  .stat-divider {
    display: none;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   REGISTRATION FORM SECTION
   ============================================ */
.form-section {
  padding: 50px 0;
  background: var(--bg-primary);
}

.form-container {
  max-width: 600px;
  margin: 0 auto;
  background: var(--bg-secondary);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  padding: 48px;
}

.form-header {
  text-align: center;
  margin-bottom: 40px;
}

.form-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.form-subtitle {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.registration-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
}

.input-field {
  background: var(--bg-primary);
  border: 2px solid var(--border-primary);
  border-radius: 12px;
  padding: 16px 20px;
  font-size: 16px;
  color: var(--text-primary);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  width: 100%;
  font-family: 'Inter', sans-serif;
}

.input-field::placeholder {
  color: var(--text-muted);
}

.input-field:focus {
  outline: none;
  border-color: var(--accent-primary);
  box-shadow: 0 0 0 4px rgba(0, 123, 255, 0.1);
}

.form-submit {
  margin-top: 16px;
  width: 100%;
}

@media (max-width: 768px) {
  .form-section {
    padding: 60px 0;
  }
  
  .form-container {
    padding: 32px 24px;
  }
  
  .form-title {
    font-size: 24px;
  }
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-subtle);
  padding: 40px 24px 24px;
  margin-top: 0;
}

.footer-simple {
  max-width: 600px;
  margin: 0 auto 40px;
}

.footer-section-center {
  text-align: center;
}

.footer-brand {
  font-size: 28px;
  font-weight: 700;
  color: var(--accent-orange);
  margin-bottom: 16px;
}

.footer-description {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 24px;
}

.footer-social {
  display: flex;
  gap: 12px;
  justify-content: center;
}

.footer-social-link {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: var(--bg-tertiary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
  text-decoration: none;
}

.footer-social-link:hover {
  background: var(--accent-primary);
  color: var(--bg-primary);
  transform: translateY(-2px);
}

.footer-bottom {
  text-align: center;
  padding-top: 32px;
  border-top: 1px solid var(--border-subtle);
}

.footer-copyright {
  font-size: 14px;
  color: var(--text-muted);
}

@media (max-width: 768px) {
  .footer {
    padding: 50px 16px 32px;
  }
}

/* ============================================
   FLOATING PRICING SECTION
   ============================================ */
.floating-pricing-wrapper {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  z-index: 999999;
  transform: none !important;
  transition: none !important;
  padding-bottom: env(safe-area-inset-bottom);
}


.floating-pricing-container {
  background: linear-gradient(135deg, rgba(13, 24, 53, 0.97), rgba(20, 35, 65, 0.97));
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(0, 123, 255, 0.3);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.4);
  padding: 12px 0;
}

.floating-pricing-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* Compact Pricing Card */
.pricing-card-compact {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.pricing-info-compact {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 16px;
}

.pricing-headline-compact {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
  white-space: nowrap;
}

.pricing-details-compact {
  display: flex;
  align-items: center;
  gap: 12px;
}

.price-strike-compact {
  font-size: 16px;
  color: var(--text-muted);
  text-decoration: line-through;
}

.price-main-compact {
  font-size: 28px;
  font-weight: 800;
  color: var(--accent-primary);
  text-shadow: 0 2px 10px rgba(0, 123, 255, 0.3);

  animation: pricePulse 1.6s ease-in-out infinite;
}

.btn-register-compact {
  background: linear-gradient(135deg, rgb(0, 150, 255), rgb(0, 123, 255));
  color: white;
  border: none;
  border-radius: 10px;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 15px rgba(0, 123, 255, 0.4);
  white-space: nowrap;
  text-decoration: none;
}

.btn-register-compact:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 123, 255, 0.6);
}

.btn-register-compact:active {
  transform: translateY(0);
}

/* Compact Footer */
.compact-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.trust-compact,
.countdown-compact {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--text-secondary);
}

.trust-compact {
  color: rgb(34, 197, 94);
}

@media (max-width: 968px) {
  .pricing-headline-compact {
    font-size: 14px;
  }
  
  .price-main-compact {
    font-size: 24px;
  }
  
  .btn-register-compact {
    padding: 12px 24px;
    font-size: 14px;
  }
}


/* ============================================
   SVG ICON STYLES
   ============================================ */
svg {
  display: inline-block;
  vertical-align: middle;
}
/* === CTA OVERLAY HARD RESET === */
.btn-strategy-call::before,
.btn-strategy-call::after,
.btn-strategy-call .btn-gradient-overlay,
.btn-strategy-call .btn-glow {
  display: none !important;
}

@keyframes scrollLeft {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ===============================
   FLOATING BAR ATTENTION EFFECT
   =============================== */

/* ===============================
   SOFT ATTENTION PULSE
   =============================== */

.floating-pricing-container {
  animation: floatingPulse 4s ease-in-out infinite;
}

@keyframes floatingPulse {
  0%, 100% {
    box-shadow:
      0 -4px 18px rgba(0, 0, 0, 0.35),
      0 0 0 rgba(0, 123, 255, 0);
  }
  50% {
    box-shadow:
      0 -6px 28px rgba(0, 0, 0, 0.55),
      0 0 22px rgba(0, 123, 255, 0.35);
  }
}

@keyframes pricePulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.08);
    opacity: 0.85;
  }
}
.floating-pricing-wrapper {
  padding-bottom: env(safe-area-inset-bottom);
}
/* ===============================
   MOBILE FLOATING CTA FIX
   =============================== */

@media (max-width: 640px) {
  .countdown-compact {
    font-size: 18px;      /* BIG on mobile */
    font-weight: 900;
    text-align: center;
  }
}

  .floating-pricing-wrapper {
    padding-left: env(safe-area-inset-left);
    padding-right: env(safe-area-inset-right);
  }


  .pricing-info-compact {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .pricing-headline-compact {
    font-size: 13px;
  }

  .price-main-compact {
    font-size: 22px;
  }

  .btn-register-compact {
    padding: 12px 16px;
    font-size: 14px;
    white-space: nowrap;
    width: auto;          /* 🔑 THIS is critical */
    flex-shrink: 0;
  }

  /* Move urgency BELOW, centered */
  .compact-footer {
    margin-top: 6px;
    font-size: 11px;
  }
}
.floating-pricing-container {
  max-width: 100%;
  overflow: hidden;
}
body {
  overflow-x: hidden;
}

/* CTA micro motion */
.btn-register-compact {
  animation: ctaNudge 3.5s ease-in-out infinite;
}

@keyframes ctaNudge {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-2px);
  }
}
<script>

/* ===============================
   BIG TIMER – FLOATING BAR
   =============================== */

.countdown-compact {
  font-size: 16px;        /* increased */
  font-weight: 800;       /* bold */
  letter-spacing: 0.5px;
  color: #FACC15;         /* premium yellow */
  text-transform: uppercase;
}
/* Floating bar smooth hide/show (safe) */
@media (max-width: 640px) {
  .pricing-card-compact {
    flex-direction: row;
    align-items: center;
    gap: 10px;
  }

  .pricing-info-compact {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .btn-register-compact {
    padding: 12px 16px;
    font-size: 14px;
    white-space: nowrap;
    flex-shrink: 0;
  }

  .countdown-compact {
    font-size: 18px;
    font-weight: 900;
    text-align: center;
  }
}
html, body {
  overflow-x: hidden;
}

.floating-pricing-wrapper {
  backface-visibility: hidden;
  will-change: auto;
}