/* ================================
   PRICING PAGE HEADER / FOOTER BASE
   ================================ */

/* Header (same style as other pages) */
.header {
  width: 100%;
  padding: 10px 40px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background: rgba(255,255,255,0.55);
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 999;
  border-bottom: 1px solid rgba(255,255,255,0.3);
}

.header-logo img {
  width: 34px;
  height: auto;
  transition: 0.25s ease;
}

.header-logo img:hover {
  transform: translateY(-2px);
}

.nav-links {
  display: flex;
  gap: 24px;
  margin-left: 24px;
}

.nav-links a {
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  color: #222;
  transition: 0.25s ease;
}

.nav-links a:hover {
  color: #3A76F0;
}

.header-btn {
  margin-left: 35px;
  padding: 9px 20px;
  background: #3A76F0;
  color: white;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.25s ease;
}

.header-btn:hover {
  background: #2F63CC;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(58,118,240,0.25);
}


/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger div {
  width: 25px;
  height: 3px;
  background: #222;
  border-radius: 3px;
}

/* Mobile menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(10px);
  padding: 20px 30px;
  border-bottom: 1px solid rgba(0,0,0,0.07);
}

.mobile-menu a {
  text-decoration: none;
  color: #222;
  font-size: 17px;
  padding: 12px 0;
}

.mobile-menu.open {
  display: flex;
}

@media(max-width: 750px) {
  .nav-links,
  .header-btn {
    display: none;
  }
  .hamburger {
    display: flex;
  }
}


/* Footer */
.site-footer {
  text-align: center;
  padding: 20px;
  color: #444;
  margin-top: 60px;
  font-size: 14px;
  opacity: 0.9;
}

/* =============================
   PRICING HERO
   ============================= */

.pricing-hero {
  text-align: center;
  padding: 80px 20px 40px;
}

.pricing-hero-title {
  font-size: 46px;
  font-weight: 900;
  margin-bottom: 12px;
}

.pricing-hero-subtitle {
  font-size: 18px;
  color: #555;
}

/* =============================
   PRICING CARDS (already built)
   ============================= */
/* keep your existing card CSS — no changes needed */
.pricing-section {
  padding: 70px 20px;
  text-align: center;
}

.pricing-title {
  font-size: 38px;
  font-weight: 900;
  margin-bottom: 8px;
}

.pricing-subtitle {
  font-size: 18px;
  color: #555;
  margin-bottom: 50px;
}

.pricing-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  gap: 35px;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
}

.price-card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  padding: 35px;
  border-radius: 22px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  position: relative;
  transition: 0.35s;
  overflow: hidden;
  text-align: left;
}

.ribbon-flat {
  background: #FEC84B;
  color: #000;
  font-weight: 700;
  font-size: 13px;
  padding: 6px 12px;
  border-radius: 12px;
  position: absolute;
  top: 15px;
  right: 15px;
  z-index: 20;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

.price-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.12);
}

/* Icons */
.card-icon {
  font-size: 32px;
  margin-bottom: 10px;
}

/* Micro description */
.micro-copy {
  font-size: 15px;
  color: #777;
  margin-top: -5px;
}

/* Pricing text */
.price {
  font-size: 42px;
  font-weight: 900;
  margin: 15px 0 20px;
  color: #3A76F0;
}

/* Feature list */
.price-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 25px;
}

.price-card ul li {
  margin-bottom: 10px;
  color: #333;
  font-size: 16px;
}

/* CTA button */
.price-btn {
  display: inline-block;
  padding: 12px 24px;
  background: #3A76F0;
  color: #fff;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.25s ease;
}

.price-btn:hover {
  background: #2F63CC;
  transform: translateY(-2px);
}

/* Highlighted "Most Popular" card */
.highlight {
  background: linear-gradient(135deg, rgba(58,118,240,0.9), rgba(58,118,240,0.7));
  color: white;
}

.highlight .price,
.highlight ul li,
.highlight .micro-copy {
  color: white !important;
}

/* Ribbon */
.ribbon {
  position: absolute;
  top: -8px;
  right: -28px;
  background: #FEC84B;
  color: #000;
  padding: 6px 50px;
  font-size: 14px;
  font-weight: 700;
  transform: rotate(35deg);
  border-radius: 4px;
}

/* Premium border */
.premium {
  border: 2px solid #3A76F0;
  box-shadow: 0 8px 28px rgba(58,118,240,0.25);
}

/* Footer note */
.pricing-footer-note {
  margin-top: 40px;
  color: #555;
  font-size: 16px;
}

.pricing-footer-note a {
  color: #3A76F0;
  font-weight: 600;
  text-decoration: none;
}
/* Flat Ribbon */
.ribbon-flat {
  background: #FEC84B;
  color: #000;
  font-weight: 700;
  font-size: 13px;
  padding: 6px 12px;
  border-radius: 12px;
  position: absolute;
  top: 15px;
  right: 15px;
  z-index: 20;
}

/* =============================
   COMPARISON TABLE
   ============================= */

.compare-section {
  margin-top: 80px;
  padding: 40px 20px;
}

.compare-title {
  text-align: center;
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 30px;
}

.compare-table {
  max-width: 900px;
  margin: auto;
  border-radius: 20px;
  overflow: hidden;
}

.compare-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  padding: 14px 20px;
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.header-row {
  background: rgba(58,118,240,0.15);
  font-weight: 700;
}

.compare-row div {
  text-align: center;
  font-size: 16px;
}

.compare-feature {
  text-align: left !important;
  font-weight: 600;
}

/* =============================
   CTA SECTION
   ============================= */

.cta-section {
  text-align: center;
  margin: 80px 0 40px;
  padding: 40px 20px;
}

.cta-section h2 {
  font-size: 34px;
  font-weight: 900;
  margin-bottom: 10px;
}

.cta-section p {
  font-size: 18px;
  color: #555;
  margin-bottom: 18px;
}

.cta-btn {
  display: inline-block;
  padding: 14px 28px;
  background: #3A76F0;
  color: white;
  font-size: 18px;
  font-weight: 700;
  border-radius: 12px;
  text-decoration: none;
  transition: 0.25s ease;
}

.cta-btn:hover {
  background: #2F63CC;
  transform: translateY(-3px);
}

/* ===========================================
   CREATOR SHOWCASE SECTION
   =========================================== */

.showcase-section {
  margin: 80px 0;
  padding: 0 20px;
  text-align: center;
}

.showcase-title {
  font-size: 36px;
  font-weight: 900;
  margin-bottom: 10px;
}

.showcase-subtitle {
  font-size: 18px;
  color: #555;
  margin-bottom: 45px;
}

/* Grid */
.showcase-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  gap: 40px;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

/* Showcase Cards */
.showcase-card {
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(10px);
  border-radius: 22px;
  padding: 25px;
  text-align: left;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  transition: 0.35s ease;
}

.showcase-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.12);
}

.showcase-img {
  width: 100%;
  border-radius: 16px;
  margin-bottom: 15px;
}

/* Text */
.showcase-card h3 {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 6px;
}

.showcase-card p {
  font-size: 15px;
  color: #555;
  margin-bottom: 18px;
}

/* Button */
.showcase-btn {
  display: inline-block;
  padding: 10px 20px;
  background: #3A76F0;
  color: white;
  font-weight: 600;
  text-decoration: none;
  border-radius: 10px;
  transition: 0.25s ease;
}

.showcase-btn:hover {
  background: #2F63CC;
  transform: translateY(-2px);
}
