.web-container {
  margin: 200px auto 100px;
  width: 95%;
  max-width: 1280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 72px;
  padding-bottom: 120px;
  font-family: "Segoe UI", sans-serif;
  z-index: 2;
  will-change: opacity, transform;
}

.pricing-hero {
  max-width: 880px;
  text-align: center;
  background: rgba(255, 255, 255, 0.85);
  border-radius: 20px;
  padding: 56px 48px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  margin: 0 auto;
}

.pricing-hero .eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2rem;
  font-size: 0.75rem;
  color: #ff6781;
  margin-bottom: 0.5rem;
}

.pricing-hero h1 {
  font-size: clamp(2rem, 5vw, 2.8rem);
  margin-bottom: 1rem;
  color: #222;
}

.pricing-hero .hero-copy {
  margin-bottom: 1.75rem;
  color: #444;
  line-height: 1.7;
}

.pricing-hero .price-highlight {
  font-weight: 700;
  color: #ff6781;
  white-space: nowrap;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1.75rem;
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.25s ease;
}

.cta.primary {
  background: linear-gradient(135deg, #ff6781, #ff8fa1);
  color: #fff;
  box-shadow: 0 10px 24px rgba(255, 103, 129, 0.32);
}

.cta.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(255, 103, 129, 0.4);
}

.cta.ghost {
  background: rgba(255, 255, 255, 0.9);
  color: #222;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.cta.ghost:hover {
  transform: translateY(-2px);
  border-color: rgba(0, 0, 0, 0.18);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.trust-note {
  color: #666;
  font-size: 0.95rem;
  margin: 0;
}

.plans-section {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}

.plans-section h2 {
  text-align: center;
  font-size: 2rem;
  color: #222;
  margin-bottom: 40px;
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}

.plan-card {
  background: rgba(255, 255, 255, 0.92);
  border-radius: 18px;
  padding: 32px 28px;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.08);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.plan-card.free {
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.plan-card.premium {
  border: 2px solid rgba(255, 103, 129, 0.4);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(255, 229, 236, 0.96));
}

.plan-card .pill {
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 6px 12px;
  background: #ff6781;
  color: #fff;
  font-size: 0.75rem;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.plan-card h3 {
  font-size: 1.6rem;
  color: #222;
  margin: 0;
}

.plan-card .price-tag {
  font-size: 1.4rem;
  font-weight: 700;
  color: #111;
  margin: 0;
}

.plan-card .plan-tagline {
  color: #555;
  margin: 0;
}

.plan-benefits {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: #333;
}

.plan-benefits li::before {
  content: "✔";
  margin-right: 8px;
  color: #4caf50;
  font-weight: 700;
}

.plan-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 10px;
  background: #111;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.plan-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(17, 17, 17, 0.25);
}

.plan-card .price-note {
  font-size: 0.9rem;
  color: #444;
  margin: 0;
}

.feature-highlights {
  width: 100%;
  max-width: 1100px;
  text-align: center;
  margin: 0 auto;
}

.feature-highlights h2 {
  font-size: 2rem;
  color: #222;
  margin-bottom: 36px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
}

.feature {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
  text-align: left;
}

.feature h3 {
  margin-bottom: 10px;
  font-size: 1.3rem;
  color: #222;
}

.feature p {
  color: #555;
  line-height: 1.6;
}

.ribbon {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 16px;
  background: linear-gradient(135deg, rgba(255, 103, 129, 0.9), rgba(68, 193, 255, 0.9));
  color: #fff;
  padding: 20px 32px;
  border-radius: 16px;
  box-shadow: 0 14px 28px rgba(255, 103, 129, 0.35);
  max-width: 980px;
  text-align: center;
  margin: 0 auto;
}

.ribbon p {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 600;
}

.ribbon-cta {
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #fff;
}

.ribbon-cta:hover {
  background: rgba(255, 255, 255, 0.3);
}

.resource-strip {
  width: 100%;
  max-width: 1050px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 246, 250, 0.95));
  border: 1px solid rgba(255, 103, 129, 0.18);
  border-radius: 22px;
  padding: 40px 48px;
  box-shadow: 0 18px 32px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.resource-strip h2 {
  font-size: 2rem;
  color: #222;
  margin-bottom: 12px;
}

.resource-strip p {
  color: #555;
  margin: 0 0 28px;
}

.review-band {
  width: 100%;
}

.review-band__surface {
  max-width: 1100px;
  margin: 30px auto 0;
  padding: 36px 44px;
  border-radius: 26px;
  background: linear-gradient(135deg, rgba(255, 245, 248, 0.95), rgba(232, 247, 255, 0.95));
  border: 1px solid rgba(255, 103, 129, 0.16);
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.08);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  overflow: hidden;
}

.review-band__copy {
  flex: 1 1 420px;
}

.review-band__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.8rem;
  color: rgba(17, 24, 39, 0.65);
  margin: 0 0 0.4rem;
}

.review-band__copy h2 {
  margin: 0 0 0.6rem;
  font-size: clamp(1.6rem, 3vw, 2rem);
  color: #111827;
}

.review-band__copy p {
  margin: 0;
  color: #374151;
  line-height: 1.6;
}

.review-band__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0.4rem;
  min-width: 0;
}

.review-band__button {
  border-radius: 999px;
  padding: 12px 26px;
  background: linear-gradient(130deg, #ff6781, #ff8fa1);
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(255, 103, 129, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  min-width: 0;
  max-width: 100%;
}

.review-band__button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(255, 103, 129, 0.45);
}

.review-band__note {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(17, 24, 39, 0.7);
  max-width: 320px;
  line-height: 1.4;
}

.resource-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.resource-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 20px;
  border-radius: 16px;
  text-decoration: none;
  font-weight: 600;
  color: #ff6781;
  background: rgba(255, 103, 129, 0.08);
  border: 1px solid rgba(255, 103, 129, 0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.resource-link::after {
  content: "→";
  font-size: 0.9rem;
}

.resource-link:hover {
  transform: translateY(-2px);
  background: rgba(255, 103, 129, 0.18);
  box-shadow: 0 10px 18px rgba(255, 103, 129, 0.24);
}

.faq-section {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}

.faq-section h2 {
  text-align: center;
  font-size: 2rem;
  color: #222;
  margin-bottom: 36px;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.faq-item {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 14px;
  padding: 22px;
  box-shadow: 0 12px 22px rgba(0, 0, 0, 0.06);
}

.faq-item h3 {
  margin-bottom: 8px;
  font-size: 1.2rem;
  color: #222;
}

.faq-item p {
  color: #555;
  line-height: 1.6;
  margin: 0;
}

.cta-panel {
  max-width: 760px;
  text-align: center;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 20px;
  padding: 40px 36px;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.08);
  margin: 0 auto;
}

.cta-panel h2 {
  font-size: 2.1rem;
  margin-bottom: 12px;
  color: #222;
}

.cta-panel p {
  color: #555;
  margin-bottom: 24px;
  line-height: 1.7;
}

@media (max-width: 640px) {
  .pricing-hero {
    padding: 36px 24px;
  }

  .plans-grid {
    gap: 18px;
  }

  .plan-card {
    padding: 28px 24px;
  }

  .feature-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .ribbon {
    padding: 24px;
  }

  .resource-strip {
    padding: 32px 24px;
  }

  .resource-links {
    gap: 12px;
  }

  .review-band__surface {
    padding: 32px 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .review-band__actions {
    width: 100%;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 0.3rem;
  }

  .review-band__note {
    max-width: none;
    text-align: center;
  }

  .review-band__copy {
    flex: 0 1 auto;
    width: 100%;
  }

  .review-band__button {
    width: 80%;
    max-width: 280px;
    align-self: center;
    text-align: center;
  }
}

/* Canvas styles (background effects) */
canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}
