/* =========================================================================
   vindigold.com — redesign
   Premium dark-fantasy visual layer. Structure & JS hooks are untouched;
   this stylesheet only restyles existing markup.
   ========================================================================= */

:root {
    --bg:        #0b0a0d;
    --bg-warm:   #100d11;
    --panel:     rgba(22, 19, 24, 0.72);
    --panel-2:   rgba(30, 26, 32, 0.6);
    --ink:       #ece6d8;
    --ink-soft:  #b8b1a4;
    --ink-mute:  #8c857a;
    --gold:      #d8b15a;
    --gold-lt:   #ecd28b;
    --gold-dp:   #b1843a;
    --hair:      rgba(216, 177, 90, 0.22);
    --hair-soft: rgba(216, 177, 90, 0.12);
    --peri:      #a7a7f2;
    --blue:      #6bb2f6;
    --shadow:    0 24px 60px -20px rgba(0,0,0,0.8);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body#page-top {
    background: var(--bg);
    color: var(--ink);
    font-family: 'Hanken Grotesk', system-ui, sans-serif;
    font-size: 17px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

h1, h2, h3, h4, .navbar-brand, .section-heading {
    font-family: 'Cinzel', Georgia, serif;
}

a { color: var(--blue); transition: color .18s ease; }
a:hover { color: var(--gold-lt); text-decoration: none; }

/* ============================ NAV ===================================== */
#mainNav {
    padding: 18px 0;
    background: transparent;
    transition: background .3s ease, padding .3s ease, box-shadow .3s ease, border-color .3s ease;
    border-bottom: 1px solid transparent;
}
#mainNav.nav-scrolled {
    padding: 10px 0;
    background: rgba(11, 10, 13, 0.92);
    backdrop-filter: blur(14px) saturate(140%);
    -webkit-backdrop-filter: blur(14px) saturate(140%);
    border-bottom: 1px solid var(--hair-soft);
    box-shadow: 0 10px 30px -18px rgba(0,0,0,0.9);
}
#mainNav .navbar-brand {
    font-weight: 700;
    font-size: 1.35rem;
    letter-spacing: 0.04em;
    color: var(--gold);
    text-transform: lowercase;
}
#mainNav .navbar-brand span { color: var(--ink-soft); font-weight: 500; }
#mainNav .nav-link {
    color: var(--ink-soft) !important;
    font-family: 'Hanken Grotesk', sans-serif;
    font-weight: 600;
    font-size: 0.82rem;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    margin: 0 2px;
    padding: 0.5rem 0.95rem !important;
    border-radius: 4px;
    position: relative;
    transition: color .18s ease;
}
#mainNav .nav-link:hover { color: var(--gold-lt) !important; }
#mainNav .nav-link.nav-accent { color: var(--gold) !important; }
#mainNav .nav-link.nav-accent:hover { color: var(--gold-lt) !important; }
.navbar-toggler {
    border-color: var(--hair);
}
.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='%23d8b15a' stroke-width='2.4' stroke-linecap='round' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ============================ HERO =================================== */
.masthead {
    position: relative;
    min-height: 100vh;
    padding: 120px 0 70px;
    align-items: center;
    background: #050507;
    overflow: hidden;
}
.masthead::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(120% 90% at 50% 0%, rgba(8,8,11,0) 30%, rgba(8,8,11,0.85) 78%, #050507 100%),
        linear-gradient(180deg, rgba(5,5,7,0.55) 0%, rgba(5,5,7,0.35) 45%, #050507 100%),
        url("../img/header.jpg") center 18% / cover no-repeat;
    z-index: 0;
}
.masthead::after {
    /* gold horizon glow behind the card */
    content: "";
    position: absolute;
    left: 50%; top: 46%;
    width: 760px; height: 420px;
    transform: translate(-50%, -50%);
    background: radial-gradient(closest-side, rgba(216,177,90,0.16), rgba(216,177,90,0) 70%);
    z-index: 0;
    pointer-events: none;
}
.masthead > .container { position: relative; z-index: 2; }

.masthead .eyebrow {
    font-family: 'Hanken Grotesk', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.42em;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--gold);
    margin: 0 0 14px;
    padding-left: 0.42em;
}
.masthead h1 {
    font-weight: 800;
    font-size: clamp(2.1rem, 5vw, 3.5rem);
    line-height: 1.08;
    letter-spacing: 0.01em;
    margin: 0 0 18px;
    color: #fff;
    text-shadow: 0 2px 30px rgba(0,0,0,0.6);
}
.masthead .text-faded {
    color: var(--ink-soft);
    font-size: 1rem;
    letter-spacing: 0.02em;
    margin-bottom: 22px;
}
.masthead .text-faded::before {
    content: "\2713  ";
    color: #54c98a;
    font-weight: 700;
}

.tutorialButton {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--ink-soft);
    border: 1px solid var(--hair);
    border-radius: 100px;
    padding: 9px 22px;
    font-family: 'Hanken Grotesk', sans-serif;
    font-weight: 600;
    font-size: 0.78rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all .2s ease;
    margin-bottom: 34px;
    white-space: nowrap;
}
.tutorialButton::before { content: "\25B6"; font-size: 0.6rem; color: var(--gold); }
.tutorialButton:hover {
    border-color: var(--gold);
    color: var(--gold-lt);
    background: rgba(216,177,90,0.06);
}

/* ===================== THE GOLD-BUY CARD ============================= */
.gradientCard {
    max-width: 430px;
    margin: 0 auto;
    background:
        linear-gradient(180deg, rgba(38,32,42,0.92), rgba(16,13,18,0.94));
    border: 1px solid var(--hair);
    border-radius: 16px;
    padding: 26px 28px 30px;
    box-shadow: var(--shadow), inset 0 1px 0 rgba(255,255,255,0.05);
    position: relative;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.gradientCard::before {
    content: "";
    position: absolute; inset: 0;
    border-radius: 16px;
    padding: 1px;
    background: linear-gradient(160deg, rgba(236,210,139,0.5), rgba(216,177,90,0) 40%, rgba(216,177,90,0) 60%, rgba(236,210,139,0.28));
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

#status {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.96rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    padding-bottom: 14px;
    margin-bottom: 16px;
    border-bottom: 1px solid var(--hair-soft);
    color: var(--ink-soft);
}
#onlineStatus span { font-weight: 700; }
#onlineStatus::before {
    content: "";
    display: inline-block;
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--statusColor, #54c98a);
    margin-right: 8px;
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--statusColor, #54c98a) 22%, transparent);
    vertical-align: middle;
}
#status .fa-question-circle { color: var(--ink-mute); }
#goldAvailability { font-weight: 700; color: var(--gold-lt); }

#enterAmountOfGold {
    font-family: 'Cinzel', serif;
    font-weight: 600;
    font-size: 1.02rem;
    line-height: 1.4;
    color: var(--gold-lt);
    text-align: center;
    margin-bottom: 6px;
}
#secondLineMessage { display: block; text-align: center; font-size: 0.9rem; margin-bottom: 6px; }

#goldInputFields {
    margin: 18px 0 12px;
}
#goldInputFields .form-control {
    background: rgba(255,255,255,0.035);
    border: 1px solid var(--hair);
    border-right: none;
    color: #fff;
    font-size: 1.7rem;
    font-weight: 700;
    font-family: 'Cinzel', serif;
    text-align: center;
    height: 60px;
    border-radius: 10px 0 0 10px;
    box-shadow: none;
    transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}
#goldInputFields .form-control:focus {
    background: rgba(216,177,90,0.06);
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(216,177,90,0.16);
}
#goldInputFields .input-group-text {
    background: linear-gradient(180deg, var(--gold-lt), var(--gold-dp));
    border: 1px solid var(--gold-dp);
    border-left: none;
    color: #2a1f0c;
    font-weight: 800;
    font-family: 'Cinzel', serif;
    font-size: 1.25rem;
    padding: 0 22px;
    border-radius: 0 10px 10px 0;
}

#dropDown {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
}
#dropDown select {
    flex: 1;
    background: rgba(255,255,255,0.035);
    color: var(--ink);
    border: 1px solid var(--hair);
    border-radius: 9px;
    height: 46px;
    padding: 0 14px;
    font-size: 0.92rem;
    font-weight: 600;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23d8b15a'%3e%3cpath d='M8 11L3 5h10z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 12px;
    cursor: pointer;
    transition: border-color .18s ease;
}
#dropDown select:focus { outline: none; border-color: var(--gold); }
#dropDown select option { background: #15121a; color: var(--ink); }

#discountMessage {
    text-align: center;
    color: var(--ink-mute);
    font-size: 0.92rem;
    margin-bottom: 2px;
}
#discountMessage strike { color: var(--ink-mute); }
#totalAmount {
    text-align: center;
    font-family: 'Cinzel', serif;
    font-weight: 800;
    font-size: 2.5rem;
    line-height: 1.1;
}
#totalAmountCurrency {
    text-align: center;
    color: var(--ink-soft);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 18px;
}

/* ===================== BUTTONS ====================================== */
#buyButton, .nextButton, .nextButton2 {
    display: block;
    width: 100%;
    border: none;
    border-radius: 11px;
    background: linear-gradient(180deg, #f0d791 0%, var(--gold) 45%, var(--gold-dp) 100%);
    color: #241a08;
    font-family: 'Cinzel', serif;
    font-weight: 700;
    font-size: 1.08rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 15px 18px;
    cursor: pointer;
    box-shadow: 0 12px 28px -12px rgba(216,177,90,0.6), inset 0 1px 0 rgba(255,255,255,0.45);
    transition: transform .12s ease, box-shadow .2s ease, filter .2s ease;
}
#buyButton:hover, .nextButton:hover, .nextButton2:hover {
    filter: brightness(1.07);
    transform: translateY(-1px);
    box-shadow: 0 16px 34px -12px rgba(216,177,90,0.7), inset 0 1px 0 rgba(255,255,255,0.5);
}
#buyButton:active, .nextButton:active, .nextButton2:active { transform: translateY(0); }

.backButton {
    background: transparent;
    color: var(--ink-soft);
    border: 1px solid var(--hair);
    border-radius: 11px;
    font-family: 'Hanken Grotesk', sans-serif;
    font-weight: 600;
    font-size: 0.86rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 13px 30px;
    cursor: pointer;
    transition: all .18s ease;
}
.backButton:hover { border-color: var(--gold); color: var(--gold-lt); background: rgba(216,177,90,0.05); }

.backNextButtons {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-top: 26px;
    flex-wrap: wrap;
}
.backNextButtons .nextButton,
.backNextButtons .nextButton2 { width: auto; min-width: 170px; }

#buttonCheckBuyingLimits, #buttonGetVerified {
    background: rgba(216,177,90,0.1);
    color: var(--gold-lt);
    border: 1px solid var(--hair);
    border-radius: 8px;
    padding: 9px 16px;
    font-weight: 600;
    font-size: 0.82rem;
    letter-spacing: 0.04em;
    cursor: pointer;
    transition: all .18s ease;
    margin-top: 6px;
}
#buttonCheckBuyingLimits:hover, #buttonGetVerified:hover { background: rgba(216,177,90,0.2); color: #fff; }
#buttonCheckBuyingLimits[disabled] { opacity: 0.45; cursor: not-allowed; }

#refreshButton button {
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--hair);
    border-radius: 8px;
    color: var(--ink) !important;
    padding: 9px 18px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: all .18s ease;
}
#refreshButton button:hover { border-color: var(--gold); color: var(--gold-lt) !important; }
#refreshButton img { filter: invert(1) brightness(1.6); }

/* ===================== SCAMMER NOTICE =============================== */
.scammerNotice {
    text-align: center;
    margin-top: 42px;
}
.scamCard {
    max-width: 430px;
    margin: 0 auto;
    text-align: left;
    background: linear-gradient(180deg, #232428, #1a1b1e);
    border: 1px solid rgba(255,255,255,0.07);
    border-top: 3px solid #e0484c;
    border-radius: 14px;
    padding: 20px 22px 18px;
    box-shadow: var(--shadow);
}
.scamCard__head {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Cinzel', serif;
    font-weight: 700;
    font-size: 1.06rem;
    color: #fff;
    letter-spacing: 0.01em;
    margin-bottom: 6px;
}
.scamCard__head i { color: #ff5a5e; font-size: 1.1rem; }
.scamCard__sub {
    color: var(--ink-mute);
    font-size: 0.86rem;
    line-height: 1.5;
    margin: 0 0 16px;
}
.scamCard__sub b { color: var(--ink-soft); }
.scamFakeWord {
    color: #ff5a5e;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.scamRow {
    display: flex;
    align-items: center;
    gap: 13px;
    background: rgba(0,0,0,0.28);
    border: 1px solid rgba(255,90,94,0.22);
    border-radius: 10px;
    padding: 10px 14px;
    margin-bottom: 9px;
    position: relative;
}
.scamAvatar {
    flex: none;
    width: 42px; height: 42px;
    border-radius: 50%;
    background: radial-gradient(circle at 32% 28%, #4a4038, #211b16);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-dp);
    font-size: 1.05rem;
    border: 1px solid rgba(216,177,90,0.25);
}
.scamId { display: flex; flex-direction: column; line-height: 1.25; }
.scamId__name { color: #f2f3f5; font-weight: 700; font-size: 0.98rem; }
.scamId__handle { color: #b5bac1; font-size: 0.84rem; font-family: ui-monospace, 'SFMono-Regular', Menlo, monospace; }
.scamId__diff {
    color: #ff5a5e;
    font-weight: 800;
    background: rgba(255,90,94,0.16);
    border-radius: 3px;
    padding: 0 2px;
}
.scamBadge {
    margin-left: auto;
    flex: none;
    width: 28px; height: 28px;
    border-radius: 50%;
    background: rgba(224,72,76,0.16);
    color: #ff5a5e;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}
.scamFooter {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 12px;
    padding-top: 14px;
    border-top: 1px solid rgba(255,255,255,0.06);
    color: #ff8a8d;
    font-weight: 700;
    font-size: 0.92rem;
    letter-spacing: 0.02em;
}
.scamFooter i { color: #ff5a5e; }

/* ===================== FLOW / INFO SCREENS ========================== */
.containerIDTR {
    display: none;
    max-width: 560px !important;
    margin: 0 auto;
    background: linear-gradient(180deg, rgba(28,24,32,0.92), rgba(14,12,17,0.95));
    border: 1px solid var(--hair);
    border-radius: 16px;
    padding: 34px 38px 36px;
    box-shadow: var(--shadow);
    text-align: left;
    color: var(--ink-soft);
    font-size: 0.97rem;
}
.containerIDTR b, .containerIDTR strong { color: var(--ink); }
.containerIDTR hr {
    border: none;
    border-top: 1px solid var(--hair-soft);
    margin: 24px 0;
}
.containerIDTR iframe {
    max-width: 100%;
    border-radius: 10px;
    border: 1px solid var(--hair);
}
.screenHeading {
    font-family: 'Cinzel', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--gold-lt);
    text-align: center;
    margin-bottom: 18px;
    letter-spacing: 0.02em;
}
.divHeading {
    font-family: 'Cinzel', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--gold-lt);
    text-align: center;
    margin-bottom: 16px;
    letter-spacing: 0.02em;
}
#overviewPaymentMethod {
    text-align: center;
    color: var(--gold);
    font-weight: 700;
    letter-spacing: 0.04em;
    margin-bottom: 4px;
}
.instructionsFont {
    font-size: 1.05rem;
    color: var(--ink);
    margin-bottom: 8px;
}
.smallYellowText {
    text-align: center;
    color: var(--gold);
    font-size: 0.82rem;
    opacity: 0.85;
    margin-bottom: 18px;
}

/* payment-method radio rows */
#divEtransfer, #divBitcoin, #divPayPal {
    background: rgba(255,255,255,0.025);
    border: 1px solid var(--hair-soft);
    border-radius: 10px;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px 4px;
    font-size: 0.9rem;
}
#divPayPal { display: block; }
#divEtransfer img, #divBitcoin img, #divPayPal img { height: 26px; width: auto; vertical-align: middle; }
input[type="radio"] { accent-color: var(--gold); transform: scale(1.15); margin-right: 8px; }

.inputContainer { text-align: left; }
.inputContainer .form-control {
    display: inline-block;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--hair);
    color: #fff;
    border-radius: 8px;
    height: 44px;
    padding: 0 14px;
    margin: 8px 0;
    box-shadow: none;
}
.inputContainer .form-control:focus {
    background: rgba(216,177,90,0.06);
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(216,177,90,0.14);
}
.inputContainer .form-control::placeholder { color: var(--ink-mute); }
.IDTRtooltip {
    color: var(--ink);
    font-weight: 600;
    border-bottom: 1px dotted var(--hair);
    cursor: help;
}
.IDTRtooltip .fa-question-circle { color: var(--gold); }

#markdown-toc { padding-left: 20px; margin: 10px 0; }
#markdown-toc li { margin-bottom: 8px; }

#greetings { font-weight: 700; color: var(--ink); margin-top: 12px; }
.fontLimit, #todayLimit, #dailyLimit, #weeklyLimit, #monthlyLimit { font-size: 0.88rem; margin-top: 4px; }
#getVerified { display: none; margin-top: 10px; font-size: 0.9rem; }

.dollar_currency { font-size: 1.05rem; }

.centeredDiv { text-align: center; margin-top: 18px; }

/* ===================== MULTI-STEP PROGRESS BAR ===================== */
.multi-steps {
    display: flex;
    counter-reset: step;
    margin: 4px auto 26px;
    padding: 0;
    max-width: 460px;
}
.multi-steps > li {
    flex: 1;
    position: relative;
    text-align: center;
    font-size: 0.74rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: var(--ink-mute);
    padding-top: 40px;
    text-transform: none;
}
.multi-steps > li::before {
    counter-increment: step;
    content: counter(step);
    position: absolute;
    top: 0; left: 50%;
    transform: translateX(-50%);
    width: 30px; height: 30px;
    line-height: 28px;
    border-radius: 50%;
    background: #15121a;
    border: 1.5px solid var(--hair);
    color: var(--ink-mute);
    font-family: 'Cinzel', serif;
    font-weight: 700;
    font-size: 0.85rem;
    z-index: 2;
}
.multi-steps > li::after {
    content: "";
    position: absolute;
    top: 15px; left: -50%;
    width: 100%; height: 2px;
    background: var(--hair-soft);
    z-index: 1;
}
.multi-steps > li:first-child::after { display: none; }
.multi-steps > li.is-active {
    color: var(--gold-lt);
}
.multi-steps > li.is-active::before {
    background: linear-gradient(180deg, var(--gold-lt), var(--gold-dp));
    border-color: var(--gold-lt);
    color: #241a08;
    box-shadow: 0 0 0 4px rgba(216,177,90,0.15);
}
/* steps before the active one read as completed */
.multi-steps > li.is-active ~ li::before { background: #15121a; }

/* the li text labels carry their own "1. " etc — hide the number prefix visually is risky,
   so we keep the generated circle as the visual marker and let the label text sit below */

/* ===================== END / DELIVERY SCREEN ======================= */
#endScreen { text-align: center; }
#feedbackStatus {
    font-family: 'Cinzel', serif;
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 14px;
}
#feedbackMessage { text-align: left; font-size: 0.95rem; color: var(--ink-soft); }
#feedbackMessage ul, #feedbackMessage ol { padding-left: 20px; }
#feedbackMessage li { margin-bottom: 6px; }

/* loading spinner */
.loadingSpinner {
    display: none;
    width: 42px; height: 42px;
    margin: 18px auto;
    border: 3px solid var(--hair-soft);
    border-top-color: var(--gold);
    border-radius: 50%;
    animation: spin 0.9s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ===================== SECTIONS ==================================== */
section {
    padding: 100px 0;
    position: relative;
}
#services { background: linear-gradient(180deg, #050507 0%, #0c0a0e 100%); }
#faq { background: #0c0a0e; }
#bulk { background: #0a090c; }
#sell { background: #0c0a0e; }
#contact { background: linear-gradient(180deg, #0a090c 0%, #060507 100%); }

.section-heading {
    font-weight: 700;
    font-size: clamp(1.7rem, 3.5vw, 2.6rem);
    letter-spacing: 0.03em;
    color: #fff;
    margin-bottom: 0;
}
hr.my-4 {
    border: none;
    width: 64px;
    height: 3px;
    border-radius: 3px;
    background: linear-gradient(90deg, var(--gold-dp), var(--gold-lt));
    margin: 22px auto 40px;
    opacity: 1;
}

/* services */
.service-box {
    max-width: 320px;
    padding: 30px 22px;
    border: 1px solid var(--hair-soft);
    border-radius: 14px;
    background: var(--panel-2);
    transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
    height: 100%;
}
.service-box:hover {
    transform: translateY(-4px);
    border-color: var(--hair);
    box-shadow: var(--shadow);
}
.service-box .text-primary { color: var(--gold) !important; }
.service-box h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--ink);
    letter-spacing: 0.02em;
}
.text-muted { color: var(--ink-mute) !important; font-size: 0.95rem; }

/* FAQ */
#faq .col-lg-8 { text-align: left !important; }
#faq .section-heading, #faq hr { text-align: center; }
#faq h2.section-heading { display: block; text-align: center; }
#faq p {
    background: var(--panel-2);
    border: 1px solid var(--hair-soft);
    border-left: 3px solid var(--gold-dp);
    border-radius: 10px;
    padding: 18px 22px;
    margin-bottom: 16px !important;
    color: var(--ink-soft);
    font-size: 0.96rem;
}
#faq p b { color: var(--gold-lt); font-family: 'Hanken Grotesk', sans-serif; font-weight: 700; display: inline-block; margin-bottom: 6px; }

/* bulk discount cards (injected by JS) */
#bulkDiscountCards { gap: 16px; margin-top: 10px; }
.card.deals {
    background: var(--panel-2) !important;
    border: 1px solid var(--hair) !important;
    border-radius: 14px !important;
    color: var(--ink);
    overflow: hidden;
}
.card.deals .card-body { padding: 22px 16px; }
.card.deals p:first-child { font-family: 'Cinzel', serif; font-weight: 700; color: var(--gold-lt); font-size: 1.1rem; }
.card.deals .btn-primary { margin-top: 10px; }

/* generic gold buttons (modal triggers, order now) */
.btn-primary {
    background: linear-gradient(180deg, #f0d791, var(--gold-dp)) !important;
    border: none !important;
    color: #241a08 !important;
    font-weight: 700 !important;
    letter-spacing: 0.04em;
    border-radius: 9px !important;
    padding: 10px 20px !important;
    box-shadow: 0 10px 24px -12px rgba(216,177,90,0.6);
    transition: filter .18s ease, transform .12s ease;
}
.btn-primary:hover { filter: brightness(1.08); transform: translateY(-1px); }

/* contact */
#contact .sr-contact { color: var(--gold); }
#contact p { color: var(--ink-soft); font-weight: 600; letter-spacing: 0.02em; }

/* ===================== MODAL ======================================= */
.modal-content {
    background: linear-gradient(180deg, #1a161f, #100d14);
    border: 1px solid var(--hair);
    border-radius: 16px;
    color: var(--ink-soft);
    box-shadow: var(--shadow);
}
.modal-header { border-bottom: 1px solid var(--hair-soft); }
.modal-footer { border-top: 1px solid var(--hair-soft); font-size: 0.85rem; }
.modal-title div { color: var(--gold-lt); font-family: 'Cinzel', serif; }
.modal .close { color: var(--ink-soft); opacity: 0.7; text-shadow: none; }
.modal .close:hover { color: var(--gold-lt); opacity: 1; }

/* ===================== TOOLTIPS ==================================== */
.tooltip-inner {
    background: #15121a;
    color: var(--ink);
    border: 1px solid var(--hair);
    border-radius: 8px;
    padding: 8px 12px;
    font-size: 0.82rem;
    box-shadow: var(--shadow);
    max-width: 280px;
}
.tooltip-inner img { max-width: 100%; border-radius: 4px; }
.tooltip.show { opacity: 1; }
.bs-tooltip-bottom .arrow::before { border-bottom-color: var(--hair); }
.bs-tooltip-top .arrow::before { border-top-color: var(--hair); }

/* ===================== RESPONSIVE ================================== */
/* Desktop: anchor hero content higher instead of vertical-centering */
@media (min-width: 768px) {
    .masthead { align-items: flex-start; }
    .masthead > .container.my-auto { margin-top: 0 !important; margin-bottom: 0 !important; }
    .masthead { padding-top: 124px; }
    #inputGoldScreen .row { margin-top: 0 !important; }
    #inputGoldScreen .eyebrow { margin-top: 0; }
}

@media (max-width: 767px) {
    #mainNav {
        background: rgba(11,10,13,0.95);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
    }
    .navbar-collapse {
        background: rgba(11,10,13,0.97);
        border: 1px solid var(--hair-soft);
        border-radius: 10px;
        margin-top: 10px;
        padding: 8px 12px;
    }
    .masthead { padding-top: 100px; }
    .containerIDTR { padding: 26px 20px 28px; }
    .multi-steps > li { font-size: 0.66rem; }
    section { padding: 70px 0; }
    .backNextButtons .nextButton, .backNextButtons .nextButton2, .backButton { min-width: 0; width: 100%; }
    .backNextButtons { flex-direction: column-reverse; }
}
