/* ==========================================================================
   VX Player – Design System & Styles
   ========================================================================== */

:root {
    --vx-primary: #6c5ce7;
    --vx-primary-dark: #5a4bd1;
    --vx-primary-light: #a29bfe;
    --vx-secondary: #00cec9;
    --vx-secondary-dark: #00b5b0;
    --vx-accent: #fd79a8;

    --vx-background: #f8f9fc;
    --vx-surface: #ffffff;
    --vx-surface-elevated: #ffffff;
    --vx-text: #1a1a2e;
    --vx-text-secondary: #4a4a68;
    --vx-muted: #6c757d;
    --vx-border: #e8ecf4;
    --vx-border-light: #f0f2f8;

    --vx-hero-gradient: linear-gradient(135deg, #1a1a2e 0%, #2d1b69 40%, #6c5ce7 100%);
    --vx-cta-gradient: linear-gradient(135deg, #6c5ce7 0%, #00cec9 100%);

    --vx-radius-sm: 0.5rem;
    --vx-radius: 1rem;
    --vx-radius-lg: 1.5rem;
    --vx-radius-xl: 2rem;

    --vx-shadow-sm: 0 2px 8px rgba(26, 26, 46, 0.06);
    --vx-shadow: 0 8px 30px rgba(26, 26, 46, 0.08);
    --vx-shadow-lg: 0 20px 60px rgba(26, 26, 46, 0.12);
    --vx-shadow-primary: 0 8px 30px rgba(108, 92, 231, 0.25);

    --vx-container-max: 1200px;
    --vx-navbar-height: 72px;
    --vx-transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);

    --bs-primary: var(--vx-primary);
    --bs-primary-rgb: 108, 92, 231;
    --bs-body-font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    --bs-body-color: var(--vx-text);
    --bs-body-bg: var(--vx-background);
}

[data-theme="dark"] {
    --vx-background: #0f0f1a;
    --vx-surface: #1a1a2e;
    --vx-surface-elevated: #22223a;
    --vx-text: #f0f0f5;
    --vx-text-secondary: #b8b8cc;
    --vx-muted: #8888a0;
    --vx-border: #2a2a45;
    --vx-border-light: #1f1f35;

    --vx-hero-gradient: linear-gradient(135deg, #0a0a14 0%, #1a1040 40%, #3d2d8a 100%);
    --vx-shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.2);
    --vx-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
    --vx-shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.35);
    --vx-shadow-primary: 0 8px 30px rgba(108, 92, 231, 0.15);

    --bs-body-color: var(--vx-text);
    --bs-body-bg: var(--vx-background);
}

/* Base */
*, *::before, *::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

body {
    font-family: var(--bs-body-font-family);
    color: var(--vx-text);
    background-color: var(--vx-background);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    color: var(--vx-primary);
    text-decoration: none;
    transition: color var(--vx-transition);
}

a:hover {
    color: var(--vx-primary-dark);
}

:focus-visible {
    outline: 2px solid var(--vx-primary);
    outline-offset: 2px;
}

.skip-link {
    position: absolute;
    top: -100%;
    left: 1rem;
    z-index: 10000;
    padding: 0.75rem 1.25rem;
    background: var(--vx-primary);
    color: #fff;
    border-radius: var(--vx-radius-sm);
    font-weight: 600;
}

.skip-link:focus {
    top: 1rem;
}

.container {
    max-width: var(--vx-container-max);
}

/* Navbar */
.vx-navbar-wrapper {
    position: sticky;
    top: 0;
    z-index: 1030;
}

.vx-navbar {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--vx-border);
    padding: 0.75rem 0;
    transition: background var(--vx-transition), box-shadow var(--vx-transition);
}

[data-theme="dark"] .vx-navbar {
    background: rgba(15, 15, 26, 0.9);
}

.vx-navbar.scrolled {
    box-shadow: var(--vx-shadow-sm);
}

.vx-brand-text {
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--vx-text);
    letter-spacing: -0.02em;
}

.vx-navbar .nav-link {
    color: var(--vx-text-secondary);
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    border-radius: var(--vx-radius-sm);
    transition: color var(--vx-transition), background var(--vx-transition);
}

.vx-navbar .nav-link:hover,
.vx-navbar .nav-link.active {
    color: var(--vx-primary);
    background: rgba(108, 92, 231, 0.08);
}

.vx-theme-toggle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--vx-border);
    background: var(--vx-surface);
    color: var(--vx-text);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--vx-transition);
    cursor: pointer;
}

.vx-theme-toggle:hover {
    background: var(--vx-primary);
    color: #fff;
    border-color: var(--vx-primary);
}

[data-theme="dark"] .navbar-toggler-icon {
    filter: invert(1);
}

/* Buttons */
.vx-btn-primary {
    background: var(--vx-primary);
    border-color: var(--vx-primary);
    font-weight: 600;
    border-radius: var(--vx-radius);
    padding: 0.625rem 1.5rem;
    transition: all var(--vx-transition);
    box-shadow: var(--vx-shadow-primary);
}

.vx-btn-primary:hover,
.vx-btn-primary:focus {
    background: var(--vx-primary-dark);
    border-color: var(--vx-primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 12px 35px rgba(108, 92, 231, 0.35);
}

.vx-btn-outline {
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    font-weight: 600;
    border-radius: var(--vx-radius);
    backdrop-filter: blur(8px);
}

.vx-btn-outline:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.5);
    color: #fff;
}

.vx-btn-outline-primary {
    border: 2px solid var(--vx-primary);
    color: var(--vx-primary);
    font-weight: 600;
    border-radius: var(--vx-radius);
}

.vx-btn-outline-primary:hover {
    background: var(--vx-primary);
    color: #fff;
}

/* Hero */
.vx-hero {
    position: relative;
    padding: 5rem 0 6rem;
    overflow: hidden;
    color: #fff;
}

.vx-hero-bg {
    position: absolute;
    inset: 0;
    background: var(--vx-hero-gradient);
    z-index: 0;
}

.vx-hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(108, 92, 231, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 206, 201, 0.2) 0%, transparent 40%),
        radial-gradient(circle at 60% 80%, rgba(253, 121, 168, 0.15) 0%, transparent 40%);
}

.vx-hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.vx-hero .container {
    position: relative;
    z-index: 1;
}

.vx-badge {
    display: inline-block;
    padding: 0.375rem 1rem;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 2rem;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(8px);
}

.vx-hero-title {
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 1.25rem;
}

.vx-hero-text {
    font-size: 1.125rem;
    line-height: 1.7;
    opacity: 0.9;
    max-width: 520px;
    margin-bottom: 2rem;
}

/* Phone Mockup */
.vx-phone-mockup {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.vx-phone-frame {
    position: relative;
    width: 260px;
    background: #1a1a2e;
    border-radius: 2.5rem;
    padding: 12px;
    box-shadow: var(--vx-shadow-lg), 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.vx-phone-notch {
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 24px;
    background: #1a1a2e;
    border-radius: 0 0 1rem 1rem;
    z-index: 2;
}

.vx-phone-screen {
    border-radius: 2rem;
    overflow: hidden;
    background: #0f0f1a;
    aspect-ratio: 9/19;
}

.vx-phone-screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.vx-phone-button {
    width: 40px;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    margin: 8px auto 4px;
}

.vx-hero-mockup .vx-phone-frame {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

@media (prefers-reduced-motion: reduce) {
    .vx-hero-mockup .vx-phone-frame { animation: none; }
}

/* Sections */
.vx-section {
    padding: 5rem 0;
}

.vx-section-badge {
    display: inline-block;
    padding: 0.25rem 0.875rem;
    background: rgba(108, 92, 231, 0.1);
    color: var(--vx-primary);
    border-radius: 2rem;
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.vx-section-title {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--vx-text);
    margin-bottom: 0.75rem;
}

.vx-section-subtitle {
    font-size: 1.125rem;
    color: var(--vx-muted);
    max-width: 600px;
    margin: 0 auto;
}

.vx-section-heading:not(.text-center) .vx-section-subtitle {
    margin: 0;
}

/* Feature Cards */
.vx-feature-card {
    background: var(--vx-surface);
    border: 1px solid var(--vx-border);
    border-radius: var(--vx-radius-lg);
    padding: 2rem;
    transition: all var(--vx-transition);
}

.vx-feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--vx-shadow);
    border-color: var(--vx-primary-light);
}

.vx-feature-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(108, 92, 231, 0.1), rgba(0, 206, 201, 0.1));
    border-radius: var(--vx-radius);
    font-size: 1.5rem;
    color: var(--vx-primary);
    margin-bottom: 1.25rem;
}

.vx-feature-title {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--vx-text);
}

.vx-feature-desc {
    color: var(--vx-muted);
    margin: 0;
    font-size: 0.9375rem;
}

/* Philosophy Cards */
.vx-philosophy-section {
    background: var(--vx-surface);
    border-top: 1px solid var(--vx-border);
    border-bottom: 1px solid var(--vx-border);
}

.vx-philosophy-card {
    text-align: center;
    padding: 2.5rem 1.5rem;
    border-radius: var(--vx-radius-lg);
    background: var(--vx-background);
    border: 1px solid var(--vx-border);
    transition: all var(--vx-transition);
}

.vx-philosophy-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--vx-shadow);
}

.vx-philosophy-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--vx-cta-gradient);
    border-radius: 50%;
    font-size: 1.75rem;
    color: #fff;
}

.vx-philosophy-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.vx-philosophy-desc {
    color: var(--vx-muted);
    margin: 0;
    font-size: 0.9375rem;
}

/* Check List */
.vx-check-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.vx-check-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9375rem;
    color: var(--vx-text-secondary);
}

.vx-check-list .bi {
    color: var(--vx-secondary);
    flex-shrink: 0;
}

/* Screenshot Gallery */
.vx-screenshot-gallery {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 1rem 0 2rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: var(--vx-primary) var(--vx-border);
}

.vx-screenshot-gallery::-webkit-scrollbar {
    height: 6px;
}

.vx-screenshot-gallery::-webkit-scrollbar-track {
    background: var(--vx-border);
    border-radius: 3px;
}

.vx-screenshot-gallery::-webkit-scrollbar-thumb {
    background: var(--vx-primary);
    border-radius: 3px;
}

.vx-screenshot-item {
    flex: 0 0 auto;
    scroll-snap-align: center;
}

.vx-screenshot-item .vx-phone-frame {
    width: 220px;
}

.vx-screenshot-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--vx-muted);
}

@media (min-width: 992px) {
    .vx-screenshot-gallery {
        flex-wrap: wrap;
        justify-content: center;
        overflow-x: visible;
    }
}

/* CTA Section */
.vx-cta-section {
    background: var(--vx-cta-gradient);
    padding: 5rem 0;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.vx-cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 90% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
}

.vx-cta-text {
    font-size: 1.125rem;
    opacity: 0.9;
    max-width: 480px;
}

.vx-play-badge {
    background: rgba(0, 0, 0, 0.85);
    color: #fff;
    padding: 0.75rem 1.5rem;
    border-radius: var(--vx-radius);
    text-decoration: none;
    transition: all var(--vx-transition);
}

.vx-play-badge:hover {
    background: #000;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: var(--vx-shadow-lg);
}

.vx-play-badge small {
    font-size: 0.6875rem;
    letter-spacing: 0.05em;
    opacity: 0.8;
}

.vx-play-badge strong {
    font-size: 1.125rem;
}

.vx-play-icon {
    font-size: 2rem;
}

/* Premium */
.vx-pricing-card {
    background: var(--vx-surface);
    border: 1px solid var(--vx-border);
    border-radius: var(--vx-radius-xl);
    padding: 2.5rem;
    text-align: center;
    position: relative;
    transition: all var(--vx-transition);
}

.vx-pricing-card:hover {
    box-shadow: var(--vx-shadow);
}

.vx-pricing-featured {
    border-color: var(--vx-primary);
    box-shadow: var(--vx-shadow-primary);
    transform: scale(1.02);
}

.vx-pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--vx-cta-gradient);
    color: #fff;
    padding: 0.25rem 1rem;
    border-radius: 2rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.vx-pricing-plan {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.vx-pricing-price {
    margin-bottom: 1.5rem;
}

.vx-pricing-currency {
    font-size: 1.5rem;
    font-weight: 600;
    vertical-align: top;
    color: var(--vx-primary);
}

.vx-pricing-amount {
    font-size: 3rem;
    font-weight: 800;
    color: var(--vx-text);
    line-height: 1;
}

.vx-pricing-period {
    color: var(--vx-muted);
    font-size: 0.9375rem;
}

.vx-pricing-benefits {
    text-align: left;
    margin-bottom: 2rem;
}

.vx-pricing-benefits li {
    padding: 0.5rem 0;
    color: var(--vx-text-secondary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.vx-pricing-benefits .bi {
    color: var(--vx-secondary);
    font-size: 1.125rem;
}

/* Privacy Card */
.vx-privacy-card {
    background: var(--vx-surface);
    border: 1px solid var(--vx-border);
    border-radius: var(--vx-radius-xl);
    padding: 3rem;
    box-shadow: var(--vx-shadow-sm);
}

/* Page Header */
.vx-page-header {
    background: var(--vx-hero-gradient);
    color: #fff;
    padding: 4rem 0 3rem;
    text-align: center;
}

.vx-page-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 0.5rem;
}

.vx-page-subtitle {
    font-size: 1.125rem;
    opacity: 0.85;
    max-width: 600px;
    margin: 0 auto;
}

/* Prose */
.vx-prose p {
    color: var(--vx-text-secondary);
    margin-bottom: 1rem;
}

.vx-prose-page h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--vx-text);
}

.vx-prose-page h2:first-child {
    margin-top: 0;
}

.vx-prose-page p,
.vx-prose-page li {
    color: var(--vx-text-secondary);
    line-height: 1.8;
}

.vx-prose-page ul {
    padding-left: 1.25rem;
    margin-bottom: 1rem;
}

.vx-legal-notice {
    background: rgba(108, 92, 231, 0.08);
    border: 1px solid rgba(108, 92, 231, 0.2);
    border-radius: var(--vx-radius);
    padding: 1rem 1.25rem;
    margin-bottom: 2rem;
    font-size: 0.9375rem;
}

.vx-about-cta {
    background: var(--vx-surface);
    border: 1px solid var(--vx-border);
}

/* Contact */
.vx-contact-info {
    background: var(--vx-surface);
    border: 1px solid var(--vx-border);
    border-radius: var(--vx-radius-xl);
    padding: 2.5rem;
    height: 100%;
}

.vx-contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.vx-contact-item:last-child {
    margin-bottom: 0;
}

.vx-contact-item .bi {
    font-size: 1.5rem;
    color: var(--vx-primary);
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.vx-contact-item strong {
    display: block;
    margin-bottom: 0.25rem;
    color: var(--vx-text);
}

.vx-contact-item p {
    margin: 0;
    color: var(--vx-muted);
}

.vx-contact-form-card {
    background: var(--vx-surface);
    border: 1px solid var(--vx-border);
    border-radius: var(--vx-radius-xl);
    padding: 2.5rem;
}

.vx-contact-form-card .form-control {
    background: var(--vx-background);
    border: 1px solid var(--vx-border);
    border-radius: var(--vx-radius-sm);
    padding: 0.75rem 1rem;
    color: var(--vx-text);
    transition: border-color var(--vx-transition), box-shadow var(--vx-transition);
}

.vx-contact-form-card .form-control:focus {
    background: var(--vx-background);
    border-color: var(--vx-primary);
    box-shadow: 0 0 0 3px rgba(108, 92, 231, 0.15);
    color: var(--vx-text);
}

.vx-contact-form-card .form-label {
    font-weight: 600;
    color: var(--vx-text);
    font-size: 0.9375rem;
}

.vx-honeypot {
    position: absolute;
    left: -9999px;
    opacity: 0;
    height: 0;
    overflow: hidden;
}

/* Footer */
.vx-footer {
    background: var(--vx-surface);
    border-top: 1px solid var(--vx-border);
    padding: 4rem 0 0;
}

.vx-footer-brand {
    font-weight: 700;
    font-size: 1.125rem;
    color: var(--vx-text);
}

.vx-footer-desc {
    color: var(--vx-muted);
    font-size: 0.9375rem;
    max-width: 280px;
}

.vx-footer-heading {
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--vx-text);
    margin-bottom: 1rem;
}

.vx-footer-links li {
    margin-bottom: 0.5rem;
}

.vx-footer-links a {
    color: var(--vx-muted);
    font-size: 0.9375rem;
    transition: color var(--vx-transition);
}

.vx-footer-links a:hover {
    color: var(--vx-primary);
}

.vx-social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--vx-background);
    border: 1px solid var(--vx-border);
    color: var(--vx-text-secondary);
    transition: all var(--vx-transition);
}

.vx-social-link:hover {
    background: var(--vx-primary);
    color: #fff;
    border-color: var(--vx-primary);
}

.vx-footer-bottom {
    margin-top: 3rem;
    padding: 1.5rem 0;
    border-top: 1px solid var(--vx-border);
    font-size: 0.875rem;
    color: var(--vx-muted);
}

.vx-muted {
    color: var(--vx-muted);
}

/* Back to Top */
.vx-back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--vx-primary);
    color: #fff;
    border: none;
    box-shadow: var(--vx-shadow-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    cursor: pointer;
    z-index: 1020;
    transition: all var(--vx-transition);
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
}

.vx-back-to-top.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.vx-back-to-top:hover {
    background: var(--vx-primary-dark);
    transform: translateY(-2px);
}

/* Reveal Animations */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.15s; }
.reveal-delay-2 { transition-delay: 0.3s; }

/* Responsive */
@media (max-width: 767.98px) {
    .vx-hero {
        padding: 3.5rem 0 4rem;
        text-align: center;
    }

    .vx-hero-text {
        margin-left: auto;
        margin-right: auto;
    }

    .vx-hero .d-flex {
        justify-content: center;
    }

    .vx-section {
        padding: 3.5rem 0;
    }

    .vx-privacy-card {
        padding: 2rem;
        text-align: center;
    }

    .vx-privacy-card .text-lg-end {
        text-align: center !important;
    }

    .vx-pricing-featured {
        transform: none;
    }

    .vx-phone-frame {
        width: 220px;
    }
}

@media (max-width: 374.98px) {
    .vx-hero-title {
        font-size: 2rem;
    }

    .vx-phone-frame {
        width: 200px;
    }
}

/* ==========================================================================
   Privacy Policy Page
   ========================================================================== */

.vx-policy-meta-bar {
    background: var(--vx-surface);
    border-bottom: 1px solid var(--vx-border);
    padding: 1.25rem 0;
}

.vx-policy-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
}

.vx-policy-meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9375rem;
    color: var(--vx-text-secondary);
}

.vx-policy-meta-item .bi {
    color: var(--vx-primary);
    font-size: 1.125rem;
}

.vx-policy-page {
    padding-top: 3rem;
    padding-bottom: 4rem;
}

.vx-policy-content {
    max-width: 760px;
}

/* Policy Sections */
.vx-policy-section {
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid var(--vx-border);
}

.vx-policy-section:last-of-type {
    border-bottom: none;
    margin-bottom: 2rem;
    padding-bottom: 0;
}

.vx-policy-section-title {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--vx-text);
    margin-bottom: 1.25rem;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    scroll-margin-top: calc(var(--vx-navbar-height) + 1rem);
}

.vx-policy-section-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2rem;
    height: 2rem;
    background: linear-gradient(135deg, rgba(108, 92, 231, 0.15), rgba(0, 206, 201, 0.15));
    color: var(--vx-primary);
    border-radius: var(--vx-radius-sm);
    font-size: 0.875rem;
    font-weight: 700;
    flex-shrink: 0;
}

.vx-policy-section-body p,
.vx-policy-section-body li {
    color: var(--vx-text-secondary);
    line-height: 1.85;
    font-size: 1rem;
}

.vx-policy-section-body p {
    margin-bottom: 1rem;
}

.vx-policy-section-body ul {
    padding-left: 1.25rem;
    margin-bottom: 1rem;
}

.vx-policy-highlight {
    background: rgba(108, 92, 231, 0.08);
    border: 1px solid rgba(108, 92, 231, 0.2);
    border-radius: var(--vx-radius);
    padding: 1rem 1.25rem;
    margin: 1.25rem 0;
}

.vx-policy-highlight p {
    color: var(--vx-text);
    font-weight: 500;
}

.vx-policy-facts {
    background: var(--vx-background);
    border: 1px solid var(--vx-border);
    border-radius: var(--vx-radius);
    padding: 1rem 1.25rem;
    margin-top: 1.25rem;
    list-style: none;
}

.vx-policy-facts li {
    padding: 0.375rem 0;
    color: var(--vx-text-secondary);
}

/* Permission Cards */
.vx-policy-permissions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.25rem;
}

.vx-policy-permission-card {
    background: var(--vx-background);
    border: 1px solid var(--vx-border);
    border-radius: var(--vx-radius);
    padding: 1.25rem;
}

.vx-policy-permission-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-bottom: 0.75rem;
}

.vx-policy-permission-label {
    font-size: 0.8125rem;
    color: var(--vx-muted);
    margin-bottom: 0.75rem;
}

.vx-policy-tag {
    display: inline-block;
    padding: 0.2rem 0.625rem;
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    border-radius: 2rem;
    background: var(--vx-border-light);
    color: var(--vx-muted);
}

.vx-policy-tag-required {
    background: rgba(108, 92, 231, 0.12);
    color: var(--vx-primary);
}

/* Third-Party Service Cards */
.vx-policy-services {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.25rem;
}

.vx-policy-service-card {
    background: var(--vx-surface);
    border: 1px solid var(--vx-border);
    border-radius: var(--vx-radius);
    padding: 1.25rem;
    transition: border-color var(--vx-transition);
}

.vx-policy-service-card:hover {
    border-color: var(--vx-primary-light);
}

.vx-policy-service-card h3 {
    color: var(--vx-text);
    margin-bottom: 0.5rem;
}

.vx-policy-service-card p {
    margin-bottom: 0.75rem;
}

/* External Links */
.vx-external-link {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    font-weight: 500;
}

.vx-external-link .bi {
    font-size: 0.75rem;
    opacity: 0.7;
}

/* Policy Table */
.vx-policy-table-wrap {
    margin: 1.25rem 0;
    border: 1px solid var(--vx-border);
    border-radius: var(--vx-radius);
    overflow: hidden;
}

.vx-policy-table {
    margin: 0;
    font-size: 0.9375rem;
}

.vx-policy-table thead {
    background: var(--vx-background);
}

.vx-policy-table th {
    font-weight: 700;
    color: var(--vx-text);
    padding: 0.875rem 1rem;
    border-bottom: 1px solid var(--vx-border);
    white-space: nowrap;
}

.vx-policy-table td {
    padding: 0.875rem 1rem;
    color: var(--vx-text-secondary);
    vertical-align: top;
    border-bottom: 1px solid var(--vx-border-light);
}

.vx-policy-table tbody tr:last-child td {
    border-bottom: none;
}

.vx-policy-table tbody tr:hover {
    background: rgba(108, 92, 231, 0.03);
}

.vx-policy-note {
    color: var(--vx-muted);
    margin-top: 0.75rem;
}

/* Contact CTA */
.vx-policy-contact-cta {
    margin-top: 2rem;
}

.vx-policy-contact-cta-inner {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    background: var(--vx-cta-gradient);
    color: #fff;
    border-radius: var(--vx-radius-xl);
    padding: 2rem;
}

.vx-policy-contact-cta-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.vx-policy-contact-cta p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
}

.vx-policy-contact-cta a:not(.btn) {
    color: #fff;
    text-decoration: underline;
}

.vx-policy-contact-list {
    list-style: none;
    padding: 0;
}

.vx-policy-contact-list li {
    padding: 0.25rem 0;
}

@media (max-width: 767.98px) {
    .vx-policy-section-title {
        font-size: 1.25rem;
    }

    .vx-policy-contact-cta-inner {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .vx-policy-table th,
    .vx-policy-table td {
        padding: 0.75rem;
        font-size: 0.8125rem;
    }
}
