






/* GLOBAL CONTAINER */
.container {
width: 90%;
  margin: 0 auto;
  padding: 0 50px;
}





/* MAIN CONTAINER */
.video-container {
  width: 100%;
  padding: 40px 15px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* VIDEO BOX */
.video-wrapper {
  width: 100%;
  max-width: 900px;   /* center width */
}

/* VIDEO STYLE */
.video-wrapper video {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}



@media (max-width: 768px) {
  .video-wrapper {
    max-width: 100%;
  }
}



/* =========================
   📄 PRODUCT LANDING PAGE
   ========================= */

/* HERO */


.product-hero {
  background: #161e32;
  color: #ffffff;
  padding: 80px 0;
}

.product-badge {
  display: inline-block;
  padding: 6px 14px;
  margin-bottom: 18px;
  font-size: 12px;
  font-weight: 500;
  color: #ffffff;
  background: rgba(217, 217, 217, 0.07);
  border: 1px solid rgba(217, 217, 217, 0.07);
  border-radius: 999px;
}

.product-hero h1 {
  font-size: 40px;
  font-weight: 500;
  margin-bottom: 10px;
}

.product-hero h2 {
  font-size: 19px;
  font-weight: 500;
  margin-bottom: 10px;
}

.product-hero p {
  font-size: 20px;
text-align: justify;
}

/* OVERVIEW */
.section.innovative {
  padding: 80px 0 40px;
  background: #ffffff;
}

.innovative-content h2 {
  font-size: 35px;
  font-weight: 400;
  margin-bottom: 20px;
}

.innovative-content p {
  font-size: 16px;
  line-height: 1.6;
  color: #000000b2;
  margin-bottom: 18px;
}

/* FEATURE CARDS */
.feature-cards {
  margin-top: 60px;
}

.feature-flex {
  display: flex;
  gap: 28px;
  align-items: stretch;
}

/* CARD */
.feature-card {
  flex: 1;
  background: #ffffff;
  border-radius: 18px;
  padding: 34px;
  border: 1px solid;
}

/* COLORS */
.feature-blue {
  background: #f0f8ff;
  border-color: #bfdbfe;
}

.feature-green {
  background: #f0fdf4;
  border-color: #bbf7d0;
}

/* ICON */
.feature-icon {
  width: 50px;
  height: 50px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.feature-icon img {
  width: 30px;
  height: auto;
}

/* TEXT */
.feature-card h3 {
  font-size: 27px;
  font-weight: 500;
  margin-bottom: 14px;
}

.feature-card p {
  font-size: 17px;
  line-height: 1.6;
  color: #000000b2;
  margin-bottom: 20px;
}

/* LIST */
.feature-list {
  list-style: none;
  padding: 0;
}

.feature-list li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 10px;
  font-size: 16px;
  color: #000000b2;
}

.feature-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
}

.blue-check li::before {
  color: #2563eb;
}

.green-check li::before {
  color: #16a34a;
}

/* =========================
   📱 RESPONSIVE
   ========================= */

@media (max-width: 992px) {
  .product-hero h1 {
    font-size: 40px;
  }

  .product-hero h2 {
    font-size: 26px;
  }

  .product-hero p {
    max-width: 100%;
    font-size: 18px;
  }

  .feature-flex {
    flex-direction: column;
  }
}

@media (max-width: 576px) {
  .container {
    padding: 0 20px;
  }

  .product-hero {
    padding: 60px 0;
  }

  .product-hero h1 {
    font-size: 32px;
  }

  .product-hero h2 {
    font-size: 22px;
  }

  .feature-card {
    padding: 24px;
  }
}












/* ================= application US ================= */


* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Segoe UI", sans-serif;
}

/* ---------------- CARDIAC SECTION ---------------- */
.cardiac-section {
  padding: 80px 6%;
}

.cardiac-container {
  background: #faf5fe;
  border-radius: 22px;
  padding: 50px;
  max-width: 1200px;
  margin: auto;
}

.cardiac-header {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
}

.cardiac-icon img {
  width: 36px;
}

.cardiac-text h2 {
  font-size: 28px;
  margin-bottom: 10px;
}

.cardiac-text p {
  font-size: 17px;
  color: #475569;
  line-height: 1.6;
}

.steps-flex {
  display: flex;
  gap: 20px;
  justify-content: space-between;
}

.step-card {
  flex: 1;
  background: #fff;
  border-radius: 12px;
  padding: 22px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.step-card h4 { font-size: 18px; margin-bottom: 6px; }
.step-card span { color: #64748b; font-size: 14px; }

/* ---------------- FEATURES ---------------- */
.features-section {
  padding: 80px 6%;
  background: #f8fafc;
}

.features-header {
  text-align: center;
  margin-bottom: 60px;
}

.features-header h2 { font-size: 36px; margin-bottom: 8px; }
.features-header p { font-size: 20px; color: #64748b; }

.features-flex {
  display: flex;
  gap: 28px;
  max-width: 1200px;
  margin: auto;
}

.feature-card {
  flex: 1;
  background: #fff;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 6px 25px rgba(0,0,0,0.05);
}

.feature-card h3 { font-size: 22px; margin-bottom: 10px; }
.feature-card p { color: #475569; line-height: 1.6; }

.feature-icon {
  width: 64px;
  height: 64px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.feature-icon.blue { background:#dbeafe; }
.feature-icon.green { background:#dcfce7; }
.feature-icon.purple { background:#f3e8ff; }

/* ---------------- CTA ---------------- */
.cta-section {
  padding: 80px 6%;
  text-align: center;
}

.cta-section h2 { font-size: 34px; margin-bottom: 12px; }
.cta-section p { font-size: 20px; color: #64748b; margin-bottom: 30px; }

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  transition: 0.2s;
}

.btn-primary {
  background: #193cb8;
  color: white;
}

.btn-secondary {
  background: white;
  color: #193cb8;
  border: 1px solid #e2e8f0;
}

/* ---------------- RESPONSIVE ---------------- */
@media (max-width: 1024px) {
  .steps-flex { flex-wrap: wrap; }
  .step-card { flex: 1 1 48%; }
  .features-flex { flex-wrap: wrap; }
  .feature-card { flex: 1 1 48%; }
}

@media (max-width: 600px) {
  .cardiac-header { flex-direction: column; }
  .step-card { flex: 1 1 100%; }
  .feature-card { flex: 1 1 100%; }
  .cardiac-container { padding: 30px; }
}


/* ================= CALL TO ACTION ================= */





