.pricing-section {
  max-width: 1400px;
  margin: 100px auto;
  padding: 0 20px;
  text-align: center;
}

.pricing-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 10px;
}

.pricing-subtitle {
  font-size: 16px;
  color: #555;
  margin : 10px auto;
  /* margin-bottom: 50px; */
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 2fr));
  gap: 30px;
  margin-top: 20px;
}

.pricing-card {
  background: #ffffff;
  border-radius: 22px;
  padding: 35px 28px;
  box-shadow: 0 25px 50px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-8px);
}

.pricing-card h3 {
  font-size: 25px;
  margin-bottom: 10px;
  font-weight:600px;
}

.plan-desc {
  font-size: 14px;
  color: #666;
  margin-bottom: 20px;
}

.price {
  font-size: 24px;
  font-weight: 500;
  color: #0d9488;
}

#breif {
  font-weight: 700;   
  color: #000;        
}


.price-note {
  font-size: 13px;
  color: #777;
}

.pricing-card ul {
  list-style: none;
  padding: 0;
  margin: 25px 0;
  text-align: left;
}

.pricing-card ul li {
  margin-bottom: 10px;
  font-size: 14px;
  padding-left: 18px;
  position: relative;
}

.pricing-card ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #06b6d4;
}

.plan-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 26px;
  background: linear-gradient(90deg, #06b6d4, #0d9488);
  color: #fff;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
}

.plan-btn:hover {
  opacity: 0.9;
}

/* HIGHLIGHT PLAN */
.highlight {
  border: 2px solid #06b6d4;
  transform: scale(1.05);
}

/* CORPORATE */
.corporate .price {
  font-size: 28px;
}

/* MOBILE */
@media (max-width: 768px) {
  .highlight {
    transform: scale(1);
  }
}
/* ===============================
   RESPONSIVE ENHANCEMENTS
   =============================== */

/* LARGE TABLETS / SMALL LAPTOPS */
@media (max-width: 1200px) {
  .pricing-section {
    margin: 80px auto;
  }

  .pricing-title {
    font-size: 32px;
  }
}

/* TABLETS */
@media (max-width: 992px) {
  .pricing-title {
    font-size: 30px;
  }

  .pricing-subtitle {
    font-size: 15px;
    margin-bottom: 40px;
  }

  .pricing-card {
    padding: 30px 24px;
  }

  .price {
    font-size: 30px;
  }
}

/* MOBILE */
@media (max-width: 768px) {
  .pricing-section {
    margin: 60px auto;
  }

  .pricing-title {
    font-size: 26px;
  }

  .pricing-subtitle {
    font-size: 14px;
  }

  .pricing-grid {
    gap: 20px;
  }

  .pricing-card {
    padding: 26px 20px;
  }

  .pricing-card:hover {
    transform: none; /* better UX on touch */
  }

  .price {
    font-size: 28px;
  }

  .highlight {
    transform: scale(1); /* avoid zoom issues */
  }
}

/* SMALL MOBILE */
@media (max-width: 480px) {
  .pricing-title {
    font-size: 24px;
  }

  .pricing-card h3 {
    font-size: 20px;
  }

  .price {
    font-size: 26px;
  }

  .plan-btn {
    width: 100%;
    padding: 14px;
  }
}


/* video gallery section */
.pricing-videos {
  padding: 90px 0;
  background: #f9fafb;
}

.pricing-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

.pricing-title {
  text-align: center;
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 50px;
}

/* GRID */
.video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

/* CARD */
.video-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.video-card:hover {
  transform: translateY(-6px);
}

.video-card video {
  width: 100%;
  border-radius: 14px;
  margin-bottom: 14px;
}

.video-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 6px;
}

.video-card p {
  font-size: 14px;
  color: #6b7280;
}

/* RESPONSIVE */
@media (max-width: 1200px) {
  .video-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .video-grid {
    grid-template-columns: 1fr;
  }

  .pricing-title {
    font-size: 28px;
  }
}