html { scroll-behavior: smooth; }
/* ============================================
   Vault Data Servers - WordPress Theme CSS
   Version: 2.0.0
   ============================================ */

/* --- CSS Variables --- */
:root {
    --vds-bg: hsl(220, 20%, 4%);
    --vds-bg-alt: hsl(220, 15%, 6%);
    --vds-card: hsl(220, 15%, 8%);
    --vds-text: hsl(0, 0%, 98%);
    --vds-muted: hsl(220, 10%, 60%);
    --vds-muted-dark: hsl(220, 10%, 40%);
    --vds-border: hsl(220, 15%, 18%);
    --vds-primary: #3b82f6;
    --vds-primary-dark: #2563eb;
    --vds-cyan: #06b6d4;
    --vds-cyan-light: #22d3ee;
    --vds-blue-light: #60a5fa;
    --vds-green: #4ade80;
    --vds-red: #f87171;
    --vds-radius: 0.5rem;
    --vds-radius-lg: 0.75rem;
    --vds-radius-xl: 1rem;
    --vds-container: 1280px;
    --vds-nav-height: 110px;
    --vds-font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    background-color: var(--vds-bg);
    color: var(--vds-text);
    font-family: var(--vds-font);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
::selection { background: rgba(59,130,246,0.3); color: #fff; }

/* Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--vds-bg); }
::-webkit-scrollbar-thumb { background: var(--vds-border); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--vds-muted); }

/* --- Utility Classes --- */
.vds-container { max-width: var(--vds-container); margin: 0 auto; padding: 0 1.5rem; }
@media (min-width: 1024px) { .vds-container { padding: 0 2rem; } }

.vds-text-muted { color: var(--vds-muted); }
.vds-text-gradient { background-image: linear-gradient(to right, var(--vds-blue-light), var(--vds-cyan-light)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.text-center { text-align: center; }
.text-sm { font-size: 0.875rem; }
.text-xs { font-size: 0.75rem; }
.text-2xl { font-size: 1.5rem; }
.font-bold { font-weight: 700; }
.font-semibold { font-weight: 600; }
.font-medium { font-weight: 500; }
.leading-relaxed { line-height: 1.75; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-12 { margin-bottom: 3rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-12 { margin-top: 3rem; }
.mx-auto { margin-left: auto; margin-right: auto; }
.max-w-xl { max-width: 36rem; }
.max-w-2xl { max-width: 42rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-4xl { max-width: 56rem; }
.hidden { display: none !important; }
.w-full { width: 100%; }
.inline-flex { display: inline-flex; }
.flex { display: flex; }
.items-center { align-items: center; }
.gap-2 { gap: 0.5rem; }
.gap-4 { gap: 1rem; }

/* Glassmorphism */
.glass {
    border: 1px solid rgba(255,255,255,0.1);
    background-color: rgba(255,255,255,0.05);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
}

/* --- Animations --- */
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes pulse-glow { 0%, 100% { opacity: 0.5; } 50% { opacity: 1; } }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

/* --- Navigation --- */
.vds-nav { height: var(--vds-nav-height); position: sticky; top: 0; z-index: 1000; background-color: rgba(10, 12, 20, 0.4); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); transition: background-color 0.3s ease, backdrop-filter 0.3s ease; }
.vds-nav.scrolled { background-color: rgba(10, 12, 20, 0.8); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border-bottom: 1px solid var(--vds-border); }
.vds-nav-inner { display: flex; align-items: center; justify-content: space-between; height: 100%; }

.vds-logo { display: flex; align-items: center; }
.vds-logo-img { height: 56px; width: auto; }
.vds-footer .vds-logo-img { height: 48px; width: auto; }

.vds-desktop-nav { display: none; align-items: center; gap: 2.5rem; }
@media (min-width: 1024px) { .vds-desktop-nav { display: flex; } }

.vds-mobile-btn { display: block; color: #9ca3af; padding: 0.25rem; }
.vds-mobile-btn:hover { color: #fff; }
@media (min-width: 1024px) { .vds-mobile-btn { display: none; } }

.vds-mobile-menu { padding-bottom: 1rem; }
.vds-mobile-menu a { display: block; padding: 0.5rem 0; color: #9ca3af; transition: color 0.2s; font-size: 0.875rem; }
.vds-mobile-menu a:hover { color: #fff; }
@media (min-width: 1024px) { .vds-mobile-menu { display: none !important; } }

/* --- Buttons --- */
.vds-btn-primary {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: linear-gradient(135deg, var(--vds-primary), var(--vds-cyan));
    color: #fff; padding: 0.75rem 2rem; border-radius: var(--vds-radius);
    font-weight: 500; font-size: 0.875rem; transition: all 0.3s;
}
.vds-btn-primary:hover { background: linear-gradient(135deg, var(--vds-primary-dark), #0891b2); transform: translateY(-1px); }
.vds-btn-sm { padding: 0.5rem 1.25rem; }
.vds-btn-block { display: flex; justify-content: center; width: 100%; text-align: center; }
.vds-btn-outline {
    display: inline-flex; align-items: center; gap: 0.5rem;
    border: 1px solid rgba(255,255,255,0.2); color: #fff;
    padding: 0.75rem 2rem; border-radius: var(--vds-radius);
    font-weight: 500; font-size: 0.875rem; transition: all 0.3s;
}
.vds-btn-outline:hover { background: rgba(255,255,255,0.05); }
.vds-btn-group { display: flex; flex-wrap: wrap; gap: 1rem; }

/* --- Label --- */
.vds-label { color: var(--vds-blue-light); font-size: 0.875rem; font-weight: 500; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 1rem; }

/* --- Sections --- */
.vds-section { padding: 5rem 0; position: relative; }
.vds-section-sm { padding: 2rem 0; }
@media (min-width: 1024px) { .vds-section { padding: 8rem 0; } }
.vds-section-header { text-align: center; margin-bottom: 4rem; }
.vds-section-title { font-size: 1.875rem; font-weight: 700; margin-bottom: 1rem; }
@media (min-width: 640px) { .vds-section-title { font-size: 2.25rem; } }
.vds-section-subtitle { color: var(--vds-muted); max-width: 42rem; margin-left: auto; margin-right: auto; }

/* --- Page Hero --- */
.vds-page-hero { position: relative; padding-top: 8rem; padding-bottom: 5rem; overflow: hidden; }
@media (min-width: 1024px) { .vds-page-hero { padding-top: 12rem; } }
.vds-page-title { font-size: 2.25rem; font-weight: 700; letter-spacing: -0.025em; margin-bottom: 1.5rem; }
@media (min-width: 640px) { .vds-page-title { font-size: 3rem; } }
@media (min-width: 1024px) { .vds-page-title { font-size: 3.75rem; } }
.vds-page-subtitle { font-size: 1.25rem; color: var(--vds-muted); max-width: 48rem; line-height: 1.75; }

/* --- Glow Effects --- */
.vds-glow { position: absolute; width: 24rem; height: 24rem; border-radius: 50%; filter: blur(60px); animation: pulse-glow 3s ease-in-out infinite; pointer-events: none; }
.vds-glow-1 { top: 25%; right: 25%; background: rgba(59,130,246,0.1); }
.vds-glow-2 { bottom: 25%; left: 25%; background: rgba(6,182,212,0.1); animation-delay: 1.5s; }

/* --- Hero --- */
.vds-hero { position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden; padding-top: 8rem; padding-bottom: 5rem; }
@media (min-width: 1024px) { .vds-hero { padding-top: 12rem; } }
.vds-hero-bg { position: absolute; inset: 0; pointer-events: none; }
.vds-hero-grid { display: grid; gap: 3rem; align-items: center; }
@media (min-width: 1024px) { .vds-hero-grid { grid-template-columns: 1fr 1fr; gap: 5rem; } }
.vds-hero-title { font-size: 2.25rem; font-weight: 700; letter-spacing: -0.025em; margin-bottom: 1.5rem; }
@media (min-width: 640px) { .vds-hero-title { font-size: 3rem; } }
@media (min-width: 1024px) { .vds-hero-title { font-size: 4.5rem; } }
.vds-hero-tagline { font-size: 1.25rem; color: var(--vds-muted); margin-bottom: 1rem; }
.vds-hero-stats-wrap { display: none; }
@media (min-width: 1024px) { .vds-hero-stats-wrap { display: block; } }
.vds-hero-stats { border-radius: var(--vds-radius-xl); padding: 2rem; animation: float 6s ease-in-out infinite; }
.vds-stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.vds-stat { text-align: center; padding: 1rem; }
.vds-stat-value { font-size: 1.875rem; font-weight: 700; }
.vds-stat-label { font-size: 0.875rem; color: var(--vds-muted); margin-top: 0.25rem; }

/* --- Cards --- */
.vds-card { border-radius: var(--vds-radius-xl); padding: 1.5rem; }
.vds-card-hover { transition: all 0.3s ease; }
.vds-card-hover:hover { transform: translateY(-4px); box-shadow: 0 0 40px rgba(59,130,246,0.15); }
.vds-card-icon { width: 3rem; height: 3rem; border-radius: var(--vds-radius); background: rgba(59,130,246,0.1); display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; }
.vds-card-title { font-size: 1.125rem; font-weight: 600; margin-bottom: 0.5rem; }

/* --- Features Grid --- */
.vds-features-grid { display: grid; gap: 1.5rem; }
@media (min-width: 768px) { .vds-features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .vds-features-grid { grid-template-columns: repeat(3, 1fr); } }

/* --- Split Grid --- */
.vds-split-grid { display: grid; gap: 3rem; align-items: center; }
@media (min-width: 1024px) { .vds-split-grid { grid-template-columns: 1fr 1fr; gap: 5rem; } }

/* --- Values --- */
.vds-values-card { border-radius: var(--vds-radius-xl); padding: 2rem; }
.vds-values-list { display: flex; flex-direction: column; gap: 1rem; }
.vds-value-item { display: flex; align-items: flex-start; gap: 1rem; padding: 1rem; border-radius: var(--vds-radius); transition: background 0.3s; }
.vds-value-item:hover { background: rgba(255,255,255,0.05); }
.vds-value-icon { width: 2.5rem; height: 2.5rem; border-radius: var(--vds-radius); background: rgba(59,130,246,0.1); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.vds-values-grid { display: grid; gap: 1.5rem; }
@media (min-width: 768px) { .vds-values-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .vds-values-grid { grid-template-columns: repeat(4, 1fr); } }

/* --- CTA --- */
.vds-cta-card { border-radius: var(--vds-radius-xl); padding: 2rem 2rem; text-align: center; position: relative; overflow: hidden; }
@media (min-width: 768px) { .vds-cta-card { padding: 3rem; } }
.vds-cta-gradient { position: absolute; inset: 0; background: linear-gradient(to right, rgba(59,130,246,0.05), rgba(6,182,212,0.05)); }
.vds-cta-content { position: relative; }
.vds-cta-title { font-size: 1.875rem; font-weight: 700; margin-bottom: 1rem; }
@media (min-width: 640px) { .vds-cta-title { font-size: 2.25rem; } }

/* --- Mission --- */
.vds-mission-card { border-radius: var(--vds-radius-xl); padding: 2rem; }
@media (min-width: 768px) { .vds-mission-card { padding: 3rem; } }
.vds-mission-title { font-size: 1.5rem; font-weight: 700; margin-bottom: 1rem; }

/* --- Story --- */
.vds-story-content { display: flex; flex-direction: column; gap: 1rem; }

/* --- Services Grid --- */
.vds-services-grid { display: grid; gap: 2rem; }
@media (min-width: 768px) { .vds-services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .vds-services-grid { grid-template-columns: repeat(3, 1fr); } }
.vds-service-card { border-radius: var(--vds-radius-xl); padding: 2rem; }
.vds-service-icon { width: 3.5rem; height: 3.5rem; border-radius: var(--vds-radius-xl); background: rgba(59,130,246,0.1); display: flex; align-items: center; justify-content: center; margin-bottom: 1.5rem; transition: transform 0.3s; }
.vds-service-card:hover .vds-service-icon { transform: scale(1.1); }
.vds-service-title { font-size: 1.25rem; font-weight: 600; margin-bottom: 0.75rem; }
.vds-feature-list { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.vds-feature-list li { display: flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; color: var(--vds-muted); }
.vds-feature-list li i { flex-shrink: 0; }

/* --- Blog --- */
.vds-blog-filters { display: flex; flex-wrap: wrap; gap: 0.5rem; justify-content: center; }
.vds-filter-btn { padding: 0.5rem 1rem; border-radius: 9999px; font-size: 0.875rem; font-weight: 500; color: var(--vds-muted); border: 1px solid var(--vds-border); transition: all 0.3s; background: transparent; }
.vds-filter-btn:hover, .vds-filter-btn.active { color: #fff; background: rgba(59,130,246,0.2); border-color: var(--vds-primary); }

.vds-blog-grid { display: grid; gap: 2rem; }
@media (min-width: 768px) { .vds-blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .vds-blog-grid { grid-template-columns: repeat(3, 1fr); } }

.vds-blog-card { border-radius: var(--vds-radius-xl); overflow: hidden; display: block; }
.vds-blog-thumb { aspect-ratio: 16/9; background: linear-gradient(135deg, rgba(59,130,246,0.2), rgba(6,182,212,0.2)); overflow: hidden; }
.vds-blog-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.vds-blog-card:hover .vds-blog-thumb img { transform: scale(1.05); }
.vds-blog-thumb-placeholder { display: flex; align-items: center; justify-content: center; }
.vds-blog-content { padding: 1.5rem; }
.vds-blog-meta { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.75rem; }
.vds-blog-cat { font-size: 0.75rem; font-weight: 500; background: rgba(59,130,246,0.1); color: var(--vds-blue-light); padding: 0.25rem 0.5rem; border-radius: 9999px; }
.vds-blog-title { font-size: 1.125rem; font-weight: 600; margin-bottom: 0.5rem; transition: color 0.3s; }
.vds-blog-card:hover .vds-blog-title { color: var(--vds-blue-light); }
.vds-line-clamp-3 { display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.vds-no-posts { grid-column: 1 / -1; text-align: center; padding: 3rem; }

/* --- Single Post --- */
.vds-article { padding-top: 8rem; padding-bottom: 5rem; }
@media (min-width: 1024px) { .vds-article { padding-top: 12rem; } }
.vds-article-container { max-width: 48rem; margin: 0 auto; padding: 0 1.5rem; }
@media (min-width: 1024px) { .vds-article-container { padding: 0 2rem; } }
.vds-breadcrumb { display: flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; color: var(--vds-muted); margin-bottom: 2rem; }
.vds-breadcrumb a { transition: color 0.2s; }
.vds-breadcrumb a:hover { color: #fff; }
.vds-article-header { margin-bottom: 2rem; }
.vds-article-cat { display: inline-block; background: rgba(59,130,246,0.1); color: var(--vds-blue-light); padding: 0.25rem 0.75rem; border-radius: 0.25rem; font-size: 0.875rem; margin-bottom: 1rem; }
.vds-article-title { font-size: 1.875rem; font-weight: 700; letter-spacing: -0.025em; margin-bottom: 1rem; }
@media (min-width: 640px) { .vds-article-title { font-size: 2.25rem; } }
@media (min-width: 1024px) { .vds-article-title { font-size: 3rem; } }
.vds-article-meta { display: flex; align-items: center; gap: 1rem; font-size: 0.875rem; color: var(--vds-muted); }
.vds-article-image { aspect-ratio: 16/9; border-radius: var(--vds-radius-xl); overflow: hidden; margin-bottom: 2rem; }
.vds-article-image img { width: 100%; height: 100%; object-fit: cover; }

/* Article Content Prose */
.vds-prose p { color: var(--vds-muted); line-height: 1.75; margin-bottom: 1.25rem; }
.vds-prose h2 { font-size: 1.5rem; font-weight: 700; margin-top: 2rem; margin-bottom: 1rem; color: var(--vds-text); }
.vds-prose h3 { font-size: 1.25rem; font-weight: 600; margin-top: 1.5rem; margin-bottom: 0.75rem; color: var(--vds-text); }
.vds-prose ul { list-style: disc; padding-left: 1.5rem; margin-bottom: 1.25rem; }
.vds-prose ul li { color: var(--vds-muted); padding-left: 0.5rem; margin-bottom: 0.5rem; }
.vds-prose a { color: var(--vds-blue-light); }
.vds-prose a:hover { text-decoration: underline; }
.vds-prose blockquote { border-left: 2px solid var(--vds-primary); padding-left: 1rem; font-style: italic; color: var(--vds-muted); margin-bottom: 1.25rem; }
.vds-prose strong { color: var(--vds-text); font-weight: 600; }
.vds-article-back { display: inline-flex; align-items: center; gap: 0.5rem; color: var(--vds-blue-light); margin-top: 3rem; padding-top: 2rem; border-top: 1px solid var(--vds-border); transition: color 0.2s; }
.vds-article-back:hover { color: #93c5fd; }

/* --- Contact --- */
.vds-contact-grid { display: grid; gap: 3rem; }
@media (min-width: 1024px) { .vds-contact-grid { grid-template-columns: 1fr 1fr; gap: 5rem; } }

/* Form Styles */
.vds-form-fields { display: flex; flex-direction: column; gap: 1.5rem; }
.vds-form-row { display: grid; gap: 1.5rem; }
@media (min-width: 640px) { .vds-form-row { grid-template-columns: 1fr 1fr; } }
.vds-form-label { display: block; font-size: 0.875rem; font-weight: 500; margin-bottom: 0.5rem; }
.vds-input {
    width: 100%;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--vds-radius);
    padding: 0.75rem 1rem;
    color: #fff;
    font-family: var(--vds-font);
    font-size: 0.875rem;
    transition: border-color 0.3s;
}
.vds-input::placeholder { color: #6b7280; }
.vds-input:focus { outline: none; border-color: var(--vds-primary); }
.vds-textarea { resize: none; }
.vds-form-success { border-radius: var(--vds-radius-xl); padding: 2rem; text-align: center; }

/* Contact Info */
.vds-contact-info { display: flex; flex-direction: column; gap: 1.5rem; }
.vds-contact-item { display: flex; align-items: flex-start; gap: 1rem; }
.vds-contact-icon { width: 3rem; height: 3rem; border-radius: var(--vds-radius); background: rgba(59,130,246,0.1); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }

/* FAQ */
.vds-faq { margin-top: 3rem; }
.vds-faq-list { display: flex; flex-direction: column; gap: 1rem; }
.vds-faq-item { border-radius: var(--vds-radius); }
.vds-faq-question { padding: 1rem; cursor: pointer; font-weight: 500; display: flex; align-items: center; justify-content: space-between; list-style: none; }
.vds-faq-question::-webkit-details-marker { display: none; }
.vds-faq-chevron { transition: transform 0.3s; }
details[open] .vds-faq-chevron { transform: rotate(180deg); }
.vds-faq-answer { padding: 0 1rem 1rem; color: var(--vds-muted); font-size: 0.875rem; line-height: 1.75; }

/* --- Footer --- */
.vds-footer { border-top: 1px solid var(--vds-border); background: rgba(17, 24, 39, 0.5); }
.vds-footer-inner { padding: 3rem 0; }
.vds-footer-grid { display: grid; gap: 2rem; }
@media (min-width: 768px) { .vds-footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .vds-footer-grid { grid-template-columns: repeat(4, 1fr); } }
.vds-footer-heading { font-weight: 600; margin-bottom: 1rem; }
.vds-footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.vds-footer-links a, .vds-footer-links li a { font-size: 0.875rem; color: var(--vds-muted); transition: color 0.2s; }
.vds-footer-links a:hover, .vds-footer-links li a:hover { color: #fff; }
.vds-footer-contact { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }
.vds-footer-contact li { display: flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; color: var(--vds-muted); }
.vds-footer-bottom { border-top: 1px solid var(--vds-border); margin-top: 2rem; padding-top: 2rem; display: flex; flex-direction: column; align-items: center; gap: 1rem; }
@media (min-width: 768px) { .vds-footer-bottom { flex-direction: row; justify-content: space-between; } }
.vds-footer-legal { display: flex; gap: 1rem; }
.vds-footer-legal a { font-size: 0.875rem; color: var(--vds-muted); transition: color 0.2s; }
.vds-footer-legal a:hover { color: #fff; }

/* --- Default Page & 404 --- */
.vds-default-content { padding-top: 8rem; padding-bottom: 5rem; }
@media (min-width: 1024px) { .vds-default-content { padding-top: 10rem; } }
.vds-default-content .entry-content { max-width: 48rem; margin: 0 auto; }
.vds-default-content .entry-content p { color: var(--vds-muted); line-height: 1.75; margin-bottom: 1.25rem; }

/* 404 */
.vds-404 { min-height: 80vh; display: flex; align-items: center; justify-content: center; text-align: center; }
.vds-404-title { font-size: 6rem; font-weight: 800; margin-bottom: 1rem; }
@media (min-width: 640px) { .vds-404-title { font-size: 8rem; } }

/* --- Scroll Animation --- */
.vds-animate { opacity: 0; transform: translateY(20px); transition: all 0.6s ease; }
.vds-animate.visible { opacity: 1; transform: translateY(0); }

/* --- WordPress Specific --- */
.wp-block-image img { border-radius: var(--vds-radius); }
.aligncenter { text-align: center; }
.alignleft { float: left; margin-right: 1.5rem; margin-bottom: 1rem; }
.alignright { float: right; margin-left: 1.5rem; margin-bottom: 1rem; }
.screen-reader-text { clip: rect(1px, 1px, 1px, 1px); position: absolute; height: 1px; width: 1px; overflow: hidden; }

/* --- Client Portal --- */
.vds-portal-badge {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: rgba(59,130,246,0.1); border: 1px solid rgba(59,130,246,0.2);
    border-radius: 9999px; padding: 0.375rem 1rem; margin-bottom: 1.5rem;
    font-size: 0.875rem; color: var(--vds-blue-light); font-weight: 500;
}
.vds-portal-grid { display: grid; gap: 1.5rem; }
@media (min-width: 768px) { .vds-portal-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .vds-portal-grid { grid-template-columns: repeat(3, 1fr); } }

.vds-portal-card { border-radius: var(--vds-radius-xl); padding: 2rem; text-align: center; display: block; }
.vds-portal-card-disabled { opacity: 0.5; position: relative; overflow: hidden; }
.vds-portal-soon-badge {
    position: absolute; top: 0.75rem; right: 0.75rem;
    background: rgba(255,255,255,0.1); font-size: 0.75rem; font-weight: 500;
    color: var(--vds-muted); padding: 0.25rem 0.5rem; border-radius: 9999px;
}
.vds-portal-card-title { font-size: 1.25rem; font-weight: 600; margin-bottom: 0.5rem; }

.vds-portal-icon {
    width: 4rem; height: 4rem; border-radius: var(--vds-radius-xl);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 1.25rem; transition: transform 0.3s;
}
.vds-portal-card:hover .vds-portal-icon { transform: scale(1.1); }

.vds-portal-icon-blue { background: linear-gradient(135deg, rgba(59,130,246,0.2), rgba(37,99,235,0.2)); border: 1px solid rgba(59,130,246,0.2); color: #60a5fa; }
.vds-portal-icon-cyan { background: linear-gradient(135deg, rgba(6,182,212,0.2), rgba(8,145,178,0.2)); border: 1px solid rgba(6,182,212,0.2); color: #22d3ee; }
.vds-portal-icon-violet { background: linear-gradient(135deg, rgba(139,92,246,0.2), rgba(124,58,237,0.2)); border: 1px solid rgba(139,92,246,0.2); color: #a78bfa; }
.vds-portal-icon-green { background: linear-gradient(135deg, rgba(34,197,94,0.2), rgba(22,163,74,0.2)); border: 1px solid rgba(34,197,94,0.2); color: #4ade80; }
.vds-portal-icon-amber { background: linear-gradient(135deg, rgba(245,158,11,0.2), rgba(217,119,6,0.2)); border: 1px solid rgba(245,158,11,0.2); color: #fbbf24; }
.vds-portal-icon-rose { background: linear-gradient(135deg, rgba(244,63,94,0.2), rgba(225,29,72,0.2)); border: 1px solid rgba(244,63,94,0.2); color: #fb7185; }

.vds-portal-link { display: inline-flex; align-items: center; gap: 0.25rem; font-size: 0.875rem; font-weight: 500; transition: gap 0.3s; }
.vds-portal-card:hover .vds-portal-link { gap: 0.5rem; }
.vds-portal-link-blue { color: #60a5fa; }
.vds-portal-link-cyan { color: #22d3ee; }
.vds-portal-link-violet { color: #a78bfa; }
.vds-portal-link-green-disabled { color: rgba(74,222,128,0.5); }
.vds-portal-link-amber { color: #fbbf24; }
.vds-portal-link-rose { color: #fb7185; }

.vds-portal-help { display: flex; flex-direction: column; align-items: center; gap: 1.5rem; }
@media (min-width: 768px) { .vds-portal-help { flex-direction: row; justify-content: space-between; } }
.vds-portal-help-btns { display: flex; align-items: center; gap: 1rem; }

/* WP Admin Bar */
body.admin-bar .vds-nav { top: 32px; }
@media screen and (max-width: 782px) { body.admin-bar .vds-nav { top: 46px; } }

/* Client Portal Nav Button */
.vds-desktop-nav a[href*="portal"] {
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    padding: 0.6rem 1.5rem !important;
    border-radius: 0.5rem !important;
    font-size: 1rem !important;
    font-weight: 500 !important;
    transition: background-color 0.2s;
}
.vds-desktop-nav a[href*="portal"]:hover {
    background-color: rgba(255, 255, 255, 0.1) !important;
}


.vds-desktop-nav a {
    font-size: 1rem;
    letter-spacing: 0.01em;
}

.vds-nav .vds-btn-primary {
    font-size: 1rem;
    padding: 0.65rem 1.75rem;
}

/* ============================
   Solutions Page - Detail Sections
   ============================ */

/* Mobile first - single column stacked layout */
.vds-solution-detail {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
    align-items: center;
    margin-bottom: 3rem !important;
}

/* On mobile, text first then stat card */
.vds-solution-detail > div {
    order: 0 !important;
}
.vds-solution-detail > .glass {
    order: 1 !important;
}

/* Desktop - two column layout */
@media (min-width: 768px) {
    .vds-solution-detail {
        grid-template-columns: 1fr 1fr !important;
        gap: 3rem !important;
        margin-bottom: 5rem !important;
    }

    /* Restore alternating order for cybersecurity & managed IT (card on left) */
    #cybersecurity > div:first-child {
        order: -1 !important;
    }
    #managed-it > div:first-child {
        order: -1 !important;
    }
}

/* Solution detail headings - responsive font size */
.vds-solution-detail h2 {
    font-size: 1.5rem;
}

@media (min-width: 768px) {
    .vds-solution-detail h2 {
        font-size: 2rem;
    }
}

/* Why Choose Us & Process - 4-column grid responsive */
@media (max-width: 1023px) {
    .vds-section [style*="grid-template-columns: repeat(4"] {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 639px) {
    .vds-section [style*="grid-template-columns: repeat(4"] {
        grid-template-columns: 1fr !important;
    }
}
