/* ========================================
    SCROLL PROGRESS
======================================== */
#scroll-progress {
    position: fixed;
    top: 0; left: 0;
    height: 3px;
    width: 0%;
    background: linear-gradient(90deg, #170006, #c0392b);
    z-index: 9999;
    transition: width 0.1s linear;
}

/* ========================================
    STEPS SECTION
======================================== */
.steps-section {
    background: #fff;
    padding: 62px 0 58px;
    border-bottom: 1px solid #efefef;
}
.steps-label {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.8px;
    color: #c0392b;
    margin-bottom: 12px;
    text-align: center;
}
.steps-title {
    font-size: 40px;
    font-weight: 800;
    color: #170006;
    text-align: center;
    margin-bottom: 10px;
}
.steps-sub {
    text-align: center;
    font-size: 15px;
    color: #777;
    margin-bottom: 50px;
    line-height: 1.7;
}
.steps-row {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
}
.step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    min-width: 180px;
    max-width: 260px;
    padding: 0 18px;
    position: relative;
}
/* connector line between steps */
.step-item:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 30px;
    right: -10px;
    width: 20px;
    height: 2px;
    background: linear-gradient(90deg, #e0d6d8, #c0392b);
}
.step-num {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #fdb714;
    color: #000;
    font-size: 22px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    flex-shrink: 0;
    box-shadow: 0 6px 20px rgba(23,0,6,0.25);
    transition: transform 0.3s, box-shadow 0.3s;
}
.step-item:hover .step-num {
    transform: scale(1.1);
    box-shadow: 0 10px 28px rgba(23,0,6,0.3);
}
.step-text {
    font-size: 17.5px;
    font-weight: 700;
    color: #170006;
    margin-bottom: 6px;
}
.step-desc {
    font-size: 15px;
    color: #888;
    line-height: 1.6;
}

/* ========================================
    VERIFICATION CARDS SECTION
======================================== */
.verify-section {
    background: #f4f5f7;
    padding: 65px 0 80px;
}
.verify-section-header {
    text-align: center;
    margin-bottom: 48px;
}
.verify-section-header h2 {
    font-size: 30px;
    font-weight: 800;
    color: #170006;
    margin-bottom: 10px;
}
.verify-section-header p {
    font-size: 15px;
    color: #777;
    line-height: 1.7;
    max-width: 580px;
    margin: 0 auto;
}

/* ========================================
    CARD
======================================== */
.vc-card {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 2px 18px rgba(0,0,0,0.065);
    padding: 36px 34px 32px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}
.vc-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, #170006, #c0392b);
    border-radius: 18px 18px 0 0;
}
.vc-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 42px rgba(0,0,0,0.11);
}

/* Logo box */
.vc-logo-box {
    width: 80px;
    height: 80px;
    border-radius: 16px;
    background: #f8f8f8;
    border: 1.5px solid #ececec;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    flex-shrink: 0;
    overflow: hidden;
}
.vc-logo-box img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}
.vc-logo-box.text-logo {
    font-size: 11px;
    font-weight: 800;
    color: #170006;
    text-align: center;
    line-height: 1.3;
    letter-spacing: 0.3px;
}

/* ATC badge */
.vc-atc {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: #f0faf4;
    color: #1a7a3c;
    font-size: 10.5px;
    font-weight: 700;
    padding: 3px 11px;
    border-radius: 20px;
    border: 1px solid #b8e6c8;
    margin-bottom: 12px;
    letter-spacing: 0.3px;
}

.vc-card h3 {
    font-size: 19px;
    font-weight: 800;
    color: #170006;
    margin-bottom: 8px;
    line-height: 1.25;
}
.vc-card p {
    font-size: 13.5px;
    color: #888;
    line-height: 1.7;
    margin-bottom: 24px;
    flex: 1;
}

/* Verify button */
.vc-btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: #170006;
    color: #fff;
    padding: 13px 26px;
    border-radius: 10px;
    font-size: 13.5px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    width: 100%;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(23,0,6,0.2);
}
.vc-btn:hover {
    background: #c0392b;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(192,57,43,0.4);
}
.vc-btn svg { transition: transform 0.25s; flex-shrink: 0; }
.vc-btn:hover svg { transform: translateX(4px); }

/* Official site link */
.vc-site-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin-top: 12px;
    font-size: 12px;
    color: #aaa;
    text-decoration: none;
    transition: color 0.2s;
}
.vc-site-link:hover { color: #c0392b; }

/* ========================================
    TRUST STATEMENT SECTION
======================================== */
.trust-section {
    background: #170006;
    padding: 70px 0;
    position: relative;
    overflow: hidden;
}
.trust-section::before {
    content: '';
    position: absolute;
    right: -80px; top: -80px;
    width: 320px; height: 320px;
    border-radius: 50%;
    background: rgba(255,255,255,0.03);
}
.trust-section::after {
    content: '';
    position: absolute;
    left: -50px; bottom: -60px;
    width: 220px; height: 220px;
    border-radius: 50%;
    background: rgba(255,255,255,0.025);
}
.trust-inner {
    position: relative;
    z-index: 1;
}
.trust-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    border: 1.5px solid rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}
.trust-section h2 {
    text-align: center;
    color: #fff;
    font-size: 30px;
    font-weight: 800;
    margin-bottom: 14px;
}
.trust-section .trust-lead {
    text-align: center;
    color: rgba(255,255,255,0.65);
    font-size: 15.5px;
    line-height: 1.75;
    max-width: 680px;
    margin: 0 auto 48px;
}
.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}
.trust-item {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 14px;
    padding: 28px 24px;
    text-align: center;
    transition: background 0.3s;
}
.trust-item:hover { background: rgba(255,255,255,0.08); }
.trust-item-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(192,57,43,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
}
.trust-item h4 {
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 7px;
}
.trust-item p {
    color: rgba(255,255,255,0.55);
    font-size: 13px;
    line-height: 1.65;
    margin: 0;
}

/* Footer */
.footer { position: relative; z-index: 1; margin-top: 0; }
.footer-cta { padding: 40px 0 35px; }

@media (max-width: 991px) {
    .trust-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 767px) {
    .step-item::after { display: none; }
    .steps-row { gap: 30px; }
    .trust-grid { grid-template-columns: 1fr; max-width: 400px; }
    .vc-card { padding: 28px 22px 24px; }
    .trust-section h2 { font-size: 24px; }
}