/* ========================================
   Landing Page CSS - Thang Máy Đại Lộc Phát
   Thang Máy Tải Thực Phẩm
   For WordPress Flatsome Theme
   FIXED VERSION
   ======================================== */

/* ========== CSS VARIABLES ========== */
:root {
    --primary: #c72929;
    --primary-dark: #a02020;
    --primary-light: rgba(199, 41, 41, 0.1);
    --background-light: #ffffff;
    --background-subtle: #f5f5f5;
    --background-dark: #201212;
    --text-main: #333333;
    --text-muted: #666666;
    --border-color: #e5e7eb;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --radius-sm: 0.25rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* ========== RESET & BASE ========== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* ========== CONTAINER ========== */
.vlt-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .vlt-container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .vlt-container {
        padding: 0 2rem;
    }
}

/* ========== UTILITIES ========== */
.vlt-text-center {
    text-align: center;
}

.vlt-text-primary {
    color: var(--primary);
}

.vlt-section-header {
    max-width: 48rem;
    margin: 0 auto 4rem;
}

.vlt-section-title {
    font-family: var(--font-family);
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--text-main);
    line-height: 1.2;
    letter-spacing: -0.025em;
    margin-bottom: 1rem;
}

@media (min-width: 640px) {
    .vlt-section-title {
        font-size: 2.25rem;
    }
}

.vlt-section-desc {
    font-family: var(--font-family);
    font-size: 1.125rem;
    color: var(--text-muted);
    line-height: 1.75;
}

/* ========== BUTTONS ========== */
.vlt-btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    background: var(--primary);
    color: #fff;
    font-family: var(--font-family);
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    border: none;
    border-radius: var(--radius-sm);
    box-shadow: 0 10px 15px -3px rgba(199, 41, 41, 0.25);
    cursor: pointer;
    transition: all 0.3s ease;
}

.vlt-btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.vlt-btn-primary svg {
    width: 20px;
    height: 20px;
}

.vlt-btn-primary.vlt-btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
    box-shadow: 0 20px 25px -5px rgba(199, 41, 41, 0.25);
}

.vlt-btn-primary.vlt-btn-lg:hover {
    transform: translateY(-4px);
}

.vlt-btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    background: #fff;
    color: var(--text-main);
    font-family: var(--font-family);
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all 0.3s ease;
}

.vlt-btn-secondary:hover {
    background: #f9fafb;
}

.vlt-btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: #fff;
    color: var(--primary);
    font-family: var(--font-family);
    font-size: 0.875rem;
    font-weight: 700;
    text-decoration: none;
    border: 2px solid var(--primary);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all 0.3s ease;
}

.vlt-btn-outline:hover {
    background: var(--primary);
    color: #fff;
    box-shadow: var(--shadow-lg);
}

.vlt-btn-outline svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.vlt-btn-outline:hover svg {
    transform: translateX(4px);
}

.vlt-btn-white {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: #fff;
    color: var(--primary);
    font-family: var(--font-family);
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    border: none;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-lg);
    cursor: pointer;
    transition: all 0.3s ease;
}

.vlt-btn-white:hover {
    background: #f9fafb;
}

.vlt-btn-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: rgba(160, 32, 32, 0.3);
    color: #fff;
    font-family: var(--font-family);
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all 0.3s ease;
}

.vlt-btn-ghost:hover {
    background: rgba(160, 32, 32, 0.5);
}

.vlt-btn-ghost svg {
    width: 20px;
    height: 20px;
}

/* ========== HERO SECTION ========== */
.vlt-hero {
    padding: 3rem 0 4rem;
    background: var(--background-light);
    overflow: hidden;
}

@media (min-width: 1024px) {
    .vlt-hero {
        padding: 5rem 0 6rem;
    }
}

.vlt-hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .vlt-hero-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.vlt-hero-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.vlt-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.25rem 0.75rem;
    background: var(--primary-light);
    color: var(--primary);
    font-family: var(--font-family);
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 9999px;
    width: fit-content;
}

.vlt-badge-icon {
    width: 16px;
    height: 16px;
}

.vlt-hero-title {
    font-family: var(--font-family);
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--text-main);
    line-height: 1.15;
    letter-spacing: -0.025em;
}

@media (min-width: 640px) {
    .vlt-hero-title {
        font-size: 3rem;
    }
}

@media (min-width: 1024px) {
    .vlt-hero-title {
        font-size: 3.75rem;
    }
}

.vlt-hero-desc {
    font-family: var(--font-family);
    font-size: 1.125rem;
    color: var(--text-muted);
    line-height: 1.75;
    max-width: 32rem;
}

.vlt-checklist {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    list-style: none;
}

.vlt-checklist li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-family);
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-main);
}

.vlt-check-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: 9999px;
    flex-shrink: 0;
}

.vlt-check-icon svg {
    width: 14px;
    height: 14px;
}

.vlt-hero-cta {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 0.5rem;
}

@media (min-width: 640px) {
    .vlt-hero-cta {
        flex-direction: row;
    }
}

.vlt-hero-location {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-family: var(--font-family);
    font-size: 0.75rem;
    color: var(--text-muted);
}

.vlt-hero-location svg {
    width: 14px;
    height: 14px;
    color: var(--primary);
}

.vlt-hero-image {
    position: relative;
    width: 100%;
}

.vlt-hero-image-wrapper {
    position: relative;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    background: #f3f4f6;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border-color);
}

@media (min-width: 1024px) {
    .vlt-hero-image-wrapper {
        height: 600px;
    }
}

.vlt-hero-image-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top right, rgba(0, 0, 0, 0.2), transparent);
    z-index: 1;
}

.vlt-hero-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vlt-hero-badge {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    z-index: 2;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(4px);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(243, 244, 246, 1);
    max-width: 280px;
}

.vlt-hero-badge-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #dcfce7;
    color: #16a34a;
    border-radius: 9999px;
    flex-shrink: 0;
}

.vlt-hero-badge-icon svg {
    width: 20px;
    height: 20px;
}

.vlt-hero-badge-text {
    display: flex;
    flex-direction: column;
}

.vlt-hero-badge-text strong {
    font-family: var(--font-family);
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--text-main);
}

.vlt-hero-badge-text span {
    font-family: var(--font-family);
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 0.125rem;
}

/* ========== ABOUT SECTION ========== */
.vlt-about {
    padding: 4rem 0;
    background: var(--background-subtle);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.vlt-about-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background: #fff;
    color: var(--primary);
    border-radius: 9999px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 2rem;
}

.vlt-about-icon svg {
    width: 32px;
    height: 32px;
}

.vlt-about .vlt-section-title {
    margin-bottom: 1.5rem;
}

.vlt-quote-box {
    position: relative;
    background: #fff;
    padding: 2rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    max-width: 56rem;
    margin: 0 auto;
}

.vlt-quote-mark {
    position: absolute;
    top: -0.75rem;
    left: 2rem;
    font-size: 3.75rem;
    color: #e5e7eb;
    font-family: serif;
    line-height: 1;
}

.vlt-quote-text {
    font-family: var(--font-family);
    font-size: 1.125rem;
    font-style: italic;
    font-weight: 500;
    color: var(--text-muted);
    line-height: 1.75;
    position: relative;
    z-index: 1;
}

.vlt-quote-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.vlt-quote-author img {
    width: 40px;
    height: 40px;
    border-radius: 9999px;
    object-fit: cover;
    background: #e5e7eb;
}

.vlt-quote-author div {
    text-align: left;
}

.vlt-quote-author strong {
    display: block;
    font-family: var(--font-family);
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--text-main);
}

.vlt-quote-author span {
    font-family: var(--font-family);
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* ========== FEATURES SECTION ========== */
.vlt-features {
    padding: 5rem 0;
    background: #fff;
}

.vlt-features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

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

.vlt-feature-card {
    position: relative;
    padding: 2rem;
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: all 0.3s ease;
}

.vlt-feature-card:hover {
    border-color: rgba(199, 41, 41, 0.5);
    box-shadow: var(--shadow-lg);
}

.vlt-feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: #fef2f2;
    color: var(--primary);
    border-radius: var(--radius-lg);
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.vlt-feature-card:hover .vlt-feature-icon {
    background: var(--primary);
    color: #fff;
}

.vlt-feature-icon svg {
    width: 28px;
    height: 28px;
}

.vlt-feature-title {
    font-family: var(--font-family);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 0.75rem;
}

.vlt-feature-desc {
    font-family: var(--font-family);
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.625;
    margin-bottom: 1.5rem;
}

.vlt-feature-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.vlt-feature-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-family);
    font-size: 0.875rem;
    color: var(--text-main);
}

.vlt-feature-list svg {
    width: 18px;
    height: 18px;
    color: var(--primary);
    flex-shrink: 0;
}

/* ========== PROJECTS SECTION ========== */
.vlt-projects {
    padding: 5rem 0;
    background: var(--background-light);
    border-top: 1px solid var(--border-color);
    position: relative;
}

.vlt-projects::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 160px;
    height: 160px;
    background: #fef2f2;
    border-bottom-left-radius: 9999px;
    opacity: 0.5;
}

.vlt-projects-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.375rem 1rem;
    background: #fef2f2;
    color: var(--primary);
    font-family: var(--font-family);
    font-size: 0.875rem;
    font-weight: 700;
    border: 1px solid rgba(199, 41, 41, 0.2);
    border-radius: 9999px;
    margin-bottom: 1.5rem;
}

.vlt-projects-badge svg {
    width: 18px;
    height: 18px;
}

.vlt-projects-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

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

@media (min-width: 1024px) {
    .vlt-projects-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.vlt-project-card {
    position: relative;
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    cursor: pointer;
}

.vlt-project-card:hover {
    box-shadow: var(--shadow-xl);
    border-color: rgba(199, 41, 41, 0.4);
}

.vlt-project-image {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    background: #f3f4f6;
}

.vlt-project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.vlt-project-card:hover .vlt-project-image img {
    transform: scale(1.05);
}

.vlt-project-status {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    padding: 0.25rem 0.5rem;
    background: rgba(199, 41, 41, 0.9);
    color: #fff;
    font-family: var(--font-family);
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: var(--radius-sm);
    backdrop-filter: blur(4px);
}

.vlt-project-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 1.5rem;
}

.vlt-project-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
}

.vlt-project-cat {
    font-family: var(--font-family);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--primary);
}

.vlt-project-year {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-family: var(--font-family);
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-muted);
}

.vlt-project-year svg {
    width: 14px;
    height: 14px;
}

.vlt-project-title {
    font-family: var(--font-family);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.vlt-project-card:hover .vlt-project-title {
    color: var(--primary);
}

.vlt-project-desc {
    font-family: var(--font-family);
    font-size: 0.75rem;
    font-style: italic;
    color: var(--text-muted);
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.vlt-project-specs {
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid #f3f4f6;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.vlt-project-spec {
    display: flex;
    justify-content: space-between;
    font-family: var(--font-family);
    font-size: 0.875rem;
}

.vlt-project-spec span {
    color: var(--text-muted);
}

.vlt-project-spec strong {
    color: var(--text-main);
    font-weight: 500;
}

/* ========== WHEN SECTION ========== */
.vlt-when {
    padding: 4rem 0;
    background: #fff;
    border-top: 1px solid #f3f4f6;
}

.vlt-when-box {
    max-width: 56rem;
    margin: 0 auto;
    padding: 2rem;
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-sm);
}

@media (min-width: 640px) {
    .vlt-when-box {
        padding: 3rem;
    }
}

.vlt-when-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

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

.vlt-when-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.vlt-when-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: #fef2f2;
    color: var(--primary);
    border-radius: 9999px;
    box-shadow: 0 0 0 4px #fff, var(--shadow-sm);
    margin-bottom: 1rem;
}

.vlt-when-icon svg {
    width: 28px;
    height: 28px;
}

.vlt-when-item h3 {
    font-family: var(--font-family);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 0.5rem;
}

.vlt-when-item p {
    font-family: var(--font-family);
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.625;
}

/* ========== SPECS SECTION ========== */
.vlt-specs {
    padding: 5rem 0;
    background: var(--background-subtle);
    border-top: 1px solid var(--border-color);
}

.vlt-specs-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

@media (min-width: 1024px) {
    .vlt-specs-grid {
        flex-direction: row;
        align-items: flex-start;
    }
}

.vlt-specs-table-wrapper {
    flex: 1;
    min-width: 0;
}

.vlt-specs-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-family);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 1.5rem;
}

.vlt-specs-title svg {
    width: 24px;
    height: 24px;
    color: var(--primary);
}

.vlt-table-container {
    overflow-x: auto;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    background: #fff;
    box-shadow: var(--shadow-sm);
}

.vlt-table {
    width: 100%;
    border-collapse: collapse;
    font-family: var(--font-family);
    font-size: 0.875rem;
}

.vlt-table thead {
    background: #f9fafb;
}

.vlt-table th {
    padding: 1rem 1.5rem;
    text-align: left;
    font-weight: 700;
    color: var(--text-main);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.75rem;
    white-space: nowrap;
}

.vlt-table tbody tr {
    border-top: 1px solid var(--border-color);
    transition: background 0.2s ease;
}

.vlt-table tbody tr:hover {
    background: #f9fafb;
}

.vlt-table td {
    padding: 1rem 1.5rem;
}

.vlt-table td:first-child {
    font-weight: 500;
    color: var(--text-main);
}

.vlt-table td:not(:first-child) {
    color: var(--text-muted);
}

/* ========== SPECS SIDEBAR - FIXED ========== */
.vlt-specs-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    width: 100%;
}

@media (min-width: 1024px) {
    .vlt-specs-sidebar {
        width: 320px;
        flex-shrink: 0;
    }
}

.vlt-warning-box {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: var(--radius-lg);
}

.vlt-warning-icon {
    flex-shrink: 0;
    color: var(--primary);
}

.vlt-warning-icon svg {
    width: 32px;
    height: 32px;
}

.vlt-warning-box h3 {
    font-family: var(--font-family);
    font-size: 1.125rem;
    font-weight: 700;
    color: #7f1d1d;
    margin-bottom: 0.5rem;
}

.vlt-warning-box p {
    font-family: var(--font-family);
    font-size: 0.875rem;
    color: #991b1b;
    line-height: 1.625;
}

/* ========== SPECS IMAGES - FIXED ========== */
.vlt-specs-images {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
}

.vlt-specs-images img {
    width: 100%;
    height: auto;
    aspect-ratio: 4/3;
    object-fit: cover;
    border-radius: var(--radius-lg);
    background: #e5e7eb;
    display: block;
}

/* ========== PRICING SECTION ========== */
.vlt-pricing {
    padding: 5rem 0;
    background: #fff;
    border-top: 1px solid var(--border-color);
}

.vlt-pricing-location {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    font-family: var(--font-family);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--primary);
    margin-bottom: 1rem;
}

.vlt-pricing-location svg {
    width: 14px;
    height: 14px;
}

.vlt-pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

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

.vlt-pricing-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem;
    background: #f9fafb;
    border: 1px solid #f3f4f6;
    border-radius: var(--radius-xl);
    transition: box-shadow 0.3s ease;
}

.vlt-pricing-item:hover {
    box-shadow: var(--shadow-md);
}

.vlt-pricing-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: #fff;
    color: var(--primary);
    border: 1px solid #f3f4f6;
    border-radius: 9999px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 1rem;
}

.vlt-pricing-icon svg {
    width: 24px;
    height: 24px;
}

.vlt-pricing-item h3 {
    font-family: var(--font-family);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 0.5rem;
}

.vlt-pricing-item p {
    font-family: var(--font-family);
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.625;
}

/* ========== COMPARISON SECTION ========== */
.vlt-compare {
    padding: 5rem 0;
    background: #fff;
    border-top: 1px solid var(--border-color);
}

.vlt-compare-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 64rem;
    margin: 0 auto;
}

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

.vlt-compare-card {
    padding: 1.5rem;
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.vlt-compare-recommended {
    position: relative;
    background: #fff;
    border: 2px solid rgba(199, 41, 41, 0.2);
    box-shadow: var(--shadow-lg);
}

.vlt-compare-badge {
    position: absolute;
    top: 0;
    right: 0;
    padding: 0.25rem 0.75rem;
    background: var(--primary);
    color: #fff;
    font-family: var(--font-family);
    font-size: 0.75rem;
    font-weight: 700;
    border-bottom-left-radius: var(--radius-lg);
}

.vlt-compare-not-recommended {
    background: #f9fafb;
    border: 1px solid var(--border-color);
    opacity: 0.8;
}

.vlt-compare-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.vlt-compare-header svg {
    width: 32px;
    height: 32px;
}

.vlt-compare-recommended .vlt-compare-header svg {
    color: var(--primary);
}

.vlt-compare-not-recommended .vlt-compare-header svg {
    color: #6b7280;
}

.vlt-compare-header h3 {
    font-family: var(--font-family);
    font-size: 1.25rem;
    font-weight: 700;
}

.vlt-compare-recommended .vlt-compare-header h3 {
    color: var(--text-main);
}

.vlt-compare-not-recommended .vlt-compare-header h3 {
    color: #374151;
}

.vlt-compare-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.vlt-compare-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.vlt-compare-list svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}

.vlt-compare-good svg {
    color: #16a34a;
}

.vlt-compare-bad svg {
    color: #dc2626;
}

.vlt-compare-list span {
    font-family: var(--font-family);
    font-size: 0.875rem;
    line-height: 1.5;
}

.vlt-compare-good span {
    color: var(--text-main);
}

.vlt-compare-bad span {
    color: #4b5563;
}

/* ========== CTA SECTION ========== */
.vlt-cta {
    position: relative;
    padding: 5rem 0;
    background: var(--primary);
    overflow: hidden;
}

.vlt-cta-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.1;
    background-image: radial-gradient(#ffffff 1px, transparent 1px);
    background-size: 20px 20px;
}

.vlt-cta .vlt-container {
    position: relative;
    z-index: 1;
    text-align: center;
}

.vlt-cta-title {
    font-family: var(--font-family);
    font-size: 1.875rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .vlt-cta-title {
        font-size: 2.25rem;
    }
}

.vlt-cta-desc {
    font-family: var(--font-family);
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.75;
    max-width: 42rem;
    margin: 0 auto 2.5rem;
}

.vlt-cta-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

@media (min-width: 640px) {
    .vlt-cta-buttons {
        flex-direction: row;
    }
}

.vlt-cta-buttons .vlt-btn-white,
.vlt-cta-buttons .vlt-btn-ghost {
    width: 100%;
}

@media (min-width: 640px) {
    .vlt-cta-buttons .vlt-btn-white,
    .vlt-cta-buttons .vlt-btn-ghost {
        width: auto;
    }
}

/* ========== RESPONSIVE FIXES ========== */
@media (max-width: 767px) {
    .vlt-section-header {
        margin-bottom: 2rem;
    }
    
    .vlt-section-title {
        font-size: 1.5rem;
    }
    
    .vlt-section-desc {
        font-size: 1rem;
    }
    
    .vlt-hero {
        padding: 2rem 0 3rem;
    }
    
    .vlt-hero-title {
        font-size: 1.75rem;
    }
    
    .vlt-hero-desc {
        font-size: 1rem;
    }
    
    .vlt-features,
    .vlt-projects,
    .vlt-specs,
    .vlt-pricing,
    .vlt-compare {
        padding: 3rem 0;
    }
    
    .vlt-when-box {
        padding: 1.5rem;
    }
    
    .vlt-quote-box {
        padding: 1.5rem;
    }
    
    .vlt-quote-text {
        font-size: 1rem;
    }
    
    .vlt-cta {
        padding: 3rem 0;
    }
    
    .vlt-cta-title {
        font-size: 1.5rem;
    }
    
    .vlt-cta-desc {
        font-size: 1rem;
    }
}

/* ========== FONT IMPORT (Add to WP) ========== */
/* 
Add this to your WordPress theme's header or custom CSS:
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;700;800&display=swap');
*/