/* ==========================================================================
   Shiva Online Book ID — Home page blocks (v4)
   ========================================================================== */

/* ---------- Scroll progress ---------- */
.scroll-progress { position: fixed; top: 0; left: 0; height: 3px; width: 100%; z-index: 1100; background: var(--gold); transform-origin: 0 50%; transform: scaleX(0); }

/* ---------- Hero ---------- */
.hero-x { position: relative; overflow: hidden; padding: clamp(56px, 8vw, 120px) 0 clamp(48px, 6vw, 96px); isolation: isolate; border-bottom: 1px solid var(--line); }
.hero-bg-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; border-radius: 0 !important; transform: scale(1.06); animation: heroZoom 18s ease-out forwards; }
@keyframes heroZoom { to { transform: scale(1); } }
.hero-x::before { content: ''; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(90deg, rgba(10,11,13,.97) 0%, rgba(10,11,13,.9) 42%, rgba(10,11,13,.7) 70%, rgba(10,11,13,.85) 100%),
              linear-gradient(0deg, var(--bg) 0%, transparent 30%); }
.hero-kicker { font-family: var(--font-head); text-transform: uppercase; letter-spacing: .14em; font-weight: 600; font-size: .95rem; color: var(--gold) !important; margin-bottom: 14px; display: flex; align-items: center; gap: 10px; }
.hero-kicker::before { content: ''; width: 28px; height: 2px; background: var(--gold); }
.hero-x h1 { margin-bottom: 18px; }
.hero-x h1 .text-gold { display: block; }
.hero-sub { max-width: 520px; font-size: 1.15rem; color: #c9ccd2 !important; }
.hero-meta { display: flex; flex-wrap: wrap; margin-top: 28px; border-top: 1px solid var(--line); padding-top: 18px; }
.hero-meta div { padding-right: 22px; margin-right: 22px; border-right: 1px solid var(--line); }
.hero-meta div:last-child { border: 0; margin: 0; padding: 0; }
.hero-meta b { display: block; font-family: var(--font-head); font-size: 1.5rem; color: #fff; line-height: 1.1; }
.hero-meta span { font-size: .85rem; color: var(--muted); }
.hero-shot { position: relative; margin: 0; }
.hero-shot img { width: 100%; border-radius: var(--radius); border: 1px solid var(--line-strong); box-shadow: 0 30px 60px -20px rgba(0,0,0,.8); }
.hero-shot figcaption { position: absolute; left: -18px; bottom: 24px; background: #fff; color: #111; border-radius: 6px; padding: 10px 14px; font-size: .85rem; font-weight: 600; box-shadow: 0 12px 30px rgba(0,0,0,.4); display: flex; align-items: center; gap: 10px; }
.hero-shot figcaption i { color: var(--wa); font-size: 1.4rem; }
.hero-shot figcaption small { display: block; color: #666; font-weight: 500; }
.fade-up { opacity: 0; transform: translateY(18px); animation: fadeUp .7s ease forwards; }
.fade-up.d1 { animation-delay: .1s; } .fade-up.d2 { animation-delay: .2s; } .fade-up.d3 { animation-delay: .3s; } .fade-up.d4 { animation-delay: .45s; }
@keyframes fadeUp { to { opacity: 1; transform: none; } }
@media (max-width: 991.98px) { .hero-shot figcaption { left: 12px; } .hero-x::before { background: linear-gradient(180deg, rgba(10,11,13,.85), rgba(10,11,13,.97)); } }

/* ---------- Live ticker ---------- */
.live-ticker { display: flex; align-items: stretch; background: var(--surface); border-bottom: 1px solid var(--line); overflow: hidden; }
.lt-label { flex-shrink: 0; display: flex; align-items: center; gap: 8px; padding: 0 18px; background: var(--gold); color: #111; font-family: var(--font-head); font-weight: 800; font-size: 1rem; letter-spacing: .08em; }
.live-dot { display: inline-block; width: 8px; height: 8px; border-radius: 50%; background: #e53935; animation: blink 1.2s steps(2, start) infinite; }
@keyframes blink { to { visibility: hidden; } }
.lt-track { overflow: hidden; flex: 1; }
.lt-items { display: flex; width: max-content; padding: 12px 0; animation: marquee 40s linear infinite; }
.lt-items span { white-space: nowrap; font-family: var(--font-head); font-size: 1.05rem; font-weight: 600; letter-spacing: .03em; color: #e6e6e6; text-transform: uppercase; padding: 0 28px; position: relative; }
.lt-items span::after { content: ''; position: absolute; right: -3px; top: 50%; width: 6px; height: 6px; background: var(--gold); transform: translateY(-50%) rotate(45deg); }
.live-ticker:hover .lt-items { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Stats strip ---------- */
.stats-strip { border-bottom: 1px solid var(--line); }
.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); }
.stats-row > div { padding: 34px 20px; border-right: 1px solid var(--line); }
.stats-row > div:last-child { border-right: 0; }
.stats-row b { display: block; font-family: var(--font-head); font-weight: 800; font-size: clamp(2.2rem, 2.5vw + 1rem, 3.4rem); line-height: 1; color: #fff; }
.stats-row b em { font-style: normal; color: var(--gold); }
.stats-row span { color: var(--muted); font-size: .95rem; }
@media (max-width: 767.98px) { .stats-row { grid-template-columns: 1fr 1fr; } .stats-row > div:nth-child(2) { border-right: 0; } .stats-row > div:nth-child(-n+2) { border-bottom: 1px solid var(--line); } .stats-row > div { padding: 24px 14px; } }

/* ---------- Carousel (scroll-snap, no library) ---------- */
.x-carousel { display: grid; grid-auto-flow: column; grid-auto-columns: calc((100% - 48px) / 3); gap: 24px; overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth; padding-bottom: 8px; scrollbar-width: none; }
.x-carousel::-webkit-scrollbar { display: none; }
.x-carousel > * { scroll-snap-align: start; }
@media (max-width: 991.98px) { .x-carousel { grid-auto-columns: calc((100% - 24px) / 2); } }
@media (max-width: 575.98px) { .x-carousel { grid-auto-columns: 82%; gap: 14px; } }
.carousel-nav { gap: 8px; }
.carousel-nav button { width: 44px; height: 44px; border-radius: 6px; border: 1px solid var(--line-strong); background: transparent; color: #fff; transition: border-color .15s ease, color .15s ease; }
.carousel-nav button:hover { border-color: var(--gold); color: var(--gold); }
.carousel-dots { display: flex; gap: 6px; justify-content: center; margin-top: 18px; }
.carousel-dots button { width: 22px; height: 4px; border: 0; padding: 0; background: var(--line-strong); border-radius: 2px; transition: background .2s ease, width .2s ease; }
.carousel-dots button.on { background: var(--gold); width: 36px; }

/* Partner card (asli screenshot ke saath) */
.p-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: border-color .2s ease, transform .2s ease; position: relative; }
.p-card:hover { border-color: var(--gold); transform: translateY(-4px); }
.p-shot { aspect-ratio: 4 / 3; background: #1d2026; overflow: hidden; border-bottom: 1px solid var(--line); }
.p-shot img { width: 100%; height: 100%; object-fit: cover; object-position: top; transition: transform .5s ease; border-radius: 0 !important; }
.p-card:hover .p-shot img { transform: scale(1.04); }
.p-label { position: absolute; top: 12px; left: 12px; background: var(--gold); color: #111; font-family: var(--font-head); font-weight: 700; font-size: .8rem; letter-spacing: .06em; text-transform: uppercase; padding: 3px 10px; border-radius: 3px; }
.p-body { padding: 18px 20px 20px; }
.p-body h3 { margin: 0; }
.p-rating { font-family: var(--font-head); font-weight: 700; font-size: 1.05rem; color: #fff; }
.p-rating i { color: var(--gold); font-size: .85rem; }
.p-meta { color: var(--muted) !important; font-size: .92rem; margin: 6px 0 16px; }
.p-actions { display: flex; gap: 10px; } .p-actions .btn { flex: 1; }

/* ---------- Split (image + text) ---------- */
.split { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(28px, 5vw, 72px); align-items: center; }
.split-img { position: relative; }
.split-img img { width: 100%; border-radius: var(--radius); aspect-ratio: 5 / 4; object-fit: cover; }
.split-img .tag { position: absolute; right: 16px; bottom: 16px; background: rgba(10,11,13,.9); border: 1px solid var(--line-strong); border-radius: 6px; padding: 10px 14px; font-family: var(--font-head); font-size: 1.1rem; font-weight: 700; text-transform: uppercase; }
.split-img .tag b { color: var(--gold); }
.num-list { list-style: none; padding: 0; margin: 24px 0 28px; counter-reset: n; }
.num-list li { position: relative; padding: 14px 0 14px 58px; border-top: 1px solid var(--line); }
.num-list li:last-child { border-bottom: 1px solid var(--line); }
.num-list li::before { counter-increment: n; content: '0' counter(n); position: absolute; left: 0; top: 12px; font-family: var(--font-head); font-weight: 800; font-size: 1.6rem; color: var(--gold); }
.num-list b { display: block; color: #fff; font-size: 1.05rem; }
.num-list span { color: var(--muted); font-size: .95rem; }
@media (max-width: 991.98px) { .split { grid-template-columns: 1fr; } }

/* ---------- Steps ---------- */
.steps-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.steps-row .st { padding: 30px 28px; border-right: 1px solid var(--line); position: relative; background: var(--surface); }
.steps-row .st:last-child { border-right: 0; }
.steps-row .st::after { content: ''; position: absolute; left: 0; top: 0; height: 3px; width: 0; background: var(--gold); transition: width .8s ease; }
.steps-row.in .st::after { width: 100%; }
.steps-row.in .st:nth-child(2)::after { transition-delay: .5s; } .steps-row.in .st:nth-child(3)::after { transition-delay: 1s; }
.st-num { font-family: var(--font-head); font-weight: 800; font-size: 3.2rem; line-height: 1; color: transparent; -webkit-text-stroke: 1px rgba(245,179,1,.7); margin-bottom: 14px; }
.st p { color: var(--muted) !important; margin: 0; }
@media (max-width: 767.98px) { .steps-row { grid-template-columns: 1fr; } .steps-row .st { border-right: 0; border-bottom: 1px solid var(--line); } }

/* ---------- Compare table ---------- */
.cmp-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius); }
.cmp { width: 100%; min-width: 720px; border-collapse: collapse; background: var(--surface); }
.cmp th { background: var(--surface-2); color: var(--muted); font-family: var(--font-head); font-size: .95rem; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; padding: 14px 18px; text-align: left; }
.cmp td { padding: 16px 18px; border-top: 1px solid var(--line); color: #d9dbe0; }
.cmp td:first-child b { font-family: var(--font-head); font-size: 1.2rem; color: #fff; }
.cmp tbody tr:hover { background: rgba(255,255,255,.02); }
.cmp tr.hl td:first-child { box-shadow: inset 3px 0 0 var(--gold); }
.cmp .fa-check { color: var(--wa); } .cmp .fa-minus { color: #555; }
.mini-label { font-family: var(--font-head); font-size: .75rem; font-weight: 700; background: var(--gold); color: #111; padding: 2px 7px; border-radius: 3px; margin-left: 8px; text-transform: uppercase; vertical-align: middle; }
.cmp-note { color: var(--muted) !important; font-size: .9rem; }

/* ---------- Testimonials ---------- */
.t-card { margin: 0; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; }
.t-card .p-stars { color: var(--gold); font-size: .9rem; letter-spacing: 2px; }
.t-card blockquote { color: #e2e4e8; margin: 12px 0 18px; font-size: 1.02rem; }
.t-card figcaption { display: flex; align-items: center; gap: 12px; border-top: 1px solid var(--line); padding-top: 14px; }
.t-card figcaption b { display: block; color: #fff; } .t-card figcaption small { color: var(--muted); }
.t-avatar { width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center; background: var(--surface-2); border: 1px solid var(--line-strong); color: var(--gold); font-weight: 700; }
.t-shot img { width: 100%; border-radius: 6px; margin-top: 10px; }

/* ---------- Payments & safety ---------- */
.pay-band { background: var(--surface); border-block: 1px solid var(--line); }
.pay-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.pay-grid > div { padding: 28px 24px; border-right: 1px solid var(--line); }
.pay-grid > div:last-child { border-right: 0; }
.pay-grid h3 { font-size: 1.25rem !important; text-transform: uppercase; margin-bottom: 6px; }
.pay-grid p { color: var(--muted) !important; margin: 0; font-size: .95rem; }
.pay-logos { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; }
.pay-logos img { height: 40px; width: auto; background: #1d2026; border: 1px solid var(--line); border-radius: 4px; padding: 6px 10px; }
@media (max-width: 991.98px) { .pay-grid { grid-template-columns: 1fr 1fr; } .pay-grid > div:nth-child(2) { border-right: 0; } .pay-grid > div:nth-child(-n+2) { border-bottom: 1px solid var(--line); } }
@media (max-width: 575.98px) { .pay-grid { grid-template-columns: 1fr; } .pay-grid > div { border-right: 0; border-bottom: 1px solid var(--line); } }

/* ---------- Offer ---------- */
.offer-box { display: grid; grid-template-columns: 1.4fr auto auto; align-items: center; gap: 28px; padding: 28px 32px; border-radius: var(--radius); background: var(--surface); border: 1px solid var(--line); border-left: 4px solid var(--gold); }
.offer-box h2 { font-size: clamp(1.8rem, 2vw + 1rem, 2.6rem) !important; margin-bottom: 4px; }
.offer-box p { color: var(--muted) !important; }
.cd { display: flex; gap: 8px; }
.cd div { min-width: 68px; text-align: center; background: var(--bg); border: 1px solid var(--line); border-radius: 6px; padding: 8px 6px; }
.cd b { display: block; font-family: var(--font-head); font-size: 2rem; font-weight: 800; line-height: 1.1; color: #fff; font-variant-numeric: tabular-nums; }
.cd small { color: var(--muted); font-size: .7rem; text-transform: uppercase; letter-spacing: .1em; }
@media (max-width: 991.98px) { .offer-box { grid-template-columns: 1fr; text-align: center; } .cd { justify-content: center; } }

/* ---------- CTA band ---------- */
.cta-band { background: var(--gold); color: #111; border-radius: var(--radius); padding: clamp(28px, 4vw, 48px); display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.cta-band h2 { color: #111 !important; margin: 0 0 6px; }
.cta-band p { color: #3a2f00 !important; margin: 0; font-weight: 500; }
.cta-band .btn-dark-x { background: #111; color: #fff !important; border-radius: 6px; padding: .9rem 1.7rem; font-family: var(--font-head); font-weight: 700; font-size: 1.15rem; text-transform: uppercase; letter-spacing: .04em; text-decoration: none; display: inline-flex; gap: 10px; align-items: center; }
.cta-band .btn-dark-x:hover { background: #000; }

/* ---------- Mega menu ---------- */
@media (min-width: 992px) {
  .mega-menu { width: 520px; padding: 10px !important; display: none; }
  .mega-menu.show { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
}
.mega-item { display: block !important; padding: 10px 14px !important; white-space: normal; border-left: 2px solid transparent; border-radius: 0 !important; }
.mega-item b { display: block; color: #fff; font-family: var(--font-head); font-size: 1.1rem; font-weight: 600; letter-spacing: .02em; }
.mega-item small { color: var(--muted); font-size: .82rem; }
.mega-item:hover { background: var(--surface-2) !important; border-left-color: var(--gold); }
.mega-item:hover b { color: var(--gold); }

/* ---------- WhatsApp chat bubble ---------- */
.wa-bubble { position: fixed; right: 92px; bottom: 36px; z-index: 9998; width: 280px; background: #fff; color: #111; border-radius: 10px; box-shadow: 0 16px 40px rgba(0,0,0,.45); padding: 14px 16px; opacity: 0; transform: translateY(12px); pointer-events: none; transition: opacity .3s ease, transform .3s ease; }
.wa-bubble.show { opacity: 1; transform: none; pointer-events: auto; }
.wb-head { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.wb-av { width: 36px; height: 36px; border-radius: 50%; background: var(--wa); color: #fff; display: grid; place-items: center; font-size: 1.2rem; }
.wb-head b { display: block; font-size: .92rem; } .wb-head small { color: #1e9e50; font-size: .75rem; }
.wb-msg { background: #f0f2f5; border-radius: 8px; padding: 10px 12px; font-size: .92rem; min-height: 40px; }
.wb-typing span { display: inline-block; width: 6px; height: 6px; border-radius: 50%; background: #999; margin-right: 3px; animation: typing 1s infinite; }
.wb-typing span:nth-child(2) { animation-delay: .15s; } .wb-typing span:nth-child(3) { animation-delay: .3s; }
@keyframes typing { 50% { opacity: .3; } }
.wb-cta { display: block; margin-top: 10px; text-align: center; background: var(--wa); color: #fff !important; font-weight: 700; border-radius: 6px; padding: 9px; text-decoration: none; }
.wb-close { position: absolute; top: 6px; right: 10px; border: 0; background: none; font-size: 1.2rem; color: #888; }
@media (max-width: 767.98px) { .wa-bubble { right: 12px; left: 12px; width: auto; bottom: 84px; } }

/* ---------- Quick ID modal ---------- */
.quick-modal .modal-content { background: var(--surface); border: 1px solid var(--line-strong); border-radius: var(--radius); color: var(--text); }
.quick-modal .modal-title { font-family: var(--font-head); text-transform: uppercase; }
.quick-modal .form-control, .quick-modal .form-select { background: var(--bg); border: 1px solid var(--line-strong); color: #fff; border-radius: 6px; padding: .75rem 1rem; }
.quick-modal .form-control::placeholder { color: #6b7079; }
.quick-modal .form-control:focus, .quick-modal .form-select:focus { border-color: var(--gold); box-shadow: none; }
.quick-modal .form-label { font-weight: 600; font-size: .9rem; color: var(--muted); }
.amount-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.amount-chips input { position: absolute; opacity: 0; pointer-events: none; }
.amount-chips label { padding: 8px 16px; border-radius: 6px; border: 1px solid var(--line-strong); cursor: pointer; font-weight: 600; transition: all .15s ease; }
.amount-chips input:checked + label { background: var(--gold); color: #111; border-color: var(--gold); }
.amount-chips input:focus-visible + label { outline: 2px solid var(--gold); outline-offset: 2px; }

/* ---------- Fixes ---------- */
.stats-row > div > span { color: var(--muted); font-size: .95rem; }
.stats-row b span { font: inherit; color: inherit; }
.p-shot { aspect-ratio: 16 / 11; }
main [style*="font-family: Arial"], main [style*="font-family:Arial"] { font-family: inherit !important; }
@media (max-width: 575.98px) {
  .hero-meta { display: grid; grid-template-columns: repeat(3, 1fr); }
  .hero-meta div { padding-right: 10px; margin-right: 10px; }
  .hero-meta b { font-size: 1.25rem; }
  .hero-meta span { font-size: .75rem; }
  .hero-x .btn-lg { width: 100%; }
}

/* ---------- Home: SEO copy + feature cards ---------- */
.seo-copy > * { max-width: 1100px; }
.seo-copy .container { max-width: 1100px; }
.seo-copy h2 { text-align: left; }
.seo-copy .text-center { text-align: left !important; }
.seo-copy p, .seo-copy li { color: #c9ccd2 !important; font-size: 1.02rem; }
.seo-copy .custom-promo-card, .seo-copy [class*="rounded"] { text-align: left !important; }
.f-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.f-card { background: var(--surface); padding: 28px 26px; }
.f-num { display: block; font-family: var(--font-head); font-weight: 800; font-size: 1rem; color: var(--gold); margin-bottom: 10px; letter-spacing: .08em; }
.f-card h3 { margin-bottom: 8px; }
.f-card p { color: var(--muted) !important; font-size: .98rem; margin-bottom: 10px; }
.f-more summary { cursor: pointer; color: var(--gold); font-family: var(--font-head); font-weight: 700; text-transform: uppercase; letter-spacing: .06em; font-size: .9rem; list-style: none; }
.f-more summary::-webkit-details-marker { display: none; }
.f-more summary::after { content: ' +'; }
.f-more[open] summary::after { content: ' −'; }
.f-rest { margin-top: 10px; font-size: .95rem; }
.f-rest ul { padding-left: 18px; } .f-rest li { color: #c9ccd2 !important; margin-bottom: 6px; }
@media (max-width: 991.98px) { .f-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 575.98px) { .f-grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   Inner pages
   ========================================================================== */
.page-hero { position: relative; padding: clamp(36px, 5vw, 72px) 0 clamp(36px, 5vw, 64px); border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(245,179,1,.06), transparent 60%), var(--bg); overflow: hidden; }
.page-hero::after { content: ''; position: absolute; right: -120px; top: -120px; width: 420px; height: 420px; border: 60px solid rgba(245,179,1,.04); border-radius: 50%; pointer-events: none; }
.page-hero.no-img { padding-bottom: 40px; }
.page-hero h1 { font-size: clamp(2.2rem, 3.4vw + 1rem, 3.8rem) !important; margin-bottom: 14px; }
.page-hero h1 .text-gold { display: block; font-size: .62em; margin-top: 6px; letter-spacing: .01em; }
.crumbs { display: flex; flex-wrap: wrap; gap: 8px; font-family: var(--font-head); text-transform: uppercase; letter-spacing: .08em; font-size: .85rem; color: var(--muted); margin-bottom: 22px; }
.crumbs a { color: var(--gold) !important; text-decoration: none; }
.crumbs span[aria-current] { color: #fff; }
.hero-ticks { list-style: none; padding: 0; margin: 22px 0 0; display: flex; flex-wrap: wrap; gap: 8px 22px; }
.hero-ticks li { color: #c9ccd2 !important; font-size: .95rem; position: relative; padding-left: 18px; }
.hero-ticks li::before { content: ''; position: absolute; left: 0; top: .55em; width: 8px; height: 8px; background: var(--gold); transform: rotate(45deg); }
.page-shot { margin: 0; }
.page-shot img { width: 100%; border-radius: var(--radius); border: 1px solid var(--line-strong); box-shadow: 0 30px 60px -24px rgba(0,0,0,.85); aspect-ratio: 16 / 11; object-fit: cover; object-position: top; }
.page-shot.is-login { max-width: 440px; margin-left: auto; }
.page-shot.is-login img { aspect-ratio: 1 / 1; }
@media (max-width: 991.98px) { .page-shot.is-login { margin: 0 auto; max-width: 340px; } }

/* Old content area */
.page-body { padding: 24px 0 8px; }
.page-body > .container, .page-body > div > .container { max-width: 1140px; }
.page-body h2 { font-size: clamp(1.6rem, 1.4vw + 1rem, 2.3rem) !important; margin-top: 1.6rem; text-align: left !important; }
.page-body h3 { margin-top: 1.2rem; text-align: left !important; }
.page-body p, .page-body li { color: #c9ccd2 !important; font-size: 1.03rem; line-height: 1.75; }
.page-body .text-center:not(.btn):not(a) { text-align: left !important; }
.page-body [class*="custom-promo-card"], .page-body .rounded-3, .page-body .rounded-4 { background: var(--surface) !important; border: 1px solid var(--line) !important; box-shadow: none !important; }
.page-body img { border-radius: 6px; border: 1px solid var(--line); }
.page-body table { width: 100%; }
.page-body a:not(.btn) { color: var(--gold) !important; }
.page-body .btn-lg, .page-body .btn-warning, .page-body a.btn { background: var(--gold) !important; color: #111 !important; border: 0 !important; border-radius: 6px !important; font-family: var(--font-head); text-transform: uppercase; letter-spacing: .04em; font-weight: 700; box-shadow: none !important; }

/* Prose pages (about, legal, contact, responsible) */
.prose > section, .prose > div, .prose > .container { max-width: 860px !important; margin-left: auto; margin-right: auto; }
.prose .container { max-width: 860px !important; }
.prose h2 { font-size: clamp(1.4rem, 1vw + 1rem, 1.9rem) !important; text-transform: none; border-top: 1px solid var(--line); padding-top: 1.4rem; }
.prose h2:first-child { border-top: 0; padding-top: 0; }
.prose ul { padding-left: 20px; }
.prose li { margin-bottom: 8px; }
.prose li::marker { color: var(--gold); }
.legal-updated { font-family: var(--font-head); text-transform: uppercase; letter-spacing: .1em; font-size: .85rem !important; color: var(--gold) !important; }

/* Contact cards */
.contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.c-card { display: flex; flex-direction: column; gap: 10px; padding: 24px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); text-decoration: none !important; color: #fff !important; transition: border-color .2s ease, transform .2s ease; }
.c-card:hover { border-color: var(--gold); transform: translateY(-3px); }
.c-card > i { font-size: 1.6rem; color: var(--gold); }
.c-card.c-wa > i { color: var(--wa); }
.c-card b { display: block; font-family: var(--font-head); font-size: 1.4rem; text-transform: uppercase; }
.c-card small { color: var(--muted); font-size: .95rem; }
.c-card em { font-style: normal; font-size: .8rem; font-family: var(--font-head); text-transform: uppercase; letter-spacing: .08em; color: var(--gold); margin-top: auto; }
@media (max-width: 767.98px) { .contact-grid { grid-template-columns: 1fr; } }
