    <link rel="stylesheet" href="css/tiers_inx.css">tier-footertier-footertier-footertier-footertier-footertier-footertier-footer/* CSS Custom Properties (Required Variables) */
:root {
  --primary-color: #2c3e50;
  --secondary-color: #3498db;
  --accent-color: green;
  --success-color: #27ae60;
  --warning-color: #f39c12;
  --light-gray: #f8f9fa;
  --border-color: #ddd;
  --shadow: 0 0 20px rgba(0,0,0,0.1);
  --transition: all 0.3s ease;
  --free-color: #27ae60;
  --platinum-color: #c0c0c0;
  --golden-color: #ffd700;
  --vip-color: #ff6b35;
  --radius: 8px;
}


.intier-title {
  margin-bottom: 15px;
  font-size: 20px; 
  text-transform: uppercase;
}

/* Enhanced Tiers Row Layout */
.tiers-row {
  display: flex;
  gap: 1.0rem;
  justify-content: center;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  padding: 0 1rem;
}

.tier {
  flex: 1 1 calc(25% - 0.75rem);
  min-width: 220px;
  max-width: none;
  background: #fff;
  border-radius: 10px;  
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}


.tier2 {
  flex: 1 1 calc(25% - 0.75rem);
  min-width: 220px;
  max-width: 380px;
  background: #fff;
  border-radius: 10px;  
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tier:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.tier::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 40%, rgba(0,51,102,0.15));
  pointer-events: none;
}

.tier-header {
  padding: 1.5rem 1rem;
  text-align: center;
  color: #fff;
}

.tier-header2 {
  font-size: inherit;
  height: 170px;
  padding: 1.5rem 1rem;
  text-align: center;
}


.tier-header.free {
  background: linear-gradient(135deg,#007B27,#000);
  min-height: 122px;
}

.tier-header.platinum {
  background: linear-gradient(135deg,#003366,#336699);
  min-height: 122px;
}

.tier-header.golden {
  background: linear-gradient(135deg,gold,#ffd700);
  min-height: 122px;
}

.tier-header.vip {
  background: linear-gradient(135deg,#750B0D,#A32023);
  min-height: 122px;
}

.tier-header h2 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.tier-header2 h2 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}


.tier-price {
  font-size: 1.5rem;
  font-weight: 600;
}

.tier-list {
  list-style: none;
  padding: 1rem;
  flex-grow: 1;
}

.tier-list li {
  padding: 0.4rem 0;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #eee;
  font-size: 0.9rem;
  transition: background var(--transition);
}

.tier-list li i {
  color: var(--accent-color);
  margin-right: 0.6rem;
  width: 18px;
}

.tier-list li:hover {
  background: #f0f8ff;
}

.tier-footer {
  padding-left: 1rem;
  padding-right: 1rem;
  text-align: center;
}

.tier-footer button {
  background: #218838;
  color: #fff;
  border: none;
  padding: 0.6rem 1.2rem;
  border-radius: var(--radius);
  cursor: pointer;
  font-weight: 600;
  font-size: 0.9rem;
  transition: background var(--transition), transform var(--transition);
}

.tier-footer button:hover {
  background: #218838;
  transform: translateY(-2px);
}

/* Responsive - Desktop 1200px+ (4 cards) */
@media (min-width: 1200px) {
	
  .tiers-row {
    max-width: 1200px;
    margin: 0 auto 3rem auto;
    padding: 0 0 2rem 0;
  }
  .tier {
    flex: 1 1 calc(25% - 0.75rem);
    max-width: 280px;
  }
}

/* Large Desktop 1024-1199px (4 cards) */
@media (min-width: 1024px) and (max-width: 1199px) {
  .tier {
    flex: 1 1 calc(25% - 0.75rem);
    min-width: 200px;
  }
}

/* Tablet 768-1023px (2 cards) */
@media (min-width: 768px) and (max-width: 1023px) {
  .tiers-row {
    padding: 0 1.5rem;
  }
  .tier {
    flex: 1 1 calc(50% - 0.5rem);
    min-width: 280px;
    max-width: none;
  }
}

/* Mobile up to 767px (single column) */
@media (max-width: 767px) {
	
  .intier-title {
    font-size: 13px;
}		
	
  .tiers-row {
    flex-direction: column;
    align-items: center;
    width: 100%;
    gap: 1.5rem;
    padding: 0 1rem;
  }
  .tier {
    flex: none;
    min-width: 0;
    max-width: 400px;
    width: 100%;
  }
  .tier-header {
    padding: 0.2rem 1rem;
    min-height: 80px;
  }
  .tier-header h2 {
    font-size: 1.4rem;
  }
  .tier-price {
    font-size: 1.5rem;
  }
  .tier-list {
    padding: 1rem;
  }
  .tier-list li {
    padding: 0.6rem 0;
    font-size: 0.9rem;
  }
}

/* Small Mobile 480px and below */
@media (max-width: 480px) {
	
  .intier-title {
    font-size: 12px;
}	
	
  .tiers-row {
    padding: 0 0.5rem;
    gap: 1rem;
  }
  .tier {
    max-width: none;
  }
  .tier-header {
    padding: 1rem 0.8rem;
    min-height: 90px;
  }
  .tier-header h2 {
    font-size: 1.3rem;
  }
  .tier-list {
    padding: 0.8rem;
  }
  .tier-list li {
    font-size: 0.85rem;
  }
}

  i {
	color: green;
}

  button {
	background: green;
}