
.pricingContainer {
  width:300px;
  margin: 0 auto;
  border: 3px solid #C4C0BE;
  border-radius: 16px;
  margin-bottom: 8px;
  padding:8px;
  cursor: pointer;
}

.discountContainer {
  width:300px;
  margin: 0 auto;
  border: 3px solid #C4C0BE;
  border-radius: 16px;
  margin-bottom: 8px;
  padding:8px;
  background: #e3f9f3;
  border:3px solid #55ccaa;
}

.pricingContainer:hover {
    border: 3px solid #776ac8;
}

.giftOption {
  border:3px solid #c4c0be;
  border-radius: 16px;
  height:66px;
  width:300px;
  padding:8px;
  margin-bottom: 16px;
  background:#9187d3;
  color:white;
}

.purchaseButton {
    border:none;
    width: 200px;
    height: 55px;
    background: #776ac8;
    border-radius: 10px;
    color:white;
    font-weight: 600;
    font-size: 18px;
    font-style:normal;
    line-height: 48px;
    cursor: pointer;
    margin:8px;
    margin-bottom: 16px;
    display: inline-block;
    border:2px solid #776ac8;
}

.purchaseButton:hover {
  background: #6b5fb4;
  border:2px solid #6b5fb4;
}

.pricingContainer.selected:hover {
    border: 3px solid #776ac8;
}

.pricingContainer.selected {
    background: linear-gradient(160deg,  #beb3ff -5.2%, #d5f6ed 80.39%);
    border: 3px solid #9187d3;
}

.purchaseButton.paypal {
  margin-top:0px;
  background:#ffc439;
  border:0px;
  color:#003087;
}

.purchaseContainer {
    padding-top: 8px;
    text-align: center;
    max-width:500px;
    margin: 0 auto;
}

.pricingHeader {
    display: inline-block;
}

.pricePerMonth {
    color:#9187d3;
    font-weight: 700;
    padding:0;
}
.yearlySavings {
    color:#4ecaa7;
    font-weight: 700;
    margin-bottom:4px;
    padding:0;
}

.priceTotal {
    display: inline-block;
}

.frequencySelect span {
  font-size: 18px;
  color:#3A3A3A;
  font-weight: 500;
  line-height: 36px;
}
.frequencySelect.selected span {
  
}

.frequencySelect {
    border:1px solid #e3deff;
    width: 120px;
    height: 36px;
    border-radius: 10px;
    color:#3A3A3A;
    background: none;
    font-weight: 500;
    font-size: 0;
    font-style:normal;
    
    cursor: pointer;
    margin:4px;
    display: inline-block;
}

.frequencySelect.selected {
  border:1px solid #9187d3;
  background: #e3deff;
  color:white;
}

.frequencySelect.disabled {
    background-color: #848280;
}

.frequencySelect.disabled:hover {
    background-color: #848280;
}

.frequencySelect:disabled {
    background-color: #848280;
}

.frequencySelect:disabled:hover {
    background-color: #848280;
}

.frequencySelect:hover {
    background-color: #e3deff;
    color:white;
}

.frequencySelect:focus {
    background-color: #e3deff;
}
      :root {
        --primary: #776AC8;
        --primary-light: #E3DEFF;
        --secondary: #1b8566;
        --text-dark: #2D2D44;
        --bia-bg: #F8F9FF;
        --accent-green: #27ae60;
        --text-main: #1f2937;
    --text-muted: #6b7280;
    --col-purple: #776ac8;
    --col-exposure: #9187d3;
    }
  .paywall-overlay { 
    position: fixed; inset: 0; 
    background: rgba(0, 0, 0, 0.4); 
    backdrop-filter: blur(8px); 
    -webkit-backdrop-filter: blur(8px); 
    z-index: 1000; 
    display: flex; align-items: flex-end; justify-content: center; 
    animation: fadeIn 0.3s ease; 
}

.paywall-card { 
    background: white; width: 100%; max-width: 500px; 
    padding: 40px 12px; border-radius: 32px 32px 0 0; 
    text-align: center; 
    animation: slideUp 0.4s cubic-bezier(0.16, 1, 0.3, 1); 
}

/* PRICE SELECTION CARDS */
.price-container { display: flex; gap: 12px; margin-bottom: 24px; }

.price-card { 
    flex: 1; padding: 20px 12px; border-radius: 20px; 
    border: 2px solid #f3f4f6; cursor: pointer; transition: 0.2s; 
    background: #fdfdfd; position: relative; 
}

.price-card.active { 
    background: linear-gradient(135deg, #e4dfff 0%, #f0fdf9 100%); 
    border-color: var(--col-purple); 
    box-shadow: 0 10px 20px rgba(119, 106, 200, 0.15); 
    transform: scale(1.02); 
}

.price-label { font-size: 13px; font-weight: 700; color: var(--col-purple); text-transform: uppercase; }
.price-value { font-size: 22px; font-weight: 800; margin: 8px 0; }
.price-period { font-size: 14px; color: var(--text-muted); font-weight: 400; }
.price-desc { font-size: 11px; color: var(--text-muted); line-height: 1.3; }

/* BUTTONS */
.payment-methods { display: flex; flex-direction: column; gap: 12px; }

.pay-btn { 
    width: 100%; height: 50px; border-radius: 12px; border: none; 
    font-weight: 700; font-size: 15px; cursor: pointer; 
    display: flex; align-items: center; justify-content: center; transition: 0.2s; 
}

.pay-btn:active { transform: scale(0.98); }
.stripe-btn { background: #6366f1; color: white; width: 100%; }
.store-btn { background: #000; color: white; }
.paypal-btn { background: #ffc439; color: #003087; }

.bottom-small-row { display: flex; gap: 12px; width: 100%; }
.bottom-small-row .pay-btn { flex: 1; white-space: nowrap; }

/* TRUST FOOTER & ICONS */
.trust-footer { 
    display: flex; align-items: center; justify-content: center; 
    gap: 12px; opacity: 0.5; transition: opacity 0.3s ease; 
}

.trust-label { 
    font-size: 9px; text-transform: uppercase; font-weight: 700; 
    letter-spacing: 0.08em; color: var(--text-main); white-space: nowrap; 
}

.trust-separator { width: 1px; height: 10px; background-color: var(--text-main); }

.trust-icons { display: flex; align-items: center; gap: 8px; }
.trust-icons img { height: 12px; width: auto; filter: grayscale(0.2); }

.plus-more-badge { 
    font-size: 10px; font-weight: 700; color: #3a3a3a; 
    width: 18px; height: 18px; display: flex; 
    align-items: center; justify-content: center; opacity: 0.9; 
}

/* ANIMATIONS */
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes slideUp { from { transform: translateY(100%); } to { transform: translateY(0); } }


    /* Core Page Layout */
    .preview-card { background: white; border-radius: 24px; padding: 40px 24px; margin-bottom: 24px; border: 1px solid #F0EEFF; }
    .tagline { color: var(--primary); font-weight: 800; text-transform: uppercase; font-size: 0.75rem; letter-spacing: 1.5px; display: block; margin-bottom: 8px; }
.inline-pricing-container {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 40px 0;
    background: transparent; /* No dark background */
}

/* Replaces paywall-card to remove animations and bottom-only rounding */
.paywall-card-static {
    background: white;
    width: 100%;
    max-width: 500px;
    padding: 40px 24px;
    border-radius: 32px; /* Rounded on all sides now */
    text-align: center;
    border: 1px solid #f0f0f0; /* Subtle border since there's no dark backdrop */
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}
.main-button {
    padding: 18px 32px;
    border-radius: 18px; /* Slightly rounder for a modern feel */
    font-weight: 700;
    font-size: 1.1rem;
    border: none;
    cursor: pointer;
    transition: all 0.25s ease;
    width: 100%;
    display: block;
    max-width: 340px;
        background: var(--primary);
        color: white;
        box-shadow: 0 8px 20px rgba(119, 106, 200, 0.25);
        transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.main-button:hover {
        transform: translateY(-1px);
        box-shadow: 0 12px 24px rgba(119, 106, 200, 0.35);
        color:white;
    }