/* === PRICING CSS === */

/* PAGE HERO - shared */
.page-hero {
  min-height: 60vh;
  display: flex;
  align-items: flex-end;
  padding: calc(var(--nav-h) + 4rem) 5vw 5rem;
  position: relative;
  overflow: hidden;
  background: var(--cream);
}

.ph-bg { position: absolute; inset: 0; z-index: 0; }

.ph-blob {
  position: absolute;
  border-radius: 60% 40% 70% 30% / 50% 60% 40% 70%;
  filter: blur(50px);
  opacity: 0.45;
}

.b1 {
  width: 40vw; height: 40vw;
  top: -10%; right: -5%;
  background: radial-gradient(ellipse, #c8d5bc 0%, transparent 70%);
  animation: morphBlob 12s ease-in-out infinite;
}

.b2 {
  width: 30vw; height: 30vw;
  bottom: -10%; left: 10%;
  background: radial-gradient(ellipse, #ddd5c0 0%, transparent 70%);
  animation: morphBlob 10s ease-in-out infinite reverse;
}

@keyframes morphBlob {
  0%, 100% { border-radius: 60% 40% 70% 30% / 50% 60% 40% 70%; }
  50%       { border-radius: 40% 70% 30% 60% / 70% 30% 60% 40%; }
}

.ph-content {
  position: relative;
  z-index: 1;
  opacity: 0;
  animation: fadeUp 0.9s ease 0.3s forwards;
}

.ph-content h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.5rem, 7vw, 7rem);
  font-weight: 300;
  line-height: 1.05;
  margin: 0.5rem 0 1rem;
  color: var(--espresso);
}

.ph-content h1 em {
  font-style: italic;
  color: var(--emerald);
}

.ph-content p {
  font-size: 1rem;
  color: rgba(63, 42, 28, 0.7);
  max-width: 500px;
  line-height: 1.7;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* PRICING SECTION */
.pricing-section {
  padding: 6rem 5vw;
  background: var(--cream);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 3rem;
  max-width: 1100px;
  margin: 0 auto 5rem;
}

.pricing-card {
  background: white;
  border: 1px solid rgba(63, 42, 28, 0.08);
  border-radius: 4px;
  padding: 3rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  position: relative;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  opacity: 0;
  transform: translateY(36px);
  box-shadow: 0 2px 16px rgba(63, 42, 28, 0.06);
}

.pricing-card[data-reveal].visible {
  opacity: 1;
  transform: translateY(0);
}

.pricing-card.featured {
  border: 2px solid var(--emerald);
  transform: scale(1.02);
  box-shadow: 0 8px 40px rgba(18, 88, 66, 0.12);
}

.pricing-card.featured[data-reveal].visible {
  transform: scale(1.02) translateY(0);
}

.pricing-card:hover:not(.featured) {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(63, 42, 28, 0.1);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Space Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: var(--emerald);
  color: white;
  padding: 0.4rem 1rem;
  border-radius: 2px;
  font-weight: 600;
}

.pricing-header {
  border-bottom: 1px solid rgba(63, 42, 28, 0.08);
  padding-bottom: 1.5rem;
}

.pricing-header h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 300;
  color: var(--espresso);
  margin-bottom: 0.8rem;
  line-height: 1.1;
}

.pricing-subtitle {
  font-size: 0.9rem;
  color: rgba(63, 42, 28, 0.65);
  line-height: 1.6;
}

.pricing-amount {
  display: flex;
  align-items: baseline;
  gap: 0.3rem;
}

.currency {
  font-family: 'Space Mono', monospace;
  font-size: 1rem;
  color: var(--emerald);
  font-weight: 600;
}

.amount {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 400;
  color: var(--espresso);
  line-height: 1;
}

.period {
  font-family: 'Space Mono', monospace;
  font-size: 0.85rem;
  color: rgba(63, 42, 28, 0.5);
}

.pricing-terms {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  font-size: 0.8rem;
}

.term-label {
  color: rgba(63, 42, 28, 0.5);
  font-family: 'Space Mono', monospace;
  letter-spacing: 0.05em;
}

.term-split {
  color: rgba(63, 42, 28, 0.6);
  font-family: 'Space Mono', monospace;
  letter-spacing: 0.05em;
}

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex-grow: 1;
}

.feature {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  font-size: 0.9rem;
  line-height: 1.6;
}

.feature.disabled {
  opacity: 0.4;
}

.feature-check {
  flex-shrink: 0;
  width: 1.5rem;
  height: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--emerald);
  margin-top: 2px;
}

.feature.disabled .feature-check {
  color: rgba(63, 42, 28, 0.3);
}

.feature-text {
  color: rgba(63, 42, 28, 0.75);
}

.pricing-btn {
  background: white;
  color: var(--espresso);
  border: 2px solid rgba(63, 42, 28, 0.15);
  padding: 0.9rem 1.8rem;
  border-radius: 2px;
  font-family: 'Space Mono', monospace;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.2s;
  display: inline-block;
  text-align: center;
  cursor: pointer;
  margin-top: 1rem;
}

.pricing-btn:hover {
  border-color: var(--emerald);
  color: var(--emerald);
  background: rgba(18, 88, 66, 0.02);
}

.pricing-btn.featured-btn {
  background: var(--emerald);
  color: white;
  border-color: var(--emerald);
}

.pricing-btn.featured-btn:hover {
  background: var(--emerald-lt);
  border-color: var(--emerald-lt);
}

.pricing-footer {
  text-align: center;
  font-size: 0.95rem;
  color: rgba(63, 42, 28, 0.65);
  line-height: 1.7;
  opacity: 0;
  animation: fadeUp 0.9s ease 0.6s forwards;
  max-width: 600px;
  margin: 0 auto;
}

.footer-link {
  color: var(--emerald);
  text-decoration: none;
  font-weight: 600;
  transition: opacity 0.2s;
}

.footer-link:hover {
  opacity: 0.7;
}

/* CTA BANNER */
.cta-banner {
  position: relative;
  overflow: hidden;
  background: var(--deep-emerald);
  padding: 8rem 5vw;
  text-align: center;
}

.cta-watercolor {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 20% 50%, rgba(127, 140, 67, 0.2) 0%, transparent 60%),
              radial-gradient(ellipse 60% 80% at 80% 80%, rgba(235, 220, 198, 0.1) 0%, transparent 60%);
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-content h2 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 300;
  color: var(--warm-bone);
  margin-bottom: 1rem;
  font-style: italic;
}

.cta-content p {
  font-size: 1rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 2.5rem;
}

.cta-content .btn-primary {
  background: var(--warm-bone);
  color: var(--deep-emerald);
  border-color: var(--warm-bone);
}

.cta-content .btn-primary:hover {
  background: transparent;
  color: var(--warm-bone);
}

/* FOOTER */
.footer {
  background: var(--espresso);
  padding: 4rem 3rem 2rem;
  border-top: 1px solid rgba(235,220,200,.08);
}

.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 3rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.footer-brand-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--warm-bone);
  letter-spacing: 0.05em;
}

.footer-brand p {
  font-size: 0.83rem;
  color: var(--warm-bone);
  opacity: 0.4;
  margin-top: 0.7rem;
}

.footer-links {
  display: flex;
  gap: 4rem;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-col h5 {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--pistachio);
  margin-bottom: 0.3rem;
}

.footer-col a {
  font-size: 0.84rem;
  color: var(--warm-bone);
  opacity: 0.42;
  text-decoration: none;
  transition: opacity 0.2s;
}

.footer-col a:hover { opacity: 0.9; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  font-size: 0.78rem;
  color: var(--warm-bone);
  opacity: 0.3;
  border-top: 1px solid rgba(235,220,200,0.08);
  padding-top: 1.5rem;
  font-family: var(--font-mono);
}

/* SECTION LABEL */
.section-label {
  font-family: 'Space Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--emerald);
  display: block;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .pricing-card.featured {
    transform: scale(1);
  }

  .pricing-card.featured[data-reveal].visible {
    transform: translateY(0) scale(1);
  }

  .footer-links {
    flex-direction: column;
    gap: 1.5rem;
  }

  .footer-top {
    flex-direction: column;
  }

  .page-hero {
    padding: calc(var(--nav-h) + 3rem) 1.5rem 3rem;
    min-height: auto;
  }

  .cta-banner {
    padding: 4rem 1.5rem;
    min-height: 300px;
  }

  .pricing-section {
    padding: 4rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .pricing-card {
    padding: 2rem;
  }

  .pricing-header h3 {
    font-size: 1.5rem;
  }

  .amount {
    font-size: 2.2rem;
  }

  .pricing-features {
    gap: 0.8rem;
  }

  .feature {
    font-size: 0.85rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
  }
}
