/* Product-specific only – all global moved out */
/* Align nav with home: transparent bg, black text/buttons */
.navbar {
  background: transparent; /* Match home */
  }
  .navbar .logo {
  color: black;
  }
  .nav-links .nav-link-item {
  color: black;
  }
  .nav-btn {
  background: white;
  color: #00b1da;
  }
  .nav-btn:hover {
  background: linear-gradient(90deg, #36d1dc 0%, #5b86e5 100%);
  color: white;
  }
  .nav-btn-outline {
  background: transparent;
  color: white;
  border: 2px solid white;
  }
  .nav-btn-outline:hover {
  background: linear-gradient(90deg, #36d1dc 0%, #5b86e5 100%);
  color: white;
  }
  /* Main content padding to match home's flow */
  .main-content {
  padding-top: 100px; /* Keep minimal, but align with hero */
  }
  /* Reuse home's hero styles for consistency */
  .hero-section {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  padding-top: 150px;
  gap: 0px;
  background: none;
  }
  .hero-container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  width: 100%;
  position: relative;
  z-index: 10;
  }
  .hero-content {
  width: 50%;
  padding-right: 60px;
  }
  .hero-content h1 {
  font-size: 48px;
  font-weight: 300;
  line-height: 1.2;
  color: #2c3e50;
  margin-bottom: 25px;
  }
  .hero-content p {
  font-size: 18px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 35px;
  max-width: 600px;
  }
  /* Video: Match home's exact sizing/positioning */
  .video-wrapper {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: auto;
  z-index: 40;
  }
  .mockup-container {
  position: relative;
  padding-bottom: 82%; /* Match home */
  height: 0;
  overflow: hidden;
  }
  .overview-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 16% 2% 32% 49%; /* Match home's shift */
  background: url("../Home/hero-background.png") center center no-repeat; /* Assume path relative */
  background-size: contain;
  box-sizing: border-box;
  border: none;
  object-fit: contain;
  pointer-events: auto;
  }
  /* Blue line: Exact copy from home */
  .blue-line-section {
  padding: 50px 0;
  width: 100%;
  position: relative;
  z-index: 30;
  }
  .blue-line-section .container {
  display: flex;
  align-items: flex-start;
  gap: 60px;
  max-width: 1600px;
  margin: 0 auto;
  padding: 20vh 40px 0px 40px;
  }
  .blue-vertical-line {
  width: 5px;
  height: 100px;
  background: linear-gradient(180deg, #36d1dc, #5b86e5);
  border-radius: 4px;
  flex-shrink: 0;
  margin-top: 0;
  box-shadow: 0 4px 15px rgba(54, 209, 220, 0.4);
  }
  .line-content {
  flex: 1;
  max-width: 700px;
  }
  .line-content h2 {
  font-size: 34px;
  font-weight: 300;
  color: #2c3e50;
  margin-bottom: 30px;
  line-height: 1.2;
  }
  .line-content p {
  font-size: 1.1rem;
  color: #666;
  line-height: 1.4;
  width: 100%;
  max-width: 700px;
  }
  /* Content sections: Copy from home for side-by-side text/image */
  .stakeholders-section,
  .content-section {
  padding: 50px 0; /* Align padding */
  align-items: center;
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 30;
  }
  .content-container {
  max-width: 1600px;
  display: flex;
  align-items: center;
  }
  .content-text {
  width: 50%;
  padding: 4rem 8rem;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  z-index: 30;
  }
  .content-text h2 {
  font-size: 2rem;
  font-weight: 300;
  color: var(--text-main);
  line-height: 1.2;
  }
  .content-text ul {
  font-size: 1.1rem;
  color: #666;
  line-height: 1.4;
  list-style-type: disc;
  padding-left: 20px;
  margin-bottom: 20px;
  margin-top: 0;
  }
  .content-image {
  width: 50%;
  box-shadow: 0px 30px 113px 0px rgba(37, 41, 66, 8%);
  }
  .content-image-res {
  display: none;
  box-shadow: 0px 30px 113px 0px rgba(37, 41, 66, 8%);
  }
  /* Section 4: Copy from home for how-it-works */
  .section-4 {
  position: relative;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10vw 0px;
  margin: -15vw 0px;
  }
  .section-4-container {
  padding: 20vw 40px 20vw 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  }
  .section-4 svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  }
  .section-4 svg:nth-child(2) {
  display: none;
  }
  .white-line-section {
  width: 100%;
  }
  .white-line-section .container {
  display: flex;
  align-items: flex-start;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  }
  .white-vertical-line {
  width: 5px;
  height: 100px;
  background: white;
  border-radius: 4px;
  flex-shrink: 0;
  margin-top: 0;
  box-shadow: 0 4px 15px rgba(54, 209, 220, 0.4);
  }
  .white-line-section .line-content h2 {
  color: white;
  font-size: 34px; /* Match home h2 */
  font-weight: 300;
  }
  .white-line-section .line-content p {
  color: white;
  opacity: 0.8;
  font-size: 1.1rem;
  }
  .features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
  margin-top: 60px;
  max-width: 1200px;
  color: white;
  }
  .feature-item {
  display: flex;
  gap: 20px;
  text-align: left;
  align-items: flex-start;
  }
  .feature-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
  color: white;
  }
  .feature-content h3 {
  font-size: 18px;
  margin-bottom: 10px;
  font-weight: 500;
  }
  .feature-content p {
  font-size: 14px;
  opacity: 0.8;
  line-height: 1.5;
  }
  /* Final CTA: Copy from home */
  .final-cta-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 60px 20px;
  position: relative;
  z-index: 1;
  }
  .final-cta-wrap .content-container {
  max-width: 1200px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
  align-items: center;
  }
  .final-cta-wrap h1 {
  font-size: 2rem;
  font-weight: 300;
  color: var(--text-main);
  line-height: 1.2;
  }
  .final-cta-wrap p {
  font-size: 1.1rem;
  color: var(--text-light);
  line-height: 1.4;
  width: 100%;
  max-width: 700px;
  }
  .start-btn {
  background: linear-gradient(135deg, #36d1dc, #5b86e5);
  color: white;
  border: none;
  padding: 12px 25px;
  border-radius: 22px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  white-space: nowrap;
  display: inline-block;
  transition: all 0.3s ease;
  text-decoration: none;
  }
  .start-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(91, 134, 229, 0.4);
  }
  /* Responsive: Copy from home to ensure matching breakpoints */
  @media (max-width: 768px) {
  .hero-section {
  height: 130vh;
  padding-top: 120px;
  gap: 40vh;
    }
  .hero-content {
  width: 100%;
  padding: 0;
    }
  .hero-content h1 {
  font-size: 2.3rem;
    }
  .blue-line-section .container {
  padding: 10vh 0px;
  gap: 20px;
    }
  .line-content h2 {
  font-size: 2.3rem;
    }
  .content-image {
  display: none;
    }
  .content-image-res {
  display: block;
  width: 100%;
  height: auto;
    }
  .content-text {
  width: 100%;
  padding: 0rem;
    }
  .section-4 {
  margin: -10rem 0rem;
    }
  .section-4 svg:nth-child(1) {
  display: none;
    }
  .section-4 svg:nth-child(2) {
  display: block;
    }
  .section-4-container {
  padding: 20rem 0px 20rem 0px;
    }
  .features-grid {
  padding: 0 40px;
  grid-template-columns: repeat(1, 1fr);
    }
  .video-wrapper {
  position: relative;
  height: 300px;
    }
  .overview-video {
  background-image: url("../Home/hero-bg-res.png");
  padding: 24% 2% 18% 10%;
    }
  }