:root {
    --gold: #C9A84C;
    --gold-light: #E8C97A;
    --gold-pale: #F5E9C8;
    --gold-dark: #8B6914;
    --black: #0D0D0D;
    --dark: #141414;
    --dark2: #1C1C1C;
    --dark3: #232323;
    --white: #FEFEFE;
    --offwhite: #F7F3EC;
    --muted: #A09880;
    --font-serif: 'Cormorant Garamond', Georgia, serif;
    --font-sans: 'Outfit', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    background: var(--black);
    color: var(--white);
    overflow-x: hidden;
}

/* ── Noise texture overlay ─────────────────────── */
body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none;
    opacity: .6;
}

section,
nav,
footer {
    position: relative;
    z-index: 1;
}

/* ─── NAVBAR ──────────────────────────────────── */
.navbar {
    background: transparent;
    padding: 1.5rem 0;
    transition: background .4s, padding .3s, backdrop-filter .4s;
}

.navbar.scrolled {
    background: rgba(13, 13, 13, .88);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    padding: .9rem 0;
    border-bottom: 1px solid rgba(201, 168, 76, .15);
}

.navbar-brand {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--gold) !important;
    letter-spacing: .02em;
}

.navbar-brand span {
    color: var(--white);
    font-weight: 300;
}

.nav-link {
    color: rgba(255, 255, 255, .7) !important;
    font-size: .85rem;
    font-weight: 500;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: .4rem 1rem !important;
    transition: color .2s;
}

.nav-link:hover {
    color: var(--gold) !important;
}

.nav-cta {
    background: var(--gold);
    color: var(--black) !important;
    border-radius: 3px;
    padding: .4rem 1.2rem !important;
    font-weight: 600;
    transition: background .2s, transform .15s;
}

.nav-cta:hover {
    background: var(--gold-light);
    transform: translateY(-1px);
}

/* ─── HERO ────────────────────────────────────── */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--black);
    position: relative;
    overflow: hidden;
    padding: 7rem 0 5rem;
}

/* radial glow behind text */
.hero::after {
    content: "";
    position: absolute;
    top: -10%;
    left: 50%;
    transform: translateX(-50%);
    width: 900px;
    height: 600px;
    background: radial-gradient(ellipse at center, rgba(201, 168, 76, .12) 0%, transparent 70%);
    pointer-events: none;
}

/* decorative diagonal lines */
.hero-lines {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image:
        repeating-linear-gradient(-55deg,
            transparent,
            transparent 80px,
            rgba(201, 168, 76, .03) 80px,
            rgba(201, 168, 76, .03) 81px);
}

/* floating orbs */
.orb {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201, 168, 76, .18) 0%, transparent 70%);
    pointer-events: none;
    animation: float 8s ease-in-out infinite;
}

.orb-1 {
    width: 500px;
    height: 500px;
    top: -100px;
    right: -150px;
    animation-delay: 0s;
}

.orb-2 {
    width: 300px;
    height: 300px;
    bottom: 0;
    left: -100px;
    animation-delay: -4s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-30px);
    }
}

.hero-eyebrow {
    font-size: .78rem;
    font-weight: 500;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.2rem;
    display: flex;
    align-items: center;
    gap: .75rem;
}

.hero-eyebrow::before {
    content: "";
    display: inline-block;
    width: 40px;
    height: 1px;
    background: var(--gold);
}

.hero-title {
    font-family: var(--font-serif);
    font-size: clamp(3rem, 7vw, 6.5rem);
    line-height: 1.0;
    font-weight: 300;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.hero-title em {
    font-style: italic;
    color: var(--gold);
    font-weight: 400;
}

.hero-title .outline-text {
    -webkit-text-stroke: 1px rgba(255, 255, 255, .35);
    color: transparent;
}

.hero-sub {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, .6);
    line-height: 1.8;
    max-width: 500px;
    margin-bottom: 2.5rem;
    font-weight: 300;
}

.btn-gold {
    background: var(--gold);
    color: var(--black);
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: .88rem;
    letter-spacing: .06em;
    text-transform: uppercase;
    padding: .9rem 2.4rem;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    transition: background .2s, transform .15s, box-shadow .2s;
    text-decoration: none;
    display: inline-block;
}

.btn-gold:hover {
    background: var(--gold-light);
    color: var(--black);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(201, 168, 76, .35);
}

.btn-outline-gold {
    background: transparent;
    color: var(--gold);
    border: 1px solid rgba(201, 168, 76, .5);
    font-family: var(--font-sans);
    font-weight: 500;
    font-size: .88rem;
    letter-spacing: .06em;
    text-transform: uppercase;
    padding: .9rem 2.4rem;
    border-radius: 3px;
    cursor: pointer;
    transition: all .2s;
    text-decoration: none;
    display: inline-block;
}

.btn-outline-gold:hover {
    background: rgba(201, 168, 76, .1);
    border-color: var(--gold);
    color: var(--gold);
}

/* hero image / mock phone */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-frame {
    width: 260px;
    height: 520px;
    background: var(--dark2);
    border-radius: 40px;
    border: 2px solid rgba(201, 168, 76, .3);
    position: relative;
    overflow: hidden;
    box-shadow:
        0 0 0 1px rgba(201, 168, 76, .1),
        0 60px 120px rgba(0, 0, 0, .7),
        inset 0 1px 0 rgba(255, 255, 255, .06);
    animation: float 6s ease-in-out infinite;
}

.phone-frame::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 26px;
    background: var(--dark3);
    border-radius: 0 0 18px 18px;
    z-index: 10;
}

.phone-screen {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, #1a1008 0%, #0d0d0d 60%);
    overflow: hidden;
}

.phone-profile-card {
    margin: 50px 12px 0;
    background: linear-gradient(180deg, rgba(201, 168, 76, .08) 0%, rgba(13, 13, 13, 0) 100%);
    border-radius: 20px;
    border: 1px solid rgba(201, 168, 76, .2);
    overflow: hidden;
}

.phone-profile-img {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #3a2a12, #5c3d18, #3a2a12);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.phone-profile-img-inner {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--black);
}

.phone-profile-info {
    padding: 12px;
}

.phone-profile-name {
    font-family: var(--font-serif);
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 4px;
}

.phone-profile-desc {
    font-size: .65rem;
    color: var(--muted);
    line-height: 1.5;
}

.phone-lock-bar {
    margin: 8px 12px 12px;
    background: rgba(201, 168, 76, .1);
    border: 1px solid rgba(201, 168, 76, .25);
    border-radius: 10px;
    padding: 8px 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.phone-lock-icon {
    color: var(--gold);
    font-size: .9rem;
}

.phone-lock-text {
    font-size: .65rem;
    color: var(--muted);
    flex: 1;
}

.phone-unlock-btn {
    background: var(--gold);
    color: var(--black);
    font-size: .6rem;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: .05em;
}

/* floating badge on phone */
.phone-badge {
    position: absolute;
    background: var(--dark2);
    border: 1px solid rgba(201, 168, 76, .3);
    border-radius: 12px;
    padding: .6rem .9rem;
    font-size: .75rem;
    white-space: nowrap;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .5);
}

.phone-badge-1 {
    top: 80px;
    right: -110px;
}

.phone-badge-2 {
    bottom: 100px;
    left: -120px;
}

.badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
    margin-right: 6px;
}

/* hero stats */
.hero-stats {
    display: flex;
    gap: 2.5rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, .08);
}

.hero-stat-num {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 600;
    color: var(--gold);
    line-height: 1;
}

.hero-stat-label {
    font-size: .78rem;
    color: var(--muted);
    margin-top: .2rem;
    letter-spacing: .05em;
}

/* ─── DIVIDER ─────────────────────────────────── */
.gold-divider {
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 0 auto 2rem;
}

/* ─── ABOUT ───────────────────────────────────── */
.about-section {
    background: var(--dark);
    padding: 7rem 0;
    border-top: 1px solid rgba(201, 168, 76, .08);
}

.section-eyebrow {
    font-size: .75rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500;
    margin-bottom: .8rem;
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-weight: 300;
    line-height: 1.15;
    margin-bottom: 1.5rem;
}

.section-title em {
    font-style: italic;
    color: var(--gold);
}

.section-body {
    color: rgba(255, 255, 255, .6);
    line-height: 1.9;
    font-size: .97rem;
    font-weight: 300;
}

.feature-pill {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: rgba(201, 168, 76, .07);
    border: 1px solid rgba(201, 168, 76, .2);
    border-radius: 40px;
    padding: .45rem 1.1rem;
    font-size: .8rem;
    color: var(--gold-light);
    margin: .3rem;
    transition: background .2s;
}

.feature-pill:hover {
    background: rgba(201, 168, 76, .14);
}

.feature-pill i {
    font-size: .85rem;
}

.about-img-wrap {
    position: relative;
}

.about-card {
    background: var(--dark2);
    border: 1px solid rgba(201, 168, 76, .15);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.about-card-inner {
    padding: 2.5rem;
    background: linear-gradient(135deg, rgba(201, 168, 76, .04) 0%, transparent 60%);
}

.about-icon-large {
    width: 70px;
    height: 70px;
    border-radius: 18px;
    background: rgba(201, 168, 76, .1);
    border: 1px solid rgba(201, 168, 76, .25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--gold);
    margin-bottom: 1.2rem;
}

/* ─── HOW IT WORKS ────────────────────────────── */
.hiw-section {
    background: var(--black);
    padding: 7rem 0;
    border-top: 1px solid rgba(201, 168, 76, .08);
}

.hiw-step {
    position: relative;
    padding: 2rem;
    background: var(--dark2);
    border: 1px solid rgba(201, 168, 76, .12);
    border-radius: 16px;
    transition: border-color .3s, transform .3s;
    height: 100%;
}

.hiw-step:hover {
    border-color: rgba(201, 168, 76, .4);
    transform: translateY(-6px);
}

.hiw-step::before {
    content: attr(data-step);
    position: absolute;
    top: -18px;
    left: 2rem;
    font-family: var(--font-serif);
    font-size: 3.5rem;
    font-weight: 600;
    color: rgba(201, 168, 76, .12);
    line-height: 1;
    pointer-events: none;
}

.hiw-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(201, 168, 76, .1);
    border: 1px solid rgba(201, 168, 76, .25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--gold);
    margin-bottom: 1.2rem;
}

.hiw-title {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: .6rem;
}

.hiw-desc {
    font-size: .88rem;
    color: rgba(255, 255, 255, .55);
    line-height: 1.7;
    font-weight: 300;
}

/* connector line between steps */
.hiw-connector {
    display: none;
    position: absolute;
    top: 50%;
    right: -20px;
    transform: translateY(-50%);
    width: 40px;
    height: 1px;
    background: linear-gradient(90deg, rgba(201, 168, 76, .4), rgba(201, 168, 76, .1));
    z-index: 2;
}

@media (min-width: 992px) {
    .hiw-connector {
        display: block;
    }
}

/* ─── TRUST BADGES ────────────────────────────── */
.trust-section {
    background: var(--dark);
    padding: 4rem 0;
    border-top: 1px solid rgba(201, 168, 76, .08);
}

.trust-item {
    text-align: center;
    padding: 1rem;
}

.trust-icon {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: .6rem;
}

.trust-label {
    font-size: .82rem;
    color: var(--muted);
    font-weight: 300;
    letter-spacing: .03em;
}

/* ─── DOWNLOAD ────────────────────────────────── */
.download-section {
    background: var(--black);
    padding: 7rem 0;
    border-top: 1px solid rgba(201, 168, 76, .08);
    position: relative;
    overflow: hidden;
}

.download-section::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 500px;
    background: radial-gradient(ellipse at center, rgba(201, 168, 76, .07) 0%, transparent 70%);
    pointer-events: none;
}

.download-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--gold);
    color: var(--black);
    border: none;
    border-radius: 14px;
    padding: 1rem 2rem;
    cursor: pointer;
    transition: all .25s;
    text-decoration: none;
    width: 100%;
}

.download-btn:hover {
    background: var(--gold-light);
    color: var(--black);
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(201, 168, 76, .35);
}

.download-btn.outline {
    background: transparent;
    border: 1.5px solid var(--gold);
    color: var(--gold);
}

.download-btn.outline:hover {
    background: rgba(201, 168, 76, .08);
    color: var(--gold);
    box-shadow: 0 12px 40px rgba(201, 168, 76, .15);
}

.download-btn-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.download-btn-text-small {
    font-size: .7rem;
    font-weight: 400;
    opacity: .8;
    display: block;
    margin-bottom: 1px;
}

.download-btn-text-big {
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: .01em;
    display: block;
}

/* ─── LINKS / FOOTER ──────────────────────────── */
.footer-section {
    background: var(--dark);
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(201, 168, 76, .1);
}

.footer-brand {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--gold);
}

.footer-tagline {
    font-size: .83rem;
    color: var(--muted);
    margin-top: .4rem;
    font-weight: 300;
}

.footer-heading {
    font-size: .72rem;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500;
    margin-bottom: 1.2rem;
}

.footer-link {
    display: block;
    color: rgba(255, 255, 255, .5);
    font-size: .88rem;
    text-decoration: none;
    padding: .25rem 0;
    font-weight: 300;
    transition: color .2s;
}

.footer-link:hover {
    color: var(--gold);
}

.footer-divider {
    border-color: rgba(201, 168, 76, .1);
    margin: 2rem 0 1.5rem;
}

.footer-bottom {
    font-size: .78rem;
    color: rgba(255, 255, 255, .25);
}

/* ─── ANIMATIONS ──────────────────────────────── */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .7s ease, transform .7s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-up-delay-1 {
    transition-delay: .1s;
}

.fade-up-delay-2 {
    transition-delay: .2s;
}

.fade-up-delay-3 {
    transition-delay: .3s;
}

.fade-up-delay-4 {
    transition-delay: .4s;
}

/* ─── MISC ────────────────────────────────────── */
.gold-line {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201, 168, 76, .4), transparent);
    margin: 0 auto;
}

@media (max-width: 991px) {
    .hero-visual {
        margin-top: 3rem;
    }

    .phone-badge {
        display: none;
    }
}

@media (max-width: 767px) {
    .hero-stats {
        gap: 1.5rem;
    }

    .hero-stat-num {
        font-size: 1.5rem;
    }
}

/* privacy */
/* ── HERO HEADER ─────────────────────────────────── */
.policy-hero {
    padding: 8rem 0 4rem;
    background: var(--black);
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(201, 168, 76, .08);
}

.policy-hero::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 700px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(201, 168, 76, .09) 0%, transparent 70%);
    pointer-events: none;
}

.policy-hero .eyebrow {
    font-size: .74rem;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500;
    margin-bottom: .8rem;
    display: flex;
    align-items: center;
    gap: .6rem;
}

.policy-hero .eyebrow::before {
    content: "";
    width: 36px;
    height: 1px;
    background: var(--gold);
}

.policy-hero h1 {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 1rem;
}

.policy-hero h1 em {
    font-style: italic;
    color: var(--gold);
}

.policy-hero .meta {
    font-size: .83rem;
    color: var(--muted);
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
    margin-top: 1.2rem;
}

.policy-hero .meta span {
    display: flex;
    align-items: center;
    gap: .4rem;
}

/* ── LAYOUT ──────────────────────────────────────── */
.policy-layout {
    padding: 4rem 0 6rem;
}

/* Sticky sidebar TOC */
.toc-sidebar {
    position: sticky;
    top: 90px;
}

.toc-card {
    background: var(--dark2);
    border: 1px solid rgba(201, 168, 76, .14);
    border-radius: 14px;
    padding: 1.5rem;
}

.toc-title {
    font-size: .72rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 1rem;
}

.toc-link {
    display: flex;
    align-items: center;
    gap: .6rem;
    color: rgba(255, 255, 255, .5);
    font-size: .85rem;
    text-decoration: none;
    padding: .45rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, .05);
    transition: color .18s;
    font-weight: 300;
}

.toc-link:last-child {
    border-bottom: none;
}

.toc-link:hover,
.toc-link.active {
    color: var(--gold);
}

.toc-link i {
    font-size: .75rem;
    opacity: .6;
}

.toc-num {
    font-size: .7rem;
    color: var(--gold);
    font-weight: 600;
    min-width: 18px;
}

/* Floating back-to-top */
.back-to-top {
    display: flex;
    align-items: center;
    gap: .5rem;
    color: var(--muted);
    font-size: .8rem;
    text-decoration: none;
    margin-top: 1.2rem;
    transition: color .18s;
}

.back-to-top:hover {
    color: var(--gold);
}

/* ── MAIN CONTENT ────────────────────────────────── */
.policy-intro {
    background: var(--dark2);
    border: 1px solid rgba(201, 168, 76, .15);
    border-left: 3px solid var(--gold);
    border-radius: 0 12px 12px 0;
    padding: 1.5rem 1.8rem;
    margin-bottom: 3rem;
    font-size: .93rem;
    color: rgba(255, 255, 255, .7);
    font-weight: 300;
}

.policy-section {
    margin-bottom: 3.5rem;
    scroll-margin-top: 100px;
}

.policy-section-header {
    display: flex;
    align-items: center;
    gap: .9rem;
    margin-bottom: 1.4rem;
    padding-bottom: .8rem;
    border-bottom: 1px solid rgba(201, 168, 76, .12);
}

.policy-section-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: rgba(201, 168, 76, .1);
    border: 1px solid rgba(201, 168, 76, .22);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--gold);
    flex-shrink: 0;
}

.policy-section-title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--white);
    line-height: 1.2;
}

.policy-section-num {
    font-size: .72rem;
    color: var(--gold);
    letter-spacing: .1em;
    font-weight: 500;
}

.policy-body {
    font-size: .92rem;
    color: rgba(255, 255, 255, .62);
    font-weight: 300;
    line-height: 1.85;
}

.policy-body p {
    margin-bottom: 1rem;
}

.policy-body p:last-child {
    margin-bottom: 0;
}

.policy-body strong {
    color: rgba(255, 255, 255, .88);
    font-weight: 500;
}

/* Data list */
.data-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.data-list li {
    display: flex;
    align-items: flex-start;
    gap: .75rem;
    padding: .55rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, .05);
    font-size: .9rem;
    color: rgba(255, 255, 255, .62);
    font-weight: 300;
}

.data-list li:last-child {
    border-bottom: none;
}

.data-list li i {
    color: var(--gold);
    margin-top: .15rem;
    flex-shrink: 0;
    font-size: .85rem;
}

/* Highlight box */
.highlight-box {
    background: rgba(201, 168, 76, .06);
    border: 1px solid rgba(201, 168, 76, .18);
    border-radius: 10px;
    padding: 1.2rem 1.5rem;
    margin: 1.2rem 0;
    font-size: .88rem;
    color: rgba(255, 255, 255, .72);
    font-weight: 300;
}

.highlight-box strong {
    color: var(--gold-light);
}

/* Warning box */
.warning-box {
    background: rgba(220, 53, 69, .06);
    border: 1px solid rgba(220, 53, 69, .2);
    border-radius: 10px;
    padding: 1.2rem 1.5rem;
    margin: 1.2rem 0;
    font-size: .88rem;
    color: rgba(255, 255, 255, .7);
    font-weight: 300;
}

.warning-box i {
    color: #f06548;
}

/* Rights grid */
.rights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 12px;
    margin: 1.2rem 0;
}

.right-card {
    background: var(--dark3);
    border: 1px solid rgba(201, 168, 76, .1);
    border-radius: 10px;
    padding: 1rem 1.1rem;
    transition: border-color .2s;
}

.right-card:hover {
    border-color: rgba(201, 168, 76, .3);
}

.right-card i {
    color: var(--gold);
    font-size: 1.1rem;
    margin-bottom: .5rem;
    display: block;
}

.right-card strong {
    font-size: .88rem;
    color: var(--white);
    font-weight: 500;
    display: block;
    margin-bottom: .3rem;
}

.right-card span {
    font-size: .8rem;
    color: rgba(255, 255, 255, .5);
    font-weight: 300;
}

/* Contact card */
.contact-card {
    background: var(--dark2);
    border: 1px solid rgba(201, 168, 76, .18);
    border-radius: 14px;
    padding: 2rem;
    text-align: center;
    margin-top: 1.5rem;
}

.contact-card i {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: .8rem;
    display: block;
}

.contact-card h5 {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: .4rem;
}

.contact-card p {
    font-size: .88rem;
    color: var(--muted);
    margin-bottom: 1.2rem;
    font-weight: 300;
}

.btn-gold-sm {
    background: var(--gold);
    color: var(--black);
    border: none;
    border-radius: 6px;
    padding: .55rem 1.5rem;
    font-size: .85rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: background .2s;
}

.btn-gold-sm:hover {
    background: var(--gold-light);
    color: var(--black);
}

/* ── GOLD DIVIDER ────────────────────────────────── */
.gold-line {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201, 168, 76, .35), transparent);
    margin: 4rem 0;
}

/* ── FOOTER ──────────────────────────────────────── */
.footer-section {
    background: var(--dark);
    padding: 3rem 0 1.5rem;
    border-top: 1px solid rgba(201, 168, 76, .1);
}

.footer-brand {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--gold);
}

.footer-link {
    color: rgba(255, 255, 255, .45);
    font-size: .85rem;
    text-decoration: none;
    padding: .2rem .6rem;
    transition: color .18s;
}

.footer-link:hover {
    color: var(--gold);
}

.footer-divider {
    border-color: rgba(201, 168, 76, .1);
    margin: 1.5rem 0 1rem;
}

.footer-bottom {
    font-size: .76rem;
    color: rgba(255, 255, 255, .22);
}

/* ── ANIMATIONS ──────────────────────────────────── */
.fade-up {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .6s ease, transform .6s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 991px) {
    .toc-sidebar {
        position: static;
        margin-bottom: 2rem;
    }
}


/* ── KYC-specific styles ───────────────────────── */
.kyc-hero {
    padding: 8rem 0 4rem;
    background: var(--black);
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(201, 168, 76, .08);
}

.kyc-hero::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 500px;
    background: radial-gradient(ellipse, rgba(201, 168, 76, .1) 0%, transparent 70%);
    pointer-events: none;
}

/* Progress stepper */
.kyc-stepper {
    display: flex;
    align-items: flex-start;
    gap: 0;
    margin: 3rem 0;
    position: relative;
}

.kyc-step-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    text-align: center;
}

.kyc-step-item:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 22px;
    left: 55%;
    width: 90%;
    height: 1px;
    background: linear-gradient(90deg, rgba(201, 168, 76, .5), rgba(201, 168, 76, .1));
}

.kyc-step-circle {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--dark2);
    border: 1.5px solid rgba(201, 168, 76, .35);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gold);
    position: relative;
    z-index: 2;
    transition: all .3s;
}

.kyc-step-circle.active {
    background: var(--gold);
    color: var(--black);
    border-color: var(--gold);
    box-shadow: 0 0 20px rgba(201, 168, 76, .4);
}

.kyc-step-label {
    margin-top: .6rem;
    font-size: .72rem;
    color: var(--muted);
    letter-spacing: .04em;
    font-weight: 300;
    max-width: 80px;
    line-height: 1.4;
}

/* Doc card */
.doc-card {
    background: var(--dark2);
    border: 1px solid rgba(201, 168, 76, .14);
    border-radius: 16px;
    padding: 1.8rem;
    height: 100%;
    transition: border-color .3s, transform .3s;
    position: relative;
    overflow: hidden;
}

.doc-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(201, 168, 76, .4), transparent);
    opacity: 0;
    transition: opacity .3s;
}

.doc-card:hover {
    border-color: rgba(201, 168, 76, .4);
    transform: translateY(-4px);
}

.doc-card:hover::before {
    opacity: 1;
}

.doc-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: rgba(201, 168, 76, .08);
    border: 1px solid rgba(201, 168, 76, .2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 1.2rem;
}

.doc-title {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: .5rem;
}

.doc-desc {
    font-size: .85rem;
    color: rgba(255, 255, 255, .5);
    line-height: 1.7;
    font-weight: 300;
}

.doc-badge {
    display: inline-block;
    background: rgba(201, 168, 76, .1);
    border: 1px solid rgba(201, 168, 76, .25);
    color: var(--gold-light);
    font-size: .68rem;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: .2rem .6rem;
    border-radius: 4px;
    margin-top: .8rem;
}

/* Photo guide grid */
.photo-guide-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin: 1.5rem 0;
}

.photo-guide-card {
    background: var(--dark3);
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(201, 168, 76, .1);
    transition: border-color .2s;
}

.photo-guide-card:hover {
    border-color: rgba(201, 168, 76, .3);
}

.photo-guide-visual {
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    font-size: 3rem;
}

.photo-guide-visual.good {
    background: rgba(76, 175, 121, .06);
    border-bottom: 1px solid rgba(76, 175, 121, .15);
}

.photo-guide-visual.bad {
    background: rgba(240, 101, 72, .06);
    border-bottom: 1px solid rgba(240, 101, 72, .15);
}

.photo-guide-visual .badge-corner {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .8rem;
}

.photo-guide-visual.good .badge-corner {
    background: rgba(76, 175, 121, .2);
    color: #4caf79;
}

.photo-guide-visual.bad .badge-corner {
    background: rgba(240, 101, 72, .2);
    color: #f06548;
}

.photo-guide-label {
    padding: .8rem 1rem;
    font-size: .8rem;
    color: rgba(255, 255, 255, .6);
    font-weight: 300;
    text-align: center;
}

.photo-guide-label strong {
    display: block;
    font-weight: 600;
    font-size: .82rem;
    margin-bottom: .2rem;
}

.photo-guide-label strong.good {
    color: #4caf79;
}

.photo-guide-label strong.bad {
    color: #f06548;
}

/* Timeline */
.kyc-timeline {
    position: relative;
    padding-left: 2.5rem;
}

.kyc-timeline::before {
    content: "";
    position: absolute;
    left: 10px;
    top: 8px;
    bottom: 8px;
    width: 1px;
    background: linear-gradient(180deg, var(--gold), rgba(201, 168, 76, .1));
}

.timeline-item {
    position: relative;
    margin-bottom: 2rem;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-dot {
    position: absolute;
    left: -2.5rem;
    top: 4px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--dark2);
    border: 2px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
}

.timeline-dot i {
    font-size: .6rem;
    color: var(--gold);
}

.timeline-title {
    font-weight: 600;
    color: var(--white);
    font-size: .95rem;
    margin-bottom: .3rem;
}

.timeline-desc {
    font-size: .86rem;
    color: rgba(255, 255, 255, .5);
    font-weight: 300;
    line-height: 1.7;
}

/* Status badge */
.status-pill {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    padding: .3rem .9rem;
    border-radius: 20px;
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: .03em;
}

.status-pill.approved {
    background: rgba(76, 175, 121, .12);
    border: 1px solid rgba(76, 175, 121, .25);
    color: #4caf79;
}

.status-pill.pending {
    background: rgba(201, 168, 76, .1);
    border: 1px solid rgba(201, 168, 76, .25);
    color: var(--gold);
}

.status-pill.rejected {
    background: rgba(240, 101, 72, .1);
    border: 1px solid rgba(240, 101, 72, .25);
    color: #f06548;
}

.status-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: currentColor;
}

/* FAQ accordion */
.kyc-faq .accordion-item {
    background: var(--dark2);
    border: 1px solid rgba(201, 168, 76, .12) !important;
    border-radius: 10px !important;
    margin-bottom: .75rem;
    overflow: hidden;
}

.kyc-faq .accordion-button {
    background: var(--dark2);
    color: var(--white);
    font-weight: 500;
    font-size: .92rem;
    border: none;
    box-shadow: none !important;
}

.kyc-faq .accordion-button:not(.collapsed) {
    background: rgba(201, 168, 76, .06);
    color: var(--gold);
}

.kyc-faq .accordion-button::after {
    filter: invert(1) sepia(1) saturate(2) hue-rotate(5deg);
}

.kyc-faq .accordion-body {
    background: rgba(201, 168, 76, .03);
    font-size: .88rem;
    color: rgba(255, 255, 255, .6);
    font-weight: 300;
    line-height: 1.8;
    border-top: 1px solid rgba(201, 168, 76, .1);
}

/* CTA banner */
.kyc-cta-banner {
    background: linear-gradient(135deg, rgba(201, 168, 76, .08) 0%, rgba(201, 168, 76, .03) 100%);
    border: 1px solid rgba(201, 168, 76, .2);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.kyc-cta-banner::before {
    content: "";
    position: absolute;
    top: -60px;
    right: -60px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(201, 168, 76, .12) 0%, transparent 70%);
    pointer-events: none;
}

.kyc-cta-banner::after {
    content: "";
    position: absolute;
    bottom: -60px;
    left: -60px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(201, 168, 76, .08) 0%, transparent 70%);
    pointer-events: none;
}

@media (max-width: 767px) {
    .kyc-stepper {
        gap: 0;
    }

    .kyc-step-label {
        font-size: .62rem;
        max-width: 60px;
    }

    .kyc-step-circle {
        width: 36px;
        height: 36px;
        font-size: .9rem;
    }

    .photo-guide-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .kyc-cta-banner {
        padding: 2rem 1.5rem;
    }
}


/* ── Help Center specific styles ──────────────── */

.help-hero {
    padding: 8rem 0 5rem;
    background: var(--black);
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(201, 168, 76, .08);
}

.help-hero::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 900px;
    height: 500px;
    background: radial-gradient(ellipse, rgba(201, 168, 76, .1) 0%, transparent 70%);
    pointer-events: none;
}

/* Search bar */
.help-search-wrap {
    position: relative;
    max-width: 580px;
    margin: 2rem auto 0;
}

.help-search-input {
    width: 100%;
    background: var(--dark2);
    border: 1px solid rgba(201, 168, 76, .25);
    border-radius: 50px;
    padding: 1rem 1.5rem 1rem 3.2rem;
    color: var(--white);
    font-family: var(--font-sans);
    font-size: .95rem;
    font-weight: 300;
    outline: none;
    transition: border-color .2s, box-shadow .2s;
}

.help-search-input::placeholder {
    color: var(--muted);
}

.help-search-input:focus {
    border-color: rgba(201, 168, 76, .6);
    box-shadow: 0 0 0 3px rgba(201, 168, 76, .08);
}

.help-search-icon {
    position: absolute;
    left: 1.1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--muted);
    font-size: 1rem;
    pointer-events: none;
}

.help-search-btn {
    position: absolute;
    right: 6px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--gold);
    color: var(--black);
    border: none;
    border-radius: 40px;
    padding: .55rem 1.3rem;
    font-size: .82rem;
    font-weight: 600;
    cursor: pointer;
    transition: background .2s;
}

.help-search-btn:hover {
    background: var(--gold-light);
}

/* Quick links */
.quick-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: .5rem;
    margin-top: 1.2rem;
}

.quick-link-chip {
    background: rgba(201, 168, 76, .07);
    border: 1px solid rgba(201, 168, 76, .18);
    color: rgba(255, 255, 255, .6);
    font-size: .78rem;
    padding: .3rem .9rem;
    border-radius: 20px;
    cursor: pointer;
    transition: all .2s;
    font-weight: 300;
}

.quick-link-chip:hover {
    background: rgba(201, 168, 76, .14);
    color: var(--gold-light);
    border-color: rgba(201, 168, 76, .35);
}

/* Category cards */
.help-cat-card {
    background: var(--dark2);
    border: 1px solid rgba(201, 168, 76, .12);
    border-radius: 16px;
    padding: 2rem 1.6rem;
    height: 100%;
    transition: border-color .3s, transform .3s;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: block;
}

.help-cat-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(201, 168, 76, .04) 0%, transparent 60%);
    opacity: 0;
    transition: opacity .3s;
}

.help-cat-card:hover {
    border-color: rgba(201, 168, 76, .4);
    transform: translateY(-5px);
    text-decoration: none;
}

.help-cat-card:hover::after {
    opacity: 1;
}

.help-cat-icon {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    background: rgba(201, 168, 76, .08);
    border: 1px solid rgba(201, 168, 76, .2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--gold);
    margin-bottom: 1.1rem;
    position: relative;
    z-index: 1;
}

.help-cat-title {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: .4rem;
    position: relative;
    z-index: 1;
}

.help-cat-desc {
    font-size: .83rem;
    color: rgba(255, 255, 255, .48);
    line-height: 1.65;
    font-weight: 300;
    position: relative;
    z-index: 1;
}

.help-cat-count {
    display: inline-block;
    margin-top: .8rem;
    font-size: .72rem;
    color: var(--gold);
    font-weight: 500;
    letter-spacing: .04em;
    position: relative;
    z-index: 1;
}

.help-cat-arrow {
    position: absolute;
    bottom: 1.4rem;
    right: 1.4rem;
    color: rgba(201, 168, 76, .3);
    font-size: 1rem;
    transition: color .2s, transform .2s;
    z-index: 1;
}

.help-cat-card:hover .help-cat-arrow {
    color: var(--gold);
    transform: translateX(3px);
}

/* Article list */
.article-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, .05);
    text-decoration: none;
    transition: all .2s;
}

.article-item:last-child {
    border-bottom: none;
}

.article-item:hover {
    text-decoration: none;
}

.article-item:hover .article-title {
    color: var(--gold);
}

.article-item:hover .article-icon {
    background: rgba(201, 168, 76, .15);
    border-color: rgba(201, 168, 76, .35);
}

.article-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(201, 168, 76, .06);
    border: 1px solid rgba(201, 168, 76, .14);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .85rem;
    color: var(--gold);
    flex-shrink: 0;
    transition: all .2s;
}

.article-title {
    font-size: .9rem;
    color: rgba(255, 255, 255, .75);
    font-weight: 400;
    margin-bottom: .2rem;
    transition: color .2s;
    line-height: 1.4;
}

.article-meta {
    font-size: .74rem;
    color: var(--muted);
    font-weight: 300;
}

.article-chevron {
    margin-left: auto;
    color: rgba(201, 168, 76, .25);
    font-size: .8rem;
    flex-shrink: 0;
    margin-top: .2rem;
    transition: color .2s;
}

.article-item:hover .article-chevron {
    color: var(--gold);
}

/* Section card wrapper */
.help-section-card {
    background: var(--dark2);
    border: 1px solid rgba(201, 168, 76, .12);
    border-radius: 16px;
    padding: 1.8rem;
    height: 100%;
}

.help-section-header {
    display: flex;
    align-items: center;
    gap: .75rem;
    margin-bottom: 1.2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(201, 168, 76, .1);
}

.help-section-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(201, 168, 76, .08);
    border: 1px solid rgba(201, 168, 76, .18);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--gold);
    flex-shrink: 0;
}

.help-section-title {
    font-family: var(--font-serif);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--white);
}

.view-all-link {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    color: var(--gold);
    font-size: .8rem;
    font-weight: 500;
    text-decoration: none;
    margin-top: 1rem;
    transition: gap .2s;
}

.view-all-link:hover {
    gap: .7rem;
    color: var(--gold-light);
    text-decoration: none;
}

/* Status banner */
.status-banner {
    border-radius: 12px;
    padding: 1rem 1.4rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.status-banner.operational {
    background: rgba(76, 175, 121, .06);
    border: 1px solid rgba(76, 175, 121, .2);
}

.status-banner.issue {
    background: rgba(240, 101, 72, .06);
    border: 1px solid rgba(240, 101, 72, .2);
}

.status-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
    animation: pulse-dot 2s infinite;
}

.status-indicator.green {
    background: #4caf79;
    box-shadow: 0 0 0 0 rgba(76, 175, 121, .5);
}

.status-indicator.red {
    background: #f06548;
}

@keyframes pulse-dot {
    0% {
        box-shadow: 0 0 0 0 rgba(76, 175, 121, .5);
    }

    70% {
        box-shadow: 0 0 0 8px rgba(76, 175, 121, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(76, 175, 121, 0);
    }
}

/* Contact options */
.contact-option {
    background: var(--dark2);
    border: 1px solid rgba(201, 168, 76, .12);
    border-radius: 16px;
    padding: 2rem 1.6rem;
    text-align: center;
    height: 100%;
    transition: border-color .3s, transform .3s;
}

.contact-option:hover {
    border-color: rgba(201, 168, 76, .35);
    transform: translateY(-4px);
}

.contact-option-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 1.1rem;
}

.contact-option-title {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: .4rem;
}

.contact-option-desc {
    font-size: .83rem;
    color: rgba(255, 255, 255, .5);
    line-height: 1.65;
    font-weight: 300;
    margin-bottom: 1.2rem;
}

.contact-option-eta {
    font-size: .74rem;
    color: var(--muted);
    margin-top: .6rem;
}

/* Popular badge */
.popular-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(201, 168, 76, .12);
    border: 1px solid rgba(201, 168, 76, .25);
    color: var(--gold);
    font-size: .65rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: .18rem .55rem;
    border-radius: 4px;
}

/* Tip box */
.tip-box {
    background: rgba(201, 168, 76, .05);
    border: 1px solid rgba(201, 168, 76, .15);
    border-left: 3px solid var(--gold);
    border-radius: 0 10px 10px 0;
    padding: 1rem 1.4rem;
    font-size: .87rem;
    color: rgba(255, 255, 255, .65);
    font-weight: 300;
    line-height: 1.75;
}

.tip-box strong {
    color: var(--gold-light);
}

/* Video guide card */
.video-card {
    background: var(--dark3);
    border: 1px solid rgba(201, 168, 76, .1);
    border-radius: 14px;
    overflow: hidden;
    transition: border-color .2s, transform .2s;
    cursor: pointer;
}

.video-card:hover {
    border-color: rgba(201, 168, 76, .3);
    transform: translateY(-3px);
}

.video-thumb {
    height: 130px;
    background: linear-gradient(135deg, var(--dark2), var(--dark3));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border-bottom: 1px solid rgba(201, 168, 76, .08);
}

.video-play-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(201, 168, 76, .15);
    border: 1.5px solid rgba(201, 168, 76, .4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: .9rem;
    transition: background .2s;
}

.video-card:hover .video-play-btn {
    background: rgba(201, 168, 76, .25);
}

.video-duration {
    position: absolute;
    bottom: .5rem;
    right: .7rem;
    font-size: .68rem;
    color: var(--muted);
    background: rgba(0, 0, 0, .5);
    padding: .1rem .4rem;
    border-radius: 3px;
}

.video-info {
    padding: .9rem 1rem;
}

.video-title {
    font-size: .85rem;
    color: rgba(255, 255, 255, .75);
    font-weight: 400;
    margin-bottom: .2rem;
    line-height: 1.4;
}

.video-label {
    font-size: .72rem;
    color: var(--muted);
    font-weight: 300;
}

@media (max-width: 767px) {
    .help-search-wrap {
        max-width: 100%;
    }

    .quick-links {
        gap: .4rem;
    }
}