/* =========================================================================
   Vertex Softlab — Main Stylesheet
   Palette: deep navy + warm off-white + vibrant orange accent
   Fonts:   Fraunces (display) + Manrope (body)
   ========================================================================= */

:root {
    --c-ink:        #0B1220;
    --c-ink-2:      #1B2433;
    --c-ink-soft:   #4A5568;
    --c-paper:      #FAFAF7;
    --c-paper-2:    #F2EFE7;
    --c-line:       #E5E1D6;
    --c-line-2:     #D6D2C5;
    --c-accent:     #FF6B35;
    --c-accent-2:   #FF8B5A;
    --c-success:    #2EAD66;
    --c-white:      #FFFFFF;

    --r-sm: 8px;
    --r-md: 14px;
    --r-lg: 22px;
    --r-pill: 999px;

    --shadow-1: 0 1px 2px rgba(11,18,32,.06), 0 8px 24px -10px rgba(11,18,32,.10);
    --shadow-2: 0 2px 4px rgba(11,18,32,.08), 0 24px 48px -12px rgba(11,18,32,.18);

    --f-display: 'Fraunces', Georgia, 'Times New Roman', serif;
    --f-body:    'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* RESET / BASE */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    margin: 0;
    font-family: var(--f-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--c-ink);
    background: var(--c-paper);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
img, svg { max-width: 100%; display: block; }
a { color: var(--c-ink); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--c-accent); }
::selection { background: var(--c-accent); color: #fff; }

/* CONTAINER */
.vsl-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* TYPE */
.vsl-h1 {
    font-family: var(--f-display);
    font-weight: 500;
    font-size: clamp(2.4rem, 5.2vw, 4.2rem);
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin: 0 0 24px;
    color: var(--c-ink);
}
.vsl-h1 em {
    font-style: italic;
    color: var(--c-accent);
    font-variation-settings: "opsz" 144;
}
.vsl-h2 {
    font-family: var(--f-display);
    font-weight: 500;
    font-size: clamp(1.8rem, 3.2vw, 2.6rem);
    line-height: 1.12;
    letter-spacing: -0.015em;
    margin: 0 0 18px;
}
h3, h4 { font-family: var(--f-body); font-weight: 700; letter-spacing: -0.01em; margin: 0 0 10px; }
p { margin: 0 0 16px; color: var(--c-ink-soft); }
.vsl-lede {
    font-size: clamp(1.05rem, 1.6vw, 1.2rem);
    line-height: 1.55;
    color: var(--c-ink-2);
    max-width: 640px;
    margin-bottom: 32px;
}
.vsl-eyebrow {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--c-accent);
    margin-bottom: 18px;
}
.vsl-eyebrow-light { color: var(--c-accent-2); }
.vsl-section-sub { max-width: 620px; color: var(--c-ink-soft); }

/* BUTTONS */
.vsl-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 22px;
    border-radius: var(--r-pill);
    font-family: var(--f-body);
    font-weight: 600;
    font-size: 0.95rem;
    line-height: 1;
    cursor: pointer;
    border: 1.5px solid transparent;
    transition: transform .15s ease, background-color .2s ease, color .2s ease, border-color .2s ease, box-shadow .2s ease;
    text-decoration: none;
    white-space: nowrap;
}
.vsl-btn:hover { transform: translateY(-1px); }
.vsl-btn:active { transform: translateY(0); }
.vsl-btn-primary {
    background: var(--c-ink);
    color: var(--c-paper);
    border-color: var(--c-ink);
}
.vsl-btn-primary:hover {
    background: var(--c-accent);
    border-color: var(--c-accent);
    color: #fff;
}
.vsl-btn-ghost {
    background: transparent;
    color: var(--c-ink);
    border-color: var(--c-line-2);
}
.vsl-btn-ghost:hover {
    background: var(--c-ink);
    color: var(--c-paper);
    border-color: var(--c-ink);
}
.vsl-btn-block { width: 100%; }

/* HEADER */
.vsl-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(250, 250, 247, 0.85);
    backdrop-filter: saturate(180%) blur(16px);
    -webkit-backdrop-filter: saturate(180%) blur(16px);
    border-bottom: 1px solid var(--c-line);
}
.vsl-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}
.vsl-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--f-display);
    font-weight: 600;
    font-size: 1.25rem;
    letter-spacing: -0.01em;
    color: var(--c-ink);
}
.vsl-brand-mark {
    width: 36px; height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--c-ink);
    color: var(--c-paper);
    border-radius: 10px;
    font-family: var(--f-display);
    font-weight: 700;
    font-size: 1.1rem;
    position: relative;
}
.vsl-brand-mark::after {
    content: "";
    position: absolute;
    inset: auto -3px -3px auto;
    width: 10px; height: 10px;
    background: var(--c-accent);
    border-radius: 2px;
}
.vsl-brand-name { line-height: 1; }
.vsl-brand-accent { color: var(--c-accent); }
.vsl-brand-light, .vsl-brand-light .vsl-brand-name { color: var(--c-paper); }
.vsl-brand-light .vsl-brand-mark { background: var(--c-paper); color: var(--c-ink); }

.vsl-nav { display: flex; align-items: center; gap: 32px; }
.vsl-nav-list {
    display: flex;
    align-items: center;
    gap: 28px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.vsl-nav-list a {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--c-ink-2);
    position: relative;
    padding: 6px 0;
}
.vsl-nav-list a::after {
    content: "";
    position: absolute;
    left: 0; right: 100%;
    bottom: 0;
    height: 2px;
    background: var(--c-accent);
    transition: right .25s ease;
}
.vsl-nav-list a:hover::after, .vsl-nav-list .current-menu-item a::after { right: 0; }
.vsl-nav-cta { padding: 10px 18px; font-size: 0.88rem; }

.vsl-menu-toggle {
    display: none;
    background: transparent;
    border: 0;
    width: 40px; height: 40px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
}
.vsl-menu-toggle span {
    display: block;
    width: 22px; height: 2px;
    background: var(--c-ink);
    transition: transform .25s ease, opacity .2s ease;
}

/* MAIN */
.vsl-main { min-height: 60vh; }

/* HERO */
.vsl-hero {
    padding: 80px 0 60px;
    background:
        radial-gradient(900px 500px at 85% -10%, rgba(255,107,53,0.12), transparent 60%),
        radial-gradient(700px 400px at -10% 110%, rgba(11,18,32,0.06), transparent 60%),
        var(--c-paper);
    border-bottom: 1px solid var(--c-line);
}
.vsl-hero-inner {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 64px;
    align-items: center;
}
.vsl-hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }
.vsl-hero-meta {
    display: flex;
    gap: 36px;
    list-style: none;
    margin: 0;
    padding: 24px 0 0;
    border-top: 1px dashed var(--c-line-2);
    flex-wrap: wrap;
}
.vsl-hero-meta li { display: flex; flex-direction: column; }
.vsl-hero-meta strong {
    font-family: var(--f-display);
    font-weight: 600;
    font-size: 1.85rem;
    color: var(--c-ink);
    line-height: 1;
}
.vsl-hero-meta span { font-size: 0.85rem; color: var(--c-ink-soft); margin-top: 4px; }

.vsl-hero-card {
    background: var(--c-ink);
    color: var(--c-paper);
    border-radius: var(--r-lg);
    padding: 0;
    overflow: hidden;
    box-shadow: var(--shadow-2);
    transform: rotate(-1.5deg);
    transition: transform .4s ease;
}
.vsl-hero-card:hover { transform: rotate(0); }
.vsl-hero-card-row {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 18px;
    background: rgba(255,255,255,0.04);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    font-size: 0.78rem;
    color: rgba(250,250,247,0.55);
    font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
}
.vsl-dot { width: 11px; height: 11px; border-radius: 50%; display: inline-block; }
.vsl-dot-red    { background: #ff5f57; }
.vsl-dot-amber  { background: #febc2e; }
.vsl-dot-green  { background: #28c840; }
.vsl-hero-card-title { margin-left: 10px; }
.vsl-hero-code {
    margin: 0;
    padding: 28px 26px 32px;
    font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
    font-size: 0.92rem;
    line-height: 1.7;
    white-space: pre-wrap;
    word-break: break-word;
}
.c-muted  { color: rgba(250,250,247,0.45); }
.c-accent { color: var(--c-accent-2); }
.c-ok     { color: var(--c-success); }
.c-hi     { color: var(--c-paper); font-weight: 700; }

/* GENERIC SECTION */
.vsl-section { padding: 84px 0; }
.vsl-section-head { max-width: 720px; margin: 0 0 48px; }
.vsl-section-head-light h2,
.vsl-section-head-light p,
.vsl-section-head-light .vsl-section-sub { color: var(--c-paper); }

/* GRIDS */
.vsl-grid { display: grid; gap: 24px; }
.vsl-grid-3 { grid-template-columns: repeat(3, 1fr); }

/* FEATURE CARDS */
.vsl-feature {
    padding: 32px 28px;
    background: var(--c-white);
    border: 1px solid var(--c-line);
    border-radius: var(--r-md);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
    position: relative;
    overflow: hidden;
}
.vsl-feature:hover { transform: translateY(-4px); box-shadow: var(--shadow-1); border-color: var(--c-line-2); }
.vsl-feature-num {
    display: inline-block;
    font-family: var(--f-display);
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--c-accent);
    margin-bottom: 12px;
    letter-spacing: 0.04em;
}
.vsl-feature h3 { font-size: 1.2rem; }
.vsl-feature p  { margin: 0; }

/* BAND (dark section) */
.vsl-band {
    background: var(--c-ink);
    color: var(--c-paper);
    padding: 84px 0;
    position: relative;
    overflow: hidden;
}
.vsl-band::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(700px 400px at 90% 20%, rgba(255,107,53,0.18), transparent 60%),
        radial-gradient(500px 300px at 10% 90%, rgba(255,107,53,0.08), transparent 60%);
    pointer-events: none;
}
.vsl-band > .vsl-container { position: relative; }
.vsl-band h2, .vsl-band h3, .vsl-band h4 { color: var(--c-paper); }
.vsl-band p { color: rgba(250,250,247,0.7); }

.vsl-band-soft {
    background: var(--c-paper-2);
    color: var(--c-ink);
}
.vsl-band-soft::before { display: none; }
.vsl-band-soft h2, .vsl-band-soft h3, .vsl-band-soft h4 { color: var(--c-ink); }
.vsl-band-soft p { color: var(--c-ink-soft); }

/* PROCESS */
.vsl-process {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    counter-reset: step;
}
.vsl-process-step {
    padding: 28px 0 0;
    border-top: 1px solid rgba(250,250,247,0.18);
    position: relative;
}
.vsl-process-step span {
    font-family: var(--f-display);
    font-weight: 600;
    font-size: 1.6rem;
    color: var(--c-accent-2);
    display: block;
    margin-bottom: 12px;
}
.vsl-process-step h4 { font-size: 1.15rem; }
.vsl-process-step p { margin: 0; }

/* CTA */
.vsl-cta {
    padding: 56px;
    background: var(--c-ink);
    color: var(--c-paper);
    border-radius: var(--r-lg);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
    position: relative;
    overflow: hidden;
}
.vsl-cta::before {
    content: "";
    position: absolute;
    width: 360px; height: 360px;
    right: -120px; bottom: -180px;
    background: radial-gradient(circle, rgba(255,107,53,0.35) 0%, transparent 60%);
    pointer-events: none;
}
.vsl-cta h2, .vsl-cta p { color: var(--c-paper); }
.vsl-cta p { margin: 0; opacity: .82; max-width: 460px; }
.vsl-cta-actions { display: flex; gap: 12px; flex-wrap: wrap; position: relative; }
.vsl-cta .vsl-btn-primary {
    background: var(--c-accent);
    border-color: var(--c-accent);
    color: var(--c-ink);
}
.vsl-cta .vsl-btn-primary:hover {
    background: var(--c-paper);
    border-color: var(--c-paper);
    color: var(--c-ink);
}
.vsl-cta .vsl-btn-ghost {
    color: var(--c-paper);
    border-color: rgba(250,250,247,0.4);
}
.vsl-cta .vsl-btn-ghost:hover {
    background: var(--c-paper);
    color: var(--c-ink);
    border-color: var(--c-paper);
}

/* PAGE HEAD (Services / Careers / Job) */
.vsl-pagehead {
    padding: 80px 0 56px;
    background:
        radial-gradient(700px 360px at 80% 0%, rgba(255,107,53,0.10), transparent 60%),
        var(--c-paper);
    border-bottom: 1px solid var(--c-line);
}
.vsl-pagehead-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 8px; }
.vsl-back {
    display: inline-block;
    font-size: 0.9rem;
    color: var(--c-ink-soft);
    margin-bottom: 16px;
}
.vsl-back:hover { color: var(--c-accent); }

/* SERVICES GRID */
.vsl-services {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
.vsl-service-card {
    padding: 36px 32px;
    background: var(--c-white);
    border: 1px solid var(--c-line);
    border-radius: var(--r-md);
    transition: transform .25s ease, box-shadow .25s ease;
    position: relative;
}
.vsl-service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-1); }
.vsl-service-card header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
}
.vsl-service-tag {
    display: inline-block;
    padding: 5px 12px;
    background: var(--c-paper-2);
    color: var(--c-ink-2);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-radius: var(--r-pill);
}
.vsl-service-num {
    font-family: var(--f-display);
    color: var(--c-accent);
    font-size: 1.05rem;
}
.vsl-service-card h3 {
    font-family: var(--f-display);
    font-weight: 500;
    font-size: 1.55rem;
    letter-spacing: -0.015em;
    margin-bottom: 12px;
}
.vsl-service-card ul {
    list-style: none;
    margin: 18px 0 0;
    padding: 18px 0 0;
    border-top: 1px dashed var(--c-line-2);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 16px;
}
.vsl-service-card ul li {
    font-size: 0.92rem;
    color: var(--c-ink-2);
    position: relative;
    padding-left: 18px;
}
.vsl-service-card ul li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--c-accent);
    font-weight: 700;
}

/* ENGAGEMENT CARDS */
.vsl-engage {
    padding: 32px 28px;
    background: var(--c-white);
    border: 1px solid var(--c-line);
    border-radius: var(--r-md);
    position: relative;
}
.vsl-engage h4 { font-size: 1.2rem; margin-bottom: 8px; }
.vsl-engage p { margin: 0; }
.vsl-engage-featured {
    background: var(--c-ink);
    border-color: var(--c-ink);
    color: var(--c-paper);
}
.vsl-engage-featured h4 { color: var(--c-paper); }
.vsl-engage-featured p { color: rgba(250,250,247,0.7); }
.vsl-engage-badge {
    position: absolute;
    top: -12px;
    left: 24px;
    background: var(--c-accent);
    color: var(--c-ink);
    font-weight: 700;
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: var(--r-pill);
}

/* PERKS */
.vsl-perk {
    padding: 28px;
    background: var(--c-white);
    border: 1px solid var(--c-line);
    border-radius: var(--r-md);
}
.vsl-perk h4 { font-size: 1.1rem; }

/* REFERRAL BANNER */
.vsl-referral {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 22px 28px;
    margin: 0 0 28px;
    background: linear-gradient(135deg, rgba(255,107,53,0.10), rgba(255,107,53,0.04));
    border: 1px solid rgba(255,107,53,0.30);
    border-radius: var(--r-md);
}
.vsl-referral-icon {
    flex-shrink: 0;
    width: 44px; height: 44px;
    border-radius: 50%;
    background: var(--c-accent);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 700;
}
.vsl-referral-copy h4 {
    font-size: 1.05rem;
    margin: 0 0 4px;
    color: var(--c-ink);
}
.vsl-referral-copy p {
    margin: 0;
    font-size: 0.93rem;
    color: var(--c-ink-2);
}
.vsl-referral-copy a {
    color: var(--c-accent);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* JOB BONUS BADGE */
.vsl-job-card { position: relative; }
.vsl-job-bonus {
    position: absolute;
    top: -10px;
    right: 24px;
    padding: 5px 12px;
    background: var(--c-accent);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: var(--r-pill);
    box-shadow: 0 4px 12px -4px rgba(255,107,53,0.5);
    pointer-events: none;
}
@media (max-width: 720px) {
    .vsl-referral { flex-direction: column; align-items: flex-start; text-align: left; }
    .vsl-job-bonus { top: -10px; right: 16px; font-size: 0.65rem; padding: 4px 10px; }
}

/* JOBS LIST */
.vsl-jobs {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.vsl-job-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 32px;
    padding: 28px 32px;
    background: var(--c-white);
    border: 1px solid var(--c-line);
    border-radius: var(--r-md);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.vsl-job-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-1);
    border-color: var(--c-ink);
}
.vsl-job-dept {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--c-accent);
    margin-bottom: 8px;
}
.vsl-job-title {
    font-family: var(--f-display);
    font-weight: 500;
    font-size: 1.5rem;
    letter-spacing: -0.015em;
    color: var(--c-ink);
    margin: 0 0 12px;
}
.vsl-job-card:hover .vsl-job-title { color: var(--c-accent); }
.vsl-job-meta {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px 22px;
    font-size: 0.92rem;
    color: var(--c-ink-soft);
}
.vsl-job-meta li strong { color: var(--c-ink); font-weight: 600; margin-right: 4px; }
.vsl-job-actions { display: flex; gap: 10px; flex-wrap: wrap; flex-shrink: 0; }

/* EMPTY */
.vsl-empty {
    padding: 60px 32px;
    text-align: center;
    background: var(--c-white);
    border: 1px dashed var(--c-line-2);
    border-radius: var(--r-md);
}
.vsl-empty h3 { font-size: 1.3rem; margin-bottom: 8px; }
.vsl-empty p  { margin: 0; }

/* SINGLE JOB */
.vsl-job-meta-lg {
    margin: 24px 0 32px;
    gap: 16px 48px;
}
.vsl-job-meta-lg li {
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: 0.95rem;
}
.vsl-job-meta-lg span {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--c-ink-soft);
    font-weight: 600;
}
.vsl-job-meta-lg strong { font-size: 1rem; color: var(--c-ink); font-weight: 600; }

.vsl-job-detail-grid {
    display: grid;
    grid-template-columns: 1.8fr 1fr;
    gap: 48px;
    align-items: start;
}
.vsl-prose h2 {
    font-family: var(--f-display);
    font-weight: 500;
    font-size: 1.6rem;
    margin: 32px 0 12px;
}
.vsl-prose p { color: var(--c-ink-2); }
.vsl-bullets {
    list-style: none;
    margin: 0 0 16px;
    padding: 0;
}
.vsl-bullets li {
    padding-left: 28px;
    position: relative;
    margin-bottom: 10px;
    color: var(--c-ink-2);
}
.vsl-bullets li::before {
    content: "✓";
    position: absolute;
    left: 0; top: 0;
    width: 20px; height: 20px;
    background: var(--c-accent);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 700;
}

.vsl-job-side {
    position: sticky;
    top: 96px;
}
.vsl-job-side-card {
    background: var(--c-ink);
    color: var(--c-paper);
    padding: 28px;
    border-radius: var(--r-md);
}
.vsl-job-side-card h4 { color: var(--c-paper); font-size: 1.15rem; }
.vsl-job-side-card p  { color: rgba(250,250,247,0.7); }
.vsl-job-side-card .vsl-btn-primary {
    background: var(--c-accent);
    border-color: var(--c-accent);
    color: var(--c-ink);
    margin-bottom: 10px;
}
.vsl-job-side-card .vsl-btn-primary:hover {
    background: var(--c-paper);
    color: var(--c-ink);
    border-color: var(--c-paper);
}
.vsl-job-side-card .vsl-btn-ghost {
    color: var(--c-paper);
    border-color: rgba(250,250,247,0.4);
}
.vsl-job-side-card .vsl-btn-ghost:hover {
    background: var(--c-paper);
    color: var(--c-ink);
}

/* FOOTER */
.vsl-footer {
    background: var(--c-ink);
    color: rgba(250,250,247,0.7);
    padding: 72px 0 0;
}
.vsl-footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1.3fr 1.3fr;
    gap: 48px;
    padding-bottom: 56px;
}
.vsl-footer h4 {
    color: var(--c-paper);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    margin-bottom: 18px;
}
.vsl-footer ul { list-style: none; padding: 0; margin: 0; }
.vsl-footer ul li { margin-bottom: 10px; font-size: 0.95rem; }
.vsl-footer a { color: rgba(250,250,247,0.75); }
.vsl-footer a:hover { color: var(--c-accent); }
.vsl-footer-tag { max-width: 320px; }
.vsl-footer-link-accent { color: var(--c-accent) !important; font-weight: 600; }
.vsl-footer-bottom {
    border-top: 1px solid rgba(250,250,247,0.10);
    padding: 22px 0;
    font-size: 0.85rem;
}
.vsl-footer-bottom .vsl-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    color: rgba(250,250,247,0.5);
}

/* RESPONSIVE */
@media (max-width: 980px) {
    .vsl-hero-inner { grid-template-columns: 1fr; gap: 48px; }
    .vsl-hero-card { transform: rotate(0); }
    .vsl-grid-3 { grid-template-columns: repeat(2, 1fr); }
    .vsl-services { grid-template-columns: 1fr; }
    .vsl-process { grid-template-columns: repeat(2, 1fr); }
    .vsl-job-detail-grid { grid-template-columns: 1fr; }
    .vsl-job-side { position: static; }
    .vsl-footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
    .vsl-section { padding: 64px 0; }
    .vsl-band { padding: 64px 0; }
    .vsl-hero { padding: 56px 0 48px; }
    .vsl-pagehead { padding: 56px 0 40px; }
    .vsl-cta { padding: 36px 28px; }

    .vsl-menu-toggle { display: flex; }
    .vsl-nav {
        position: fixed;
        top: 72px; left: 0; right: 0;
        background: var(--c-paper);
        border-bottom: 1px solid var(--c-line);
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 16px 24px 24px;
        transform: translateY(-110%);
        transition: transform .3s ease;
        box-shadow: var(--shadow-1);
    }
    .vsl-nav.is-open { transform: translateY(0); }
    .vsl-nav-list { flex-direction: column; align-items: stretch; gap: 4px; }
    .vsl-nav-list li { border-bottom: 1px solid var(--c-line); }
    .vsl-nav-list a { display: block; padding: 14px 0; font-size: 1rem; }
    .vsl-nav-cta { margin-top: 14px; text-align: center; }

    .vsl-grid-3 { grid-template-columns: 1fr; }
    .vsl-process { grid-template-columns: 1fr; }
    .vsl-footer-grid { grid-template-columns: 1fr; gap: 32px; padding-bottom: 40px; }
    .vsl-footer-bottom .vsl-container { justify-content: flex-start; }

    .vsl-job-card { flex-direction: column; align-items: flex-start; gap: 20px; }
    .vsl-job-actions { width: 100%; }
    .vsl-job-actions .vsl-btn { flex: 1; }
    .vsl-service-card ul { grid-template-columns: 1fr; }
    .vsl-cta { flex-direction: column; align-items: flex-start; }
}
