/* Generic utility classes */
.badge {
  display: inline-block; 
  font-size: 0.75rem; 
  font-weight: 600; 
  letter-spacing: 0.08em; 
  padding: 8px 16px; 
  border-radius: 50px; 
}

.blue-badge {
  background-color: #e8f0fe; 
  color: #3d6fe8; 
}

.orange-badge {
  background-color: #fff4e5; 
  color: #ff7300; 
}

.pink-badge {
  background-color: #fff0f6; 
  color: #ff4d6d; 
}

.purple-badge {
  background-color: #e2d6f7; 
  color: #673AB7; 
}

.red-badge {
  background-color: #FBEBEC; 
  color: #D85A63; 
}

.gray-badge {
  background-color: #f1f5f9; 
  color: #64748b; 
}

.green-badge {
  background-color: #e6f4ea; 
  color: #38d47f; 
}

.opacity-90 {
  opacity: 0.90; 
}

.fade-in {
  opacity: 1; 
  transform: translateY(0px); 
  transition: opacity 0.6s, transform 0.6s;
}

.purple-gradient {
  background: linear-gradient(135deg, #35268b 0%, #392d80 45%, #6359a0 100%);
}

.bg-bookings {
  background-color: #53CFE9;
}

.bg-lettings {
  background-color: #6EAB4C;
}

.bg-parents {
  background-color: #EC7500;
}

.bg-blue-gradient {
  background: linear-gradient(135deg, #3454f5 0%, #6d4df2 100%); border-color: rgba(255,255,255,0.08) !important;
}

.bg-light-blue-gradient {
  background: linear-gradient(180deg, #eef7ff 0%, #f8fbff 100%);
}

.bg-light-gray-gradient {
  background: linear-gradient(180deg, #f3f6fb 0%, #eef4ff 48%, #ffffff 100%);
}

.bg-red {
  background-color: #d64747;
}

.h-60 { 
  height: 60px; 
}

.w-60 { 
  width: 60px; 
}

.h-80 { 
  height: 80px; 
}

.w-80 { 
  width: 80px; 
}

.medium-red { 
  color: #D85A63; 
}

.indigo { 
  color: #6056f3; 
}

.rounded-4 { 
  border-radius: 1rem !important; 
} 

.bottom-right {
  right: 0px;
  bottom: 0px;
}

.bottom-left {
  left: 0px;
  bottom: 0px;
}

.top-right {
  right: 0px;
  top: 0px;
}

.top-left {
  left: 0px;
  top: 0px;
}

/* Card stat styles */
.floating-card { 
  display: flex; 
  background-color: white;
  border-radius: 12px;
  position: absolute;
  padding: 12px 16px;
  box-shadow: 0 8px 30px rgba(15, 23, 42, 0.12);
  z-index: 4;
  align-items: center;
  gap: 10px;
  color: #1e293b;
  white-space: nowrap;
} 

.floating-card-icon { 
  width: 42px; 
  height: 42px; 
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem; 
  flex-shrink: 0; 
}

.floating-card-stat { 
  display: flex; 
  flex-direction: column; 
  gap: 2px; 
  text-align: left; 
}

.floating-card-stat-title { 
  font-size: 0.9rem; 
  font-weight: 600; 
  color: #0f172a; 
  line-height: 1.2; 
}

.floating-card-stat-num { 
  font-size: 1rem; 
  font-weight: 700; 
  color: #0f172a; 
  line-height: 1.2; 
} 

.floating-card-stat-label { 
  font-size: 0.8rem; 
  color: #64748b; 
  font-weight: 400; 
}

/* Vs circle separator styles */
.vs-circle {
  border-radius: 50%;
  color: #c7cbd3;
  position: absolute;
  flex-shrink: 0;
  background-color: #ffffff;
  font-weight: 600;
  font-size: 30px;
  height: 80px;
  width: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 400;
  border: 4px #c7cbd3 solid;
  left: calc(50% - 40px);
  top: calc(50% - 40px);
}

/* Hero section styles */
.hero-section { 
  background: linear-gradient(135deg, #f0f4ff 0%, #e8f0fe 50%, #f5f0ff 100%); 
  padding: 80px 0 60px;
  overflow: hidden; 
  position: relative; 
} 

.hero-section::before { 
  content: ''; 
  position: absolute; 
  top: -80px; 
  right: -80px; 
  width: 400px; 
  height: 400px; 
  background: radial-gradient(circle, rgba(99, 102, 241, 0.08) 0%, transparent 70%); 
  border-radius: 50%; 
  pointer-events: none; 
}

.hero-section::after { 
  content: ''; 
  position: absolute; 
  bottom: -60px; 
  left: -60px; 
  width: 300px; 
  height: 300px; 
  background: radial-gradient(circle, rgba(139, 92, 246, 0.07) 0%, transparent 70%); 
  border-radius: 50%; 
  pointer-events: none; 
}

.hero-badge { 
  display: inline-flex; 
  align-items: center; 
  gap: 6px; 
  background-color: rgba(99, 102, 241, 0.1); 
  color: #4f46e5; 
  font-size: 0.8rem; 
  font-weight: 600; 
  padding: 6px 14px; 
  border-radius: 50px; 
  margin-bottom: 20px; 
  letter-spacing: 0.03em; 
} 

.hero-badge .bi { 
  font-size: 0.85rem; 
} 

.hero-title { 
  font-size: clamp(2rem, 4vw, 3.2rem); 
  font-weight: 800; 
  line-height: 1.15; 
  color: #0f172a; 
  margin-bottom: 20px; 
  letter-spacing: -0.02em; 
}

.hero-title span { 
  color: #4f46e5; 
} 

.hero-subtitle { 
  font-size: 1.1rem; 
  color: #475569; 
  line-height: 1.75; 
  margin-bottom: 16px; 
  max-width: 560px; 
} 

.btn-hero-primary { 
  background-color: #4f46e5; 
  border-color: #4f46e5; 
  color: #fff; 
  padding: 14px 28px; 
  font-weight: 600; 
  font-size: 1rem; 
  border-radius: 10px; 
  transition: all 0.2s ease; 
  box-shadow: 0 4px 14px rgba(79, 70, 229, 0.35); 
} 

.btn-hero-primary:hover { 
  background-color: #4338ca; 
  border-color: #4338ca; 
  color: #fff; 
  transform: translateY(-1px); 
  box-shadow: 0 6px 20px rgba(79, 70, 229, 0.45); 
} 

.btn-hero-secondary { 
  background-color: #fff; 
  border: 2px solid #e2e8f0; 
  color: #1e293b; 
  padding: 13px 28px; 
  font-weight: 600; 
  font-size: 1rem; 
  border-radius: 10px; 
  transition: all 0.2s ease; 
} 

.btn-hero-secondary:hover { 
  background-color: #f8fafc; 
  border-color: #cbd5e1; 
  color: #1e293b; 
  transform: translateY(-1px); 
  box-shadow: 0 4px 12px rgba(0,0,0,0.08); 
} 

.hero-bullets { 
  margin-top: 14px; 
  margin-bottom: 30px; 
  display: flex; 
} 

.hero-bullet-item { 
  text-align: left;
  display: flex; 
  align-items: center; 
  font-size: 1rem; 
  color: #475569; 
  font-weight: 500; 
  opacity: 1; 
  transform: translateY(0px); transition: opacity 0.4s, transform 0.4s;
} 

.hero-image-wrapper { 
  position: relative; 
  padding: 10px; 
} 

.hero-image-main { 
  box-shadow: 0 20px 60px rgba(15, 23, 42, 0.15); 
  width: 100%; 
  display: block; 
  position: relative; 
  z-index: 2; 
} 

.hero-image-card { 
  background: #ffffff; 
  border-radius: 20px; 
  box-shadow: 0 20px 60px rgba(15, 23, 42, 0.12), 0 4px 16px rgba(15, 23, 42, 0.06), 0 0 0 1px rgba(99, 102, 241, 0.08); 
  overflow: hidden; 
  width: 100%; 
  border: 1px solid #e8eaf6; 
} 

.hero-image-card .card-icon { 
  width: 32px; 
  height: 32px; 
  border-radius: 8px; 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  font-size: 1rem; 
  flex-shrink: 0; 
} 
   
@media (max-width: 991.98px) {
  .hero-section { 
    padding: 60px 0 50px; 
    text-align: center; 
  } 
    
  .hero-subtitle { 
    margin-left: auto; 
    margin-right: auto; 
  }

  .hero-bullets { 
    justify-content: center; 
  } 
  
  .hero-cta-group { 
    justify-content: center; 
  }

  .hero-image-wrapper { 
    margin-top: 0px; 
  } 
}
    
@media (max-width: 575.98px) { 
  .btn-hero-primary, 
  .btn-hero-secondary { 
    width: 100%; 
    text-align: center; 
  }

  .hero-cta-group { 
    flex-direction: column; 
  } 
}

/* CTA Section styles - should only be one per page */
.cta-band { 
  background: linear-gradient(135deg, #1a1060 0%, #2d1b8e 40%, #3d1fa8 70%, #4a1fb5 100%); 
  padding: 80px 20px; 
  position: relative; 
  overflow: hidden; 
} 

.cta-band::before { 
  content: ''; 
  position: absolute; 
  top: -80px; 
  right: -80px; 
  width: 320px; 
  height: 320px; 
  background: radial-gradient(circle, rgba(255, 115, 0, 0.18) 0%, transparent 70%); 
  border-radius: 50%; 
  pointer-events: none; 
} 

.cta-band::after { 
  content: ''; 
  position: absolute; 
  bottom: -100px; 
  left: -60px; 
  width: 280px; 
  height: 280px; 
  background: radial-gradient(circle, rgba(255, 115, 0, 0.12) 0%, transparent 70%); 
  border-radius: 50%; 
  pointer-events: none; 
}
    
.cta-inner { 
  background: rgba(255, 255, 255, 0.06); 
  border: 1px solid rgba(255, 255, 255, 0.12); 
  border-radius: 24px; 
  padding: 64px 48px; 
  max-width: 780px; 
  margin: 0 auto; 
  position: relative; 
  z-index: 1; 
  box-shadow: 0 8px 48px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.1); 
}

.cta-accent-line { 
  display: inline-block; 
  width: 48px; 
  height: 4px; 
  background: linear-gradient(90deg, #ff7300, #ff9a00); 
  border-radius: 2px; 
  margin-bottom: 28px; 
} 

.cta-heading { 
  font-size: clamp(1.75rem, 4vw, 2.6rem); 
  font-weight: 800; 
  color: #ffffff; 
  line-height: 1.2; 
  letter-spacing: -0.5px; 
  margin-bottom: 20px; 
} 

.cta-support { 
  font-size: 1.1rem; 
  color: rgba(220, 220, 255, 0.85); 
  line-height: 1.7; 
  max-width: 560px; 
  margin: 0 auto 40px auto; 
}
    
.btn-cta-primary { 
  background: linear-gradient(135deg, #ff7300, #ff9a00); 
  border: none; 
  color: #ffffff; 
  font-weight: 700; 
  font-size: 1rem; 
  padding: 14px 32px; 
  border-radius: 50px; 
  transition: all 0.25s ease; 
  box-shadow: 0 4px 20px rgba(255, 115, 0, 0.45); 
  text-decoration: none; 
  display: inline-block; 
} 

.btn-cta-primary:hover { 
  background: linear-gradient(135deg, #e86500, #ff8800); 
  transform: translateY(-2px); 
  box-shadow: 0 8px 28px rgba(255, 115, 0, 0.55); color: #ffffff; 
}

.btn-cta-secondary { 
  background: transparent; 
  border: 2px solid rgba(255, 255, 255, 0.45); 
  color: #ffffff; 
  font-weight: 600; 
  font-size: 1rem; 
  padding: 13px 32px; 
  border-radius: 50px; 
  transition: all 0.25s ease; 
  text-decoration: none; 
  display: inline-block; 
} 
    
.btn-cta-secondary:hover { 
  background: rgba(255, 255, 255, 0.12); 
  border-color: rgba(255, 255, 255, 0.75); 
  color: #ffffff; 
  transform: translateY(-2px); 
}

.cta-trust-badges { 
  margin-top: 36px; 
  display: flex; 
  align-items: center; 
  justify-content: center; gap: 24px; flex-wrap: wrap; 
} 
    
.cta-trust-item { 
  display: flex; 
  align-items: center; 
  gap: 7px; 
  color: rgba(200, 200, 240, 0.75); 
  font-size: 0.82rem; 
  font-weight: 500; 
} 

.cta-trust-item .trust-dot { 
  width: 14px; 
  height: 14px; 
  background: #ff7300; 
  border-radius: 50%; 
  flex-shrink: 0; 
} 
    
@media (max-width: 576px) { 
  .cta-inner { 
    padding: 44px 28px; 
  } 
  
  .cta-buttons { 
    flex-direction: column; 
    align-items: center; 
  } 
  
  .btn-cta-primary, .btn-cta-secondary { 
    width: 100%; 
    max-width: 280px; 
    text-align: center; 
  } 
}

/* Feature card component styles */
.feature-card { 
  transition: transform 0.18s ease, 
  box-shadow 0.18s ease; 
} 

.feature-card:hover { 
  transform: translateY(-3px); 
  box-shadow: 0 0.5rem 1.25rem rgba(0,0,0,0.09) !important; 
}

/* Section header and blurb styles */
.section-header {
  font-weight: 700;
  font-size: 2.25rem;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.section-blurb {
  color: #4b5563 !important;
  font-size: calc(1.2563rem + 0.0756vw) !important;
  font-weight: 400 !important;
  line-height: 1.6;
}

/* Screenshot browser window wrapper styles */
.screenshot-wrapper {
  border-radius: 16px; 
  overflow: hidden; 
  box-shadow: 0 20px 60px rgba(15, 23, 42, 0.12), 0 4px 16px rgba(15, 23, 42, 0.06); 
  background: #fff; 
  position: relative; 
} 

.screenshot-wrapper img { 
  display: block;
  width: 100%; 
  height: auto; 
} 

.screenshot-browser-bar { 
  background: #f1f5f9; 
  padding: 10px 16px; 
  display: flex; 
  align-items: center; 
  gap: 6px; 
  border-bottom: 1px solid #e2e8f0; 
} 

.browser-dot, .dot { 
  width: 10px; 
  height: 10px; 
  border-radius: 50%; 
  display: inline-block; 
  flex-shrink: 0;
} 

.dot-orange { 
  background-color: #fbbf6a; 
}

.dot-blue { 
  background-color: #3b82f6; 
}

.dot-purple { 
  background-color: #8159f8; 
}

.dot-pink { 
  background-color: #ff4d6d; 
}

.dot-red { 
  background-color: #fc5f5a; 
} 

.dot-yellow { 
  background-color: #fdbc40; 
} 

.dot-green { 
  background-color: #34c759; 
} 