@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Space+Grotesk:wght@700;800&display=swap');

:root {
    --vw-primary: #a3e635; /* Accent color */
    --vw-secondary: #0a0a0a; /* Surface tone, dark for dev dock variant */
    --vw-background: #0a0a0a; /* Main background */
    --vw-text: #f0fdf4; /* Light text for dark background */
    --vw-text-light: #d4d4d8;
    --vw-text-dark: #1f2937;
    --vw-border: #27272a;
    --vw-surface: #18181b; /* Card background, slightly lighter than main background */
    --vw-focus-ring: #a3e635;
    --vw-error-red: #ef4444;
    --vw-success-green: #22c55e;

    --vw-radius-small: 6px;
    --vw-radius-medium: 6px;
    --vw-radius-large: 6px;

    --vw-font-heading: 'Space Grotesk', sans-serif;
    --vw-font-body: 'Inter', sans-serif;
    --vw-font-mono: 'JetBrains Mono', monospace;

    --vw-space-xs: 8px;
    --vw-space-sm: 16px;
    --vw-space-md: 24px;
    --vw-space-lg: 32px;
    --vw-space-xl: 48px;
    --vw-space-xxl: 64px;
    --vw-space-xxxl: 96px;
    --vw-space-xxxxl: 128px;
}

/* Base Styles & Reset */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 100%;
}

body {
    font-family: var(--vw-font-body);
    line-height: 1.7;
    color: var(--vw-text);
    background-color: var(--vw-background);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

::selection {
    background-color: var(--vw-primary);
    color: var(--vw-text-dark);
}

/* Typography Scale */
h1,
.vw-h1 {
    font-family: var(--vw-font-heading);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.1;
    color: var(--vw-text);
}

h2,
.vw-h2 {
    font-family: var(--vw-font-heading);
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 700;
    letter-spacing: -0.015em;
    line-height: 1.15;
    color: var(--vw-text);
}

h3,
.vw-h3 {
    font-family: var(--vw-font-heading);
    font-size: clamp(1.5rem, 2.5vw, 1.875rem);
    font-weight: 600;
    letter-spacing: -0.01em;
    line-height: 1.3;
    color: var(--vw-text);
}

h4 {
    font-family: var(--vw-font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.4;
    color: var(--vw-text);
}

p {
    margin-bottom: var(--vw-space-sm);
    max-width: 65ch;
}

a {
    color: var(--vw-primary);
    text-decoration: none;
    transition: color 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

a:hover {
    color: var(--vw-text-light);
}

strong {
    font-weight: 700;
}

.vw-subheading {
    font-size: 1.25rem;
    color: var(--vw-text-light);
    max-width: 70ch;
    margin: var(--vw-space-sm) auto var(--vw-space-lg) auto;
}

.vw-text-center {
    text-align: center;
}

/* Layout Utilities */
.vw-container {
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--vw-space-md);
    padding-right: var(--vw-space-md);
}

.vw-section {
    padding-top: var(--vw-space-xxxl);
    padding-bottom: var(--vw-space-xxxl);
    position: relative;
}

@media (max-width: 768px) {
    .vw-section {
        padding-top: var(--vw-space-xxl);
        padding-bottom: var(--vw-space-xxl);
    }
}

.vw-section-alt {
    background-color: var(--vw-surface);
    padding-top: var(--vw-space-xxxl);
    padding-bottom: var(--vw-space-xxxl);
    position: relative;
}

@media (max-width: 768px) {
    .vw-section-alt {
        padding-top: var(--vw-space-xxl);
        padding-bottom: var(--vw-space-xxl);
    }
}

.vw-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--vw-space-lg);
}

.vw-grid-2 {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.vw-grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.vw-grid-4 {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

@media (min-width: 768px) {
    .vw-grid-2 {
        grid-template-columns: repeat(2, 1fr);
    }

    .vw-grid-3 {
        grid-template-columns: repeat(3, 1fr);
    }

    .vw-grid-4 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.vw-flex {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--vw-space-md);
}

/* Buttons */
.vw-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: var(--vw-space-sm) var(--vw-space-lg);
    border-radius: var(--vw-radius-medium);
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    font-family: var(--vw-font-body);
    font-size: 1rem;
}

.vw-button-primary {
    background-color: var(--vw-primary);
    color: var(--vw-text-dark);
    border: 1px solid var(--vw-primary);
}

.vw-button-primary:hover {
    background-color: #8cc329;
    border-color: #8cc329;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(163, 230, 53, 0.3);
}

.vw-button-secondary {
    background-color: var(--vw-surface);
    color: var(--vw-primary);
    border: 1px solid var(--vw-primary);
}

.vw-button-secondary:hover {
    background-color: var(--vw-primary);
    color: var(--vw-text-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(163, 230, 53, 0.3);
}

.vw-button-outline {
    background-color: transparent;
    color: var(--vw-primary);
    border: 1px solid var(--vw-primary);
}

.vw-button-outline:hover {
    background-color: var(--vw-primary);
    color: var(--vw-text-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(163, 230, 53, 0.3);
}

.vw-link {
    color: var(--vw-primary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.vw-link:hover {
    color: var(--vw-text-light);
}

/* Icons */
.vw-icon {
    width: 24px;
    height: 24px;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
}

.vw-icon-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: var(--vw-space-xl);
    height: var(--vw-space-xl);
    border-radius: var(--vw-radius-medium);
    background-color: rgba(163, 230, 53, 0.1);
    color: var(--vw-primary);
}

.vw-icon-wrapper .vw-icon {
    width: 24px;
    height: 24px;
}

.vw-icon-large {
    width: 48px;
    height: 48px;
    color: var(--vw-primary);
}

/* Header & Navigation */
.vw-header {
    background-color: rgba(10, 10, 10, 0.9);
    padding: var(--vw-space-md) 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--vw-border);
}

.vw-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.vw-logo {
    color: var(--vw-text);
    font-family: var(--vw-font-heading);
    font-size: 1.75rem;
    font-weight: 800;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: var(--vw-space-xs);
}

.vw-logo:hover {
    color: var(--vw-primary);
}

.vw-nav-list {
    list-style: none;
    display: flex;
    gap: var(--vw-space-lg);
}

.vw-nav-item a {
    color: var(--vw-text-light);
    font-weight: 500;
    padding: var(--vw-space-xs) 0;
    position: relative;
}

.vw-nav-item a:hover {
    color: var(--vw-primary);
}

.vw-mobile-toggle {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
    z-index: 1001;
}

.vw-mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--vw-text);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

@media (max-width: 768px) {
    .vw-nav-list {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: var(--vw-background);
        justify-content: center;
        align-items: center;
        gap: var(--vw-space-xl);
        transform: translateX(100%);
        transition: transform 0.4s ease-in-out;
    }

    .vw-nav-list.active {
        transform: translateX(0);
        display: flex;
    }

    .vw-mobile-toggle {
        display: flex;
    }

    .vw-mobile-toggle.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .vw-mobile-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .vw-mobile-toggle.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
}

/* Hero Section */
.vw-hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    padding-top: var(--vw-space-xxxl);
    padding-bottom: var(--vw-space-xxxl);
    background: linear-gradient(135deg, var(--vw-background) 0%, #1e1e1e 100%);
    position: relative;
    overflow: hidden;
}

.vw-hero-content {
    display: flex;
    gap: var(--vw-space-xxl);
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.vw-hero-text {
    flex: 1;
    min-width: 320px;
}

.vw-hero-image {
    flex: 1;
    min-width: 320px;
    max-width: 600px;
    border-radius: var(--vw-radius-large);
    overflow: hidden;
    background-color: #000;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);color:#817cd0}

.vw-hero-image pre {
    margin: 0;
    padding: var(--vw-space-md);
    background-color: #1a1a1a;
    color: var(--vw-primary);
    font-family: var(--vw-font-mono);
    overflow-x: auto;
    font-size: 0.9rem;
    line-height: 1.4;color:#817cd0}

.vw-hero-image pre code .comment {
    color: #595959;
}
.vw-hero-image pre code .keyword {
    color: #235e90;
}
.vw-hero-image pre code .string {
    color: #834830;
}
.vw-hero-image pre code .number {
    color: #517240;
}

.vw-hero-image .vw-copy-button {
    position: absolute;
    top: var(--vw-space-sm);
    right: var(--vw-space-sm);
    background-color: rgba(255, 255, 255, 0.1);
    border: none;
    color: var(--vw-text-light);
    padding: var(--vw-space-xs) var(--vw-space-sm);
    border-radius: var(--vw-radius-small);
    font-family: var(--vw-font-body);
    font-size: 0.8rem;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.vw-hero-image .vw-copy-button:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.vw-pullquote {
    font-family: var(--vw-font-heading);
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-style: italic;
    line-height: 1.3;
    color: var(--vw-text-light);
    margin: var(--vw-space-xxl) auto;
    max-width: 800px;
    position: relative;
    padding: var(--vw-space-md);
}

.vw-pullquote::before {
    content: '“';
    font-size: 10rem;
    position: absolute;
    left: -var(--vw-space-lg);
    top: -var(--vw-space-xl);
    color: rgba(163, 230, 53, 0.1);
    line-height: 1;
    z-index: 0;
}

.vw-stats {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: var(--vw-space-md);
    margin-top: var(--vw-space-xl);
    flex-wrap: wrap;
    padding: var(--vw-space-md) 0;
    border-top: 1px solid var(--vw-border);
    border-bottom: 1px solid var(--vw-border);
}

.vw-stat-item {
    text-align: center;
    flex: 1;
    min-width: 120px;
    padding: var(--vw-space-sm);
}

.vw-stat-number {
    font-family: var(--vw-font-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    color: var(--vw-primary);
    line-height: 1;
}

.vw-stat-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    color: var(--vw-text-light);
    margin-top: var(--vw-space-xs);
    letter-spacing: 0.05em;
}

/* Cards */
.vw-card {
    background-color: var(--vw-surface);
    border-radius: var(--vw-radius-medium);
    padding: var(--vw-space-lg);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04), 0 1px 3px rgba(0, 0, 0, 0.06);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--vw-border);
}

.vw-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12), 0 2px 8px rgba(0, 0, 0, 0.08);
}

.vw-card-feature {
    text-align: center;
}

.vw-card-feature .vw-icon-large {
    margin-bottom: var(--vw-space-sm);
}

.vw-card-feature h3 {
    margin-bottom: var(--vw-space-xs);
}

.vw-card-service {
    display: flex;
    flex-direction: column;
}

.vw-card-service .vw-icon-large {
    margin-bottom: var(--vw-space-sm);
    align-self: flex-start;
}

.vw-card-service h3 {
    margin-bottom: var(--vw-space-xs);
}

.vw-card-process {
    display: flex;
    align-items: flex-start;
    gap: var(--vw-space-md);
    text-align: left;
}

.vw-card-process .vw-icon-wrapper {
    flex-shrink: 0;
    margin-top: var(--vw-space-xs);
}

/* Check List */
.vw-check-list {
    list-style: none;
    padding: 0;
}

.vw-check-item {
    display: flex;
    align-items: flex-start;
    gap: var(--vw-space-sm);
    margin-bottom: var(--vw-space-xs);
    font-size: 1.05rem;
    color: var(--vw-text-light);
}

.vw-check-item .vw-icon {
    width: 20px;
    height: 20px;
    color: var(--vw-primary);
    flex-shrink: 0;
    margin-top: 4px;
}

/* Testimonials */
.vw-testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--vw-space-lg);
}

.vw-testimonial-card {
    background-color: var(--vw-surface);
    border-radius: var(--vw-radius-medium);
    padding: var(--vw-space-lg);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04), 0 1px 3px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    border: 1px solid var(--vw-border);
}

.vw-testimonial-quote {
    font-size: 1.15rem;
    font-style: italic;
    margin-bottom: var(--vw-space-md);
    color: var(--vw-text-light);
    position: relative;
}

.vw-testimonial-quote::before {
    content: '“';
    font-size: 4rem;
    color: rgba(163, 230, 53, 0.1);
    position: absolute;
    left: -10px;
    top: -20px;
    line-height: 1;
    z-index: 1;
}

.vw-testimonial-quote span {
    position: relative;
    z-index: 2;
}

.vw-testimonial-cite {
    display: flex;
    align-items: center;
    gap: var(--vw-space-sm);
    margin-top: auto;
}

.vw-testimonial-cite img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--vw-primary);
}

.vw-testimonial-cite div {
    display: flex;
    flex-direction: column;
}

.vw-testimonial-cite strong {
    font-weight: 600;
    color: var(--vw-text);
}

.vw-testimonial-cite span {
    font-size: 0.9rem;
    color: var(--vw-text-light);
}

.vw-testimonial-stars {
    display: flex;
    gap: 4px;
    color: gold;
    margin-bottom: var(--vw-space-sm);
}

.vw-testimonial-stars .vw-icon {
    fill: currentColor;
    stroke: none;
    width: 20px;
    height: 20px;
}

/* FAQ */
.vw-faq {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--vw-space-lg);
}

@media (min-width: 768px) {
    .vw-faq {
        grid-template-columns: repeat(2, 1fr);
    }
}

.vw-faq-item {
    background-color: var(--vw-surface);
    border-radius: var(--vw-radius-medium);
    border: 1px solid var(--vw-border);
    overflow: hidden;
    transition: all 0.3s ease;
}

.vw-faq-q {
    padding: var(--vw-space-md);
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--vw-text);
    transition: background-color 0.3s ease;
}

.vw-faq-q:hover {
    background-color: rgba(163, 230, 53, 0.05);
}

.vw-faq-q::after {
    content: '+';
    font-size: 1.5rem;
    transition: transform 0.3s ease;
    color: var(--vw-primary);
}

.vw-faq-item.active .vw-faq-q::after {
    transform: rotate(45deg);
}

.vw-faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
    background-color: var(--vw-background);
    color: var(--vw-text-light);
    padding: 0 var(--vw-space-md);
}

.vw-faq-item.active .vw-faq-a {
    max-height: 500px; /* Adjust as needed */
    padding: var(--vw-space-xs) var(--vw-space-md) var(--vw-space-md) var(--vw-space-md);
}

/* CTA Section */
.vw-cta {
    background: linear-gradient(135deg, #1e1e1e 0%, var(--vw-background) 100%);
    padding: var(--vw-space-xxxl) var(--vw-space-md);
    text-align: center;
    border-radius: var(--vw-radius-large);
    margin: var(--vw-space-xxl) auto;
    max-width: 1200px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.vw-cta-content h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    margin-bottom: var(--vw-space-sm);
}

.vw-cta-content p {
    font-size: 1.15rem;
    color: var(--vw-text-light);
    margin-bottom: var(--vw-space-lg);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Forms */
.vw-contact-form {
    display: flex;
    flex-direction: column;
    gap: var(--vw-space-md);
    background-color: var(--vw-surface);
    padding: var(--vw-space-lg);
    border-radius: var(--vw-radius-medium);
    border: 1px solid var(--vw-border);
    box-shadow: 0 4px 20px rgba(0,0,0,0.04), 0 1px 3px rgba(0,0,0,0.06);
}

.vw-form-group {
    display: flex;
    flex-direction: column;
    gap: var(--vw-space-xs);
}

.vw-form-label {
    font-weight: 500;
    color: var(--vw-text);
    font-size: 0.95rem;
}

.vw-form-input,
.vw-form-textarea {
    padding: var(--vw-space-sm) var(--vw-space-md);
    border: 1px solid var(--vw-border);
    border-radius: var(--vw-radius-small);
    background-color: var(--vw-background);
    color: var(--vw-text);
    font-family: var(--vw-font-body);
    font-size: 1rem;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.vw-form-input:focus,
.vw-form-textarea:focus {
    border-color: var(--vw-primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(163, 230, 53, 0.3);
}

.vw-form-textarea {
    min-height: 120px;
    resize: vertical;
}

.vw-form-error {
    color: var(--vw-error-red);
    font-size: 0.875rem;
    margin-top: 4px;
}

.vw-form-success {
    background-color: var(--vw-success-green);
    color: var(--vw-text-dark);
    padding: var(--vw-space-sm);
    border-radius: var(--vw-radius-small);
    text-align: center;
    font-weight: 500;
}

/* Footer */
.vw-footer {
    background-color: var(--vw-background);
    padding-top: var(--vw-space-xxxl);
    padding-bottom: var(--vw-space-md);
    border-top: 1px solid var(--vw-border);
}

.vw-footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--vw-space-lg);
    margin-bottom: var(--vw-space-xxxl);
}

.vw-footer-col h4 {
    color: var(--vw-text);
    margin-bottom: var(--vw-space-md);
}

.vw-footer-col p {
    color: var(--vw-text-light);
    font-size: 0.95rem;
    margin-bottom: var(--vw-space-sm);
}

.vw-footer-col .vw-logo {
    margin-bottom: var(--vw-space-md);
}

.vw-footer-list {
    list-style: none;
}

.vw-footer-list li {
    margin-bottom: var(--vw-space-xs);
}

.vw-footer-list a {
    color: var(--vw-text-light);
    font-size: 0.95rem;
}

.vw-footer-list a:hover {
    color: var(--vw-primary);
    transform: translateY(-2px);
}

.vw-footer-bottom {
    text-align: center;
    padding-top: var(--vw-space-md);
    border-top: 1px solid var(--vw-border);
    color: var(--vw-text-light);
    font-size: 0.875rem;
}

/* Animations */
.vw-animate {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.vw-animate.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Developer Dock specific styles */
.code-block-header {
    display: flex;
    gap: var(--vw-space-xs);
    background-color: #27272a;
    padding: var(--vw-space-xs) var(--vw-space-md);
    border-top-left-radius: var(--vw-radius-small);
    border-top-right-radius: var(--vw-radius-small);
    border-bottom: 1px solid var(--vw-border);color:#9a96d9}

.code-block-header button {
    background: none;
    border: none;
    color: var(--vw-text-light);
    font-family: var(--vw-font-mono);
    font-size: 0.85rem;
    cursor: pointer;
    padding: var(--vw-space-xs) var(--vw-space-sm);
    border-radius: var(--vw-radius-small);
    transition: background-color 0.2s ease, color 0.2s ease;
}

.code-block-header button.active {
    background-color: var(--vw-primary);
    color: var(--vw-text-dark);
}

.code-block-header button:not(.active):hover {
    background-color: rgba(255, 255, 255, 0.05);
}

.code-pre {
    background-color: #1a1a1a;
    color: var(--vw-primary);
    font-family: var(--vw-font-mono);
    overflow-x: auto;
    padding: var(--vw-space-md);
    font-size: 0.9rem;
    border-bottom-left-radius: var(--vw-radius-medium);
    border-bottom-right-radius: var(--vw-radius-medium);color:#817cd0}

.code-pre code .comment {
    color: #595959;
}
.code-pre code .keyword {
    color: #235e90;
}
.code-pre code .string {
    color: #834830;
}
.code-pre code .number {
    color: #517240;
}

.api-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: var(--vw-space-xl);
    font-family: var(--vw-font-mono);
    font-size: 0.9rem;
}

.api-table th,
.api-table td {
    padding: var(--vw-space-sm) var(--vw-space-md);
    border: 1px solid var(--vw-border);
    text-align: left;
}

.api-table th {
    background-color: var(--vw-surface);
    color: var(--vw-text);
    font-weight: 600;
}

.api-table td {
    background-color: var(--vw-background);
    color: var(--vw-text-light);
}

.api-table tbody tr:hover td {
    background-color: rgba(163, 230, 53, 0.05);
}

.vw-integration-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: var(--vw-space-lg);
    margin-top: var(--vw-space-xl);
}

.vw-integration-logos img {
    max-height: 48px;
    filter: grayscale(100%) opacity(60%);
    transition: filter 0.3s ease;
}

.vw-integration-logos img:hover {
    filter: grayscale(0%) opacity(100%);
}

.vw-pricing-card {
    background-color: var(--vw-surface);
    border-radius: var(--vw-radius-medium);
    padding: var(--vw-space-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border: 1px solid var(--vw-border);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04), 0 1px 3px rgba(0, 0, 0, 0.06);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.vw-pricing-card.popular {
    border-color: var(--vw-primary);
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(163, 230, 53, 0.12), 0 2px 8px rgba(163, 230, 53, 0.08);
}

.vw-pricing-card.popular .vw-button-primary {
    background-color: var(--vw-primary);
}

.vw-pricing-card h3 {
    margin-bottom: var(--vw-space-xs);
    color: var(--vw-primary);
}

.vw-pricing-card .price {
    font-family: var(--vw-font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--vw-text);
    margin-bottom: var(--vw-space-xs);
}

.vw-pricing-card .price small {
    font-size: 1rem;
    color: var(--vw-text-light);
}

.vw-pricing-card .billing-period {
    font-size: 0.9rem;
    color: var(--vw-text-light);
    margin-bottom: var(--vw-space-lg);
}

.vw-pricing-card ul {
    list-style: none;
    margin-bottom: var(--vw-space-lg);
    text-align: left;
    width: 100%;
}

.vw-pricing-card ul li {
    display: flex;
    align-items: center;
    gap: var(--vw-space-sm);
    margin-bottom: var(--vw-space-xs);
    color: var(--vw-text-light);
    font-size: 0.95rem;
}

.vw-pricing-card ul li .vw-icon {
    width: 18px;
    height: 18px;
    color: var(--vw-primary);
    flex-shrink: 0;
}

.vw-team-member-card {
    text-align: center;
    background-color: var(--vw-surface);
    padding: var(--vw-space-lg);
    border-radius: var(--vw-radius-medium);
    border: 1px solid var(--vw-border);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.vw-team-member-card img {
    width: 120px;
    height: 120px;
    border-radius: var(--vw-radius-small);
    object-fit: cover;
    margin-bottom: var(--vw-space-md);
    border: 2px solid var(--vw-primary);
}

.vw-team-member-card h4 {
    margin-bottom: var(--vw-space-xs);
}

.vw-team-member-card p {
    font-size: 0.9rem;
    color: var(--vw-text-light);
    margin-bottom: var(--vw-space-sm);
    max-width: none;
}
.vw-social-links {
    display: flex;
    justify-content: center;
    gap: var(--vw-space-sm);
    margin-top: var(--vw-space-sm);
}

.vw-social-links a {
    color: var(--vw-text-light);
    transition: color 0.2s ease;
}

.vw-social-links a:hover {
    color: var(--vw-primary);
}

.vw-social-links .vw-icon {
    width: 20px;
    height: 20px;
}

/* Editiorial accents */
.vw-highlight {
    position: relative;
    display: inline-block;
}

.vw-highlight [data-decor-slot="headline_scribble"] {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -10px;
    height: 15px;
    width: 100%;
    color: var(--vw-primary);
}

[data-decor-slot="annotation_arrow"] {
    position: absolute;
    width: 80px;
    height: 80px;
    color: var(--vw-primary);
    stroke-width: 3;
}

[data-decor-slot="blob_backdrop"] {
    position: absolute;
    opacity: 0.1;
    color: var(--vw-primary);
    z-index: 0;
}

[data-decor-slot="off_grid_sticker"] {
    position: absolute;
    width: 100px;
    height: 100px;
    color: var(--vw-primary);
    z-index: 1;
}

@media (max-width: 480px) {
    .vw-hero-content {
        flex-direction: column;
    }
    .vw-hero-text, .vw-hero-image {
        min-width: unset;
        width: 100%;
    }
    .vw-pricing-card.popular {
        transform: translateY(0);
    }
    .vw-stats {
        flex-direction: column;
        align-items: stretch;
        border-left: none;
        border-right: none;
    }
    .vw-stat-item {
        border-bottom: 1px solid var(--vw-border);
    }
    .vw-stat-item:last-child {
        border-bottom: none;
    }
}


/* === Quality polish === */
.vw-card, [class*="vw-card"] { transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.2s ease; }
.vw-card:hover, [class*="vw-card"]:hover { transform: scale(1.02); box-shadow: 0 10px 28px rgba(0,0,0,0.10); }

@keyframes vwFadeInUp { from { opacity:0;transform:translateY(20px) } to { opacity: 1; transform: none; } }
.vw-animate { opacity: 0; }
.vw-animate.vw-visible { animation: vwFadeInUp .6s ease forwards; }

img { max-width: 100%; height: auto; display: block; }

/* FAQ collapsed-by-default — hard fallback (any language, any topic) */
.vw-faq-a, [class*="faq-a"], [class*="faq-answer"] { display: none !important; max-height: 0; overflow: hidden; padding: 0 22px; transition: none; }
.vw-faq-item.active .vw-faq-a, [class*="faq-item"].active [class*="faq-a"], [class*="faq-item"].active [class*="faq-answer"] { display: block !important; max-height: none !important; padding: 0 22px 18px; }
.vw-faq-q, [class*="faq-q"], [class*="faq-question"] { cursor: pointer; user-select: none; }
.vw-faq-q *, [class*="faq-q"] * { pointer-events: none; }

/* === PREMIUM SCAFFOLD (class-contract baseline) === */
/* Layout */
.vw-container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.vw-section { padding: 96px 0; background: #eef2ff; }
.vw-section-alt { padding: 96px 0; background: color-mix(in srgb, #4f46e5 4%, #eef2ff); }
.vw-grid { display: grid; gap: 32px; }
.vw-grid-2 { display: grid; gap: 32px; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }
.vw-grid-3 { display: grid; gap: 32px; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.vw-grid-4 { display: grid; gap: 24px; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.vw-text-center { text-align: center; }
/* Header / Nav */
.vw-header { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,0.94); backdrop-filter: saturate(180%) blur(12px); border-bottom: 1px solid color-mix(in srgb, #1e1b4b 8%, transparent); }
.vw-header > .vw-container, .vw-header .vw-container { display: flex; align-items: center; gap: 32px; padding-top: 12px; padding-bottom: 12px; min-height: 64px; }
.vw-brand, .vw-logo { display: inline-flex; align-items: center; gap: 10px; font-family: Space Grotesk; font-weight: 700; font-size: 1.05rem; line-height: 1; color: #4f46e5; letter-spacing: -0.015em; text-decoration: none; flex-shrink: 0; max-width: 220px; margin-right: 24px; }
.vw-brand-mark { display: inline-flex; color: #4f46e5; flex-shrink: 0; }
.vw-brand-mark svg { display: block; width: 24px; height: 24px; }
.vw-brand-name { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; padding-left: 2px; }
.vw-nav-list, .vw-nav-links { display: flex; gap: 28px; list-style: none; margin: 0 0 0 auto; padding: 0; align-items: center; }
.vw-nav-link { color: #1e1b4b; font-weight: 500; font-size: 0.95rem; padding: 6px 0; position: relative; text-decoration: none; }
.vw-nav-link + .vw-nav-link { margin-left: 0; }
.vw-nav-link:hover { color: #4f46e5; }
.vw-mobile-toggle { display: none; background: none; border: 0; padding: 6px; cursor: pointer; margin-left: auto; font-size: 1.4rem; line-height: 1; }
/* Hero */
.vw-hero { padding: 112px 0 96px; background: radial-gradient(circle at 82% 18%, color-mix(in srgb, #4f46e5 12%, transparent), transparent 34%), linear-gradient(180deg, color-mix(in srgb, #4f46e5 7%, #eef2ff) 0%, #eef2ff 100%); position: relative; overflow: hidden; }
/* Hero hardening — kill AI-generated giant ghost/background text & accidental absolute-positioned mockups */
.vw-hero [class*="ghost"], .vw-hero [class*="bg-text"], .vw-hero [class*="watermark"], .vw-hero [class*="hero-bg"], .vw-hero [aria-hidden="true"][class*="text"], .vw-hero [data-decorative="true"] { display: none !important; }
.vw-hero .vw-hero-image, .vw-hero .vw-dashboard-mockup { position: relative !important; }
.vw-hero .vw-hero-image { max-width: 100%; }
.vw-hero .vw-hero-image > * { max-width: 100%; }
.vw-hero .vw-stats { position: static !important; }
.vw-hero > .vw-container { max-width: 1200px; }
.vw-hero h1, .vw-hero .vw-h1 { font-family: Space Grotesk; font-size: clamp(2.75rem, 5.2vw, 4.75rem); line-height: 1.04; letter-spacing: -0.025em; font-weight: 800; color: #1e1b4b; margin: 0; max-width: 720px; width: 100%; text-wrap: balance; word-break: normal; overflow-wrap: break-word; hyphens: none; }
.vw-hero p, .vw-hero .vw-hero-sub, .vw-hero .vw-hero-subtitle { font-size: clamp(1.125rem, 1.5vw, 1.3rem); line-height: 1.7; color: #818cf8; max-width: 48ch; margin: 0; }
.vw-hero-content { display: grid; grid-template-columns: minmax(0, 1fr) minmax(360px, 0.92fr); gap: 72px; align-items: center; }
.vw-hero-text { display: flex; flex-direction: column; gap: 24px; align-items: flex-start; }
.vw-hero-actions { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }
.vw-hero-image { position: relative; }
.vw-hero-image::before { content: ''; position: absolute; inset: 22px -18px -18px 22px; border-radius: 24px; background: color-mix(in srgb, #4f46e5 12%, transparent); z-index: 0; }
.vw-hero-image img { position: relative; z-index: 1; width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: 24px; box-shadow: 0 36px 90px -34px rgba(0,0,0,0.42), 0 2px 10px rgba(0,0,0,0.08); }
.vw-hero-subtitle { font-size: 1.25rem; line-height: 1.6; color: #818cf8; max-width: 60ch; }
.vw-h1 { font-family: Space Grotesk; font-size: clamp(2.5rem, 5vw, 4.25rem); line-height: 1.05; letter-spacing: -0.02em; font-weight: 800; color: #1e1b4b; margin: 0; }
.vw-h2 { font-family: Space Grotesk; font-size: clamp(2rem, 3.5vw, 3rem); line-height: 1.15; letter-spacing: -0.015em; font-weight: 700; color: #1e1b4b; margin: 0 0 24px; }
.vw-h3 { font-family: Space Grotesk; font-size: 1.5rem; line-height: 1.3; font-weight: 700; color: #1e1b4b; margin: 0 0 12px; }
.vw-subheading { font-size: 1.125rem; line-height: 1.7; color: #818cf8; max-width: 720px; margin: 0 auto 64px; }
/* Buttons */
.vw-button { display: inline-flex; align-items: center; gap: 8px; padding: 14px 28px; border-radius: 10px; font-weight: 600; font-size: 1rem; text-decoration: none; cursor: pointer; border: 2px solid transparent; transition: all 0.25s cubic-bezier(0.4,0,0.2,1); white-space: nowrap; line-height: 1; }
.vw-button-primary { background: #4f46e5; color: #fff; border-color: #4f46e5; }
.vw-button-primary:hover { background: #4338ca; border-color: #4338ca; color: #fff; transform: translateY(-2px); box-shadow: 0 12px 24px -8px color-mix(in srgb, #4f46e5 50%, transparent); }
.vw-button-secondary { background: #4338ca; color: #fff; border-color: #4338ca; }
.vw-button-secondary:hover { transform: translateY(-2px); filter: brightness(1.05); color: #fff; }
.vw-button-outline { background: transparent; color: #4f46e5; border-color: #4f46e5; }
.vw-button-outline:hover { background: #4f46e5; color: #fff; }
.vw-link { color: #4f46e5; font-weight: 600; display: inline-flex; align-items: center; gap: 6px; }
.vw-link:hover { gap: 10px; }
/* Cards */
.vw-card { background: #fff; border: 1px solid color-mix(in srgb, #1e1b4b 6%, transparent); border-radius: 14px; padding: 32px; transition: transform 0.3s ease, box-shadow 0.3s ease; box-shadow: 0 4px 20px rgba(0,0,0,0.04), 0 1px 3px rgba(0,0,0,0.06); display: flex; flex-direction: column; gap: 16px; }
.vw-card:hover { transform: translateY(-4px); box-shadow: 0 24px 48px -16px rgba(0,0,0,0.12), 0 4px 12px rgba(0,0,0,0.06); }
.vw-card-feature, .vw-card-service, .vw-card-process { text-align: left; }
/* Icons */
.vw-icon-wrapper { display: inline-flex; align-items: center; justify-content: center; width: 56px; height: 56px; border-radius: 12px; background: color-mix(in srgb, #4f46e5 10%, transparent); color: #4f46e5; }
.vw-icon-wrapper svg, .vw-icon-wrapper .vw-icon { width: 28px; height: 28px; stroke: #4f46e5; }
.vw-icon { width: 20px; height: 20px; stroke: currentColor; flex-shrink: 0; }
.vw-icon-large { width: 48px; height: 48px; stroke: #4f46e5; }
/* Check list */
.vw-check-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 16px; }
.vw-check-item { display: flex; align-items: flex-start; gap: 12px; line-height: 1.6; }
.vw-check-item .vw-icon { color: #4f46e5; margin-top: 4px; }
/* Editorial */
.vw-pullquote { font-family: Space Grotesk; font-style: italic; font-size: clamp(1.5rem, 2.5vw, 2.25rem); line-height: 1.4; color: #1e1b4b; max-width: 900px; margin: 64px auto; padding: 0 32px; position: relative; text-align: center; }
.vw-pullquote::before { content: '"'; font-size: 6rem; line-height: 0.8; color: #4f46e5; opacity: 0.3; position: absolute; left: 0; top: -16px; }
.vw-stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 48px; padding: 64px 0; }
.vw-stat-item { text-align: center; }
.vw-stat-number { display: block; font-family: Space Grotesk; font-size: clamp(3rem, 5vw, 4.5rem); font-weight: 800; color: #4f46e5; line-height: 1; letter-spacing: -0.03em; }
.vw-stat-label { display: block; margin-top: 12px; font-size: 0.875rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: #818cf8; }
/* Testimonials */
.vw-testimonial-grid { display: grid; gap: 32px; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.vw-testimonial-card { background: #fff; padding: 32px; border-radius: 14px; box-shadow: 0 4px 20px rgba(0,0,0,0.04); border: 1px solid color-mix(in srgb, #1e1b4b 6%, transparent); }
.vw-testimonial-quote { font-style: italic; line-height: 1.7; color: #1e1b4b; margin-bottom: 16px; }
.vw-testimonial-cite { font-weight: 600; color: #4f46e5; font-size: 0.95rem; }
.vw-testimonial-stars { color: #10b981; margin-bottom: 12px; }
/* FAQ */
.vw-faq { display: flex; flex-direction: column; gap: 12px; max-width: 820px; margin: 0 auto; }
.vw-faq-item { background: #fff; border: 1px solid color-mix(in srgb, #1e1b4b 8%, transparent); border-radius: 12px; overflow: hidden; transition: box-shadow 0.2s ease; }
.vw-faq-item:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.06); }
.vw-faq-q { padding: 20px 24px; cursor: pointer; user-select: none; font-weight: 600; color: #1e1b4b; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.vw-faq-q::after { content: '+'; font-size: 1.5rem; color: #4f46e5; transition: transform 0.3s ease; flex-shrink: 0; }
.vw-faq-item.active .vw-faq-q::after { transform: rotate(45deg); }
/* CTA */
.vw-cta { padding: 96px 0; background: linear-gradient(135deg, #4f46e5 0%, #4338ca 100%); color: #fff; text-align: center; }
.vw-cta .vw-h2, .vw-cta h2 { color: #fff; }
.vw-cta-content { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: 24px; align-items: center; }
.vw-cta .vw-button-primary { background: #fff; color: #4f46e5; border-color: #fff; }
.vw-cta .vw-button-primary:hover { background: #eef2ff; color: #4f46e5; }
/* Form */
.vw-form, .vw-contact-form { display: flex; flex-direction: column; gap: 20px; width: min(100%, 680px); margin: 32px auto 0; background: #fff; padding: 44px; border-radius: 24px; border: 1px solid color-mix(in srgb, #1e1b4b 7%, transparent); box-shadow: 0 30px 80px -34px rgba(0,0,0,0.32), 0 10px 28px -18px color-mix(in srgb, #4f46e5 40%, transparent); text-align: left; color: #1e1b4b; }
.vw-form-row { display: grid; gap: 20px; grid-template-columns: 1fr 1fr; }
@media (max-width: 600px) { .vw-form-row { grid-template-columns: 1fr; } }
.vw-form-group { display: flex; flex-direction: column; gap: 8px; }
.vw-form-label, .vw-form label { font-weight: 600; font-size: 0.9rem; color: #1e1b4b; letter-spacing: 0.01em; }
.vw-form-input, .vw-form-textarea, .vw-form input:not([type="submit"]), .vw-form textarea, .vw-form select { padding: 15px 16px; border: 1.5px solid color-mix(in srgb, #1e1b4b 12%, transparent); border-radius: 12px; font-size: 1rem; font-family: inherit; background: color-mix(in srgb, #4f46e5 2%, #fff); color: #1e1b4b; transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease; width: 100%; box-sizing: border-box; }
.vw-form-input:hover, .vw-form-textarea:hover { border-color: color-mix(in srgb, #4f46e5 35%, transparent); }
.vw-form-input:focus, .vw-form-textarea:focus, .vw-form input:focus, .vw-form textarea:focus { outline: none; border-color: #4f46e5; box-shadow: 0 0 0 4px color-mix(in srgb, #4f46e5 18%, transparent); }
.vw-form-textarea, .vw-form textarea { min-height: 140px; resize: vertical; }
/* Form messages — HIDDEN BY DEFAULT, only shown when JS adds .is-visible or removes [hidden] */
.vw-form-error, [class*="form-error"], [class*="form-message-error"] { display: none; color: #dc2626; font-size: 0.875rem; padding: 10px 12px; background: color-mix(in srgb, #dc2626 8%, transparent); border-radius: 8px; }
.vw-form-success, [class*="form-success"], [class*="form-message-success"] { display: none; color: #047857; font-weight: 600; padding: 12px 14px; background: color-mix(in srgb, #059669 10%, transparent); border-radius: 8px; }
.vw-form-error[hidden], .vw-form-success[hidden], [class*="form-error"][hidden], [class*="form-success"][hidden] { display: none !important; }
.vw-form-error.is-visible, .vw-form-success.is-visible { display: block; }
.vw-cta .vw-form, .vw-cta .vw-contact-form { color: #1e1b4b; }
.vw-cta .vw-form button[type="submit"], .vw-cta .vw-contact-form button[type="submit"] { background: #4f46e5; color: #fff; border-color: #4f46e5; }
/* Footer */
.vw-footer { background: #1e1b4b; color: color-mix(in srgb, #fff 80%, transparent); padding: 96px 0 32px; }
.vw-footer .vw-h3, .vw-footer h3, .vw-footer h4 { color: #fff; font-family: Space Grotesk; font-size: 1rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 20px; }
.vw-footer .vw-logo { color: #fff; }
.vw-footer-grid { display: grid; gap: 48px; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); margin-bottom: 64px; }
.vw-footer-col { display: flex; flex-direction: column; gap: 12px; }
.vw-footer-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.vw-footer-link { color: color-mix(in srgb, #fff 70%, transparent); font-size: 0.95rem; }
.vw-footer-link:hover { color: #fff; }
.vw-footer-bottom { padding-top: 32px; border-top: 1px solid color-mix(in srgb, #fff 12%, transparent); font-size: 0.875rem; color: color-mix(in srgb, #fff 60%, transparent); text-align: center; }
.vw-social-links { display: flex; gap: 16px; }
.vw-social-links a { color: color-mix(in srgb, #fff 70%, transparent); }
.vw-social-links a:hover { color: #fff; }
/* Responsive */
@media (max-width: 900px) {
  .vw-hero { padding: 80px 0 64px; }
  .vw-hero-content { grid-template-columns: 1fr; gap: 40px; }
  .vw-section, .vw-section-alt { padding: 64px 0; }
  .vw-cta { padding: 64px 0; }
  .vw-footer { padding: 64px 0 24px; }
}
@media (max-width: 720px) {
  .vw-nav-list { display: none; }
  .vw-mobile-toggle { display: inline-flex; }
  .vw-nav.active .vw-nav-list, .vw-header.active .vw-nav-list, .vw-nav-list.active, .vw-nav-links.active { display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: #fff; padding: 24px; gap: 16px; box-shadow: 0 8px 24px rgba(0,0,0,0.08); }
  .vw-card { padding: 24px; }
  .vw-form, .vw-contact-form { padding: 28px; border-radius: 18px; }
}

/* === STYLE FAMILY: premium_dark_saas === */
.vw-section { background: #0a0b10; color: #e6e7eb; }
.vw-section-alt { background: linear-gradient(180deg, #0a0b10 0%, #11131c 100%); color: #e6e7eb; }
.vw-hero { background: radial-gradient(ellipse at top left, color-mix(in srgb, #4f46e5 30%, transparent), transparent 60%), radial-gradient(ellipse at bottom right, color-mix(in srgb, #10b981 22%, transparent), transparent 60%), #0a0b10; color: #fff; padding: 128px 0 96px; }
.vw-h1 { color: #fff; }
.vw-card, .vw-card-feature, .vw-card-service { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); color: #e6e7eb; backdrop-filter: blur(12px); }
.vw-card:hover { box-shadow: 0 0 0 1px #4f46e5, 0 18px 48px -12px color-mix(in srgb, #4f46e5 50%, transparent); }
.vw-button-primary { background: #4f46e5; color: #fff; box-shadow: 0 0 24px -8px #4f46e5; border-radius: 10px; }
.vw-button-secondary, .vw-button-outline { background: transparent; color: #e6e7eb; border: 1px solid rgba(255,255,255,0.18); border-radius: 10px; }
.vw-footer { background: #06070b; color: #9ca3af; }