/* ==========================================================================
   Full-Width Background Banner Hero (Inline HTML Image Layer)
   ========================================================================== */
.byws-hero-section {
  position: relative !important;
  width: 100% !important;
  min-height: 560px !important;
  background-color: #ffffff !important;
  display: flex !important;
  align-items: center !important;
  box-sizing: border-box !important;
  overflow: hidden !important;
  border-bottom: 1px solid #e2e8f0 !important;
}

/* Background image & gradient overlay */
.byws-hero-bg-layer {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  z-index: 1 !important;
}

.byws-hero-banner-img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: right center !important;
  display: block !important;
}

.byws-hero-gradient-overlay {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  background: linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0.96) 42%, rgba(255, 255, 255, 0.75) 54%, rgba(255, 255, 255, 0) 70%) !important;
  pointer-events: none !important;
}

/* Shell & Foreground Content */
.byws-hero-shell {
  width: 100% !important;
  max-width: 1360px !important;
  margin: 0 auto !important;
  padding: 60px 32px !important;
  box-sizing: border-box !important;
  position: relative !important;
  z-index: 2 !important;
}

.byws-hero-content {
  max-width: 580px !important;
}

.byws-hero-title {
  font-size: 50px !important;
  font-weight: 900 !important;
  color: #081d38 !important;
  line-height: 1.12 !important;
  letter-spacing: -1.2px !important;
  margin: 0 0 16px 0 !important;
}

.byws-cyan-text {
  color: #0070f3 !important;
}

.byws-hero-desc {
  font-size: 15px !important;
  color: #475569 !important;
  line-height: 1.6 !important;
  margin: 0 0 32px 0 !important;
  font-weight: 500 !important;
}

/* Action Buttons */
.byws-hero-actions {
  display: flex !important;
  align-items: center !important;
  gap: 16px !important;
  margin-bottom: 45px !important;
}

.byws-btn-primary {
  background: #0066ff !important;
  color: #ffffff !important;
  padding: 13px 26px !important;
  border-radius: 8px !important;
  font-size: 14px !important;
  font-weight: 800 !important;
  text-decoration: none !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  box-shadow: 0 6px 18px rgba(0, 102, 255, 0.28) !important;
  transition: all 0.25s ease !important;
}

.byws-btn-primary:hover {
  background: #0052cc !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 24px rgba(0, 102, 255, 0.38) !important;
}

.byws-btn-secondary {
  background: #ffffff !important;
  color: #081d38 !important;
  border: 1.5px solid #e2e8f0 !important;
  padding: 12px 22px !important;
  border-radius: 8px !important;
  font-size: 14px !important;
  font-weight: 800 !important;
  text-decoration: none !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 10px !important;
  transition: all 0.25s ease !important;
}

.byws-btn-secondary:hover {
  border-color: #0066ff !important;
  color: #0066ff !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 4px 14px rgba(8, 29, 56, 0.06) !important;
}

.byws-play-icon {
  width: 22px !important;
  height: 22px !important;
  background: #0066ff !important;
  color: #ffffff !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 9px !important;
  padding-left: 2px !important;
}

/* Stat Badges Strip */
.byws-hero-stats-row {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 12px !important;
  padding-top: 24px !important;
  border-top: 1px solid #e2e8f0 !important;
}

.byws-stat-item {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
}

.byws-stat-icon {
  color: #0066ff !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-shrink: 0 !important;
}

.byws-stat-icon svg {
  width: 24px !important;
  height: 24px !important;
}

.byws-stat-info {
  display: flex !important;
  flex-direction: column !important;
  line-height: 1.2 !important;
}

.byws-stat-info strong {
  font-size: 13.5px !important;
  font-weight: 900 !important;
  color: #081d38 !important;
}

.byws-stat-info span {
  font-size: 11px !important;
  color: #64748b !important;
  font-weight: 600 !important;
  margin-top: 2px !important;
}

/* Responsive */
@media (max-width: 1024px) {
  .byws-hero-gradient-overlay {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.9) 100%) !important;
  }
  .byws-hero-content {
    max-width: 100% !important;
  }
  .byws-hero-stats-row {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 18px !important;
  }
}

@media (max-width: 640px) {
  .byws-hero-title {
    font-size: 34px !important;
  }
  .byws-hero-actions {
    flex-direction: column !important;
  }
  .byws-btn-primary, .byws-btn-secondary {
    width: 100% !important;
    justify-content: center !important;
  }
  .byws-hero-stats-row {
    grid-template-columns: 1fr !important;
  }
}

/* ==========================================================================
   Section 2: What's Your Water Problem? (4 Split Cards)
   ========================================================================== */
.byws-problem-section {
  position: relative !important;
  padding: 85px 0 95px !important;
  background-color: #ffffff !important;
  border-bottom: 1px solid #e2e8f0 !important;
}

.byws-problem-shell {
  max-width: 1360px !important;
  margin: 0 auto !important;
  padding: 0 32px !important;
  box-sizing: border-box !important;
}

/* Centered Header */
.byws-problem-head-center {
  text-align: center !important;
  margin-bottom: 50px !important;
}

.byws-problem-title {
  font-size: 36px !important;
  font-weight: 900 !important;
  color: #081d38 !important;
  letter-spacing: -0.6px !important;
  margin: 0 0 10px 0 !important;
  line-height: 1.2 !important;
}

.byws-problem-subtitle {
  font-size: 14.5px !important;
  color: #64748b !important;
  margin: 0 auto !important;
  max-width: 600px !important;
  font-weight: 500 !important;
}

/* 4 Cards Grid */
.byws-problem-cards-grid {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 22px !important;
}

.byws-problem-card {
  background: #ffffff !important;
  border: 1.5px solid #e2e8f0 !important;
  border-radius: 20px !important;
  overflow: hidden !important;
  box-shadow: 0 6px 20px rgba(8, 29, 56, 0.04) !important;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease !important;
}

.byws-problem-card:hover {
  transform: translateY(-5px) !important;
  box-shadow: 0 14px 32px rgba(8, 29, 56, 0.08) !important;
  border-color: #0070f3 !important;
}

.byws-card-inner {
  display: flex !important;
  align-items: stretch !important;
  justify-content: space-between !important;
  height: 100% !important;
  min-height: 280px !important;
}

/* Left Content Area of Card */
.byws-card-content-side {
  flex: 1.1 !important;
  padding: 24px 18px 22px 22px !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: space-between !important;
  z-index: 2 !important;
}

.byws-prob-icon-circle {
  width: 44px !important;
  height: 44px !important;
  border-radius: 50% !important;
  background: #eff6ff !important;
  color: #0070f3 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin-bottom: 14px !important;
}

.byws-prob-icon-circle svg {
  width: 22px !important;
  height: 22px !important;
}

.byws-prob-title {
  font-size: 17px !important;
  font-weight: 900 !important;
  color: #081d38 !important;
  margin: 0 0 8px 0 !important;
  line-height: 1.25 !important;
}

.byws-prob-desc {
  font-size: 12.5px !important;
  color: #64748b !important;
  line-height: 1.5 !important;
  margin: 0 0 18px 0 !important;
  font-weight: 500 !important;
}

.byws-prob-link {
  font-size: 13px !important;
  font-weight: 800 !important;
  color: #0070f3 !important;
  text-decoration: none !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  transition: gap 0.2s ease, color 0.2s ease !important;
  margin-top: auto !important;
}

.byws-problem-card:hover .byws-prob-link {
  color: #0052cc !important;
  gap: 10px !important;
}

.byws-link-arrow {
  font-size: 15px !important;
  line-height: 1 !important;
}

/* Right Visual Area of Card (Blended Gradient Image) */
.byws-card-visual-side {
  flex: 0.9 !important;
  position: relative !important;
  overflow: hidden !important;
}

.byws-prob-side-img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
  transition: transform 0.35s ease !important;
  mask-image: linear-gradient(to left, rgba(0,0,0,1) 35%, rgba(0,0,0,0) 100%) !important;
  -webkit-mask-image: linear-gradient(to left, rgba(0,0,0,1) 35%, rgba(0,0,0,0) 100%) !important;
}

.byws-problem-card:hover .byws-prob-side-img {
  transform: scale(1.08) !important;
}

/* Responsive Adaptability */
@media (max-width: 1180px) {
  .byws-problem-cards-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 20px !important;
  }
}

@media (max-width: 640px) {
  .byws-problem-cards-grid {
    grid-template-columns: 1fr !important;
  }
  .byws-problem-title {
    font-size: 28px !important;
  }
  .byws-card-inner {
    min-height: 220px !important;
  }
}

/* ==========================================================================
   Section 3: How Ridge Builds Your Solution (5-Step Timeline)
   ========================================================================== */
.byws-process-section {
  position: relative !important;
  padding: 85px 0 95px !important;
  background-color: #f8fafc !important;
  border-bottom: 1px solid #e2e8f0 !important;
}

.byws-process-shell {
  max-width: 1360px !important;
  margin: 0 auto !important;
  padding: 0 32px !important;
  box-sizing: border-box !important;
}

/* Header */
.byws-process-head-center {
  text-align: center !important;
  margin-bottom: 60px !important;
}

.byws-process-title {
  font-size: 36px !important;
  font-weight: 900 !important;
  color: #081d38 !important;
  letter-spacing: -0.6px !important;
  line-height: 1.2 !important;
  margin: 0 0 10px 0 !important;
}

.byws-process-subtitle {
  font-size: 14.5px !important;
  color: #64748b !important;
  margin: 0 auto !important;
  max-width: 580px !important;
  font-weight: 500 !important;
}

/* Horizontal Timeline Track */
.byws-timeline-track {
  display: grid !important;
  grid-template-columns: repeat(5, 1fr) !important;
  gap: 20px !important;
  position: relative !important;
}

/* Connecting Dotted Line between bubbles */
.byws-timeline-track::before {
  content: "" !important;
  position: absolute !important;
  top: 38px !important;
  left: 8% !important;
  right: 8% !important;
  height: 2px !important;
  border-top: 2px dashed #cbd5e1 !important;
  z-index: 1 !important;
}

/* Single Step Node */
.byws-step-node {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  text-align: center !important;
  position: relative !important;
  z-index: 2 !important;
}

/* Circular Icon Bubble */
.byws-step-icon-bubble {
  width: 76px !important;
  height: 76px !important;
  border-radius: 50% !important;
  background: #ffffff !important;
  border: 1.5px solid #dbeafe !important;
  color: #0070f3 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin-bottom: 18px !important;
  box-shadow: 0 6px 18px rgba(0, 112, 243, 0.08) !important;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease !important;
}

.byws-step-node:hover .byws-step-icon-bubble {
  transform: scale(1.12) !important;
  border-color: #0070f3 !important;
  box-shadow: 0 10px 25px rgba(0, 112, 243, 0.2) !important;
}

.byws-step-icon-bubble svg {
  width: 32px !important;
  height: 32px !important;
}

/* Step Number */
.byws-step-num {
  font-size: 13px !important;
  font-weight: 800 !important;
  color: #0070f3 !important;
  display: block !important;
  margin-bottom: 6px !important;
}

/* Step Name */
.byws-step-name {
  font-size: 17px !important;
  font-weight: 900 !important;
  color: #081d38 !important;
  margin: 0 0 8px 0 !important;
  line-height: 1.25 !important;
}

/* Step Description */
.byws-step-desc {
  font-size: 12.5px !important;
  color: #64748b !important;
  line-height: 1.55 !important;
  margin: 0 !important;
  font-weight: 500 !important;
  max-width: 200px !important;
}

/* ==========================================================================
   Responsive Adaptability
   ========================================================================== */
@media (max-width: 1024px) {
  .byws-timeline-track {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 35px 20px !important;
  }
  .byws-timeline-track::before {
    display: none !important;
  }
}

@media (max-width: 640px) {
  .byws-timeline-track {
    grid-template-columns: 1fr !important;
    gap: 30px !important;
  }
  .byws-process-title {
    font-size: 28px !important;
  }
  .byws-step-icon-bubble {
    width: 68px !important;
    height: 68px !important;
  }
  .byws-step-icon-bubble svg {
    width: 28px !important;
    height: 28px !important;
  }
}

/* ==========================================================================
   Section 4: Solutions We Can Build For You (6-Card Product Grid)
   ========================================================================== */
.byws-catalog-section {
  position: relative !important;
  padding: 85px 0 95px !important;
  background-color: #ffffff !important;
  border-bottom: 1px solid #e2e8f0 !important;
}

.byws-catalog-shell {
  max-width: 1360px !important;
  margin: 0 auto !important;
  padding: 0 32px !important;
  box-sizing: border-box !important;
}

/* Header Row */
.byws-catalog-header-row {
  display: flex !important;
  justify-content: space-between !important;
  align-items: flex-end !important;
  margin-bottom: 45px !important;
  gap: 20px !important;
}

.byws-catalog-title {
  font-size: 34px !important;
  font-weight: 900 !important;
  color: #081d38 !important;
  letter-spacing: -0.6px !important;
  line-height: 1.2 !important;
  margin: 0 0 8px 0 !important;
}

.byws-catalog-subtitle {
  font-size: 14.5px !important;
  color: #64748b !important;
  margin: 0 !important;
  font-weight: 500 !important;
}

/* View All Button */
.byws-btn-view-all {
  background: #ffffff !important;
  color: #0070f3 !important;
  border: 1.5px solid #dbeafe !important;
  padding: 10px 20px !important;
  border-radius: 8px !important;
  font-size: 13.5px !important;
  font-weight: 800 !important;
  text-decoration: none !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  transition: all 0.25s ease !important;
  flex-shrink: 0 !important;
}

.byws-btn-view-all:hover {
  background: #eff6ff !important;
  border-color: #0070f3 !important;
  transform: translateY(-2px) !important;
}

.byws-arrow-icon {
  font-size: 15px !important;
  transition: transform 0.2s ease !important;
}

.byws-btn-view-all:hover .byws-arrow-icon {
  transform: translateX(3px) !important;
}

/* 6-Column Responsive Grid */
.byws-catalog-grid {
  display: grid !important;
  grid-template-columns: repeat(6, 1fr) !important;
  gap: 18px !important;
}

.byws-product-card {
  background: #ffffff !important;
  border: 1.5px solid #e2e8f0 !important;
  border-radius: 18px !important;
  padding: 22px 14px 24px 14px !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  text-align: center !important;
  box-shadow: 0 4px 16px rgba(8, 29, 56, 0.03) !important;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease !important;
}

.byws-product-card:hover {
  transform: translateY(-5px) !important;
  box-shadow: 0 12px 28px rgba(8, 29, 56, 0.08) !important;
  border-color: #0070f3 !important;
}

/* Product Image Box */
.byws-product-img-box {
  width: 100% !important;
  height: 150px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin-bottom: 16px !important;
  padding: 8px !important;
  box-sizing: border-box !important;
}

.byws-product-img-box img {
  max-width: 100% !important;
  max-height: 100% !important;
  object-fit: contain !important;
  display: block !important;
  transition: transform 0.3s ease !important;
}

.byws-product-card:hover .byws-product-img-box img {
  transform: scale(1.08) !important;
}

/* Product Typography */
.byws-product-name {
  font-size: 15.5px !important;
  font-weight: 800 !important;
  color: #081d38 !important;
  margin: 0 0 8px 0 !important;
  line-height: 1.3 !important;
}

.byws-product-desc {
  font-size: 12px !important;
  color: #64748b !important;
  line-height: 1.5 !important;
  margin: 0 !important;
  font-weight: 500 !important;
}

/* ==========================================================================
   Responsive Adaptability
   ========================================================================== */
@media (max-width: 1200px) {
  .byws-catalog-grid {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 20px !important;
  }
}

@media (max-width: 768px) {
  .byws-catalog-header-row {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 15px !important;
  }
  .byws-catalog-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 16px !important;
  }
  .byws-catalog-title {
    font-size: 28px !important;
  }
}

@media (max-width: 480px) {
  .byws-catalog-grid {
    grid-template-columns: 1fr !important;
  }
}

/* ==========================================================================
   Section 5: Dynamic Featured Projects
   ========================================================================== */
.byws-projects-section {
  position: relative !important;
  padding: 85px 0 100px !important;
  background-color: #f8fafc !important;
  border-bottom: 1px solid #e2e8f0 !important;
}

.byws-projects-shell {
  max-width: 1360px !important;
  margin: 0 auto !important;
  padding: 0 32px !important;
  box-sizing: border-box !important;
}

/* Header Row */
.byws-projects-head-row {
  display: flex !important;
  justify-content: space-between !important;
  align-items: flex-end !important;
  margin-bottom: 45px !important;
  gap: 20px !important;
}

.byws-projects-tag {
  font-size: 12px !important;
  font-weight: 800 !important;
  color: #0070f3 !important;
  letter-spacing: 1px !important;
  text-transform: uppercase !important;
  display: block !important;
  margin-bottom: 6px !important;
}

.byws-projects-title {
  font-size: 34px !important;
  font-weight: 900 !important;
  color: #081d38 !important;
  letter-spacing: -0.6px !important;
  line-height: 1.2 !important;
  margin: 0 0 8px 0 !important;
}

.byws-projects-subtitle {
  font-size: 14.5px !important;
  color: #64748b !important;
  margin: 0 !important;
  font-weight: 500 !important;
}

/* Header Button */
.byws-btn-projects-all {
  background: #ffffff !important;
  color: #0070f3 !important;
  border: 1.5px solid #dbeafe !important;
  padding: 10px 20px !important;
  border-radius: 8px !important;
  font-size: 13.5px !important;
  font-weight: 800 !important;
  text-decoration: none !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  transition: all 0.25s ease !important;
  flex-shrink: 0 !important;
}

.byws-btn-projects-all:hover {
  background: #eff6ff !important;
  border-color: #0070f3 !important;
  transform: translateY(-2px) !important;
}

/* 3-Column Projects Grid */
.byws-projects-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 26px !important;
}

.byws-project-card {
  background: #ffffff !important;
  border: 1px solid #e2e8f0 !important;
  border-radius: 20px !important;
  overflow: hidden !important;
  display: flex !important;
  flex-direction: column !important;
  box-shadow: 0 6px 20px rgba(8, 29, 56, 0.04) !important;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease !important;
}

.byws-project-card:hover {
  transform: translateY(-5px) !important;
  box-shadow: 0 16px 36px rgba(8, 29, 56, 0.09) !important;
  border-color: #0070f3 !important;
}

/* Image Frame */
.byws-project-img-frame {
  position: relative !important;
  width: 100% !important;
  height: 230px !important;
  overflow: hidden !important;
  background-color: #081d38 !important;
}

.byws-project-img-frame img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
  transition: transform 0.35s ease !important;
}

.byws-project-card:hover .byws-project-img-frame img {
  transform: scale(1.08) !important;
}

/* Category Badge */
.byws-project-category-badge {
  position: absolute !important;
  top: 14px !important;
  left: 14px !important;
  background: rgba(8, 29, 56, 0.85) !important;
  backdrop-filter: blur(6px) !important;
  color: #ffffff !important;
  font-size: 11px !important;
  font-weight: 800 !important;
  padding: 5px 12px !important;
  border-radius: 6px !important;
  letter-spacing: 0.4px !important;
}

/* Project Info Body */
.byws-project-info {
  padding: 24px 22px !important;
  display: flex !important;
  flex-direction: column !important;
  flex: 1 !important;
  justify-content: space-between !important;
}

/* Metadata Strip */
.byws-project-meta-strip {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 10px !important;
  margin-bottom: 12px !important;
}

.byws-proj-meta-item {
  display: inline-flex !important;
  align-items: center !important;
  gap: 5px !important;
  font-size: 12px !important;
  color: #64748b !important;
  font-weight: 600 !important;
}

.byws-proj-meta-item.highlight {
  color: #0284c7 !important;
  font-weight: 800 !important;
}

.byws-proj-meta-item svg {
  width: 14px !important;
  height: 14px !important;
  flex-shrink: 0 !important;
}

/* Title & Link */
.byws-project-card-title {
  font-size: 17px !important;
  font-weight: 800 !important;
  color: #081d38 !important;
  line-height: 1.35 !important;
  margin: 0 0 18px 0 !important;
}

.byws-project-card-link {
  font-size: 13px !important;
  font-weight: 800 !important;
  color: #0070f3 !important;
  text-decoration: none !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  margin-top: auto !important;
  transition: gap 0.2s ease, color 0.2s ease !important;
}

.byws-project-card:hover .byws-project-card-link {
  color: #0052cc !important;
  gap: 10px !important;
}

/* Responsive Adaptability */
@media (max-width: 1024px) {
  .byws-projects-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 20px !important;
  }
}

@media (max-width: 768px) {
  .byws-projects-head-row {
    flex-direction: column !important;
    align-items: flex-start !important;
  }
  .byws-projects-grid {
    grid-template-columns: 1fr !important;
  }
  .byws-projects-title {
    font-size: 28px !important;
  }
}

/* ==========================================================================
   Popup Modal Styling (Fixed Display & Specificity)
   ========================================================================== */
.byws-modal-overlay {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100vw !important;
  height: 100vh !important;
  background: rgba(8, 29, 56, 0.65) !important;
  backdrop-filter: blur(6px) !important;
  -webkit-backdrop-filter: blur(6px) !important;
  display: none;
  align-items: center !important;
  justify-content: center !important;
  z-index: 999999 !important;
  padding: 20px !important;
  box-sizing: border-box !important;
}

/* Higher specificity to force flexbox display when active */
body .byws-modal-overlay.active,
.byws-modal-overlay.active {
  display: flex !important;
}

.byws-modal-card {
  background: #ffffff !important;
  border-radius: 20px !important;
  width: 100% !important;
  max-width: 520px !important;
  padding: 36px 32px !important;
  box-shadow: 0 20px 60px rgba(8, 29, 56, 0.3) !important;
  position: relative !important;
  box-sizing: border-box !important;
  animation: bywsModalPop 0.25s cubic-bezier(0.25, 1, 0.5, 1) !important;
}

@keyframes bywsModalPop {
  0% { transform: scale(0.92); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

.byws-modal-close {
  position: absolute !important;
  top: 18px !important;
  right: 20px !important;
  background: #f1f5f9 !important;
  border: none !important;
  font-size: 26px !important;
  line-height: 1 !important;
  width: 36px !important;
  height: 36px !important;
  border-radius: 50% !important;
  color: #64748b !important;
  cursor: pointer !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: all 0.2s ease !important;
}

.byws-modal-close:hover {
  background: #e2e8f0 !important;
  color: #081d38 !important;
}

/* ==========================================================================
   Section 6: Pricing Scale & Packages
   ========================================================================== */
.byws-scale-section {
  position: relative !important;
  padding: 85px 0 100px !important;
  background-color: #ffffff !important;
  border-bottom: 1px solid #e2e8f0 !important;
}

.byws-scale-shell {
  max-width: 1360px !important;
  margin: 0 auto !important;
  padding: 0 32px !important;
  box-sizing: border-box !important;
}

.byws-scale-head-center {
  text-align: center !important;
  margin-bottom: 55px !important;
}

.byws-scale-title {
  font-size: 36px !important;
  font-weight: 900 !important;
  color: #081d38 !important;
  letter-spacing: -0.6px !important;
  line-height: 1.2 !important;
  margin: 0 0 10px 0 !important;
}

.byws-scale-subtitle {
  font-size: 14.5px !important;
  color: #64748b !important;
  margin: 0 auto !important;
  max-width: 620px !important;
  font-weight: 500 !important;
}

/* 4-Card Grid */
.byws-scale-grid {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 24px !important;
}

.byws-scale-card {
  background: #ffffff !important;
  border: 1.5px solid #e2e8f0 !important;
  border-radius: 20px !important;
  padding: 28px 24px !important;
  display: flex !important;
  flex-direction: column !important;
  box-shadow: 0 6px 20px rgba(8, 29, 56, 0.03) !important;
  transition: all 0.25s ease !important;
}

.byws-scale-card:hover {
  transform: translateY(-5px) !important;
  box-shadow: 0 16px 36px rgba(8, 29, 56, 0.08) !important;
  border-color: #0070f3 !important;
}

/* Featured Highlight Card */
.byws-scale-card.featured {
  border-color: #0070f3 !important;
  box-shadow: 0 12px 30px rgba(0, 112, 243, 0.12) !important;
  background: linear-gradient(180deg, #ffffff 0%, #f0f7ff 100%) !important;
}

/* Top Name & Icon */
.byws-scale-card-top {
  display: flex !important;
  align-items: center !important;
  gap: 14px !important;
  margin-bottom: 20px !important;
}

.byws-scale-icon {
  color: #0070f3 !important;
  flex-shrink: 0 !important;
}

.byws-scale-icon svg {
  width: 28px !important;
  height: 28px !important;
}

.byws-scale-name {
  font-size: 16px !important;
  font-weight: 800 !important;
  color: #081d38 !important;
  margin: 0 !important;
  line-height: 1.25 !important;
}

.byws-scale-capacity {
  font-size: 11.5px !important;
  color: #64748b !important;
  display: block !important;
  margin-top: 2px !important;
  font-weight: 500 !important;
}

/* Price Display */
.byws-scale-price {
  font-size: 32px !important;
  font-weight: 900 !important;
  color: #0066ff !important;
  margin-bottom: 22px !important;
  letter-spacing: -0.5px !important;
}

/* Features List */
.byws-scale-features {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 0 28px 0 !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 10px !important;
  flex: 1 !important;
}

.byws-scale-features li {
  font-size: 13px !important;
  color: #475569 !important;
  font-weight: 600 !important;
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
}

.byws-scale-features li::before {
  content: "•" !important;
  color: #0070f3 !important;
  font-size: 16px !important;
  font-weight: 900 !important;
}

/* Action Button */
.byws-btn-package {
  width: 100% !important;
  background: #ffffff !important;
  color: #0070f3 !important;
  border: 1.5px solid #0070f3 !important;
  padding: 12px 18px !important;
  border-radius: 8px !important;
  font-size: 13.5px !important;
  font-weight: 800 !important;
  cursor: pointer !important;
  transition: all 0.2s ease !important;
  text-align: center !important;
}

.byws-btn-package:hover {
  background: #eff6ff !important;
  transform: translateY(-2px) !important;
}

.byws-btn-package.featured-btn {
  background: #0066ff !important;
  color: #ffffff !important;
  box-shadow: 0 4px 14px rgba(0, 102, 255, 0.3) !important;
}

.byws-btn-package.featured-btn:hover {
  background: #0052cc !important;
}

/* ==========================================================================
   Popup Modal Styling
   ========================================================================== */
.byws-modal-overlay {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100vw !important;
  height: 100vh !important;
  background: rgba(8, 29, 56, 0.6) !important;
  backdrop-filter: blur(5px) !important;
  display: none !important;
  align-items: center !important;
  justify-content: center !important;
  z-index: 99999 !important;
  padding: 20px !important;
  box-sizing: border-box !important;
}

.byws-modal-overlay.active {
  display: flex !important;
}

.byws-modal-card {
  background: #ffffff !important;
  border-radius: 20px !important;
  width: 100% !important;
  max-width: 520px !important;
  padding: 36px 32px !important;
  box-shadow: 0 20px 50px rgba(8, 29, 56, 0.25) !important;
  position: relative !important;
  box-sizing: border-box !important;
  animation: modalPop 0.25s cubic-bezier(0.25, 1, 0.5, 1) !important;
}

@keyframes modalPop {
  0% { transform: scale(0.92); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

.byws-modal-close {
  position: absolute !important;
  top: 18px !important;
  right: 20px !important;
  background: #f1f5f9 !important;
  border: none !important;
  font-size: 24px !important;
  line-height: 1 !important;
  width: 34px !important;
  height: 34px !important;
  border-radius: 50% !important;
  color: #64748b !important;
  cursor: pointer !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: all 0.2s ease !important;
}

.byws-modal-close:hover {
  background: #e2e8f0 !important;
  color: #081d38 !important;
}

.byws-modal-badge {
  font-size: 11px !important;
  font-weight: 800 !important;
  color: #0070f3 !important;
  letter-spacing: 0.8px !important;
}

.byws-modal-title {
  font-size: 24px !important;
  font-weight: 900 !important;
  color: #081d38 !important;
  margin: 4px 0 6px 0 !important;
}

.byws-modal-subtitle {
  font-size: 13px !important;
  color: #64748b !important;
  margin: 0 0 20px 0 !important;
}

.byws-modal-form {
  display: flex !important;
  flex-direction: column !important;
  gap: 14px !important;
}

.byws-form-row {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 14px !important;
}

.byws-form-group {
  display: flex !important;
  flex-direction: column !important;
  gap: 5px !important;
}

.byws-form-group label {
  font-size: 12px !important;
  font-weight: 700 !important;
  color: #081d38 !important;
}

.byws-form-group input, 
.byws-form-group textarea {
  width: 100% !important;
  padding: 10px 14px !important;
  border: 1.5px solid #e2e8f0 !important;
  border-radius: 8px !important;
  font-size: 13px !important;
  color: #081d38 !important;
  outline: none !important;
  box-sizing: border-box !important;
  transition: border-color 0.2s ease !important;
}

.byws-form-group input:focus, 
.byws-form-group textarea:focus {
  border-color: #0070f3 !important;
}

.byws-btn-submit-inquiry {
  background: #0066ff !important;
  color: #ffffff !important;
  border: none !important;
  padding: 13px 20px !important;
  border-radius: 8px !important;
  font-size: 14px !important;
  font-weight: 800 !important;
  cursor: pointer !important;
  margin-top: 6px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  transition: background 0.2s ease !important;
}

.byws-btn-submit-inquiry:hover {
  background: #0052cc !important;
}

.byws-modal-alert {
  display: none;
  padding: 10px 14px;
  border-radius: 6px;
  font-size: 12.5px;
  font-weight: 600;
}

.byws-modal-alert.success {
  display: block;
  background: #d1fae5;
  color: #065f46;
}

.byws-modal-alert.error {
  display: block;
  background: #fee2e2;
  color: #b91c1c;
}

/* Responsive */
@media (max-width: 1100px) {
  .byws-scale-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 640px) {
  .byws-scale-grid {
    grid-template-columns: 1fr !important;
  }
  .byws-form-row {
    grid-template-columns: 1fr !important;
  }
  .byws-scale-title {
    font-size: 28px !important;
  }
}

/* ==========================================================================
   Section 7: Frequently Asked Questions (12 FAQs Accordion)
   ========================================================================== */
.byws-faq-section {
  position: relative !important;
  padding: 85px 0 100px !important;
  background-color: #f8fafc !important;
  border-bottom: 1px solid #e2e8f0 !important;
}

.byws-faq-shell {
  max-width: 980px !important;
  margin: 0 auto !important;
  padding: 0 24px !important;
  box-sizing: border-box !important;
}

/* Header */
.byws-faq-head-center {
  text-align: center !important;
  margin-bottom: 50px !important;
}

.byws-faq-badge {
  font-size: 11.5px !important;
  font-weight: 800 !important;
  color: #0070f3 !important;
  letter-spacing: 1px !important;
  text-transform: uppercase !important;
  display: block !important;
  margin-bottom: 6px !important;
}

.byws-faq-title {
  font-size: 34px !important;
  font-weight: 900 !important;
  color: #081d38 !important;
  line-height: 1.2 !important;
  margin: 0 0 10px 0 !important;
  letter-spacing: -0.6px !important;
}

.byws-faq-subtitle {
  font-size: 14.5px !important;
  color: #64748b !important;
  max-width: 620px !important;
  margin: 0 auto !important;
  font-weight: 500 !important;
}

/* Accordion Wrapper */
.byws-faq-accordion-wrap {
  display: flex !important;
  flex-direction: column !important;
  gap: 12px !important;
}

.byws-faq-item {
  background: #ffffff !important;
  border: 1.5px solid #e2e8f0 !important;
  border-radius: 14px !important;
  overflow: hidden !important;
  transition: border-color 0.2s ease, box-shadow 0.2s ease !important;
}

.byws-faq-item:hover {
  border-color: #cbd5e1 !important;
}

.byws-faq-item.active {
  border-color: #0070f3 !important;
  box-shadow: 0 6px 20px rgba(0, 112, 243, 0.08) !important;
}

/* Trigger Button */
.byws-faq-trigger {
  width: 100% !important;
  padding: 18px 24px !important;
  background: transparent !important;
  border: none !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  text-align: left !important;
  cursor: pointer !important;
  gap: 16px !important;
  outline: none !important;
}

.byws-faq-question {
  font-size: 15px !important;
  font-weight: 800 !important;
  color: #081d38 !important;
  line-height: 1.35 !important;
  transition: color 0.2s ease !important;
}

.byws-faq-item.active .byws-faq-question {
  color: #0070f3 !important;
}

/* Circular Toggle Icon (+ / -) */
.byws-faq-icon {
  width: 28px !important;
  height: 28px !important;
  border-radius: 50% !important;
  background: #f1f5f9 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-shrink: 0 !important;
  position: relative !important;
  transition: background 0.2s ease, transform 0.2s ease !important;
}

.byws-faq-icon::before,
.byws-faq-icon::after {
  content: "" !important;
  position: absolute !important;
  background-color: #081d38 !important;
  transition: transform 0.2s ease, background-color 0.2s ease !important;
}

.byws-faq-icon::before {
  width: 12px !important;
  height: 2px !important;
}

.byws-faq-icon::after {
  width: 2px !important;
  height: 12px !important;
}

.byws-faq-item.active .byws-faq-icon {
  background: #eff6ff !important;
}

.byws-faq-item.active .byws-faq-icon::before {
  background-color: #0070f3 !important;
}

.byws-faq-item.active .byws-faq-icon::after {
  transform: rotate(90deg) !important;
  opacity: 0 !important;
}

/* Accordion Body */
.byws-faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0.25, 1, 0.5, 1), padding 0.3s ease;
  padding: 0 24px;
}

.byws-faq-item.active .byws-faq-body {
  padding: 0 24px 20px 24px;
}

.byws-faq-body p {
  font-size: 13.5px !important;
  color: #475569 !important;
  line-height: 1.65 !important;
  margin: 0 !important;
  font-weight: 500 !important;
}

/* Responsive */
@media (max-width: 640px) {
  .byws-faq-title {
    font-size: 28px !important;
  }
  .byws-faq-trigger {
    padding: 16px 18px !important;
  }
  .byws-faq-question {
    font-size: 14px !important;
  }
  .byws-faq-item.active .byws-faq-body {
    padding: 0 18px 16px 18px !important;
  }
}

/* ==========================================================================
   Section 8: 3D Pop-Out Avatar (Upper Body Protrudes Above Box)
   ========================================================================== */
.byws-consult-section {
  position: relative !important;
  /* Generous top margin/padding to give space for the protruding head and shoulders */
  padding: 130px 0 90px !important;
  background-color: #ffffff !important;
}

.byws-consult-shell {
  max-width: 1360px !important;
  margin: 0 auto !important;
  padding: 0 32px !important;
  box-sizing: border-box !important;
}

/* Outer Card Container */
.byws-consult-card {
  position: relative !important;
  background: #f0f7ff radial-gradient(circle at 45% 60%, rgba(224, 242, 254, 0.9) 0%, rgba(240, 247, 255, 1) 100%) !important;
  border: 1.5px solid #dbeafe !important;
  border-radius: 28px !important;
  display: flex !important;
  align-items: stretch !important;
  justify-content: space-between !important;
  box-shadow: 0 16px 40px rgba(0, 112, 243, 0.08) !important;
  overflow: visible !important;
}

/* Left Column */
.byws-consult-left {
  flex: 1.25 !important;
  padding: 50px 30px 50px 50px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  position: relative !important;
}

.byws-consult-text {
  max-width: 310px !important;
  position: relative !important;
  z-index: 3 !important;
}

.byws-consult-title {
  font-size: 34px !important;
  font-weight: 900 !important;
  color: #081d38 !important;
  line-height: 1.2 !important;
  margin: 0 0 12px 0 !important;
  letter-spacing: -0.6px !important;
}

.byws-consult-desc {
  font-size: 14px !important;
  color: #475569 !important;
  line-height: 1.55 !important;
  margin: 0 0 24px 0 !important;
  font-weight: 500 !important;
}

.byws-btn-expert-call {
  background: #ffffff !important;
  color: #0066ff !important;
  border: 1.5px solid #0066ff !important;
  padding: 12px 22px !important;
  border-radius: 8px !important;
  font-size: 13.5px !important;
  font-weight: 800 !important;
  text-decoration: none !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  box-shadow: 0 4px 14px rgba(0, 102, 255, 0.08) !important;
  transition: all 0.25s ease !important;
}

.byws-btn-expert-call:hover {
  background: #0066ff !important;
  color: #ffffff !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 18px rgba(0, 102, 255, 0.25) !important;
}

/* 3D Pop-Out Avatar Frame (Anchored at Bottom, Extends 110px Above Top) */
.byws-consult-avatar-box {
  position: absolute !important;
  right: -25px !important;
  bottom: 0 !important; /* Locks belt/trousers inside the card bottom */
  top: -110px !important; /* Pushes head & shoulders well above the card border */
  width: 300px !important;
  height: auto !important;
  display: flex !important;
  align-items: flex-end !important;
  justify-content: center !important;
  pointer-events: none !important;
  z-index: 15 !important;
}

/* 3D Visual Rendering with Depth Shadows */
.byws-consult-avatar-img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  object-position: bottom center !important;
  display: block !important;
  filter: drop-shadow(0 16px 22px rgba(8, 29, 56, 0.22)) 
          drop-shadow(0 4px 12px rgba(0, 112, 243, 0.16)) !important;
  transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1) !important;
}

.byws-consult-card:hover .byws-consult-avatar-img {
  transform: translateY(-4px) scale(1.03) !important;
}

/* Right Column (Form Box) */
.byws-consult-right {
  flex: 1.05 !important;
  padding: 50px 50px 50px 40px !important;
  border-left: 1px dashed #cbd5e1 !important;
  position: relative !important;
  z-index: 4 !important;
  background: rgba(255, 255, 255, 0.4) !important;
  border-radius: 0 28px 28px 0 !important;
}

.byws-consult-form-wrap {
  width: 100% !important;
}

.byws-form-heading {
  font-size: 22px !important;
  font-weight: 900 !important;
  color: #081d38 !important;
  margin: 0 0 6px 0 !important;
  line-height: 1.25 !important;
}

.byws-form-subheading {
  font-size: 13px !important;
  color: #64748b !important;
  margin: 0 0 20px 0 !important;
  font-weight: 500 !important;
}

/* Input Fields */
.byws-req-grid {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 12px !important;
  margin-bottom: 16px !important;
}

.byws-req-input-group {
  position: relative !important;
}

.byws-req-input-group input {
  width: 100% !important;
  background: #ffffff !important;
  border: 1.5px solid #e2e8f0 !important;
  border-radius: 8px !important;
  padding: 12px 14px !important;
  font-size: 13px !important;
  color: #081d38 !important;
  outline: none !important;
  box-sizing: border-box !important;
  transition: border-color 0.2s ease, box-shadow 0.2s ease !important;
}

.byws-req-input-group input:focus {
  border-color: #0070f3 !important;
  box-shadow: 0 0 0 3px rgba(0, 112, 243, 0.1) !important;
}

.location-input-group input {
  padding-right: 36px !important;
}

.byws-input-loc-icon {
  position: absolute !important;
  right: 12px !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  color: #94a3b8 !important;
  display: flex !important;
  align-items: center !important;
  pointer-events: none !important;
}

.byws-input-loc-icon svg {
  width: 18px !important;
  height: 18px !important;
}

/* Submit Button */
.byws-btn-submit-req {
  background: #0066ff !important;
  color: #ffffff !important;
  border: none !important;
  padding: 13px 26px !important;
  border-radius: 8px !important;
  font-size: 14px !important;
  font-weight: 800 !important;
  cursor: pointer !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  box-shadow: 0 6px 18px rgba(0, 102, 255, 0.25) !important;
  transition: all 0.25s ease !important;
}

.byws-btn-submit-req:hover {
  background: #0052cc !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 24px rgba(0, 102, 255, 0.35) !important;
}

.byws-req-alert {
  display: none;
  padding: 10px 14px;
  border-radius: 6px;
  font-size: 12.5px;
  font-weight: 600;
  margin-bottom: 12px;
}

.byws-req-alert.success {
  display: block;
  background: #d1fae5;
  color: #065f46;
}

.byws-req-alert.error {
  display: block;
  background: #fee2e2;
  color: #b91c1c;
}

/* Responsive Adaptability */
@media (max-width: 1140px) {
  .byws-consult-avatar-box {
    width: 250px !important;
    top: -85px !important;
    right: -15px !important;
  }
}

@media (max-width: 992px) {
  .byws-consult-section {
    padding: 60px 0 80px !important;
  }
  .byws-consult-card {
    flex-direction: column !important;
  }
  .byws-consult-left {
    padding: 40px 30px 0 30px !important;
    flex-direction: column !important;
    text-align: center !important;
    align-items: center !important;
  }
  .byws-consult-text {
    max-width: 100% !important;
    margin-bottom: 20px !important;
  }
  .byws-consult-avatar-box {
    position: relative !important;
    top: auto !important;
    right: auto !important;
    bottom: auto !important;
    width: 240px !important;
    height: 280px !important;
  }
  .byws-consult-right {
    border-left: none !important;
    border-top: 1px dashed #cbd5e1 !important;
    border-radius: 0 0 28px 28px !important;
    padding: 35px 30px 40px 30px !important;
  }
}

@media (max-width: 640px) {
  .byws-consult-title {
    font-size: 26px !important;
  }
  .byws-req-grid {
    grid-template-columns: 1fr !important;
  }
  .byws-btn-submit-req {
    width: 100% !important;
    justify-content: center !important;
  }
}