/* --------------------------------------------------
   PAYMENT PAGE — GOLD CTA STYLING
   Lucid Windows — Premium UI Components
-------------------------------------------------- */

/* GOLD CTA BOX */
.gold-cta {
    position: relative;
    margin: 60px 0;
    padding: 40px 30px;
    background: rgb(255 255 255 / 3%);
    border: 2px solid var(--gold);
    border-radius: 12px;
    backdrop-filter: blur(4px);
    box-shadow: 0 0 25px rgb(0 0 0 / 15%);
}

/* Optional fade line (matches your header aesthetic) */
.gold-cta::before {
    content: "";
    position: absolute;
    top: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

/* INNER WRAPPER */
.gold-cta-inner {
    max-width: 800px;
    margin: 0 auto;
}

/* HEADINGS */
.gold-cta h2 {
    font-size: 2rem;
    text-align: center;
    color: var(--gold);
    margin-bottom: 20px;
}
.gold-cta .lead {
    font-size: 1.15rem;
    line-height: 1.6;
    text-align: center;
    margin-bottom: 30px;
}
.gold-cta h3 {
    margin-top: 25px;
    margin-bottom: 10px;
    font-size: 1.25rem;
    color: var(--gold);
}

/* LISTS */
.gold-cta ul,
.gold-cta ol {
    margin-left: 20px;
    margin-bottom: 20px;
}
.gold-cta li {
    margin-bottom: 8px;
    line-height: 1.5;
}

/* GOLD BUTTON */
.gold-btn {
    display: inline-block;
    padding: 14px 28px;
    background: var(--gold);
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    color: #000;
    transition: 0.25s ease;
    margin-top: 25px;
    text-decoration: none;
}
.gold-btn:hover {
    background: #d4af37;
    transform: translateY(-2px);
}

/* --------------------------------------------------
   RESPONSIVE TWEAKS
-------------------------------------------------- */

@media (width <= 768px) {
    .gold-cta {
        margin: 40px 0;
        padding: 30px 20px;
    }
    .gold-cta h2 {
        font-size: 1.7rem;
    }
    .gold-cta .lead {
        font-size: 1.05rem;
    }
    .gold-btn {
        width: 100%;
        padding: 16px;
    }
}
