/* MotorLabx — premium UI (palette: #1b1d1b, #75e462, #44cd3a, neutrals) */

:root {
    --vsp-ink: #121512;
    --vsp-ink-soft: #3d453d;
    --vsp-nav: #1b1d1b;
    --vsp-accent: #75e462;
    --vsp-accent-bright: #8ef078;
    --vsp-accent-border: #44cd3a;
    --vsp-accent-soft: #e8f8e4;
    --vsp-surface: #ffffff;
    --vsp-surface-muted: #f4f6f4;
    --vsp-surface-warm: #f1f3f1;
    --vsp-line: rgba(27, 29, 27, 0.08);
    --vsp-line-strong: rgba(27, 29, 27, 0.12);
    --vsp-ease-out: cubic-bezier(0.22, 1, 0.36, 1);
    --vsp-shadow-xs: 0 1px 2px rgba(27, 29, 27, 0.04);
    --vsp-shadow-sm: 0 4px 16px rgba(27, 29, 27, 0.06);
    --vsp-shadow-md: 0 12px 40px rgba(27, 29, 27, 0.08);
    --vsp-shadow-lg: 0 24px 64px rgba(27, 29, 27, 0.12);
    --vsp-shadow-hero: 0 32px 80px rgba(0, 0, 0, 0.45);
}

html {
    scroll-behavior: smooth;
}

body {
    font-feature-settings: "kern" 1, "liga" 1;
    text-rendering: optimizeLegibility;
    color: var(--vsp-ink);
}

/* Page — calm, expensive neutral (no busy mesh) */
body.vsp-body {
    background-color: var(--vsp-surface-muted);
    background-image: radial-gradient(900px 420px at 50% -8%, rgba(117, 228, 98, 0.06), transparent 55%);
}

/* Section surfaces — solid, editorial (no frosted full-bleed) */
.vsp-band {
    position: relative;
}

section.vsp-band-light.bg-white {
    background: var(--vsp-surface) !important;
    border-block: 1px solid var(--vsp-line);
}

section.vsp-band-muted.bg-gray-50 {
    background: #f7f7f7 !important;
    /* border-block: 1px solid var(--vsp-line); */
}

/* CTA — confident brand gradient */
section.gradient-bg.vsp-band-cta,
section.vsp-band-cta.gradient-bg {
    position: relative;
    overflow: hidden;
    background: linear-gradient(
        125deg,
        #c8f2b8 0%,
        #a8e888 22%,
        #8fdc72 42%,
        #7bd85f 58%,
        #9ee67a 78%,
        #b8f0a8 100%
    ) !important;
    border-block: 1px solid rgba(255, 255, 255, 0.35);
}

section.vsp-band-cta::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.25) 0%, transparent 38%);
}

section.vsp-band-cta > * {
    position: relative;
    z-index: 1;
}

/* FAQ — single clean panel */
.vsp-faq-stack {
    padding: 0;
    border-radius: 1rem;
    background: var(--vsp-surface);
    border: 1px solid var(--vsp-line-strong);
    box-shadow: var(--vsp-shadow-sm);
    overflow: hidden;
}

.vsp-faq-stack > div {
    border-bottom: 1px solid var(--vsp-line) !important;
    padding: 1rem 1.25rem 1rem !important;
    margin: 0 !important;
    border-radius: 0 !important;
    transition: background-color 0.2s ease;
}

.vsp-faq-stack > div:last-child {
    border-bottom: none !important;
}

.vsp-faq-stack > div:hover {
    background-color: var(--vsp-accent-soft);
}

/* Brand strip */
section.vsp-band-muted .wrapper-brands {
    margin-top: 0;
    padding: 1.5rem 1.25rem;
    /* border-radius: 1rem; */
    /* background: var(--vsp-surface); */
    /* border: 1px solid var(--vsp-line-strong); */
    /* box-shadow: var(--vsp-shadow-xs); */
}

/* Nav — solid, premium bar */
.vsp-nav {
    background: #121412 !important;
    border-bottom: 1px solid rgba(117, 228, 98, 0.22);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.04) inset, 0 8px 32px rgba(0, 0, 0, 0.2);
    transition: box-shadow 0.3s var(--vsp-ease-out), border-color 0.3s ease;
}

.vsp-nav.is-scrolled {
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.05) inset, 0 12px 40px rgba(0, 0, 0, 0.35);
    border-bottom-color: rgba(117, 228, 98, 0.35);
}

#mobileMenu.vsp-glass-nav-mobile {
    background: #161816 !important;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.35);
}

.vsp-nav-link {
    position: relative;
    padding-bottom: 0.2rem;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.88) !important;
    margin: 0 23px;
}

.vsp-nav-link:hover {
    color: var(--vsp-accent) !important;
}

.vsp-nav a.vsp-nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: var(--vsp-accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s var(--vsp-ease-out);
}

.vsp-nav a.vsp-nav-link:hover::after,
.vsp-nav a.vsp-nav-link:focus-visible::after {
    transform: scaleX(1);
}

.vsp-nav-pill {
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.05);
    font-size: 0.8125rem;
    font-weight: 600;
    transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.vsp-nav-pill:hover {
    border-color: rgba(117, 228, 98, 0.45);
    background: rgba(117, 228, 98, 0.1);
    color: #fff !important;
}

.vsp-logo-link img {
    transition: transform 0.35s var(--vsp-ease-out), opacity 0.2s ease;
}

.vsp-logo-link:hover img {
    transform: translateY(-1px);
    opacity: 0.95;
}

/* Hero */
.vsp-hero {
    position: relative;
    overflow: hidden;
    background: radial-gradient(ellipse 100% 80% at 50% -20%, rgba(117, 228, 98, 0.12), transparent 50%),
        linear-gradient(180deg, #1b1d1b 0%, #141614 100%);
}

.vsp-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(ellipse 70% 60% at 50% 30%, black, transparent);
    -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 30%, black, transparent);
    pointer-events: none;
}

.vsp-hero::after {
    content: "";
    position: absolute;
    top: -20%;
    right: -15%;
    width: 55%;
    height: 70%;
    background: radial-gradient(circle, rgba(117, 228, 98, 0.08), transparent 65%);
    pointer-events: none;
}

.vsp-hero .max-w-6xl {
    position: relative;
    z-index: 1;
}

.vsp-hero-headline {
    font-weight: 800;
    letter-spacing: -0.035em;
    line-height: 1.08;
    color: #f4f6f4;
}

.vsp-hero-headline .imgreenspan {
    display: inline;
    background: linear-gradient(100deg, #b8f5a4 0%, #75e462 40%, #9ef078 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}

@supports not (background-clip: text) {
    .vsp-hero-headline .imgreenspan {
        color: var(--vsp-accent);
        -webkit-text-fill-color: inherit;
    }
}

.vsp-hero-lead {
    color: rgba(244, 246, 244, 0.82);
    font-weight: 400;
    max-width: 36rem;
}

/* Hero form — one crisp “product” card */
.vsp-hero-card,
.vsp-hero-check-form {
    position: relative;
    background: transparent;
    padding: 0;
    border: none;
    box-shadow: none;
    transition: transform 0.4s var(--vsp-ease-out);
}

.vsp-hero-check-form:hover {
    transform: translateY(-4px);
}

.vsp-hero-check-form:focus-within {
    transform: translateY(-2px);
}

.vsp-hero-form-shell {
    position: relative;
    padding: 1.5rem 1.5rem 1.35rem;
    border-radius: 1.125rem;
    background: var(--vsp-surface);
    border: 1px solid var(--vsp-line-strong);
    box-shadow: var(--vsp-shadow-hero);
    transition: box-shadow 0.4s var(--vsp-ease-out), border-color 0.25s ease;
}

.vsp-hero-check-form:focus-within .vsp-hero-form-shell {
    border-color: rgba(68, 205, 58, 0.45);
    box-shadow: var(--vsp-shadow-hero), 0 0 0 3px rgba(117, 228, 98, 0.18);
}

.vsp-hero-form-shell::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    box-shadow: inset 0 1px 0 #fff;
    pointer-events: none;
}

.vsp-hero-form-head {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    margin-bottom: 1.125rem;
}

.vsp-hero-form-icon {
    flex-shrink: 0;
    width: 2.875rem;
    height: 2.875rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.875rem;
    background: var(--vsp-accent-soft);
    border: 1px solid rgba(68, 205, 58, 0.25);
    color: var(--vsp-ink);
    font-size: 1.05rem;
}

.vsp-hero-form-title {
    margin: 0;
    font-size: 1.0625rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.25;
    color: var(--vsp-ink);
}

@media (min-width: 640px) {
    .vsp-hero-form-title {
        font-size: 1.125rem;
    }
}

.vsp-sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.vsp-hero-input-row {
    display: flex;
    flex-direction: column;
    border-radius: 0.75rem;
    background: var(--vsp-surface-muted);
    border: 1px solid var(--vsp-line-strong);
    overflow: hidden;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

@media (min-width: 640px) {
    .vsp-hero-input-row {
        flex-direction: row;
        align-items: stretch;
    }
}

.vsp-hero-check-form:focus-within .vsp-hero-input-row {
    border-color: rgba(68, 205, 58, 0.5);
    box-shadow: 0 0 0 3px rgba(117, 228, 98, 0.15);
}

.vsp-hero-input {
    width: 100%;
    flex: 1 1 auto;
    min-width: 0;
    padding: 1rem 1.15rem;
    border: none;
    background: transparent;
    font-size: 1.0625rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--vsp-ink);
    outline: none;
}

.vsp-hero-input::placeholder {
    color: #8a928a;
    font-weight: 600;
}

.vsp-hero-input:focus {
    box-shadow: none;
}

.vsp-reg-feedback {
    margin: 0.55rem 0 0;
    min-height: 1.15rem;
    font-size: 0.78rem;
    line-height: 1.35;
    font-weight: 600;
    color: #647064;
}

.vsp-reg-feedback.is-error {
    color: #9f1239;
}

.vsp-reg-feedback.is-success {
    color: #1e7c26;
}

[data-reg-input].vsp-reg-invalid {
    border-color: rgba(190, 24, 93, 0.72) !important;
    box-shadow: 0 0 0 3px rgba(244, 114, 182, 0.2) !important;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 241, 246, 0.82)) !important;
}

[data-reg-input].vsp-reg-valid {
    border-color: rgba(68, 205, 58, 0.56) !important;
    box-shadow: 0 0 0 3px rgba(117, 228, 98, 0.16) !important;
}

.vsp-hero-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 1rem 1.35rem;
    border-radius: 0;
    cursor: pointer;
    font-size: 0.9375rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}

@media (min-width: 640px) {
    .vsp-hero-submit {
        width: auto;
        min-width: 12rem;
        border-left: 1px solid var(--vsp-line-strong);
    }
}

.vsp-hero-hint {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin: 0.9rem 0 0;
    font-size: 0.8125rem;
    line-height: 1.5;
    color: var(--vsp-ink-soft);
}

.vsp-hero-hint i {
    margin-top: 0.12rem;
    color: var(--vsp-accent-border);
}

.vsp-hero-trust {
    padding: 0.625rem 1.125rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
}

.vsp-hero-stars {
    gap: 0.12rem;
    color: #f0c14d;
}

.vsp-hero-stars i {
    font-size: 0.9rem;
}

.vsp-hero-trust-text {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    font-size: 0.8125rem;
}

/* Section titles */
.vsp-section-head {
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--vsp-ink);
}

/* Buttons */
.vsp-btn-primary {
    transition: transform 0.2s var(--vsp-ease-out), box-shadow 0.25s ease, filter 0.2s ease;
}

.vsp-btn-primary:hover {
    transform: translateY(-1px);
    filter: brightness(1.03);
    box-shadow: 0 10px 28px rgba(68, 205, 58, 0.35);
}

.vsp-btn-primary:active {
    transform: translateY(0);
}

/* Feature cards */
.vsp-card {
    border-radius: 1rem !important;
    background: var(--vsp-surface) !important;
    border: 1px solid var(--vsp-line) !important;
    box-shadow: var(--vsp-shadow-xs);
    transition: transform 0.35s var(--vsp-ease-out), box-shadow 0.35s ease, border-color 0.25s ease;
}

.vsp-card:hover {
    transform: translateY(-6px);
    border-color: rgba(117, 228, 98, 0.35) !important;
    box-shadow: var(--vsp-shadow-md), 0 0 0 1px rgba(117, 228, 98, 0.08);
}

.vsp-card i[class^="fa"] {
    transition: transform 0.3s var(--vsp-ease-out);
}

.vsp-card:hover i[class^="fa"] {
    transform: scale(1.05);
}

/* How it works */
.vsp-step-wrap {
    padding: 2rem 1.5rem;
    border-radius: 1rem;
    background: var(--vsp-surface);
    border: 1px solid var(--vsp-line);
    box-shadow: var(--vsp-shadow-xs);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.25s ease;
}

.vsp-step-wrap:hover {
    border-color: rgba(117, 228, 98, 0.3);
    box-shadow: var(--vsp-shadow-sm);
    transform: translateY(-4px);
}

.vsp-step-badge {
    box-shadow: 0 6px 20px rgba(117, 228, 98, 0.35);
    transition: transform 0.3s var(--vsp-ease-out), box-shadow 0.3s ease;
}

.vsp-step-wrap:hover .vsp-step-badge {
    transform: scale(1.06);
    box-shadow: 0 10px 28px rgba(117, 228, 98, 0.45);
}

/* CTA inner */
.vsp-cta-inner {
    border-radius: 1.125rem !important;
    background: var(--vsp-surface) !important;
    border: 1px solid var(--vsp-line-strong) !important;
    box-shadow: var(--vsp-shadow-lg);
    transition: transform 0.35s var(--vsp-ease-out), box-shadow 0.35s ease;
    width: 67%;
}

.vsp-cta-inner:hover {
    transform: translateY(-4px);
    box-shadow: 0 32px 72px rgba(27, 29, 27, 0.14);
}

/* FAQ trigger */
.faq-trigger {
    cursor: pointer;
    border-radius: 0.5rem;
    padding: 0.5rem 0.35rem;
    margin: -0.5rem -0.35rem;
    transition: background-color 0.2s ease;
}

.faq-trigger:hover,
.faq-trigger:focus-visible {
    background-color: var(--vsp-accent-soft);
    outline: none;
}

/* Scroll reveal */
.vsp-reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s var(--vsp-ease-out), transform 0.6s var(--vsp-ease-out);
}

.vsp-reveal.vsp-visible {
    opacity: 1;
    transform: none;
}

/* Footer */
footer.vsp-footer-glass {
    position: relative;
    background: #0a0c0a !important;
    border-top: 3px solid var(--vsp-accent);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
    padding: 40px 0;
}

footer.vsp-footer-glass::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(ellipse 80% 40% at 50% 0%, rgba(117, 228, 98, 0.08), transparent 60%);
}

footer.vsp-footer-glass > div {
    position: relative;
    z-index: 1;
}

footer a {
    transition: color 0.2s ease, transform 0.2s ease;
}

footer a:hover {
    transform: translateX(3px);
    color: #fff !important;
}

/* Hero image */
.vsp-hero-illustration {
    /* border-radius: 1.125rem; */
    /* border: 1px solid rgba(255, 255, 255, 0.1); */
    /* box-shadow: var(--vsp-shadow-hero); */
    transition: transform 0.45s var(--vsp-ease-out), box-shadow 0.45s ease;
}

.vsp-hero-illustration:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow: 0 40px 96px rgba(0, 0, 0, 0.5);
}

/* Checkout */
#pageloader {
    display: none;
}

.lead-form .form-button button {
    transition: transform 0.2s var(--vsp-ease-out), box-shadow 0.25s ease, filter 0.2s ease;
}

.lead-form .form-button button:hover {
    transform: translateY(-2px);
    filter: brightness(1.04);
    box-shadow: 0 14px 36px rgba(68, 205, 58, 0.25);
}

.custom-box {
    border-radius: 1rem !important;
    background: var(--vsp-surface) !important;
    border: 1px solid var(--vsp-line-strong) !important;
    box-shadow: var(--vsp-shadow-sm);
    transition: box-shadow 0.3s ease, border-color 0.25s ease;
}

.custom-box:hover {
    border-color: rgba(117, 228, 98, 0.3) !important;
    box-shadow: var(--vsp-shadow-md);
}

.lead-form.footer-lead-form {
    background: var(--vsp-surface) !important;
    border: 1px solid var(--vsp-line-strong) !important;
    border-radius: 1.125rem !important;
    box-shadow: var(--vsp-shadow-md);
}

/* Inputs (non-hero) */
input[type="text"],
input[type="email"] {
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

input[type="text"]:focus,
input[type="email"]:focus {
    box-shadow: 0 0 0 3px rgba(117, 228, 98, 0.22);
}

.prose.content-area p {
    line-height: 1.75;
    color: var(--vsp-ink-soft);
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .vsp-reveal {
        opacity: 1;
        transform: none;
    }

    .vsp-hero-check-form:hover,
    .vsp-hero-check-form:focus-within {
        transform: none !important;
    }
}

/* Testimonial marquee */
.vsp-testimonial-marquee {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 0.5rem 0;
}

.vsp-testimonial-marquee::before,
.vsp-testimonial-marquee::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: min(9vw, 96px);
    z-index: 3;
    pointer-events: none;
}

.vsp-testimonial-marquee::before {
    left: 0;
    background: linear-gradient(90deg, #fff 6%, rgba(255, 255, 255, 0));
}

.vsp-testimonial-marquee::after {
    right: 0;
    background: linear-gradient(270deg, #fff 6%, rgba(255, 255, 255, 0));
}

.vsp-testimonial-track {
    display: flex;
    width: max-content;
    gap: 1.1rem;
    will-change: transform;
    animation: vsp-marquee-ltr 52s linear infinite;
}

.vsp-testimonial-group {
    display: flex;
    gap: 1.1rem;
    flex-shrink: 0;
}

.vsp-testimonial-card {
    width: min(82vw, 360px);
    min-height: 228px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: linear-gradient(155deg, rgba(255, 255, 255, 0.98), rgba(245, 250, 245, 0.96));
    border: 1px solid rgba(27, 29, 27, 0.08);
    border-radius: 1rem;
    box-shadow: 0 10px 24px rgba(27, 29, 27, 0.07);
    padding: 1.2rem 1.2rem 1.1rem;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.2s ease;
}

.vsp-testimonial-card:hover {
    transform: translateY(-4px);
    border-color: rgba(117, 228, 98, 0.45);
    box-shadow: 0 18px 34px rgba(27, 29, 27, 0.11);
}

.vsp-testimonial-stars {
    display: flex;
    gap: 0.2rem;
    color: #f4be2c;
    margin-bottom: 0.7rem;
}

.vsp-testimonial-card p {
    margin: 0;
    color: #3c473c;
    line-height: 1.62;
    font-size: 0.95rem;
}

.vsp-testimonial-meta {
    margin-top: 1rem;
    display: flex;
    align-items: center;
    gap: 0.7rem;
}

.vsp-testimonial-avatar {
    width: 2.2rem;
    height: 2.2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: #4b5563;
    color: #fff;
    font-weight: 700;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.vsp-testimonial-meta strong {
    display: block;
    font-size: 0.94rem;
    color: #151915;
    line-height: 1.2;
}

.vsp-testimonial-meta small {
    display: block;
    margin-top: 0.12rem;
    color: #6b7280;
    font-size: 0.81rem;
}

@keyframes vsp-marquee-ltr {
    from {
        transform: translateX(-50%);
    }
    to {
        transform: translateX(0);
    }
}

@media (min-width: 900px) {
    .vsp-testimonial-card {
        width: 350px;
    }
}

@media (max-width: 640px) {
    .vsp-testimonial-track {
        animation-duration: 58s;
    }

    .vsp-testimonial-card {
        width: min(88vw, 320px);
        min-height: 220px;
        padding: 1.05rem 1rem 1rem;
    }
}

/* Service showcase section */
.vsp-service-showcase {
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.vsp-service-showcase::before,
.vsp-service-showcase::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    pointer-events: none;
    z-index: -1;
}

.vsp-service-showcase::before {
    width: 520px;
    height: 520px;
    top: -260px;
    right: -180px;
    background: radial-gradient(circle, rgba(117, 228, 98, 0.22) 0%, rgba(117, 228, 98, 0) 68%);
}

.vsp-service-showcase::after {
    width: 460px;
    height: 460px;
    bottom: -260px;
    left: -160px;
    background: radial-gradient(circle, rgba(68, 205, 58, 0.16) 0%, rgba(68, 205, 58, 0) 72%);
}

.vsp-service-sub {
    color: #4f5a4f;
    font-size: 1.05rem;
    line-height: 1.65;
}

.vsp-service-grid {
    display: grid;
    gap: 1.25rem;
}

@media (min-width: 900px) {
    .vsp-service-grid {
        grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
        gap: 1.5rem;
    }
}

.vsp-service-lead {
    border-radius: 1.2rem;
    padding: 1.45rem 1.35rem;
    background:
        linear-gradient(145deg, rgba(241, 252, 237, 0.88), rgba(218, 246, 210, 0.62)),
        rgba(255, 255, 255, 0.52);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(68, 205, 58, 0.24);
    box-shadow: 0 18px 38px rgba(27, 29, 27, 0.1), 0 1px 0 rgba(255, 255, 255, 0.8) inset;
}

.vsp-service-kicker {
    margin: 0 0 0.55rem;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #2d8a22;
}

.vsp-service-lead h3 {
    margin: 0;
    font-size: clamp(1.4rem, 2.6vw, 1.9rem);
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #151915;
}

.vsp-service-lead > p {
    margin: 0.8rem 0 0;
    color: #3d463d;
    line-height: 1.65;
}

.vsp-service-mini {
    margin-top: 1rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.vsp-service-mini span {
    display: inline-flex;
    align-items: center;
    gap: 0.42rem;
    padding: 0.42rem 0.72rem;
    border-radius: 999px;
    font-size: 0.76rem;
    font-weight: 700;
    color: #1d281d;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(68, 205, 58, 0.22);
}

.vsp-service-mini i {
    color: #2da123;
}

.vsp-service-points {
    display: grid;
    gap: 0.9rem;
}

.vsp-service-point {
    display: flex;
    gap: 0.9rem;
    align-items: flex-start;
    border-radius: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.86);
    box-shadow: 0 14px 28px rgba(27, 29, 27, 0.08), 0 1px 0 rgba(255, 255, 255, 0.9) inset;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.vsp-service-point:hover {
    transform: translateY(-2px);
    border-color: rgba(117, 228, 98, 0.45);
    box-shadow: 0 18px 34px rgba(27, 29, 27, 0.11), 0 1px 0 rgba(255, 255, 255, 0.9) inset;
}

.vsp-service-point > i {
    width: 2.1rem;
    height: 2.1rem;
    flex-shrink: 0;
    border-radius: 0.65rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #2a9820;
    background: rgba(117, 228, 98, 0.2);
    border: 1px solid rgba(68, 205, 58, 0.28);
}

.vsp-service-point h4 {
    margin: 0;
    font-size: 1rem;
    line-height: 1.3;
    color: #121512;
}

.vsp-service-point p {
    margin: 0.38rem 0 0;
    font-size: 0.9rem;
    line-height: 1.55;
    color: #4a534a;
}

.vsp-service-stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.7rem;
}

@media (min-width: 760px) {
    .vsp-service-stats {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 0.85rem;
    }
}

.vsp-service-stat {
    border-radius: 0.85rem;
    padding: 0.85rem 0.9rem;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.88);
    box-shadow: 0 8px 18px rgba(27, 29, 27, 0.07);
    text-align: center;
}

.vsp-service-stat strong {
    display: block;
    font-size: 1.05rem;
    color: #121512;
}

.vsp-service-stat span {
    display: block;
    margin-top: 0.2rem;
    font-size: 0.76rem;
    color: #6b756b;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.vsp-service-cta-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
}

.vsp-service-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border-radius: 999px;
    padding: 0.75rem 1.15rem;
    font-size: 0.84rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    border: 1px solid transparent;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

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

.vsp-service-btn-primary {
    color: #101510;
    background: linear-gradient(180deg, #95f07f 0%, #75e462 38%, #5fd54a 100%);
    border-color: #3db82e;
    box-shadow: 0 5px 0 #3a9e30, 0 12px 26px rgba(68, 205, 58, 0.3);
}

.vsp-service-btn-primary:hover {
    box-shadow: 0 6px 0 #3a9e30, 0 16px 30px rgba(68, 205, 58, 0.35);
}

.vsp-service-btn-ghost {
    color: #1d271d;
    background: rgba(255, 255, 255, 0.75);
    border-color: rgba(68, 205, 58, 0.25);
    box-shadow: 0 8px 18px rgba(27, 29, 27, 0.08);
}

.vsp-service-btn-ghost:hover {
    border-color: rgba(68, 205, 58, 0.45);
    background: rgba(255, 255, 255, 0.9);
}

@media (max-width: 768px) 
    {
            .vsp-cta-inner
                {
                    width:100%;
                }
    }
