/* Container base */
.vj-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px
}

/* Hero */
.vj-hero {
    background: var(--vj-bg);
    padding: 56px 0 36px
}

.vj-hero__title {
    font-size: clamp(28px, 4vw, 40px);
    line-height: 1.2;
    margin: 0 0 18px;
    color: #0b1e31;
    font-weight: 800
}

.vj-hero__title span {
    color: var(--vj-primary)
}

.vj-search {
    display: grid;
    grid-template-columns: 1fr 1fr 1.2fr auto;
    gap: 12px;
    background: #fff;
    border: 1px solid var(--vj-line);
    padding: 14px;
    border-radius: 16px;
    box-shadow: var(--vj-shadow)
}

@media (max-width:920px) {
    .vj-search {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width:560px) {
    .vj-search {
        grid-template-columns: 1fr
    }
}

.vj-search__group {
    display: grid;
    gap: 6px
}

.vj-search__group--grow {
    grid-column: span 1
}

.vj-search label {
    font-size: 12px;
    color: var(--vj-muted)
}

.vj-search input {
    height: 44px;
    border: 1px solid var(--vj-line);
    border-radius: 10px;
    padding: 0 12px
}

.vj-btn {
    height: 44px;
    padding: 0 18px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    font-weight: 700
}

.vj-btn--primary {
    background: var(--vj-primary);
    color: #fff
}

.vj-btn--dark {
    background: #0f172a;
    color: #fff
}

.vj-swap {
    position: absolute;
    right: -6px;
    top: 28px;
    transform: translateX(50%);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid var(--vj-line);
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center
}

.vj-search__group:first-child {
    position: relative
}

/* Section base */
.vj-section {
    padding: 36px 0
}

.vj-section--muted {
    background: #f7fbff
}

.vj-section__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px
}

.vj-section__title {
    margin: 0;
    font-size: 22px
}

.vj-link-more {
    color: var(--vj-accent);
    text-decoration: none;
    font-weight: 700
}

/* Grid cards */
.vj-grid {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(4, 1fr)
}

@media (max-width:1024px) {
    .vj-grid {
        grid-template-columns: repeat(3, 1fr)
    }
}

@media (max-width:720px) {
    .vj-grid {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media (max-width:520px) {
    .vj-grid {
        grid-template-columns: 1fr
    }
}

.vj-card {
    background: #fff;
    border: 1px solid var(--vj-line);
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: var(--vj-shadow)
}

.vj-card__thumb {
    display: block;
    background: #e5eef6;
    background-size: cover;
    background-position: center;
    height: 170px
}

.vj-card__thumb--empty {
    background-image: linear-gradient(135deg, #e6f3fb, #d8ebf7)
}

.vj-card__body {
    padding: 12px
}

.vj-card__title {
    margin: 0 0 8px;
    font-size: 16px
}

.vj-chip {
    display: inline-block;
    background: #eef6ff;
    border: 1px solid #dbeafe;
    color: #1e40af;
    padding: 3px 8px;
    border-radius: 999px;
    font-size: 12px
}

.vj-price {
    margin-top: 8px;
    font-weight: 800;
    color: #0f172a
}

/* Logos */
.vj-grid--logos .vj-logoCard {
    background: #fff;
    border: 1px dashed #dbeafe;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column
}

.vj-logoCard__media {
    height: 120px;
    background: #f1f5f9;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat
}

.vj-logoCard__media--empty {
    background-image: linear-gradient(135deg, #eef2f7, #e8edf3)
}

.vj-logoCard__body {
    padding: 12px
}

.vj-logoCard__title {
    margin: 0 0 6px;
    font-size: 16px
}

/* Steps / Reasons */
.vj-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px
}

@media (max-width:900px) {
    .vj-steps {
        grid-template-columns: 1fr
    }
}

.vj-step {
    background: #fff;
    border: 1px solid var(--vj-line);
    border-radius: 14px;
    padding: 16px;
    box-shadow: var(--vj-shadow)
}

.vj-step__num {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: var(--vj-bg);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
    font-weight: 800;
    color: #06324c
}

.vj-reasons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px
}

@media (max-width:900px) {
    .vj-reasons {
        grid-template-columns: 1fr
    }
}

.vj-reason {
    background: #fff;
    border: 1px solid var(--vj-line);
    border-radius: 14px;
    padding: 16px
}

/* Newsletter */
.vj-news {
    background: linear-gradient(180deg, #f7fbff, #f0f9ff)
}

.vj-news__wrap {
    display: flex;
    gap: 18px;
    align-items: center;
    justify-content: space-between;
    padding: 22px 0
}

@media (max-width:780px) {
    .vj-news__wrap {
        flex-direction: column;
        align-items: stretch
    }
}

.vj-news__text h3 {
    margin: 0 0 4px
}

.vj-news__form {
    display: flex;
    gap: 10px
}

.vj-news__form input {
    height: 44px;
    border: 1px solid var(--vj-line);
    border-radius: 10px;
    padding: 0 12px;
    min-width: 260px
}

/* FAQ */
.vj-faq {
    padding: 36px 0
}

.vj-faq__item {
    border: 1px solid var(--vj-line);
    border-radius: 12px;
    padding: 12px 14px;
    margin-bottom: 10px;
    background: #fff
}

.vj-faq__item[open] {
    border-color: #c7dbff
}

.vj-faq__item summary {
    cursor: pointer;
    font-weight: 700
}

.vj-faq__item p {
    margin: .5rem 0 0
}