

.vs-container {
    max-width: var(--vs-container);
    margin: 0 auto;
    padding: 0 clamp(20px, 5%, 60px);
    position: relative;
}

.vs-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: var(--vs-font-mono);
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--vs-sage);
    margin-bottom: 16px;
}

.vs-eyebrow::before,
.vs-eyebrow::after {
    content: '';
    width: 28px;
    height: 1px;
    background: var(--vs-sage);
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* ════════════════════════════════════════════════════════
           FORM CONTROLS (shared by both forms on this page)
        ════════════════════════════════════════════════════════ */
.vs-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.vs-field__label {
    font-family: var(--vs-font-mono);
    font-size: 11.5px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--vs-forest);
}

.vs-field__label span {
    color: var(--vs-gold);
}

.vs-field__input,
.vs-field__select,
.vs-field__textarea {
    width: 100%;
    font-family: var(--vs-font-body);
    font-size: 15px;
    color: var(--vs-charcoal);
    background: var(--vs-white);
    border: 1.5px solid rgba(27, 67, 50, 0.15);
    border-radius: var(--vs-radius-sm);
    padding: 14px 16px;
    transition: border-color var(--vs-dur-fast) var(--vs-ease),
        box-shadow var(--vs-dur-fast) var(--vs-ease);
}

.vs-field__input::placeholder,
.vs-field__textarea::placeholder {
    color: var(--vs-muted);
}

.vs-field__input:hover,
.vs-field__select:hover,
.vs-field__textarea:hover {
    border-color: rgba(27, 67, 50, 0.28);
}

.vs-field__input:focus,
.vs-field__select:focus,
.vs-field__textarea:focus {
    border-color: var(--vs-sage);
    box-shadow: 0 0 0 4px rgba(116, 198, 157, 0.16);
    outline: none;
}

.vs-field__select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231B4332' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 16px;
    padding-right: 44px;
    cursor: pointer;
}

.vs-field__textarea {
    resize: vertical;
    min-height: 130px;
    line-height: 1.6;
}

.vs-field__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.vs-field__hint {
    font-size: 12.5px;
    color: var(--vs-muted);
}

/* Submit button (shared) */
.vs-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 17px 38px;
    border-radius: 999px;
    background: var(--vs-forest);
    color: var(--vs-cream);
    font-family: var(--vs-font-mono);
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: background-color var(--vs-dur-base) var(--vs-ease),
        transform var(--vs-dur-fast) var(--vs-ease);
    align-self: flex-start;
}

.vs-submit:hover {
    background: var(--vs-emerald);
}

.vs-submit:active {
    transform: scale(0.98);
}

.vs-submit svg {
    width: 15px;
    height: 15px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    transition: transform var(--vs-dur-base) var(--vs-ease);
}

.vs-submit:hover svg {
    transform: translateX(4px);
}

/* Success confirmation state (shared) */
.vs-success {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 48px 8px;
}

.vs-success--visible {
    display: flex;
}

.vs-success__icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(116, 198, 157, 0.16);
    display: flex;
    align-items: center;
    justify-content: center;
}

.vs-success__icon svg {
    width: 26px;
    height: 26px;
    stroke: var(--vs-emerald);
    fill: none;
    stroke-width: 2.4;
}

.vs-success__title {
    font-family: var(--vs-font-display);
    font-size: 24px;
    font-style: italic;
    color: var(--vs-forest);
}

.vs-success__text {
    font-size: 15px;
    line-height: 1.6;
    color: var(--vs-muted);
    max-width: 420px;
}

/* ════════════════════════════════════════════════════════
           SECTION 0 — PAGE HERO
        ════════════════════════════════════════════════════════ */
.vs-hero {
    position: relative;
    padding: 90px 0 110px;
    overflow: hidden;
    isolation: isolate;
    color: var(--vs-cream);
    background:
        radial-gradient(ellipse 60% 55% at 50% 0%, rgba(45, 106, 79, 0.5) 0%, transparent 70%),
        radial-gradient(ellipse 50% 40% at 85% 75%, rgba(201, 165, 90, 0.10) 0%, transparent 55%),
        var(--vs-forest);
}

.vs-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.04;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 1;
}

.vs-hero__glow {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(90px);
    z-index: 0;
    width: clamp(320px, 42vw, 620px);
    height: clamp(320px, 42vw, 620px);
    top: -12%;
    left: -8%;
    background: radial-gradient(circle, rgba(116, 198, 157, 0.26) 0%, transparent 70%);
}

.vs-hero__inner {
    position: relative;
    z-index: 2;
}

.vs-back {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--vs-font-mono);
    font-size: 12px;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    color: var(--vs-sage-bright);
    margin-bottom: 40px;
    opacity: 0;
}

.vs-back svg {
    width: 14px;
    height: 14px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    transition: transform var(--vs-dur-fast) var(--vs-ease);
}

.vs-back:hover svg {
    transform: translateX(-3px);
}

.vs-hero .vs-eyebrow {
    color: var(--vs-sage-bright);
    opacity: 0;
}

.vs-hero .vs-eyebrow::before,
.vs-hero .vs-eyebrow::after {
    background: var(--vs-sage-bright);
}

.vs-hero__headline {
    font-family: var(--vs-font-display);
    font-size: clamp(38px, 6vw, 68px);
    font-weight: 300;
    line-height: 1.08;
    letter-spacing: -0.03em;
    color: var(--vs-cream);
    max-width: 780px;
    margin-bottom: 24px;
    opacity: 0;
}

.vs-hero__headline em {
    font-style: italic;
    color: var(--vs-sage-bright);
}

.vs-hero__subtitle {
    font-size: clamp(15px, 1.3vw, 18px);
    font-weight: 300;
    line-height: 1.65;
    color: rgba(248, 245, 236, 0.78);
    max-width: 560px;
    margin-bottom: 44px;
    opacity: 0;
}

.vs-hero__quicklinks {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    opacity: 0;
}

.vs-hero__quicklink {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 22px;
    border-radius: 999px;
    border: 1.5px solid rgba(248, 245, 236, 0.22);
    font-size: 13.5px;
    font-weight: 500;
    color: var(--vs-cream);
    transition: border-color var(--vs-dur-fast) var(--vs-ease),
        background-color var(--vs-dur-fast) var(--vs-ease);
}

.vs-hero__quicklink:hover {
    border-color: rgba(116, 198, 157, 0.6);
    background: rgba(116, 198, 157, 0.12);
}

/* ════════════════════════════════════════════════════════
           SECTION 1 — LEAD FORM (NEW CLIENT INQUIRY)
        ════════════════════════════════════════════════════════ */
.vs-lead {
    padding: clamp(70px, 9vw, 120px) 0;
    background: var(--vs-ivory);
}

.vs-lead__grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 48px;
    align-items: stretch;
}

.vs-lead__panel {
    background: var(--vs-white);
    border-radius: var(--vs-radius-lg);
    padding: clamp(32px, 4vw, 48px);
    border: 1px solid rgba(27, 67, 50, 0.08);
    box-shadow: 0 30px 70px rgba(27, 67, 50, 0.08);
}

.vs-lead__title {
    font-family: var(--vs-font-display);
    font-size: clamp(26px, 3vw, 34px);
    font-weight: 400;
    font-style: italic;
    color: var(--vs-forest);
    margin-bottom: 10px;
}

.vs-lead__desc {
    font-size: 15px;
    line-height: 1.6;
    color: var(--vs-muted);
    margin-bottom: 34px;
    max-width: 480px;
}

.vs-lead__form {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.vs-lead__checkgroup {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.vs-lead__check {
    position: relative;
}

.vs-lead__check input {
    position: absolute;
    opacity: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    margin: 0;
}

.vs-lead__check-label {
    display: inline-flex;
    align-items: center;
    padding: 10px 18px;
    border-radius: 999px;
    border: 1.5px solid rgba(27, 67, 50, 0.16);
    font-size: 13.5px;
    font-weight: 500;
    color: var(--vs-forest);
    transition: border-color var(--vs-dur-fast) var(--vs-ease),
        background-color var(--vs-dur-fast) var(--vs-ease),
        color var(--vs-dur-fast) var(--vs-ease);
}

.vs-lead__check input:checked+.vs-lead__check-label {
    background: var(--vs-forest);
    border-color: var(--vs-forest);
    color: var(--vs-cream);
}

.vs-lead__check input:focus-visible+.vs-lead__check-label {
    outline: 2px solid var(--vs-sage);
    outline-offset: 2px;
}

/* Info / media side panel */
.vs-lead__media {
    position: relative;
    border-radius: var(--vs-radius-lg);
    overflow: hidden;
    min-height: 360px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background: var(--vs-forest);
}

.vs-lead__media img {
    position: absolute;
    inset: 0;
    opacity: 0.55;
}

.vs-lead__media-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15, 43, 30, 0.15) 0%, rgba(15, 43, 30, 0.85) 90%);
}

.vs-lead__media-content {
    position: relative;
    z-index: 2;
    padding: 36px;
    color: var(--vs-cream);
}

.vs-lead__media-kicker {
    font-family: var(--vs-font-mono);
    font-size: 11px;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: var(--vs-sage-bright);
    margin-bottom: 12px;
}

.vs-lead__media-title {
    font-family: var(--vs-font-display);
    font-size: 24px;
    font-style: italic;
    line-height: 1.3;
    margin-bottom: 22px;
    max-width: 320px;
}

.vs-lead__contact-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 26px;
}

.vs-lead__contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: rgba(248, 245, 236, 0.88);
}

.vs-lead__contact-item svg {
    width: 17px;
    height: 17px;
    stroke: var(--vs-sage-bright);
    fill: none;
    stroke-width: 1.8;
    flex-shrink: 0;
}

.vs-lead__stats {
    display: flex;
    gap: 28px;
    padding-top: 22px;
    border-top: 1px solid rgba(248, 245, 236, 0.16);
}

.vs-lead__stat-val {
    font-family: var(--vs-font-display);
    font-size: 22px;
    font-weight: 500;
    color: var(--vs-cream);
}

.vs-lead__stat-lbl {
    font-family: var(--vs-font-mono);
    font-size: 9.5px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--vs-sage);
    margin-top: 4px;
}

/* ════════════════════════════════════════════════════════
           SECTION 2 — PARTNER WITH US (types)
        ════════════════════════════════════════════════════════ */
.vs-partner {
    padding: clamp(60px, 8vw, 100px) 0;
    background: var(--vs-cream);
    border-top: 1px solid rgba(27, 67, 50, 0.06);
    border-bottom: 1px solid rgba(27, 67, 50, 0.06);
}

.vs-partner__header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 56px;
}

.vs-partner__header .vs-eyebrow {
    justify-content: center;
}

.vs-partner__title {
    font-family: var(--vs-font-display);
    font-size: clamp(28px, 3.6vw, 44px);
    font-weight: 400;
    font-style: italic;
    color: var(--vs-forest);
    margin-bottom: 16px;
}

.vs-partner__desc {
    font-size: 16px;
    line-height: 1.65;
    color: var(--vs-muted);
}

.vs-partner__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.vs-partner__card {
    background: var(--vs-white);
    border-radius: var(--vs-radius-md);
    overflow: hidden;
    border: 1px solid rgba(27, 67, 50, 0.08);
    transition: transform var(--vs-dur-base) var(--vs-ease-out),
        box-shadow var(--vs-dur-base) var(--vs-ease);
}

.vs-partner__card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 46px rgba(27, 67, 50, 0.12);
}

.vs-partner__img-wrap {
    height: 190px;
    position: relative;
}

.vs-partner__badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(10, 31, 19, 0.82);
    backdrop-filter: blur(10px);
    color: var(--vs-sage-bright);
    padding: 6px 14px;
    border-radius: 999px;
    font-family: var(--vs-font-mono);
    font-size: 10px;
    letter-spacing: 1.4px;
    text-transform: uppercase;
}

.vs-partner__content {
    padding: 28px;
}

.vs-partner__card-title {
    font-family: var(--vs-font-display);
    font-size: 21px;
    color: var(--vs-forest);
    margin-bottom: 10px;
    letter-spacing: -0.01em;
}

.vs-partner__card-text {
    font-size: 14.5px;
    line-height: 1.65;
    color: var(--vs-muted);
    margin-bottom: 20px;
}

.vs-partner__card-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--vs-font-mono);
    font-size: 11.5px;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: var(--vs-forest);
}

.vs-partner__card-link svg {
    width: 13px;
    height: 13px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    transition: transform var(--vs-dur-fast) var(--vs-ease);
}

.vs-partner__card:hover .vs-partner__card-link svg {
    transform: translateX(4px);
}

/* ════════════════════════════════════════════════════════
           SECTION 3 — PARTNERSHIP PROCESS
        ════════════════════════════════════════════════════════ */
.vs-process {
    padding: clamp(70px, 9vw, 120px) 0;
    background: var(--vs-ivory);
}

.vs-process__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 56px;
}

.vs-process__title {
    font-family: var(--vs-font-display);
    font-size: clamp(28px, 3.5vw, 42px);
    font-weight: 400;
    font-style: italic;
    color: var(--vs-forest);
}

.vs-process__note {
    font-size: 14.5px;
    color: var(--vs-muted);
    max-width: 320px;
    line-height: 1.6;
}

.vs-process__track {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.vs-process__track::before {
    content: '';
    position: absolute;
    top: 48px;
    left: 48px;
    right: 48px;
    height: 1px;
    background: repeating-linear-gradient(90deg,
            rgba(27, 67, 50, 0.22) 0,
            rgba(27, 67, 50, 0.22) 8px,
            transparent 8px,
            transparent 16px);
    z-index: 0;
}

.vs-process__step {
    position: relative;
    z-index: 1;
    text-align: center;
}

.vs-process__img-wrap {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    margin: 0 auto 22px;
    overflow: hidden;
    border: 4px solid var(--vs-ivory);
    box-shadow: 0 0 0 1px rgba(27, 67, 50, 0.14), 0 14px 30px rgba(27, 67, 50, 0.14);
    position: relative;
}

.vs-process__num {
    position: absolute;
    bottom: -6px;
    right: -6px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--vs-forest);
    color: var(--vs-gold-bright);
    font-family: var(--vs-font-mono);
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid var(--vs-ivory);
}

.vs-process__step-title {
    font-family: var(--vs-font-display);
    font-size: 18px;
    color: var(--vs-forest);
    margin-bottom: 8px;
}

.vs-process__step-text {
    font-size: 13.5px;
    line-height: 1.6;
    color: var(--vs-muted);
    max-width: 220px;
    margin: 0 auto;
}

/* ════════════════════════════════════════════════════════
           SECTION 4 — SUPPORT / RAISE A TICKET (intro)
        ════════════════════════════════════════════════════════ */
.vs-support {
    padding: clamp(60px, 8vw, 100px) 0;
    background: var(--vs-forest);
    color: var(--vs-cream);
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.vs-support::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 55% 60% at 90% 10%, rgba(201, 165, 90, 0.12) 0%, transparent 60%),
        radial-gradient(ellipse 45% 50% at 5% 90%, rgba(116, 198, 157, 0.14) 0%, transparent 60%);
    z-index: 0;
}

.vs-support__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 56px;
    align-items: center;
}

.vs-support__media {
    border-radius: var(--vs-radius-lg);
    overflow: hidden;
    aspect-ratio: 4/3.4;
    border: 1px solid rgba(248, 245, 236, 0.14);
}

.vs-support .vs-eyebrow {
    color: var(--vs-sage-bright);
}

.vs-support .vs-eyebrow::before,
.vs-support .vs-eyebrow::after {
    background: var(--vs-sage-bright);
}

.vs-support__title {
    font-family: var(--vs-font-display);
    font-size: clamp(28px, 3.4vw, 42px);
    font-weight: 400;
    font-style: italic;
    color: var(--vs-cream);
    margin-bottom: 18px;
}

.vs-support__desc {
    font-size: 15.5px;
    line-height: 1.7;
    color: rgba(248, 245, 236, 0.78);
    margin-bottom: 34px;
    max-width: 520px;
}

.vs-support__stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 36px;
}

.vs-support__stat {
    padding: 20px;
    border-radius: var(--vs-radius-sm);
    background: rgba(248, 245, 236, 0.06);
    border: 1px solid rgba(248, 245, 236, 0.12);
}

.vs-support__stat-val {
    font-family: var(--vs-font-display);
    font-size: 26px;
    font-weight: 500;
    color: var(--vs-sage-bright);
}

.vs-support__stat-lbl {
    font-family: var(--vs-font-mono);
    font-size: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(248, 245, 236, 0.62);
    margin-top: 6px;
    line-height: 1.4;
}

.vs-support__cta {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 16px 34px;
    border-radius: 999px;
    background: var(--vs-cream);
    color: var(--vs-forest);
    font-family: var(--vs-font-mono);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: background-color var(--vs-dur-base) var(--vs-ease);
}

.vs-support__cta:hover {
    background: var(--vs-sage-bright);
}

.vs-support__cta svg {
    width: 14px;
    height: 14px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
}

/* ════════════════════════════════════════════════════════
           SECTION 5 — RAISE A TICKET FORM
        ════════════════════════════════════════════════════════ */
.vs-ticket {
    padding: clamp(70px, 9vw, 120px) 0;
    background: var(--vs-ivory);
}

.vs-ticket__header {
    text-align: center;
    max-width: 620px;
    margin: 0 auto 50px;
}

.vs-ticket__header .vs-eyebrow {
    justify-content: center;
}

.vs-ticket__title {
    font-family: var(--vs-font-display);
    font-size: clamp(28px, 3.5vw, 42px);
    font-weight: 400;
    font-style: italic;
    color: var(--vs-forest);
    margin-bottom: 14px;
}

.vs-ticket__desc {
    font-size: 15.5px;
    line-height: 1.65;
    color: var(--vs-muted);
}

.vs-ticket__panel {
    max-width: 820px;
    margin: 0 auto;
    background: var(--vs-white);
    border-radius: var(--vs-radius-lg);
    padding: clamp(32px, 4.5vw, 56px);
    border: 1px solid rgba(27, 67, 50, 0.08);
    box-shadow: 0 30px 70px rgba(27, 67, 50, 0.08);
}

.vs-ticket__form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.vs-ticket__priority {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.vs-ticket__priority-opt {
    position: relative;
}

.vs-ticket__priority-opt input {
    position: absolute;
    opacity: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    margin: 0;
}

.vs-ticket__priority-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 999px;
    border: 1.5px solid rgba(27, 67, 50, 0.16);
    font-size: 13.5px;
    font-weight: 500;
    color: var(--vs-forest);
    transition: border-color var(--vs-dur-fast) var(--vs-ease),
        background-color var(--vs-dur-fast) var(--vs-ease),
        color var(--vs-dur-fast) var(--vs-ease);
}

.vs-ticket__priority-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--vs-sage);
    flex-shrink: 0;
}

.vs-ticket__priority-opt[data-level="high"] .vs-ticket__priority-dot {
    background: var(--vs-gold);
}

.vs-ticket__priority-opt[data-level="urgent"] .vs-ticket__priority-dot {
    background: var(--vs-danger);
}

.vs-ticket__priority-opt input:checked+.vs-ticket__priority-label {
    background: var(--vs-forest);
    border-color: var(--vs-forest);
    color: var(--vs-cream);
}

.vs-ticket__priority-opt input:focus-visible+.vs-ticket__priority-label {
    outline: 2px solid var(--vs-sage);
    outline-offset: 2px;
}

.vs-ticket__upload {
    border: 1.5px dashed rgba(27, 67, 50, 0.24);
    border-radius: var(--vs-radius-sm);
    padding: 26px;
    text-align: center;
    cursor: pointer;
    transition: border-color var(--vs-dur-fast) var(--vs-ease),
        background-color var(--vs-dur-fast) var(--vs-ease);
    position: relative;
}

.vs-ticket__upload:hover {
    border-color: var(--vs-sage);
    background: rgba(116, 198, 157, 0.05);
}

.vs-ticket__upload input {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
}

.vs-ticket__upload svg {
    width: 26px;
    height: 26px;
    stroke: var(--vs-sage);
    fill: none;
    stroke-width: 1.7;
    margin-bottom: 10px;
}

.vs-ticket__upload-text {
    font-size: 13.5px;
    color: var(--vs-forest);
    font-weight: 500;
}

.vs-ticket__upload-hint {
    font-size: 12px;
    color: var(--vs-muted);
    margin-top: 4px;
}

.vs-ticket__filename {
    font-family: var(--vs-font-mono);
    font-size: 12px;
    color: var(--vs-emerald);
    margin-top: 8px;
    display: none;
}

.vs-ticket__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.vs-ticket__sla {
    font-size: 12.5px;
    color: var(--vs-muted);
    display: flex;
    align-items: center;
    gap: 8px;
}

.vs-ticket__sla svg {
    width: 15px;
    height: 15px;
    stroke: var(--vs-sage);
    fill: none;
    stroke-width: 1.8;
}


/* ════════════════════════════════════════════════════════
           RESPONSIVE — LARGE DESKTOP / 27" (≥1600px)
        ════════════════════════════════════════════════════════ */
@media (min-width: 1600px) {
    .vs-container {
        max-width: 1480px;
    }
}

/* ════════════════════════════════════════════════════════
           RESPONSIVE — TABLET / SMALL LAPTOP (≤1024px)
        ════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .vs-lead__grid {
        grid-template-columns: 1fr;
    }

    .vs-lead__media {
        min-height: 280px;
    }

    .vs-partner__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .vs-process__track {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 48px;
    }

    .vs-process__track::before {
        display: none;
    }

    .vs-support__grid {
        grid-template-columns: 1fr;
    }

    .vs-support__media {
        max-width: 480px;
        margin: 0 auto;
    }
}

/* ════════════════════════════════════════════════════════
           RESPONSIVE — MOBILE / SMALL TABLET (≤768px)
        ════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
    .vs-hero {
        padding: 70px 0 80px;
    }

    .vs-field__row {
        grid-template-columns: 1fr;
    }

    .vs-lead__panel {
        padding: 26px;
    }

    .vs-partner__grid {
        grid-template-columns: 1fr;
    }

    .vs-process__track {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .vs-support__stats {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .vs-ticket__panel {
        padding: 26px;
    }

    .vs-ticket__footer {
        flex-direction: column;
        align-items: stretch;
    }

    .vs-submit {
        width: 100%;
    }
}

/* ════════════════════════════════════════════════════════
           RESPONSIVE — MOBILE PHONES (≤480px)
        ════════════════════════════════════════════════════════ */
@media (max-width: 480px) {
    .vs-hero__headline {
        font-size: 32px;
    }

    .vs-lead__title,
    .vs-partner__title,
    .vs-process__title,
    .vs-support__title,
    .vs-ticket__title {
        font-size: 25px;
    }

    .vs-lead__checkgroup,
    .vs-ticket__priority {
        gap: 8px;
    }

    .vs-lead__check-label,
    .vs-ticket__priority-label {
        padding: 9px 14px;
        font-size: 12.5px;
    }
}