/* ============================================
   RESET & BASE
   ============================================ */
.vr-homepage * {
    box-sizing: border-box;
}

.vr-homepage {
    font-family: var(--vr-font-primary);
    color: var(--vr-text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

.vr-container {
    max-width: var(--vr-container-max);
    margin: 0 auto;
    padding: 0 24px;
}

/* ============================================
   BADGES (Reusable)
   ============================================ */
.vr-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: var(--vr-radius-full);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.vr-badge--primary {
    background: var(--vr-primary);
    color: var(--vr-white);
}

.vr-badge--outline {
    background: var(--vr-white);
    border: 1.5px solid var(--vr-primary);
    color: var(--vr-primary);
}

.vr-badge--dark {
    background: var(--vr-dark);
    color: var(--vr-white);
}

.vr-badge--red {
    background: #e74c3c;
    color: var(--vr-white);
}

.vr-badge--green {
    background: #27ae60;
    color: var(--vr-white);
}

.vr-badge--orange {
    background: #f5a623;
    color: var(--vr-white);
}

.vr-badge--small {
    padding: 4px 10px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ============================================
   BUTTONS
   ============================================ */
.vr-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--vr-radius-md);
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: var(--vr-transition);
    border: none;
    font-family: var(--vr-font-primary);
}

.vr-btn--primary {
    background: var(--vr-primary);
    color: var(--vr-white)!important;
}

.vr-btn--primary:hover {
    background: var(--vr-primary-hover);
    transform: translateY(-1px);
    box-shadow: var(--vr-shadow-md);
}

.vr-btn--outline {
    background: var(--vr-white);
    color: var(--vr-primary);
    border: 2px solid var(--vr-border);
}

.vr-btn--outline:hover {
    border-color: var(--vr-primary);
    background: var(--vr-primary-light);
}

.vr-product-card__btn:hover{
    color: var(--vr-white) !important;
}

.vr-btn--dark {
    background: var(--vr-primary-dark);
    color: var(--vr-white);
}

.vr-btn--dark:hover {
    background: var(--vr-dark-blue);
    color: var(--vr-white);
}

.vr-btn--full {
    width: 100%;
}

/* ============================================
   HERO SECTION - Dark Minimal
   ============================================ */
.vr-hero-shop {
    position: relative;
    padding: 80px 0 64px;
    overflow: hidden;
}

/* Background image */
.vr-hero-shop__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.vr-hero-shop__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Dark overlay */
.vr-hero-shop__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        135deg,
        rgba(15, 23, 42, 0.94) 0%,
        rgba(15, 23, 42, 0.92) 40%,
        rgba(26, 35, 50, 0.88) 100%
    );
}

/* Content */
.vr-hero-shop .vr-container {
    position: relative;
    z-index: 2;
}

.vr-hero-shop__content {
    max-width: 720px;
}

/* Kicker */
.vr-hero-shop__kicker {
    font-family: 'SF Mono', 'Fira Code', 'Consolas', monospace;
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.02em;
    line-height: 1.6;
    margin: 0 0 24px;
}

/* Title */
.vr-hero-shop__title {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.12;
    margin: 0 0 24px;
    letter-spacing: -0.03em;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.vr-hero-shop__dot {
    color: var(--vr-accent);
}

/* Description */
.vr-hero-shop__desc {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    margin: 0 0 36px;
    max-width: 540px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

/* CTA Buttons */
.vr-hero-shop__cta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.vr-hero-shop__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.vr-hero-shop__btn--primary {
    background: var(--vr-accent);
    color: var(--vr-hero-bg) !important;
    box-shadow: 0 4px 20px rgba(45, 212, 191, 0.25);
}

.vr-hero-shop__btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(45, 212, 191, 0.35);
    color: var(--vr-hero-bg) !important;
}

.vr-hero-shop__btn--ghost {
    background: transparent;
    color: rgba(255, 255, 255, 0.8) !important;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.vr-hero-shop__btn--ghost:hover {
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.95) !important;
    border-color: rgba(255, 255, 255, 0.35);
}

/* Stats Row */
.vr-hero-shop__stats {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0;
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.4);
}

.vr-hero-shop__stats span {
    white-space: nowrap;
}

.vr-hero-shop__stats-sep {
    margin: 0 12px;
    opacity: 0.4;
}

/* ============================================
   MARQUEE
   ============================================ */
.vr-marquee {
    background: var(--vr-hero-bg);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 14px 0;
    overflow: hidden;
}

.vr-marquee__track {
    display: flex;
    align-items: center;
    gap: 0;
    white-space: nowrap;
    animation: vr-marquee-scroll 40s linear infinite;
    width: max-content;
}

.vr-marquee__item {
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.35);
    letter-spacing: 0.01em;
}

.vr-marquee__sep {
    margin: 0 16px;
    color: rgba(255, 255, 255, 0.15);
    font-size: 14px;
}

@keyframes vr-marquee-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ============================================
   HERO RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .vr-hero-shop {
        padding: 64px 0 56px;
    }
}

@media (max-width: 768px) {
    .vr-hero-shop {
        padding: 56px 0 48px;
    }

    .vr-hero-shop__overlay {
        background: linear-gradient(
            180deg,
            rgba(15, 23, 42, 0.80) 0%,
            rgba(15, 23, 42, 0.75) 50%,
            rgba(15, 23, 42, 0.70) 100%
        );
    }

    .vr-hero-shop__title {
        font-size: 34px;
    }

    .vr-hero-shop__desc {
        font-size: 15px;
    }

    .vr-hero-shop__cta {
        flex-direction: column;
        align-items: stretch;
    }

    .vr-hero-shop__btn {
        width: 100%;
        padding: 16px 24px;
    }

    .vr-hero-shop__stats {
        font-size: 12px;
    }

    .vr-hero-shop__stats-sep {
        margin: 0 8px;
    }
}

@media (max-width: 530px) {
    .vr-hero-shop {
        padding: 48px 0 40px;
    }

    .vr-hero-shop__title {
        font-size: 30px;
    }

    .vr-hero-shop__kicker {
        font-size: 11px;
    }

    .vr-hero-shop__desc {
        font-size: 14px;
        margin-bottom: 28px;
    }

    .vr-hero-shop__cta {
        margin-bottom: 32px;
    }

    .vr-hero-shop__stats {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }

    .vr-hero-shop__stats-sep {
        display: none;
    }
}

@media (max-width: 380px) {
    .vr-hero-shop__title {
        font-size: 26px;
    }
}

#block-20 {
    margin-top: 0;
}
/* ============================================
   SECTION 2: TRUST BOXES
   ============================================ */
.vr-trust-boxes {
    padding: 60px 0;
    background: var(--vr-white);
}

.vr-trust-boxes__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.vr-trust-box {
    background: var(--vr-white);
    border: 1px solid var(--vr-border);
    border-radius: var(--vr-radius-lg);
    padding: 24px;
    transition: var(--vr-transition);
}

.vr-trust-box:hover {
    border-color: var(--vr-primary);
    box-shadow: var(--vr-shadow-md);
}

.vr-trust-box__icon {
    width: 44px;
    height: 44px;
    border-radius: var(--vr-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    color: var(--vr-white);
}

.vr-trust-box__icon--blue { background: var(--vr-primary); }
.vr-trust-box__icon--green { background: #27ae60; }
.vr-trust-box__icon--yellow { background: #f5a623; }
.vr-trust-box__icon--purple { background: #8e44ad; }

.vr-trust-box__icon svg {
    width: 22px;
    height: 22px;
}

.vr-trust-box__title {
    font-size: 14px;
    font-weight: 600;
    color: var(--vr-text);
    margin: 0 0 8px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.vr-trust-box__desc {
    font-size: 14px;
    color: var(--vr-text-light);
    margin: 0;
    line-height: 1.5;
}

/* ============================================
   SECTION 3: PRODUCTS
   ============================================ */
.vr-products {
    padding: var(--vr-section-padding) 0;
    background: linear-gradient(180deg, var(--vr-bg-light) 0%, var(--vr-white) 100%);
}

.vr-section-header {
    text-align: center;
    margin-bottom: 48px;
}

.vr-section-header__badge {
    margin-bottom: 16px;
}

.vr-section-header__title {
    font-size: 24px;
    font-weight: 600;
    color: var(--vr-text);
    margin: 0 0 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.vr-section-header__subtitle {
    font-size: 15px;
    color: var(--vr-text-light);
    margin: 0;
}

/* Product Tabs */
.vr-products__tabs {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 36px;
    flex-wrap: wrap;
}

.vr-products__tab {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 9px 20px;
    border: 1.5px solid var(--vr-border);
    border-radius: var(--vr-radius-full);
    background: var(--vr-white);
    color: var(--vr-text-light);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--vr-transition);
    font-family: var(--vr-font-primary);
    line-height: 1;
}

.vr-products__tab:hover {
    border-color: var(--vr-primary);
    color: var(--vr-primary);
}

.vr-products__tab--active {
    background: var(--vr-primary);
    color: var(--vr-white);
    border-color: var(--vr-primary);
}

.vr-products__tab--active:hover {
    color: var(--vr-white);
}

.vr-products__tab-count {
    font-size: 12px;
    font-weight: 600;
    opacity: 0.7;
}

.vr-products__tab--active .vr-products__tab-count {
    opacity: 0.85;
}

/* Product Card hidden state */
.vr-product-card--hidden {
    display: none !important;
}

/* Product Grid */
.vr-products__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
}

/* Product Card */
.vr-product-card {
    background: var(--vr-white);
    border: 1px solid var(--vr-border);
    border-radius: var(--vr-radius-lg);
    overflow: hidden;
    transition: var(--vr-transition);
    position: relative;
    display: flex;
    flex-direction: column;
}

.vr-product-card:hover {
    border-color: var(--vr-primary);
    box-shadow: var(--vr-shadow-lg);
    transform: translateY(-4px);
}

.vr-product-card__image {
    position: relative;
    padding-top: 85%;
    background: var(--vr-bg-light);
}

.vr-product-card__image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 0;
}

.vr-product-card__badges {
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    display: flex;
    justify-content: space-between;
    z-index: 2;
}

.vr-product-card__discount {
    background: var(--vr-accent-red);
    color: var(--vr-white);
    padding: 3px 7px;
    border-radius: var(--vr-radius-sm);
    font-size: 11px;
    font-weight: 700;
}

.vr-product-card__body {
    padding: 16px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.vr-product-card__name {
    font-size: 14px;
    font-weight: 600;
    color: var(--vr-text);
    margin: 0 0 3px;
}

.vr-product-card__grade {
    font-size: 12px;
    color: var(--vr-text-light);
    margin: 0 0 6px;
}

.vr-product-card__rating {
    display: flex;
    align-items: center;
    gap: 5px;
    margin: 0 0 8px;
}

.vr-product-card__rating .vr-stars {
    display: inline-flex;
    gap: 1px;
}

.vr-product-card__rating .vr-star {
    width: 14px;
    height: 14px;
    color: #f59e0b;
}

.vr-product-card__rating-text {
    font-size: 12px;
    color: var(--vr-text-light);
    font-weight: 500;
}

.vr-product-card__price {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin-bottom: 12px;
    margin-top: auto;
}

.vr-product-card__price-from {
    font-size: 12px;
    color: var(--vr-text-light);
    font-weight: 500;
}

.vr-product-card__price-old {
    font-size: 12px;
    color: var(--vr-text-light);
    text-decoration: line-through;
}

.vr-product-card__price-current {
    font-size: 17px;
    font-weight: 700;
    color: var(--vr-primary);
}

.vr-product-card__price-current::after {
    content: none;
}

.vr-product-card__btn {
    width: 100%;
    padding: 10px 16px;
    background: var(--vr-primary);
    color: var(--vr-white);
    border: none;
    border-radius: var(--vr-radius-md);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: var(--vr-transition);
}

.vr-product-card__btn:hover {
    background: var(--vr-primary-hover);
}

.vr-products__cta {
    text-align: center;
}
.vr-product-card-name__link{
    text-decoration: none;
    color: inherit;
    font-weight: inherit;
}
.vr-product-card-name__link:hover{
    text-decoration: none;
    color: inherit;
}
/* ============================================
   SECTION 4: CERTIFICATES
   ============================================ */
.vr-certificates {
    padding: var(--vr-section-padding) 0;
    background: linear-gradient(180deg, var(--vr-white) 0%, var(--vr-primary-light) 100%);
}

.vr-certificates__wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.vr-certificates__visual {
    display: flex;
    gap: 24px;
    justify-content: center;
}

.vr-cert-doc {
    background: var(--vr-white);
    border: 1px solid var(--vr-border);
    border-radius: var(--vr-radius-lg);
    padding: 40px 32px;
    text-align: center;
    width: 180px;
    transition: var(--vr-transition);
}

.vr-cert-doc:hover {
    border-color: var(--vr-primary);
    box-shadow: var(--vr-shadow-md);
}

.vr-cert-doc__icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    color: var(--vr-primary);
}

.vr-cert-doc__icon svg {
    width: 100%;
    height: 100%;
}

.vr-cert-doc__lines {
    margin-bottom: 20px;
}

.vr-cert-doc__lines span {
    display: block;
    height: 8px;
    background: var(--vr-primary-light);
    border-radius: 4px;
    margin-bottom: 8px;
}

.vr-cert-doc__lines span:nth-child(2) { width: 80%; margin-left: auto; margin-right: auto; }
.vr-cert-doc__lines span:nth-child(3) { width: 60%; margin-left: auto; margin-right: auto; }

.vr-cert-doc__label {
    font-size: 14px;
    font-weight: 600;
    color: var(--vr-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.vr-certificates__content {
    max-width: 480px;
}

.vr-certificates__badge {
    margin-bottom: 20px;
}

.vr-certificates__title {
    font-size: 18px;
    font-weight: 600;
    color: var(--vr-text);
    margin: 0 0 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.vr-certificates__desc {
    font-size: 15px;
    color: var(--vr-text-light);
    margin: 0 0 24px;
    line-height: 1.6;
}

.vr-certificates__list {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
}

.vr-certificates__list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    font-size: 15px;
    color: var(--vr-text);
}

.vr-certificates__list-icon {
    width: 24px;
    height: 24px;
    background: var(--vr-primary);
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.vr-certificates__list-check {
    width: 18px;
    height: 18px;
    background: #27ae60;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--vr-white);
}

/* ============================================
   SECTION 5: BLOG / KNOWLEDGE BASE
   ============================================ */
.vr-blog {
    padding: var(--vr-section-padding) 0;
    background: var(--vr-white);
}

.vr-blog__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.vr-blog-card {
    background: var(--vr-white);
    border: 1px solid var(--vr-border);
    border-radius: var(--vr-radius-lg);
    padding: 24px;
    transition: var(--vr-transition);
}

.vr-blog-card:hover {
    border-color: var(--vr-primary);
    box-shadow: var(--vr-shadow-md);
}

.vr-blog-card__category {
    display: inline-block;
    padding: 4px 12px;
    border: 1px solid var(--vr-primary);
    border-radius: var(--vr-radius-full);
    font-size: 12px;
    font-weight: 600;
    color: var(--vr-primary);
    margin-bottom: 16px;
}

.vr-blog-card__title {
    font-size: 16px;
    font-weight: 600;
    color: var(--vr-text);
    margin: 0 0 8px;
}

.vr-blog-card__excerpt {
    font-size: 14px;
    color: var(--vr-text-light);
    margin: 0 0 16px;
    line-height: 1.5;
}

.vr-blog-card__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    color: var(--vr-primary);
    text-decoration: none;
    transition: var(--vr-transition);
}

.vr-blog-card__link:hover {
    gap: 10px;
}

.vr-blog__cta {
    text-align: center;
}

/* ============================================
   SECTION 6: TESTIMONIALS
   ============================================ */
.vr-testimonials {
    padding: var(--vr-section-padding) 0;
    background: var(--vr-bg-light);
}

.vr-testimonials__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.vr-testimonial-card {
    background: var(--vr-white);
    border: 1px solid var(--vr-border);
    border-radius: var(--vr-radius-lg);
    padding: 28px;
}

.vr-testimonial-card__quote-icon {
    color: var(--vr-primary);
    font-size: 32px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 16px;
    font-family: Georgia, serif;
}

.vr-testimonial-card__text {
    font-size: 15px;
    color: var(--vr-text);
    margin: 0 0 20px;
    line-height: 1.6;
    font-style: italic;
}

.vr-testimonial-card__author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.vr-testimonial-card__avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--vr-primary);
    color: var(--vr-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 14px;
}

.vr-testimonial-card__avatar--green { background: #27ae60; }
.vr-testimonial-card__avatar--purple { background: #8e44ad; }

.vr-testimonial-card__info strong {
    display: block;
    font-size: 14px;
    color: var(--vr-text);
}

.vr-testimonial-card__info span {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 13px;
    color: var(--vr-text-light);
}

/* Stats Bar */
.vr-stats-bar {
    background: var(--vr-white);
    border: 1px solid var(--vr-border);
    border-radius: var(--vr-radius-lg);
    padding: 24px 48px;
    display: flex;
    justify-content: center;
    gap: 60px;
    max-width: 500px;
    margin: 0 auto;
}

.vr-stats-bar__item {
    text-align: center;
}

.vr-stats-bar__number {
    font-size: 32px;
    font-weight: 700;
    color: var(--vr-primary);
    line-height: 1.2;
}

.vr-stats-bar__label {
    font-size: 14px;
    color: var(--vr-text-light);
}

/* Footer styles moved to dedicated footer.css */

/* ============================================
   TABLET BREAKPOINT (531px - 1016px)
   ============================================ */
@media (max-width: 1016px) {
    :root {
        --vr-section-padding: 44px;
    }

    /* Hero */
    .vr-hero__wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .vr-hero__content {
        max-width: 100%;
        order: 1;
    }

    .vr-hero__image-wrapper {
        order: 2;
    }

    .vr-hero__features {
        justify-content: center;
    }

    .vr-hero__buttons {
        justify-content: center;
    }

    .vr-hero__trust-icons {
        justify-content: center;
    }

    /* Trust Boxes */
    .vr-trust-boxes__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Products */
    .vr-products__grid {
        grid-template-columns: repeat(3, 1fr);
        max-width: none;
    }

    .vr-products__tabs {
        gap: 6px;
    }

    .vr-products__tab {
        padding: 8px 16px;
        font-size: 13px;
    }

    /* Certificates */
    .vr-certificates__wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .vr-certificates__content {
        max-width: 100%;
    }

    .vr-certificates__list li {
        justify-content: center;
    }

    .vr-certificates__title {
        justify-content: center;
    }

    /* Blog */
    .vr-blog__grid {
        grid-template-columns: repeat(3, 1fr);
    }

    /* Testimonials */
    .vr-testimonials__grid {
        grid-template-columns: repeat(3, 1fr);
    }

}

/* ============================================
   MOBILE BREAKPOINT (< 531px)
   ============================================ */
@media (max-width: 530px) {
    :root {
        --vr-section-padding: 36px;
    }

    .vr-container {
        padding: 0 16px;
    }

    /* Hero */
    .vr-hero {
        padding: 40px 0 60px;
    }

    .vr-hero__title {
        font-size: 16px;
    }

    .vr-hero__buttons {
        flex-direction: column;
    }

    .vr-hero__buttons .vr-btn {
        width: 100%;
    }

    .vr-hero__trust-icons {
        flex-wrap: wrap;
        gap: 20px;
    }

    .vr-trust-icon {
        flex: 0 0 calc(50% - 10px);
    }

    .vr-hero__floating-card {
        left: 16px;
        right: 16px;
        bottom: 16px;
    }

    /* Trust Boxes */
    .vr-trust-boxes__grid {
        grid-template-columns: 1fr;
    }

    /* Products */
    .vr-products__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .vr-product-card__badge {
        display: none!important;
    }

    .vr-section-header__title {
        font-size: 20px;
    }

    /* Certificates */
    .vr-certificates__visual {
        flex-direction: column;
        align-items: center;
    }

    .vr-cert-doc {
        width: 100%;
        max-width: 200px;
    }

    /* Blog */
    .vr-blog__grid {
        grid-template-columns: 1fr;
    }

    /* Testimonials */
    .vr-testimonials__grid {
        grid-template-columns: 1fr;
    }

    .vr-stats-bar {
        flex-direction: column;
        gap: 24px;
        padding: 24px;
    }

}

.vr-text-center { text-align: center; }
.vr-mb-0 { margin-bottom: 0; }
.vr-mb-16 { margin-bottom: 16px; }
.vr-mb-24 { margin-bottom: 24px; }
.vr-mb-32 { margin-bottom: 32px; }

/**
 * Vision Research - Improved Hero Section
 * Clean, professional design with light background
 */

/* ============================================
   HERO SECTION - NEW DESIGN
   ============================================ */
.vr-hero {
    padding: 60px 0 40px;
    background: linear-gradient(0deg,var(--vr-white) 0%,var(--vr-primary-light) 100%);
    overflow: hidden;
    position: relative;
}

.vr-hero__wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

/* ============================================
   LEFT COLUMN - CONTENT
   ============================================ */
.vr-hero__content {
    padding-top: 20px;
}

/* Top Badge */
.vr-hero__badge {
    margin-bottom: 24px;
}

.vr-hero__badge .vr-badge {
    background: var(--vr-primary);
    color: var(--vr-white);
    padding: 10px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.vr-hero__badge .vr-badge svg {
    width: 16px;
    height: 16px;
}

/* Title */
.vr-hero__title {
    font-size: 32px;
    font-weight: 400;
    color: var(--vr-text);
    margin: 0 0 8px;
    line-height: 1.2;
}

.vr-hero__title strong {
    font-weight: 600;
}

.vr-hero__title-highlight {
    color: var(--vr-primary);
    display: block;
}

/* Description */
.vr-hero__description {
    font-size: 17px;
    color: var(--vr-text);
    line-height: 1.7;
    margin: 0 0 28px;
}

.vr-hero__description strong {
    font-weight: 600;
}

/* Buttons */
.vr-hero__buttons {
    display: flex;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.vr-hero__btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: var(--vr-primary);
    color: var(--vr-white) !important;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--vr-transition);
}

.vr-hero__btn-primary:hover {
    background: var(--vr-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(26, 107, 154, 0.25);
}

.vr-hero__btn-primary svg {
    width: 18px;
    height: 18px;
}

.vr-hero__btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 24px;
    background: var(--vr-white);
    color: var(--vr-text);
    border: 1px solid var(--vr-border);
    border-radius: 8px;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    transition: var(--vr-transition);
}

.vr-hero__btn-secondary:hover {
    border-color: var(--vr-primary);
    color: var(--vr-primary);
}

/* ============================================
   GUARANTEES GRID
   ============================================ */
.vr-hero__guarantees {
    margin-bottom: 0;
}

.vr-hero__guarantees-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--vr-primary);
    margin: 0 0 16px;
}

.vr-hero__guarantees-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.vr-hero__guarantee {
    display: flex;
    align-items: center;
    gap: 12px;
}

.vr-hero__guarantee-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: var(--vr-white);
    border: 1px solid var(--vr-border);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--vr-primary);
}

.vr-hero__guarantee-icon svg {
    width: 20px;
    height: 20px;
}

.vr-hero__guarantee-text {
    display: flex;
    flex-direction: column;
}

.vr-hero__guarantee-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--vr-text);
    line-height: 1.3;
}

.vr-hero__guarantee-subtitle {
    font-size: 12px;
    color: var(--vr-text-light);
    line-height: 1.3;
}

/* ============================================
   RIGHT COLUMN - IMAGE
   ============================================ */
.vr-hero__image-wrapper {
    position: relative;
}

.vr-hero__image {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.vr-hero__image img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 4/3;
    object-fit: cover;
}

/* Floating Badge - Top Right */
.vr-hero__float-top {
    position: absolute;
    top: -12px;
    right: -12px;
    background: var(--vr-white);
    border-radius: 12px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    animation: floatUp 3s ease-in-out infinite;
}

@keyframes floatUp {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

.vr-hero__float-top-icon {
    width: 32px;
    height: 32px;
    background: #27ae60;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--vr-white);
}

.vr-hero__float-top-icon svg {
    width: 16px;
    height: 16px;
}

.vr-hero__float-top-text {
    display: flex;
    flex-direction: column;
}

.vr-hero__float-top-value {
    font-size: 16px;
    font-weight: 700;
    color: var(--vr-text);
    line-height: 1;
}

.vr-hero__float-top-label {
    font-size: 11px;
    color: var(--vr-text-light);
}

/* Floating Badge - Bottom Left */
.vr-hero__float-bottom {
    position: absolute;
    bottom: 20px;
    left: -20px;
    background: var(--vr-white);
    border-radius: 12px;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    animation: floatDown 3.5s ease-in-out infinite;
}

@keyframes floatDown {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(6px); }
}

.vr-hero__float-bottom-icon {
    width: 44px;
    height: 44px;
    background: var(--vr-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--vr-white);
}

.vr-hero__float-bottom-icon svg {
    width: 22px;
    height: 22px;
}

.vr-hero__float-bottom-text {
    display: flex;
    flex-direction: column;
}

.vr-hero__float-bottom-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--vr-text);
    line-height: 1.2;
}

.vr-hero__float-bottom-tags {
    display: flex;
    gap: 6px;
    margin-top: 4px;
}

.vr-hero__float-tag {
    font-size: 10px;
    font-weight: 500;
    color: var(--vr-text-light);
    background: var(--vr-bg-light);
    padding: 3px 8px;
    border-radius: 4px;
}

/* ============================================
   DISCLAIMER BANNER
   ============================================ */
.vr-hero__disclaimer {
    margin-top: 32px;
    background: #fef9e7;
    border: 1px solid #f5d77b;
    border-radius: 12px;
    padding: 16px 20px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.vr-hero__disclaimer-icon {
    width: 36px;
    height: 36px;
    min-width: 36px;
    background: #fef0c7;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d97706;
}

.vr-hero__disclaimer-icon svg {
    width: 20px;
    height: 20px;
}

.vr-hero__disclaimer-content h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--vr-text);
    margin: 0 0 4px;
}

.vr-hero__disclaimer-content p {
    font-size: 13px;
    color: var(--vr-text);
    margin: 0;
    line-height: 1.5;
}

/* ============================================
   RESPONSIVE - TABLET
   ============================================ */
@media (max-width: 1024px) {
    .vr-hero {
        padding: 40px 0 32px;
    }

    .vr-hero__wrapper {
        gap: 32px;
    }

    .vr-hero__title {
        font-size: 28px;
    }

    .vr-hero__description {
        font-size: 16px;
    }

    .vr-hero__float-top {
        right: 8px;
        top: -8px;
    }

    .vr-hero__float-bottom {
        left: -10px;
    }
}

/* ============================================
   RESPONSIVE - MOBILE LARGE (Tablet Portrait)
   ============================================ */
@media (max-width: 900px) {
    .vr-hero__wrapper {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .vr-hero__content {
        padding-top: 0;
        order: 1;
    }

    .vr-hero__image-wrapper {
        order: 2;
        max-width: 500px;
        margin: 0 auto;
    }

    .vr-hero__guarantees-grid {
        grid-template-columns: 1fr 1fr;
        justify-items: center;
    }

    .vr-hero__buttons {
        margin-bottom: 32px;
    }
}

/* ============================================
   RESPONSIVE - MOBILE
   ============================================ */
@media (max-width: 600px) {
    .vr-hero {
        padding: 32px 0 24px;
    }

    .vr-hero__badge .vr-badge {
        font-size: 12px;
        padding: 8px 14px;
    }

    .vr-hero__title {
        font-size: 24px;
    }

    .vr-hero__description {
        font-size: 15px;
        margin-bottom: 24px;
    }

    .vr-hero__buttons {
        flex-direction: column;
        margin-bottom: 28px;
    }

    .vr-hero__btn-primary,
    .vr-hero__btn-secondary {
        width: 100%;
        justify-content: center;
    }

    .vr-hero__guarantees-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .vr-hero__guarantee-icon {
        width: 36px;
        height: 36px;
        min-width: 36px;
    }

    .vr-hero__guarantee-icon svg {
        width: 18px;
        height: 18px;
    }

    .vr-hero__guarantee-title {
        font-size: 13px;
    }

    .vr-hero__guarantee-subtitle {
        font-size: 11px;
    }

    /* Image section */
    .vr-hero__image-wrapper {
        order: 2;
    }

    .vr-hero__image {
        border-radius: 16px;
    }

    .vr-hero__float-top {
        top: -8px;
        right: -4px;
        padding: 10px 12px;
    }

    .vr-hero__float-top-icon {
        width: 28px;
        height: 28px;
    }

    .vr-hero__float-top-value {
        font-size: 14px;
    }

    .vr-hero__float-bottom {
        left: -4px;
        bottom: 16px;
        padding: 12px 14px;
    }

    .vr-hero__float-bottom-icon {
        width: 38px;
        height: 38px;
    }

    .vr-hero__float-bottom-title {
        font-size: 13px;
    }

    /* Disclaimer */
    .vr-hero__disclaimer {
        padding: 14px 16px;
        gap: 12px;
    }

    .vr-hero__disclaimer-icon {
        width: 32px;
        height: 32px;
        min-width: 32px;
    }

    .vr-hero__disclaimer-content h4 {
        font-size: 13px;
    }

    .vr-hero__disclaimer-content p {
        font-size: 12px;
    }
}

/* ============================================
   RESPONSIVE - MOBILE SMALL
   ============================================ */
@media (max-width: 400px) {
    .vr-hero__title {
        font-size: 22px;
    }

    .vr-hero__float-top {
        display: none;
    }

    .vr-hero__float-bottom {
        left: 50%;
        transform: translateX(-50%);
        bottom: -20px;
    }

    @keyframes floatDown {
        0%, 100% { transform: translateX(-50%) translateY(0); }
        50% { transform: translateX(-50%) translateY(4px); }
    }
}

/* ============================================
   SECTION: ABOUT US (replaces TESTIMONIALS)
   ============================================ */
.vr-about-main {
    padding: var(--vr-section-padding) 0;
    background: var(--vr-white);
}

/* Section Header - Centered */
.vr-about .vr-section-header--centered {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 48px;
}

.vr-about__label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--vr-primary);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.vr-about__intro {
    font-size: 18px;
    line-height: 1.6;
    color: var(--vr-text-light);
    margin: 0;
}

/* Content Grid: Image + Text */
.vr-about__content-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 60px;
}

/* Image Wrapper with Floating Badge */
.vr-about__image-wrapper {
    position: relative;
}

.vr-about__image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: var(--vr-radius-lg);
    box-shadow: var(--vr-shadow-lg);
}

/* Floating Badge on Image */
.vr-about__floating-badge {
    position: absolute;
    bottom: 24px;
    left: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--vr-white);
    padding: 12px 20px;
    border-radius: var(--vr-radius-md);
    box-shadow: var(--vr-shadow-md);
}

.vr-about__floating-icon {
    width: 40px;
    height: 40px;
    background: var(--vr-primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vr-about__floating-icon svg {
    width: 20px;
    height: 20px;
    color: var(--vr-primary);
}

.vr-about__floating-text strong {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--vr-text);
}

.vr-about__floating-text span {
    font-size: 12px;
    color: var(--vr-text-light);
}

/* Text Content */
.vr-about__text {
    /* No special styling needed */
}

.vr-about__title {
    font-size: 28px;
    font-weight: 700;
    color: var(--vr-text);
    margin: 0 0 24px;
    line-height: 1.3;
}

.vr-about__paragraph {
    font-size: 15px;
    line-height: 1.7;
    color: var(--vr-text-light);
    margin: 0 0 16px;
}

.vr-about__paragraph:last-of-type {
    margin-bottom: 24px;
}

/* Link with Arrow */
.vr-about__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 600;
    color: var(--vr-primary);
    text-decoration: none;
    transition: var(--vr-transition);
}

.vr-about__link:hover {
    gap: 12px;
}

.vr-about__link svg {
    width: 18px;
    height: 18px;
    transition: var(--vr-transition);
}

.vr-about__link:hover svg {
    transform: translateX(4px);
}

/* Stats Grid */
.vr-about__stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

/* Stat Card */
.vr-about__stat-card {
    background: var(--vr-bg-light);
    border: 1px solid var(--vr-border);
    border-radius: var(--vr-radius-lg);
    padding: 32px 24px;
    text-align: center;
    transition: var(--vr-transition);
}

.vr-about__stat-card:hover {
    border-color: var(--vr-primary);
    box-shadow: var(--vr-shadow-sm);
    transform: translateY(-2px);
}

.vr-about__stat-icon {
    width: 56px;
    height: 56px;
    background: var(--vr-primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.vr-about__stat-icon svg {
    width: 28px;
    height: 28px;
    color: var(--vr-primary);
}

.vr-about__stat-value {
    font-size: 32px;
    font-weight: 700;
    color: var(--vr-primary);
    line-height: 1.2;
    margin-bottom: 8px;
}

.vr-about__stat-label {
    font-size: 15px;
    font-weight: 600;
    color: var(--vr-text);
    margin-bottom: 4px;
}

.vr-about__stat-sublabel {
    font-size: 13px;
    color: var(--vr-text-light);
}

/* ============================================
   RESPONSIVE - TABLET (< 1024px)
   ============================================ */
@media (max-width: 1024px) {
    .vr-about__content-main {
        gap: 40px;
    }

    .vr-about__stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .vr-about__stat-card {
        padding: 28px 20px;
    }

    .vr-about__stat-value {
        font-size: 28px;
    }
}

/* ============================================
   RESPONSIVE - MOBILE (< 768px)
   ============================================ */
@media (max-width: 768px) {
    .vr-about-main {
        padding: 60px 0;
    }

    .vr-about__intro {
        font-size: 16px;
    }

    .vr-about__content-main {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    /* On mobile: Text first, then image */
    .vr-about__image-wrapper {
        order: 2;
    }

    .vr-about__text {
        order: 1;
    }

    .vr-about__image {
        height: 280px;
    }

    .vr-about__title {
        font-size: 24px;
    }

    .vr-about__floating-badge {
        bottom: 16px;
        left: 16px;
        padding: 10px 16px;
    }

    .vr-about__floating-icon {
        width: 36px;
        height: 36px;
    }

    .vr-about__floating-icon svg {
        width: 18px;
        height: 18px;
    }

    .vr-about__stats {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .vr-about__stat-card {
        padding: 24px 20px;
    }

    .vr-about__stat-value {
        font-size: 26px;
    }
}

/* ============================================
   RESPONSIVE - SMALL MOBILE (< 480px)
   ============================================ */
@media (max-width: 480px) {
    .vr-about-main .vr-section-header--centered {
        margin-bottom: 32px;
    }

    .vr-about__intro {
        font-size: 15px;
    }

    .vr-about__image {
        height: 220px;
    }

    .vr-about__title {
        font-size: 22px;
    }

    .vr-about__paragraph {
        font-size: 14px;
    }
}

/* ============================================
   NEW HERO SECTION V2 - Centered Layout with Background Image
   ============================================ */
.vr-hero-v2 {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px 0 60px;
    overflow: hidden;
}

/* Background Image */
.vr-hero-v2__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.vr-hero-v2__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Dark Overlay */
.vr-hero-v2__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
            180deg,
            rgba(13, 36, 56, 0.88) 0%,
            rgba(19, 54, 81, 0.85) 50%,
            rgba(26, 74, 110, 0.82) 100%
    );
    z-index: 1;
}

/* Content */
.vr-hero-v2 .vr-container {
    position: relative;
    z-index: 2;
}

.vr-hero-v2__content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

/* Badge */
.vr-hero-v2__badge-row {
    margin-bottom: 28px;
}

.vr-hero-v2__badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 100px;
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.95);
    letter-spacing: 0.01em;
}

.vr-hero-v2__badge svg {
    width: 18px;
    height: 18px;
    color: #4ade80;
}

/* Title */
.vr-hero-v2__title {
    font-size: clamp(38px, 6vw, 62px);
    font-weight: 700;
    color: #ffffff;
    line-height: 1.1;
    margin: 0 0 20px;
    letter-spacing: -0.02em;
}

.vr-hero-v2__title-accent {
    background: linear-gradient(135deg, #f5a623 0%, #f7c66e 50%, #f5a623 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Subtitle */
.vr-hero-v2__subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
    margin: 0 0 36px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

/* Buttons */
.vr-hero-v2__buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 36px;
    flex-wrap: wrap;
}

.vr-hero-v2__btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: #ffffff;
    color: #0D2438;
    font-size: 15px;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.vr-hero-v2__btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
    color: #0D2438;
}

.vr-hero-v2__btn-primary svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.vr-hero-v2__btn-primary:hover svg {
    transform: translateX(4px);
}

.vr-hero-v2__btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.vr-hero-v2__btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.35);
    color: #ffffff;
}

/* Trust Row */
.vr-hero-v2__trust-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.vr-hero-v2__trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
    font-weight: 500;
}

.vr-hero-v2__trust-item svg {
    width: 20px;
    height: 20px;
    color: #4ade80;
}

.vr-hero-v2__trust-divider {
    width: 1px;
    height: 20px;
    background: rgba(255, 255, 255, 0.25);
}

/* Feature Cards Grid - 4 columns on desktop */
.vr-hero-v2__cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 960px;
    margin: 0 auto 48px;
    width: 100%;
}

.vr-hero-v2__card {
    background: #ffffff;
    border-radius: 16px;
    padding: 28px 24px;
    text-align: left;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.vr-hero-v2__card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

/* Card Icons */
.vr-hero-v2__card-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.vr-hero-v2__card-icon svg {
    width: 26px;
    height: 26px;
}

.vr-hero-v2__card-icon--blue {
    background: #dbeafe;
    color: #2563eb;
}

.vr-hero-v2__card-icon--green {
    background: #dcfce7;
    color: #16a34a;
}

.vr-hero-v2__card-icon--cyan {
    background: #cffafe;
    color: #0891b2;
}

.vr-hero-v2__card-icon--orange {
    background: #ffedd5;
    color: #ea580c;
}

/* Card Text */
.vr-hero-v2__card-label {
    display: block;
    font-size: 14px;
    color: #64748b;
    margin-bottom: 6px;
    font-weight: 500;
}

.vr-hero-v2__card-value {
    display: block;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 4px;
}

.vr-hero-v2__card-value--blue { color: #2563eb; }
.vr-hero-v2__card-value--green { color: #16a34a; }
.vr-hero-v2__card-value--cyan { color: #0891b2; }
.vr-hero-v2__card-value--orange { color: #ea580c; }

.vr-hero-v2__card-desc {
    font-size: 13px;
    color: #94a3b8;
    font-weight: 400;
}

/* Disclaimer */
.vr-hero-v2__disclaimer {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    max-width: 960px;
    margin: 0 auto;
    padding: 20px 24px;
    background: rgba(234, 179, 8, 0.15);
    border: 1px solid rgba(234, 179, 8, 0.3);
    border-radius: 16px;
    text-align: left;
}

.vr-hero-v2__disclaimer-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: rgba(234, 179, 8, 0.25);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fbbf24;
}

.vr-hero-v2__disclaimer-icon svg {
    width: 20px;
    height: 20px;
}

.vr-hero-v2__disclaimer p {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
}

.vr-hero-v2__disclaimer strong {
    color: #fbbf24;
}

/* ============================================
   HERO V2 RESPONSIVE
   ============================================ */

/* Tablet - Large */
@media (max-width: 1024px) {
    .vr-hero-v2 {
        padding: 90px 0 50px;
        min-height: auto;
    }

    .vr-hero-v2__title {
        font-size: 48px;
    }

    .vr-hero-v2__cards {
        max-width: 100%;
        gap: 16px;
    }

    .vr-hero-v2__card {
        padding: 24px 20px;
    }

    .vr-hero-v2__card-value {
        font-size: 26px;
    }
}

/* Tablet */
@media (max-width: 900px) {
    .vr-hero-v2 {
        padding: 80px 0 50px;
    }

    .vr-hero-v2__title {
        font-size: 42px;
    }

    .vr-hero-v2__subtitle {
        font-size: 16px;
    }

    .vr-hero-v2__cards {
        grid-template-columns: repeat(4, 1fr);
        max-width: 100%;
        gap: 12px;
    }

    .vr-hero-v2__card {
        padding: 18px 14px;
    }

    .vr-hero-v2__card-icon {
        width: 44px;
        height: 44px;
    }

    .vr-hero-v2__card-value {
        font-size: 20px;
    }
}

/* Mobile - Large */
@media (max-width: 768px) {
    .vr-hero-v2 {
        padding: 70px 0 40px;
    }

    .vr-hero-v2__title {
        font-size: 36px;
    }

    .vr-hero-v2__badge {
        font-size: 13px;
        padding: 10px 18px;
    }

    .vr-hero-v2__buttons {
        flex-direction: column;
        align-items: center;
    }

    .vr-hero-v2__btn-primary,
    .vr-hero-v2__btn-secondary {
        width: 100%;
        max-width: 320px;
        justify-content: center;
    }

    .vr-hero-v2__trust-row {
        gap: 16px;
    }

    .vr-hero-v2__trust-divider {
        display: none;
    }

    .vr-hero-v2__cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .vr-hero-v2__card {
        padding: 20px 16px;
    }

    .vr-hero-v2__card-icon {
        width: 46px;
        height: 46px;
        margin-bottom: 12px;
    }

    .vr-hero-v2__card-value {
        font-size: 22px;
    }

    .vr-hero-v2__disclaimer {
        padding: 16px 18px;
    }
}

/* Mobile */
@media (max-width: 540px) {
    .vr-hero-v2 {
        padding: 60px 0 36px;
    }

    .vr-hero-v2__badge-row {
        margin-bottom: 24px;
    }

    .vr-hero-v2__title {
        font-size: 32px;
        margin-bottom: 16px;
    }

    .vr-hero-v2__subtitle {
        font-size: 15px;
        margin-bottom: 28px;
    }

    .vr-hero-v2__buttons {
        margin-bottom: 28px;
    }

    .vr-hero-v2__trust-row {
        margin-bottom: 36px;
    }

    .vr-hero-v2__trust-item {
        font-size: 13px;
    }

    .vr-hero-v2__trust-item svg {
        width: 18px;
        height: 18px;
    }

    .vr-hero-v2__cards {
        margin-bottom: 36px;
        gap: 10px;
    }

    .vr-hero-v2__card {
        padding: 18px 14px;
    }

    .vr-hero-v2__card-icon {
        width: 42px;
        height: 42px;
        border-radius: 10px;
    }

    .vr-hero-v2__card-icon svg {
        width: 20px;
        height: 20px;
    }

    .vr-hero-v2__card-label {
        font-size: 12px;
    }

    .vr-hero-v2__card-value {
        font-size: 20px;
    }

    .vr-hero-v2__card-desc {
        font-size: 12px;
    }
}

/* Mobile - Small */
@media (max-width: 400px) {
    .vr-hero-v2__title {
        font-size: 28px;
    }

    .vr-hero-v2__badge {
        font-size: 12px;
        padding: 8px 14px;
        gap: 8px;
    }

    .vr-hero-v2__badge svg {
        width: 16px;
        height: 16px;
    }

    .vr-hero-v2__trust-row {
        flex-direction: column;
        gap: 10px;
    }

    .vr-hero-v2__cards {
        gap: 8px;
    }

    .vr-hero-v2__card {
        padding: 16px 12px;
    }

    .vr-hero-v2__card-icon {
        width: 38px;
        height: 38px;
    }

    .vr-hero-v2__card-icon svg {
        width: 18px;
        height: 18px;
    }

    .vr-hero-v2__card-value {
        font-size: 18px;
    }

    .vr-hero-v2__disclaimer {
        flex-direction: column;
        gap: 12px;
        padding: 14px 16px;
    }
}


/* ============================================
   WHY US / TRUST SECTION
   ============================================ */
.vr-why {
    padding: var(--vr-section-padding) 0;
    background: #fff;
}

.vr-why__header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 40px;
}

.vr-why__title {
    font-size: 28px;
    font-weight: 700;
    color: var(--vr-text);
    margin: 0 0 16px;
    letter-spacing: -0.02em;
}

.vr-why__intro {
    font-size: 15px;
    line-height: 1.7;
    color: #64748b;
    margin: 0;
}

/* ── Cards row ── */
.vr-why__cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.vr-why__card {
    background: var(--vr-bg, #f8fafc);
    border: 1px solid var(--vr-border, #e2e8f0);
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    transition: var(--vr-transition);
}

.vr-why__card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
    border-color: var(--vr-primary);
}

.vr-why__card-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--vr-primary-light, #e8f4fa);
    border-radius: 12px;
    color: var(--vr-primary);
}

.vr-why__card-icon svg {
    width: 24px;
    height: 24px;
}

.vr-why__card-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--vr-text);
    margin: 0 0 8px;
}

.vr-why__card-text {
    font-size: 14px;
    line-height: 1.6;
    color: #64748b;
    margin: 0;
}

/* ── Stats row ── */
.vr-why__stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 32px;
}

.vr-why__stat {
    text-align: center;
    padding: 20px 12px;
    background: var(--vr-bg, #f8fafc);
    border-radius: 12px;
}

.vr-why__stat-value {
    display: block;
    font-size: 22px;
    font-weight: 700;
    color: var(--vr-primary);
    letter-spacing: -0.02em;
}

.vr-why__stat-label {
    display: block;
    font-size: 12px;
    color: #64748b;
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

/* ── Footer text ── */
.vr-why__footer {
    text-align: center;
    max-width: 640px;
    margin: 0 auto;
    font-size: 14px;
    line-height: 1.7;
    color: #94a3b8;
}

/* ── Responsive ── */
@media (max-width: 768px) {
    .vr-why__cards {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .vr-why__card {
        padding: 24px 20px;
        text-align: left;
        display: grid;
        grid-template-columns: 48px 1fr;
        grid-template-rows: auto auto;
        column-gap: 16px;
        align-items: start;
    }
    .vr-why__card-icon {
        margin: 0;
        grid-row: 1 / 3;
    }
    .vr-why__card-title {
        align-self: end;
    }
    .vr-why__card-text {
        align-self: start;
    }
    .vr-why__stats {
        grid-template-columns: repeat(2, 1fr);
    }
    .vr-why__title {
        font-size: 24px;
    }
}

@media (max-width: 530px) {
    .vr-why__title {
        font-size: 20px;
    }
    .vr-why__intro {
        font-size: 14px;
        text-align: left;
    }
    .vr-why__stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    .vr-why__stat {
        padding: 16px 10px;
    }
    .vr-why__stat-value {
        font-size: 18px;
    }
    .vr-why__footer {
        text-align: left;
        font-size: 13px;
    }
}

/* ============================================
   WAVE SEPARATORS
   ============================================ */
.vr-wave-separator {
    width: 100%;
    height: 30px;
    line-height: 0;
    position: relative;
    z-index: 1;
}

.vr-wave-separator--to-grey {
    background: #ffffff;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 30' preserveAspectRatio='none'%3E%3Cpath d='M0,0 C360,30 1080,30 1440,0 L1440,30 L0,30 Z' fill='%23f8fafc'/%3E%3C/svg%3E");
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: bottom;
}

.vr-wave-separator--to-white {
    background: var(--vr-bg);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 30' preserveAspectRatio='none'%3E%3Cpath d='M0,0 C360,30 1080,30 1440,0 L1440,30 L0,30 Z' fill='%23f8fafc'/%3E%3C/svg%3E");
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: top;
    transform: scaleY(-1);
}

@media (max-width: 768px) {
    .vr-wave-separator { height: 20px; }
}

@media (max-width: 530px) {
    .vr-wave-separator { height: 0; display: none; }
}

/* ============================================
   REVIEWS CAROUSEL
   ============================================ */
.page-id-964 .vr-reviews {
    padding: 56px 0;
    background: var(--vr-bg);
    position: relative;
}

.vr-reviews__header {
    text-align: center;
    margin-bottom: 48px;
}

.vr-reviews__stars-summary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--vr-primary-light);
    border: 1px solid color-mix(in srgb, var(--vr-primary) 20%, transparent);
    padding: 8px 20px;
    border-radius: 100px;
    margin-bottom: 20px;
    font-size: 14px;
    font-weight: 600;
    color: var(--vr-primary-dark);
}

.vr-reviews__stars-summary svg {
    flex-shrink: 0;
}

.vr-reviews__title {
    font-size: clamp(26px, 3.5vw, 36px);
    font-weight: 700;
    color: var(--vr-text);
    margin: 0 0 10px;
    line-height: 1.2;
    letter-spacing: -0.01em;
}

.vr-reviews__subtitle {
    font-size: 16px;
    color: var(--vr-text-light);
    margin: 0;
    line-height: 1.6;
}

/* Track */
.vr-reviews__track-wrapper {
    position: relative;
}

.vr-reviews__track {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 4px 0 12px;
    align-items: start;
}

.vr-reviews__track::-webkit-scrollbar {
    display: none;
}

/* Card — scoped to homepage (page-id-964) to avoid overriding product page review cards */
.page-id-964 .vr-review-card {
    flex: 0 0 360px;
    scroll-snap-align: start;
    background: var(--vr-white);
    border: 1px solid var(--vr-border);
    border-radius: var(--vr-radius-lg);
    padding: 28px 24px 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
    box-shadow: none;
    animation: none;
}

.page-id-964 .vr-review-card:hover {
    border-color: color-mix(in srgb, var(--vr-primary) 30%, transparent);
    box-shadow: 0 8px 24px rgba(26, 107, 154, 0.08);
    transform: none;
}

/* Featured review card */
.page-id-964 .vr-review-card--featured {
    border-left: 3px solid var(--vr-primary);
    box-shadow: var(--vr-shadow-card);
    position: relative;
}

.vr-review-card__featured-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    font-size: 11px;
    font-weight: 600;
    color: var(--vr-primary);
    background: var(--vr-primary-light);
    padding: 2px 10px;
    border-radius: 100px;
    line-height: 1.6;
}

.page-id-964 .vr-review-card__stars {
    display: flex;
    align-items: center;
    gap: 2px;
}

.page-id-964 .vr-review-card__stars svg {
    width: 16px;
    height: 16px;
    color: #f59e0b;
    fill: #f59e0b;
}

.page-id-964 .vr-review-card__text {
    font-size: 15px;
    line-height: 1.65;
    color: var(--vr-text);
    position: relative;
    margin: 0;
}

.page-id-964 .vr-review-card__text::before {
    content: '\201E';
    position: absolute;
    top: -18px;
    left: -4px;
    font-size: 40px;
    line-height: 1;
    color: color-mix(in srgb, var(--vr-primary) 20%, transparent);
    font-family: Georgia, serif;
    pointer-events: none;
}

.page-id-964 .vr-review-card__author {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding-top: 14px;
    border-top: 1px solid var(--vr-border);
}

.page-id-964 .vr-review-card__author-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.page-id-964 .vr-review-card__name {
    font-size: 14px;
    font-weight: 600;
    color: var(--vr-text);
}

.page-id-964 .vr-review-card__meta {
    font-size: 12px;
    color: var(--vr-text-muted);
    display: flex;
    align-items: center;
    gap: 6px;
    min-width: 0;
}

.page-id-964 .vr-review-card__date {
    white-space: nowrap;
    flex-shrink: 0;
}

.page-id-964 .vr-review-card__verified {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    font-weight: 600;
    color: var(--vr-green);
    background: color-mix(in srgb, var(--vr-green) 8%, transparent);
    padding: 2px 8px;
    border-radius: 100px;
    white-space: nowrap;
}

.page-id-964 .vr-review-card__verified svg {
    width: 12px;
    height: 12px;
    flex-shrink: 0;
}

.page-id-964 .vr-review-card__product {
    font-size: 12px;
    color: var(--vr-primary);
    font-weight: 500;
    text-decoration: none;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    min-width: 0;
}

.page-id-964 .vr-review-card__product:hover {
    text-decoration: underline;
}

/* Nav arrows */
.vr-reviews__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--vr-white);
    border: 1px solid var(--vr-border);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    z-index: 2;
    box-shadow: var(--vr-shadow-sm);
    color: var(--vr-text);
}

.vr-reviews__nav:hover {
    border-color: var(--vr-primary);
    color: var(--vr-primary);
    box-shadow: var(--vr-shadow-md);
}

.vr-reviews__nav svg {
    width: 18px;
    height: 18px;
}

.vr-reviews__nav--prev { left: -22px; }
.vr-reviews__nav--next { right: -22px; }


/* Reviews responsive */
@media (max-width: 1024px) {
    .vr-reviews__nav { display: none; }
}

@media (max-width: 768px) {
    .page-id-964 .vr-reviews { padding: 44px 0; }
    .page-id-964 .vr-review-card { flex: 0 0 300px; padding: 24px 20px 20px; }
    .vr-reviews__header { margin-bottom: 36px; }
}

@media (max-width: 530px) {
    .page-id-964 .vr-reviews { padding: 36px 0 0; }
}

@media (max-width: 480px) {
    .page-id-964 .vr-review-card { flex: 0 0 calc(100vw - 56px); }
    .vr-reviews__stars-summary { font-size: 13px; padding: 6px 16px; }
}


/* ============================================
   PROCESS SECTION — metric-led trust grid
   ============================================ */
.vr-process {
    padding: 56px 0;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.vr-process__header {
    text-align: center;
    margin: 0 0 48px;
}

.vr-process__title {
    font-size: clamp(26px, 4vw, 36px);
    font-weight: 700;
    color: var(--vr-text);
    margin: 0;
    line-height: 1.2;
}

.vr-process__title span {
    color: var(--vr-primary);
}

/* Trust grid — 4 cards */
.vr-process__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.vr-process__card {
    position: relative;
    background: #ffffff;
    border: 1px solid var(--vr-border);
    border-radius: var(--vr-radius-lg);
    padding: 28px 24px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.vr-process__card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--vr-primary);
    border-radius: var(--vr-radius-lg) var(--vr-radius-lg) 0 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.vr-process__card:hover {
    transform: translateY(-3px);
    box-shadow: var(--vr-shadow-lg);
    border-color: var(--vr-primary-light);
}

.vr-process__card:hover::before {
    opacity: 1;
}

/* Icon */
.vr-process__card-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--vr-primary-light);
    border-radius: 10px;
    margin-bottom: 16px;
    color: var(--vr-primary);
}

.vr-process__card-icon svg {
    width: 20px;
    height: 20px;
}

/* Metric — the hero element */
.vr-process__card-metric {
    font-size: 28px;
    font-weight: 800;
    color: var(--vr-text);
    letter-spacing: -0.02em;
    font-variant-numeric: tabular-nums;
    margin-bottom: 8px;
    line-height: 1.1;
}

.vr-process__card-title {
    font-size: 15px;
    font-weight: 600;
    color: var(--vr-text);
    margin: 0 0 8px;
}

.vr-process__card-desc {
    font-size: 13.5px;
    line-height: 1.6;
    color: var(--vr-text-light);
    margin: 0;
}

/* CTA links */
.vr-process__cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.vr-process__cta-link {
    font-size: 15px;
    font-weight: 600;
    color: var(--vr-primary);
    text-decoration: none;
    transition: color 0.2s ease;
}

.vr-process__cta-link:hover {
    color: var(--vr-primary-hover);
    text-decoration: underline;
}

.vr-process__cta-sep {
    width: 1px;
    height: 18px;
    background: var(--vr-border);
}

/* ============================================
   PROCESS SECTION RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .vr-process__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .vr-process {
        padding: 44px 0;
    }

    .vr-process__header {
        margin-bottom: 36px;
    }

    .vr-process__grid {
        gap: 16px;
        margin-bottom: 32px;
    }

    .vr-process__card {
        padding: 24px 20px;
    }

    .vr-process__card-metric {
        font-size: 24px;
    }
}

@media (max-width: 530px) {
    .vr-process {
        padding: 36px 0;
        background: #ffffff;
    }

    .vr-process__grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .vr-process__card {
        display: grid;
        grid-template-columns: auto 1fr;
        grid-template-rows: auto auto;
        column-gap: 16px;
        row-gap: 2px;
        padding: 20px;
        align-items: start;
    }

    .vr-process__card::before {
        display: none;
    }

    .vr-process__card-icon {
        grid-row: 1 / 3;
        width: 44px;
        height: 44px;
        margin-bottom: 0;
        align-self: center;
    }

    .vr-process__card-icon svg {
        width: 22px;
        height: 22px;
    }

    .vr-process__card-metric {
        font-size: 20px;
        margin-bottom: 0;
        line-height: 1.3;
    }

    .vr-process__card-title {
        font-size: 14px;
        margin-bottom: 0;
        color: var(--vr-text-light);
        font-weight: 500;
    }

    .vr-process__card-desc {
        display: none;
    }
}

@media (max-width: 480px) {
    .vr-process__title {
        font-size: 24px;
    }
}

/* ============================================
   IMPROVED PRODUCT GRID - MOBILE RESPONSIVE
   Add this CSS to your vision-research-homepage.css
   ============================================ */

/* ============================================
   PRODUCT SECTION - NEW HEADER STYLE
   ============================================ */
.vr-products .vr-section-header {
    margin-bottom: 32px;
}

.vr-products .vr-section-header__title {
    font-size: 28px;
    font-weight: 700;
    color: var(--vr-text);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.vr-products .vr-section-header__subtitle {
    font-size: 15px;
    color: var(--vr-text-light);
    font-style: italic;
}

/* ============================================
   PRODUCT CARD - ENHANCED STYLING
   ============================================ */
.vr-product-card {
    background: var(--vr-white);
    border: 1px solid var(--vr-border);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.vr-product-card:hover {
    border-color: var(--vr-primary);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

/* Product Badge */
.vr-product-card__badge {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 5;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.vr-product-card__badge--green {
    background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
    color: white;
}

.vr-product-card__badge--blue {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: white;
}

.vr-product-card__badge--orange {
    background: linear-gradient(135deg, #ea580c 0%, #c2410c 100%);
    color: white;
}

.vr-product-card__badge--yellow {
    background: linear-gradient(135deg, #ca8a04 0%, #a16207 100%);
    color: white;
}

/* Discount Badge */
.vr-product-card__discount {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 5;
    background: #ef4444;
    color: white;
    padding: 4px 10px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
}

/* Product Image */
.vr-product-card__image {
    position: relative;
    background: var(--vr-white);
    overflow: hidden;
}

.vr-product-card__image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.vr-product-card:hover .vr-product-card__image img {
    transform: scale(1.05);
}

/* Product Body */
.vr-product-card__body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.vr-product-card__name {
    font-size: 16px;
    font-weight: 600;
    color: var(--vr-text);
    margin: 0 0 4px;
    line-height: 1.3;
}

.vr-product-card__grade {
    font-size: 13px;
    color: var(--vr-text-light);
    margin: 0 0 12px;
}

.vr-product-card__price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 16px;
    margin-top: auto;
}

.vr-product-card__price-old {
    font-size: 14px;
    color: #94a3b8;
    text-decoration: line-through;
}

.vr-product-card__price-current {
    font-size: 20px;
    font-weight: 700;
    color: var(--vr-primary);
}

/* Add to Cart Button */
.vr-product-card__btn {
    width: 100%;
    padding: 12px 16px;
    background: var(--vr-primary);
    color: white !important;
    border: none;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.vr-product-card__btn:hover {
    background: var(--vr-primary-hover);
    transform: translateY(-1px);
    color: white !important;
}

.vr-product-card__btn svg {
    width: 18px;
    height: 18px;
}

.vr-product-card__btn--added {
    background: var(--vr-green, #22a352) !important;
    pointer-events: none;
}

/* ============================================
   RESPONSIVE - TABLET (768px - 1024px)
   ============================================ */
@media (max-width: 1024px) {
    .vr-products__grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .vr-product-card__body {
        padding: 16px;
    }

    .vr-product-card__name {
        font-size: 15px;
    }

    .vr-product-card__price-current {
        font-size: 18px;
    }
}

/* ============================================
   RESPONSIVE - TABLET SMALL (530px - 768px)
   ============================================ */
@media (max-width: 768px) {
    .vr-products {
        padding: 44px 0;
    }

    .vr-products .vr-section-header__title {
        font-size: 24px;
    }

    .vr-products__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .vr-product-card {
        border-radius: 14px;
    }

    .vr-product-card__body {
        padding: 14px;
    }

    .vr-product-card__name {
        font-size: 14px;
        margin-bottom: 2px;
    }

    .vr-product-card__grade {
        font-size: 12px;
        margin-bottom: 8px;
    }

    .vr-product-card__price {
        margin-bottom: 12px;
    }

    .vr-product-card__price-current {
        font-size: 17px;
    }

    .vr-product-card__price-old {
        font-size: 13px;
    }

    .vr-product-card__btn {
        padding: 10px 14px;
        font-size: 13px;
        border-radius: 8px;
    }

    .vr-product-card__badge {
        top: 10px;
        left: 10px;
        padding: 5px 10px;
        font-size: 10px;
    }

    .vr-product-card__discount {
        top: 10px;
        right: 10px;
        padding: 3px 8px;
        font-size: 11px;
    }
}

/* ============================================
   RESPONSIVE - MOBILE (< 530px)
   Horizontal card layout (image left, content right)
   ============================================ */
@media (max-width: 530px) {
    .vr-products {
        padding: 36px 0;
    }

    .vr-products .vr-section-header {
        margin-bottom: 20px;
    }

    .vr-products .vr-section-header__title {
        font-size: 20px;
        margin-bottom: 6px;
    }

    .vr-products .vr-section-header__subtitle {
        font-size: 13px;
    }

    /* Tabs — scrollable on mobile */
    .vr-products__tabs {
        justify-content: flex-start;
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        gap: 6px;
        margin-bottom: 20px;
        padding-bottom: 4px;
    }

    .vr-products__tabs::-webkit-scrollbar {
        display: none;
    }

    .vr-products__tab {
        padding: 7px 14px;
        font-size: 13px;
        white-space: nowrap;
        flex-shrink: 0;
    }

    /* 1-column horizontal cards */
    .vr-products__grid {
        grid-template-columns: 1fr !important;
        gap: 12px;
    }

    .vr-product-card {
        border-radius: 12px;
        display: flex;
        flex-direction: row;
    }

    .vr-product-card > .vr-product-card-name__link {
        width: 130px;
        min-width: 130px;
        flex-shrink: 0;
    }

    .vr-product-card__image {
        padding-top: 0;
        width: 100%;
        height: 100%;
        border-radius: 12px 0 0 12px;
        position: relative;
        overflow: hidden;
    }

    .vr-product-card__image img {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        border-radius: 12px 0 0 12px;
        object-fit: cover;
    }

    .vr-product-card__body {
        padding: 12px 14px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        flex: 1;
        min-width: 0;
    }

    .vr-product-card__name {
        font-size: 14px;
        line-height: 1.3;
        margin-bottom: 2px;
    }

    .vr-product-card__grade {
        font-size: 12px;
        margin-bottom: 4px;
    }

    .vr-product-card__rating {
        margin-bottom: 6px;
    }

    .vr-product-card__rating .vr-star {
        width: 12px;
        height: 12px;
    }

    .vr-product-card__rating-text {
        font-size: 11px;
    }

    .vr-product-card__price {
        margin-bottom: 10px;
        flex-wrap: wrap;
        gap: 4px 8px;
    }

    .vr-product-card__price-current {
        font-size: 17px;
    }

    .vr-product-card__price-old {
        font-size: 12px;
    }

    .vr-product-card__btn {
        padding: 10px 14px;
        font-size: 13px;
        border-radius: 8px;
        gap: 6px;
    }

    .vr-product-card__btn svg {
        width: 16px;
        height: 16px;
    }

    /* Badge positioning — horizontal card */
    .vr-product-card__badge {
        top: 8px;
        left: 8px;
        padding: 4px 8px;
        font-size: 9px;
        border-radius: 12px;
    }

    .vr-product-card__discount {
        top: auto;
        right: auto;
        left: 8px;
        bottom: 8px;
        padding: 3px 6px;
        font-size: 10px;
        border-radius: 6px;
    }

    /* CTA button below grid */
    .vr-products__cta {
        margin-top: 24px;
    }

    .vr-products__cta .vr-btn {
        width: 100%;
        padding: 14px 20px;
    }
}

/* ============================================
   RESPONSIVE - VERY SMALL MOBILE (< 380px)
   ============================================ */
@media (max-width: 380px) {
    .vr-product-card > .vr-product-card-name__link {
        width: 110px;
        min-width: 110px;
    }

    .vr-product-card__body {
        padding: 10px 12px;
    }

    .vr-product-card__name {
        font-size: 13px;
    }

    .vr-product-card__grade {
        font-size: 11px;
        margin-bottom: 4px;
    }

    .vr-product-card__price-current {
        font-size: 16px;
    }

    .vr-product-card__btn {
        padding: 9px 12px;
        font-size: 12px;
    }

    .vr-product-card__btn svg {
        width: 14px;
        height: 14px;
    }
}

/* ============================================
   OPTIONAL: Shorter button text for mobile
   Use this in PHP if you want "Dodaj" instead of "Dodaj do koszyka"
   ============================================ */

/*
   In your PHP, you can add a data attribute to show short text on mobile:

   <a class="vr-product-card__btn" data-short-text="Dodaj">
       <svg>...</svg>
       <span class="vr-product-card__btn-text">Dodaj do koszyka</span>
   </a>

   Then use this CSS:
*/

@media (max-width: 530px) {
    /* If you want to use JS/CSS to show shorter text */
    .vr-product-card__btn-full {
        display: none;
    }

    .vr-product-card__btn-short {
        display: inline;
    }
}

@media (min-width: 531px) {
    .vr-product-card__btn-full {
        display: inline;
    }

    .vr-product-card__btn-short {
        display: none;
    }
}
/* ============================================
   MODERN BLOG/KNOWLEDGE BASE SECTION V2
   ============================================ */
.vr-blog-v2 {
    padding: 56px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

/* Header */
.vr-blog-v2__header {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 48px;
}

.vr-blog-v2__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: linear-gradient(135deg, var(--vr-primary) 0%, #2980b9 100%);
    color: white;
    font-size: 13px;
    font-weight: 600;
    border-radius: 100px;
    margin-bottom: 24px;
}

.vr-blog-v2__title {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 700;
    color: var(--vr-text);
    line-height: 1.25;
    margin: 0 0 16px;
}

.vr-blog-v2__title span {
    color: var(--vr-primary);
}

.vr-blog-v2__subtitle {
    font-size: 16px;
    color: var(--vr-text-light);
    line-height: 1.6;
    margin: 0;
}

/* Cards Grid */
.vr-blog-v2__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-bottom: 40px;
}

/* Card */
.vr-blog-v2__card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.vr-blog-v2__card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

.vr-blog-v2__card-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

/* Card Header - Image variant */
.vr-blog-v2__card-header {
    position: relative;
    overflow: hidden;
}

.vr-blog-v2__card-header--img {
    aspect-ratio: 16 / 9;
}

.vr-blog-v2__card-header--img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Card Header - Gradient fallback */
.vr-blog-v2__card-header--gradient {
    aspect-ratio: 16 / 9;
    background: linear-gradient(135deg, #1a6b9a 0%, #2980b9 60%, #1d7ab0 100%);
    display: flex;
    align-items: flex-end;
    padding: 20px 24px;
}

/* Category Badge */
.vr-blog-v2__card-category {
    position: absolute;
    bottom: 12px;
    left: 12px;
    display: inline-flex;
    padding: 5px 12px;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: white;
}

/* Card Body */
.vr-blog-v2__card-body {
    padding: 24px 28px 28px;
}

.vr-blog-v2__card-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--vr-text);
    margin: 0 0 10px;
    line-height: 1.4;
}

.vr-blog-v2__card:hover .vr-blog-v2__card-title {
    color: var(--vr-primary);
}

.vr-blog-v2__card-excerpt {
    font-size: 14px;
    color: var(--vr-text-light);
    line-height: 1.6;
    margin: 0 0 20px;
}

/* Card Footer */
.vr-blog-v2__card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.vr-blog-v2__card-time {
    font-size: 13px;
    color: #64748b;
}

.vr-blog-v2__card-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    color: var(--vr-primary);
    transition: all 0.3s ease;
}

.vr-blog-v2__card-cta svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.vr-blog-v2__card:hover .vr-blog-v2__card-cta svg {
    transform: translateX(4px);
}

/* CTA Button */
.vr-blog-v2__cta {
    text-align: center;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .vr-blog-v2__grid {
        gap: 24px;
    }

    .vr-blog-v2__card-body {
        padding: 20px 24px 24px;
    }
}

@media (max-width: 900px) {
    .vr-blog-v2__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Third card spans full width on tablet */
    .vr-blog-v2__card:nth-child(3) {
        grid-column: 1 / -1;
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .vr-blog-v2 {
        padding: 44px 0;
    }

    .vr-blog-v2__header {
        margin-bottom: 36px;
    }

    .vr-blog-v2__title {
        font-size: 28px;
    }

    .vr-blog-v2__grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .vr-blog-v2__card:nth-child(3) {
        max-width: 100%;
    }

    .vr-blog-v2__card-body {
        padding: 18px 20px 22px;
    }

    .vr-blog-v2__card-title {
        font-size: 16px;
    }
}

@media (max-width: 530px) {
    .vr-blog-v2 {
        padding: 36px 0;
    }

    /* Horizontal card layout on mobile */
    .vr-blog-v2__card-link {
        display: flex;
        flex-direction: row;
    }

    .vr-blog-v2__card-header {
        flex: 0 0 110px;
        aspect-ratio: auto;
        min-height: 100%;
    }

    .vr-blog-v2__card-header--img {
        aspect-ratio: auto;
    }

    .vr-blog-v2__card-header--gradient {
        aspect-ratio: auto;
        padding: 12px;
        align-items: flex-end;
    }

    .vr-blog-v2__card-category {
        font-size: 10px;
        padding: 3px 8px;
        bottom: 8px;
        left: 8px;
    }

    .vr-blog-v2__card-body {
        flex: 1;
        padding: 14px 16px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .vr-blog-v2__card-title {
        font-size: 15px;
        margin: 0 0 6px;
    }

    .vr-blog-v2__card-excerpt {
        font-size: 13px;
        margin: 0 0 8px;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .vr-blog-v2__card-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }

    .vr-blog-v2__card-time {
        font-size: 12px;
    }

    .vr-blog-v2__card-cta {
        font-size: 13px;
    }

    .vr-blog-v2__card:nth-child(3) {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .vr-blog-v2__badge {
        font-size: 12px;
        padding: 8px 16px;
    }

    .vr-blog-v2__title {
        font-size: 24px;
    }

    .vr-blog-v2__subtitle {
        font-size: 14px;
    }
}

/* ============================================
   NEW ABOUT SECTION V2
   ============================================ */
.vr-about-v2 {
    padding: 100px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

/* Header */
.vr-about-v2__header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.vr-about-v2__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border: 1px solid #bfdbfe;
    color: #2563eb;
    font-size: 13px;
    font-weight: 600;
    border-radius: 100px;
    margin-bottom: 20px;
}

.vr-about-v2__badge svg {
    width: 16px;
    height: 16px;
}

.vr-about-v2__title {
    font-size: clamp(24px, 4vw, 32px);
    font-weight: 600;
    color: var(--vr-text);
    line-height: 1.4;
    margin: 0 0 16px;
}

.vr-about-v2__title span {
    color: var(--vr-text-light);
    font-weight: 400;
}

.vr-about-v2__intro {
    font-size: 16px;
    color: var(--vr-text-light);
    line-height: 1.7;
    margin: 0;
}

/* Main Content Grid */
.vr-about-v2__main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 60px;
}

/* Image Wrapper */
.vr-about-v2__image-wrapper {
    position: relative;
}

.vr-about-v2__image {
    width: 100%;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

/* Floating Card */
.vr-about-v2__floating-card {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: white;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    display: flex;
    gap: 14px;
    max-width: 280px;
}

.vr-about-v2__floating-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.vr-about-v2__floating-icon svg {
    width: 22px;
    height: 22px;
}

.vr-about-v2__floating-content h4 {
    font-size: 15px;
    font-weight: 600;
    color: var(--vr-text);
    margin: 0 0 6px;
}

.vr-about-v2__floating-content p {
    font-size: 13px;
    color: var(--vr-text-light);
    line-height: 1.5;
    margin: 0;
}

/* Text Content */
.vr-about-v2__text {
    padding-left: 20px;
}

.vr-about-v2__paragraph {
    font-size: 15px;
    color: var(--vr-text);
    line-height: 1.8;
    margin: 0 0 16px;
}

.vr-about-v2__paragraph strong {
    color: var(--vr-text);
    font-weight: 600;
}

.vr-about-v2__link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: var(--vr-primary);
    color: white !important;
    font-size: 15px;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: 12px;
    box-shadow: 0 4px 16px rgba(14, 165, 233, 0.3);
}

.vr-about-v2__link:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(14, 165, 233, 0.4);
    color: white !important;
}

.vr-about-v2__link svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.vr-about-v2__link:hover svg {
    transform: translateX(4px);
}

/* Feature Cards */
.vr-about-v2__features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.vr-about-v2__feature-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 28px 24px;
    transition: all 0.3s ease;
}

.vr-about-v2__feature-card:hover {
    border-color: transparent;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
}

.vr-about-v2__feature-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.vr-about-v2__feature-icon svg {
    width: 26px;
    height: 26px;
}

.vr-about-v2__feature-icon--blue {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    color: #2563eb;
}

.vr-about-v2__feature-icon--cyan {
    background: linear-gradient(135deg, #ecfeff 0%, #cffafe 100%);
    color: #0891b2;
}

.vr-about-v2__feature-icon--green {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    color: #16a34a;
}

.vr-about-v2__feature-title {
    font-size: 17px;
    font-weight: 600;
    color: var(--vr-text);
    margin: 0 0 10px;
}

.vr-about-v2__feature-desc {
    font-size: 14px;
    color: var(--vr-text-light);
    line-height: 1.6;
    margin: 0;
}

/* ============================================
   ABOUT V2 RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .vr-about-v2 {
        padding: 80px 0;
    }

    .vr-about-v2__main {
        gap: 40px;
    }

    .vr-about-v2__floating-card {
        right: 0;
        bottom: -30px;
    }
}

@media (max-width: 900px) {
    .vr-about-v2__main {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .vr-about-v2__text {
        padding-left: 0;
        text-align: center;
    }

    .vr-about-v2__image-wrapper {
        max-width: 500px;
        margin: 0 auto;
    }

    .vr-about-v2__floating-card {
        right: 50%;
        transform: translateX(50%);
        bottom: -40px;
    }
}

@media (max-width: 768px) {
    .vr-about-v2 {
        padding: 60px 0;
    }

    .vr-about-v2__header {
        margin-bottom: 40px;
    }

    .vr-about-v2__features {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .vr-about-v2__feature-card {
        padding: 24px 20px;
    }

    .vr-about-v2__floating-card {
        position: relative;
        right: auto;
        bottom: auto;
        transform: none;
        margin: 20px auto 0;
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .vr-about-v2__title {
        font-size: 22px;
    }

    .vr-about-v2__paragraph {
        font-size: 14px;
    }

    .vr-about-v2__link {
        width: 100%;
        justify-content: center;
    }
}

/* ============================================
   NEWSLETTER SECTION
   ============================================ */
.vr-newsletter-section {
    padding: var(--vr-section-padding) 0;
    position: relative;
}

.vr-newsletter-section > .vr-container {
    background: linear-gradient(135deg, #1a5276 0%, #2980b9 50%, #1a6b9a 100%);
    border-radius: var(--vr-radius-lg);
    padding: 48px 56px;
    position: relative;
    overflow: hidden;
}

.vr-newsletter-section > .vr-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

/* Inline layout — two columns on gradient */
.vr-newsletter-inline {
    display: flex;
    align-items: center;
    gap: 48px;
    position: relative;
}

/* Left column: text */
.vr-newsletter-inline__text {
    flex: 0 0 auto;
    max-width: 340px;
}

.vr-newsletter-inline__badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    font-size: 15px;
    font-weight: 700;
    padding: 7px 16px;
    border-radius: 100px;
    margin-bottom: 12px;
}

.vr-newsletter-inline__badge span {
    font-weight: 500;
    font-size: 14px;
}

.vr-newsletter-inline__desc {
    color: white;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.6;
    margin: 0;
}

/* Right column: form */
.vr-newsletter-inline__form-side {
    flex: 1;
    min-width: 0;
}

.vr-newsletter-inline__form {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

.vr-newsletter-section .vr-newsletter-inline__input {
    flex: 1;
    --has-height: initial;
    --has-classic-forms: initial;
    --theme-form-field-height: initial;
    --theme-form-field-padding: initial;
    height: 52px !important;
    min-height: 52px !important;
    padding: 14px 18px !important;
    background: rgba(255, 255, 255, 0.18) !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    border-radius: 10px !important;
    font-size: 15px !important;
    color: white !important;
    outline: none;
    transition: border-color 0.2s, background 0.2s;
    font-family: inherit;
    min-width: 0;
    box-sizing: border-box !important;
}

.vr-newsletter-section .vr-newsletter-inline__input:focus {
    border-color: rgba(255, 255, 255, 0.6) !important;
    background: rgba(255, 255, 255, 0.25) !important;
}

.vr-newsletter-section .vr-newsletter-inline__input::placeholder {
    color: rgba(255, 255, 255, 0.65) !important;
}

.vr-newsletter-inline__btn {
    background: white !important;
    color: #1a5276 !important;
    border: none !important;
    padding: 14px 28px;
    border-radius: 10px !important;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 140px;
    font-family: inherit;
    white-space: nowrap;
}

.vr-newsletter-inline__btn:hover {
    background: white !important;
    color: #1a5276 !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.vr-newsletter-inline__btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.vr-newsletter-inline__btn-loading {
    display: inline-flex;
}

.vr-newsletter-inline__btn-loading .vr-spinner {
    width: 20px;
    height: 20px;
    animation: vr-newsletter-spin 1s linear infinite;
}

@keyframes vr-newsletter-spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.vr-newsletter-inline__privacy {
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
    margin: 0;
}

/* Success state */
.vr-newsletter-inline__success {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    padding: 14px 18px;
}

.vr-newsletter-inline__success svg {
    color: #4ade80;
    flex-shrink: 0;
}

.vr-newsletter-inline__success strong {
    color: white;
    font-size: 15px;
}

.vr-newsletter-inline__success span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

/* Error state */
.vr-newsletter-inline__error {
    background: rgba(220, 38, 38, 0.15);
    border: 1px solid rgba(220, 38, 38, 0.3);
    color: #fca5a5;
    padding: 10px 16px;
    border-radius: 10px;
    margin-top: 10px;
    font-size: 14px;
}

/* Newsletter Responsive */
@media (max-width: 768px) {

    .vr-newsletter-section > .vr-container {
        padding: 36px 28px;
        border-radius: 12px;
    }

    .vr-newsletter-inline {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }

    .vr-newsletter-inline__text {
        max-width: 100%;
    }

    .vr-newsletter-inline__form-side {
        width: 100%;
    }

    .vr-newsletter-inline__form {
        flex-direction: column;
        gap: 10px;
    }

    .vr-newsletter-section .vr-newsletter-inline__input {
        width: 100%;
        --has-height: initial;
        --has-classic-forms: initial;
        --theme-form-field-height: initial;
        --theme-form-field-padding: initial;
        height: 52px !important;
        min-height: 52px !important;
        padding: 14px 16px !important;
        font-size: 16px !important;
        border-radius: 10px !important;
        -webkit-appearance: none;
        box-sizing: border-box !important;
    }

    .vr-newsletter-inline__btn {
        width: 100%;
        height: 52px;
        padding: 0 24px;
        font-size: 16px;
        border-radius: 10px;
        box-sizing: border-box;
    }

    .vr-newsletter-inline__privacy {
        text-align: center;
    }

    .vr-newsletter-inline__success {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 530px) {
    .vr-newsletter-section > .vr-container {
        padding: 28px 20px;
    }
}