/* Override global flex so this page centers normally */
main.main-content {
  display: block !important;
  padding: 0;
  margin: 0;
}

/* ------------------------------------------------------------------
   Pricing Hero
------------------------------------------------------------------ */
.pricing-hero {
  max-width: 800px;
  margin: 3rem auto 2rem;
  text-align: center;
}
.pricing-hero h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
}
.pricing-hero p {
  font-family: 'Open Sans', sans-serif;
  font-size: 1rem;
  color: white;
  opacity: 0.9;
}

/* ------------------------------------------------------------------
   Pricing Grid & Cards
------------------------------------------------------------------ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 900px;
  margin: 2rem auto 4rem;
}

.pricing-card {
  background: rgba(255,255,255,0.1);
  border-radius: 12px;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  padding: 2rem 1.5rem;
  text-align: center;
  color: white;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.pricing-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.pricing-price {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  margin-bottom: 1rem;
}
.pricing-price span {
  font-size: 1rem;
  opacity: 0.8;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
  text-align: left;
}
.pricing-features li {
  margin-bottom: 0.75rem;
  padding-left: 1.2rem;
  position: relative;
}
.pricing-features li::before {
  content: '✔️';
  position: absolute;
  left: 0;
  top: 0;
}

/* ------------------------------------------------------------------
   Button Alignment Fix
------------------------------------------------------------------ */
.pricing-button {
  display: block;           /* makes the link a block-level element */
  width: 100%;              /* full width of its container */
  max-width: 200px;         /* optional: limit the width */
  margin: 1rem auto 0;      /* center it horizontally */
  text-align: center;
}

/* Remove any fixed width on glass-button for this page */
.pricing-card .glass-button {
  width: auto !important;
}


/* -------------------------------------------------------------------
   Google-Style Login Button
------------------------------------------------------------------- */
.google-login-btn {
  width: 50%;
  padding: 0.95rem;
  background: linear-gradient(180deg,#2563eb 0%,#1d4ed8 100%);
  border: none;
  border-radius: 14px;
  color: #fff;
  font-size: 1.05em;
  font-weight: 700;
  letter-spacing: .2px;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(29,78,216,.35), inset 0 -2px 0 rgba(255,255,255,.18);
  transition: transform .08s ease, filter .18s ease, box-shadow .18s ease;
}
.google-login-btn:hover {
  filter: brightness(1.04);
  box-shadow: 0 10px 26px rgba(29,78,216,.42), inset 0 -2px 0 rgba(255,255,255,.22);
  transform: translateY(-1px);
}
.google-login-btn:active { transform: translateY(0); }
.google-login-btn:disabled { opacity: .6; cursor: not-allowed; transform: none; }
.google-login-btn:focus-visible {
  outline: 3px solid rgba(79,118,255,.45);
  outline-offset: 2px;
}


/* ------------------------------------------------------------------
   Responsive Tweaks
------------------------------------------------------------------ */
@media (max-width: 768px) {
  .pricing-hero {
    margin: 2rem 1rem 1.5rem;
  }
  .pricing-grid {
    gap: 1.5rem;
    margin: 1.5rem 1rem 3rem;
  }
  .pricing-card {
    padding: 1.5rem 1rem;
  }
}
