/* Savings Badge */
.mark3-savings-badge {
  background: linear-gradient(135deg, #E8425A 0%, #D93651 100%);
  color: white;
  padding: 12px 20px;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(232, 66, 90, 0.4);
  font-weight: 700;
  text-align: center;
  font-size: 14px;
  line-height: 1;
  display: inline-block;
}

/* Card Styles */
.mark3-card {
  background: white;
  border: 2px solid #C9D2DA;
  border-radius: 8px;
  padding: 24px;
  transition: all 0.3s ease;
}

.mark3-card:hover {
  border-color: #1A4FA3;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

/* Feature Icon Circle */
.mark3-icon-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(62, 199, 232, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1A4FA3;
  font-size: 24px;
}

/* Check Mark Icon Style */
.mark3-check-icon {
  color: #3EC7E8;
  font-size: 20px;
  margin-right: 12px;
}

/* Gradient Background */
.mark3-gradient-bg {
  background: linear-gradient(135deg, #0A1C48 0%, #1A4FA3 100%);
}

/* Section Spacing */
.mark3-section {
  padding: 80px 0;
}

/* Container Max Width */
.mark3-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 16px;
}

/* Product Grid */
.mark3-product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 1024px) {
  .mark3-product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .mark3-product-grid {
    grid-template-columns: 1fr;
  }
}

/* Distributor Logo Container */
.mark3-distributor-logo {
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  background: #F9FAFB;
  border-radius: 8px;
}

/* Breadcrumb */
.mark3-breadcrumb {
  background: #F9FAFB;
  border-bottom: 1px solid #C9D2DA;
  padding: 16px 0;
  font-size: 14px;
  color: #6B7A89;
}

.mark3-breadcrumb a {
  color: #6B7A89;
  text-decoration: none;
  transition: color 0.3s;
}

.mark3-breadcrumb a:hover {
  color: #1A4FA3;
}

/* Savings Comparison Table */
.mark3-comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: 8px;
  overflow: hidden;
}

.mark3-comparison-table thead {
  background: #0A1C48;
  color: white;
}

.mark3-comparison-table th,
.mark3-comparison-table td {
  padding: 16px 24px;
  text-align: left;
}

.mark3-comparison-table tbody tr:nth-child(even) {
  background: #F9FAFB;
}

.mark3-comparison-table tbody tr:hover {
  background: rgba(62, 199, 232, 0.05);
}

/* Video Testimonial Card */
.mark3-video-card {
  border: 1px solid #C9D2DA;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s;
}

.mark3-video-card:hover {
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  transform: translateY(-4px);
}

/* Play Button Overlay */
.mark3-play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  background: #1A4FA3;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
  transition: all 0.3s;
  cursor: pointer;
}

.mark3-play-button:hover {
  transform: translate(-50%, -50%) scale(1.1);
}