/* ==========================================================================
   Ridge Water - Comprehensive Stylesheet & Uniform Card Architecture
   ========================================================================== */

/* Hero Carousel Outer Wrapper */
.hero-carousel-section {
  position: relative;
  width: 100%;
  min-height: 640px;
  max-height: 720px;
  overflow: hidden;
  background-color: #0f172a;
}

.hero-slider {
  width: 100%;
  height: 100%;
  position: relative;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  min-height: 640px;
  background-size: cover;
  background-position: center right;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out;
  display: flex;
  align-items: center;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

/* Semi-transparent soft gradient overlay for readable text */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg, 
    rgba(255, 255, 255, 0.95) 0%, 
    rgba(255, 255, 255, 0.85) 42%, 
    rgba(255, 255, 255, 0.2) 75%, 
    rgba(255, 255, 255, 0) 100%
  );
  z-index: 1;
}

.hero-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 32px;
  width: 100%;
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Hero Content Area */
.hero-content {
  max-width: 580px;
  animation: heroFadeIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

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

.hero-title {
  font-size: 52px;
  font-weight: 900;
  line-height: 1.12;
  color: #0f172a;
  letter-spacing: -1.2px;
  margin-bottom: 20px;
}

.hero-highlight {
  color: #0077c8;
}

.hero-description {
  font-size: 16px;
  line-height: 1.6;
  color: #475569;
  margin-bottom: 32px;
  max-width: 480px;
}

/* Buttons */
.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 40px;
}

.hero-primary-btn {
  padding: 14px 28px;
  font-size: 15px;
  gap: 8px;
  box-shadow: 0 8px 16px -4px rgba(0, 119, 200, 0.4);
}

.hero-primary-btn svg, .hero-secondary-btn svg {
  width: 16px;
  height: 16px;
  transition: transform 0.2s ease;
}

.hero-primary-btn:hover svg, .hero-secondary-btn:hover svg {
  transform: translateX(4px);
}

.hero-secondary-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 24px;
  font-size: 15px;
  font-weight: 600;
  color: #0f172a;
  background: #ffffff;
  border: 1px solid #cbd5e1;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.hero-secondary-btn:hover {
  border-color: #0077c8;
  color: #0077c8;
}

/* Sub-features bar */
.hero-feature-tags {
  display: flex;
  align-items: center;
  gap: 24px;
}

.feature-tag {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #334155;
  font-size: 13px;
  font-weight: 600;
}

.feature-tag svg {
  width: 18px;
  height: 18px;
  color: #0077c8;
}

/* Circular Floating Badge */
.hero-floating-badge {
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(8px);
  border: 2px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  padding: 24px;
  border-radius: 50%;
  width: 150px;
  height: 150px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.3);
  margin-right: 40px;
  animation: floatBadge 4s ease-in-out infinite;
}

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

.badge-icon-wrap {
  color: #38bdf8;
  margin-bottom: 6px;
}

.badge-icon-wrap svg {
  width: 22px;
  height: 22px;
}

.badge-text {
  font-size: 11px;
  line-height: 1.3;
  letter-spacing: 0.2px;
}

.badge-text strong {
  color: #38bdf8;
  font-weight: 700;
}

/* Slider Controls */
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid #e2e8f0;
  color: #0f172a;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.2s ease;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.carousel-arrow:hover {
  background: #0077c8;
  color: #ffffff;
  border-color: #0077c8;
}

.carousel-arrow.prev { left: 24px; }
.carousel-arrow.next { right: 24px; }

.carousel-arrow svg {
  width: 20px;
  height: 20px;
}

/* Pagination Dots */
.carousel-dots {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.carousel-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(15, 23, 42, 0.2);
  cursor: pointer;
  transition: all 0.25s ease;
}

.carousel-dots .dot.active {
  width: 28px;
  border-radius: 5px;
  background: #0077c8;
}

/* Problems Category Section */
.problems-section {
  padding: 50px 0;
  background-color: #ffffff;
}

.problems-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 32px;
}

.problems-title-wrap {
  text-align: center;
  margin-bottom: 48px;
}

.problems-heading {
  font-size: 36px;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.5px;
}

.text-accent {
  color: #0077c8;
}

/* 3-Column Grid */
.problems-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.problem-card {
  border-radius: 16px;
  padding: 36px 28px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  border: 1px solid transparent;
}

.problem-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px -6px rgba(0, 0, 0, 0.06);
}

.card-green { background-color: #f1f8f0; border-color: #dcefd9; }
.card-blue { background-color: #eef6fc; border-color: #d7ebfa; }
.card-light-blue { background-color: #f2f7fc; border-color: #dbeaf6; }

.card-icon-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-shrink: 0;
}

.icon-bubble {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}

.card-green .icon-bubble { color: #2e7d32; }
.card-blue .icon-bubble { color: #0077c8; }
.card-light-blue .icon-bubble { color: #0284c7; }

.icon-bubble svg { width: 24px; height: 24px; }

.card-body-col {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.problem-card-title {
  font-size: 20px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 4px;
}

.problem-card-subtitle {
  font-size: 13px;
  font-weight: 600;
  color: #64748b;
  margin-bottom: 14px;
}

.problem-card-text {
  font-size: 14px;
  line-height: 1.6;
  color: #475569;
  margin-bottom: 24px;
  min-height: 66px;
}

.problem-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: gap 0.2s ease;
  margin-top: auto;
}

.card-green .problem-card-link { color: #2e7d32; }
.card-blue .problem-card-link { color: #0077c8; }
.card-light-blue .problem-card-link { color: #0284c7; }

.problem-card-link svg {
  width: 16px;
  height: 16px;
  transition: transform 0.2s ease;
}

.problem-card:hover .problem-card-link svg {
  transform: translateX(4px);
}

/* One Home Section */
.management-section {
  padding: 30px 0 30px;
  background-color: #ffffff;
  position: relative;
  overflow: hidden;
}

.management-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 60px;
  align-items: center;
}

.management-intro {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  z-index: 5;
}

.management-title {
  font-size: 46px;
  font-weight: 900;
  line-height: 1.12;
  color: #0077c8;
  letter-spacing: -1px;
  margin-bottom: 20px;
}

.management-title-dark { color: #0f172a; }

.management-desc {
  font-size: 15px;
  line-height: 1.65;
  color: #475569;
  margin-bottom: 32px;
  max-width: 360px;
}

.management-btn {
  background-color: #081d38;
  color: #ffffff;
  padding: 13px 28px;
  font-size: 14px;
  font-weight: 700;
  gap: 10px;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(8, 29, 56, 0.15);
  transition: all 0.2s ease;
}

.management-btn:hover {
  background-color: #0077c8;
  box-shadow: 0 6px 16px rgba(0, 119, 200, 0.3);
}

.management-btn svg {
  width: 16px;
  height: 16px;
  transition: transform 0.2s ease;
}

.management-btn:hover svg {
  transform: translateX(4px);
}

.mobile-steps-list {
  display: none;
  width: 100%;
  margin-top: 36px;
  gap: 14px;
  flex-direction: column;
}

.step-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 16px;
}

.step-card.highlight {
  border-color: #0077c8;
  background: #f0f9ff;
}

.step-badge {
  font-size: 15px;
  font-weight: 800;
  color: #0077c8;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #e2e8f0;
  flex-shrink: 0;
}

.step-badge.icon-badge {
  background: #0077c8;
  color: #ffffff;
  border-color: #0077c8;
}

.step-badge svg { width: 18px; height: 18px; }
.step-info h4 { font-size: 15px; font-weight: 700; color: #0f172a; }
.step-info p { font-size: 13px; color: #64748b; margin-top: 2px; }

.management-stage {
  position: relative;
  width: 100%;
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stage-graphic-wrapper { width: 100%; max-width: 660px; }
.house-vector { width: 100%; height: auto; filter: drop-shadow(0 15px 30px rgba(0, 119, 200, 0.08)); }

@keyframes fallRain {
  0% { transform: translateY(0); opacity: 0; }
  50% { opacity: 1; }
  100% { transform: translateY(30px); opacity: 0; }
}

.droplet-anim { animation: fallRain 2s infinite ease-in; }
.d-1 { animation-delay: 0s; }
.d-2 { animation-delay: 0.6s; }
.d-3 { animation-delay: 1.2s; }

.diagram-node { position: absolute; display: flex; align-items: center; gap: 12px; z-index: 10; }
.node-content { display: flex; flex-direction: column; }
.node-num { font-size: 13px; font-weight: 800; color: #0077c8; letter-spacing: 0.5px; }
.node-title { font-size: 14px; font-weight: 700; color: #0f172a; line-height: 1.25; }

.node-icon-bubble {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #0077c8;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 119, 200, 0.35);
  flex-shrink: 0;
}

.node-icon-bubble svg { width: 18px; height: 18px; }
.pointer-arm { display: flex; align-items: center; position: relative; }
.pulse-point { width: 10px; height: 10px; background-color: #0077c8; border-radius: 50%; position: relative; }

.pulse-point::after {
  content: '';
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  border: 2px solid #0077c8;
  border-radius: 50%;
  animation: pulsePoint 2s infinite ease-out;
}

@keyframes pulsePoint {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(2.2); opacity: 0; }
}

.node-top-left { top: 15%; left: 0; }
.arm-top-left .arm-h { width: 50px; height: 2px; background: #0077c8; }
.arm-top-left .arm-v { width: 2px; height: 30px; background: #0077c8; margin-top: 30px; }

.node-top-right { top: 12%; right: 0; text-align: left; }
.arm-top-right .arm-h { width: 60px; height: 2px; background: #0077c8; }
.arm-top-right .arm-v { width: 2px; height: 35px; background: #0077c8; margin-top: 35px; }

.node-bottom-right { bottom: 18%; right: 20px; }
.arm-bottom-right .arm-h { width: 50px; height: 2px; background: #0077c8; }
.arm-bottom-right .arm-v { width: 2px; height: 25px; background: #0077c8; margin-bottom: 25px; }

.node-bottom-left { bottom: 22%; left: 10px; }
.arm-bottom-left .arm-h { width: 45px; height: 2px; background: #0077c8; }
.arm-bottom-left .arm-v { width: 2px; height: 20px; background: #0077c8; margin-bottom: 20px; }

/* ==========================================================================
   Homepage Products Section (Strict Uniform Height & Width System)
   ========================================================================== */
.products-section,
.home-products-section {
  padding: 40px 0 60px;
  background-color: #ffffff;
}

.products-container,
.home-products-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 32px;
}

.products-title-wrap,
.section-header-center {
  text-align: center;
  margin-bottom: 32px;
}

.products-heading,
.section-main-heading {
  font-size: 36px;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.5px;
}

.section-sub-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #e0f2fe;
  color: #0077c8;
  font-size: 11.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 12px;
}

.section-sub-badge svg { width: 13px; height: 13px; }
.section-sub-heading { font-size: 14.5px; line-height: 1.6; color: #64748b; }

/* Filter Tabs */
.category-tabs,
.home-category-tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.cat-tab-btn {
  background: #ffffff;
  border: 1.5px solid #cbd5e1;
  color: #334155;
  padding: 9px 20px;
  border-radius: 24px;
  font-size: 13.5px;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s ease;
}

.tab-count-pill {
  font-size: 11px;
  background: #e2e8f0;
  color: #64748b;
  padding: 2px 7px;
  border-radius: 10px;
}

.cat-tab-btn:hover {
  border-color: #0077c8;
  color: #0077c8;
  background: #f0f9ff;
}

.cat-tab-btn.active {
  background: #0077c8;
  color: #ffffff;
  border-color: #0077c8;
  box-shadow: 0 4px 14px rgba(0, 119, 200, 0.25);
}

.cat-tab-btn.active .tab-count-pill {
  background: rgba(255, 255, 255, 0.25);
  color: #ffffff;
}

/* Slider Track & Grid Integration */
.products-slider-wrapper {
  position: relative;
  width: 100%;
}

.products-grid-track,
.home-products-grid {
  display: flex !important;
  align-items: stretch !important;
  gap: 22px !important;
  overflow-x: auto !important;
  scroll-behavior: smooth !important;
  padding: 12px 4px 20px !important;
  scrollbar-width: none;
}

.products-grid-track::-webkit-scrollbar,
.home-products-grid::-webkit-scrollbar {
  display: none;
}

/* Strict Product Card Geometry */
.product-card,
.home-product-card {
  width: 300px !important;
  min-width: 300px !important;
  max-width: 300px !important;
  height: 470px !important;
  background: #ffffff !important;
  border: 1px solid #e2e8f0 !important;
  border-radius: 16px !important;
  overflow: hidden !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: space-between !important;
  box-sizing: border-box !important;
  position: relative !important;
  flex-shrink: 0 !important;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease !important;
}

.product-card:hover,
.home-product-card:hover {
  transform: translateY(-4px) !important;
  border-color: #cbd5e1 !important;
  box-shadow: 0 14px 28px rgba(8, 29, 56, 0.08) !important;
}

.product-card.hidden,
.home-product-card.hidden {
  display: none !important;
}

.badge-featured-flag,
.badge-home-featured {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #fef3c7;
  color: #b45309;
  border: 1px solid #fde68a;
  font-size: 10.5px;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  z-index: 2;
}

.badge-featured-flag svg,
.badge-home-featured svg { width: 11px; height: 11px; fill: #f59e0b; }

/* Fixed Image Window */
.product-img-box,
.home-card-img-wrap {
  width: 100% !important;
  height: 220px !important;
  min-height: 220px !important;
  max-height: 220px !important;
  background: #f8fafc !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 18px !important;
  box-sizing: border-box !important;
  border-bottom: 1px solid #f1f5f9 !important;
  margin: 0 !important;
  overflow: hidden !important;
  text-decoration: none !important;
}

.product-img-box img,
.home-card-img-wrap img {
  max-width: 100% !important;
  max-height: 100% !important;
  width: auto !important;
  height: auto !important;
  object-fit: contain !important;
  transition: transform 0.3s ease !important;
}

.product-card:hover .product-img-box img,
.home-product-card:hover .home-card-img-wrap img {
  transform: scale(1.05) !important;
}

/* Card Body & Line Clamping */
.product-info,
.home-card-body {
  padding: 16px 18px 18px !important;
  display: flex !important;
  flex-direction: column !important;
  flex: 1 1 auto !important;
  justify-content: space-between !important;
  box-sizing: border-box !important;
}

.home-card-cat {
  font-size: 10.5px !important;
  font-weight: 800 !important;
  color: #0077c8 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.6px !important;
  margin-bottom: 4px !important;
  display: block !important;
}

.product-title,
.home-card-title {
  font-size: 15px !important;
  font-weight: 800 !important;
  color: #081d38 !important;
  line-height: 1.35 !important;
  margin: 0 0 10px !important;
  height: 42px !important;
  overflow: hidden !important;
  display: -webkit-box !important;
  -webkit-line-clamp: 2 !important;
  -webkit-box-orient: vertical !important;
  text-overflow: ellipsis !important;
}

.product-title a,
.home-card-title a {
  text-decoration: none !important;
  color: inherit !important;
}

/* Footer & Buttons */
.product-footer,
.home-card-footer {
  margin-top: auto !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  padding-top: 12px !important;
  border-top: 1px solid #f1f5f9 !important;
}

.product-price,
.home-price-box .price-val {
  font-size: 17px !important;
  font-weight: 900 !important;
  color: #0177c8 !important;
  margin: 0 !important;
}

.home-price-box .price-custom {
  font-size: 12.5px !important;
  font-weight: 700 !important;
  color: #64748b !important;
}

.home-card-actions {
  display: flex !important;
  align-items: center !important;
  gap: 6px !important;
}

.btn-home-details {
  background: #0077c8 !important;
  color: #ffffff !important;
  padding: 8px 14px !important;
  border-radius: 8px !important;
  font-size: 12.5px !important;
  font-weight: 700 !important;
  text-decoration: none !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 4px !important;
  transition: background 0.2s ease !important;
}

.btn-home-details:hover {
  background: #005fa3 !important;
}

.btn-add-cart,
.btn-home-quick-cart {
  width: 36px !important;
  height: 36px !important;
  border-radius: 8px !important;
  border: 1.5px solid #cbd5e1 !important;
  background: #ffffff !important;
  color: #0077c8 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer !important;
  transition: all 0.2s ease !important;
}

.btn-add-cart:hover,
.btn-home-quick-cart:hover {
  border-color: #0077c8 !important;
  background: #e0f2fe !important;
}

/* Arrows */
.prod-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  color: #0f172a;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.2s ease;
}

.prod-arrow:hover {
  background: #0077c8;
  color: #ffffff;
  border-color: #0077c8;
}

.prod-prev { left: -20px; }
.prod-next { right: -20px; }

.products-bottom-action,
.home-catalog-cta-strip {
  margin-top: 40px;
  display: flex;
  justify-content: center;
}

.shop-all-btn,
.btn-view-full-catalog {
  background-color: #0077c8;
  color: #ffffff;
  padding: 13px 32px;
  font-size: 15px;
  font-weight: 700;
  border-radius: 8px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background-color 0.2s ease, transform 0.15s ease;
}

.shop-all-btn:hover,
.btn-view-full-catalog:hover {
  background-color: #005fa3;
  transform: translateY(-2px);
}

/* YouTube Section Container */
.youtube-section {
  padding: 80px 0 70px;
  background-color: #f8fafc;
  overflow: hidden;
}

.youtube-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 32px;
}

.youtube-header-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
}

.youtube-title {
  font-size: 32px;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.5px;
}

.youtube-all-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #081d38;
  color: #ffffff;
  padding: 10px 20px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s ease;
}

.youtube-all-btn:hover { background-color: #0077c8; }
.youtube-all-btn svg { width: 15px; height: 15px; transition: transform 0.2s ease; }
.youtube-all-btn:hover svg { transform: translateX(4px); }

.yt-carousel-wrapper { position: relative; width: 100%; }

.yt-slides-track {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  scroll-snap-type: x mandatory;
  padding: 10px 0;
}

.yt-slides-track::-webkit-scrollbar { display: none; }

.yt-carousel-slide {
  min-width: 100%;
  max-width: 100%;
  flex-shrink: 0;
  scroll-snap-align: start;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.youtube-card {
  display: flex;
  flex-direction: column;
  cursor: pointer;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  overflow: hidden;
  padding: 14px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.youtube-card:hover {
  transform: translateY(-4px);
  border-color: #cbd5e1;
  box-shadow: 0 12px 24px -6px rgba(0, 0, 0, 0.08);
}

.youtube-thumb-box {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 10px;
  overflow: hidden;
  background-color: #0f172a;
  margin-bottom: 12px;
}

.youtube-thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.youtube-card:hover .youtube-thumb-img { transform: scale(1.04); }

.play-btn-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(15, 23, 42, 0.7);
  border: 2px solid rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(4px);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.youtube-card:hover .play-btn-overlay {
  background: #0077c8;
  border-color: #0077c8;
  transform: translate(-50%, -50%) scale(1.1);
}

.play-btn-overlay svg { width: 22px; height: 22px; margin-left: 2px; }

.video-card-title {
  font-size: 15px;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.4;
  padding: 0 4px 6px;
  transition: color 0.2s ease;
}

.youtube-card:hover .video-card-title { color: #0077c8; }

.yt-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  color: #0f172a;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.2s ease;
}

.yt-nav-btn:hover { background: #0077c8; color: #ffffff; border-color: #0077c8; }
.yt-nav-prev { left: -22px; }
.yt-nav-next { right: -22px; }
.yt-nav-btn.hide-btn { display: none !important; }

.yt-dots-container { display: flex; justify-content: center; gap: 8px; margin-top: 24px; }
.yt-dot { width: 10px; height: 10px; border-radius: 50%; border: none; background: #cbd5e1; cursor: pointer; transition: all 0.25s ease; }
.yt-dot.active { width: 28px; border-radius: 6px; background: #0077c8; }

.youtube-footer-subscribe { margin-top: 36px; display: flex; justify-content: center; }
.yt-subscribe-link { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; font-size: 14px; font-weight: 700; color: #0f172a; transition: color 0.2s ease; }
.yt-subscribe-link:hover { color: #ef4444; }
.yt-icon-box { color: #ef4444; display: flex; align-items: center; }
.yt-icon-box svg { width: 24px; height: 24px; }

.video-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(6px);
  z-index: 3000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.video-modal-overlay.active { display: flex; }
.video-modal-container { width: 100%; max-width: 860px; position: relative; }
.video-modal-close { position: absolute; top: -44px; right: 0; background: none; border: none; color: #ffffff; cursor: pointer; padding: 4px; }
.video-modal-close svg { width: 28px; height: 28px; }
.video-iframe-wrapper { position: relative; width: 100%; padding-top: 56.25%; border-radius: 12px; overflow: hidden; background-color: #000000; }
.video-iframe-wrapper iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }

/* Process Section */
.process-section {
  padding: 50px 0 30px;
  background-color: #ffffff;
}

.process-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  text-align: center;
}

.process-header { margin-bottom: 50px; }
.process-title { font-size: 36px; font-weight: 800; color: #0b1e36; letter-spacing: -0.5px; }

.process-flow {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 48px;
}

.process-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 280px;
}

.process-icon-circle {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  border: 1.5px solid #0077c8;
  background-color: #f0f9ff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0077c8;
  margin-bottom: 16px;
  transition: transform 0.25s ease, background-color 0.25s ease;
}

.process-step:hover .process-icon-circle { transform: translateY(-4px); background-color: #e0f2fe; }
.process-icon-circle svg { width: 32px; height: 32px; stroke-width: 1.8; }
.process-step-num { font-size: 15px; font-weight: 800; color: #0b1e36; margin-bottom: 6px; }
.process-step-title { font-size: 18px; font-weight: 700; color: #0b1e36; margin-bottom: 8px; }
.process-step-desc { font-size: 14px; line-height: 1.5; color: #64748b; max-width: 240px; }
.process-arrow { display: flex; align-items: center; justify-content: center; color: #0077c8; margin-top: 24px; flex-shrink: 0; }
.process-arrow svg { width: 28px; height: 28px; }

.process-action { display: flex; justify-content: center; }
.process-btn {
  background-color: #0077c8;
  color: #ffffff;
  padding: 12px 36px;
  font-size: 15px;
  font-weight: 700;
  border-radius: 6px;
  text-decoration: none;
  transition: background-color 0.2s ease, transform 0.15s ease;
}

.process-btn:hover { background-color: #005fa3; transform: translateY(-2px); }

/* Awards & Stats Section */
.awards-stats-section {
  padding: 60px 0 80px;
  background-color: #ffffff;
}

.awards-stats-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: stretch;
}

.awards-card {
  background-color: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.awards-title { font-size: 26px; font-weight: 800; color: #0b1e36; margin-bottom: 28px; letter-spacing: -0.3px; }

/* 2-Card Prominent Awards Grid Architecture */
.awards-gallery,
.awards-gallery.two-awards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  width: 100%;
  margin-bottom: 24px;
}

.award-frame {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 14px rgba(8, 29, 56, 0.06);
  aspect-ratio: 16 / 11;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  border: 1.5px solid #e2e8f0;
  padding: 10px;
  box-sizing: border-box;
}

.award-frame:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 22px rgba(8, 29, 56, 0.12);
  border-color: #cbd5e1;
}

.award-frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 6px;
}

.awards-caption { font-size: 13px; font-weight: 600; color: #475569; line-height: 1.5; max-width: 380px; margin-top: auto; }

.stats-card {
  background-color: #081d38;
  border-radius: 16px;
  padding: 40px 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  width: 100%;
}

.stat-item { display: flex; flex-direction: column; align-items: center; text-align: center; }
.stat-icon { color: #38bdf8; margin-bottom: 16px; display: flex; align-items: center; justify-content: center; }
.stat-icon svg { width: 32px; height: 32px; stroke-width: 1.6; }
.stat-number { font-size: 28px; font-weight: 900; color: #ffffff; letter-spacing: -0.5px; margin-bottom: 8px; }
.stat-label { font-size: 13px; font-weight: 600; color: #cbd5e1; line-height: 1.35; max-width: 110px; }

/* Signature Process Section */
.signature-process-section {
  padding: 20px 0 40px;
  background-color: #ffffff;
  position: relative;
  overflow: hidden;
}

.signature-container {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 32px;
  text-align: center;
}

.signature-header { margin-bottom: 60px; }
.signature-title { font-size: 36px; font-weight: 800; color: #0b1e36; letter-spacing: -0.5px; }
.signature-title .text-accent { color: #0077c8; }
.signature-track-wrapper { position: relative; width: 100%; }

.signature-connecting-line {
  position: absolute;
  top: 72px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: linear-gradient(90deg, #bae6fd 0%, #0077c8 50%, #bae6fd 100%);
  z-index: 1;
}

.signature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
  z-index: 2;
}

.signature-step-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 34px 20px 28px;
  border-radius: 18px;
  background: transparent;
  border: 1px solid transparent;
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: default;
}

.signature-step-card:hover {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(0, 119, 200, 0.22);
  box-shadow: 0 16px 36px -8px rgba(0, 119, 200, 0.12), 0 4px 12px rgba(15, 23, 42, 0.04);
  transform: translateY(-8px);
}

.signature-step-badge {
  position: absolute;
  top: 14px;
  right: 18px;
  font-size: 12px;
  font-weight: 800;
  color: #94a3b8;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
}

.signature-step-card:hover .signature-step-badge { color: #0077c8; }

.signature-icon-box {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  border: 2px solid #0077c8;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0077c8;
  margin-bottom: 22px;
  box-shadow: 0 4px 14px rgba(0, 119, 200, 0.1);
  transition: all 0.3s ease;
  position: relative;
  z-index: 3;
}

.signature-step-card:hover .signature-icon-box {
  background-color: #0077c8;
  color: #ffffff;
  border-color: #0077c8;
  transform: scale(1.1);
  box-shadow: 0 8px 22px rgba(0, 119, 200, 0.35);
}

.signature-icon-box svg { width: 30px; height: 30px; stroke-width: 1.8; }
.signature-step-title { font-size: 19px; font-weight: 800; color: #0b1e36; margin-bottom: 8px; transition: color 0.3s ease; }
.signature-step-card:hover .signature-step-title { color: #0077c8; }
.signature-step-desc { font-size: 13.5px; line-height: 1.55; color: #64748b; max-width: 220px; }

/* Testimonial & CTA Combined Section */
.testimonial-cta-section {
  padding: 0 0 30px;
  background-color: #ffffff;
}

.testimonial-cta-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 28px;
  align-items: stretch;
}

.testimonial-card-wrapper {
  background-color: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 36px 28px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}

.testimonial-section-title { font-size: 24px; font-weight: 800; color: #0b1e36; margin-bottom: 24px; letter-spacing: -0.3px; }

.testimonial-slider-stage {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.testimonial-track {
  width: 100%;
  max-width: 520px;
  min-height: 150px;
  position: relative;
  overflow: hidden;
}

.testimonial-slide {
  display: none;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 24px 28px;
  align-items: center;
  gap: 24px;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.04);
  text-align: left;
  opacity: 0;
  transition: opacity 0.35s ease, transform 0.35s ease;
  transform: translateX(10px);
}

.testimonial-slide.active {
  display: flex;
  opacity: 1;
  transform: translateX(0);
}

.testi-user-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex-shrink: 0;
  min-width: 110px;
}

.testi-avatar-box {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 8px;
  border: 2px solid #0077c8;
}

.testi-avatar-img { width: 100%; height: 100%; object-fit: cover; }
.testi-author-name { font-size: 13.5px; font-weight: 800; color: #0b1e36; line-height: 1.2; margin-bottom: 2px; }
.testi-author-loc { font-size: 12px; color: #64748b; font-weight: 600; }
.testi-quote-col { flex: 1; }
.testi-quote-text { font-size: 14px; line-height: 1.6; color: #334155; font-weight: 500; }

.testi-arrow {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  color: #0077c8;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 5;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.testi-arrow:hover { background: #0077c8; color: #ffffff; border-color: #0077c8; }
.testi-arrow svg { width: 18px; height: 18px; }
.testi-prev { margin-right: 12px; }
.testi-next { margin-left: 12px; }

.testi-dots-row { display: flex; justify-content: center; gap: 6px; margin-top: auto; }
.testi-dot { width: 7px; height: 7px; border-radius: 50%; background: #cbd5e1; border: none; cursor: pointer; transition: all 0.25s ease; padding: 0; }
.testi-dot.active { width: 22px; border-radius: 4px; background: #0077c8; }

.cta-banner-card {
  background: linear-gradient(135deg, #061933 0%, #0c2b54 60%, #004b80 100%);
  border-radius: 16px;
  padding: 40px 36px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: 0 10px 25px -5px rgba(6, 25, 51, 0.25);
}

.cta-banner-content { position: relative; z-index: 2; max-width: 380px; }
.cta-banner-title { font-size: 32px; font-weight: 900; line-height: 1.18; color: #ffffff; letter-spacing: -0.5px; margin-bottom: 14px; }
.cta-banner-desc { font-size: 14px; line-height: 1.6; color: #cbd5e1; margin-bottom: 28px; }
.cta-banner-buttons { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }

.cta-banner-btn-primary {
  background-color: #0077c8;
  color: #ffffff;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 700;
  border-radius: 6px;
  text-decoration: none;
  transition: background-color 0.2s ease, transform 0.15s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.cta-banner-btn-primary:hover { background-color: #0090f0; transform: translateY(-2px); }

.cta-banner-btn-secondary {
  background-color: transparent;
  color: #ffffff;
  border: 1.5px solid rgba(255, 255, 255, 0.6);
  padding: 11px 22px;
  font-size: 14px;
  font-weight: 700;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.cta-banner-btn-secondary:hover { border-color: #ffffff; background-color: rgba(255, 255, 255, 0.1); transform: translateY(-2px); }

.cta-banner-bg-img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 55%;
  background-image: radial-gradient(circle at 70% 50%, rgba(0, 119, 200, 0.4) 0%, transparent 60%),
                    url('https://images.unsplash.com/photo-1548839140-29a749e1bc4e?auto=format&fit=crop&w=600&q=80');
  background-size: cover;
  background-position: center right;
  opacity: 0.35;
  mix-blend-mode: screen;
  pointer-events: none;
  z-index: 1;
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */
@media (max-width: 1120px) {
  .awards-stats-container,
  .testimonial-cta-container {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

@media (max-width: 1080px) {
  .hero-carousel-section { min-height: 560px; }
  .hero-title { font-size: 40px; }
  .hero-floating-badge { display: none; }
  .problems-grid { grid-template-columns: 1fr; gap: 20px; }
  .problem-card-text { min-height: auto; }
  .management-container { grid-template-columns: 1fr; gap: 40px; }
  .management-intro { align-items: center; text-align: center; }
  .management-desc { max-width: 500px; }
  .management-stage { display: none; }
  .mobile-steps-list { display: flex; }
  .signature-connecting-line { display: none; }
  .signature-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}

@media (max-width: 768px) {
  .yt-carousel-slide { grid-template-columns: 1fr; gap: 16px; }
  .yt-nav-btn, .prod-arrow { display: none !important; }
  .process-flow { flex-direction: column; align-items: center; gap: 32px; }
  .process-step { max-width: 100%; }
  .process-arrow { transform: rotate(90deg); margin: -10px 0; }
}

@media (max-width: 640px) {
  .hero-container, .problems-container, .management-container, .youtube-container, .process-container, .awards-stats-container, .signature-container, .testimonial-cta-container {
    padding: 0 20px;
  }
  .hero-title, .problems-heading, .management-title, .products-heading, .process-title, .signature-title {
    font-size: 28px;
  }
  .hero-cta-group, .cta-banner-buttons { flex-direction: column; align-items: stretch; gap: 12px; }
  .carousel-arrow, .testi-arrow { display: none; }
  
  /* Mobile Product Card Optimization */
  .product-card,
  .home-product-card {
    width: 270px !important;
    min-width: 270px !important;
    max-width: 270px !important;
    height: 450px !important;
  }
  
  .product-img-box,
  .home-card-img-wrap {
    height: 190px !important;
    min-height: 190px !important;
  }

  /* Awards Responsive Collapse */
  .awards-gallery,
  .awards-gallery.two-awards-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .stats-grid, .signature-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* ==========================================================================
   Additions for Brief Compliance (Proof Bar Strip & Packages Grid)
   ========================================================================== */

/* Packages Bundles Section */
.packages-bundle-section {
  padding: 30px 0 50px;
  background-color: #f8fafc;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
}

.packages-bundle-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.package-bundle-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.2s ease;
}

.package-bundle-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.05);
}

.package-bundle-card.featured-pkg {
  border-color: #0077c8;
  box-shadow: 0 8px 24px rgba(0, 119, 200, 0.1);
}

.pkg-popular-tag {
  position: absolute;
  top: 14px;
  right: 16px;
  background: #0077c8;
  color: #ffffff;
  font-size: 10px;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 4px;
}

.package-bundle-card h3 {
  font-size: 18px;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 4px 0;
}

.pkg-sub {
  font-size: 12px;
  color: #64748b;
  margin-bottom: 14px;
  display: block;
}

.pkg-price-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 18px;
}

.pkg-price-main {
  font-size: 24px;
  font-weight: 900;
  color: #0077c8;
}

.pkg-price-del del {
  font-size: 14px;
  color: #94a3b8;
}

.pkg-items-list {
  list-style: none;
  padding: 0;
  margin: 0 0 22px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.pkg-items-list li {
  font-size: 12.5px;
  color: #475569;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
}

.pkg-items-list li::before {
  content: "•";
  color: #0077c8;
  font-weight: bold;
}

.btn-pkg-action {
  background: #ffffff;
  color: #0077c8;
  border: 1.5px solid #0077c8;
  padding: 10px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  transition: all 0.2s ease;
}

.btn-pkg-action:hover {
  background: #f0f9ff;
}

.btn-pkg-action.featured-action {
  background: #0077c8;
  color: #ffffff;
}

.btn-pkg-action.featured-action:hover {
  background: #005fa3;
}

@media (max-width: 900px) {
  .proof-bar-container {
    flex-direction: column;
    gap: 12px;
  }
  .packages-bundle-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   Prominent Site-Themed Proof Bar (Matches Design Language)
   ========================================================================== */
.soul-proof-bar-section {
  width: 100%;
  background-color: #f8fafc;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1.5px solid #e2e8f0;
  padding: 28px 0;
  position: relative;
  z-index: 5;
  box-shadow: 0 4px 12px rgba(8, 29, 56, 0.03);
}

.soul-proof-bar-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  box-sizing: border-box;
}

/* Individual Metric Item */
.soul-proof-item {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1;
}

.soul-proof-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background-color: #ffffff;
  border: 1.5px solid #dbeafe;
  color: #0077c8;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 119, 200, 0.08);
  flex-shrink: 0;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.soul-proof-item:hover .soul-proof-icon {
  transform: translateY(-2px);
  background-color: #eff6ff;
  border-color: #0077c8;
}

.soul-proof-icon svg {
  width: 24px;
  height: 24px;
  stroke-width: 2;
}

.soul-proof-details {
  display: flex;
  flex-direction: column;
}

.soul-proof-headline {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 2px;
}

.soul-val-primary {
  font-size: 24px;
  font-weight: 900;
  color: #081d38;
  letter-spacing: -0.6px;
  line-height: 1.15;
}

.soul-val-label {
  font-size: 15px;
  font-weight: 800;
  color: #0077c8;
}

.soul-badge-tag {
  font-size: 11px;
  font-weight: 800;
  color: #0077c8;
  background-color: #e0f2fe;
  padding: 2px 8px;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.soul-proof-desc {
  font-size: 13px;
  color: #64748b;
  margin: 0;
  font-weight: 500;
  line-height: 1.4;
}

.soul-proof-desc strong {
  color: #1e293b;
  font-weight: 700;
}

.soul-proof-divider {
  width: 1px;
  height: 48px;
  background-color: #cbd5e1;
  flex-shrink: 0;
}

@media (max-width: 1120px) {
  .soul-proof-bar-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    padding: 10px 24px;
  }
  .soul-proof-divider {
    display: none;
  }
}

@media (max-width: 600px) {
  .soul-proof-bar-section {
    padding: 20px 0;
  }
  .soul-proof-bar-container {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 0 20px;
  }
  .soul-val-primary {
    font-size: 20px;
  }
}
/* ==========================================================================
   Smart Lead Generator & Converter Pop-Up Modal
   ========================================================================== */
.lead-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(8, 29, 56, 0.75);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  box-sizing: border-box;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.35s ease;
}

.lead-modal-overlay.is-active {
  opacity: 1;
  visibility: visible;
}

.lead-modal-box {
  width: 100%;
  max-width: 860px;
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 60px -10px rgba(8, 29, 56, 0.4);
  position: relative;
  transform: translateY(30px) scale(0.97);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.lead-modal-overlay.is-active .lead-modal-box {
  transform: translateY(0) scale(1);
}

.btn-lead-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #f1f5f9;
  border: none;
  color: #64748b;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.2s;
}

.btn-lead-close:hover {
  background: #e2e8f0;
  color: #081d38;
}

.btn-lead-close svg {
  width: 18px;
  height: 18px;
}

.lead-modal-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.2fr;
}

/* Left Visual Column */
.lead-modal-visual {
  background: linear-gradient(135deg, #081d38 0%, #0d2e59 100%);
  color: #ffffff;
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.lm-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(0, 119, 200, 0.3);
  border: 1px solid rgba(0, 119, 200, 0.5);
  color: #7dd3fc;
  font-size: 11px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 14px;
  align-self: flex-start;
}

.lm-badge svg {
  width: 13px;
  height: 13px;
}

.lead-modal-visual h3 {
  font-size: 22px;
  font-weight: 900;
  line-height: 1.25;
  color: #ffffff;
  margin: 0 0 10px;
}

.lead-modal-visual p {
  font-size: 13px;
  color: #cbd5e1;
  line-height: 1.5;
  margin: 0 0 24px;
}

.lm-trust-points {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.lm-tp-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 12px;
  color: #e2e8f0;
}

.lm-tp-item svg {
  width: 15px;
  height: 15px;
  color: #38bdf8;
  flex-shrink: 0;
  margin-top: 1px;
}

/* Right Form Column */
.lead-modal-form-wrap {
  padding: 36px 36px 32px;
  background: #ffffff;
}

.lm-header {
  margin-bottom: 20px;
}

.lm-header h4 {
  font-size: 20px;
  font-weight: 800;
  color: #081d38;
  margin: 0 0 4px;
}

.lm-header p {
  font-size: 12.5px;
  color: #64748b;
  margin: 0;
}

.lm-form-group {
  margin-bottom: 14px;
}

.lm-form-group label {
  display: block;
  font-size: 11.5px;
  font-weight: 700;
  color: #334155;
  margin-bottom: 4px;
}

.lm-form-group label .req {
  color: #ef4444;
}

.lm-input {
  width: 100%;
  padding: 9px 12px;
  border-radius: 8px;
  border: 1.5px solid #cbd5e1;
  font-size: 13px;
  color: #081d38;
  background: #f8fafc;
  outline: none;
  box-sizing: border-box;
  transition: all 0.2s;
  font-family: inherit;
}

.lm-input:focus {
  border-color: #0077c8;
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(0, 119, 200, 0.12);
}

.lm-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.btn-lead-submit {
  width: 100%;
  background: #0077c8;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  padding: 12px;
  font-size: 13.5px;
  font-weight: 800;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 6px;
  transition: background 0.2s;
}

.btn-lead-submit:hover {
  background: #005fa3;
}

.btn-lead-submit svg {
  width: 15px;
  height: 15px;
}

/* Success State */
.lm-success-msg {
  text-align: center;
  padding: 30px 10px;
}

.lm-success-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #dcfce7;
  color: #16a34a;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}

.lm-success-icon svg {
  width: 26px;
  height: 26px;
}

.lm-success-msg h5 {
  font-size: 20px;
  font-weight: 800;
  color: #081d38;
  margin: 0 0 6px;
}

.lm-success-msg p {
  font-size: 13.5px;
  color: #64748b;
  line-height: 1.5;
  margin: 0;
}

@media (max-width: 768px) {
  .lead-modal-grid {
    grid-template-columns: 1fr;
  }
  .lead-modal-visual {
    padding: 24px;
  }
  .lead-modal-form-wrap {
    padding: 24px;
  }
  .lm-form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
}