/* ================================
   Pricing Page Styles
   ================================ */

/* ====== BUTTON: Yellow Metallic Home Button ====== */
.btn-home-metallic {
  display: inline-block;
  background: linear-gradient(145deg, #ffcc33, #e6b800);
  color: #000;
  font-weight: 700;
  text-decoration: none;
  padding: 8px 18px;
  border-radius: 30px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3),
              inset 0 2px 2px rgba(255,255,255,0.4);
  transition: all 0.2s ease-in-out;
  margin-bottom: 10px; /* optional spacing */
}

.btn-home-metallic:hover {
  background: linear-gradient(145deg, #ffd84d, #f0c300);
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.35),
              inset 0 2px 3px rgba(255,255,255,0.5);
}
/* ====== END BUTTON: Yellow Metallic Home Button ====== */


/* Pricing Hero Section */
.pricing-hero {
  background: linear-gradient(135deg, #1f5fbf, #123d7a 45%, #0d2a5a);
  color: #fff;
  padding: 80px 20px; /* more top/bottom padding */
  text-align: center; /* center text horizontally */
}

.pricing-hero h1 {
  font-size: 2.5rem; /* bigger heading */
  font-weight: 800;
  margin-bottom: 12px; /* spacing from subtext */
}

.pricing-hero p {
  font-size: 1.125rem; /* slightly larger for readability */
  max-width: 800px;
  margin: 0 auto;
  opacity: 0.95; /* softer contrast for subtext */
}


.pricing-grid {
  display: grid;
  gap: 1rem;
  margin-top: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.price-card {
  border-radius: 18px;
  padding: 1.25rem;
  color: #e9f0ff;
  background: radial-gradient(circle at top left, #1f5fbf 0%, #123d7a 40%, #0d2a5a 100%);
  box-shadow: 0 12px 30px rgba(0,0,0,.2);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* ====== CARD: Social Media Coordination Highlight ====== */
/* ====== CARD: Social Media Coordination ====== */
.price-card-highlight {
  border: 2px solid #ffcc33; /* gold border */
  background: linear-gradient(145deg, #0d47a1, #002171); /* same blue as others */
  box-shadow: 0 4px 20px rgba(255, 204, 51, 0.2);
}

.price {
  font-size: 2rem;
  font-weight: 800;
  margin: .25rem 0;
}

.pricing-link {
  color: #ffffff; /* white text */
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
}

.pricing-link:hover {
  color: #ffd84d; /* gold hover */
  text-decoration: underline;
}



.per {
  opacity: .9;
}

.features {
  margin: .5rem 0 1rem;
}

.features li {
  margin: .25rem 0;
}

.cta-row {
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
}

.cta-row .btn {
  flex: 1;
  text-align: center;
}

details {
  margin-bottom: .75rem;
}

details summary {
  font-weight: bold;
  cursor: pointer;
}

details p {
  margin: .5rem 0 0;
}
