/*
 * Vido Center — main stylesheet
 * Visual language: Microsoft Store inspired layout with Vido Center pink palette
 */

/* ===== Reset / Base ===== */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
    margin: 0;
    font-family: 'Segoe UI', 'Inter', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.55;
    color: var(--vc-text, #1b1b1b);
    background: var(--vc-bg, #fff);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--vc-primary, #c4396c); text-decoration: none; }
a:hover { text-decoration: underline; }

.vc-container {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== Buttons ===== */
.vc-btn {
    display: inline-block;
    padding: 10px 22px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.2px;
    text-decoration: none;
    border: 1px solid transparent;
    cursor: pointer;
    transition: background-color 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease, color 0.15s ease;
    line-height: 1.4;
}
.vc-btn:hover { text-decoration: none; transform: translateY(-1px); }
.vc-btn-primary {
    background: var(--vc-primary, #c4396c);
    color: #fff;
}
.vc-btn-primary:hover {
    background: var(--vc-primary-dark, #a82d58);
    color: #fff;
    box-shadow: 0 4px 12px rgba(196, 57, 108, 0.28);
}
.vc-btn-light {
    background: #ffe1ec;
    color: #88305f;
}
.vc-btn-light:hover {
    background: #ffd0e0;
    color: #6d2349;
}

/* ===== Header ===== */
.vc-site-header {
    background: #fff;
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 0;
    z-index: 100;
}
.vc-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    min-height: 64px;
}

/* Logo */
.vc-logo { flex-shrink: 0; }
.vc-logo-text {
    display: inline-flex;
    align-items: baseline;
    gap: 2px;
    font-weight: 800;
    font-size: 22px;
    color: var(--vc-text);
    text-decoration: none;
    letter-spacing: -0.5px;
}
.vc-logo-text:hover { text-decoration: none; }
.vc-logo-mark {
    color: var(--vc-primary, #c4396c);
}
.vc-logo-sub {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--vc-muted, #616161);
    text-transform: uppercase;
    border: 1.5px solid var(--vc-primary, #c4396c);
    border-radius: 3px;
    padding: 2px 5px;
    margin-left: 4px;
}
.custom-logo-link img { max-height: 48px; width: auto; }

/* Primary nav */
.vc-primary-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}
.vc-nav-menu {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
}
.vc-nav-menu > li {
    position: relative;
}
.vc-nav-menu > li > a {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 10px 14px;
    color: var(--vc-text);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 6px;
    transition: background-color 0.15s ease, color 0.15s ease;
}
.vc-nav-menu > li > a:hover,
.vc-nav-menu > li.current-menu-item > a,
.vc-nav-menu > li.current-menu-parent > a {
    background: var(--vc-primary, #c4396c);
    color: #fff;
    text-decoration: none;
}
/* Dropdown chevron for items with children */
.vc-nav-menu > li.menu-item-has-children > a::after {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    margin-left: 6px;
    margin-bottom: 3px;
    transition: transform 0.2s ease;
}
.vc-nav-menu > li.menu-item-has-children:hover > a::after {
    transform: rotate(-135deg);
    margin-bottom: -1px;
}

/* Sub-menu (dropdown) */
.vc-nav-menu .sub-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    min-width: 240px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12), 0 2px 6px rgba(0,0,0,0.06);
    padding: 8px 0;
    list-style: none;
    margin: 0;
    z-index: 200;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
}
.vc-nav-menu > li:hover > .sub-menu,
.vc-nav-menu > li:focus-within > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}
.vc-nav-menu .sub-menu li { list-style: none; }
.vc-nav-menu .sub-menu a {
    display: block;
    padding: 10px 20px;
    color: var(--vc-text);
    font-size: 14px;
    text-decoration: none;
    transition: background-color 0.12s ease, color 0.12s ease;
}
.vc-nav-menu .sub-menu a:hover {
    background: #fff0f5;
    color: var(--vc-primary, #c4396c);
    text-decoration: none;
}

/* Header actions */
.vc-header-actions {
    display: flex;
    gap: 6px;
    align-items: center;
    flex-shrink: 0;
}
.vc-icon-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--vc-text);
    transition: background-color 0.15s ease, color 0.15s ease;
}
.vc-icon-btn:hover {
    background: #fff0f5;
    color: var(--vc-primary, #c4396c);
    text-decoration: none;
}

/* Mobile menu toggle */
.vc-menu-toggle {
    display: none;
    background: transparent;
    border: 0;
    padding: 8px;
    cursor: pointer;
    width: 40px;
    height: 40px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    border-radius: 4px;
}
.vc-menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--vc-text);
    border-radius: 2px;
    transition: transform 0.2s ease, opacity 0.2s ease;
}
.vc-menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.vc-menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.vc-menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ===== HERO ===== */
.vc-hero {
    background: var(--vc-hero-gradient, linear-gradient(135deg, #2a0e54 0%, #4b1d8a 50%, #1a0938 100%));
    color: #fff;
    padding: 60px 0 80px;
    position: relative;
    overflow: hidden;
}
.vc-hero-head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 40px;
}
.vc-hero-title {
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 700;
    margin: 0 0 16px;
    line-height: 1.15;
    letter-spacing: -0.5px;
}
.vc-hero-subtitle {
    font-size: 14px;
    margin: 0;
    color: rgba(255,255,255,0.85);
    line-height: 1.55;
}
/* ============================================================
   HERO — Bento Grid (asymmetric layout, NOT MS Store clone)
   Different layouts per card count, mobile-stack always.
   ============================================================ */
.vc-hero-eyebrow {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    letter-spacing: 0.3px;
    margin-bottom: 18px;
}
.vc-hero-cta {
    margin-top: 22px;
    font-size: 15px;
    padding: 12px 26px;
}

.vc-hero-cards {
    display: grid;
    gap: 18px;
    margin-top: 36px;
}

/* === 2 cards: 50/50 large === */
.vc-hero-cards.cards-2 {
    grid-template-columns: 1fr 1fr;
}

/* === 3 cards (NO featured): 3 equal columns — fallback === */
.vc-hero-cards.cards-3 {
    grid-template-columns: repeat(3, 1fr);
}
/* === 3 cards WITH featured: 1 big + 2 stacked === */
.vc-hero-cards.cards-3.has-featured {
    grid-template-columns: 1.4fr 1fr;
    grid-auto-rows: auto;
}
.vc-hero-cards.cards-3.has-featured .vc-hero-card-featured {
    grid-row: span 2;
}

/* === 4 cards: 2×2 grid === */
.vc-hero-cards.cards-4 {
    grid-template-columns: 1fr 1fr;
}
.vc-hero-cards.cards-4.has-featured {
    grid-template-columns: 1.4fr 1fr;
    grid-auto-rows: auto;
}
.vc-hero-cards.cards-4.has-featured .vc-hero-card-featured {
    grid-row: span 3;
    min-height: auto;
}

/* === 5 cards: 1 big + 4 grid (3 cols) === */
.vc-hero-cards.cards-5 {
    grid-template-columns: repeat(3, 1fr);
}
.vc-hero-cards.cards-5.has-featured {
    grid-template-columns: 1.4fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
}
.vc-hero-cards.cards-5.has-featured .vc-hero-card-featured {
    grid-row: span 2;
}

/* === 6 cards: 3×2 grid (no featured option) === */
.vc-hero-cards.cards-6 {
    grid-template-columns: repeat(3, 1fr);
}

/* === Card base style === */
.vc-hero-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 28px 24px 24px;
    display: flex;
    flex-direction: column;
    background-size: cover;
    background-position: center;
    min-height: 320px;
    position: relative;
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.vc-hero-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 121, 168, 0.4);
    box-shadow: 0 20px 50px rgba(196, 57, 108, 0.25);
}
.vc-hero-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% -10%, rgba(196, 57, 108, 0.2), transparent 50%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.vc-hero-card:hover::before { opacity: 1; }

/* Featured card — larger text, image takes more space */
.vc-hero-card-featured {
    background: linear-gradient(135deg, rgba(196, 57, 108, 0.18), rgba(75, 29, 138, 0.12));
    border-color: rgba(255, 121, 168, 0.25);
    min-height: 420px;
    padding: 36px 32px 32px;
}

.vc-hero-card-image {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    min-height: 180px;
    position: relative;
    z-index: 1;
    overflow: hidden;
}
.vc-hero-card-image img {
    width: auto;
    height: auto;
    max-width: 75%;
    max-height: 75%;
    object-fit: contain;
    object-position: center;
    filter: drop-shadow(0 16px 32px rgba(0, 0, 0, 0.35));
}
.vc-hero-card-featured .vc-hero-card-image {
    min-height: 320px;
}

.vc-hero-card-body {
    position: relative;
    z-index: 1;
}
.vc-hero-card-title {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 8px;
    line-height: 1.3;
    letter-spacing: -0.2px;
}
.vc-hero-card-featured .vc-hero-card-title {
    font-size: 24px;
}
.vc-hero-card-desc {
    color: rgba(255, 255, 255, 0.78);
    font-size: 13px;
    line-height: 1.55;
    margin: 0 0 16px;
}
.vc-hero-card-featured .vc-hero-card-desc {
    font-size: 14px;
}
.vc-hero-card .vc-btn-light {
    background: #fff;
    color: var(--vc-primary);
    align-self: flex-start;
    font-size: 13px;
    padding: 8px 18px;
    border-radius: 999px;
    font-weight: 700;
}
.vc-hero-card .vc-btn-light:hover {
    background: rgba(255, 255, 255, 0.92);
    transform: translateX(2px);
}

/* === Responsive: mobile/tablet stack === */
@media (max-width: 1024px) {
    .vc-hero-cards.cards-3,
    .vc-hero-cards.cards-3.has-featured,
    .vc-hero-cards.cards-4,
    .vc-hero-cards.cards-4.has-featured,
    .vc-hero-cards.cards-5,
    .vc-hero-cards.cards-5.has-featured,
    .vc-hero-cards.cards-6 {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: none;
    }
    .vc-hero-cards .vc-hero-card-featured {
        grid-row: auto;
        grid-column: span 2;
        min-height: 360px;
    }
}
@media (max-width: 640px) {
    .vc-hero-cards,
    .vc-hero-cards.cards-2,
    .vc-hero-cards.cards-3,
    .vc-hero-cards.cards-3.has-featured,
    .vc-hero-cards.cards-4,
    .vc-hero-cards.cards-4.has-featured,
    .vc-hero-cards.cards-5,
    .vc-hero-cards.cards-5.has-featured,
    .vc-hero-cards.cards-6 {
        grid-template-columns: 1fr;
    }
    .vc-hero-cards .vc-hero-card-featured {
        grid-column: span 1;
    }
    .vc-hero-card {
        min-height: 300px;
        padding: 24px 20px;
        border-radius: 20px;
    }
    .vc-hero-card-featured {
        min-height: 360px;
    }
    .vc-hero-card-title { font-size: 18px; }
    .vc-hero-card-featured .vc-hero-card-title { font-size: 22px; }
}
.vc-hero-card-title {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 8px;
    color: #fff;
    line-height: 1.3;
}
.vc-hero-card-desc {
    font-size: 13px;
    color: rgba(255,255,255,0.85);
    margin: 0 0 16px;
    line-height: 1.45;
}

/* ===== HELP ===== */
.vc-help {
    padding: 40px 0;
    background: #fff;
}
.vc-help-panel {
    background: var(--vc-help-gradient, linear-gradient(135deg, #c4396c 0%, #ff6f9d 100%));
    border-radius: 8px;
    padding: 40px 24px 32px;
    text-align: center;
    color: #fff;
}
.vc-help-title {
    font-size: 24px;
    font-weight: 600;
    margin: 0 0 20px;
}
.vc-help-form {
    max-width: 540px;
    margin: 0 auto 18px;
    background: #fff;
    border-radius: 4px;
    padding: 8px 8px 8px 18px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.vc-help-input {
    flex: 1;
    border: 0;
    background: transparent;
    padding: 8px 0;
    font-size: 14px;
    color: var(--vc-text);
    outline: none;
    font-family: inherit;
}
.vc-help-input::placeholder { color: #aaa; font-style: italic; }
.vc-help-submit {
    background: transparent;
    border: 0;
    cursor: pointer;
    padding: 6px;
    color: var(--vc-primary, #c4396c);
    display: flex;
    align-items: center;
    border-radius: 4px;
}
.vc-help-submit:hover { background: #fff0f5; }
.vc-help-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}
.vc-help-chip {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.8);
    color: #fff;
    padding: 7px 16px;
    border-radius: 999px;
    font-size: 13px;
    text-decoration: none;
    transition: background-color 0.15s ease;
}
.vc-help-chip:hover {
    background: rgba(255,255,255,0.18);
    color: #fff;
    text-decoration: none;
}

/* ===== CATEGORIES ===== */

/* ===== PROMOS ===== */

/* ===== TRADE-IN ===== */

/* ===== FOR BUSINESS ===== */

/* ===== FOOTER ===== */
.vc-site-footer {
    background: #f2f2f2;
    color: var(--vc-text);
    padding: 50px 0 30px;
}
.vc-footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #d8d8d8;
}
.vc-footer-col h4 {
    font-size: 14px;
    font-weight: 600;
    margin: 0 0 12px;
    color: var(--vc-text);
}
.vc-footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.vc-footer-col a {
    font-size: 12px;
    color: var(--vc-muted);
    text-decoration: none;
}
.vc-footer-col a:hover {
    color: var(--vc-primary, #c4396c);
    text-decoration: underline;
}
.vc-footer-bottom {
    padding-top: 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 12px;
    color: var(--vc-muted);
}
.vc-footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 16px;
}
.vc-footer-menu a {
    font-size: 12px;
    color: var(--vc-muted);
    text-decoration: none;
}

/* ===== Content pages ===== */
.vc-content-area {
    padding: 60px 20px;
    max-width: 900px;
    margin: 0 auto;
}
.vc-post-card {
    border-bottom: 1px solid #e6e6e6;
    padding-bottom: 32px;
    margin-bottom: 32px;
}
.vc-post-title {
    font-size: 24px;
    font-weight: 600;
    margin: 0 0 12px;
}
.vc-post-title a { color: var(--vc-text); text-decoration: none; }
.vc-post-title a:hover { color: var(--vc-primary, #c4396c); }
.vc-page-title {
    font-size: 32px;
    font-weight: 700;
    margin: 0 0 24px;
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .vc-hero-cards { grid-template-columns: repeat(2, 1fr); }
    
    
    
    .vc-footer-grid { grid-template-columns: repeat(2, 1fr); }
    .vc-nav-menu > li > a { padding: 8px 10px; font-size: 13px; }
}

@media (max-width: 880px) {
    .vc-menu-toggle { display: flex; order: 3; }
    .vc-header-actions { order: 2; margin-left: auto; }
    .vc-primary-nav {
        order: 4;
        flex-basis: 100%;
        display: none;
        justify-content: flex-start;
    }
    .vc-primary-nav.is-open { display: flex; }
    .vc-nav-menu {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        width: 100%;
        padding: 8px 0 16px;
    }
    .vc-nav-menu > li > a {
        width: 100%;
        justify-content: space-between;
        padding: 12px 8px;
        border-radius: 4px;
    }
    .vc-nav-menu .sub-menu {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        box-shadow: none;
        padding: 0 0 8px 16px;
        min-width: 0;
    }
    .vc-nav-menu > li.menu-item-has-children > a::after {
        margin-left: auto;
    }
}

@media (max-width: 640px) {
    .vc-container { padding: 0 16px; }
    .vc-header-inner { flex-wrap: wrap; gap: 8px; min-height: 56px; }
    .vc-hero { padding: 40px 0 50px; }
    .vc-hero-cards { grid-template-columns: 1fr; gap: 16px; }
    .vc-hero-card { min-height: 360px; }
    .vc-help-panel { padding: 28px 16px 24px; }
    .vc-help-title { font-size: 20px; }
    
    
    
    
    
    
    
    .vc-footer-grid { grid-template-columns: 1fr; gap: 20px; }
    .vc-footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* ============================================================
   INNER PAGE STYLES — applied to every non-front page
   ============================================================ */

/* Page banner (top hero for inner pages) */
.vc-page-banner {
    background: var(--vc-hero-gradient);
    color: #fff;
    padding: 70px 0 50px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.vc-page-banner::after {
    content: '';
    position: absolute;
    bottom: -1px; left: 0; right: 0;
    height: 60px;
    background: linear-gradient(180deg, transparent, var(--vc-bg, #fff));
    pointer-events: none;
}
.vc-page-banner-inner {
    position: relative;
    z-index: 2;
    max-width: 760px;
    margin: 0 auto;
}
.vc-page-banner-eyebrow {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #ffb1d0;
    margin-bottom: 10px;
}
.vc-page-banner-title {
    font-size: clamp(28px, 4.5vw, 48px);
    font-weight: 700;
    margin: 0 0 14px;
    line-height: 1.15;
    letter-spacing: -0.5px;
    color: #fff;
}
.vc-page-banner-subtitle {
    font-size: 16px;
    color: rgba(255,255,255,0.85);
    max-width: 580px;
    margin: 0 auto;
    line-height: 1.6;
}
.vc-breadcrumb {
    margin-top: 20px;
    font-size: 13px;
    color: rgba(255,255,255,0.7);
}
.vc-breadcrumb a { color: rgba(255,255,255,0.85); }
.vc-breadcrumb a:hover { color: #fff; }
.vc-breadcrumb .sep { margin: 0 8px; opacity: 0.5; }

/* Content area: typography for prose */
.vc-content-area {
    padding: 60px 20px;
    max-width: 900px;
    margin: 0 auto;
}
.vc-content-area.has-banner { padding-top: 40px; }

.vc-page-content,
.vc-post-content {
    font-size: 16px;
    line-height: 1.7;
    color: var(--vc-text);
}
.vc-page-content h1, .vc-post-content h1,
.vc-page-content h2, .vc-post-content h2,
.vc-page-content h3, .vc-post-content h3,
.vc-page-content h4, .vc-post-content h4,
.vc-page-content h5, .vc-post-content h5,
.vc-page-content h6, .vc-post-content h6 {
    color: var(--vc-text);
    margin: 1.6em 0 0.5em;
    line-height: 1.25;
    font-weight: 700;
    letter-spacing: -0.3px;
}
.vc-page-content h1, .vc-post-content h1 { font-size: clamp(28px, 3.5vw, 36px); }
.vc-page-content h2, .vc-post-content h2 { font-size: clamp(24px, 3vw, 30px); }
.vc-page-content h3, .vc-post-content h3 { font-size: clamp(20px, 2.5vw, 24px); }
.vc-page-content h4, .vc-post-content h4 { font-size: 18px; }
.vc-page-content h5, .vc-post-content h5 { font-size: 16px; }
.vc-page-content h6, .vc-post-content h6 {
    font-size: 13px; text-transform: uppercase; letter-spacing: 1.5px;
    color: var(--vc-primary);
}
.vc-page-content p, .vc-post-content p { margin: 0 0 1.2em; }
.vc-page-content a, .vc-post-content a {
    color: var(--vc-primary);
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-thickness: 1.5px;
}
.vc-page-content a:hover, .vc-post-content a:hover {
    color: var(--vc-primary-dark);
}
.vc-page-content strong, .vc-post-content strong { font-weight: 700; }
.vc-page-content em, .vc-post-content em { font-style: italic; }

.vc-page-content ul, .vc-post-content ul,
.vc-page-content ol, .vc-post-content ol {
    margin: 0 0 1.4em;
    padding-left: 1.4em;
}
.vc-page-content li, .vc-post-content li { margin-bottom: 0.5em; }
.vc-page-content ul li::marker { color: var(--vc-primary); }

.vc-page-content blockquote, .vc-post-content blockquote {
    border-left: 4px solid var(--vc-primary);
    padding: 14px 22px;
    margin: 1.6em 0;
    background: #fdf5f8;
    border-radius: 0 6px 6px 0;
    font-style: italic;
    color: var(--vc-text);
}
.vc-page-content blockquote p:last-child,
.vc-post-content blockquote p:last-child { margin-bottom: 0; }

.vc-page-content code, .vc-post-content code {
    background: #f3eef0;
    color: var(--vc-primary-dark);
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.9em;
    font-family: 'SF Mono', Monaco, Consolas, monospace;
}
.vc-page-content pre, .vc-post-content pre {
    background: #1b1b1b;
    color: #e8e8e8;
    padding: 18px 22px;
    border-radius: 8px;
    overflow-x: auto;
    margin: 1.4em 0;
    font-size: 14px;
    line-height: 1.5;
}
.vc-page-content pre code, .vc-post-content pre code {
    background: transparent; color: inherit; padding: 0;
}

.vc-page-content img, .vc-post-content img {
    border-radius: 8px;
    margin: 1.4em 0;
    max-width: 100%;
    height: auto;
}
.vc-page-content figure, .vc-post-content figure { margin: 1.6em 0; }
.vc-page-content figure figcaption,
.vc-post-content figure figcaption {
    text-align: center;
    font-size: 13px;
    color: var(--vc-muted);
    margin-top: 8px;
}

.vc-page-content table, .vc-post-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.6em 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}
.vc-page-content table th, .vc-post-content table th {
    background: var(--vc-primary);
    color: #fff;
    text-align: left;
    padding: 12px 16px;
    font-weight: 600;
    font-size: 14px;
}
.vc-page-content table td, .vc-post-content table td {
    padding: 12px 16px;
    border-top: 1px solid #eee;
    font-size: 14px;
}
.vc-page-content table tr:nth-child(even) td,
.vc-post-content table tr:nth-child(even) td { background: #faf7f9; }

.vc-page-content hr, .vc-post-content hr {
    border: 0;
    height: 1px;
    background: #e8e2e6;
    margin: 2em 0;
}

/* WordPress alignment classes */
.vc-page-content .alignleft, .vc-post-content .alignleft {
    float: left; margin: 0 24px 16px 0; max-width: 50%;
}
.vc-page-content .alignright, .vc-post-content .alignright {
    float: right; margin: 0 0 16px 24px; max-width: 50%;
}
.vc-page-content .aligncenter, .vc-post-content .aligncenter {
    display: block; margin-left: auto; margin-right: auto;
}
.vc-page-content .alignwide, .vc-post-content .alignwide {
    margin-left: -60px; margin-right: -60px; max-width: calc(100% + 120px);
}
.vc-page-content .alignfull, .vc-post-content .alignfull {
    margin-left: calc(50% - 50vw); margin-right: calc(50% - 50vw); max-width: 100vw;
}

/* Post meta */
.vc-post-meta {
    color: var(--vc-muted);
    font-size: 13px;
    margin: 8px 0 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px 16px;
    align-items: center;
}
.vc-post-meta a { color: var(--vc-muted); }
.vc-post-meta a:hover { color: var(--vc-primary); }
.vc-post-meta .vc-meta-cat {
    background: #fff0f5;
    color: var(--vc-primary);
    padding: 3px 10px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.vc-post-thumb {
    margin-bottom: 30px;
    border-radius: 12px;
    overflow: hidden;
}
.vc-post-thumb img { width: 100%; height: auto; display: block; }

/* Archive / Blog grid */
.vc-archive {
    padding: 60px 0 80px;
    background: #faf7f9;
    min-height: 60vh;
}
.vc-posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}
.vc-posts-grid .vc-post-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    display: flex;
    flex-direction: column;
    border: 0;
    padding: 0;
    margin: 0;
}
.vc-posts-grid .vc-post-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 32px rgba(0,0,0,0.1);
}
.vc-posts-grid .vc-post-card .vc-post-thumb {
    margin: 0;
    border-radius: 0;
    aspect-ratio: 16/10;
    background: #f3eef0;
}
.vc-posts-grid .vc-post-card .vc-post-thumb img {
    width: 100%; height: 100%; object-fit: cover;
}
.vc-posts-grid .vc-post-body {
    padding: 22px 24px 26px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.vc-posts-grid .vc-post-title {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.35;
    margin: 8px 0 10px;
}
.vc-posts-grid .vc-post-title a {
    color: var(--vc-text);
    text-decoration: none;
}
.vc-posts-grid .vc-post-title a:hover { color: var(--vc-primary); }
.vc-posts-grid .vc-post-excerpt {
    color: var(--vc-muted);
    font-size: 14px;
    line-height: 1.55;
    margin: 0 0 16px;
    flex: 1;
}
.vc-posts-grid .vc-post-readmore {
    color: var(--vc-primary);
    font-weight: 600;
    font-size: 13px;
    text-decoration: none;
    align-self: flex-start;
}
.vc-posts-grid .vc-post-readmore::after { content: ' →'; }
.vc-posts-grid .vc-post-readmore:hover { color: var(--vc-primary-dark); text-decoration: underline; }

/* Pagination */
.vc-pagination {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 50px;
    flex-wrap: wrap;
}
.vc-pagination a, .vc-pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 38px;
    height: 38px;
    padding: 0 12px;
    border-radius: 6px;
    background: #fff;
    color: var(--vc-text);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    border: 1px solid #e8e2e6;
    transition: all 0.15s ease;
}
.vc-pagination a:hover { background: #fff0f5; border-color: var(--vc-primary); color: var(--vc-primary); }
.vc-pagination .current {
    background: var(--vc-primary);
    color: #fff;
    border-color: var(--vc-primary);
}

/* Single post layout with sidebar option */
.vc-single-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    max-width: 900px;
    margin: 0 auto;
}
.vc-single-layout.has-sidebar { grid-template-columns: 1fr 300px; max-width: 1180px; }

.vc-sidebar { font-size: 14px; }
.vc-sidebar .vc-widget {
    background: #fff;
    border-radius: 12px;
    padding: 22px 24px;
    margin-bottom: 24px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}
.vc-sidebar .vc-widget h4 {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--vc-primary);
    margin: 0 0 14px;
}
.vc-sidebar .vc-widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.vc-sidebar .vc-widget li {
    padding: 8px 0;
    border-bottom: 1px solid #f3eef0;
}
.vc-sidebar .vc-widget li:last-child { border-bottom: 0; }
.vc-sidebar .vc-widget a {
    color: var(--vc-text);
    text-decoration: none;
    font-size: 14px;
}
.vc-sidebar .vc-widget a:hover { color: var(--vc-primary); }

/* Related posts (below single) */
.vc-related {
    background: #faf7f9;
    padding: 60px 0;
    margin-top: 60px;
}
.vc-related-title {
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 24px;
    color: var(--vc-text);
}

/* Search form */
.vc-search-form {
    display: flex;
    gap: 8px;
}
.vc-search-form input[type="search"] {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid #e8e2e6;
    border-radius: 8px;
    font-size: 14px;
    font-family: inherit;
    outline: none;
    transition: border-color 0.15s ease;
}
.vc-search-form input[type="search"]:focus { border-color: var(--vc-primary); }
.vc-search-form button {
    background: var(--vc-primary);
    color: #fff;
    border: 0;
    padding: 12px 22px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    font-size: 14px;
}
.vc-search-form button:hover { background: var(--vc-primary-dark); }

/* 404 / Empty state */
.vc-empty {
    text-align: center;
    padding: 80px 20px;
    max-width: 600px;
    margin: 0 auto;
}
.vc-empty .num {
    font-size: clamp(80px, 14vw, 140px);
    font-weight: 800;
    line-height: 1;
    background: linear-gradient(135deg, #c4396c 0%, #ff6f9d 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -3px;
}
.vc-empty h1 { font-size: 28px; margin: 18px 0 12px; }
.vc-empty p { color: var(--vc-muted); margin-bottom: 24px; }

/* Form styling (WPForms / contact forms / Gutenberg form blocks) */
.vc-page-content input[type="text"],
.vc-page-content input[type="email"],
.vc-page-content input[type="tel"],
.vc-page-content input[type="url"],
.vc-page-content input[type="search"],
.vc-page-content textarea,
.vc-page-content select,
.wpforms-field input,
.wpforms-field textarea,
.wpforms-field select {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #d8d4d6;
    border-radius: 8px;
    font-size: 15px;
    font-family: inherit;
    color: var(--vc-text);
    background: #fff;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.vc-page-content input[type="text"]:focus,
.vc-page-content input[type="email"]:focus,
.vc-page-content textarea:focus,
.wpforms-field input:focus,
.wpforms-field textarea:focus {
    border-color: var(--vc-primary);
    box-shadow: 0 0 0 3px rgba(196,57,108,0.15);
    outline: none;
}
.vc-page-content button[type="submit"],
.vc-page-content input[type="submit"],
.wpforms-submit {
    background: var(--vc-primary);
    color: #fff;
    border: 0;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    font-family: inherit;
    transition: background-color 0.15s ease, transform 0.1s ease;
}
.vc-page-content button[type="submit"]:hover,
.vc-page-content input[type="submit"]:hover,
.wpforms-submit:hover {
    background: var(--vc-primary-dark);
    transform: translateY(-1px);
}
.vc-page-content label, .wpforms-field-label {
    display: block;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 6px;
    color: var(--vc-text);
}

/* Comments */
.vc-comments {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid #e8e2e6;
}
.vc-comments h3 { font-size: 22px; margin: 0 0 24px; }
.vc-comment {
    padding: 20px 0;
    border-bottom: 1px solid #f3eef0;
}
.vc-comment-author { font-weight: 700; color: var(--vc-text); }
.vc-comment-date { color: var(--vc-muted); font-size: 13px; }
.vc-comment-body { margin-top: 8px; }

/* Responsive: inner pages */
@media (max-width: 1024px) {
    .vc-posts-grid { grid-template-columns: repeat(2, 1fr); }
    .vc-single-layout.has-sidebar { grid-template-columns: 1fr; }
    .vc-sidebar { max-width: 700px; margin: 0 auto; }
}
@media (max-width: 640px) {
    .vc-page-banner { padding: 40px 0 30px; }
    .vc-content-area { padding: 30px 16px; }
    .vc-posts-grid { grid-template-columns: 1fr; }
    .vc-page-content .alignwide, .vc-post-content .alignwide,
    .vc-page-content .alignfull, .vc-post-content .alignfull {
        margin-left: 0; margin-right: 0;
    }
    .vc-page-content .alignleft, .vc-post-content .alignleft,
    .vc-page-content .alignright, .vc-post-content .alignright {
        float: none; margin: 1em 0; max-width: 100%;
    }
}

/* Contact page 2-column → 1-column on mobile */
@media (max-width: 880px) {
    .vc-content-area [style*="grid-template-columns:1fr 1fr"] {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }
}

/* Mobile breakpoint very small screens — extra tightening */
@media (max-width: 380px) {
    .vc-container { padding: 0 12px; }
    .vc-logo-text { font-size: 18px; }
    .vc-logo-sub { font-size: 10px; padding: 1px 4px; }
    .vc-hero-title, .vc-page-banner-title { font-size: 24px; }
    .vc-hero-card { min-height: 320px; }
    .vc-help-title, 
    .vc-btn { padding: 9px 16px; font-size: 13px; }
}

/* ============================================================
   LANGUAGE SWITCHER (EN/VI)
   ============================================================ */
.vc-lang-switcher {
    display: inline-flex;
    align-items: center;
    background: #f5f0f3;
    border-radius: 999px;
    padding: 3px;
    gap: 0;
    margin-right: 4px;
}
.vc-lang-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 10px;
    border-radius: 999px;
    text-decoration: none;
    color: var(--vc-muted);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    transition: background 0.15s ease, color 0.15s ease;
    line-height: 1;
}
.vc-lang-btn .vc-flag { font-size: 14px; line-height: 1; }
.vc-lang-btn .vc-lang-code { line-height: 1; }
.vc-lang-btn:hover {
    color: var(--vc-primary);
    text-decoration: none;
    background: rgba(255,255,255,0.6);
}
.vc-lang-btn.is-active {
    background: var(--vc-primary);
    color: #fff;
}
.vc-lang-btn.is-active:hover {
    background: var(--vc-primary-dark);
    color: #fff;
}
@media (max-width: 640px) {
    .vc-lang-btn .vc-lang-code { display: none; }
    .vc-lang-btn { padding: 6px 8px; }
}

/* ============================================================
   PRICING PAGE STYLES (page-pricing.php)
   ============================================================ */
/* PRICING PAGE STYLES */

.vc-page-hero {
    background: var(--vc-hero-gradient);
    color: #fff;
    padding: 80px 0 60px;
    text-align: center;
}
.vc-page-hero h1 {
    font-size: clamp(36px, 5vw, 52px);
    font-weight: 700;
    margin: 0 0 16px;
    letter-spacing: -1px;
}
.vc-page-hero p {
    font-size: 16px;
    max-width: 640px;
    margin: 0 auto 32px;
    color: rgba(255,255,255,0.85);
}

/* Billing toggle */
.vc-billing-toggle {
    display: inline-flex;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 999px;
    padding: 4px;
    gap: 0;
}
.vc-billing-toggle button {
    background: transparent;
    border: 0;
    padding: 8px 22px;
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    font-weight: 600;
    border-radius: 999px;
    cursor: pointer;
    transition: all 0.18s ease;
}
.vc-billing-toggle button.active {
    background: #fff;
    color: var(--vc-primary);
}
.vc-billing-toggle .save-badge {
    margin-left: 6px;
    background: var(--vc-primary);
    color: #fff;
    font-size: 11px;
    padding: 2px 7px;
    border-radius: 4px;
    font-weight: 700;
}
.vc-billing-toggle button.active .save-badge { background: var(--vc-primary); color: #fff; }
.vc-billing-toggle button:not(.active) .save-badge { background: rgba(255,255,255,0.2); color: #fff; }

/
.vc-pricing-head {
    text-align: center;
    margin-bottom: 40px;
}
.vc-pricing-eyebrow {
    font-size: 13px;
    font-weight: 700;
    color: var(--vc-primary);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

/* Pricing grid */
.vc-pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}
.vc-pricing-grid.two-col {
    grid-template-columns: repeat(2, 1fr);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}
.vc-plan-billing { font-size: 12px; color: var(--vc-muted); margin-bottom: 22px; }
.vc-plan-billing .pink { color: var(--vc-primary); font-weight: 600; }
/* Old .vc-plan-features li styling removed in v3.2.3 (kept v3.1+ block below) */
/

/* Setup fee callout */
.vc-setup-fee {
    background: #f6f0f3;
    border-left: 4px solid var(--vc-primary);
    padding: 16px 20px;
    margin-top: 32px;
    border-radius: 4px;
    font-size: 13px;
    color: var(--vc-text);
}
.vc-setup-fee strong { color: var(--vc-primary); }

/* Combo highlight section */
.vc-combo-section {
    background: linear-gradient(135deg, #2a0e54 0%, #4b1d8a 100%);
    color: #fff;
    padding: 70px 0;
}
.vc-combo-section .vc-pricing-eyebrow { color: #ffb1d0; }
.vc-combo-section h2 { color: #fff; }
.vc-combo-section .lead { color: rgba(255,255,255,0.85); }
.vc-combo-card {
    background: #fff;
    border-radius: 14px;
    padding: 40px;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    align-items: center;
    margin-top: 40px;
}
.vc-combo-price-block { text-align: center; padding-right: 40px; border-right: 1px solid #eee; }
.vc-combo-features { color: var(--vc-text); }
.vc-combo-features h4 { margin: 0 0 14px; font-size: 18px; }
.vc-combo-features ul { list-style: none; padding: 0; margin: 0; }
.vc-combo-features li {
    padding: 6px 0 6px 24px;
    font-size: 14px;
    position: relative;
}
.vc-combo-features li::before {
    content: "★";
    position: absolute;
    left: 0;
    color: var(--vc-primary);
    font-size: 14px;
}
.vc-combo-features li strong { color: var(--vc-primary); }

@media (max-width: 1024px) {
    .vc-pricing-grid { grid-template-columns: repeat(2, 1fr); }
    .vc-combo-card { grid-template-columns: 1fr; gap: 30px; }
    .vc-combo-price-block { padding-right: 0; border-right: 0; border-bottom: 1px solid #eee; padding-bottom: 30px; }
}
@media (max-width: 640px) {
    .vc-page-hero { padding: 50px 0 40px; }
    .vc-pricing-grid { grid-template-columns: 1fr; }
    .vc-combo-card { padding: 24px; }
}

.vc-lang-switcher { display: inline-flex; align-items: center; background: #f5f0f3; border-radius: 999px; padding: 3px; gap: 0; margin-right: 4px; }
.vc-lang-btn { display: inline-flex; align-items: center; gap: 5px; padding: 5px 10px; border-radius: 999px; text-decoration: none; color: var(--vc-muted); font-size: 12px; font-weight: 700; letter-spacing: 0.5px; transition: background 0.15s ease, color 0.15s ease; line-height: 1; }
.vc-lang-btn .vc-flag { font-size: 14px; line-height: 1; }
.vc-lang-btn:hover { color: var(--vc-primary); text-decoration: none; background: rgba(255,255,255,0.6); }
.vc-lang-btn.is-active { background: var(--vc-primary); color: #fff; }
.vc-lang-btn.is-active:hover { background: var(--vc-primary-dark); color: #fff; }
@media (max-width: 640px) { .vc-lang-btn .vc-lang-code { display: none; } .vc-lang-btn { padding: 6px 8px; } }
/* ============================================================
   POS / SERVICE PAGE STYLES (page-pos-merchant.php, etc)
   ============================================================ */
/* POS PRODUCT PAGE STYLES */

.vc-page-hero {
    background: var(--vc-hero-gradient);
    color: #fff;
    padding: 90px 0 70px;
    text-align: center;
}
.vc-page-hero .eyebrow {
    font-size: 13px; font-weight: 700; letter-spacing: 3px;
    text-transform: uppercase; color: #ffb1d0; margin-bottom: 12px;
}
.vc-page-hero h1 {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 800; margin: 0 0 20px; letter-spacing: -1.5px; line-height: 1.1;
}
.vc-page-hero p {
    font-size: 17px; max-width: 720px; margin: 0 auto 32px;
    color: rgba(255,255,255,0.85); line-height: 1.6;
}
.vc-page-hero-cta {
    display: inline-flex; gap: 12px; flex-wrap: wrap; justify-content: center;
}

/* Feature section (image left/right alternating) */
.vc-feature-section { padding: 90px 0; background: #fff; }
.vc-feature-section:nth-child(even) { background: #faf7f9; }

.vc-feature-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.vc-feature-block.reverse > div:first-child { order: 2; }

.vc-feature-text .eyebrow {
    font-size: 12px; font-weight: 700; letter-spacing: 2.5px;
    text-transform: uppercase; color: var(--vc-primary); margin-bottom: 10px;
}
.vc-feature-text h2 {
    font-size: clamp(26px, 3.6vw, 38px);
    font-weight: 700; margin: 0 0 16px; line-height: 1.2; letter-spacing: -0.5px;
}
.vc-feature-text > p.lead {
    font-size: 16px; color: var(--vc-muted); line-height: 1.7; margin: 0 0 24px;
}

/* removed in v3.4.4: old ::before check (replaced by .ic span) */
.vc-feature-cta {
    display: inline-flex; gap: 12px; flex-wrap: wrap;
}

.vc-feature-block.reverse 

/* Guarantee banner */
.vc-guarantee-banner {
    background: linear-gradient(135deg, #c4396c 0%, #ff6f9d 100%);
    color: #fff;
    padding: 60px 0;
    text-align: center;
}
.vc-guarantee-banner .stamp {
    display: inline-flex; align-items: center; justify-content: center;
    width: 100px; height: 100px; border-radius: 50%;
    background: rgba(255,255,255,0.15); border: 2px dashed rgba(255,255,255,0.5);
    font-size: 40px; margin-bottom: 18px;
}
.vc-guarantee-banner h2 {
    font-size: clamp(24px, 3.5vw, 36px);
    font-weight: 700; margin: 0 0 12px; color: #fff;
}
.vc-guarantee-banner p {
    font-size: 16px; max-width: 680px; margin: 0 auto 24px;
    color: rgba(255,255,255,0.95); line-height: 1.6;
}
.vc-guarantee-banner .vc-btn {
    background: #fff; color: var(--vc-primary);
}
.vc-guarantee-banner .vc-btn:hover { background: #fff5f8; color: var(--vc-primary-dark); }

/* Stats row */
.vc-stats-row {
    background: #1b1b1b;
    color: #fff;
    padding: 50px 0;
}
.vc-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}
.vc-stat .num {
    display: block;
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    color: #ff6f9d;
    line-height: 1;
    letter-spacing: -1px;
}
.vc-stat .label {
    font-size: 13px;
    color: rgba(255,255,255,0.7);
    margin-top: 8px;
    letter-spacing: 0.5px;
}

@media (max-width: 880px) {
    .vc-feature-block { grid-template-columns: 1fr; gap: 32px; }
    .vc-feature-block.reverse > div:first-child { order: 0; }
    .vc-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}
@media (max-width: 640px) {
    .vc-page-hero { padding: 50px 0 40px; }
    .vc-feature-section { padding: 50px 0; }
    
}

.vc-lang-switcher { display: inline-flex; align-items: center; background: #f5f0f3; border-radius: 999px; padding: 3px; gap: 0; margin-right: 4px; }
.vc-lang-btn { display: inline-flex; align-items: center; gap: 5px; padding: 5px 10px; border-radius: 999px; text-decoration: none; color: var(--vc-muted); font-size: 12px; font-weight: 700; letter-spacing: 0.5px; transition: background 0.15s ease, color 0.15s ease; line-height: 1; }
.vc-lang-btn .vc-flag { font-size: 14px; line-height: 1; }
.vc-lang-btn:hover { color: var(--vc-primary); text-decoration: none; background: rgba(255,255,255,0.6); }
.vc-lang-btn.is-active { background: var(--vc-primary); color: #fff; }
.vc-lang-btn.is-active:hover { background: var(--vc-primary-dark); color: #fff; }
@media (max-width: 640px) { .vc-lang-btn .vc-lang-code { display: none; } .vc-lang-btn { padding: 6px 8px; } }
/* ============================================================
   HEADER COMPACT FIX (v2.4.2)
   Reduce nav spacing so menu fits in 1 line at common widths
   ============================================================ */
@media (min-width: 1025px) and (max-width: 1280px) {
    .vc-nav-menu { gap: 6px; }
    .vc-nav-menu > li > a { padding: 8px 12px; font-size: 13px; letter-spacing: 0.3px; }
    .vc-logo-img { max-height: 44px; }
    .vc-header-actions { gap: 8px; }
}
@media (max-width: 1024px) {
    /* Mobile menu kicks in via JS — no compact CSS needed here */
}

/* ============================================================
   DESIGN DIFFERENTIATION FROM MICROSOFT (v3.0)
   Make sections visually distinct from MS Store layout
   ============================================================ */

/* Help panel — change from horizontal pill to rounded card with side accent */
.vc-help-panel {
    border-radius: 32px !important;
    position: relative;
    overflow: hidden;
}
.vc-help-panel::before {
    content: '';
    position: absolute;
    top: -50px; right: -50px;
    width: 200px; height: 200px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    pointer-events: none;
}
.vc-help-panel::after {
    content: '';
    position: absolute;
    bottom: -80px; left: -80px;
    width: 240px; height: 240px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 50%;
    pointer-events: none;
}

/* Categories — staggered/scattered look instead of even grid */

.vc-cat-item { list-style: none; flex: 0 0 auto; }

/* Promo cards — alternating sizes for organic look (not all-equal MS grid) */

/* Trade-in — split asymmetric, NOT a card with image */

/* For Business — pill-shaped cards instead of square */

/* ============================================================
   RESPONSIVE — Mobile-first improvements
   Ensures all sections work on 320px → 4k screens
   ============================================================ */

/* Tablet portrait & mobile landscape */
@media (max-width: 880px) {
    
    
    
    .vc-help-title { font-size: 22px !important; }
    .vc-hero-title { font-size: 32px !important; line-height: 1.2 !important; }
}

/* Mobile portrait */
@media (max-width: 640px) {
    .vc-container { padding: 0 16px; }
    .vc-hero { padding: 40px 0 50px !important; }
    .vc-hero-title { font-size: 26px !important; }
    .vc-hero-subtitle { font-size: 14px !important; }
    .vc-hero-eyebrow { font-size: 11px; padding: 4px 10px; }
    .vc-help { padding: 20px 0 !important; }
    .vc-help-panel { padding: 30px 20px !important; border-radius: 24px !important; }
    
    
    
    
    
    
    
    
    
    
    .vc-site-footer { padding: 40px 0 30px !important; }
    .vc-footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px 20px;
    }
}

/* Small mobile */
@media (max-width: 380px) {
    .vc-hero-title { font-size: 22px !important; }
    .vc-hero-card { padding: 20px 16px; }
    
    
    .vc-footer-grid { grid-template-columns: 1fr; }
}

/* Tap targets — ensure mobile buttons are at least 44px (Apple/Google guidelines) */
@media (max-width: 880px) {
    .vc-btn, .vc-icon-btn, .vc-menu-toggle, .vc-lang-btn,
    .vc-nav-menu > li > a, .vc-help-chip {
        min-height: 44px;
        display: inline-flex;
        align-items: center;
    }
}

/* ============================================================
   PRICING PAGE v3.1 — CPT-driven plan cards with badges
   ============================================================ */

.vc-pricing-section {
    padding: 50px 0;
}
.vc-pricing-section + .vc-pricing-section {
    border-top: 1px solid #f3eef0;
}
.vc-pricing-section-head {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 36px;
}
.vc-pricing-section-head h2 {
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 700;
    margin: 0 0 8px;
    color: var(--vc-text);
}
.vc-pricing-section-head p {
    color: var(--vc-muted);
    margin: 0;
    font-size: 15px;
}

.vc-plan-grid {
    display: grid;
    gap: 22px;
    max-width: 1180px;
    margin: 0 auto;
    align-items: stretch;
}
.vc-plan-grid.plans-1 { grid-template-columns: 1fr; max-width: 460px; }
.vc-plan-grid.plans-2 { grid-template-columns: 1fr 1fr; max-width: 760px; }
.vc-plan-grid.plans-3 { grid-template-columns: repeat(3, 1fr); }
.vc-plan-grid.plans-4 { grid-template-columns: repeat(4, 1fr); }
.vc-plan-grid.plans-5,
.vc-plan-grid.plans-6 { grid-template-columns: repeat(3, 1fr); }

.vc-plan-card {
    background: #fff;
    border: 2px solid #f0e9ee;
    border-radius: 20px;
    padding: 32px 24px 28px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.vc-plan-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
    border-color: #e8e2e6;
}

.vc-plan-card.is-featured {
    border-color: var(--vc-primary);
    box-shadow: 0 8px 32px rgba(196, 57, 108, 0.18);
    transform: scale(1.03);
    background: linear-gradient(180deg, #fff 0%, #fff8fb 100%);
}
.vc-plan-card.is-featured:hover {
    transform: scale(1.05) translateY(-4px);
    box-shadow: 0 24px 56px rgba(196, 57, 108, 0.28);
}

.vc-plan-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--vc-primary), #ff6f9d);
    color: #fff;
    padding: 6px 18px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    box-shadow: 0 4px 12px rgba(196, 57, 108, 0.4);
    white-space: nowrap;
}

.vc-plan-head {
    text-align: center;
    padding-bottom: 20px;
    border-bottom: 1px solid #f3eef0;
    margin-bottom: 20px;
}
.vc-plan-image {
    max-width: 120px;
    margin: 0 auto 14px;
}
.vc-plan-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}
.vc-plan-icon {
    font-size: 44px;
    line-height: 1;
    margin-bottom: 10px;
}
.vc-plan-name {
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 6px;
    color: var(--vc-text);
}
.vc-plan-tagline {
    font-size: 13px;
    color: var(--vc-muted);
    margin: 0;
    line-height: 1.4;
}

.vc-plan-price {
    text-align: center;
    margin-bottom: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}
.vc-plan-price .amount {
    font-size: 42px;
    font-weight: 800;
    color: var(--vc-primary);
    letter-spacing: -1px;
    line-height: 1;
}
.vc-plan-price .period-wrap {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    line-height: 1.3;
}
.vc-plan-price .period {
    font-size: 14px;
    color: var(--vc-muted);
}
.vc-plan-price .promo {
    font-size: 12px;
    color: var(--vc-muted);
    opacity: 0.85;
    margin-top: 2px;
}

.vc-plan-features {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    flex: 1;
}
.vc-plan-features li {
    display: flex;
    gap: 8px;
    padding: 7px 0;
    font-size: 14px;
    line-height: 1.45;
    color: var(--vc-text);
}
.vc-plan-features li.unavailable {
    color: #b8b0b4;
    text-decoration: line-through;
    text-decoration-thickness: 1px;
}
.vc-plan-features .check {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #fff0f5;
    color: var(--vc-primary);
    font-size: 11px;
    font-weight: 700;
    margin-top: 1px;
}
/* Wrapper so <strong>, <em>, text inside li flow inline, not as separate flex items */
.vc-plan-features li .text {
    flex: 1;
    display: block;
}
.vc-plan-features li .text strong {
    font-weight: 700;
    color: var(--vc-text);
}
.vc-plan-features li .text em {
    font-style: italic;
    color: var(--vc-muted);
    font-size: 13px;
}
.vc-plan-features li.unavailable .text {
    color: #b8b0b4;
}
.vc-plan-features li.unavailable .text strong {
    color: #b8b0b4;
}
.vc-plan-features li.unavailable .check {
    background: #f3eef0;
    color: #b8b0b4;
}

.vc-plan-cta {
    width: 100%;
    text-align: center;
    padding: 13px 20px;
    font-size: 14px;
    font-weight: 700;
}
.vc-plan-card.is-featured .vc-plan-cta {
    background: linear-gradient(135deg, var(--vc-primary), #ff6f9d);
    box-shadow: 0 6px 20px rgba(196, 57, 108, 0.3);
}

/* Responsive pricing */
@media (max-width: 1024px) {
    .vc-plan-grid.plans-3,
    .vc-plan-grid.plans-4,
    .vc-plan-grid.plans-5,
    .vc-plan-grid.plans-6 {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 640px) {
    .vc-plan-grid,
    .vc-plan-grid.plans-2,
    .vc-plan-grid.plans-3,
    .vc-plan-grid.plans-4,
    .vc-plan-grid.plans-5,
    .vc-plan-grid.plans-6 {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .vc-plan-card.is-featured {
        transform: none;
    }
    .vc-plan-card { padding: 28px 20px 24px; }
    .vc-plan-price .amount { font-size: 36px; }
}

/* Pricing section footnotes (SMS add-on, setup fees, etc) */
.vc-pricing-note {
    max-width: 740px;
    margin: 30px auto 0;
    padding: 20px 24px;
    background: #faf7f9;
    border-left: 4px solid var(--vc-primary);
    border-radius: 8px;
    font-size: 13px;
    line-height: 1.6;
    color: var(--vc-text);
}
.vc-pricing-note p { margin: 0 0 8px; }
.vc-pricing-note p:last-child { margin-bottom: 0; }
.vc-pricing-note strong { color: var(--vc-primary); }
.vc-pricing-note em { color: var(--vc-muted); font-size: 12px; }

/* ============================================================
   HOMEPAGE — Feature Blocks, Testimonials, Stats, FAQ (v3.4)
   ============================================================ */

/* --- Section heads (shared) --- */
.vc-section-head { text-align: center; max-width: 760px; margin: 0 auto 44px; }
.vc-section-eyebrow {
    display: inline-block;
    color: var(--vc-primary);
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 10px;
}
.vc-section-head h2 {
    font-size: clamp(24px, 3.5vw, 36px);
    font-weight: 800;
    line-height: 1.25;
    margin: 0;
    color: var(--vc-text);
}

/* --- Feature Blocks --- */
.vc-features { padding: 70px 0; }
.vc-feature-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
    padding: 50px 0;
}
.vc-feature-block + .vc-feature-block { border-top: 1px solid #f1ebef; }
.vc-feature-block.img-left .vc-feature-text { order: 2; }
.vc-feature-block.img-left .vc-feature-image { order: 1; }
.vc-feature-eyebrow {
    display: inline-block;
    color: var(--vc-primary);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.vc-feature-title {
    font-size: clamp(26px, 3vw, 34px);
    font-weight: 800;
    margin: 0 0 14px;
    color: var(--vc-text);
}
.vc-feature-intro {
    font-size: 16px;
    line-height: 1.6;
    color: var(--vc-muted);
    margin: 0 0 22px;
}
.vc-feature-subhead {
    font-size: 15px;
    font-weight: 700;
    color: var(--vc-primary);
    margin: 20px 0 12px;
}
.vc-feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 12px;
}
.vc-feature-list li {
    display: flex;
    gap: 10px;
    padding: 7px 0;
    font-size: 14.5px;
    line-height: 1.55;
    color: var(--vc-text);
}
.vc-feature-list .ic { flex-shrink: 0; font-size: 15px; }
.vc-feature-list .tx { flex: 1; }
.vc-feature-cta { margin-top: 22px; display: inline-block; }
.vc-feature-image { text-align: center; }
.vc-feature-image {
    text-align: center;
}
.vc-feature-image img {
    max-width: var(--vc-feature-img-size, 100%);
    height: auto;
    display: inline-block;
    /* No border-radius / shadow — image shows as-is (user upload transparent PNG for clean look) */
}

/* --- Testimonials --- */
.vc-testimonials { padding: 70px 0; background: linear-gradient(180deg, #fdf8fb 0%, #fff 100%); }
.vc-review-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    max-width: 1140px;
    margin: 0 auto;
}
.vc-review-card {
    background: #fff;
    border: 1px solid #f1ebef;
    border-radius: 20px;
    padding: 32px 28px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.04);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.vc-review-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(196,57,108,0.12); }
.vc-review-stars { color: #ffb800; font-size: 18px; letter-spacing: 2px; margin-bottom: 16px; }
.vc-review-quote { font-size: 14.5px; line-height: 1.65; color: var(--vc-text); margin: 0 0 24px; font-style: italic; }
.vc-review-author { display: flex; align-items: center; gap: 14px; }
.vc-review-avatar { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; }
.vc-review-name { font-weight: 700; font-size: 15px; color: var(--vc-text); }
.vc-review-role { font-size: 13px; color: var(--vc-muted); }

/* --- Stats --- */
.vc-stats { padding: 70px 0; }
.vc-stats-head { text-align: center; max-width: 760px; margin: 0 auto 44px; }
.vc-stats-head h2 { font-size: clamp(22px, 3vw, 32px); font-weight: 800; line-height: 1.3; margin: 10px 0 0; }
.vc-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}
.vc-stat {
    padding: 36px 24px;
    background: linear-gradient(135deg, #fff5f9, #fdeef5);
    border-radius: 20px;
}
.vc-stat-num {
    font-size: clamp(36px, 5vw, 52px);
    font-weight: 900;
    color: var(--vc-primary);
    line-height: 1;
    letter-spacing: -1px;
}
.vc-stat-label { font-size: 14px; color: var(--vc-muted); margin-top: 12px; line-height: 1.5; }

/* --- FAQ --- */
.vc-faq { padding: 70px 0; background: linear-gradient(180deg, #fff 0%, #fdf8fb 100%); }
.vc-faq-list { max-width: 800px; margin: 0 auto; }
.vc-faq-item {
    background: #fff;
    border: 1px solid #f1ebef;
    border-radius: 14px;
    margin-bottom: 14px;
    overflow: hidden;
}
.vc-faq-q {
    padding: 20px 24px;
    font-weight: 700;
    font-size: 15.5px;
    color: var(--vc-text);
    cursor: pointer;
    list-style: none;
    position: relative;
    padding-right: 50px;
}
.vc-faq-q::-webkit-details-marker { display: none; }
.vc-faq-q::after {
    content: '+';
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    color: var(--vc-primary);
    font-weight: 400;
    transition: transform 0.2s ease;
}
.vc-faq-item[open] .vc-faq-q::after { content: '−'; }
.vc-faq-a {
    padding: 0 24px 22px;
    font-size: 14.5px;
    line-height: 1.65;
    color: var(--vc-muted);
}
.vc-faq-a p { margin: 0 0 10px; }

/* --- Responsive --- */
@media (max-width: 980px) {
    .vc-feature-block { grid-template-columns: 1fr; gap: 32px; }
    .vc-feature-block.img-left .vc-feature-text,
    .vc-feature-block.img-left .vc-feature-image { order: initial; }
    .vc-feature-block .vc-feature-image { order: -1; }
    .vc-review-grid { grid-template-columns: 1fr 1fr; }
    .vc-stats-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
    .vc-features, .vc-testimonials, .vc-stats, .vc-faq { padding: 44px 0; }
    .vc-feature-block { padding: 30px 0; }
    .vc-review-grid { grid-template-columns: 1fr; }
    .vc-stats-grid { grid-template-columns: 1fr; }
    .vc-feature-list li { font-size: 14px; }
}
