/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  color: #333;
  overflow-x: hidden;
}

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

/* Header Styles */
.header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
}

.logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-menu {
  display: flex;
  gap: 2rem;
}

.nav-link {
  text-decoration: none;
  color: #64748b;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #3b82f6;
}

.nav-buttons {
  display: flex;
  gap: 1rem;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background: #333;
  transition: all 0.3s ease;
}

/* Button Styles */
.btn {
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
}

.btn-primary {
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
  color: white;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
}

.btn-outline {
  background: transparent;
  border: 2px solid #e2e8f0;
  color: #64748b;
}

.btn-outline:hover {
  border-color: #3b82f6;
  color: #3b82f6;
}

.btn-outline-white {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: white;
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: white;
}

.btn-large {
  padding: 1rem 2rem;
  font-size: 1rem;
}

.btn-full {
  width: 100%;
  justify-content: center;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #f8fafc 0%, #e0e7ff 100%);
  padding: 120px 0 80px;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(59, 130, 246, 0.1);
  color: #3b82f6;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: #1e293b;
}

.gradient-text {
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 1.25rem;
  color: #64748b;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.stat {
  text-align: center;
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: #3b82f6;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.9rem;
  color: #64748b;
}

.hero-image {
  position: relative;
}

.image-container {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.dashboard-image {
  width: 100%;
  height: auto;
  display: block;
}

.floating-card {
  position: absolute;
  background: white;
  padding: 1rem 1.5rem;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 600;
  color: #1e293b;
  animation: float 3s ease-in-out infinite;
}

.floating-card i {
  color: #3b82f6;
  font-size: 1.2rem;
}

.card-1 {
  top: 20%;
  right: -10%;
  animation-delay: 0s;
}

.card-2 {
  top: 60%;
  left: -15%;
  animation-delay: 1s;
}

.card-3 {
  bottom: 10%;
  right: -5%;
  animation-delay: 2s;
}

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

/* Trusted By Section */
.trusted-by {
  background: white;
  padding: 4rem 0;
}

.trusted-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 2rem;
}

.trusted-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #64748b;
  font-weight: 500;
}

.trusted-item i {
  color: #fbbf24;
}

/* Section Styles */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-badge {
  display: inline-block;
  background: rgba(139, 92, 246, 0.1);
  color: #8b5cf6;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1rem;
}

.section-description {
  font-size: 1.25rem;
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
}

/* Features Section */
.features {
  padding: 5rem 0;
  background: #f8fafc;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.feature-card {
  background: white;
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border: 1px solid #e2e8f0;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
  transform: scale(1.1);
}

.feature-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1rem;
}

.feature-description {
  color: #64748b;
  line-height: 1.7;
}

/* Extensive Capabilities Section */
.cinefo-ext-capabilities {
  padding: 6rem 0;
  background: linear-gradient(135deg, #f8fafc 0%, #e0e7ff 50%, #f1f5f9 100%);
  position: relative;
  overflow: hidden;
}

.cinefo-ext-capabilities::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23e2e8f0" stroke-width="0.5" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.5;
}

.cinefo-ext-container {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  margin-top: 3rem;
  position: relative;
  z-index: 1;
}

.cinefo-ext-main {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.cinefo-ext-category {
  background: white;
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.cinefo-ext-category:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.cinefo-ext-category-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid #f1f5f9;
}

.cinefo-ext-category-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.3rem;
}

.cinefo-ext-category-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #1e293b;
  margin: 0;
}

.cinefo-ext-capability-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.cinefo-ext-capability-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.cinefo-ext-capability-item:hover {
  background: #f8fafc;
  transform: translateX(5px);
}

.cinefo-ext-capability-item i {
  color: #10b981;
  font-size: 1.1rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.cinefo-ext-capability-content h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1e293b;
  margin: 0 0 0.5rem 0;
}

.cinefo-ext-capability-content p {
  color: #64748b;
  margin: 0;
  line-height: 1.6;
}

/* Sidebar Styles */
.cinefo-ext-sidebar {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.cinefo-ext-stats-card,
.cinefo-ext-highlights-card,
.cinefo-ext-technology-card {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
}

.cinefo-ext-stats-title,
.cinefo-ext-highlights-title,
.cinefo-ext-tech-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1.5rem;
  text-align: center;
}

.cinefo-ext-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.cinefo-ext-stat-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  background: #f8fafc;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.cinefo-ext-stat-item:hover {
  background: #e0e7ff;
  transform: scale(1.02);
}

.cinefo-ext-stat-icon {
  width: 35px;
  height: 35px;
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.cinefo-ext-stat-info {
  flex: 1;
}

.cinefo-ext-stat-number {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1e293b;
  line-height: 1;
}

.cinefo-ext-stat-label {
  font-size: 0.8rem;
  color: #64748b;
  margin-top: 2px;
}

.cinefo-ext-highlights-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.cinefo-ext-highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.cinefo-ext-highlight-icon {
  width: 35px;
  height: 35px;
  background: linear-gradient(135deg, #10b981, #059669);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.9rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.cinefo-ext-highlight-content h4 {
  font-size: 1rem;
  font-weight: 600;
  color: #1e293b;
  margin: 0 0 0.5rem 0;
}

.cinefo-ext-highlight-content p {
  color: #64748b;
  font-size: 0.9rem;
  margin: 0;
  line-height: 1.5;
}

.cinefo-ext-tech-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.cinefo-ext-tech-badge {
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.cinefo-ext-tech-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(59, 130, 246, 0.3);
}

/* Additional Features */
.cinefo-ext-additional-features {
  margin-top: 4rem;
  padding: 3rem;
  background: white;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.cinefo-ext-additional-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #1e293b;
  text-align: center;
  margin-bottom: 2.5rem;
}

.cinefo-ext-additional-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.cinefo-ext-additional-item {
  text-align: center;
  padding: 1.5rem;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.cinefo-ext-additional-item:hover {
  background: #f8fafc;
  transform: translateY(-3px);
}

.cinefo-ext-additional-item i {
  font-size: 2rem;
  color: #3b82f6;
  margin-bottom: 1rem;
}

.cinefo-ext-additional-item h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 0.75rem;
}

.cinefo-ext-additional-item p {
  color: #64748b;
  font-size: 0.9rem;
  line-height: 1.6;
}

/* Responsive Design for Extensive Capabilities */
@media (max-width: 1024px) {
  .cinefo-ext-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .cinefo-ext-stats-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .cinefo-ext-capabilities {
    padding: 4rem 0;
  }

  .cinefo-ext-category,
  .cinefo-ext-stats-card,
  .cinefo-ext-highlights-card,
  .cinefo-ext-technology-card {
    padding: 1.5rem;
  }

  .cinefo-ext-category-header {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }

  .cinefo-ext-additional-grid {
    grid-template-columns: 1fr;
  }

  .cinefo-ext-additional-features {
    padding: 2rem;
  }
}

@media (max-width: 480px) {
  .cinefo-ext-capability-item {
    flex-direction: column;
    text-align: center;
    gap: 0.75rem;
  }

  .cinefo-ext-stat-item {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }

  .cinefo-ext-highlight-item {
    flex-direction: column;
    text-align: center;
    gap: 0.75rem;
  }
}

/* New Benefits Section Styles */
.cinefo-benefits-section {
  padding:20px 0;
  background: #f8fafc; /* Light background for contrast */
}

.cinefo-benefits-subsection-title {
  font-size: 2rem;
  font-weight: 700;
  color: #1e293b;
  text-align: center;
  margin-top: 4rem;
  margin-bottom: 2.5rem;
}

/* Key Reasons Grid */
.cinefo-benefits-reasons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.cinefo-benefits-reason-card {
  background: white;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid #e2e8f0;
}

.cinefo-benefits-reason-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.cinefo-benefits-reason-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.8rem;
  margin: 0 auto 1.5rem;
}

.cinefo-benefits-reason-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 0.75rem;
}

.cinefo-benefits-reason-description {
  color: #64748b;
  line-height: 1.6;
}

/* Benefits of Joining / Struggles / Simplified Lists */
.cinefo-benefits-list-section,
.cinefo-benefits-struggles-section,
.cinefo-benefits-simplified-section {
  margin-bottom: 4rem;
}

.cinefo-benefits-list-grid,
.cinefo-benefits-struggles-list-grid,
.cinefo-benefits-simplified-list-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.cinefo-benefits-list-item,
.cinefo-benefits-simplified-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: white;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border: 1px solid #e2e8f0;
}

.cinefo-benefits-list-item:hover,
.cinefo-benefits-simplified-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.cinefo-benefits-list-item i,
.cinefo-benefits-simplified-item i {
  color: #10b981; /* Green for positive points */
  font-size: 1.2rem;
  margin-top: 4px;
  flex-shrink: 0;
}

.cinefo-benefits-list-item p,
.cinefo-benefits-simplified-item p {
  color: #333;
  line-height: 1.6;
}

.cinefo-benefits-struggle-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: white;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border: 1px solid #e2e8f0;
}

.cinefo-benefits-struggle-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.cinefo-benefits-struggle-item i {
  color: #ef4444; /* Red for struggles */
  font-size: 1.2rem;
  margin-top: 4px;
  flex-shrink: 0;
}

.cinefo-benefits-struggle-item p {
  color: #333;
  line-height: 1.6;
}

/* Tagline */
.cinefo-benefits-tagline {
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
  color: white;
  padding: 3rem 2rem;
  border-radius: 20px;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.cinefo-benefits-tagline-text {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  line-height: 1.4;
}

.cinefo-benefits-tagline-text:last-child {
  margin-bottom: 0;
}

/* Responsive adjustments for new benefits section */
@media (max-width: 768px) {
  .cinefo-benefits-subsection-title {
    font-size: 1.8rem;
  }

  .cinefo-benefits-reasons-grid,
  .cinefo-benefits-list-grid,
  .cinefo-benefits-struggles-list-grid,
  .cinefo-benefits-simplified-list-grid {
    grid-template-columns: 1fr;
  }

  .cinefo-benefits-reason-card,
  .cinefo-benefits-list-item,
  .cinefo-benefits-struggle-item,
  .cinefo-benefits-simplified-item {
    padding: 1.25rem;
  }

  .cinefo-benefits-tagline {
    padding: 2rem 1.5rem;
  }

  .cinefo-benefits-tagline-text {
    font-size: 1.25rem;
  }
}

@media (max-width: 480px) {
  .cinefo-benefits-subsection-title {
    font-size: 1.5rem;
  }

  .cinefo-benefits-reason-icon {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }

  .cinefo-benefits-reason-title {
    font-size: 1.1rem;
  }

  .cinefo-benefits-tagline-text {
    font-size: 1rem;
  }
}




/* Members Database Page Specific Styles */

/* Hero Section */
.mdb-hero-section {
  padding: 80px 20px; /* py-20 px-4 */
  background: linear-gradient(135deg, #3b82f6, #8b5cf6); /* from-blue-600 to-purple-600 */
  color: white; /* text-white */
  text-align: center; /* text-center */
  min-height: 400px; /* Adjust as needed */
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin-top: 64px; /* To account for fixed header */
}

.mdb-hero-badge {
  background: rgba(255, 255, 255, 0.2); /* bg-white/20 */
  color: white; /* text-white */
  padding: 0.5rem 1rem; /* px-4 py-2 */
  border-radius: 9999px; /* rounded-full */
  font-size: 0.875rem; /* text-sm */
  font-weight: 500; /* font-medium */
  margin-bottom: 1rem; /* mb-4 */
  display: inline-block;
  transition: background-color 0.3s ease;
}

.mdb-hero-badge:hover {
  background: rgba(255, 255, 255, 0.3); /* hover:bg-white/30 */
}

.mdb-hero-title {
  font-size: 3rem; /* text-5xl */
  font-weight: 700; /* font-bold */
  line-height: 1.25; /* leading-tight */
  margin-bottom: 1rem; /* mb-4 */
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.mdb-hero-description {
  font-size: 1.25rem; /* text-xl */
  color: rgba(255, 255, 255, 0.9); /* text-blue-100 */
  max-width: 48rem; /* max-w-3xl */
  margin-left: auto;
  margin-right: auto;
}

/* Key Highlights Section */
.mdb-highlights-section {
  padding: 5rem 0; /* py-20 px-4 */
  background-color: white; /* bg-white */
}

.mdb-highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* md:grid-cols-2 lg:grid-cols-3 */
  gap: 2rem; /* gap-8 */
}

.mdb-highlight-item {
  display: flex; /* flex */
  align-items: flex-start; /* items-start */
  gap: 1rem; /* gap-4 */
  padding: 1.5rem; /* p-6 */
  background-color: #f8fafc; /* bg-gray-50 */
  border-radius: 0.5rem; /* rounded-lg */
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); /* shadow-sm */
  border: 1px solid #e2e8f0; /* border border-gray-100 */
}

.mdb-highlight-icon {
  width: 3rem; /* w-12 */
  height: 3rem; /* h-12 */
  background: linear-gradient(135deg, #3b82f6, #8b5cf6); /* from-blue-500 to-purple-500 */
  border-radius: 9999px; /* rounded-full */
  display: flex; /* flex */
  align-items: center; /* items-center */
  justify-content: center; /* justify-center */
  flex-shrink: 0; /* flex-shrink-0 */
  color: white; /* text-white */
  font-size: 1.5rem; /* w-6 h-6 */
}

.mdb-highlight-title {
  font-size: 1.25rem; /* text-xl */
  font-weight: 700; /* font-bold */
  color: #1e293b; /* text-gray-900 */
  margin-bottom: 0.5rem; /* mb-2 */
}

.mdb-highlight-description {
  color: #475569; /* text-gray-600 */
  line-height: 1.625; /* leading-relaxed */
}

/* Why It Matters Section */
.mdb-why-it-matters-section {
  padding: 5rem 0; /* py-20 px-4 */
  background-color: #f1f5f9; /* bg-gray-100 */
}

.mdb-why-it-matters-benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* md:grid-cols-2 lg:grid-cols-4 */
  gap: 1.5rem; /* gap-6 */
  margin-bottom: 3rem; /* mb-12 */
}

.mdb-why-it-matters-benefit-item {
  display: flex; /* flex */
  align-items: center; /* items-center */
  gap: 0.75rem; /* gap-3 */
  padding: 1rem; /* p-4 */
  background-color: white; /* bg-white */
  border-radius: 0.5rem; /* rounded-lg */
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); /* shadow-sm */
  border: 1px solid #e2e8f0; /* border border-gray-200 */
}

.mdb-why-it-matters-benefit-item i {
  color: #22c55e; /* text-green-500 */
  font-size: 1.5rem; /* w-6 h-6 */
  flex-shrink: 0; /* flex-shrink-0 */
}

.mdb-why-it-matters-benefit-item p {
  color: #374151; /* text-gray-700 */
  font-weight: 500; /* font-medium */
}

.mdb-comparison-grid {
  display: grid;
  grid-template-columns: 1fr; /* Default to single column */
  gap: 3rem; /* gap-12 */
}

@media (min-width: 1024px) {
  /* lg breakpoint */
  .mdb-comparison-grid {
    grid-template-columns: 1fr 1fr; /* lg:grid-cols-2 */
  }
}

.mdb-subsection-title {
  font-size: 1.5rem; /* text-2xl */
  font-weight: 700; /* font-bold */
  color: #1e293b; /* text-gray-900 */
  margin-bottom: 1.5rem; /* mb-6 */
  text-align: center; /* text-center */
}

@media (min-width: 1024px) {
  /* lg breakpoint */
  .mdb-subsection-title {
    text-align: left; /* lg:text-left */
  }
}

.mdb-struggles-list,
.mdb-simplified-list {
  display: flex;
  flex-direction: column;
  gap: 1rem; /* space-y-4 */
}

.mdb-struggle-item,
.mdb-simplified-item {
  display: flex; /* flex */
  align-items: flex-start; /* items-start */
  gap: 0.75rem; /* gap-3 */
  padding: 1rem; /* p-4 */
  background-color: white; /* bg-white */
  border-radius: 0.5rem; /* rounded-lg */
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); /* shadow-sm */
  border: 1px solid #e2e8f0; /* border border-gray-200 */
}

.mdb-struggle-item i {
  color: #ef4444; /* text-red-500 */
  font-size: 1.5rem; /* w-6 h-6 */
  flex-shrink: 0; /* flex-shrink-0 */
  margin-top: 0.25rem; /* mt-1 */
}

.mdb-simplified-item i {
  color: #22c55e; /* text-green-500 */
  font-size: 1.5rem; /* w-6 h-6 */
  flex-shrink: 0; /* flex-shrink-0 */
  margin-top: 0.25rem; /* mt-1 */
}

.mdb-struggle-item p,
.mdb-simplified-item p {
  color: #374151; /* text-gray-700 */
  line-height: 1.625; /* leading-relaxed */
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .mdb-hero-title {
    font-size: 2.5rem; /* text-4xl */
  }

  .mdb-hero-description {
    font-size: 1rem; /* text-base */
  }

  .mdb-highlights-grid {
    grid-template-columns: 1fr; /* md:grid-cols-1 */
  }

  .mdb-why-it-matters-benefits-grid {
    grid-template-columns: 1fr; /* md:grid-cols-1 */
  }

  .mdb-subsection-title {
    font-size: 1.25rem; /* text-xl */
  }
}

@media (max-width: 480px) {
  .mdb-hero-section {
    padding: 60px 15px; /* py-16 px-4 */
  }

  .mdb-hero-title {
    font-size: 2rem; /* text-3xl */
  }

  .mdb-highlight-item,
  .mdb-why-it-matters-benefit-item,
  .mdb-struggle-item,
  .mdb-simplified-item {
    padding: 1rem; /* p-4 */
  }
}



/* Pricing Page Specific Styles */

/* Hero Section */
.pricing-hero-section {
  padding: 80px 20px; /* py-20 px-4 */
  background: linear-gradient(135deg, #3b82f6, #8b5cf6); /* from-blue-600 to-purple-600 */
  color: white; /* text-white */
  text-align: center; /* text-center */
  min-height: 350px; /* Adjust as needed */
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin-top: 64px; /* To account for fixed header */
}

.pricing-hero-badge {
  background: rgba(255, 255, 255, 0.2); /* bg-white/20 */
  color: white; /* text-white */
  padding: 0.5rem 1rem; /* px-4 py-2 */
  border-radius: 9999px; /* rounded-full */
  font-size: 0.875rem; /* text-sm */
  font-weight: 500; /* font-medium */
  margin-bottom: 1rem; /* mb-4 */
  display: inline-block;
  transition: background-color 0.3s ease;
}

.pricing-hero-badge:hover {
  background: rgba(255, 255, 255, 0.3); /* hover:bg-white/30 */
}

.pricing-hero-title {
  font-size: 3rem; /* text-5xl */
  font-weight: 700; /* font-bold */
  line-height: 1.25; /* leading-tight */
  margin-bottom: 1rem; /* mb-4 */
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.pricing-hero-description {
  font-size: 1.25rem; /* text-xl */
  color: rgba(255, 255, 255, 0.9); /* text-blue-100 */
  max-width: 48rem; /* max-w-3xl */
  margin-left: auto;
  margin-right: auto;
}

/* Pricing Packages Section */
.pricing-packages-section {
  padding: 5rem 0; /* py-20 px-4 */
  background-color: #f8fafc; /* bg-gray-50 */
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem; /* gap-8 */
}

.pricing-card {
  background-color: white;
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border: 1px solid #e2e8f0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.pricing-card-highlight {
  border: 2px solid #3b82f6; /* Highlight border */
  box-shadow: 0 10px 30px rgba(59, 130, 246, 0.2);
}

.pricing-plan-header {
  margin-bottom: 1.5rem;
}

.pricing-plan-title {
  font-size: 1.75rem; /* text-3xl */
  font-weight: 700; /* font-bold */
  color: #1e293b; /* text-gray-900 */
  margin-bottom: 0.5rem;
}

.pricing-plan-description {
  font-size: 13px; /* text-base */
  color: #64748b; /* text-gray-600 */
  line-height: 1.6;
}

.pricing-features {
  margin-bottom: 2rem;
  flex-grow: 1; /* Allows features list to take available space */
}

.pricing-feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem; /* gap-3 */
  font-size: 1rem; /* text-base */
  color: #374151; /* text-gray-700 */
  margin-bottom: 0.75rem; /* mb-3 */
}

.pricing-feature-item i {
  color: #22c55e; /* text-green-500 */
  font-size: 1.1rem; /* w-5 h-5 */
  flex-shrink: 0;
}

.pricing-price {
  font-size: 1.25rem; /* text-xl */
  color: #1e293b; /* text-gray-900 */
  font-weight: 600; /* font-semibold */
  margin-bottom: 1.5rem;
  text-align: center;
}

.pricing-amount {
  font-size: 2.25rem; /* text-4xl */
  font-weight: 800; /* font-extrabold */
  color: #3b82f6; /* text-blue-600 */
}

/* Add-Ons Section */
.pricing-addons-section {
  padding: 5rem 0;
  background-color: white;
}

.pricing-addons-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem; /* gap-6 */
  margin-top: 2rem;
}

.pricing-addon-item {
  display: flex;
  align-items: center;
  gap: 0.75rem; /* gap-3 */
  background-color: #f8fafc; /* bg-gray-50 */
  padding: 1rem 1.5rem; /* px-6 py-4 */
  border-radius: 8px; /* rounded-lg */
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  font-size: 13px;
  color: #374151;
  font-weight: 500;
  transition: all 0.3s ease;
}

.pricing-addon-item:hover {
  background-color: #e0e7ff; /* bg-blue-100 */
  transform: translateY(-3px);
}

.pricing-addon-item i {
  color: #8b5cf6; /* text-purple-500 */
  font-size: 1.2rem;
  flex-shrink: 0;
}

/* Why Cinefo’s Pricing is Transparent Section */
.pricing-transparent-section {
  padding: 5rem 0;
  background-color: #f1f5f9; /* bg-gray-100 */
}

.pricing-transparent-list {
  display: flex;
  flex-direction: column;
  gap: 1rem; /* space-y-4 */
  max-width: 700px;
  margin: 0 auto;
}

.pricing-transparent-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem; /* gap-3 */
  background-color: white;
  padding: 1.25rem; /* p-5 */
  border-radius: 12px; /* rounded-xl */
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  font-size: 1.1rem;
  color: #374151;
  line-height: 1.6;
  transition: all 0.3s ease;
}

.pricing-transparent-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.pricing-transparent-item i {
  color: #22c55e; /* text-green-500 */
  font-size: 1.2rem;
  margin-top: 0.25rem; /* mt-1 */
  flex-shrink: 0;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
  .pricing-grid {
    grid-template-columns: 1fr; /* Stack cards on smaller screens */
  }
}

@media (max-width: 768px) {
  .pricing-hero-title {
    font-size: 2.5rem;
  }

  .pricing-hero-description {
    font-size: 1rem;
  }

  .pricing-card {
    padding: 2rem;
  }

  .pricing-plan-title {
    font-size: 1.5rem;
  }

  .pricing-amount {
    font-size: 2rem;
  }

  .pricing-addons-list {
    flex-direction: column;
    align-items: center;
  }

  .pricing-transparent-item {
    font-size: 1rem;
    padding: 1rem;
  }
}

@media (max-width: 480px) {
  .pricing-hero-section {
    padding: 60px 15px;
  }

  .pricing-hero-title {
    font-size: 2rem;
  }

  .pricing-card {
    padding: 1.5rem;
  }

  .pricing-plan-title {
    font-size: 1.25rem;
  }

  .pricing-amount {
    font-size: 1.75rem;
  }
}
