:root {
    --vtps-bg: #090b10;
    --vtps-panel: rgba(255, 255, 255, 0.075);
    --vtps-panel-strong: rgba(255, 255, 255, 0.12);
    --vtps-text: #f7f2e8;
    --vtps-muted: rgba(247, 242, 232, 0.72);
    --vtps-gold: #d8b25f;
    --vtps-gold-light: #ffe2a3;
    --vtps-line: rgba(255, 255, 255, 0.14);
    --vtps-shadow: 0 30px 90px rgba(0, 0, 0, 0.42);
}

.vtps-wrap {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at top left, rgba(216, 178, 95, 0.18), transparent 32rem),
        linear-gradient(135deg, #080a0f 0%, #10141d 48%, #17120c 100%);
    color: var(--vtps-text);
    padding: clamp(56px, 7vw, 110px) 18px;
    isolation: isolate;
}

.vtps-wrap * {
    box-sizing: border-box;
}

.vtps-container {
    width: min(1180px, 100%);
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.vtps-bg-glow {
    position: absolute;
    width: 380px;
    height: 380px;
    border-radius: 999px;
    filter: blur(34px);
    opacity: 0.45;
    z-index: 1;
    pointer-events: none;
}

.vtps-bg-glow-one {
    background: rgba(216, 178, 95, 0.24);
    top: 5%;
    right: -130px;
}

.vtps-bg-glow-two {
    background: rgba(255, 255, 255, 0.09);
    bottom: 10%;
    left: -160px;
}

.vtps-hero {
    text-align: center;
    padding: clamp(34px, 6vw, 76px);
    border: 1px solid var(--vtps-line);
    border-radius: 34px;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.10), rgba(255,255,255,0.035)),
        rgba(255,255,255,0.04);
    box-shadow: var(--vtps-shadow);
    backdrop-filter: blur(18px);
}

.vtps-pill,
.vtps-section-head span,
.vtps-band span,
.vtps-contact span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--vtps-gold-light);
    border: 1px solid rgba(216, 178, 95, 0.35);
    background: rgba(216, 178, 95, 0.10);
    border-radius: 999px;
    padding: 8px 14px;
    font-size: 13px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.vtps-hero h1 {
    max-width: 980px;
    margin: 22px auto 18px;
    font-size: clamp(38px, 6vw, 76px);
    line-height: 0.95;
    letter-spacing: -0.06em;
    font-weight: 800;
    color: var(--vtps-text);
}

.vtps-lead {
    max-width: 760px;
    margin: 0 auto;
    color: var(--vtps-muted);
    font-size: clamp(17px, 2vw, 21px);
    line-height: 1.65;
}

.vtps-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 32px;
}

.vtps-btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-height: 52px;
    padding: 0 22px;
    border-radius: 999px;
    text-decoration: none !important;
    font-weight: 700;
    transition: transform .22s ease, border-color .22s ease, background .22s ease;
}

.vtps-btn:hover {
    transform: translateY(-2px);
}

.vtps-btn-primary {
    color: #15100a !important;
    background: linear-gradient(135deg, var(--vtps-gold-light), var(--vtps-gold));
    box-shadow: 0 18px 46px rgba(216, 178, 95, 0.22);
}

.vtps-btn-ghost {
    color: var(--vtps-text) !important;
    border: 1px solid var(--vtps-line);
    background: rgba(255,255,255,0.06);
}

.vtps-proof {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 38px;
}

.vtps-proof div {
    padding: 18px;
    border: 1px solid var(--vtps-line);
    border-radius: 22px;
    background: rgba(255,255,255,0.045);
}

.vtps-proof strong {
    display: block;
    font-size: 24px;
    color: var(--vtps-gold-light);
}

.vtps-proof span {
    color: var(--vtps-muted);
    font-size: 14px;
}

.vtps-section {
    padding-top: clamp(58px, 7vw, 96px);
}

.vtps-section-head {
    max-width: 720px;
    margin-bottom: 28px;
}

.vtps-section-head h2,
.vtps-band h2,
.vtps-contact h2 {
    margin: 16px 0 10px;
    color: var(--vtps-text);
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.02;
    letter-spacing: -0.04em;
}

.vtps-section-head p,
.vtps-band p,
.vtps-contact p {
    color: var(--vtps-muted);
    line-height: 1.7;
    font-size: 17px;
}

.vtps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.vtps-card {
    min-height: 230px;
    padding: 24px;
    border: 1px solid var(--vtps-line);
    border-radius: 26px;
    background: linear-gradient(180deg, var(--vtps-panel), rgba(255,255,255,0.035));
    box-shadow: 0 20px 50px rgba(0,0,0,0.20);
    transition: transform .22s ease, background .22s ease, border-color .22s ease;
}

.vtps-card:hover {
    transform: translateY(-5px);
    border-color: rgba(216, 178, 95, 0.48);
    background: linear-gradient(180deg, var(--vtps-panel-strong), rgba(255,255,255,0.045));
}

.vtps-card-number {
    color: var(--vtps-gold-light);
    font-weight: 800;
    font-size: 13px;
    letter-spacing: 0.14em;
}

.vtps-card h3 {
    margin: 16px 0 10px;
    color: var(--vtps-text);
    font-size: 21px;
    line-height: 1.18;
}

.vtps-card p {
    margin: 0;
    color: var(--vtps-muted);
    line-height: 1.6;
}

.vtps-band {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 28px;
    align-items: center;
    margin-top: clamp(58px, 7vw, 96px);
    padding: clamp(30px, 5vw, 52px);
    border: 1px solid rgba(216, 178, 95, 0.28);
    border-radius: 34px;
    background:
        linear-gradient(135deg, rgba(216, 178, 95, 0.16), rgba(255,255,255,0.055)),
        rgba(255,255,255,0.045);
}

.vtps-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.vtps-steps div {
    padding: 24px;
    border-radius: 26px;
    border: 1px solid var(--vtps-line);
    background: rgba(255,255,255,0.055);
}

.vtps-steps strong {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 999px;
    color: #15100a;
    background: linear-gradient(135deg, var(--vtps-gold-light), var(--vtps-gold));
}

.vtps-steps h3 {
    color: var(--vtps-text);
    margin: 18px 0 8px;
    font-size: 21px;
}

.vtps-steps p {
    color: var(--vtps-muted);
    margin: 0;
    line-height: 1.6;
}

.vtps-contact {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 22px;
    align-items: center;
    margin-top: clamp(58px, 7vw, 96px);
    padding: clamp(30px, 5vw, 54px);
    border: 1px solid var(--vtps-line);
    border-radius: 34px;
    background: #f7f2e8;
    color: #111318;
}

.vtps-contact h2 {
    color: #111318;
}

.vtps-contact p {
    color: rgba(17, 19, 24, 0.72);
}

.vtps-contact span {
    color: #6b4a12;
    border-color: rgba(107, 74, 18, 0.22);
    background: rgba(216, 178, 95, 0.20);
}

.vtps-contact-box {
    display: grid;
    gap: 12px;
    padding: 22px;
    border-radius: 26px;
    background: #111318;
}

.vtps-contact-box a {
    color: var(--vtps-gold-light) !important;
    text-decoration: none !important;
    font-weight: 800;
    font-size: 19px;
}

.vtps-contact-box small {
    color: rgba(247, 242, 232, 0.62);
    line-height: 1.55;
}

@media (max-width: 980px) {
    .vtps-grid,
    .vtps-steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .vtps-band,
    .vtps-contact {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .vtps-wrap {
        padding: 28px 12px;
    }

    .vtps-hero {
        padding: 28px 18px;
        border-radius: 24px;
    }

    .vtps-hero h1 {
        font-size: 38px;
    }

    .vtps-grid,
    .vtps-steps,
    .vtps-proof {
        grid-template-columns: 1fr;
    }

    .vtps-card,
    .vtps-band,
    .vtps-contact {
        border-radius: 22px;
    }

    .vtps-btn {
        width: 100%;
    }
}
