﻿/* ══ 3D BACKGROUND CANVAS (green palette for rut tien) ══ */
#rt-bg-canvas {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

    #rt-bg-canvas::before {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(ellipse 80% 50% at 15% 10%, rgba(16,185,129,.07) 0%, transparent 60%), radial-gradient(ellipse 60% 45% at 85% 35%, rgba(5,150,105,.06) 0%, transparent 55%), radial-gradient(ellipse 70% 50% at 50% 100%, rgba(37,99,235,.05) 0%, transparent 60%);
        animation: rt-ambient 18s ease-in-out infinite alternate;
    }

@keyframes rt-ambient {
    0% {
        opacity: .7;
        transform: scale(1);
    }

    100% {
        opacity: 1;
        transform: scale(1.06);
    }
}

.rt-star {
    position: absolute;
    border-radius: 50%;
    background: #fff;
    animation: rt-twinkle var(--d) ease-in-out infinite var(--dl);
}

@keyframes rt-twinkle {
    0%,100% {
        opacity: .06;
        transform: scale(1);
    }

    50% {
        opacity: .60;
        transform: scale(1.8);
    }
}

.rt-particle {
    position: absolute;
    border-radius: 50%;
    animation: rt-part-fly var(--pf) ease-in-out infinite var(--pd);
}

@keyframes rt-part-fly {
    0%,100% {
        transform: translate(0,0) scale(1);
        opacity: .45;
    }

    50% {
        transform: translate(var(--px),var(--py)) scale(1.5);
        opacity: .9;
    }
}

.rt-ico3d {
    position: absolute;
    animation: rt-float var(--gf) ease-in-out infinite var(--gd);
    will-change: transform;
}

@keyframes rt-float {
    0%,100% {
        filter: var(--glow);
        transform: translateY(var(--py-scroll,0px)) rotate(var(--r0,0deg));
    }

    40% {
        filter: var(--glow-bright);
        transform: translateY(calc(var(--py-scroll,0px) + var(--fy,-14px))) rotate(var(--r1,4deg));
    }

    70% {
        filter: var(--glow);
        transform: translateY(calc(var(--py-scroll,0px) - var(--fy2,6px))) rotate(var(--r2,-3deg));
    }
}

.rt-ico3d::before {
    content: '';
    position: absolute;
    inset: -35%;
    border-radius: 50%;
    background: var(--aura);
    filter: blur(24px);
    z-index: -1;
    animation: rt-aura var(--gf) ease-in-out infinite var(--gd);
}

@keyframes rt-aura {
    0%,100% {
        opacity: .55;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.18);
    }
}

/* Icon positions — RUT page (green palette) */
.rtico-money {
    width: 120px;
    height: 120px;
    top: 5vh;
    left: 66%;
    --gf: 7s;
    --gd: 0s;
    --fy: -18px;
    --fy2: 8px;
    --r0: -3deg;
    --r1: 5deg;
    --r2: -2deg;
    --glow: drop-shadow(0 0 18px rgba(16,185,129,.80)) drop-shadow(0 0 40px rgba(16,185,129,.30));
    --glow-bright: drop-shadow(0 0 28px rgba(16,185,129,1)) drop-shadow(0 0 60px rgba(16,185,129,.50));
    --aura: radial-gradient(circle,rgba(16,185,129,.28) 0%,transparent 70%);
    --parallax-speed: 0.18;
}

.rtico-bank {
    width: 90px;
    height: 90px;
    top: 20vh;
    left: 5%;
    --gf: 8.5s;
    --gd: -2s;
    --fy: -14px;
    --fy2: 6px;
    --r0: 4deg;
    --r1: -5deg;
    --r2: 3deg;
    --glow: drop-shadow(0 0 16px rgba(52,211,153,.80)) drop-shadow(0 0 36px rgba(52,211,153,.32));
    --glow-bright: drop-shadow(0 0 26px rgba(52,211,153,1)) drop-shadow(0 0 55px rgba(52,211,153,.50));
    --aura: radial-gradient(circle,rgba(52,211,153,.25) 0%,transparent 70%);
    --parallax-speed: 0.24;
}

.rtico-crown {
    width: 78px;
    height: 78px;
    top: 7vh;
    left: 3%;
    --gf: 9s;
    --gd: -4s;
    --fy: -12px;
    --fy2: 5px;
    --r0: -2deg;
    --r1: 4deg;
    --r2: -3deg;
    --glow: drop-shadow(0 0 14px rgba(245,158,11,.80)) drop-shadow(0 0 34px rgba(245,158,11,.30));
    --glow-bright: drop-shadow(0 0 22px rgba(245,158,11,1)) drop-shadow(0 0 50px rgba(245,158,11,.48));
    --aura: radial-gradient(circle,rgba(245,158,11,.24) 0%,transparent 70%);
    --parallax-speed: 0.30;
}

.rtico-chart {
    width: 105px;
    height: 105px;
    top: 38vh;
    left: 79%;
    --gf: 6.5s;
    --gd: -1s;
    --fy: -16px;
    --fy2: 7px;
    --r0: 3deg;
    --r1: -4deg;
    --r2: 5deg;
    --glow: drop-shadow(0 0 16px rgba(139,92,246,.80)) drop-shadow(0 0 38px rgba(139,92,246,.30));
    --glow-bright: drop-shadow(0 0 26px rgba(139,92,246,1)) drop-shadow(0 0 58px rgba(139,92,246,.48));
    --aura: radial-gradient(circle,rgba(139,92,246,.24) 0%,transparent 70%);
    --parallax-speed: 0.14;
}

.rtico-shield {
    width: 82px;
    height: 82px;
    top: 56vh;
    left: 7%;
    --gf: 7.5s;
    --gd: -3s;
    --fy: -12px;
    --fy2: 5px;
    --r0: -4deg;
    --r1: 3deg;
    --r2: -5deg;
    --glow: drop-shadow(0 0 14px rgba(37,99,235,.80)) drop-shadow(0 0 34px rgba(37,99,235,.30));
    --glow-bright: drop-shadow(0 0 22px rgba(37,99,235,1)) drop-shadow(0 0 50px rgba(37,99,235,.48));
    --aura: radial-gradient(circle,rgba(37,99,235,.24) 0%,transparent 70%);
    --parallax-speed: 0.20;
}

.rtico-rocket {
    width: 70px;
    height: 70px;
    top: 2vh;
    left: 87%;
    --gf: 5.5s;
    --gd: -2.5s;
    --fy: -22px;
    --fy2: 10px;
    --r0: -10deg;
    --r1: 10deg;
    --r2: -8deg;
    --glow: drop-shadow(0 0 12px rgba(100,220,180,.80)) drop-shadow(0 0 30px rgba(100,220,180,.32));
    --glow-bright: drop-shadow(0 0 20px rgba(100,220,180,1)) drop-shadow(0 0 48px rgba(100,220,180,.50));
    --aura: radial-gradient(circle,rgba(100,220,180,.22) 0%,transparent 70%);
    --parallax-speed: 0.35;
}

.rtico-store {
    width: 62px;
    height: 62px;
    top: 45vh;
    left: 43%;
    --gf: 11s;
    --gd: -6s;
    --fy: -10px;
    --fy2: 4px;
    --r0: 0deg;
    --r1: 3deg;
    --r2: -2deg;
    --glow: drop-shadow(0 0 10px rgba(16,185,129,.70)) drop-shadow(0 0 28px rgba(16,185,129,.28));
    --glow-bright: drop-shadow(0 0 18px rgba(16,185,129,.95)) drop-shadow(0 0 42px rgba(16,185,129,.45));
    --aura: radial-gradient(circle,rgba(16,185,129,.20) 0%,transparent 70%);
    --parallax-speed: 0.08;
}
/* Lower page icons */
.rtico-money-sm {
    width: 58px;
    height: 58px;
    top: 115vh;
    left: 11%;
    --gf: 7s;
    --gd: -1s;
    --fy: -12px;
    --fy2: 5px;
    --r0: 2deg;
    --r1: -4deg;
    --r2: 3deg;
    --glow: drop-shadow(0 0 12px rgba(16,185,129,.70));
    --glow-bright: drop-shadow(0 0 20px rgba(16,185,129,.95));
    --aura: radial-gradient(circle,rgba(16,185,129,.20) 0%,transparent 70%);
    --parallax-speed: 0.22;
}

.rtico-chart-sm {
    width: 52px;
    height: 52px;
    top: 130vh;
    left: 83%;
    --gf: 8s;
    --gd: -3s;
    --fy: -10px;
    --fy2: 4px;
    --r0: -3deg;
    --r1: 4deg;
    --r2: -2deg;
    --glow: drop-shadow(0 0 12px rgba(139,92,246,.75));
    --glow-bright: drop-shadow(0 0 20px rgba(139,92,246,1));
    --aura: radial-gradient(circle,rgba(139,92,246,.20) 0%,transparent 70%);
    --parallax-speed: 0.16;
}

.rtico-bank-sm {
    width: 60px;
    height: 60px;
    top: 165vh;
    left: 5%;
    --gf: 6s;
    --gd: -4s;
    --fy: -12px;
    --fy2: 5px;
    --r0: 3deg;
    --r1: -3deg;
    --r2: 4deg;
    --glow: drop-shadow(0 0 12px rgba(52,211,153,.75));
    --glow-bright: drop-shadow(0 0 20px rgba(52,211,153,1));
    --aura: radial-gradient(circle,rgba(52,211,153,.20) 0%,transparent 70%);
    --parallax-speed: 0.26;
}

.rtico-crown-sm {
    width: 56px;
    height: 56px;
    top: 185vh;
    left: 76%;
    --gf: 9s;
    --gd: -2s;
    --fy: -11px;
    --fy2: 5px;
    --r0: -2deg;
    --r1: 5deg;
    --r2: -3deg;
    --glow: drop-shadow(0 0 12px rgba(245,158,11,.75));
    --glow-bright: drop-shadow(0 0 20px rgba(245,158,11,1));
    --aura: radial-gradient(circle,rgba(245,158,11,.20) 0%,transparent 70%);
    --parallax-speed: 0.18;
}

.rt-ico3d .ico-fa-wrap {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ══ PAGE ══ */
.hd-page {
    position: relative;
    z-index: 1;
    max-width: 960px;
    margin: 0 auto;
    padding: 28px 20px 80px;
}

.hd-hero {
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 32px;
    background: linear-gradient(135deg, #0a1a10 0%, #064e3b 45%, #065f46 100%);
    padding: 36px 32px;
    position: relative;
    box-shadow: 0 8px 40px rgba(16,185,129,.22);
    border: 1px solid rgba(52,211,153,.15);
}

    .hd-hero::before {
        content: '';
        position: absolute;
        inset: 0;
        background: repeating-linear-gradient(-48deg, transparent, transparent 24px, rgba(255,255,255,.02) 24px, rgba(255,255,255,.02) 48px);
    }

    .hd-hero::after {
        content: '';
        position: absolute;
        width: 300px;
        height: 300px;
        background: radial-gradient(circle, rgba(16,185,129,.15), transparent 70%);
        top: -80px;
        right: -60px;
        border-radius: 50%;
        pointer-events: none;
    }

.hd-hero-inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.hd-hero-icon {
    width: 72px;
    height: 72px;
    background: rgba(16,185,129,.2);
    border: 1px solid rgba(52,211,153,.3);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: #34d399;
    flex-shrink: 0;
    box-shadow: 0 4px 24px rgba(16,185,129,.35), inset 0 1px 0 rgba(255,255,255,.1);
    filter: drop-shadow(0 0 14px rgba(16,185,129,.5));
}

.hd-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(37,99,235,.2);
    border: 1px solid rgba(37,99,235,.35);
    border-radius: 20px;
    padding: 3px 11px;
    font-size: 11px;
    font-weight: 700;
    color: #93c5fd;
    letter-spacing: .3px;
    margin-bottom: 8px;
}

.hd-hero-title {
    font-size: 26px;
    font-weight: 800;
    color: #fff;
    margin: 0 0 8px;
    letter-spacing: -.5px;
}

.hd-hero-sub {
    font-size: 13.5px;
    color: rgba(255,255,255,.68);
    margin: 0;
    line-height: 1.65;
}

.hd-stats {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 12px;
    margin-bottom: 28px;
}

.hd-stat {
    background: var(--bg2,#161b22);
    border: 1px solid var(--line,rgba(255,255,255,.08));
    border-radius: 10px;
    padding: 14px;
    text-align: center;
    transition: border-color .18s, transform .18s;
}

    .hd-stat:hover {
        border-color: var(--line2,rgba(255,255,255,.14));
        transform: translateY(-2px);
    }

.hd-stat-val {
    font-size: 18px;
    font-weight: 800;
    font-family: monospace;
    margin-bottom: 4px;
}

.hd-stat-lbl {
    font-size: 10.5px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .4px;
    color: var(--t3,#8b949e);
}

.hd-section {
    margin-bottom: 28px;
}

.hd-section-hd {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 700;
    color: var(--t1,#f0f6fc);
    margin-bottom: 14px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--line,rgba(255,255,255,.08));
}

    .hd-section-hd .hd-num {
        width: 26px;
        height: 26px;
        background: #059669;
        border-radius: 7px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 12px;
        font-weight: 800;
        color: #fff;
        flex-shrink: 0;
    }

    .hd-section-hd .hd-icon {
        width: 28px;
        height: 28px;
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 13px;
        flex-shrink: 0;
    }

.hd-card {
    background: var(--bg2,#161b22);
    border: 1px solid var(--line,rgba(255,255,255,.08));
    border-radius: 12px;
    padding: 18px 20px;
    transition: border-color .18s;
}

    .hd-card:hover {
        border-color: var(--line2,rgba(255,255,255,.14));
    }

.hd-steps {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.hd-step {
    display: flex;
    gap: 14px;
    position: relative;
    padding-bottom: 24px;
}

    .hd-step:last-child {
        padding-bottom: 0;
    }

    .hd-step:not(:last-child)::after {
        content: '';
        position: absolute;
        left: 17px;
        top: 38px;
        bottom: 0;
        width: 2px;
        background: linear-gradient(to bottom, rgba(16,185,129,.5), transparent);
    }

.hd-step-dot {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(16,185,129,.1);
    border: 2px solid #059669;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 800;
    color: #34d399;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    box-shadow: 0 0 12px rgba(16,185,129,.2);
}

.hd-step-title {
    font-size: 13.5px;
    font-weight: 700;
    color: var(--t1,#f0f6fc);
    margin-bottom: 5px;
}

.hd-step-desc {
    font-size: 12.5px;
    color: var(--t2,#c9d1d9);
    line-height: 1.65;
}

    .hd-step-desc code {
        background: rgba(16,185,129,.1);
        border: 1px solid rgba(16,185,129,.25);
        border-radius: 4px;
        padding: 1px 6px;
        font-size: 12px;
        color: #34d399;
        font-family: monospace;
    }

/* ══ CONDITION CARD ══ */
.hd-conditions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.hd-condition {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--bg3,#1c2333);
    border: 1px solid var(--line,rgba(255,255,255,.08));
    border-radius: 10px;
    padding: 14px 16px;
}

.hd-condition-ico {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

.hd-condition-title {
    font-size: 13px;
    font-weight: 700;
    color: var(--t1,#f0f6fc);
    margin-bottom: 3px;
}

.hd-condition-desc {
    font-size: 12px;
    color: var(--t3,#8b949e);
    line-height: 1.5;
}

/* ══ BANK FORM PREVIEW ══ */
.hd-form-preview {
    background: var(--bg3,#1c2333);
    border: 1px solid var(--line,rgba(255,255,255,.08));
    border-radius: 12px;
    padding: 18px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hd-form-row {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.hd-form-lbl {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .4px;
    color: var(--t3,#8b949e);
}

.hd-form-field {
    background: var(--bg2,#161b22);
    border: 1px solid var(--line2,rgba(255,255,255,.13));
    border-radius: 7px;
    padding: 10px 12px;
    font-size: 13px;
    color: var(--t2,#c9d1d9);
    display: flex;
    align-items: center;
    gap: 8px;
}

    .hd-form-field i {
        color: var(--t3,#8b949e);
        font-size: 12px;
    }

.hd-form-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

/* ══ STATUS BADGES ══ */
.hd-status-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 10px;
}

.hd-status-item {
    border-radius: 10px;
    padding: 14px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.hd-status-ico {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    flex-shrink: 0;
    margin-top: 1px;
}

.hd-status-name {
    font-size: 12.5px;
    font-weight: 700;
    margin-bottom: 3px;
}

.hd-status-desc {
    font-size: 11.5px;
    color: var(--t3,#8b949e);
    line-height: 1.5;
}

/* ══ TIMELINE ══ */
.hd-timeline {
    display: flex;
    align-items: stretch;
    background: var(--bg2,#161b22);
    border: 1px solid var(--line,rgba(255,255,255,.08));
    border-radius: 12px;
    overflow: hidden;
}

.hd-tl-item {
    flex: 1;
    padding: 16px 12px;
    text-align: center;
    position: relative;
}

    .hd-tl-item:not(:last-child)::after {
        content: '\f054';
        font-family: 'Font Awesome 5 Free';
        font-weight: 900;
        position: absolute;
        right: -10px;
        top: 50%;
        transform: translateY(-50%);
        font-size: 10px;
        color: var(--t3,#8b949e);
        z-index: 1;
    }

    .hd-tl-item:not(:last-child) {
        border-right: 1px solid var(--line,rgba(255,255,255,.08));
    }

.hd-tl-ico {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    margin: 0 auto 10px;
}

.hd-tl-title {
    font-size: 11.5px;
    font-weight: 700;
    color: var(--t1,#f0f6fc);
    margin-bottom: 3px;
}

.hd-tl-sub {
    font-size: 10.5px;
    color: var(--t3,#8b949e);
    line-height: 1.5;
}

.hd-tl-time {
    font-size: 10px;
    font-weight: 700;
    color: #34d399;
    margin-top: 4px;
    font-family: monospace;
}

/* ══ FEE TABLE ══ */
.hd-fee-table {
    width: 100%;
    border-collapse: collapse;
}

    .hd-fee-table th {
        padding: 10px 12px;
        font-size: 10.5px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: .4px;
        color: var(--t3,#8b949e);
        background: rgba(255,255,255,.025);
        text-align: left;
        border-bottom: 1px solid var(--line,rgba(255,255,255,.08));
    }

    .hd-fee-table td {
        padding: 12px;
        font-size: 13px;
        color: var(--t2,#c9d1d9);
        border-bottom: 1px solid var(--line,rgba(255,255,255,.06));
    }

    .hd-fee-table tr:last-child td {
        border-bottom: none;
    }

    .hd-fee-table tr:hover td {
        background: rgba(255,255,255,.02);
    }

/* ══ ALERT ══ */
.hd-alert {
    border-radius: 10px;
    padding: 13px 16px;
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: 12.5px;
    line-height: 1.65;
}

.hd-alert-yellow {
    background: rgba(245,158,11,.07);
    border: 1px solid rgba(245,158,11,.22);
    color: var(--t2,#c9d1d9);
}

    .hd-alert-yellow i.ai {
        color: #f59e0b;
        font-size: 15px;
        margin-top: 1px;
        flex-shrink: 0;
    }

.hd-alert-red {
    background: rgba(239,68,68,.07);
    border: 1px solid rgba(239,68,68,.2);
    color: var(--t2,#c9d1d9);
}

    .hd-alert-red i.ai {
        color: #ef4444;
        font-size: 15px;
        margin-top: 1px;
        flex-shrink: 0;
    }

.hd-alert-green {
    background: rgba(16,185,129,.07);
    border: 1px solid rgba(16,185,129,.2);
    color: var(--t2,#c9d1d9);
}

    .hd-alert-green i.ai {
        color: #10b981;
        font-size: 15px;
        margin-top: 1px;
        flex-shrink: 0;
    }

.hd-alert strong {
    color: var(--t1,#f0f6fc);
}

.hd-alert-blue {
    background: rgba(37,99,235,.07);
    border: 1px solid rgba(37,99,235,.2);
    color: var(--t2,#c9d1d9);
}

    .hd-alert-blue i.ai {
        color: #60a5fa;
        font-size: 15px;
        margin-top: 1px;
        flex-shrink: 0;
    }

/* ══ 2 COL ══ */
.hd-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.hd-2col-wide {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 16px;
}

/* ══ FAQ ══ */
.hd-faq {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.hd-faq-item {
    background: var(--bg2,#161b22);
    border: 1px solid var(--line,rgba(255,255,255,.08));
    border-radius: 9px;
    overflow: hidden;
}

.hd-faq-q {
    padding: 13px 15px;
    font-size: 13px;
    font-weight: 600;
    color: var(--t1,#f0f6fc);
    display: flex;
    align-items: center;
    gap: 9px;
    cursor: pointer;
    transition: background .15s;
    user-select: none;
}

    .hd-faq-q:hover {
        background: rgba(255,255,255,.03);
    }

    .hd-faq-q i.qi {
        color: #34d399;
        font-size: 12px;
        flex-shrink: 0;
    }

    .hd-faq-q i.arr {
        margin-left: auto;
        font-size: 10px;
        color: var(--t3,#8b949e);
        transition: transform .2s;
    }

    .hd-faq-q.open i.arr {
        transform: rotate(90deg);
    }

.hd-faq-a {
    font-size: 12.5px;
    color: var(--t2,#c9d1d9);
    line-height: 1.7;
    max-height: 0;
    overflow: hidden;
    transition: max-height .25s ease, padding .25s;
    padding: 0 15px;
}

    .hd-faq-a.open {
        max-height: 300px;
        padding: 0 15px 13px;
    }

/* ══ CTA ══ */
.hd-cta {
    background: linear-gradient(135deg, rgba(16,185,129,.1), rgba(5,150,105,.06));
    border: 1px solid rgba(16,185,129,.2);
    border-radius: 14px;
    padding: 28px;
    text-align: center;
    margin-top: 32px;
}

    .hd-cta h3 {
        font-size: 17px;
        font-weight: 700;
        color: var(--t1,#f0f6fc);
        margin: 0 0 8px;
    }

    .hd-cta p {
        font-size: 13px;
        color: var(--t3,#8b949e);
        margin: 0 0 16px;
    }

.hd-cta-btns {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ══ SELLER ONLY NOTICE ══ */
.hd-seller-notice {
    background: linear-gradient(135deg, rgba(139,92,246,.1), rgba(109,40,217,.06));
    border: 1px solid rgba(139,92,246,.25);
    border-radius: 12px;
    padding: 16px 18px;
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin-bottom: 24px;
}

.hd-seller-notice-ico {
    width: 44px;
    height: 44px;
    background: rgba(139,92,246,.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #c4b5fd;
    flex-shrink: 0;
}

.hd-seller-notice-title {
    font-size: 13.5px;
    font-weight: 700;
    color: #c4b5fd;
    margin-bottom: 5px;
}

.hd-seller-notice-desc {
    font-size: 12.5px;
    color: var(--t2,#c9d1d9);
    line-height: 1.65;
}

@media (max-width: 680px) {
    .hd-2col, .hd-2col-wide, .hd-form-2col {
        grid-template-columns: 1fr;
    }

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

    .hd-status-grid {
        grid-template-columns: 1fr;
    }

    .hd-timeline {
        flex-direction: column;
    }

    .hd-tl-item:not(:last-child)::after {
        display: none;
    }

    .hd-tl-item:not(:last-child) {
        border-right: none;
        border-bottom: 1px solid var(--line,rgba(255,255,255,.08));
    }

    .rtico-money, .rtico-bank, .rtico-crown, .rtico-chart, .rtico-shield, .rtico-rocket, .rtico-store {
        display: none;
    }
}
